- Job - Class in viptool.job
-
This is the class for all jobs in viptool.
- Job(String, String, int, int) - Constructor for class viptool.job.Job
-
Create a job object.
- JOB_CANCELLED - Static variable in interface viptool.job.IJob
-
flag that represents that a job could not finish and has been cancelled
- JOB_FINISHED - Static variable in interface viptool.job.IJob
-
flag that represents that a job has finished without beeing cancelled
- jobCancelled(JobEvent) - Method in interface viptool.job.event.IJobListener
-
This method is called if the job was cancelled by a call to the cancel()
method of the job.
- jobCancelled(JobEvent) - Method in interface viptool.job.event.IJobSchedulerListener
-
This method is called if a job was cancelled by a call to the cancel()
method of the job.
- JobEvent - Class in viptool.job.event
-
This class contains additional information about a job that has fired an
event.
- JobEvent(IJob, IConsole, IProgressMonitor) - Constructor for class viptool.job.event.JobEvent
-
Constructs a new job event object that contains additional information.
- jobFinished(JobEvent) - Method in interface viptool.job.event.IJobListener
-
This method is called if the job is ready with its work and has finished.
- jobFinished(JobEvent) - Method in interface viptool.job.event.IJobSchedulerListener
-
This method is called if a job is ready with its work and has finished.
- JobRuntimeException - Exception in viptool.job.error
-
- JobRuntimeException(IJob) - Constructor for exception viptool.job.error.JobRuntimeException
-
- JobRuntimeException(IJob, String, Throwable) - Constructor for exception viptool.job.error.JobRuntimeException
-
- JobRuntimeException(IJob, String) - Constructor for exception viptool.job.error.JobRuntimeException
-
- JobRuntimeException(IJob, Throwable) - Constructor for exception viptool.job.error.JobRuntimeException
-
- jobStarted(JobEvent) - Method in interface viptool.job.event.IJobListener
-
Called to notify the listener that the job was started and will begin to
work now.
- jobStarted(JobEvent) - Method in interface viptool.job.event.IJobSchedulerListener
-
Called to notify the listener that a job was started and will begin to
work now.