summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/xml/wrapper/XXMLDocumentWrapper.idl
diff options
context:
space:
mode:
Diffstat (limited to 'offapi/com/sun/star/xml/wrapper/XXMLDocumentWrapper.idl')
-rw-r--r--offapi/com/sun/star/xml/wrapper/XXMLDocumentWrapper.idl34
1 files changed, 17 insertions, 17 deletions
diff --git a/offapi/com/sun/star/xml/wrapper/XXMLDocumentWrapper.idl b/offapi/com/sun/star/xml/wrapper/XXMLDocumentWrapper.idl
index 2145c23a941b..58109632317a 100644
--- a/offapi/com/sun/star/xml/wrapper/XXMLDocumentWrapper.idl
+++ b/offapi/com/sun/star/xml/wrapper/XXMLDocumentWrapper.idl
@@ -1,7 +1,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -24,7 +24,7 @@
* for a copy of the LGPLv3 License.
*
************************************************************************/
-
+
//i20156 - new file for xmlsecurity module
/** -- idl definition -- **/
@@ -43,12 +43,12 @@ interface XXMLElementWrapper;
/**
* Interface of XML Document Wrapper.
* <p>
- * When converting SAX events into a DOM tree, this interface is
- * used to manipulate the DOM data in UNO perspective.
+ * When converting SAX events into a DOM tree, this interface is
+ * used to manipulate the DOM data in UNO perspective.
* <p>
* Every lauguage has its own methods to manipulate its native DOM
* data structure, this interface provides a common method set which
- * each lauguage have to implement.
+ * each lauguage have to implement.
* <p>
* In another word, this interface wraps language dependant methods,
* then other component can manipulate DOM data through UNO methods.
@@ -61,11 +61,11 @@ interface XXMLDocumentWrapper : com::sun::star::uno::XInterface
* @return the current element in the SAX event stream
*/
XXMLElementWrapper getCurrentElement();
-
+
/**
* Sets the current element.
* <p>
- * When the current element is replaced outside of this interface, then
+ * When the current element is replaced outside of this interface, then
* uses this method can update the current element pointer.
*
* @param element the new current element
@@ -79,7 +79,7 @@ interface XXMLDocumentWrapper : com::sun::star::uno::XInterface
* the new current element.
*/
void removeCurrentElement();
-
+
/**
* Checks whether an element is the current element.
*
@@ -88,11 +88,11 @@ interface XXMLDocumentWrapper : com::sun::star::uno::XInterface
* <code>false</code> otherwise
*/
boolean isCurrent([in] XXMLElementWrapper node);
-
+
/**
* Checks whether the current element is empty.
*
- * @return <code>true</code> if the current element is empty,
+ * @return <code>true</code> if the current element is empty,
* <code>false</code> otherwise
*/
boolean isCurrentElementEmpty();
@@ -104,7 +104,7 @@ interface XXMLDocumentWrapper : com::sun::star::uno::XInterface
* @return the name of the element
*/
string getNodeName([in] XXMLElementWrapper node);
-
+
/**
* Clears all useless element in a branch of the DOM tree along the
* tree order.
@@ -121,7 +121,7 @@ interface XXMLDocumentWrapper : com::sun::star::uno::XInterface
[in] XXMLElementWrapper node,
[in] sequence< XXMLElementWrapper > reservedDescendants,
[in] XXMLElementWrapper stopAtNode);
-
+
/**
* Collapses a tree path
* <p>
@@ -132,7 +132,7 @@ interface XXMLDocumentWrapper : com::sun::star::uno::XInterface
* path will be collapsed
*/
void collapse([in] XXMLElementWrapper node);
-
+
/**
* Converts a part of the DOM tree into SAX events.
*
@@ -144,12 +144,12 @@ interface XXMLDocumentWrapper : com::sun::star::uno::XInterface
* @param endNode the end point where to stop generating
*/
void generateSAXEvents(
- [in] com::sun::star::xml::sax::XDocumentHandler handler,
- [in] com::sun::star::xml::sax::XDocumentHandler saxEventKeeperHandler,
- [in] XXMLElementWrapper startNode,
+ [in] com::sun::star::xml::sax::XDocumentHandler handler,
+ [in] com::sun::star::xml::sax::XDocumentHandler saxEventKeeperHandler,
+ [in] XXMLElementWrapper startNode,
[in] XXMLElementWrapper endNode)
raises( com::sun::star::xml::sax::SAXException );
-
+
/**
* Converts the whole DOM tree into a SAX event stream.
*