Class AbstractTab
- java.lang.Object
-
- org.apache.wicket.extensions.markup.html.tabs.AbstractTab
-
- All Implemented Interfaces:
Serializable
,ITab
,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(IModel<String> title)
Constructor
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract WebMarkupContainer
getPanel(String panelId)
IModel<String>
getTitle()
boolean
isVisible()
Returns whether this tab should be visible
-
-
-
Constructor Detail
-
AbstractTab
public AbstractTab(IModel<String> title)
Constructor- Parameters:
title
- IModel used to represent the title of the tab. Must contain a string
-
-