Uses of Class
org.basex.core.Context

Packages that use Context
org.basex.core This package contains the core classes. 
org.basex.core.proc This package contains the command implementations. 
org.basex.fuse Implements the database as filesystem in userspace. 
org.basex.gui Contains the graphical user interface. 
org.basex.gui.view.plot Contains the classes for the scatterplot view. 
org.basex.query Provides classes for querying the data. 
org.basex.query.ft Contains XQuery Full-Text 1.0 expressions. 
org.basex.server Contains classes for the client/server management. 
 

Uses of Context in org.basex.core
 

Methods in org.basex.core with parameters of type Context
 boolean Process.execute(Context ctx)
          Executes the process and returns a success flag.
 void Process.execute(Context ctx, PrintOutput out)
          Executes the process and serializes the results.
 

Constructors in org.basex.core with parameters of type Context
ClientLauncher(Context ctx)
          Constructor, specifying the server host:port and the command to be sent.
CommandParser(java.lang.String in, Context c)
          Constructor, parsing the input queries.
CommandParser(java.lang.String in, Context c, boolean i)
          Constructor, parsing internal commands.
Context(Context ctx)
          Constructor.
Launcher(Context ctx)
          Constructor.
 

Uses of Context in org.basex.core.proc
 

Methods in org.basex.core.proc with parameters of type Context
static Data Open.check(Context ctx, java.lang.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 java.lang.String Find.find(java.lang.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 Data Open.open(Context ctx, java.lang.String db)
          Opens the specified database.
static Data CreateDB.xml(Context ctx, IO io, java.lang.String name)
          Creates and returns a database for the specified XML document.
static Data CreateDB.xml(Context ctx, Parser p, java.lang.String db)
          Creates and returns a database instance from the specified parser.
 

Uses of Context in org.basex.fuse
 

Constructors in org.basex.fuse with parameters of type Context
DeepFS(Context ctx, java.lang.String name)
          Constructor for DeepShell and java only test cases (no mount).
 

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(java.lang.String qu, Context cx)
          Default constructor.
QueryProcessor(java.lang.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 BaseXServerNew.context
          Database Context.
 

Constructors in org.basex.server with parameters of type Context
ClientLauncherNew(Context ctx)
          Constructor, specifying the server host:port and the command to be sent.