OpenOffice.org
XMerge API

Uses of Interface
org.openoffice.xmerge.Document

Packages that use Document
org.openoffice.xmerge Provides interfaces for converting between two Document formats, and supports a "merge" interface for merging back changes from a "lossy" format back into a rich format. 
org.openoffice.xmerge.converter.dom Provides classes for converting basic document types to/from a DOMDocument object, which can be used by the framework. 
org.openoffice.xmerge.converter.palm Provides classes for converting Palm database data to/from a PalmDocument object, which can be used by the framework. 
org.openoffice.xmerge.converter.xml Document and PluginFactory implementations for XML based formats. 
org.openoffice.xmerge.converter.xml.sxc Provides base implementation of StarCalc XML conversion to and from different "Device" Document formats. 
org.openoffice.xmerge.converter.xml.sxc.pexcel Provides the tools for doing the conversion of StarWriter XML to and from Pocket Excel format. 
org.openoffice.xmerge.converter.xml.sxw Provides base implementation of StarWriter XML conversion to and from different "Device" Document formats. 
org.openoffice.xmerge.converter.xml.sxw.aportisdoc Provides the tools for doing the conversion of StarWriter XML to and from AportisDoc format. 
org.openoffice.xmerge.converter.xml.sxw.pocketword Plugin for the conversion of documents between StarWriter XML and Pocket Word format. 
org.openoffice.xmerge.converter.xml.xslt Provides the tools for doing the conversion of StarWriter XML to and from supported formats, through the use of an XSLT transformation. 
 

Uses of Document in org.openoffice.xmerge
 

Methods in org.openoffice.xmerge that return Document
 Document Convert.getOfficeDocument(java.lang.String name, java.io.InputStream is)
          Returns the appropriate "Office" Document object for this plug-in.
 Document Convert.getDeviceDocument(java.lang.String name, java.io.InputStream is)
          Returns the appropriate "Device" Document object for this plug-in.
abstract  Document PluginFactory.createOfficeDocument(java.lang.String name, java.io.InputStream is)
          Create a Document object that corresponds to the Office data passed in via the InputStream object.
abstract  Document PluginFactory.createOfficeDocument(java.lang.String name, java.io.InputStream is, boolean isZip)
          Create a Document object that corresponds to the Office data passed in via the InputStream object.
abstract  Document PluginFactory.createDeviceDocument(java.lang.String name, java.io.InputStream is)
          Create a Document object that corresponds to the device data passed in via the InputStream object.
 Document DocumentDeserializer.deserialize()
          Convert the data passed into the DocumentDeserializer constructor into the "Office" Document format.
 

Methods in org.openoffice.xmerge with parameters of type Document
 void DocumentMerger.merge(Document modifiedDoc)
          This method will find the changes that had happened in the modifiedDoc Document object given the designated original Document.
 DocumentMerger Convert.getDocumentMerger(Document origDoc)
          Adds the original Document to the Convert Class.
 DocumentMerger DocumentMergerFactory.createDocumentMerger(Document doc)
          Create a DocumentMerger object given a Document object.
 void ConvertData.addDocument(Document doc)
          Adds a Document to the vector.
 DocumentSerializer DocumentSerializerFactory.createDocumentSerializer(Document doc)
          The DocumentSerializer is used to convert from the "Office" Document format to the "Device" Document format.
 

Uses of Document in org.openoffice.xmerge.converter.dom
 

Classes in org.openoffice.xmerge.converter.dom that implement Document
 class DOMDocument
          An implementation of Document for StarOffice documents.
 

Uses of Document in org.openoffice.xmerge.converter.palm
 

Classes in org.openoffice.xmerge.converter.palm that implement Document
 class PalmDocument
           A PalmDocument is palm implementaion of the Docuemnt interface.
 

Uses of Document in org.openoffice.xmerge.converter.xml
 

Classes in org.openoffice.xmerge.converter.xml that implement Document
 class OfficeDocument
          An implementation of Document for StarOffice documents.
 

Uses of Document in org.openoffice.xmerge.converter.xml.sxc
 

Classes in org.openoffice.xmerge.converter.xml.sxc that implement Document
 class SxcDocument
          This class is an implementation of OfficeDocument for the SXC format.
 

Methods in org.openoffice.xmerge.converter.xml.sxc that return Document
 Document SxcDocumentDeserializer.deserialize()
          Method to convert a set of "Device" Document objects into a SxcDocument object and returns it as a Document.
 Document SxcPluginFactory.createOfficeDocument(java.lang.String name, java.io.InputStream is)
           
 Document SxcPluginFactory.createOfficeDocument(java.lang.String name, java.io.InputStream is, boolean isZip)
           
 

Methods in org.openoffice.xmerge.converter.xml.sxc with parameters of type Document
 void DocumentMergerImpl.merge(Document modifiedDoc)
           
 

Constructors in org.openoffice.xmerge.converter.xml.sxc with parameters of type Document
SxcDocumentSerializer(Document document)
          Constructor.
DocumentMergerImpl(Document doc, ConverterCapabilities cc)
          Constructor
 

Uses of Document in org.openoffice.xmerge.converter.xml.sxc.pexcel
 

Classes in org.openoffice.xmerge.converter.xml.sxc.pexcel that implement Document
 class PxlDocument
           
 

Methods in org.openoffice.xmerge.converter.xml.sxc.pexcel that return Document
 Document PluginFactoryImpl.createDeviceDocument(java.lang.String name, java.io.InputStream is)
           
 

Methods in org.openoffice.xmerge.converter.xml.sxc.pexcel with parameters of type Document
 DocumentSerializer PluginFactoryImpl.createDocumentSerializer(Document doc)
          Returns an instance of DocumentSerializerImpl, which is an implementation of DocumentSerializer interface.
 DocumentMerger PluginFactoryImpl.createDocumentMerger(Document doc)
           
 

Constructors in org.openoffice.xmerge.converter.xml.sxc.pexcel with parameters of type Document
SxcDocumentSerializerImpl(Document document)
          Constructor.
 

Uses of Document in org.openoffice.xmerge.converter.xml.sxw
 

Classes in org.openoffice.xmerge.converter.xml.sxw that implement Document
 class SxwDocument
          This class is an implementation of OfficeDocument for the SXW format.
 

Methods in org.openoffice.xmerge.converter.xml.sxw that return Document
 Document SxwPluginFactory.createOfficeDocument(java.lang.String name, java.io.InputStream is)
           
 Document SxwPluginFactory.createOfficeDocument(java.lang.String name, java.io.InputStream is, boolean isZip)
           
 

Uses of Document in org.openoffice.xmerge.converter.xml.sxw.aportisdoc
 

Methods in org.openoffice.xmerge.converter.xml.sxw.aportisdoc that return Document
 Document DocumentDeserializerImpl.deserialize()
          Convert the given ConvertData object into a SxwDocument object.
 Document PluginFactoryImpl.createDeviceDocument(java.lang.String name, java.io.InputStream is)
           
 

Methods in org.openoffice.xmerge.converter.xml.sxw.aportisdoc with parameters of type Document
 void DocumentMergerImpl.merge(Document modifiedDoc)
           
 DocumentSerializer PluginFactoryImpl.createDocumentSerializer(Document doc)
          Returns an instance of DocumentSerializerImpl, which is an implementation of the DocumentSerializer interface.
 DocumentMerger PluginFactoryImpl.createDocumentMerger(Document doc)
          Returns an instance of DocumentMergerImpl, which is an implementation of the DocumentMerger interface.
 

Constructors in org.openoffice.xmerge.converter.xml.sxw.aportisdoc with parameters of type Document
DocumentMergerImpl(Document doc, ConverterCapabilities cc)
           
DocumentSerializerImpl(Document doc)
          Constructor.
 

Uses of Document in org.openoffice.xmerge.converter.xml.sxw.pocketword
 

Classes in org.openoffice.xmerge.converter.xml.sxw.pocketword that implement Document
 class PocketWordDocument
          Class representing a Pocket Word Document.
 

Methods in org.openoffice.xmerge.converter.xml.sxw.pocketword that return Document
 Document PluginFactoryImpl.createDeviceDocument(java.lang.String name, java.io.InputStream is)
          Create a Document object that corresponds to the Pocket Word data passed in via the InputStream object.
 Document DocumentDeserializerImpl.deserialize()
          Convert the data passed into the DocumentDeserializer constructor into the OpenOffice Writer Document format.
 

Methods in org.openoffice.xmerge.converter.xml.sxw.pocketword with parameters of type Document
 DocumentSerializer PluginFactoryImpl.createDocumentSerializer(Document doc)
          The DocumentSerializer is used to convert from the OpenOffice Writer Document format to the Pocket Word Document format.
 DocumentMerger PluginFactoryImpl.createDocumentMerger(Document doc)
          Returns an instance of DocumentMergerImpl, which is an implementation of the DocumentMerger interface.
 void DocumentMergerImpl.merge(Document modifiedDoc)
           
 

Constructors in org.openoffice.xmerge.converter.xml.sxw.pocketword with parameters of type Document
DocumentSerializerImpl(Document doc)
          Initialises a new DocumentSerializerImpl using the.
supplied Document
DocumentMergerImpl(Document doc, ConverterCapabilities cc)
           
 

Uses of Document in org.openoffice.xmerge.converter.xml.xslt
 

Classes in org.openoffice.xmerge.converter.xml.xslt that implement Document
 class GenericOfficeDocument
          This class is an implementation of OfficeDocument for the generic office format.
 

Methods in org.openoffice.xmerge.converter.xml.xslt that return Document
 Document PluginFactoryImpl.createDeviceDocument(java.lang.String str, java.io.InputStream inputStream)
           
 Document PluginFactoryImpl.createOfficeDocument(java.lang.String name, java.io.InputStream is)
           
 Document PluginFactoryImpl.createOfficeDocument(java.lang.String name, java.io.InputStream is, boolean isZip)
           
 Document DocumentDeserializerImpl.deserialize()
          Convert the given DOMDocument format object into a SxwDocument object.
 

Methods in org.openoffice.xmerge.converter.xml.xslt with parameters of type Document
 DocumentSerializer PluginFactoryImpl.createDocumentSerializer(Document doc)
          Returns an instance of DocumentSerializerImpl, which is an implementation of the DocumentSerializer interface.
 DocumentMerger PluginFactoryImpl.createDocumentMerger(Document doc)
          Returns an instance of DocumentMergerImpl, which is an implementation of the DocumentMerger interface.
 void DocumentMergerImpl.merge(Document modifiedDoc)
           
 

Constructors in org.openoffice.xmerge.converter.xml.xslt with parameters of type Document
DocumentSerializerImpl(PluginFactoryImpl pf, Document doc)
          Constructor.
DocumentMergerImpl(Document doc, ConverterCapabilities cc)
           
 


OpenOffice.org
XMerge API

Copyright © 2002 OpenOffice.org