Uses of Class
org.basex.io.IO

Packages that use IO
org.basex.build Contains classes for creating new database instances. 
org.basex.build.fs Contains classes for file system traversals. 
org.basex.build.mediovis Contains classes for building database instances from MAB2 library data. 
org.basex.build.xml Provides classes for creating database instances from XML files. 
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.gui.layout Contains project specific GUI components. 
org.basex.io Contains project specific input/output classes needed for reading and writing database files, displaying queries, etc. 
org.basex.query Provides classes for querying the data. 
org.basex.query.xquery Includes an implementation of XQuery 1.0. 
 

Uses of IO in org.basex.build
 

Fields in org.basex.build declared as IO
 IO Parser.io
          Input file.
 

Constructors in org.basex.build with parameters of type IO
Parser(IO f)
          Constructor.
 

Uses of IO in org.basex.build.fs
 

Constructors in org.basex.build.fs with parameters of type IO
FSParser(IO path, boolean r)
          Constructor.
 

Uses of IO in org.basex.build.mediovis
 

Constructors in org.basex.build.mediovis with parameters of type IO
MAB2Parser(IO fn)
          Constructor.
 

Uses of IO in org.basex.build.xml
 

Constructors in org.basex.build.xml with parameters of type IO
DirParser(IO f)
          Constructor.
XMLParser(IO f)
          Constructor.
XMLScanner(IO f)
          Initializes the scanner.
 

Uses of IO in org.basex.core
 

Fields in org.basex.core declared as IO
static IO Prop.xquery
          Last XQuery file.
 

Uses of IO in org.basex.core.proc
 

Methods in org.basex.core.proc with parameters of type IO
static Data CreateDB.xml(IO io, java.lang.String db)
          Creates and returns a database for the specified XML document.
 

Uses of IO in org.basex.data
 

Fields in org.basex.data declared as IO
 IO MetaData.file
          Original filename of XML document.
 

Uses of IO in org.basex.gui.layout
 

Methods in org.basex.gui.layout that return IO
 IO BaseXFileChooser.getFile()
          Returns the selected file.
 

Uses of IO in org.basex.io
 

Subclasses of IO in org.basex.io
 class IOContent
          BaseX content.
 class IOFile
          BaseX file representation, pointing to a local or remote file or byte array contents.
 class IOUrl
          BaseX input stream.
 

Fields in org.basex.io declared as IO
static IO IO.DUMMY
          Return IO dummy instance.
 

Methods in org.basex.io that return IO
 IO[] IOFile.children()
           
 IO[] IO.children()
          Returns the children of a document.
static IO IO.get(java.lang.String s)
          Constructor.
 IO IOFile.merge(IO f)
           
 IO IOUrl.merge(IO f)
           
 IO IO.merge(IO f)
          Merges two filenames.
 IO IOContent.merge(IO f)
           
 

Methods in org.basex.io with parameters of type IO
 boolean IO.eq(IO io)
          Compares the filename of the specified IO reference.
 IO IOFile.merge(IO f)
           
 IO IOUrl.merge(IO f)
           
 IO IO.merge(IO f)
          Merges two filenames.
 IO IOContent.merge(IO f)
           
 

Uses of IO in org.basex.query
 

Fields in org.basex.query declared as IO
 IO QueryParser.file
          Optional reference to query input.
 IO QueryContext.file
          Reference to the query file.
 

Uses of IO in org.basex.query.xquery
 

Methods in org.basex.query.xquery with parameters of type IO
 void XQParser.parse(java.lang.String q, IO f, Uri u)
          Parses the specified query.
 

Constructors in org.basex.query.xquery with parameters of type IO
XQueryProcessor(java.lang.String qu, IO f)
          XQuery Constructor.