Uses of Class
kirk.io.sdl.SDLReadException

Packages that use SDLReadException
kirk.io.sdl   
 

Uses of SDLReadException in kirk.io.sdl
 

Methods in kirk.io.sdl that return SDLReadException
protected  SDLReadException SDLReader.getException(String error)
          Returns an SDLReadException with the given message, and some other information, like the place it happened in the file.
 

Methods in kirk.io.sdl that throw SDLReadException
protected  SDLDocument SDLReader.readSDLDocument()
          Reads the SDL document from the given source and returns it as an SDLDocument object.
protected  SDLElement SDLReader.readElement()
          Reads the element at the current position in the file, and the contained value.
protected  SDLNormalElement SDLReader.readNormalElement()
          Reads the normal element at the current position in the file, and the contained value.
protected  SDLDataElement SDLReader.readDataElement()
          Reads the data element at the current position in the file, and the contained value.
protected  String SDLReader.readTagValue(String name)
          Return the value inbetween the tag pair (start and end tag) with the given name.
protected  boolean SDLReader.checkStartTag(String tagname)
          Reads characters from the current position in the reader until as many as the length of the start tag of the given tag name are read.
protected  boolean SDLReader.checkEndTag(String tagname)
          Reads characters from the current position in the reader until as many as the length of the end tag of the given tag name are read.
protected  char SDLReader.read()
          Reads and return the next character in the stream.
static SDLDocument SDLReader.readSDL(InputStream in)
          Reads the given SDL source into an SDL document, and returns that.
static SDLDocument SDLReader.readSDLFile(String filename)
          Reads the given SDL file into an SDL document, and returns that.