Package com.storedobject.vaadin
Class Svg.MouseOutEvent
java.lang.Object
java.util.EventObject
com.vaadin.flow.component.ComponentEvent<Svg>
com.storedobject.vaadin.Svg.Event
com.storedobject.vaadin.Svg.MouseOutEvent
- All Implemented Interfaces:
Serializable
- Enclosing class:
Svg
Represents an event triggered when the mouse pointer exits
the boundaries of an SVG element.
This event is associated with the "mouseout" event at the DOM level and provides details about the source component and the targeted element. It is primarily used to handle mouse-out interactions on SVG elements within the application.
- Author:
- Syam
- See Also:
-
Field Summary
Fields inherited from class java.util.EventObject
source -
Constructor Summary
ConstructorsConstructorDescriptionMouseOutEvent(Svg source, boolean fromClient, String elementId) Creates a new event using the given source and indicator whether the event originated from the client side or the server side. -
Method Summary
Methods inherited from class com.storedobject.vaadin.Svg.Event
getChart, getClientX, getClientY, getNode, getNodeId, getTagName, getValue, getValueIdMethods inherited from class com.vaadin.flow.component.ComponentEvent
getSource, isFromClient, unregisterListenerMethods inherited from class java.util.EventObject
toString
-
Constructor Details
-
MouseOutEvent
public MouseOutEvent(Svg source, boolean fromClient, @EventData("event.target.id") String elementId) Creates a new event using the given source and indicator whether the event originated from the client side or the server side.- Parameters:
source- the source componentfromClient-trueif the event originated from the client side,falseotherwiseelementId- the id of the element that was clicked
-