summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/xml/sax/XFastSerializer.idl
diff options
context:
space:
mode:
Diffstat (limited to 'offapi/com/sun/star/xml/sax/XFastSerializer.idl')
-rw-r--r--offapi/com/sun/star/xml/sax/XFastSerializer.idl14
1 files changed, 0 insertions, 14 deletions
diff --git a/offapi/com/sun/star/xml/sax/XFastSerializer.idl b/offapi/com/sun/star/xml/sax/XFastSerializer.idl
index 17b3ca89941d..6601a00cfbf1 100644
--- a/offapi/com/sun/star/xml/sax/XFastSerializer.idl
+++ b/offapi/com/sun/star/xml/sax/XFastSerializer.idl
@@ -34,31 +34,26 @@
#include <com/sun/star/io/XOutputStream.idl>
#include <com/sun/star/xml/sax/XFastTokenHandler.idl>
-//=============================================================================
module com { module sun { module star { module xml { module sax {
-//=============================================================================
/** receives notification of sax document events to write into an XOutputStream.
*/
interface XFastSerializer: com::sun::star::uno::XInterface
{
- //-------------------------------------------------------------------------
/** called by the parser when parsing of an XML stream is started.
*/
void startDocument()
raises( com::sun::star::xml::sax::SAXException );
- //-------------------------------------------------------------------------
/** called by the parser after the last XML element of a stream is processed.
*/
void endDocument()
raises( com::sun::star::xml::sax::SAXException );
- //-------------------------------------------------------------------------
/** receives notification of the beginning of an element .
@@ -80,7 +75,6 @@ interface XFastSerializer: com::sun::star::uno::XInterface
void startFastElement( [in] long Element, [in] XFastAttributeList Attribs )
raises( com::sun::star::xml::sax::SAXException );
- //-------------------------------------------------------------------------
/** receives notification of the beginning of an unknown element .
@@ -95,7 +89,6 @@ interface XFastSerializer: com::sun::star::uno::XInterface
void startUnknownElement( [in] string Namespace, [in] string Name, [in] XFastAttributeList Attribs )
raises( com::sun::star::xml::sax::SAXException );
- //-------------------------------------------------------------------------
/** receives notification of the end of an known element.
@see startFastElement
@@ -103,7 +96,6 @@ interface XFastSerializer: com::sun::star::uno::XInterface
void endFastElement( [in] long Element )
raises( com::sun::star::xml::sax::SAXException );
- //-------------------------------------------------------------------------
/** receives notification of the end of an known element.
@see startUnknownElement
@@ -111,7 +103,6 @@ interface XFastSerializer: com::sun::star::uno::XInterface
void endUnknownElement( [in] string Namespace, [in] string Name )
raises( com::sun::star::xml::sax::SAXException );
- //-------------------------------------------------------------------------
/** receives notification of the beginning of a single element .
@@ -133,7 +124,6 @@ interface XFastSerializer: com::sun::star::uno::XInterface
void singleFastElement( [in] long Element, [in] XFastAttributeList Attribs )
raises( com::sun::star::xml::sax::SAXException );
- //-------------------------------------------------------------------------
/** receives notification of the beginning of a single unknown element .
@@ -148,21 +138,18 @@ interface XFastSerializer: com::sun::star::uno::XInterface
void singleUnknownElement( [in] string Namespace, [in] string Name, [in] XFastAttributeList Attribs )
raises( com::sun::star::xml::sax::SAXException );
- //-------------------------------------------------------------------------
/** receives notification of character data.
*/
void characters( [in] string aChars )
raises( com::sun::star::xml::sax::SAXException );
- //-------------------------------------------------------------------------
/**
*/
void setOutputStream ( [in] com::sun::star::io::XOutputStream xOutputStream )
/* raises( com::sun::star::xml::sax::SAXException ) */;
- //-------------------------------------------------------------------------
/**
*/
@@ -170,7 +157,6 @@ interface XFastSerializer: com::sun::star::uno::XInterface
/* raises( com::sun::star::xml::sax::SAXException ) */;
};
-//=============================================================================
}; }; }; }; };