package jalview.datamodel.xdb.uniprot; /** * A data model class for binding from Uniprot XML via uniprot_mapping.xml */ public class UniprotFeature { private String type; private String description; private String status; private int begin; private int end; public String getType() { return type; } public void setType(String t) { this.type = t; } public String getDescription() { return description; } public void setDescription(String d) { this.description = d; } public String getStatus() { return status; } public void setStatus(String s) { this.status = s; } public int getBegin() { return begin; } public void setBegin(int b) { this.begin = b; } public int getEnd() { return end; } public void setEnd(int e) { this.end = e; } public int getPosition() { return begin; } public void setPosition(int p) { this.begin = p; this.end = p; } }