Uses of Class
org.basex.io.PrintOutput

Packages that use PrintOutput
org.basex.core This package contains the core classes. 
org.basex.core.proc This package contains the command implementations. 
org.basex.data Contains BaseX data types, including the internal table representation in the Data class. 
org.basex.io Contains project specific input/output classes needed for reading and writing database files, displaying queries, etc. 
 

Uses of PrintOutput in org.basex.core
 

Methods in org.basex.core with parameters of type PrintOutput
 void Process.execute(Context ctx, PrintOutput out)
          Executes the process and serializes the results.
 void Process.info(PrintOutput out)
           
 void ClientProcess.info(PrintOutput o)
           
abstract  void AbstractProcess.info(PrintOutput out)
          Returns process info.
 void Process.output(PrintOutput out)
           
 void ClientProcess.output(PrintOutput o)
           
abstract  void AbstractProcess.output(PrintOutput out)
          Serializes the textual results of a command.
 

Uses of PrintOutput in org.basex.core.proc
 

Methods in org.basex.core.proc with parameters of type PrintOutput
static void InfoTable.table(PrintOutput out, Data data, int s, int e)
          Prints the specified range of the table.
 

Uses of PrintOutput in org.basex.data
 

Fields in org.basex.data declared as PrintOutput
 PrintOutput XMLSerializer.out
          Output stream.
 PrintOutput DOTSerializer.out
          Output stream.
 

Methods in org.basex.data with parameters of type PrintOutput
 void Namespaces.print(PrintOutput out, int s)
          Prints the namespace structure to the specified output stream.
 

Constructors in org.basex.data with parameters of type PrintOutput
DOTSerializer(PrintOutput o)
          Constructor, defining colors for the dot output.
XMLSerializer(PrintOutput o)
          Constructor.
XMLSerializer(PrintOutput o, boolean x, boolean p)
          Constructor.
 

Uses of PrintOutput in org.basex.io
 

Subclasses of PrintOutput in org.basex.io
 class CachedOutput
          This class caches the output bytes in an array.
 class ConsoleOutput
          This class is a stream-wrapper for textual data.
 class NullOutput
          This class swallows all data it receives.