package jalview.datamodel; import java.awt.*; public class SequenceFeature { int begin; int end; String type; String description; String status; public SequenceFeature() { } public SequenceFeature(String type, int start, int end, String description, String status) { this.type = type; this.begin = start; this.end = end; this.description = description; this.status = status; } public int getStart() { return begin; } public int getEnd() { return end; } public String getType() { return type; } public String getDescription() { return description; } public String getStatus() {return status;} /* */ }