Uses of Interface
net.sf.jplist.core.IElement

Packages that use IElement
net.sf.jplist.core Contains the core classes for JPList. 
net.sf.jplist.input.ascii Contains the ASCII PList parser and classes generated by JavaCC. 
net.sf.jplist.output Classes for outputting JPList Java objects in different formats. 
 

Uses of IElement in net.sf.jplist.core
 

Classes in net.sf.jplist.core that implement IElement
 class ArrayElement
          Implements ArrayElement object as a concrete subtype of generic Element.
 class DataElement
          Implements DataElement as a concrete subtype of the generic Element.
 class DictionaryElement
          Implements DictionaryElement as a concrete subtype of generic Element.
 class Document
          Implements the Document object for JPList.
 class Element<E>
          Generic implementation of an IElement object.
 class StringElement
          Implements the StringElement which is a concrete subtype of the generic Element.
 

Methods in net.sf.jplist.core that return IElement
 IElement NameValuePair.getValue()
          Return the value from the NameValuePair object.
 

Methods in net.sf.jplist.core with parameters of type IElement
 void NameValuePair.setValue(IElement value)
          Set the value into the NameValuePair object.
 

Constructors in net.sf.jplist.core with parameters of type IElement
NameValuePair(java.lang.String key, IElement value)
          Instantiate a NameValuePair object with key and value.
 

Uses of IElement in net.sf.jplist.input.ascii
 

Methods in net.sf.jplist.input.ascii that return IElement
 IElement AsciiPListParser.Element()
           
 

Uses of IElement in net.sf.jplist.output
 

Methods in net.sf.jplist.output with parameters of type IElement
 java.lang.String AsciiOutputter.outputString(IElement element)
          Routing function to format the various IElement implementations.
 java.lang.String XmlOutputter.outputString(IElement element)
          Routing function to format the various IElement implementations.