JAL-4047 - proof of concept for JAL-4048 - display columns of info in sequence ID...
[jalview.git] / src / jalview / viewmodel / seqfeatures / IdColumn.java
1 package jalview.viewmodel.seqfeatures;
2
3 public class IdColumn
4 {
5   String name;
6
7   String descr;
8
9   boolean visible;
10
11   /**
12    * name of the feature this column shows
13    */
14   String featureTypeName = null;
15
16   /**
17    * group to select feature(s)
18    */
19   String featureGroupName = null;
20
21   /**
22    * Label string for annotation row
23    */
24   String annotationTypeName = null;
25
26   /**
27    * calcId for annotation row
28    */
29   String annotationTypeCalcId = null;
30
31   public String DbRefName = null;
32
33   public IdColumn(String string, String description, boolean b)
34   {
35     name = string;
36     descr = description;
37     visible = b;
38   }
39
40   public String getLabel()
41   {
42     return name;
43   }
44
45   public boolean isVisible()
46   {
47     return visible;
48   }
49 }