Uses of Class
kirk.io.sdl.SDLElement

Packages that use SDLElement
kirk.io.sdl   
 

Uses of SDLElement in kirk.io.sdl
 

Subclasses of SDLElement in kirk.io.sdl
 class SDLDataElement
          This class represents the data element of an SDL document.
 class SDLNormalElement
          This class represents the normal element of an SDL document.
 

Fields in kirk.io.sdl declared as SDLElement
protected  SDLElement SDLDocument.root
          The root element of this document.
 

Methods in kirk.io.sdl that return SDLElement
protected  SDLElement ESDLReader.readElement()
          Reads the element at the current position in the file, and the contained value.
 SDLElement SDLDocument.getRoot()
          Returns the root element of this document.
 SDLElement SDLNormalElement.getValue(int index)
          Returns the element at index.
 SDLElement SDLNormalElement.removeValue(int index)
          Removes the given value from the list of values (from the specified index).
 SDLElement SDLNormalElement.removeValue(SDLElement value)
          Removes the given value from the list of values.
 SDLElement SDLNormalElement.getElement(String name)
          Returns the SDLElement in this element that has the given name.
protected  SDLElement SDLReader.readElement()
          Reads the element at the current position in the file, and the contained value.
 

Methods in kirk.io.sdl with parameters of type SDLElement
protected  void ESDLWriter.writeElement(int indentation, SDLElement element)
          Writes the given SDLElement to the output stream.
 void SDLDocument.setRoot(SDLElement root)
          Sets the root element of this document to root.
 void SDLNormalElement.addValue(int index, SDLElement value)
          Adds the given value to the list of values (at the specified index).
 void SDLNormalElement.addValue(SDLElement value)
          Adds the given value to the list of values.
 void SDLNormalElement.setValue(SDLElement value, int index)
          Sets the given value in the list of values (at the specified index).
 SDLElement SDLNormalElement.removeValue(SDLElement value)
          Removes the given value from the list of values.
protected  void SDLWriter.writeElement(SDLElement element)
          Writes the given SDLElement to the output stream.
 

Constructors in kirk.io.sdl with parameters of type SDLElement
SDLDocument(SDLElement root)
          Constructs a new SDLDocument with the given version and root.