package jalview.datamodel.xdb.embl; public class BasePosition { String type; String pos; /** * @return the pos */ public String getPos() { return pos; } /** * @param pos the pos to set */ public void setPos(String pos) { this.pos = pos; } /** * @return the type */ public String getType() { return type; } /** * @param type the type to set */ public void setType(String type) { this.type = type; } }