Uses of Interface
javax.swing.event.UndoableEditListener
-
Packages that use UndoableEditListener 软件包 描述 com.sun.java.accessibility.util 提供组成Java Accessibility Utilities的接口和类的集合。javax.swing.text 提供处理可编辑和不可编辑文本组件的类和接口。javax.swing.undo 允许开发人员在文本编辑器等应用程序中为撤消/重做提供支持。 -
-
Uses of UndoableEditListener in com.sun.java.accessibility.util
Methods in com.sun.java.accessibility.util with parameters of type UndoableEditListener 变量和类型 方法 描述 static void
SwingEventMonitor. addUndoableEditListener(UndoableEditListener l)
添加指定的侦听器以在Java虚拟机中的每个组件实例上发生所有UNDOABLEEDIT
事件。static void
SwingEventMonitor. removeUndoableEditListener(UndoableEditListener l)
删除指定的侦听器,以便它们在发生时不再接收UNDOABLEEDIT
事件。 -
Uses of UndoableEditListener in javax.swing.text
Methods in javax.swing.text that return UndoableEditListener 变量和类型 方法 描述 UndoableEditListener[]
AbstractDocument. getUndoableEditListeners()
返回在此文档上注册的所有可撤消编辑侦听器的数组。Methods in javax.swing.text with parameters of type UndoableEditListener 变量和类型 方法 描述 void
AbstractDocument. addUndoableEditListener(UndoableEditListener listener)
添加撤消侦听器以通知任何更改。void
Document. addUndoableEditListener(UndoableEditListener listener)
当对文档进行可撤消编辑时,注册给定观察者以开始接收通知。void
AbstractDocument. removeUndoableEditListener(UndoableEditListener listener)
删除撤消侦听器。void
Document. removeUndoableEditListener(UndoableEditListener listener)
从通知列表中取消注册给定的观察者,以便它不再接收更新。 -
Uses of UndoableEditListener in javax.swing.undo
Classes in javax.swing.undo that implement UndoableEditListener 变量和类型 类 描述 class
UndoManager
UndoManager
管理列表UndoableEdits
,提供了一种方法来撤消或恢复适当的编辑。Fields in javax.swing.undo with type parameters of type UndoableEditListener 变量和类型 字段 描述 protected Vector<UndoableEditListener>
UndoableEditSupport. listeners
听众列表。Methods in javax.swing.undo that return UndoableEditListener 变量和类型 方法 描述 UndoableEditListener[]
UndoableEditSupport. getUndoableEditListeners()
返回使用addUndoableEditListener()添加到此UndoableEditSupport的所有UndoableEditListener
的数组。Methods in javax.swing.undo with parameters of type UndoableEditListener 变量和类型 方法 描述 void
UndoableEditSupport. addUndoableEditListener(UndoableEditListener l)
注册UndoableEditListener
。void
UndoableEditSupport. removeUndoableEditListener(UndoableEditListener l)
删除UndoableEditListener
。
-