- java.lang.Object
-
- java.util.EventObject
-
- javafx.event.Event
-
- javafx.event.ActionEvent
-
- All Implemented Interfaces:
Serializable
,Cloneable
- Direct Known Subclasses:
MediaMarkerEvent
public class ActionEvent extends Event
AnEvent
representing some type of action. This event type is widely used to represent a variety of things, such as when aButton
has been fired, when aKeyFrame
has finished, and other such usages.- Since:
- JavaFX 2.0
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static EventType<ActionEvent>
ACTION
The only valid EventType for the ActionEvent.static EventType<ActionEvent>
ANY
Common supertype for all action event types.-
Fields declared in class javafx.event.Event
consumed, eventType, NULL_SOURCE_TARGET, target
-
Fields declared in class java.util.EventObject
source
-
-
Constructor Summary
Constructors Constructor Description ActionEvent()
Creates a newActionEvent
with an event type ofACTION
.ActionEvent(Object source, EventTarget target)
Construct a newActionEvent
with the specified event source and target.
-
Method Summary
-
Methods declared in class javafx.event.Event
clone, consume, copyFor, fireEvent, getEventType, getTarget, isConsumed
-
Methods declared in class java.util.EventObject
getSource, toString
-
-
-
-
Field Detail
-
ACTION
public static final EventType<ActionEvent> ACTION
The only valid EventType for the ActionEvent.
-
ANY
public static final EventType<ActionEvent> ANY
Common supertype for all action event types.- Since:
- JavaFX 8.0
-
-
Constructor Detail
-
ActionEvent
public ActionEvent()
Creates a newActionEvent
with an event type ofACTION
. The source and target of the event is set toNULL_SOURCE_TARGET
.
-
ActionEvent
public ActionEvent(Object source, EventTarget target)
Construct a newActionEvent
with the specified event source and target. If the source or target is set tonull
, it is replaced by theNULL_SOURCE_TARGET
value. All ActionEvents have their type set toACTION
.- Parameters:
source
- the event source which sent the eventtarget
- the event target to associate with the event
-
-