JAL-1641 Re-implemented lost changes after sequenceFeature refactor
[jalview.git] / src / jalview / json / binding / v1 / SequenceGrpPojo.java
1 package jalview.json.binding.v1;
2
3 import java.util.ArrayList;
4
5 public class SequenceGrpPojo
6 {
7   private String colourScheme;
8
9   private String groupName;
10
11   private String description;
12
13   private boolean displayBoxes;
14
15   private boolean displayText;
16
17   private boolean colourText;
18
19   private boolean showNonconserved;
20
21   private int startRes;
22
23   private int endRes;
24
25   private ArrayList<String> seqsHash = new ArrayList<String>();
26
27   public String getColourScheme()
28   {
29     return colourScheme;
30   }
31
32   public void setColourScheme(String colourScheme)
33   {
34     this.colourScheme = colourScheme;
35   }
36
37   public String getGroupName()
38   {
39     return groupName;
40   }
41
42   public void setGroupName(String groupName)
43   {
44     this.groupName = groupName;
45   }
46
47   public String getDescription()
48   {
49     return description;
50   }
51
52   public void setDescription(String description)
53   {
54     this.description = description;
55   }
56
57   public boolean isDisplayBoxes()
58   {
59     return displayBoxes;
60   }
61
62   public void setDisplayBoxes(boolean displayBoxes)
63   {
64     this.displayBoxes = displayBoxes;
65   }
66
67   public boolean isDisplayText()
68   {
69     return displayText;
70   }
71
72   public void setDisplayText(boolean displayText)
73   {
74     this.displayText = displayText;
75   }
76
77   public boolean isColourText()
78   {
79     return colourText;
80   }
81
82   public void setColourText(boolean colourText)
83   {
84     this.colourText = colourText;
85   }
86
87   public boolean isShowNonconserved()
88   {
89     return showNonconserved;
90   }
91
92   public void setShowNonconserved(boolean showNonconserved)
93   {
94     this.showNonconserved = showNonconserved;
95   }
96
97   public int getStartRes()
98   {
99     return startRes;
100   }
101
102   public void setStartRes(int startRes)
103   {
104     this.startRes = startRes;
105   }
106
107   public int getEndRes()
108   {
109     return endRes;
110   }
111
112   public void setEndRes(int endRes)
113   {
114     this.endRes = endRes;
115   }
116
117   public ArrayList<String> getSeqsHash()
118   {
119     return seqsHash;
120   }
121
122   public void setSeqsHash(ArrayList<String> seqsHash)
123   {
124     this.seqsHash = seqsHash;
125   }
126 }