Uses of Interface
org.crosswire.common.progress.Progress

Packages that use Progress
org.crosswire.common.progress A generic method of having jobs that execute in the background over some time. 
org.crosswire.common.progress.swing GUI classes to support background processing. 
org.crosswire.common.util A collection of various generic utility classes. 
org.crosswire.jsword.book.install.sword An implementaiion of an installer that can handle Sword Books (Modules). 
org.crosswire.jsword.index.lucene An implemenation of SearchEngine using Lucene. 
 

Uses of Progress in org.crosswire.common.progress
 

Classes in org.crosswire.common.progress that implement Progress
 class Job
          A Generic method of keeping track of Threads and monitoring their progress.
 

Fields in org.crosswire.common.progress with type parameters of type Progress
private static Set<Progress> JobManager.jobs
          List of current jobs
 

Methods in org.crosswire.common.progress that return Progress
static Progress JobManager.createJob(String jobName)
          Create a new Job that cannot be canceled.
static Progress JobManager.createJob(String jobName, Thread workerThread)
          Create a new Job that can be canceled.
 Progress WorkEvent.getJob()
          Accessor for the Job
 

Methods in org.crosswire.common.progress that return types with arguments of type Progress
static Set<Progress> JobManager.getJobs()
          Accessor for the currently known jobs
 

Methods in org.crosswire.common.progress with parameters of type Progress
protected static void JobManager.fireWorkProgressed(Progress job)
          Inform the listeners that a title has changed.
 

Constructors in org.crosswire.common.progress with parameters of type Progress
WorkEvent(Progress source)
          Initialize a WorkEvent
 

Uses of Progress in org.crosswire.common.progress.swing
 

Fields in org.crosswire.common.progress.swing declared as Progress
private  Progress JobsProgressBar.JobData.job
           
private  Progress JobCancelListener.job
           
 

Fields in org.crosswire.common.progress.swing with type parameters of type Progress
protected  Map<Progress,JobsProgressBar.JobData> JobsProgressBar.jobs
          Where we store the currently displayed jobs
 

Methods in org.crosswire.common.progress.swing that return Progress
(package private)  Progress JobsProgressBar.JobData.getJob()
          Accessor for the Job
 

Methods in org.crosswire.common.progress.swing with parameters of type Progress
(package private)  void JobsProgressBar.addJob(Progress job)
          Create a new set of components for the new Job
 JButton JobsProgressBar.createCancelButton(Progress job)
          Create a cancel button that only shows the cancel icon.
protected  void JobsProgressBar.removeJob(Progress job)
          Remove the set of components from the panel
protected  void JobsProgressBar.updateJob(Progress job)
          Update the job details because it has just progressed
 

Constructors in org.crosswire.common.progress.swing with parameters of type Progress
JobCancelListener(Progress theJob)
           
JobsProgressBar.JobData(JobsProgressBar bar, Progress job, int index, JProgressBar progress)
          Simple ctor
 

Uses of Progress in org.crosswire.common.util
 

Methods in org.crosswire.common.util with parameters of type Progress
 void WebResource.copy(URI dest, Progress meter)
          Copy this WebResource to the destination and report progress.
 

Uses of Progress in org.crosswire.jsword.book.install.sword
 

Methods in org.crosswire.jsword.book.install.sword with parameters of type Progress
private  void HttpSwordInstaller.copy(Progress job, URI uri, URI dest)
           
protected  void HttpSwordInstaller.download(Progress job, String dir, String file, URI dest)
           
protected abstract  void AbstractSwordInstaller.download(Progress job, String dir, String file, URI dest)
          Utility to download a file from a remote site
 

Uses of Progress in org.crosswire.jsword.index.lucene
 

Methods in org.crosswire.jsword.index.lucene with parameters of type Progress
private  void LuceneIndex.generateSearchIndexImpl(Progress job, List<Key> errors, org.apache.lucene.index.IndexWriter writer, Key key, int count)
          Dig down into a Key indexing as we go.
 


Copyright ? 2003-2011