Clover Coverage Report - KS Contract Documentation Generator 0.0.1-SNAPSHOT
Coverage timestamp: Wed Dec 31 1969 19:00:00 EST
../../../../../img/srcFileCovDistChart0.png 0% of files have more coverage
2   56   3   0.67
0   18   1.5   3
3     1  
1    
 
  SearchResult       Line # 25 2 0% 3 5 0% 0.0
 
No Tests
 
1    /*
2    * Copyright 2009 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.osedu.org/licenses/ECL-2.0
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.contract.model;
17   
18    import java.util.ArrayList;
19    import java.util.List;
20   
21    /**
22    *
23    * @author nwright
24    */
 
25    public class SearchResult extends SearchRow
26    {
27   
 
28  0 toggle public SearchResult ()
29    {
30    }
31   
32    private List<SearchResultColumn> resultColumns = new ArrayList ();
33   
34    /**
35    * Get the value of resultColumns
36    *
37    * @return the value of resultColumns
38    */
 
39  0 toggle public List<SearchResultColumn> getResultColumns ()
40    {
41  0 return resultColumns;
42    }
43   
44    /**
45    * Set the value of resultColumns
46    *
47    * @param resultColumns new value of resultColumns
48    */
 
49  0 toggle public void setResultColumns (List<SearchResultColumn> resultColumns)
50    {
51  0 this.resultColumns = resultColumns;
52    }
53   
54   
55   
56    }