1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.student.lum.lu.ui.krms.dto;
17
18 import java.io.Serializable;
19 import java.lang.String;
20 import java.util.List;
21
22
23
24
25
26
27 public class CluGroup implements Serializable {
28
29 private String title;
30 private List<CluInformation> clus;
31
32 private boolean showClus = true;
33 private boolean showTitle = true;
34
35 public CluGroup(){
36 super();
37 }
38
39 public CluGroup(String title){
40 this.title = title;
41 }
42
43 public String getTitle() {
44 return title;
45 }
46
47 public void setTitle(String title) {
48 this.title = title;
49 }
50
51 public List<CluInformation> getClus() {
52 return clus;
53 }
54
55 public void setClus(List<CluInformation> clus) {
56 this.clus = clus;
57 }
58
59 public boolean getShowClus() {
60 return showClus;
61 }
62
63 public void setShowClus(boolean showClus) {
64 this.showClus = showClus;
65 }
66
67 public boolean getShowTitle() {
68 return showTitle;
69 }
70
71 public void setShowTitle(boolean showTitle) {
72 this.showTitle = showTitle;
73 }
74 }