Package ucpp.builder

Source Code of ucpp.builder.ProgressBox

package ucpp.builder;

import org.eclipse.jface.operation.IRunnableWithProgress;
import org.eclipse.ui.PlatformUI;
import org.eclipse.ui.progress.IProgressService;

public class ProgressBox
{
  public ProgressBox(IRunnableWithProgress ptr) throws Exception
  {
    IProgressService service = PlatformUI.getWorkbench().getProgressService();
    service.run(true, false, ptr);
  }
}
TOP

Related Classes of ucpp.builder.ProgressBox

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.