summaryrefslogtreecommitdiffstats
path: root/offapi/com/sun/star/xml/sax/XLocator.idl
diff options
context:
space:
mode:
Diffstat (limited to 'offapi/com/sun/star/xml/sax/XLocator.idl')
-rw-r--r--offapi/com/sun/star/xml/sax/XLocator.idl7
1 files changed, 0 insertions, 7 deletions
diff --git a/offapi/com/sun/star/xml/sax/XLocator.idl b/offapi/com/sun/star/xml/sax/XLocator.idl
index 4dd571862350..65d601da48b4 100644
--- a/offapi/com/sun/star/xml/sax/XLocator.idl
+++ b/offapi/com/sun/star/xml/sax/XLocator.idl
@@ -22,11 +22,9 @@
#include <com/sun/star/uno/XInterface.idl>
-//=============================================================================
module com { module sun { module star { module xml { module sax {
-//============================================================================
/** makes it possible to associate a SAX event with a document location.
@@ -35,32 +33,27 @@ module com { module sun { module star { module xml { module sax {
*/
published interface XLocator: com::sun::star::uno::XInterface
{
- //-------------------------------------------------------------------------
/** @returns
the column number where the current document event ends.
*/
long getColumnNumber();
- //-------------------------------------------------------------------------
/** @returns
the line number where the current document event ends.
*/
long getLineNumber();
- //-------------------------------------------------------------------------
/** @returns
the public identifier for the current document event.
*/
string getPublicId();
- //-------------------------------------------------------------------------
/** @returns
the system identifier for the current document event.
*/
string getSystemId();
};
-//=============================================================================
}; }; }; }; };