All pastes #1082263 Raw Edit

CollectionDataModel.java

public java v1 · immutable
#1082263 ·published 2008-07-25 03:31 UTC
rendered paste body
package 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;	}}