:: com :: sun :: star :: xml :: csax ::

interface XCompressedDocumentHandler

Methods' Summary
compressedStartDocument  
compressedEndDocument  
compressedStartElement  
compressedEndElement  
compressedCharacters  
compressedIgnorableWhitespace  
compressedProcessingInstruction  
compressedSetDocumentLocator  
Methods' Details
compressedStartDocument
void
compressedStartDocument()
raises( ::com::sun::star::xml::sax::SAXException );

compressedEndDocument
void
compressedEndDocument()
raises( ::com::sun::star::xml::sax::SAXException );

compressedStartElement
void
compressedStartElement( [in] string  aName,
[in] sequence< XMLAttribute >  aAttributes )
raises( ::com::sun::star::xml::sax::SAXException );

compressedEndElement
void
compressedEndElement( [in] string  aName )
raises( ::com::sun::star::xml::sax::SAXException );

compressedCharacters
void
compressedCharacters( [in] string  aChars )
raises( ::com::sun::star::xml::sax::SAXException );

compressedIgnorableWhitespace
void
compressedIgnorableWhitespace( [in] string  aWhitespaces )
raises( ::com::sun::star::xml::sax::SAXException );

compressedProcessingInstruction
void
compressedProcessingInstruction( [in] string  aTarget,
[in] string  aData )
raises( ::com::sun::star::xml::sax::SAXException );

compressedSetDocumentLocator
void
compressedSetDocumentLocator( [in] long  columnNumber,
[in] long  lineNumber,
[in] string  publicId,
[in] string  systemId )
raises( ::com::sun::star::xml::sax::SAXException );

Top of Page