java.lang.Object
java.util.EventObject
javafx.event.Event
javafx.scene.input.InputEvent
- All Implemented Interfaces:
- Serializable,- Cloneable
- Direct Known Subclasses:
- ContextMenuEvent,- DragEvent,- GestureEvent,- InputMethodEvent,- KeyEvent,- MouseEvent,- TouchEvent
An event indicating a user input.
- Since:
- JavaFX 2.0
- See Also:
- 
Field SummaryFieldsModifier and TypeFieldDescriptionstatic final EventType<InputEvent>Common supertype for all input event types.Fields declared in class javafx.event.Eventconsumed, eventType, NULL_SOURCE_TARGET, targetFields declared in class java.util.EventObjectsource
- 
Constructor SummaryConstructorsConstructorDescriptionInputEvent(Object source, EventTarget target, EventType<? extends InputEvent> eventType) Creates new instance of InputEvent.InputEvent(EventType<? extends InputEvent> eventType) Creates new instance of InputEvent.
- 
Method SummaryModifier and TypeMethodDescriptionEventType<? extends InputEvent>Gets the event type of this event.Methods declared in class javafx.event.Eventclone, consume, copyFor, fireEvent, getTarget, isConsumedMethods declared in class java.util.EventObjectgetSource, toString
- 
Field Details- 
ANYCommon supertype for all input event types.
 
- 
- 
Constructor Details- 
InputEventCreates new instance of InputEvent.- Parameters:
- eventType- Type of the event
 
- 
InputEventCreates new instance of InputEvent.- Parameters:
- source- Event source
- target- Event target
- eventType- Type of the event
 
 
- 
- 
Method Details- 
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
 
 
-