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 the ArrayElement object.
 class DataElement
          Implement the DataElement.
 class DictionaryElement
          Implements a DictionaryElement.
 class Document
          Implements the Document object for JPList.
 class StringElement
          Implements a StringElement object.
 

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.