diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2004-04-13 10:59:16 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2004-04-13 10:59:16 +0000 |
commit | 292fec35f83b6af01f765f177324f64c124c76e4 (patch) | |
tree | 91ccbdd44bd5c6c73c8d595f45a30fbe0a46ce91 /offapi/com | |
parent | 782f2659c02e6c0bacc62a895cb45f7f6abb5309 (diff) |
INTEGRATION: CWS unopkg1 (1.2.42); FILE MERGED
2003/11/04 14:00:16 dbo 1.2.42.1: #i20304# docu, intro XNamespaceMapping
Diffstat (limited to 'offapi/com')
-rw-r--r-- | offapi/com/sun/star/xml/input/XRoot.idl | 30 | ||||
-rw-r--r-- | offapi/com/sun/star/xml/input/makefile.mk | 5 |
2 files changed, 18 insertions, 17 deletions
diff --git a/offapi/com/sun/star/xml/input/XRoot.idl b/offapi/com/sun/star/xml/input/XRoot.idl index ae1998aaf01b..da3cbe097a2c 100644 --- a/offapi/com/sun/star/xml/input/XRoot.idl +++ b/offapi/com/sun/star/xml/input/XRoot.idl @@ -2,9 +2,9 @@ * * $RCSfile: XRoot.idl,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: obo $ $Date: 2003-09-04 09:10:55 $ + * last change: $Author: hr $ $Date: 2004-04-13 11:59:03 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -61,7 +61,7 @@ #if ! defined INCLUDED__com_sun_star_xml_input_XRoot_idl__ #define INCLUDED__com_sun_star_xml_input_XRoot_idl__ -#include <com/sun/star/container/XNameAccess.idl> +#include <com/sun/star/xml/input/XNamespaceMapping.idl> #include <com/sun/star/xml/input/XElement.idl> #include <com/sun/star/xml/input/XAttributes.idl> #include <com/sun/star/xml/sax/SAXException.idl> @@ -77,12 +77,12 @@ interface XRoot : com::sun::star::uno::XInterface { /** Receives notification of the beginning of a document. - @param xUidMapping + @param xMapping mapping to obtain ids out of XML namespace URIs - (XNameAccess value type is IDL long) - */ + and vice versa + */ void startDocument( - [in] com::sun::star::container::XNameAccess xUidMapping ) + [in] XNamespaceMapping xMapping ) raises (com::sun::star::xml::sax::SAXException); /** Receives notification of the end of a document. @@ -92,35 +92,35 @@ interface XRoot : com::sun::star::uno::XInterface /** Receives notification of a processing instruction. - @param Target + @param target target - @param Data + @param data data */ void processingInstruction( - [in] string Target, [in] string Data ) + [in] string target, [in] string data ) raises (com::sun::star::xml::sax::SAXException); /** Receives an object for locating the origin of SAX document events. - @param Locator + @param locator locator */ void setDocumentLocator( - [in] com::sun::star::xml::sax::XLocator Locator ) + [in] com::sun::star::xml::sax::XLocator locator ) raises (com::sun::star::xml::sax::SAXException); /** Called upon root element. - @param Uid + @param uid namespace uid of element - @param LocalName + @param localName localname of element @param xAattributes attributes of element */ XElement startRootElement( - [in] long Uid, [in] string LocalName, [in] XAttributes xAttributes ) + [in] long uid, [in] string localName, [in] XAttributes xAttributes ) raises (com::sun::star::xml::sax::SAXException); }; diff --git a/offapi/com/sun/star/xml/input/makefile.mk b/offapi/com/sun/star/xml/input/makefile.mk index a685bc3c310f..a9eb2efb4eed 100644 --- a/offapi/com/sun/star/xml/input/makefile.mk +++ b/offapi/com/sun/star/xml/input/makefile.mk @@ -2,9 +2,9 @@ # # $RCSfile: makefile.mk,v $ # -# $Revision: 1.2 $ +# $Revision: 1.3 $ # -# last change: $Author: obo $ $Date: 2003-09-04 09:11:02 $ +# last change: $Author: hr $ $Date: 2004-04-13 11:59:16 $ # # The Contents of this file are made available subject to the terms of # either of the following licenses @@ -77,6 +77,7 @@ IDLFILES = \ XRoot.idl \ XElement.idl \ XAttributes.idl \ + XNamespaceMapping.idl \ SaxDocumentHandler.idl # ------------------------------------------------------------------ |