Uses of Class
org.basex.core.Process

Packages that use Process
org.basex.core This package contains the core classes. 
org.basex.core.proc This package contains the command implementations. 
org.basex.gui Contains the graphical user interface. 
org.basex.server Contains classes for the client/server management. 
 

Uses of Process in org.basex.core
 

Methods in org.basex.core that return Process
 Process[] CommandParser.parse()
          Parses the input and returns a command list.
 

Methods in org.basex.core with parameters of type Process
 boolean Launcher.execute(Process pr)
           
 boolean ClientLauncher.execute(Process pr)
           
abstract  boolean ALauncher.execute(Process pr)
          Executes a process.
 

Uses of Process in org.basex.core.proc
 

Subclasses of Process in org.basex.core.proc
 class Close
          Evaluates the 'close' command and closes the current database.
 class Copy
          Evaluates the 'copy' command and copies nodes in the database.
 class CreateDB
          Evaluates the 'create db' command and creates a new database.
 class CreateFS
          Evaluates the 'create fs' command and creates a new filesystem mapping.
 class CreateIndex
          Evaluates the 'create db' command and creates a new index.
 class CreateMAB
          Evaluates the 'create mab' command and creates a new database.
 class Cs
          Evaluates the 'cs' command and sets a new initial context set.
 class Delete
          Evaluates the 'delete' command and deletes nodes in the database.
 class DropDB
          Evaluates the 'drop database' command and deletes a database.
 class DropIndex
          Evaluates the 'drop index' command and deletes indexes in the currently opened database.
 class Exit
          Evaluates the 'exit' command and quits the console.
 class Export
          Evaluates the 'export' command and saves the currently opened database to disk.
 class Find
          Evaluates the 'find' command and processes a simplified request as XQuery.
 class Help
          Evaluates the 'help' command and returns help on the database commands.
 class Info
          Evaluates the 'info' command and returns general database information.
 class InfoDB
          Evaluates the 'info database' command and returns information on the currently opened database.
 class InfoIndex
          Evaluates the 'info index' command and returns information on the indexes of the currently opened database.
 class InfoTable
          Evaluates the 'info table' command and returns the table representation of the currently opened database.
 class Insert
          Evaluates the 'insert' command and inserts nodes into the database.
 class IntInfo
          Internal command, returning process info.
 class IntOutput
          Internal command, returning process output.
 class IntPrompt
          Internal command, returning a console prompt.
 class IntStop
          Internal command, stopping the server.
 class List
          Evaluates the 'list' command and shows all available databases.
 class Open
          Evaluates the 'open' command and opens a database.
 class Optimize
          Evaluates the 'optimize' command and optimizes the data structures of the currently opened database.
 class Run
          Evaluates the 'run' command and processes a query file as XQuery.
 class Set
          Evaluates the 'set' command and modifies database properties.
 class Update
          Evaluates the 'update' command and update nodes in the database.
 class XQuery
          Evaluates the 'xquery' command and processes an XQuery request.
 class XQueryMV
          Evaluates the 'xquerymv' command and processes an XQuery request for MedioVis queries.
 

Uses of Process in org.basex.gui
 

Methods in org.basex.gui with parameters of type Process
 void GUI.execute(Process pr)
          Launches the specified process in a thread.
 

Uses of Process in org.basex.server
 

Methods in org.basex.server with parameters of type Process
 boolean ClientLauncherNew.execute(Process pr)