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 voidSwingEventMonitor. addUndoableEditListener(UndoableEditListener l)添加指定的侦听器以在Java虚拟机中的每个组件实例上发生所有UNDOABLEEDIT事件。static voidSwingEventMonitor. 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 变量和类型 方法 描述 voidAbstractDocument. addUndoableEditListener(UndoableEditListener listener)添加撤消侦听器以通知任何更改。voidDocument. addUndoableEditListener(UndoableEditListener listener)当对文档进行可撤消编辑时,注册给定观察者以开始接收通知。voidAbstractDocument. removeUndoableEditListener(UndoableEditListener listener)删除撤消侦听器。voidDocument. removeUndoableEditListener(UndoableEditListener listener)从通知列表中取消注册给定的观察者,以便它不再接收更新。 -
Uses of UndoableEditListener in javax.swing.undo
Classes in javax.swing.undo that implement UndoableEditListener 变量和类型 类 描述 classUndoManagerUndoManager管理列表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 变量和类型 方法 描述 voidUndoableEditSupport. addUndoableEditListener(UndoableEditListener l)注册UndoableEditListener。voidUndoableEditSupport. removeUndoableEditListener(UndoableEditListener l)删除UndoableEditListener。
-