Uses of Class
javax.swing.undo.CannotRedoException
-
Packages that use CannotRedoException 软件包 描述 javax.swing.text 提供处理可编辑和不可编辑文本组件的类和接口。javax.swing.undo 允许开发人员在文本编辑器等应用程序中提供撤消/重做的支持。 -
-
Uses of CannotRedoException in javax.swing.text
Methods in javax.swing.text that throw CannotRedoException Modifier and Type 方法 描述 void
AbstractDocument.DefaultDocumentEvent. redo()
重做一个变化。void
AbstractDocument.ElementEdit. redo()
重做一个变化。void
DefaultStyledDocument.AttributeUndoableEdit. redo()
重做一个变化。 -
Uses of CannotRedoException in javax.swing.undo
Methods in javax.swing.undo that throw CannotRedoException Modifier and Type 方法 描述 void
AbstractUndoableEdit. redo()
如果canRedo
返回false,则抛出CannotRedoException
。void
CompoundEdit. redo()
发送redo
所有包含UndoableEdit
s的顺序。void
UndoableEdit. redo()
重新应用编辑。void
UndoManager. redo()
重新进行适当的编辑。protected void
UndoManager. redoTo(UndoableEdit edit)
将下一次编辑的索引中的所有更改重新设置为edit
,适当更新下一个编辑的索引。void
UndoManager. undoOrRedo()
调用undo
或redo
之一的方便方法。
-