Class AnimationUtil.FadeJob

java.lang.Object
org.eclipse.core.runtime.PlatformObject
org.eclipse.core.internal.jobs.InternalJob
org.eclipse.core.runtime.jobs.Job
org.eclipse.jface.notifications.internal.AnimationUtil.FadeJob
All Implemented Interfaces:
Comparable<org.eclipse.core.internal.jobs.InternalJob>, IAdaptable
Enclosing class:
AnimationUtil

public static class AnimationUtil.FadeJob extends Job
  • Constructor Details

  • Method Details

    • canceling

      protected void canceling()
      Description copied from class: Job
      A hook method indicating that this job is running and Job.cancel() is being called for the first time.

      Subclasses may override this method to perform additional work when a cancelation request is made. This default implementation does nothing.

      Overrides:
      canceling in class Job
    • cancelAndWait

      public void cancelAndWait(boolean setAlpha)
    • run

      protected IStatus run(IProgressMonitor monitor)
      Description copied from class: Job
      Executes this job. Returns the result of the execution.

      The provided monitor can be used to report progress and respond to cancellation. If the progress monitor has been canceled, the job should finish its execution at the earliest convenience and return a result status of severity IStatus.CANCEL. The singleton cancel status Status.CANCEL_STATUS can be used for this purpose. The monitor is only valid for the duration of the invocation of this method.

      This method must not be called directly by clients. Clients should call schedule, which will in turn cause this method to be called.

      Jobs can optionally finish their execution asynchronously (in another thread) by returning a result status of Job.ASYNC_FINISH. Jobs that finish asynchronously must specify the execution thread by calling setThread, and must indicate when they are finished by calling the method done.

      Specified by:
      run in class Job
      Parameters:
      monitor - the monitor to be used for reporting progress and responding to cancelation. The monitor is never null
      Returns:
      resulting status of the run. The result must not be null
      See Also: