View Javadoc

1   /**
2    * Copyright 2005-2013 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl2.php
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
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   * This is a lightweight wrapper for Clu Information used in the KRMS UI.
24   *
25   * @author Kuali Student Team
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  }