Examples of peekUndoName()


Examples of org.eclipse.ltk.core.refactoring.IUndoManager.peekUndoName()

    ResourceChangeListener rcl = new ResourceChangeListener();
    workspace.addResourceChangeListener(rcl);
    try{
      IUndoManager manager = RefactoringCore.getUndoManager();
      if(commandLine.hasOption(Options.PEEK_OPTION)){
        return manager.peekUndoName();
      }
      manager.performRedo(null, null);
      return rcl.getChangedFiles();
    }finally{
      workspace.removeResourceChangeListener(rcl);
View Full Code Here

Examples of org.eclipse.ltk.core.refactoring.IUndoManager.peekUndoName()

    ResourceChangeListener rcl = new ResourceChangeListener();
    workspace.addResourceChangeListener(rcl);
    try{
      IUndoManager manager = RefactoringCore.getUndoManager();
      if(commandLine.hasOption(Options.PEEK_OPTION)){
        return manager.peekUndoName();
      }
      manager.performUndo(null, null);
      return rcl.getChangedFiles();
    }finally{
      workspace.removeResourceChangeListener(rcl);
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.