rendered paste bodypackage edu.tamu.csdl.dcm.model;import org.apache.wicket.model.IModel;import edu.tamu.csdl.dcm.data.Collection;public class CollectionDataModel implements IModel { private static final long serialVersionUID = -6633452514143665112L; private Collection collection; public CollectionDataModel(Collection collection) { setObject(collection); } public Object getObject() { return this.collection; } public void setObject(Object arg0) { this.collection = (Collection) arg0; } public void detach() { // TODO Auto-generated method stub } public Collection getCollection() { return this.collection; }}