Uses of Class
org.basex.core.Progress

Packages that use Progress
org.basex.build This package contains classes for creating new database instances. 
org.basex.build.mediovis This package contains classes for building database instances from MAB2 library data. 
org.basex.build.xml This package provides classes for creating database instances from XML documents. 
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.dialog This package contains dialog windows used in the GUI. 
org.basex.index This package contains all database index structures. 
org.basex.query This package contains the XQuery implementation. 
 

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 FSParser
          Creates a database that maps a file system hierarchy.
 class MemBuilder
          This class creates a memory based database instance.
 class Parser
          This class defines a parser for creating databases from various sources.
 

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 Proc
          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 Add
          Evaluates the 'add' command and adds a single document to a collection.
 class AInfo
          Abstract class for database info.
 class AlterUser
          Evaluates the 'alter user' command and alters the password of a user.
 class Check
          Evaluates the 'open' command and opens a database.
 class Close
          Evaluates the 'close' command and closes the current database.
 class CreateColl
          Evaluates the 'create coll' command and creates a new collection.
 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 from an existing file hierarchy.
 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 CreateUser
          Evaluates the 'create user' command and creates a new user.
 class Cs
          Evaluates the 'cs' command and sets a new initial context set.
 class Delete
          Evaluates the 'delete' command and deletes a document from a collection.
 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 DropUser
          Evaluates the 'drop user' command and drops a user.
 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 Grant
          Evaluates the 'grant' command and grants permissions to users.
 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 Kill
          Evaluates the 'kill' command and stops user sessions.
 class List
          Evaluates the 'list' command and shows all available databases.
 class Mount
          Evaluates the 'mount' command and mounts a DeepFS database as FUSE.
 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 Password
          Evaluates the 'password' command and alters the user's password.
 class Run
          Evaluates the 'run' command and processes a query file as XQuery.
 class Set
          Evaluates the 'set' command and modifies database properties.
 class ShowDatabases
          Evaluates the 'show databases' command and shows opened databases.
 class ShowSessions
          Evaluates the 'show sessions' command and shows server sessions.
 class ShowUsers
          Evaluates the 'show users' command and shows existing users.
 class XQuery
          Evaluates the 'xquery' command and processes an XQuery request.
 

Uses of Progress in org.basex.gui.dialog
 

Constructors in org.basex.gui.dialog with parameters of type Progress
DialogProgress(GUI main, 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 FTBuilder
          This class provides a skeleton for full-text index builders.
 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 PathBuilder
          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.