Coverage Report - org.kuali.student.contract.model.SearchResult
 
Classes in this File Line Coverage Branch Coverage Complexity
SearchResult
0%
0/6
N/A
1
 
 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  
  public SearchResult ()
 29  0
  {
 30  0
  }
 31  
 
 32  0
  private List<SearchResultColumn> resultColumns = new ArrayList ();
 33  
 
 34  
  /**
 35  
   * Get the value of resultColumns
 36  
   *
 37  
   * @return the value of resultColumns
 38  
   */
 39  
  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  
  public void setResultColumns (List<SearchResultColumn> resultColumns)
 50  
  {
 51  0
   this.resultColumns = resultColumns;
 52  0
  }
 53  
 
 54  
 
 55  
 
 56  
 }