JXTA

Uses of Class
net.jxta.impl.document.PlainTextElement

Packages that use PlainTextElement
net.jxta.impl.document   
 

Uses of PlainTextElement in net.jxta.impl.document
 

Subclasses of PlainTextElement in net.jxta.impl.document
 class PlainTextDocument
          This class is an implementation of the StructuredDocument interface using simple text
 

Fields in net.jxta.impl.document declared as PlainTextElement
protected  PlainTextElement PlainTextElement.parent
           
 

Methods in net.jxta.impl.document that return PlainTextElement
 PlainTextElement PlainTextDocument.createElement(Object key)
          Create a new element without value.
 PlainTextElement PlainTextDocument.createElement(Object key, Object val)
          Create a new element with value.
 PlainTextElement PlainTextDocument.createElement(String name)
          Create a new element without value.
 PlainTextElement PlainTextDocument.createElement(String name, String val)
          Create a new element with value.
 PlainTextElement PlainTextElement.getParent()
          Get the parent element of this element.
 

Methods in net.jxta.impl.document that return types with arguments of type PlainTextElement
 Enumeration<PlainTextElement> PlainTextElement.getChildren(Object key)
          Returns an enumeration of the immediate children of this element who match the specified key.
 Enumeration<PlainTextElement> PlainTextElement.getChildren(String name)
          Returns an enumeration of the immediate children of this element whose name match the specified string.
 

Methods in net.jxta.impl.document with parameters of type PlainTextElement
 void PlainTextElement.appendChild(PlainTextElement element)
          Add a child element to this element.
 


JXSE