Uses of Class
java.awt.event.ActionEvent
-
Packages that use ActionEvent 软件包 描述 java.awt 包含用于创建用户界面和绘制图形和图像的所有类。java.awt.dnd 拖放是在许多图形用户界面系统中发现的直接操纵手势,它提供了一种在逻辑上与GUI中的表示元素相关联的实体之间传递信息的机制。java.awt.event 提供用于处理AWT组件触发的不同类型事件的接口和类。javax.swing 提供一套“轻量级”(全Java语言)组件,尽可能地在所有平台上工作。javax.swing.plaf.basic 提供根据“基本”外观构建的用户界面对象。javax.swing.plaf.metal 提供根据Java外观构建的用户界面对象(一旦代号为 Metal ),这是默认的外观和感觉。javax.swing.text 提供处理可编辑和不可编辑文本组件的类和接口。javax.swing.text.html 提供类HTMLEditorKit
和支持类创建HTML文本编辑器。javax.swing.tree 提供处理javax.swing.JTree
类和接口。 -
-
Uses of ActionEvent in java.awt
Methods in java.awt with parameters of type ActionEvent Modifier and Type 方法 描述 void
AWTEventMulticaster. actionPerformed(ActionEvent e)
通过调用listener-a和listener-b上的actionPerformed方法来处理actionPerformed事件。void
List.AccessibleAWTList. actionPerformed(ActionEvent event)
protected void
Button. processActionEvent(ActionEvent e)
通过将此按钮分派到任何已注册的ActionListener
对象来处理在此按钮上发生的操作事件。protected void
List. processActionEvent(ActionEvent e)
通过将此组件发送到任何已注册的ActionListener
对象来处理此组件上发生的操作事件。protected void
MenuItem. processActionEvent(ActionEvent e)
处理此菜单项上发生的操作事件,将其发送到任何已注册的ActionListener
对象。protected void
TextField. processActionEvent(ActionEvent e)
通过将其发送到任何已注册的ActionListener
对象来处理在此文本字段上发生的操作事件。 -
Uses of ActionEvent in java.awt.dnd
Methods in java.awt.dnd with parameters of type ActionEvent Modifier and Type 方法 描述 void
DropTarget.DropTargetAutoScroller. actionPerformed(ActionEvent e)
导致自动滚屏发生 -
Uses of ActionEvent in java.awt.event
Methods in java.awt.event with parameters of type ActionEvent Modifier and Type 方法 描述 void
ActionListener. actionPerformed(ActionEvent e)
发生动作时调用。 -
Uses of ActionEvent in javax.swing
Methods in javax.swing with parameters of type ActionEvent Modifier and Type 方法 描述 void
DefaultCellEditor.EditorDelegate. actionPerformed(ActionEvent e)
执行动作时,编辑结束。void
JComboBox. actionPerformed(ActionEvent e)
这种方法是公共的,作为实现的副作用。void
ToolTipManager.insideTimerAction. actionPerformed(ActionEvent e)
发生动作时调用。void
ToolTipManager.outsideTimerAction. actionPerformed(ActionEvent e)
发生动作时调用。void
ToolTipManager.stillInsideTimerAction. actionPerformed(ActionEvent e)
发生动作时调用。protected void
AbstractButton. fireActionPerformed(ActionEvent event)
通知所有在此事件类型上通知有兴趣的听众。protected void
DefaultButtonModel. fireActionPerformed(ActionEvent e)
通知所有在此事件类型上通知有兴趣的听众。protected void
Timer. fireActionPerformed(ActionEvent e)
通知所有在此事件类型上通知有兴趣的听众。 -
Uses of ActionEvent in javax.swing.plaf.basic
Methods in javax.swing.plaf.basic with parameters of type ActionEvent Modifier and Type 方法 描述 void
BasicDesktopPaneUI.CloseAction. actionPerformed(ActionEvent evt)
void
BasicDesktopPaneUI.MaximizeAction. actionPerformed(ActionEvent evt)
void
BasicDesktopPaneUI.MinimizeAction. actionPerformed(ActionEvent evt)
void
BasicDesktopPaneUI.NavigateAction. actionPerformed(ActionEvent evt)
void
BasicDesktopPaneUI.OpenAction. actionPerformed(ActionEvent evt)
void
BasicFileChooserUI.ApproveSelectionAction. actionPerformed(ActionEvent e)
发生动作时调用。void
BasicFileChooserUI.CancelSelectionAction. actionPerformed(ActionEvent e)
发生动作时调用。void
BasicFileChooserUI.ChangeToParentDirectoryAction. actionPerformed(ActionEvent e)
发生动作时调用。void
BasicFileChooserUI.GoHomeAction. actionPerformed(ActionEvent e)
void
BasicFileChooserUI.NewFolderAction. actionPerformed(ActionEvent e)
发生动作时调用。void
BasicFileChooserUI.UpdateAction. actionPerformed(ActionEvent e)
发生动作时调用。void
BasicInternalFrameTitlePane.CloseAction. actionPerformed(ActionEvent e)
void
BasicInternalFrameTitlePane.IconifyAction. actionPerformed(ActionEvent e)
void
BasicInternalFrameTitlePane.MaximizeAction. actionPerformed(ActionEvent evt)
void
BasicInternalFrameTitlePane.MoveAction. actionPerformed(ActionEvent e)
void
BasicInternalFrameTitlePane.RestoreAction. actionPerformed(ActionEvent evt)
void
BasicInternalFrameTitlePane.SizeAction. actionPerformed(ActionEvent e)
void
BasicOptionPaneUI.ButtonActionListener. actionPerformed(ActionEvent e)
void
BasicScrollBarUI.ScrollListener. actionPerformed(ActionEvent e)
发生动作时调用。void
BasicSliderUI.ActionScroller. actionPerformed(ActionEvent e)
发生动作时调用。void
BasicSliderUI.ScrollListener. actionPerformed(ActionEvent e)
发生动作时调用。void
BasicSplitPaneUI.KeyboardDownRightHandler. actionPerformed(ActionEvent ev)
void
BasicSplitPaneUI.KeyboardEndHandler. actionPerformed(ActionEvent ev)
void
BasicSplitPaneUI.KeyboardHomeHandler. actionPerformed(ActionEvent ev)
void
BasicSplitPaneUI.KeyboardResizeToggleHandler. actionPerformed(ActionEvent ev)
void
BasicSplitPaneUI.KeyboardUpLeftHandler. actionPerformed(ActionEvent ev)
void
BasicTreeUI.ComponentHandler. actionPerformed(ActionEvent ae)
由于计时器而公开。void
BasicTreeUI.TreeCancelEditingAction. actionPerformed(ActionEvent e)
void
BasicTreeUI.TreeHomeAction. actionPerformed(ActionEvent e)
void
BasicTreeUI.TreeIncrementAction. actionPerformed(ActionEvent e)
void
BasicTreeUI.TreePageAction. actionPerformed(ActionEvent e)
void
BasicTreeUI.TreeToggleAction. actionPerformed(ActionEvent e)
void
BasicTreeUI.TreeTraverseAction. actionPerformed(ActionEvent e)
-
Uses of ActionEvent in javax.swing.plaf.metal
Methods in javax.swing.plaf.metal with parameters of type ActionEvent Modifier and Type 方法 描述 void
MetalFileChooserUI.DirectoryComboBoxAction. actionPerformed(ActionEvent e)
-
Uses of ActionEvent in javax.swing.text
Methods in javax.swing.text with parameters of type ActionEvent Modifier and Type 方法 描述 void
DefaultEditorKit.BeepAction. actionPerformed(ActionEvent e)
触发此操作时执行的操作。void
DefaultEditorKit.CopyAction. actionPerformed(ActionEvent e)
触发此操作时执行的操作。void
DefaultEditorKit.CutAction. actionPerformed(ActionEvent e)
触发此操作时执行的操作。void
DefaultEditorKit.DefaultKeyTypedAction. actionPerformed(ActionEvent e)
触发此操作时执行的操作。void
DefaultEditorKit.InsertBreakAction. actionPerformed(ActionEvent e)
触发此操作时执行的操作。void
DefaultEditorKit.InsertContentAction. actionPerformed(ActionEvent e)
触发此操作时执行的操作。void
DefaultEditorKit.InsertTabAction. actionPerformed(ActionEvent e)
触发此操作时执行的操作。void
DefaultEditorKit.PasteAction. actionPerformed(ActionEvent e)
触发此操作时执行的操作。void
StyledEditorKit.AlignmentAction. actionPerformed(ActionEvent e)
设置对齐。void
StyledEditorKit.BoldAction. actionPerformed(ActionEvent e)
切换粗体属性。void
StyledEditorKit.FontFamilyAction. actionPerformed(ActionEvent e)
设置字体系列。void
StyledEditorKit.FontSizeAction. actionPerformed(ActionEvent e)
设置字体大小。void
StyledEditorKit.ForegroundAction. actionPerformed(ActionEvent e)
设置前景色。void
StyledEditorKit.ItalicAction. actionPerformed(ActionEvent e)
切换斜体属性。void
StyledEditorKit.UnderlineAction. actionPerformed(ActionEvent e)
切换下划线属性。protected JEditorPane
StyledEditorKit.StyledTextAction. getEditor(ActionEvent e)
获取操作的目标编辑器。protected JTextComponent
TextAction. getTextComponent(ActionEvent e)
确定要用于操作的组件。 -
Uses of ActionEvent in javax.swing.text.html
Methods in javax.swing.text.html with parameters of type ActionEvent Modifier and Type 方法 描述 void
FormView. actionPerformed(ActionEvent evt)
负责处理ActionEvent。void
HTMLEditorKit.InsertHTMLTextAction. actionPerformed(ActionEvent ae)
将HTML插入到文档中。 -
Uses of ActionEvent in javax.swing.tree
Methods in javax.swing.tree with parameters of type ActionEvent Modifier and Type 方法 描述 void
DefaultTreeCellEditor. actionPerformed(ActionEvent e)
在定时器触发时消息传送,这将开始编辑会话。
-