Coverage Report - org.kuali.student.core.organization.ui.client.mvc.model.SectionViewInfo
 
Classes in this File Line Coverage Branch Coverage Complexity
SectionViewInfo
0%
0/19
N/A
1
 
 1  
 /**
 2  
  * Copyright 2010 The Kuali Foundation Licensed under the
 3  
  * Educational Community License, Version 2.0 (the "License"); you may
 4  
  * not use this file except in compliance with the License. You may
 5  
  * obtain a copy of the License at
 6  
  *
 7  
  * http://www.osedu.org/licenses/ECL-2.0
 8  
  *
 9  
  * Unless required by applicable law or agreed to in writing,
 10  
  * software distributed under the License is distributed on an "AS IS"
 11  
  * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
 12  
  * or implied. See the License for the specific language governing
 13  
  * permissions and limitations under the License.
 14  
  */
 15  
 
 16  
 package org.kuali.student.core.organization.ui.client.mvc.model;
 17  
 
 18  
 import java.io.Serializable;
 19  
 import java.util.List;
 20  
 
 21  0
 public class SectionViewInfo implements Serializable{
 22  
     private String viewName;
 23  
     private String tab;
 24  
     private String menu;
 25  
     private String sectionName;
 26  
     private String sectionEnum;
 27  
     private List<FieldInfo> fields;
 28  
     
 29  
     public String getViewName(){
 30  0
         return viewName;
 31  
     }
 32  
     public void setViewName(String viewName){
 33  0
         this.viewName = viewName;
 34  0
     }
 35  
     
 36  
     public String getTab(){
 37  0
         return tab;
 38  
     }
 39  
     public void setTab(String tab){
 40  0
         this.tab=tab;
 41  0
     }
 42  
     
 43  
     public String getMenu(){
 44  0
         return menu;
 45  
     }
 46  
     public void setMenu(String menu){
 47  0
         this.menu=menu;
 48  0
     }
 49  
     
 50  
     public String getSectionName(){
 51  0
         return sectionName;
 52  
     }
 53  
     public void setSectionName(String sectionName){
 54  0
         this.sectionName=sectionName;
 55  0
     }
 56  
     
 57  
     public String getSectionEnum(){
 58  0
         return sectionEnum;
 59  
     }
 60  
     public void setSectionEnum(String sectionEnum){
 61  0
         this.sectionEnum=sectionEnum;
 62  0
     }
 63  
     
 64  
     public List<FieldInfo> getfields(){
 65  0
         return fields;
 66  
     }
 67  
     public void setfields(List<FieldInfo> fields){
 68  0
         this.fields=fields;
 69  0
     }
 70  
 }