Class TransformChangedEvent
java.lang.Object
java.util.EventObject
javafx.event.Event
javafx.scene.transform.TransformChangedEvent
- All Implemented Interfaces:
- Serializable,- Cloneable
This event is fired on a transform when any of its properties changes.
- Since:
- JavaFX 8.0
- See Also:
- 
Field SummaryFieldsModifier and TypeFieldDescriptionstatic final EventType<TransformChangedEvent> Common supertype for all transform changed event types.static final EventType<TransformChangedEvent> The only valid EventType for the TransformChangedEvent.Fields declared in class javafx.event.Eventconsumed, eventType, NULL_SOURCE_TARGET, targetFields declared in class java.util.EventObjectsource
- 
Constructor SummaryConstructorsConstructorDescriptionCreates a newTransformChangedEventwith an event type ofTRANSFORM_CHANGED.TransformChangedEvent(Object source, EventTarget target) Construct a newTransformChangedEventwith the specified event source and target.
- 
Method SummaryMethods declared in class javafx.event.Eventclone, consume, copyFor, fireEvent, getEventType, getTarget, isConsumedMethods declared in class java.util.EventObjectgetSource, toString
- 
Field Details- 
TRANSFORM_CHANGEDThe only valid EventType for the TransformChangedEvent.
- 
ANYCommon supertype for all transform changed event types.
 
- 
- 
Constructor Details- 
TransformChangedEventpublic TransformChangedEvent()Creates a newTransformChangedEventwith an event type ofTRANSFORM_CHANGED. The source and target of the event is set toNULL_SOURCE_TARGET.
- 
TransformChangedEventConstruct a newTransformChangedEventwith the specified event source and target. If the source or target is set tonull, it is replaced by theNULL_SOURCE_TARGETvalue. All TransformChangedEvents have their type set toTRANSFORM_CHANGED.- Parameters:
- source- the event source which sent the event
- target- the event target to associate with the event
 
 
-