Examples of performUndo()


Examples of org.antlr.xjlib.appkit.undo.XJUndo.performUndo()

    }

    public void performUndo() {
        XJUndo undo = getCurrentUndo();
        if(undo != null) {
            undo.performUndo();
        }
    }

    public void performRedo() {
        XJUndo undo = getCurrentUndo();
View Full Code Here

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

    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.