Class TabListModel
- java.lang.Object
-
- org.apache.wicket.model.util.GenericBaseModel<List<T>>
-
- org.apache.wicket.model.util.ListModel<org.apache.wicket.extensions.markup.html.tabs.ITab>
-
- com.googlecode.wicket.jquery.ui.widget.tabs.TabListModel
-
- All Implemented Interfaces:
Serializable,org.apache.wicket.model.IDetachable,org.apache.wicket.model.IModel<List<org.apache.wicket.extensions.markup.html.tabs.ITab>>,org.apache.wicket.model.IObjectClassAwareModel<List<org.apache.wicket.extensions.markup.html.tabs.ITab>>,org.apache.wicket.util.io.IClusterable
public abstract class TabListModel extends org.apache.wicket.model.util.ListModel<org.apache.wicket.extensions.markup.html.tabs.ITab>Provides a loadable (not detachable)ListModelofITabs- Since:
- 6.20.0
- Author:
- Sebastien Briquet - sebfz1
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description TabListModel()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description voidflush()Will force reload the model object next timegetObject()is calledList<org.apache.wicket.extensions.markup.html.tabs.ITab>getObject()protected abstract List<org.apache.wicket.extensions.markup.html.tabs.ITab>load()Loads the model object-
Methods inherited from class org.apache.wicket.model.util.GenericBaseModel
detach, equals, getObjectClass, hashCode, setObject, toString
-
-
-
-
Method Detail
-
getObject
public List<org.apache.wicket.extensions.markup.html.tabs.ITab> getObject()
-
load
protected abstract List<org.apache.wicket.extensions.markup.html.tabs.ITab> load()
Loads the model object- Returns:
- the
ListofITab
-
flush
public void flush()
Will force reload the model object next timegetObject()is called
-
-