Uses of Class
org.basex.core.Progress

Packages that use Progress
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.gui.dialog Contains dialog windows used in the GUI. 
org.basex.index Contains database index implementations. 
org.basex.query Provides classes for querying the data. 
 

Uses of Progress in org.basex.build
 

Subclasses of Progress in org.basex.build
 class Builder
          This class provides an interface for building database instances.
 class DiskBuilder
          This class creates a disk based database instance.
 class MemBuilder
          This class creates a memory based database instance.
 class NativeBuilder
          This class creates a memory based database instance and passes the events to a native application code.
 class Parser
          This class defines a parser for creating databases from various sources.
 

Uses of Progress in org.basex.build.fs
 

Subclasses of Progress in org.basex.build.fs
 class FSParser
          Imports/shreds/parses a file hierarchy into a database.
 class NewFSParser
          Imports/shreds/parses a file hierarchy into a database.
 

Uses of Progress in org.basex.build.mediovis
 

Subclasses of Progress in org.basex.build.mediovis
 class MAB2Parser
          This class parses MAB2 data and creates a hierarchical representation.
 

Uses of Progress in org.basex.build.xml
 

Subclasses of Progress in org.basex.build.xml
 class DirParser
          This class parses the tokens that are delivered by the XMLScanner and sends them to the specified database builder.
 class DOCWrapper
          This class parses an XML document via a conventional SAX parser.
 class SAXWrapper
          This class parses an XML document with Java's default SAX parser.
 class XMLParser
          This class parses the tokens that are delivered by the XMLScanner and sends them to the specified database builder.
 class XMLScanner
          This class scans an XML document and creates atomic tokens.
 

Uses of Progress in org.basex.core
 

Subclasses of Progress in org.basex.core
 class Process
          This class provides the architecture for all internal command implementations.
 

Methods in org.basex.core with parameters of type Progress
 void Progress.progress(Progress prog)
          Sets a new sub progress.
 

Uses of Progress in org.basex.core.proc
 

Subclasses of Progress 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 Progress in org.basex.gui.dialog
 

Constructors in org.basex.gui.dialog with parameters of type Progress
DialogProgress(GUI main, java.lang.String msg, boolean pb, boolean cnc, Progress prg)
          Default constructor.
 

Uses of Progress in org.basex.index
 

Subclasses of Progress in org.basex.index
 class FTFuzzyBuilder
          This class builds an index for text contents, optimized for fuzzy search, in an ordered table.
 class FTTrieBuilder
          This class builds an index for text contents in a compressed trie.
 class IndexBuilder
          This interface defines the functions which are needed for building new index structures.
 class ValueBuilder
          This main-memory based class builds an index for attribute values and text contents in a tree structure and stores the result to disk.
 

Uses of Progress in org.basex.query
 

Subclasses of Progress in org.basex.query
 class QueryContext
          This abstract query expression provides the architecture for a compiled query. // *
 class QueryProcessor
          This abstract class contains various methods which allow querying in the database.