Class TransitionStartEvent
java.lang.Object
com.oorian.messaging.events.Event<TransitionListener>
com.oorian.messaging.events.client.ClientEvent<TransitionListener>
com.oorian.messaging.events.client.TransitionEvent
com.oorian.messaging.events.client.TransitionStartEvent
Represents a transition start event that occurs when a CSS transition begins.
- Since:
- 2026
- Version:
- 1.0
- Author:
- Marvin P. Warble Jr.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionTransitionStartEvent(String propertyName, float elapsedTime, String pseudoElement) Constructs a new TransitionStartEvent with the specified parameters. -
Method Summary
Modifier and TypeMethodDescriptionvoiddispatchTo(TransitionListener listener) Dispatches this event to the specified listener for processing.Methods inherited from class com.oorian.messaging.events.client.TransitionEvent
getElapsedTime, getPropertyName, getPseudoElementMethods inherited from class com.oorian.messaging.events.client.ClientEvent
getSource, getTarget, setSource, setTarget
-
Constructor Details
-
TransitionStartEvent
Constructs a new TransitionStartEvent with the specified parameters.- Parameters:
propertyName- the name of the CSS property being transitionedelapsedTime- the elapsed time in seconds since the transition startedpseudoElement- the pseudo-element the transition runs on (empty string if none)
-
-
Method Details
-
dispatchTo
Dispatches this event to the specified listener for processing.- Specified by:
dispatchToin classEvent<TransitionListener>- Parameters:
listener- the listener to which this event should be dispatched
-