interface XExtendedDocumentHandler in module com::sun::star::xml::sax::

(Global Index)

Syntax

interface XExtendedDocumentHandler : com::sun::star::xml::sax::XDocumentHandler ;

Description

this interface does not conform to the SAX-standard. Note: Whether or not every callback is supported is dependent on the parser implementation.

Method Summary

startCDATA receives notification about the start of a CDATA section in the XML-source.

endCDATA informs about the end of a CDATA-Section.

comment receives notification about a comment in the XML-source.

allowLineBreak informs a writer that it is allowable to insert a line break and indentation before the next XDocumentHandler -call.

unknown notifies that any characters that cannot be handled by other callback methods are announced through this method.

Method Details



startCDATA

Syntax

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

Description

receives notification about the start of a CDATA section in the XML-source.

Any string comming in via character handler may include chars, that would otherwise be interpreted as markup.


endCDATA

Syntax

void endCDATA ();

Description

informs about the end of a CDATA-Section.

Note that startCDATA/endCDATA MUST NOT enclose any startElement/endElement -call!


comment

Syntax

void comment (
string sComment )
raises ( com::sun::star::xml::sax::SAXException );

Description

receives notification about a comment in the XML-source.


allowLineBreak

Syntax

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

Description

informs a writer that it is allowable to insert a line break and indentation before the next XDocumentHandler -call.


unknown

Syntax

void unknown (
string sString )
raises ( com::sun::star::xml::sax::SAXException );

Description

notifies that any characters that cannot be handled by other callback methods are announced through this method.

Top of Page