Module org.apache.wicket.extensions
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 supporting
BreadCrumbPanel.activate(IBreadCrumbPanelFactory).-
Method Summary
Modifier and TypeMethodDescriptioncreate(String componentId, IBreadCrumbModel breadCrumbModel) Creates a newbread crumb panelinstance.
-
Method Details
-
create
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
-