Uses of Interface
javax.swing.event.UndoableEditListener
-
Packages that use UndoableEditListener 软件包 描述 com.sun.java.accessibility.util 提供组成Java辅助功能实用程序的接口和类的集合。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 Modifier and Type 方法 描述 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 Modifier and Type 方法 描述 UndoableEditListener[]
AbstractDocument. getUndoableEditListeners()
返回在此文档中注册的所有可撤销编辑监听器的数组。Methods in javax.swing.text with parameters of type UndoableEditListener Modifier and Type 方法 描述 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 Modifier and Type Class 描述 class
UndoManager
UndoManager
管理列表UndoableEdits
,提供了一种方法来撤消或恢复适当的编辑。Fields in javax.swing.undo with type parameters of type UndoableEditListener Modifier and Type Field 描述 protected Vector<UndoableEditListener>
UndoableEditSupport. listeners
听众列表。Methods in javax.swing.undo that return UndoableEditListener Modifier and Type 方法 描述 UndoableEditListener[]
UndoableEditSupport. getUndoableEditListeners()
返回使用addUndoableEditListener()添加到此UndoableEditSupport的所有UndoableEditListener
的数组。Methods in javax.swing.undo with parameters of type UndoableEditListener Modifier and Type 方法 描述 void
UndoableEditSupport. addUndoableEditListener(UndoableEditListener l)
注册UndoableEditListener
。void
UndoableEditSupport. removeUndoableEditListener(UndoableEditListener l)
删除一个UndoableEditListener
。
-