Interface IBreadCrumbPanelFactory
-
- All Superinterfaces:
org.apache.wicket.util.io.IClusterable,Serializable
- All Known Implementing Classes:
BreadCrumbPanelFactory
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface IBreadCrumbPanelFactory extends org.apache.wicket.util.io.IClusterable
Factory interface to enabled deferred creation of a bread crumb panel while getting the proper id for creation. Mainly meant for supportingBreadCrumbPanel.activate(IBreadCrumbPanelFactory).
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BreadCrumbPanelcreate(String componentId, IBreadCrumbModel breadCrumbModel)Creates a newbread crumb panelinstance.
-
-
-
Method Detail
-
create
BreadCrumbPanel create(String componentId, IBreadCrumbModel breadCrumbModel)
Creates a newbread crumb panelinstance. The provided component id must be used when creating the panel.- Parameters:
componentId- The component id for the new panel.breadCrumbModel- The bread crumb model- Returns:
- A new bread crumb panel instance
-
-