summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/xml/sax
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2008-01-10 11:46:02 +0000
committerOliver Bolte <obo@openoffice.org>2008-01-10 11:46:02 +0000
commit8ad28a171e51cea70fbcb058e821349ce314b39b (patch)
treef6a1070dd6abbf149caa9db27ca41c337710c0d7 /offapi/com/sun/star/xml/sax
parent12bed78c41a6c4255fa66eeb0869a117689a49c9 (diff)
INTEGRATION: CWS xmlfilter02 (1.1.2); FILE ADDED
2007/03/01 17:33:12 cl 1.1.2.2: updated documentation 2007/01/24 15:14:18 cl 1.1.2.1: added fast sax api
Diffstat (limited to 'offapi/com/sun/star/xml/sax')
-rw-r--r--offapi/com/sun/star/xml/sax/XFastTokenHandler.idl94
1 files changed, 94 insertions, 0 deletions
diff --git a/offapi/com/sun/star/xml/sax/XFastTokenHandler.idl b/offapi/com/sun/star/xml/sax/XFastTokenHandler.idl
new file mode 100644
index 000000000000..f25f952173f4
--- /dev/null
+++ b/offapi/com/sun/star/xml/sax/XFastTokenHandler.idl
@@ -0,0 +1,94 @@
+/*************************************************************************
+ *
+ * OpenOffice.org - a multi-platform office productivity suite
+ *
+ * $RCSfile: XFastTokenHandler.idl,v $
+ *
+ * $Revision: 1.2 $
+ *
+ * last change: $Author: obo $ $Date: 2008-01-10 12:46:02 $
+ *
+ * The Contents of this file are made available subject to
+ * the terms of GNU Lesser General Public License Version 2.1.
+ *
+ *
+ * GNU Lesser General Public License Version 2.1
+ * =============================================
+ * Copyright 2005 by Sun Microsystems, Inc.
+ * 901 San Antonio Road, Palo Alto, CA 94303, USA
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1, as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
+ * MA 02111-1307 USA
+ *
+ ************************************************************************/
+#ifndef __com_sun_star_xml_sax_XFastTokenHandler_idl__
+#define __com_sun_star_xml_sax_XFastTokenHandler_idl__
+
+#ifndef __com_sun_star_uno_XInterface_idl__
+#include <com/sun/star/uno/XInterface.idl>
+#endif
+
+//=============================================================================
+
+module com { module sun { module star { module xml { module sax {
+
+//============================================================================
+
+/** interface to translate xml strings to integer tokens.
+
+ <p>An instance of this interface can be registered at a <type>XFastParser</type>.
+ It should be able to translate all xml names (element local names,
+ attribute local names and constant attribute values) to integer tokens.
+
+ A token value must be greater or equal to zero and less than
+ <const>FastToken::NAMESPACE</const>. If a string identifier is not known
+ to this instance, <const>FastToken::DONTKNOW</const> is returned.
+ */
+interface XFastTokenHandler: com::sun::star::uno::XInterface
+{
+ //-------------------------------------------------------------------------
+
+ /** returns a integer token for the given string identifier.
+
+ @returns
+ a unique integer token for the given String or <const>FastToken::DONTKNOW</const
+ if the identifier is not known to this instance.
+ */
+ long getToken( [in] string Identifier );
+
+ //-------------------------------------------------------------------------
+
+ /** returns a string identifier for the given integer token.
+ */
+ string getIdentifier( [in] long Token );
+
+ //-------------------------------------------------------------------------
+
+ /** returns a integer token for the given string
+
+ @param Identifier
+ the string given as a byte sequence encoded in UTF8
+
+ @returns
+ a unique integer token for the given String or <const>FastToken::DONTKNOW</const>
+ if the identifier is not known to this instance.
+ */
+ long getTokenFromUTF8( [in] sequence< byte > Identifier );
+};
+
+//============================================================================
+
+}; }; }; }; };
+
+#endif