Coverage Report - edu.sampleu.travel.krad.form.UITestListObject
 
Classes in this File Line Coverage Branch Coverage Complexity
UITestListObject
0%
0/24
N/A
1
 
 1  
 /*
 2  
  * Copyright 2011 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/ecl1.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 edu.sampleu.travel.krad.form;
 17  
 
 18  
 import java.util.ArrayList;
 19  
 import java.util.List;
 20  
 
 21  
 /**
 22  
  * For test view purposes only
 23  
  * 
 24  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 25  
  */
 26  
 public class UITestListObject {
 27  
     private String field1;
 28  
     private String field2;
 29  
     private String field3;
 30  
     private String field4;
 31  0
     private List<UITestListObject> subList = new ArrayList<UITestListObject>();
 32  
 
 33  
     
 34  
     
 35  
     /**
 36  
      * This constructs a ...
 37  
      * 
 38  
      */
 39  0
     public UITestListObject() {
 40  0
     }
 41  
 
 42  
     /**
 43  
      * This constructs a ...
 44  
      * 
 45  
      */
 46  0
     public UITestListObject(String field1, String field2, String field3, String field4) {
 47  0
         this.field1 = field1;
 48  0
         this.field2 = field2;
 49  0
         this.field3 = field3;
 50  0
         this.field4 = field4;
 51  0
     }
 52  
 
 53  
     /**
 54  
      * @return the field1
 55  
      */
 56  
     public String getField1() {
 57  0
         return this.field1;
 58  
     }
 59  
 
 60  
     /**
 61  
      * @param field1 the field1 to set
 62  
      */
 63  
     public void setField1(String field1) {
 64  0
         this.field1 = field1;
 65  0
     }
 66  
 
 67  
     /**
 68  
      * @return the field2
 69  
      */
 70  
     public String getField2() {
 71  0
         return this.field2;
 72  
     }
 73  
 
 74  
     /**
 75  
      * @param field2 the field2 to set
 76  
      */
 77  
     public void setField2(String field2) {
 78  0
         this.field2 = field2;
 79  0
     }
 80  
 
 81  
     /**
 82  
      * @return the field3
 83  
      */
 84  
     public String getField3() {
 85  0
         return this.field3;
 86  
     }
 87  
 
 88  
     /**
 89  
      * @param field3 the field3 to set
 90  
      */
 91  
     public void setField3(String field3) {
 92  0
         this.field3 = field3;
 93  0
     }
 94  
 
 95  
     /**
 96  
      * @return the field4
 97  
      */
 98  
     public String getField4() {
 99  0
         return this.field4;
 100  
     }
 101  
 
 102  
     /**
 103  
      * @param field4 the field4 to set
 104  
      */
 105  
     public void setField4(String field4) {
 106  0
         this.field4 = field4;
 107  0
     }
 108  
 
 109  
     /**
 110  
      * @param subList the subList to set
 111  
      */
 112  
     public void setSubList(List<UITestListObject> subList) {
 113  0
         this.subList = subList;
 114  0
     }
 115  
 
 116  
     /**
 117  
      * @return the subList
 118  
      */
 119  
     public List<UITestListObject> getSubList() {
 120  0
         return subList;
 121  
     }
 122  
 
 123  
 }