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 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 Modifier and Type 方法 描述 UndoableEditListener[]AbstractDocument. getUndoableEditListeners()返回在此文档中注册的所有可撤销编辑监听器的数组。Methods in javax.swing.text with parameters of type UndoableEditListener Modifier and Type 方法 描述 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 Modifier and Type Class 描述 classUndoManagerUndoManager管理列表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 方法 描述 voidUndoableEditSupport. addUndoableEditListener(UndoableEditListener l)注册UndoableEditListener。voidUndoableEditSupport. removeUndoableEditListener(UndoableEditListener l)删除一个UndoableEditListener。
-