public class Derivation { private String der; private String type; private String position; /** * @param der * @param position * @param type */ public Derivation(String der, String position, String type) { // TODO Auto-generated constructor stub this.der = der; this.position = position; this.type = type; } /** * @return Returns the der. */ public String getDer() { return der; } /** * @param der The der to set. */ public void setDer(String der) { this.der = der; } /** * @return Returns the position. */ public String getPosition() { return position; } /** * @param position The position to set. */ public void setPosition(String position) { this.position = position; } /** * @return Returns the type. */ public String getType() { return type; } /** * @param type The type to set. */ public void setType(String type) { this.type = type; } }