- java.lang.Object
-
- javax.swing.AbstractAction
-
- javax.swing.text.TextAction
-
- javax.swing.text.DefaultEditorKit.DefaultKeyTypedAction
-
- All Implemented Interfaces:
-
ActionListener
,Serializable
,Cloneable
,EventListener
,Action
- Enclosing class:
- DefaultEditorKit
public static class DefaultEditorKit.DefaultKeyTypedAction extends TextAction
如果接收到键入类型的事件并且没有键映射条目,则默认执行的操作。 不同虚拟机在作为主键类型事件发送的内容方面存在差异,此操作会尝试过滤不需要的事件。 这将过滤控件字符和ALT修饰符。 它允许Control-Alt序列通过,因为它们在一些PC键盘上形成合法的unicode字符。如果事件没有被过滤,它将尝试将内容插入到文本编辑器中。 内容是从ActionEvent的命令字符串中获取的。 文本条目通过目标文本组件上的
replaceSelection
方法完成。 这是大多数文本输入任务将被触发的操作。警告:此类的序列化对象与将来的Swing版本不兼容。 当前的序列化支持适用于运行相同版本的Swing的应用程序之间的短期存储或RMI。 从1.4开始,所有JavaBeans的长期存储支持已被添加到
java.beans
包中。 请参阅XMLEncoder
。
-
-
Field Summary
-
Fields inherited from class javax.swing.AbstractAction
changeSupport, enabled
-
Fields inherited from interface javax.swing.Action
ACCELERATOR_KEY, ACTION_COMMAND_KEY, DEFAULT, DISPLAYED_MNEMONIC_INDEX_KEY, LARGE_ICON_KEY, LONG_DESCRIPTION, MNEMONIC_KEY, NAME, SELECTED_KEY, SHORT_DESCRIPTION, SMALL_ICON
-
-
构造方法摘要
构造方法 Constructor 描述 DefaultKeyTypedAction()
使用相应的标识符创建此对象。
-
方法摘要
所有方法 接口方法 具体的方法 Modifier and Type 方法 描述 void
actionPerformed(ActionEvent e)
触发此操作时执行的操作。-
Methods inherited from class javax.swing.AbstractAction
addPropertyChangeListener, clone, firePropertyChange, getKeys, getPropertyChangeListeners, getValue, isEnabled, putValue, removePropertyChangeListener, setEnabled
-
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from class javax.swing.text.TextAction
augmentList, getFocusedComponent, getTextComponent
-
-
-
-
方法详细信息
-
actionPerformed
public void actionPerformed(ActionEvent e)
触发此操作时执行的操作。- 参数
-
e
- 动作事件
-
-