Difference between revisions of "XFastParser"

From Apache OpenOffice Wiki
Jump to: navigation, search
(added draft documentation for the new XFastParser interface)
 
m (small layout changes)
Line 1: Line 1:
= XFastParser =
+
DRAFT
 +
See [[FastParser]], [[XFastDocumentHandler]], [[XFastContextHandler]]
  
== Abstract ==
+
= Abstract =
  
== IDL ==
+
= IDL =
  
 
<pre>
 
<pre>
Line 25: Line 26:
 
</pre>
 
</pre>
  
== Namespace ==
+
= Namespace =
  
 
com::sun::star::xml::sax
 
com::sun::star::xml::sax

Revision as of 16:32, 1 March 2007

DRAFT See FastParser, XFastDocumentHandler, XFastContextHandler

Abstract

IDL

interface XFastParser: com::sun::star::uno::XInterface
{ 
  void parseStream( [in] InputSource aInputSource ) raises( SAXException, com::sun::star::io::IOException ); 
 
  void setFastDocumentHandler( [in] XFastDocumentHandler Handler ); 
  
  void setTokenHandler( [in] XFastTokenHandler Handler ); 

  void registerNamespace( [in] string NamespaceURL, [in] long NamespaceToken ) raises( com::sun::star::lang::IllegalArgumentException ); 

  void setErrorHandler( [in] XErrorHandler Handler );
 
  void setEntityResolver( [in] XEntityResolver Resolver ); 
 
  void setLocale( [in] com::sun::star::lang::Locale locale ); 
}; 

Namespace

com::sun::star::xml::sax

Personal tools