package at.gv.egovernment.moa.spss.api.impl; /** * Default base implementation of TransformParameter. * * @author Patrick Peck * @version $Id$ */ public abstract class TransformParameterImpl { /** An URI identifying the TransformParameter. */ private String uri; /** * Sets the URI identifying the TransformParameter. * @param uri The URI identifying the TransformParameter. */ public void setURI(String uri) { this.uri = uri; } public String getURI() { return uri; } }