com.databasesandlife.util.wicket.GetterModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-common Show documentation
Show all versions of java-common Show documentation
Utility classes developed at Adrian Smith Software (A.S.S.)
package com.databasesandlife.util.wicket;
import org.apache.wicket.model.IModel;
/**
* @deprecated use {@link org.apache.wicket.model.AbstractReadOnlyModel} instead
*/
@Deprecated
@SuppressWarnings("serial")
public abstract class GetterModel implements IModel {
@Override public void detach() { }
@Override public void setObject(T object) { throw new UnsupportedOperationException(); }
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy