Searched defs:redo (Results 1 - 10 of 10) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/undo/
H A DUndoableEdit.java56 * undone or redone. The <code>UndoManager</code> will undo or redo
88 public void redo() throws CannotRedoException; method in interface:UndoableEdit
136 * <code>redo</code>.</p>
159 * exception on undo() or redo().</p>
170 * or redo, all insignificant edits to the next significant edit.
H A DStateEdit.java37 * Hashtables before and after editing occurs. Upon undo or redo the
84 * The undo/redo presentation name
152 public void redo() { method in class:StateEdit
153 super.redo();
H A DAbstractUndoableEdit.java86 * Sending <code>undo</code> or <code>redo</code> to
124 * @see #redo
133 * Subclasses should override to redo the operation represented by
140 public void redo() throws CannotRedoException { method in class:AbstractUndoableEdit
155 * @see #redo
H A DCompoundEdit.java68 * Sends <code>redo</code> to all contained
72 public void redo() throws CannotRedoException { method in class:CompoundEdit
73 super.redo();
76 ((UndoableEdit)cursor.nextElement()).redo();
H A DUndoManager.java34 * providing a way to undo or redo the appropriate edits. There are
91 * Invoking <code>redo</code> results in invoking <code>redo</code> on
94 * example if <code>redo</code> were invoked, <code>redo</code> would in
304 * Returns the the next significant edit to be redone if <code>redo</code>
351 next.redo();
358 * <code>redo</code>. If any edits have been undone (the index of
360 * invokes <code>redo</code>, otherwise it invokes <code>undo</code>.
374 redo();
452 public synchronized void redo() throws CannotRedoException { method in class:UndoManager
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DStringContent.java413 public void redo() throws CannotRedoException { method in class:StringContent.InsertUndo
414 super.redo();
473 public void redo() throws CannotRedoException { method in class:StringContent.RemoveUndo
474 super.redo();
H A DGapContent.java877 public void redo() throws CannotRedoException { method in class:GapContent.InsertUndo
878 super.redo();
932 public void redo() throws CannotRedoException { method in class:GapContent.RemoveUndo
933 super.redo();
948 /** The string that was removed. This is valid when redo is valid. */
H A DAbstractDocument.java2774 public void redo() throws CannotRedoException { method in class:AbstractDocument.DefaultDocumentEvent
2778 super.redo();
3061 public void redo() throws CannotRedoException { method in class:AbstractDocument.ElementEdit
3062 super.redo();
H A DDefaultStyledDocument.java2537 public void redo() throws CannotRedoException { method in class:DefaultStyledDocument.AttributeUndoableEdit
2538 super.redo();
2585 public void redo() throws CannotRedoException { method in class:DefaultStyledDocument.StyleChangeUndoableEdit
2586 super.redo();
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/
H A DDiagramScene.java1190 public void redo() throws CannotRedoException { method in class:DiagramScene.DiagramUndoRedo
1191 super.redo();

Completed in 58 milliseconds