Package com.storedobject.vaadin
Class Breadcrumbs
java.lang.Object
com.vaadin.flow.component.Component
com.vaadin.flow.component.Composite<ButtonLayout>
com.storedobject.vaadin.Breadcrumbs
- All Implemented Interfaces:
com.vaadin.flow.component.AttachNotifier
,com.vaadin.flow.component.DetachNotifier
,com.vaadin.flow.component.HasElement
,com.vaadin.flow.component.HasStyle
,Serializable
Breadcrumbs component. A
ClickHandler
may be used to make the Breadcrumbs.Breadcrumb
s clickable.
If the Breadcrumbs.Breadcrumb
s are clickable, the ClickHandler
's ClickHandler.clicked(Component)
method will be invoked when it is clicked and the Breadcrumbs.Breadcrumb
s up to the clicked one will be pruned.- Author:
- Syam
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic class
Component that represents a "breadcrumb".static interface
Listener interface for "breadcrumb removal listener". -
Constructor Summary
ConstructorsConstructorDescriptionConstructor.Breadcrumbs
(ClickHandler clickHandler) Constructor with a "Click Handler". -
Method Summary
Modifier and TypeMethodDescriptionCreate a newBreadcrumbs.Breadcrumb
and add it to this.getChild
(Breadcrumbs.Breadcrumb breadcrumb) Get the child of the given breadcrumb.getHead()
Get the head breadcrumb.getParent
(Breadcrumbs.Breadcrumb breadcrumb) Get the parent of the given breadcrumb.void
goTo
(Breadcrumbs.Breadcrumb breadcrumb) Jump to a givenBreadcrumbs.Breadcrumb
.protected ButtonLayout
void
remove()
Remove theBreadcrumbs.Breadcrumb
from the tail end if one exists.void
remove
(Breadcrumbs.Breadcrumb breadcrumb) Remove a givenBreadcrumbs.Breadcrumb
.Stream all child breadcrumbs.Methods inherited from class com.vaadin.flow.component.Composite
getChildren, getContent, getElement
Methods inherited from class com.vaadin.flow.component.Component
addListener, findAncestor, fireEvent, from, get, getEventBus, getId, getListeners, getLocale, getParent, getTranslation, getTranslation, getTranslation, getTranslation, getTranslation, getTranslation, getUI, hasListener, isAttached, isTemplateMapped, isVisible, onAttach, onDetach, onEnabledStateChanged, removeFromParent, scrollIntoView, scrollIntoView, set, setElement, setId, setVisible
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.vaadin.flow.component.AttachNotifier
addAttachListener
Methods inherited from interface com.vaadin.flow.component.DetachNotifier
addDetachListener
Methods inherited from interface com.vaadin.flow.component.HasStyle
addClassName, addClassNames, getClassName, getClassNames, getStyle, hasClassName, removeClassName, removeClassNames, setClassName, setClassName
-
Constructor Details
-
Breadcrumbs
public Breadcrumbs()Constructor. -
Breadcrumbs
Constructor with a "Click Handler".- Parameters:
clickHandler
- Click handler
-
-
Method Details
-
initContent
- Overrides:
initContent
in classcom.vaadin.flow.component.Composite<ButtonLayout>
-
add
Create a newBreadcrumbs.Breadcrumb
and add it to this.- Parameters:
caption
- Caption text of theBreadcrumbs.Breadcrumb
to be created- Returns:
- The
Breadcrumbs.Breadcrumb
that is created and added.
-
remove
public void remove()Remove theBreadcrumbs.Breadcrumb
from the tail end if one exists. -
remove
Remove a givenBreadcrumbs.Breadcrumb
. AllBreadcrumbs.Breadcrumb
appearing after the given one will be removed.- Parameters:
breadcrumb
-Breadcrumbs.Breadcrumb
to be removed
-
goTo
Jump to a givenBreadcrumbs.Breadcrumb
. AllBreadcrumbs.Breadcrumb
appearing after the given one will be removed.- Parameters:
breadcrumb
-Breadcrumbs.Breadcrumb
to go to
-
getParent
Get the parent of the given breadcrumb.- Parameters:
breadcrumb
- Breadcrumb for which parent needs to be obtained.- Returns:
- Parent or
null
if it is the first breadcrumb.
-
getChild
Get the child of the given breadcrumb.- Parameters:
breadcrumb
- Breadcrumb for which child needs to be obtained.- Returns:
- Parent or
null
if it is the last breadcrumb.
-
getHead
Get the head breadcrumb.- Returns:
- The breadcrumb at the head. Could be
null
.
-
streamChildren
Stream all child breadcrumbs.- Returns:
- Stream of child breadcrumbs.
-