Uses of Class
org.basex.core.Context

Packages that use Context
org.basex This is the main package of the project. 
org.basex.api.xmldb This package contains the implementation of the XML:DB API. 
org.basex.build This package contains classes for creating new database instances. 
org.basex.core This package contains the database core classes. 
org.basex.core.proc This package contains the implementations of all database commands. 
org.basex.gui This package contains the graphical user interface. 
org.basex.gui.view.plot This package contains the implementation of the Plot view. 
org.basex.query This package contains the XQuery implementation. 
org.basex.query.ft This package contains all XQuery Full Text expressions. 
org.basex.server This package contains the server implementation. 
org.deepfs.fs This package contains the DeepFS implementation. 
org.deepfs.fsml This package contains the core classes of the DeepFS project. 
org.deepfs.util This package contains DeepFS utility classes. 
 

Uses of Context in org.basex
 

Methods in org.basex with parameters of type Context
static void BaseXServer.stop(Context ctx)
          Stops the server.
 

Uses of Context in org.basex.api.xmldb
 

Constructors in org.basex.api.xmldb with parameters of type Context
BXCollection(String name, boolean open, Context c)
          Constructor to create/open a collection.
 

Uses of Context in org.basex.build
 

Constructors in org.basex.build with parameters of type Context
FSParser(String path, Context ctx, String dbname)
          Constructor.
 

Uses of Context in org.basex.core
 

Fields in org.basex.core declared as Context
 Context Main.context
          Database Context.
 

Methods in org.basex.core with parameters of type Context
 boolean Proc.exec(Context ctx)
          Executes the process and returns a success flag.
 boolean Proc.exec(Context ctx, OutputStream out)
          Executes the process, prints the result to the specified output stream and returns a success flag.
 void Proc.execute(Context ctx)
          Executes the process.
 void Proc.execute(Context ctx, OutputStream out)
          Executes the process and serializes textual results to the specified output stream.
 boolean Proc.updating(Context ctx)
          Returns if the process performs updates.
 

Constructors in org.basex.core with parameters of type Context
CommandParser(String in, Context c)
          Constructor, parsing the input queries.
CommandParser(String in, Context c, boolean i)
          Constructor, parsing internal commands.
Context(Context ctx)
          Constructor.
LocalSession(Context context)
          Constructor.
 

Uses of Context in org.basex.core.proc
 

Methods in org.basex.core.proc with parameters of type Context
static Data Check.check(Context ctx, String path)
          Opens the specified database; if it does not exist, create a new database instance.
static void Close.close(Context ctx, Data data)
          Closes the specified database.
static Data CreateDB.empty(Context ctx, String name)
          Creates an empty database.
static String Find.find(String query, Context ctx, boolean root)
          Creates an XQuery representation for the specified query.
static StringList List.list(Context ctx)
          Returns a list of all databases.
static StringList List.listFS(Context ctx)
          Returns a list of all DeepFS databases.
static Data Open.open(Context ctx, String db)
          Opens the specified database.
 boolean XQuery.updating(Context ctx)
           
 boolean Run.updating(Context ctx)
           
 boolean Optimize.updating(Context ctx)
           
 boolean Delete.updating(Context ctx)
           
 boolean Add.updating(Context ctx)
           
static Data CreateDB.xml(Context ctx, IO io, String name)
          Creates a database for the specified file.
static Data CreateDB.xml(Context ctx, Parser p, String db)
          Creates a database instance from the specified parser.
 

Uses of Context in org.basex.gui
 

Fields in org.basex.gui declared as Context
 Context GUI.context
          Database Context.
 

Constructors in org.basex.gui with parameters of type Context
GUI(Context ctx, GUIProp gprops)
          Default constructor.
 

Uses of Context in org.basex.gui.view.plot
 

Constructors in org.basex.gui.view.plot with parameters of type Context
PlotData(Context ctx)
          Default constructor.
 

Uses of Context in org.basex.query
 

Fields in org.basex.query declared as Context
 Context QueryContext.context
          Database context.
 

Constructors in org.basex.query with parameters of type Context
QueryContext(Context ctx)
          Constructor.
QueryProcessor(String qu, Context cx)
          Default constructor.
QueryProcessor(String qu, Nodes nodes, Context cx)
          Constructor with an initial context set.
QuerySuggest(QueryContext c, Context context)
          Constructor.
 

Uses of Context in org.basex.query.ft
 

Constructors in org.basex.query.ft with parameters of type Context
Thesaurus(IO fl, byte[] rs, long mn, long mx, Context c)
          Reads a thesaurus file.
Thesaurus(IO fl, Context c)
          Constructor.
 

Uses of Context in org.basex.server
 

Fields in org.basex.server declared as Context
 Context ServerProcess.context
          Database context.
 

Methods in org.basex.server with parameters of type Context
 boolean Semaphore.writing(Proc pr, Context ctx)
          Checks if the specified process is a writer.
 

Constructors in org.basex.server with parameters of type Context
ClientSession(Context context, String user, String pw)
          Constructor, specifying the database context and the login and password.
Log(Context ctx, boolean q)
          Constructor.
ServerSession(Context context, Semaphore s)
          Constructor.
 

Uses of Context in org.deepfs.fs
 

Methods in org.deepfs.fs that return Context
 Context DeepFS.getContext()
          Getter for actual context.
 

Constructors in org.deepfs.fs with parameters of type Context
DeepFS(Context c)
          Constructor.
 

Uses of Context in org.deepfs.fsml
 

Methods in org.deepfs.fsml that return Context
 Context DeepFile.getContext()
          Returns the database context.
 

Constructors in org.deepfs.fsml with parameters of type Context
DeepFile(ParserRegistry parserRegistry, BufferedFileChannel bufferedFileChannel, Context ctx)
           Constructor.
 

Uses of Context in org.deepfs.util
 

Constructors in org.deepfs.util with parameters of type Context
FSImporter(Context context)
          Constructor.