Type: info
         Title: new interface css.xml.sax.XSAXSerializable
     Posted by: [EMAIL PROTECTED]
      Affected: -
Effective from: CWS custommeta


*Summary*
--------
New interface XSAXSerializable, with method serialize, taking an 
XDocumentHandler as parameter.
This interface is implemented by the DOM implementation in unoxml.

*Description*
-------------
interface XSAXSerializable
{

        
//-------------------------------------------------------------------------
    /** serializes an object (e.g. a DOM tree) that represents an XML
document
        by generating SAX events.

        @param  handler
            the SAX event handler that should receive the generated events
        @param  namespaces
            a list of namespace declarations that will be added to the
root
            element node of the XML document
            <p>
            This is necessary mostly because the DOM implementation does
            not permit attaching namespaces declarations directly to
nodes,
            which may lead to duplicate namespace declarations on export,
            and thus larger documents.
            Note that the first part of each tuple is the prefix,
            e.g. "office", and the second is the full namespace URI.
            </p>

        @throws com::sun::star::xml::sax::SAXException
                 if serializing the XML document fails
     */
    void serialize([in] sax::XDocumentHandler handler,
            [in] sequence< beans::StringPair > namespaces)
        raises( com::sun::star::xml::sax::SAXException );

};



Send feedback to [EMAIL PROTECTED]


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to