Difference between revisions of "XFastDocumentHandler"

From Apache OpenOffice Wiki
Jump to: navigation, search
(added draft documentation for the new XFastDocumentHandler interface)
 
m (fixed link)
Line 1: Line 1:
See [[FastParser]]
+
See [[FastParser]],  [[XFastContextHandler]]
  
 
= Abstract =
 
= Abstract =
Line 6: Line 6:
  
 
<pre>
 
<pre>
interface XFastDocumentHandler: [[XFastContextHandler]]
+
interface XFastDocumentHandler: XFastContextHandler
 
{  
 
{  
 
   void startDocument() raises( com::sun::star::xml::sax::SAXException );  
 
   void startDocument() raises( com::sun::star::xml::sax::SAXException );  

Revision as of 16:25, 1 March 2007

See FastParser, XFastContextHandler

Abstract

IDL

interface XFastDocumentHandler: XFastContextHandler
{ 
  void startDocument() raises( com::sun::star::xml::sax::SAXException ); 
  void endDocument() raises( com::sun::star::xml::sax::SAXException ); 
  void setDocumentLocator( [in] com::sun::star::xml::sax::XLocator xLocator ) raises( com::sun::star::xml::sax::SAXException ); 
}; 

Namespace

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

Personal tools