Examples of RefactoringProcessor


Examples of org.eclipse.ltk.core.refactoring.participants.RefactoringProcessor

   *
   * @see org.eclipse.jface.wizard.Wizard#needsProgressMonitor()
   */
  public boolean needsProgressMonitor() {
    DeleteRefactoring refactoring = (DeleteRefactoring) getRefactoring();
    RefactoringProcessor processor = refactoring.getProcessor();
    if (processor instanceof ScriptDeleteProcessor) {
      return ((ScriptDeleteProcessor) processor).needsProgressMonitor();
    }
    return super.needsProgressMonitor();
  }
View Full Code Here
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.