Package org.apache.wicket.model.util
Class SetModel<T>
- java.lang.Object
-
- org.apache.wicket.model.util.GenericBaseModel<Set<T>>
-
- org.apache.wicket.model.util.SetModel<T>
-
- Type Parameters:
T
- type of object inside set
- All Implemented Interfaces:
Serializable
,IDetachable
,IModel<Set<T>>
,IObjectClassAwareModel<Set<T>>
,IClusterable
public class SetModel<T> extends GenericBaseModel<Set<T>>
Based onModel
but for sets of serializable objects.- Author:
- Timo Rantalaiho
- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected Set<T>
createSerializableVersionOf(Set<T> object)
Creates a serializable version of the object.-
Methods inherited from class org.apache.wicket.model.util.GenericBaseModel
detach, equals, getObject, getObjectClass, hashCode, setObject, toString
-
-
-
-
Method Detail
-
createSerializableVersionOf
protected Set<T> createSerializableVersionOf(Set<T> object)
Description copied from class:GenericBaseModel
Creates a serializable version of the object. The object is usually a collection.- Specified by:
createSerializableVersionOf
in classGenericBaseModel<Set<T>>
- Returns:
- serializable version of
object
-
-