public interface TabHandler extends Serializable
| Modifier and Type | Method and Description |
|---|---|
void |
tabAdded(com.vaadin.flow.component.tabs.Tab tabHeader,
com.vaadin.flow.component.Component tabContents,
com.vaadin.flow.component.HasComponents contentsContainer)
Called when a tab has been added, but its contents have not.
|
void |
tabDeselected(com.vaadin.flow.component.tabs.Tab tabHeader,
com.vaadin.flow.component.Component tabContents,
com.vaadin.flow.component.HasComponents contentsContainer)
Called when a tab has been deselected, but its contents have not yet been updated.
|
void |
tabRemoved(com.vaadin.flow.component.tabs.Tab tabHeader,
com.vaadin.flow.component.Component tabContents,
com.vaadin.flow.component.HasComponents contentsContainer)
Called when a tab has been removed, but its contents have not.
|
void |
tabSelected(com.vaadin.flow.component.tabs.Tab tabHeader,
com.vaadin.flow.component.Component tabContents,
com.vaadin.flow.component.HasComponents contentsContainer)
Called when a tab has been selected, but its contents have not yet been updated.
|
void tabAdded(com.vaadin.flow.component.tabs.Tab tabHeader,
com.vaadin.flow.component.Component tabContents,
com.vaadin.flow.component.HasComponents contentsContainer)
tabHeader - Header that was added to the tab headers.tabContents - Contents to be added.contentsContainer - Container with the contents. It also is a Component.void tabRemoved(com.vaadin.flow.component.tabs.Tab tabHeader,
com.vaadin.flow.component.Component tabContents,
com.vaadin.flow.component.HasComponents contentsContainer)
tabHeader - Header that was removed.tabContents - Contents to be removed.contentsContainer - Container with the contents. It also is a Component.void tabSelected(com.vaadin.flow.component.tabs.Tab tabHeader,
com.vaadin.flow.component.Component tabContents,
com.vaadin.flow.component.HasComponents contentsContainer)
tabHeader - Header that was selected.tabContents - Contents to be selected.contentsContainer - Container with the contents. It also is a Component.void tabDeselected(com.vaadin.flow.component.tabs.Tab tabHeader,
com.vaadin.flow.component.Component tabContents,
com.vaadin.flow.component.HasComponents contentsContainer)
tabHeader - Header that was deselected.tabContents - Contents to be deselected.contentsContainer - Container with the contents. It also is a Component.Copyright © 2024 Miki. All rights reserved.