Uses of Class
kirk.io.sdl.ESDLReadException

Packages that use ESDLReadException
kirk.io.sdl   
 

Uses of ESDLReadException in kirk.io.sdl
 

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

Methods in kirk.io.sdl that throw ESDLReadException
protected  SDLDocument ESDLReader.readESDLDocument()
          Reads the ESDL document from the given source and returns it as an SDLDocument object.
protected  SDLElement ESDLReader.readElement()
          Reads the element at the current position in the file, and the contained value.
protected  SDLNormalElement ESDLReader.readNormalElement()
          Reads the normal element at the current position in the file, and the contained value.
protected  SDLDataElement ESDLReader.readDataElement()
          Reads the data element at the current position in the file, and the contained value.
private  String ESDLReader.readTagValue(String name)
          Return the value inbetween the tag pair (start and end tag) with the given name.
protected  void ESDLReader.skipWhiteSpaceAndComments()
          This method is especially for ESDL.
protected  boolean ESDLReader.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 ESDLReader.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 ESDLReader.read()
          Reads and return the next character in the stream.
static SDLDocument ESDLReader.readESDLFile(String filename)
          Reads the given ESDL file into an ESDL document, and returns that.
static SDLDocument ESDLReader.readESDL(InputStream in)
          Reads the given ESDL source into an ESDL document, and returns that.