Uses of Class
org.peace_tools.workspace.Job

Packages that use Job
org.peace_tools.core Contains the core classes that coordinate the activities of various classes and wizards. 
org.peace_tools.core.job Contains the classes associated with the job wizard. 
org.peace_tools.data Contains the classes that provide data for the various views in the GUI. 
org.peace_tools.views Contains the classes that provide views for the various data objects in the GUI. 
org.peace_tools.workspace Contains the classes that provide persistent storage of work space configuration. 
 

Uses of Job in org.peace_tools.core
 

Fields in org.peace_tools.core declared as Job
private  Job FileCopyDialog.job
          The job entry for which the files are to be copied from the server (on which the job was run) to the local machine on which the GUI is running.
private  Job JobMonitor.job
          The job that this monitor is monitoring.
private  Job JobMenuHelper.job
          The currently selected job entry (if any).
 

Methods in org.peace_tools.core with parameters of type Job
 void JobMenuHelper.abortJob(Job job)
          Method to abort a job running on a server.
static boolean JobMonitor.create(Job job, java.awt.event.ActionListener listener)
          The primary API method to create a job monitor thread.
 void ViewFactory.createView(Job job, Server server)
          Method to create a graph type of view for a given entry.
private  void DeleteDialog.delJobFiles(Job job)
          Helper method to delete files for a given job.
static java.lang.Thread JobMonitor.getMonitor(Job job)
          Method to obtain an existing monitor thread for this job.
static void JobMonitor.interrupt(Job job)
          Convenience method to interrupt a job monitor thread.
 

Constructors in org.peace_tools.core with parameters of type Job
FileCopyDialog(MainFrame parent, Job job)
          The constructor for creating and configuring this dialog.
JobMonitor(Job job, Server server, java.awt.event.ActionListener listener)
          The constructor merely initializes the instance variables to default values.
 

Uses of Job in org.peace_tools.core.job
 

Fields in org.peace_tools.core.job declared as Job
private  Job JobWizard.job
          The job entry that is finally created by this job wizard when the final wizard page is displayed.
 

Methods in org.peace_tools.core.job that return Job
private  Job JobWizard.createJobEntry()
          Helper method to create the job entry to be added to the workspace.
protected  Job JobWizard.getJob()
          Obtain the job entry created and added by this wizard.
 

Uses of Job in org.peace_tools.data
 

Methods in org.peace_tools.data that return Job
 Job JobListTableModel.getJob(int row)
          This is a convenience method to obtain the job data.
 

Uses of Job in org.peace_tools.views
 

Fields in org.peace_tools.views declared as Job
private  Job JobDetailsView.job
          The job whose details is being displayed by this panel.
 

Methods in org.peace_tools.views with parameters of type Job
private static javax.swing.tree.DefaultMutableTreeNode PropertiesTreeMaker.makeJobProperties(Job job)
          Helper method to create a properties node for a given MST entry.
 

Constructors in org.peace_tools.views with parameters of type Job
JobDetailsView(Job job, Server server)
          The constructor.
 

Uses of Job in org.peace_tools.workspace
 

Fields in org.peace_tools.workspace with type parameters of type Job
private  java.util.ArrayList<Job> JobList.jobs
          The list of job objects that have been configured and added to this list.
 

Methods in org.peace_tools.workspace that return Job
static Job Job.create(org.w3c.dom.Element jobNode)
          Helper method to utilize data from a DOM tree to create a suitable Job entry.
 Job JobList.getjob(java.lang.String jobID)
          Obtain reference to a job object, given its work space wide unique job ID.
 

Methods in org.peace_tools.workspace that return types with arguments of type Job
 java.util.ArrayList<Job> JobList.getJobs()
          Obtain the list of job objects that are currently available in a work space.
 

Methods in org.peace_tools.workspace with parameters of type Job
 void JobList.add(Job job)
          Method to add a new job entry to the job list.
 void JobList.remove(Job job)
          Method to remove a job entry.
 void MSTClusterData.updateJobSummary(Job job)
          Set revised updated information about the job associated with this MSTData entry.
 void MSTData.updateJobSummary(Job job)
          Set revised updated information about the job associated with this MSTData entry.
 

Constructors in org.peace_tools.workspace with parameters of type Job
JobSummary(Job job)
          A convenience constructor.
JobSummary(Job job, FWAnalyzer.FWAnalyzerType analyzerType)
          A convenience constructor.
WorkspaceEvent(Job job, WorkspaceEvent.Operation operation)
          Constructor to create an event that can be used to report change in the status of a job entry.