Clover Coverage Report - Kuali Student 1.1-SNAPSHOT (Aggregated)
Coverage timestamp: Thu Mar 3 2011 04:02:59 EST
../../../../../../img/srcFileCovDistChart0.png 49% of files have more coverage
10   96   11   0.91
0   44   1.1   5.5
11     1  
2    
 
  LookupQosMetadata       Line # 24 6 0% 6 12 0% 0.0
  LookupQosMetadata.SortMetadata       Line # 49 4 0% 5 9 0% 0.0
 
No Tests
 
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.assembly.data;
17   
18    import java.io.Serializable;
19    import java.util.List;
20   
21    /**
22    * @author nwright
23    */
 
24    public class LookupQosMetadata implements Serializable {
25   
26    /**
27    *
28    */
29    private static final long serialVersionUID = 1L;
30    private Integer startAt;
31    private Integer maxResults;
32   
 
33  0 toggle public Integer getStartAt() {
34  0 return startAt;
35    }
36   
 
37  0 toggle public void setStartAt(Integer startAt) {
38  0 this.startAt = startAt;
39    }
40   
 
41  0 toggle public Integer getMaxResults() {
42  0 return maxResults;
43    }
44   
 
45  0 toggle public void setMaxResults(Integer maxResults) {
46  0 this.maxResults = maxResults;
47    }
48   
 
49    public static class SortMetadata {
50   
 
51  0 toggle public SortMetadata() {}
52   
53    private String resultColumnKey;
54   
 
55  0 toggle public String getResultColumnKey() {
56  0 return resultColumnKey;
57    }
58   
 
59  0 toggle public void setResultColumnKey(String resultColumnKey) {
60  0 this.resultColumnKey = resultColumnKey;
61    }
62   
63    private boolean descending;
64   
 
65  0 toggle public boolean isDescending() {
66  0 return descending;
67    }
68   
 
69  0 toggle public void setDescending(boolean descending) {
70  0 this.descending = descending;
71    }
72   
73    }
74   
75    protected List<SortMetadata> sorts;
76   
77    /**
78    * Get the value of sorts
79    *
80    * @return the value of sorts
81    */
 
82  0 toggle public List<SortMetadata> getSorts() {
83  0 return sorts;
84    }
85   
86    /**
87    * Set the value of sorts
88    *
89    * @param sorts
90    * new value of sorts
91    */
 
92  0 toggle public void setSorts(List<SortMetadata> sorts) {
93  0 this.sorts = sorts;
94    }
95   
96    }