org.apache.wicket.model
Interface IModel<T>

Type Parameters:
T - Model object.
All Superinterfaces:
IClusterable, IDetachable, Serializable
All Known Subinterfaces:
IChainingModel<T>, IComponentAssignedModel<T>, IComponentInheritedModel<T>, IObjectClassAwareModel<T>, IWrapModel<T>
All Known Implementing Classes:
AbstractCheckBoxModel, AbstractPropertyModel, AbstractReadOnlyModel, AbstractWrapModel, BoundCompoundPropertyModel, CollectionModel, ComponentDetachableModel, ComponentModel, ComponentPropertyModel, CompoundPropertyModel, ContactDetachableModel, DetachableContactModel, DetachableContactModel, FeedbackMessagesModel, GenericBaseModel, ListItemModel, ListModel, LoadableDetachableModel, MapModel, Model, PropertyModel, ProxyModel, ResourceModel, SessionModel, SessionSizeModel, SessionTotalSizeModel, SetModel, SourcesPage.PackagedResourcesModel, SourcesPage.SourceModel, StringResourceModel, WicketTreeModel, WildcardCollectionModel, WildcardListModel, WildcardSetModel

public interface IModel<T>
extends IDetachable

A IModel wraps the actual model Object used by a Component. IModel implementations are used as a facade for the real model so that users have control over the actual persistence strategy. Note that objects implementing this interface will be stored in the Session. Hence, you should use (non-transient) instance variables sparingly.

Author:
Chris Turner, Eelco Hillenius, Jonathan Locke TODO 3.0: Vote on renaming get/setObject to get/setValue
See Also:
Component.sameInnermostModel(org.apache.wicket.Component), Component.sameInnermostModel(IModel)

Method Summary
 T getObject()
          Gets the model object.
 void setObject(T object)
          Sets the model object.
 
Methods inherited from interface org.apache.wicket.model.IDetachable
detach
 

Method Detail

getObject

T getObject()
Gets the model object.

Returns:
The model object

setObject

void setObject(T object)
Sets the model object.

Parameters:
object - The model object


Copyright © 2004-2011 Apache Software Foundation. All Rights Reserved.