java.lang.Object
java.util.EventObject
javafx.event.Event
javafx.event.ActionEvent
- All Implemented Interfaces:
- Serializable,- Cloneable
- Direct Known Subclasses:
- MediaMarkerEvent
An 
Event representing some type of action. This event type is widely
 used to represent a variety of things, such as when a Button
 has been fired, when a KeyFrame has finished, and other
 such usages.- Since:
- JavaFX 2.0
- See Also:
- 
Field SummaryFieldsModifier and TypeFieldDescriptionstatic final EventType<ActionEvent>The only valid EventType for the ActionEvent.static final EventType<ActionEvent>Common supertype for all action event types.Fields declared in class javafx.event.Eventconsumed, eventType, NULL_SOURCE_TARGET, targetFields declared in class java.util.EventObjectsource
- 
Constructor SummaryConstructorsConstructorDescriptionCreates a newActionEventwith an event type ofACTION.ActionEvent(Object source, EventTarget target) Construct a newActionEventwith the specified event source and target.
- 
Method SummaryModifier and TypeMethodDescriptioncopyFor(Object newSource, EventTarget newTarget) Creates and returns a copy of this event with the specified event source and target.EventType<? extends ActionEvent>Gets the event type of this event.Methods declared in class java.util.EventObjectgetSource, toString
- 
Field Details- 
ACTIONThe only valid EventType for the ActionEvent.
- 
ANYCommon supertype for all action event types.- Since:
- JavaFX 8.0
 
 
- 
- 
Constructor Details- 
ActionEventpublic ActionEvent()Creates a newActionEventwith an event type ofACTION. The source and target of the event is set toNULL_SOURCE_TARGET.
- 
ActionEventConstruct a newActionEventwith the specified event source and target. If the source or target is set tonull, it is replaced by theNULL_SOURCE_TARGETvalue. All ActionEvents have their type set toACTION.- Parameters:
- source- the event source which sent the event
- target- the event target to associate with the event
 
 
- 
- 
Method Details- 
copyForDescription copied from class:EventCreates and returns a copy of this event with the specified event source and target. If the source or target is set tonull, it is replaced by theNULL_SOURCE_TARGETvalue.
- 
getEventTypeDescription copied from class:EventGets the event type of this event. Objects of the sameEventclass can have different event types. These event types further specify what kind of event occurred.- Overrides:
- getEventTypein class- Event
- Returns:
- the event type
 
 
-