Class AbstractAttachDetachEvent
- java.lang.Object
-
- java.util.EventObject
-
- com.vaadin.flow.component.ComponentEvent<Component>
-
- com.vaadin.flow.component.internal.AbstractAttachDetachEvent
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
AttachEvent,DetachEvent
public abstract class AbstractAttachDetachEvent extends ComponentEvent<Component>
Internal helper forAttachEventandDetachEvent.- Since:
- 1.0
- Author:
- Vaadin Ltd
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class java.util.EventObject
source
-
-
Constructor Summary
Constructors Constructor Description AbstractAttachDetachEvent(Component source)Creates a new event with the given component as source.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description VaadinSessiongetSession()Gets the session the component is attached to.UIgetUI()Gets the UI the component is attached to.-
Methods inherited from class com.vaadin.flow.component.ComponentEvent
getSource, isFromClient, unregisterListener
-
Methods inherited from class java.util.EventObject
toString
-
-
-
-
Constructor Detail
-
AbstractAttachDetachEvent
public AbstractAttachDetachEvent(Component source)
Creates a new event with the given component as source.- Parameters:
source- the component that was attached or detached
-
-
Method Detail
-
getUI
public UI getUI()
Gets the UI the component is attached to.- Returns:
- the UI this component is attached to
-
getSession
public VaadinSession getSession()
Gets the session the component is attached to.- Returns:
- the session this component is attached to
-
-