summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/xml/sax/XParser.idl
diff options
context:
space:
mode:
Diffstat (limited to 'offapi/com/sun/star/xml/sax/XParser.idl')
-rw-r--r--offapi/com/sun/star/xml/sax/XParser.idl49
1 files changed, 4 insertions, 45 deletions
diff --git a/offapi/com/sun/star/xml/sax/XParser.idl b/offapi/com/sun/star/xml/sax/XParser.idl
index 6d9e9abdc..bf151c861 100644
--- a/offapi/com/sun/star/xml/sax/XParser.idl
+++ b/offapi/com/sun/star/xml/sax/XParser.idl
@@ -2,9 +2,9 @@
*
* $RCSfile: XParser.idl,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: jsc $ $Date: 2001-03-16 16:41:54 $
+ * last change: $Author: mi $ $Date: 2002-10-03 13:11:20 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -100,47 +100,34 @@
//=============================================================================
- module com { module sun { module star { module xml { module sax {
+module com { module sun { module star { module xml { module sax {
//=============================================================================
-// DocMerge from xml: interface com::sun::star::xml::sax::XParser
/** specifies a SAX parser.
-
-
<p>This interface is an IDL version of the Java interface
<em>org.xml.sax.Parser</em> with some minor adaptations.</p>
*/
interface XParser: com::sun::star::uno::XInterface
{
//-------------------------------------------------------------------------
-
- // DocMerge from xml: method com::sun::star::xml::sax::XParser::parseStream
/** parses an XML document from a stream.
-
-
<p>Set the desired handlers before calling this method.</p>
*/
- void parseStream( [in] com::sun::star::xml::sax::InputSource strucInputSource )
+ void parseStream( [in] com::sun::star::xml::sax::InputSource aInputSource )
raises( com::sun::star::xml::sax::SAXException,
com::sun::star::io::IOException );
//-------------------------------------------------------------------------
-
- // DocMerge from xml: method com::sun::star::xml::sax::XParser::setDocumentHandler
/** allows an application to register a document event handler.
*/
void setDocumentHandler( [in] com::sun::star::xml::sax::XDocumentHandler xHandler );
//-------------------------------------------------------------------------
-
- // DocMerge from xml: method com::sun::star::xml::sax::XParser::setErrorHandler
/** allows an application to register an error event handler.
-
-
<p>Note that the error handler can throw an exception when an error or
warning occurs. Note that an exception is thrown by the parser when
an unrecoverable (fatal) error occurs.</p>
@@ -148,26 +135,18 @@ interface XParser: com::sun::star::uno::XInterface
void setErrorHandler( [in] com::sun::star::xml::sax::XErrorHandler xHandler );
//-------------------------------------------------------------------------
-
- // DocMerge from xml: method com::sun::star::xml::sax::XParser::setDTDHandler
/** allows an application to register a DTD-Handler.
*/
void setDTDHandler( [in] com::sun::star::xml::sax::XDTDHandler xHandler );
//-------------------------------------------------------------------------
-
- // DocMerge from xml: method com::sun::star::xml::sax::XParser::setEntityResolver
/** allows an application to register a DTD-Handler.
*/
void setEntityResolver( [in] com::sun::star::xml::sax::XEntityResolver xResolver );
//-------------------------------------------------------------------------
-
- // DocMerge from xml: method com::sun::star::xml::sax::XParser::setLocale
/** sets a locale specified for localization of warnings and error messages.
-
-
<p>Set the language of the error messages. Useful when the parsing
errors will be presented to the user.</p>
*/
@@ -178,24 +157,4 @@ interface XParser: com::sun::star::uno::XInterface
}; }; }; }; };
-/*=============================================================================
-
- $Log: not supported by cvs2svn $
- Revision 1.3 2000/11/08 12:45:43 mi
- moved from api
-
- Revision 1.1.1.1 2000/09/18 23:36:22 hjs
- initial import
-
- Revision 1.4 2000/09/11 11:53:08 mi
- documentation merged from XML
-
- Revision 1.2 2000/02/23 11:41:20 mi
- results from proofreading in layouted version
-
- Revision 1.1.1.1 1999/11/11 09:48:47 jsc
- new
-
-
-=============================================================================*/
#endif