public class ActionEvent extends AWTEvent
Button
)生成。
该事件被传递给使用组件的addActionListener
方法注册接收此类事件的每个ActionListener
对象。
注意:要调用ActionEvent
上Button
使用键盘,使用空格键。
当事件发生时,实现ActionListener
接口的对象获得此ActionEvent
。 因此,监听器不需要处理单个鼠标移动和鼠标点击的细节,而是可以处理像“按钮”一样的“有意义”(语义)事件。
如果未指定的行为将引起id
任何特定的参数ActionEvent
实例不在范围从ACTION_FIRST
到ACTION_LAST
。
ActionListener
, Tutorial: How to Write an Action Listener , Serialized Form
Modifier and Type | Field and Description |
---|---|
static int |
ACTION_FIRST
用于动作事件的ids范围中的第一个数字。
|
static int |
ACTION_LAST
用于操作事件的ID的范围中的最后一个数字。
|
static int |
ACTION_PERFORMED
此事件ID表示发生了有意义的操作。
|
static int |
ALT_MASK
alt修饰符。
|
static int |
CTRL_MASK
控制修饰符。
|
static int |
META_MASK
元修饰符。
|
static int |
SHIFT_MASK
班次修改。
|
ACTION_EVENT_MASK, ADJUSTMENT_EVENT_MASK, COMPONENT_EVENT_MASK, consumed, CONTAINER_EVENT_MASK, FOCUS_EVENT_MASK, HIERARCHY_BOUNDS_EVENT_MASK, HIERARCHY_EVENT_MASK, id, INPUT_METHOD_EVENT_MASK, INVOCATION_EVENT_MASK, ITEM_EVENT_MASK, KEY_EVENT_MASK, MOUSE_EVENT_MASK, MOUSE_MOTION_EVENT_MASK, MOUSE_WHEEL_EVENT_MASK, PAINT_EVENT_MASK, RESERVED_ID_MAX, TEXT_EVENT_MASK, WINDOW_EVENT_MASK, WINDOW_FOCUS_EVENT_MASK, WINDOW_STATE_EVENT_MASK
source
Constructor and Description |
---|
ActionEvent(Object source, int id, String command)
构造一个
ActionEvent 对象。
|
ActionEvent(Object source, int id, String command, int modifiers)
使用修饰键构造一个
ActionEvent 对象。
|
ActionEvent(Object source, int id, String command, long when, int modifiers)
使用指定的修饰符键和时间戳构造一个
ActionEvent 对象。
|
Modifier and Type | Method and Description |
---|---|
String |
getActionCommand()
返回与此操作相关联的命令字符串。
|
int |
getModifiers()
返回此操作事件期间按住的修饰键。
|
long |
getWhen()
返回发生此事件的时间戳。
|
String |
paramString()
返回标识此操作事件的参数字符串。
|
getSource
public static final int SHIFT_MASK
public static final int CTRL_MASK
public static final int META_MASK
public static final int ALT_MASK
public static final int ACTION_FIRST
public static final int ACTION_LAST
@Native public static final int ACTION_PERFORMED
public ActionEvent(Object source, int id, String command)
ActionEvent
对象。
此方法抛出IllegalArgumentException
如果source
是null
。 A null
command
字符串是合法的,但不推荐。
source
- 发起事件的对象
id
- 标识事件的整数。
有关允许值的信息,请参阅ActionEvent
的类说明
command
- 可以指定与事件关联的命令(可能是其中一个)的字符串
IllegalArgumentException
- 如果
source
为空
EventObject.getSource()
,
AWTEvent.getID()
,
getActionCommand()
public ActionEvent(Object source, int id, String command, int modifiers)
ActionEvent
对象。
此方法抛出IllegalArgumentException
如果source
是null
。 A null
command
字符串是合法的,但不推荐。
source
- 发起事件的对象
id
- 标识事件的整数。
有关允许值的信息,请参阅ActionEvent
的类说明
command
- 可以指定与事件相关联的命令(可能是其中一个)的字符串
modifiers
- 修改器在事件期间按下(shift,ctrl,alt,meta)。
不推荐传递负参数。
零值表示没有通过修饰符
IllegalArgumentException
- 如果
source
为空
EventObject.getSource()
,
AWTEvent.getID()
,
getActionCommand()
,
getModifiers()
public ActionEvent(Object source, int id, String command, long when, int modifiers)
ActionEvent
对象。
此方法抛出IllegalArgumentException
如果source
是null
。 A null
command
字符串是合法的,但不推荐。
source
- 发起事件的对象
id
- 标识事件的整数。
有关允许值的信息,请参阅ActionEvent
的类说明
command
- 可以指定与事件关联的命令(可能是其中一个)的字符串
modifiers
- 修改器在事件期间按下(shift,ctrl,alt,meta)。
不推荐传递负参数。
零值表示没有通过修饰符
when
- 发生事件的时间长。
不建议传递负值或零值
IllegalArgumentException
- 如果
source
为空
EventObject.getSource()
,
AWTEvent.getID()
,
getActionCommand()
,
getModifiers()
,
getWhen()
public String getActionCommand()
请注意,如果null
命令字符串传递给此ActionEvent
,则此方法返回null
。
public long getWhen()
public int getModifiers()
public String paramString()
paramString
在类别
AWTEvent
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2014, Oracle and/or its affiliates. All rights reserved.