Uses of Class
kirk.io.sdl.SDLDocument

Packages that use SDLDocument
kirk.io.sdl   
 

Uses of SDLDocument in kirk.io.sdl
 

Methods in kirk.io.sdl that return SDLDocument
protected  SDLDocument ESDLReader.readESDLDocument()
          Reads the ESDL document from the given source and returns it as an SDLDocument object.
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.
protected  SDLDocument SDLReader.readSDLDocument()
          Reads the SDL document from the given source and returns it as an SDLDocument object.
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.
 

Methods in kirk.io.sdl with parameters of type SDLDocument
protected  void ESDLWriter.writeSDLDocument(SDLDocument document)
          Writes the given SDLDocument to the output stream.
static void ESDLWriter.writeESDL(SDLDocument document, OutputStream out)
          Writes the given SDLDocument to the given OutputStream.
static void ESDLWriter.writeESDLFile(SDLDocument document, String filename)
          Writes the given SDLDocument to file with the given filename.
protected  void SDLWriter.writeSDLDocument(SDLDocument document)
          Writes the given SDLDocument to the output stream.
static void SDLWriter.writeSDL(SDLDocument document, OutputStream out)
          Writes the given SDLDocument to the given OutputStream.
static void SDLWriter.writeSDLFile(SDLDocument document, String filename)
          Writes the given SDLDocument to file with the given filename.