Tabnine Logo
IProgressMonitor.internalWorked
Code IndexAdd Tabnine to your IDE (free)

How to use
internalWorked
method
in
org.eclipse.core.runtime.IProgressMonitor

Best Java code snippets using org.eclipse.core.runtime.IProgressMonitor.internalWorked (Showing top 20 results out of 315)

origin: com.github.veithen.cosmos.bootstrap/org.eclipse.equinox.common

/**
 * This implementation of a <code>IProgressMonitor</code>
 * method forwards to the wrapped progress monitor.
 * Clients may override this method to do additional
 * processing.
 *
 * @see IProgressMonitor#internalWorked(double)
 */
@Override
public void internalWorked(double work) {
  progressMonitor.internalWorked(work);
}
origin: org.eclipse.scout.sdk.deps/org.eclipse.equinox.common

/**
 * This implementation of a <code>IProgressMonitor</code>
 * method forwards to the wrapped progress monitor.
 * Clients may override this method to do additional
 * processing.
 *
 * @see IProgressMonitor#internalWorked(double)
 */
@Override
public void internalWorked(double work) {
  progressMonitor.internalWorked(work);
}
origin: org.eclipse.emf/org.eclipse.emf.mwe.core

/**
 * @see {@link ProgressMonitor#internalWorked(double)}
 */
public void internalWorked(double work) {
  monitor.internalWorked(work);
}
origin: org.eclipse.equinox/common

/**
 * This implementation of a <code>IProgressMonitor</code>
 * method forwards to the wrapped progress monitor.
 * Clients may override this method to do additional
 * processing.
 *
 * @see IProgressMonitor#internalWorked(double)
 */
public void internalWorked(double work) {
  progressMonitor.internalWorked(work);
}
origin: org.jibx.config.3rdparty.org.eclipse/org.eclipse.equinox.common

/**
 * This implementation of a <code>IProgressMonitor</code>
 * method forwards to the wrapped progress monitor.
 * Clients may override this method to do additional
 * processing.
 *
 * @see IProgressMonitor#internalWorked(double)
 */
public void internalWorked(double work) {
  progressMonitor.internalWorked(work);
}
origin: org.eclipse.mylyn.commons/core

public void internalWorked(double work) {
  this.internalWorked += work;
  for (IProgressMonitor monitor : monitors) {
    monitor.internalWorked(work);
  }
}
origin: org.jibx.config.3rdparty.org.eclipse/org.eclipse.jdt.core

public void internalWorked(double work) {
  if (this.progressMonitor != null) {
    this.progressMonitor.internalWorked(work);
  }
}
/**
origin: at.bestsolution.efxclipse.eclipse/org.eclipse.emf.common

public void internalWorked(double work)
{
 progressMonitor.internalWorked(work);
}
origin: org.eclipse.platform/org.eclipse.jface

@Override
public void internalWorked(double work) {
  progressDelegate.internalWorked(work);
}
origin: org.eclipse.jdt/org.eclipse.jdt.core

@Override
public void internalWorked(double work) {
  IProgressMonitor monitor = getMonitor();
  if (monitor != null)
    monitor.internalWorked(work);
}
origin: at.bestsolution.efxclipse.eclipse/org.eclipse.equinox.concurrent

public void internalWorked(double work) {
  super.internalWorked(work);
  synchronized (lock) {
    if (monitor != null)
      monitor.internalWorked(work);
  }
}
origin: org.eclipse.platform/org.eclipse.debug.ui

@Override
public void internalWorked(double work) {
  superMonitor.internalWorked(work);
  checkTicking();
}
origin: org.jibx.config.3rdparty.org.eclipse/org.eclipse.jdt.core

public void internalWorked(double work) {
  IProgressMonitor monitor = getMonitor();
  if (monitor != null)
    monitor.internalWorked(work);
}
origin: org.eclipse.platform/org.eclipse.ui.workbench

@Override
public void internalWorked(double work) {
  superMonitor.internalWorked(work);
  checkTicking();
}
origin: trylimits/Eclipse-Postfix-Code-Completion

public void internalWorked(double work) {
  IProgressMonitor monitor = getMonitor();
  if (monitor != null)
    monitor.internalWorked(work);
}
origin: org.eclipse/org.eclipse.jst.ws.consumption.ui

 public void run()
 {
  if( !progressMonitor_.isDisposed() )
  {
    monitor_.internalWorked( work );
  }
 }
} );
origin: com.google.code.maven-play-plugin.org.eclipse.jdt/org.eclipse.jdt.core

public void internalWorked(double work) {
  IProgressMonitor monitor = getMonitor();
  if (monitor != null)
    monitor.internalWorked(work);
}
origin: org.eclipse.tycho/org.eclipse.jdt.core

public void internalWorked(double work) {
  IProgressMonitor monitor = getMonitor();
  if (monitor != null)
    monitor.internalWorked(work);
}
origin: org.eclipse.net4j/util

@Override
public void worked(double work) throws MonitorCanceledException
{
 super.worked(work);
 progressMonitor.internalWorked(work);
}
origin: org.eclipse.scout.sdk.deps/org.eclipse.jdt.core

public void internalWorked(double work) {
  IProgressMonitor monitor = getMonitor();
  if (monitor != null)
    monitor.internalWorked(work);
}
org.eclipse.core.runtimeIProgressMonitorinternalWorked

Javadoc

Internal method to handle scaling correctly. This method must not be called by a client. Clients should always use the method worked(int).

Popular methods of IProgressMonitor

  • done
    Notifies that the work is done; that is, either the main task is completed or the user canceled it.
  • beginTask
    Notifies that the main task is beginning. This must only be called once on a given progress monitor
  • isCanceled
    Returns whether cancelation of current operation has been requested. Long-running operations should
  • worked
    Notifies that a given number of work unit of the main task has been completed. Note that this amount
  • subTask
    Notifies that a subtask of the main task is beginning. Subtasks are optional; the main task might no
  • setTaskName
    Sets the task name to the given value. This method is used to restore the task label after a nested
  • setCanceled
    Sets the cancel state to the given value.

Popular in Java

  • Start an intent from android
  • notifyDataSetChanged (ArrayAdapter)
  • findViewById (Activity)
  • getApplicationContext (Context)
  • InputStream (java.io)
    A readable source of bytes.Most clients will use input streams that read data from the file system (
  • HashSet (java.util)
    HashSet is an implementation of a Set. All optional operations (adding and removing) are supported.
  • ConcurrentHashMap (java.util.concurrent)
    A plug-in replacement for JDK1.5 java.util.concurrent.ConcurrentHashMap. This version is based on or
  • CountDownLatch (java.util.concurrent)
    A synchronization aid that allows one or more threads to wait until a set of operations being perfor
  • AtomicInteger (java.util.concurrent.atomic)
    An int value that may be updated atomically. See the java.util.concurrent.atomic package specificati
  • JButton (javax.swing)
  • Best IntelliJ plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now