package jalview.viewmodel.seqfeatures; public class IdColumn { String name; String descr; boolean visible; /** * name of the feature this column shows */ String featureTypeName = null; /** * group to select feature(s) */ String featureGroupName = null; /** * Label string for annotation row */ String annotationTypeName = null; /** * calcId for annotation row */ String annotationTypeCalcId = null; public String DbRefName = null; public IdColumn(String string, String description, boolean b) { name = string; descr = description; visible = b; } public String getLabel() { return name; } public boolean isVisible() { return visible; } }