Merge branch 'releases/Release_2_11_3_Branch'
[jalview.git] / src / jalview / datamodel / GroupSetHolder.java
1 package jalview.datamodel;
2
3 /**
4  * holds a group set and provides getters and setters for ContactMatrixI
5  * implementations
6  * 
7  * @author jprocter
8  */
9 public class GroupSetHolder
10 {
11
12   GroupSet grps = new GroupSet();
13
14   public GroupSetI getGroupSet()
15   {
16     return grps;
17   }
18
19   public void setGroupSet(GroupSet makeGroups)
20   {
21     grps = makeGroups;
22   }
23
24 }