Package com.vaadin.flow.component.tabs
Class TabSheet.SelectedChangeEvent
java.lang.Object
java.util.EventObject
com.vaadin.flow.component.ComponentEvent<TabSheet>
com.vaadin.flow.component.tabs.TabSheet.SelectedChangeEvent
- All Implemented Interfaces:
Serializable
- Enclosing class:
- TabSheet
public static class TabSheet.SelectedChangeEvent
extends com.vaadin.flow.component.ComponentEvent<TabSheet>
An event to mark that the selected tab has changed.
- See Also:
-
Field Summary
Fields inherited from class java.util.EventObject
source -
Constructor Summary
ConstructorsConstructorDescriptionSelectedChangeEvent(TabSheet source, Tab previousTab, boolean fromClient, boolean initialSelection) Creates a new selected change event. -
Method Summary
Modifier and TypeMethodDescriptionGet previous selected tab for this event.Get selected tab for this event.booleanChecks if this event is initial TabSheet selection.Methods inherited from class com.vaadin.flow.component.ComponentEvent
getSource, isFromClient, unregisterListenerMethods inherited from class java.util.EventObject
toString
-
Constructor Details
-
SelectedChangeEvent
public SelectedChangeEvent(TabSheet source, Tab previousTab, boolean fromClient, boolean initialSelection) Creates a new selected change event.- Parameters:
source- The TabSheet that fired the event.previousTab- The previous selected tab.fromClient-truefor client-side events,falseotherwise.
-
-
Method Details
-
getSelectedTab
Get selected tab for this event. Can benullwhen autoselect is set to false.- Returns:
- the selected tab for this event
-
getPreviousTab
Get previous selected tab for this event. Can benullwhen autoselect is set to false.- Returns:
- the selected tab for this event
-
isInitialSelection
public boolean isInitialSelection()Checks if this event is initial TabSheet selection.- Returns:
trueif the event is initial TabSheet selection,falseotherwise
-