Class AbstractTab
- java.lang.Object
-
- org.apache.wicket.extensions.markup.html.tabs.AbstractTab
-
- All Implemented Interfaces:
Serializable,ITab,org.apache.wicket.util.io.IClusterable
public abstract class AbstractTab extends Object implements ITab
Convenience class that takes care of common ITab functionality- Author:
- Igor Vaynberg (ivaynberg)
- See Also:
ITab, Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AbstractTab(org.apache.wicket.model.IModel<String> title)Constructor
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract org.apache.wicket.markup.html.WebMarkupContainergetPanel(String panelId)org.apache.wicket.model.IModel<String>getTitle()booleanisVisible()Returns whether this tab should be visible
-
-
-
Constructor Detail
-
AbstractTab
public AbstractTab(org.apache.wicket.model.IModel<String> title)
Constructor- Parameters:
title- IModel used to represent the title of the tab. Must contain a string
-
-