JXTA

Uses of Interface
net.jxta.document.Document

Packages that use Document
net.jxta.codat Codats are container objects that can hold both data or code and are associated with a JXTA ID. 
net.jxta.document JXTA Documents are containers for both structured and unstructured data. 
net.jxta.endpoint Provides interfaces and classes used for the addressing, filtering, sending, and receiving of messages within JXTA. 
net.jxta.protocol Provides inteface objects for Advertisments and protocol messages for the JXTA Core and Standard Protocols. 
 

Uses of Document in net.jxta.codat
 

Methods in net.jxta.codat that return Document
 Document Codat.getDocument()
          Returns a Document containing the data of this Codat.
 

Constructors in net.jxta.codat with parameters of type Document
Codat(CodatID id, CodatID about, Document document)
          Constructs a Codat instance for an existing Codat given it's CodatID and a document.
Codat(PeerGroupID groupID, CodatID about, Document document)
          Constructs a Codat instance with a new CodatId given a PeerGroupID and a Document.
Metadata(CodatID id, CodatID about, Document document)
          Constructs a Metadata instance for an existing Codat given it's CodatID, the CodatID of the associated Codat and a Document.
Metadata(PeerGroupID groupID, CodatID about, Document document)
          Constructs a Metadata instance with a new CodatId given a PeerGroupID, the CodatID of the associated Codat and a Document.
 

Uses of Document in net.jxta.document
 

Subinterfaces of Document in net.jxta.document
 interface StructuredDocument<E extends Element<E>>
          An extension of Document which allows the content of a document to be specified by a hierarchy of elements.
 interface StructuredTextDocument<T extends TextElement<T>>
          Extends StructuredDocument to provide accessors appropriate for text based documents.
 interface TextDocument
          Extends Document for text documents.
 interface XMLDocument<X extends XMLElement<X>>
          Common interfaces for all StructuredTextDocument which are implemented by XML Documents.
 

Classes in net.jxta.document that implement Document
 class BinaryDocument
          This class is an implementation of the Document interface.
 class FileDocument
          This class presents a Document interface for a specific file on disk.
 

Methods in net.jxta.document that return Document
 Document ExtendableAdvertisement.getDocument(MimeMediaType encodeAs)
          Write this advertisement into a document of the requested type.
abstract  Document Advertisement.getDocument(MimeMediaType asMimeType)
          Write this advertisement into a document of the requested type.
 

Uses of Document in net.jxta.endpoint
 

Subinterfaces of Document in net.jxta.endpoint
 interface WireFormatMessage
          A wire serialization of an abstract message.
 

Classes in net.jxta.endpoint that implement Document
 class ByteArrayMessageElement
          A Message Element using byte arrays for the element data.
 class InputStreamMessageElement
          A Message Element using InputStream as the source for the element data.
 class MessageElement
          JXTA Message Elements are used to add data to a JXTA Message.
 class StringMessageElement
          A Message Element using character strings for the element data.
 class TextDocumentMessageElement
          A Message Element using JXTA TextDocument for the element data.
 class TextMessageElement
          An extension of MessageElement for managing elements that are composed of character text.
 

Uses of Document in net.jxta.protocol
 

Methods in net.jxta.protocol that return Document
abstract  Document PeerInfoQueryMessage.getDocument(MimeMediaType encodeAs)
           
abstract  Document DiscoveryQueryMsg.getDocument(MimeMediaType asMimeType)
          Write advertisement into a document. asMimeType is a mime media-type specification and provides the form of the document which is being requested.
abstract  Document ResolverSrdiMsg.getDocument(MimeMediaType asMimeType)
          Write advertisement into a document. asMimeType is a mime media-type specification and provides the form of the document which is being requested.
abstract  Document ResolverResponseMsg.getDocument(MimeMediaType asMimeType)
          Write advertisement into a document. asMimeType is a mime media-type specification and provides the form of the document which is being requested.
abstract  Document DiscoveryResponseMsg.getDocument(MimeMediaType asMimeType)
          Write advertisement into a document. asMimeType is a mime media-type specification and provides the form of the document which is being requested.
abstract  Document RouteResponseMsg.getDocument(MimeMediaType asMimeType)
          Deprecated. Write advertisement into a document. asMimeType is a mime media-type specification and provides the form of the document which is being requested.
abstract  Document SrdiMessage.getDocument(MimeMediaType asMimeType)
          Write advertisement into a document. asMimeType is a mime media-type specification and provides the form of the document which is being requested.
abstract  Document PipeResolverMessage.getDocument(MimeMediaType asMimeType)
          Write message into a document. asMimeType is a mime media-type specification and provides the form of the document which is being requested.
abstract  Document RouteQueryMsg.getDocument(MimeMediaType asMimeType)
          Deprecated. Write message into a document. asMimeType is a mime media-type specification and provides the form of the document which is being requested.
abstract  Document ResolverQueryMsg.getDocument(MimeMediaType asMimeType)
          Write advertisement into a document. asMimeType is a mime media-type specification and provides the form of the document which is being requested.
abstract  Document PeerInfoResponseMessage.getDocument(MimeMediaType encodeAs)
           
 


JXSE