Update ooo320-m1
[ooovba.git] / offapi / com / sun / star / xml / sax / XDocumentHandler.idl
blobd01cfa5e1be27be172695bbdfc79f88bae775b2c
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: XDocumentHandler.idl,v $
10 * $Revision: 1.8 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
30 #ifndef __com_sun_star_xml_sax_XDocumentHandler_idl__
31 #define __com_sun_star_xml_sax_XDocumentHandler_idl__
33 #ifndef __com_sun_star_uno_XInterface_idl__
34 #include <com/sun/star/uno/XInterface.idl>
35 #endif
37 #ifndef __com_sun_star_xml_sax_SAXException_idl__
38 #include <com/sun/star/xml/sax/SAXException.idl>
39 #endif
41 #ifndef __com_sun_star_xml_sax_XAttributeList_idl__
42 #include <com/sun/star/xml/sax/XAttributeList.idl>
43 #endif
45 #ifndef __com_sun_star_xml_sax_XLocator_idl__
46 #include <com/sun/star/xml/sax/XLocator.idl>
47 #endif
50 //=============================================================================
52 module com { module sun { module star { module xml { module sax {
54 //=============================================================================
56 /** receives notification of general document events.
58 <p>This interface is an IDL version of the Java interface
59 <em>org.xml.sax.DocumentHandler</em> with some smaller
60 adaptations.</p>
62 published interface XDocumentHandler: com::sun::star::uno::XInterface
64 //-------------------------------------------------------------------------
66 /** receives notification of the beginning of a document.
68 void startDocument()
69 raises( com::sun::star::xml::sax::SAXException );
71 //-------------------------------------------------------------------------
73 /** receives notification of the end of a document.
75 void endDocument()
76 raises( com::sun::star::xml::sax::SAXException );
78 //-------------------------------------------------------------------------
80 /** receives notification of the beginning of an element .
82 void startElement( [in] string aName,
83 [in] com::sun::star::xml::sax::XAttributeList xAttribs )
84 raises( com::sun::star::xml::sax::SAXException );
86 //-------------------------------------------------------------------------
88 /** receives notification of the end of an element.
90 void endElement( [in] string aName )
91 raises( com::sun::star::xml::sax::SAXException );
93 //-------------------------------------------------------------------------
95 /** receives notification of character data.
97 void characters( [in] string aChars )
98 raises( com::sun::star::xml::sax::SAXException );
100 //-------------------------------------------------------------------------
102 /** receives notification of white space that can be ignored.
104 void ignorableWhitespace( [in] string aWhitespaces )
105 raises( com::sun::star::xml::sax::SAXException );
107 //-------------------------------------------------------------------------
109 /** receives notification of a processing instruction.
111 void processingInstruction( [in] string aTarget,
112 [in] string aData )
113 raises( com::sun::star::xml::sax::SAXException );
115 //-------------------------------------------------------------------------
117 /** receives an object for locating the origin of SAX document events.
119 void setDocumentLocator( [in] com::sun::star::xml::sax::XLocator xLocator )
120 raises( com::sun::star::xml::sax::SAXException );
124 //=============================================================================
126 }; }; }; }; };
128 #endif