1 11 package org.eclipse.jface.text; 12 13 36 public interface IUndoManager { 37 38 43 void connect(ITextViewer viewer); 44 45 50 void disconnect(); 51 52 56 void beginCompoundChange(); 57 58 63 void endCompoundChange(); 64 65 69 void reset(); 70 71 77 void setMaximalUndoLevel(int undoLevel); 78 79 84 boolean undoable(); 85 86 92 boolean redoable(); 93 94 97 void undo(); 98 99 102 void redo(); 103 104 } 105 | Popular Tags |