Coverage Report - org.kuali.student.contract.model.SearchType
 
Classes in this File Line Coverage Branch Coverage Complexity
SearchType
0%
0/11
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  
 /**
 19  
  *
 20  
  * @author nwright
 21  
  */
 22  
 public class SearchType extends SearchRow {
 23  
 
 24  
     public SearchType() {
 25  0
         super();
 26  0
     }
 27  
     protected SearchImplementation implementation;
 28  
 
 29  
     /**
 30  
      * Get the value of implementation
 31  
      *
 32  
      * @return the value of implementation
 33  
      */
 34  
     public SearchImplementation getImplementation() {
 35  0
         return implementation;
 36  
     }
 37  
 
 38  
     /**
 39  
      * Set the value of implementation
 40  
      *
 41  
      * @param implementation new value of implementation
 42  
      */
 43  
     public void setImplementation(SearchImplementation implementation) {
 44  0
         this.implementation = implementation;
 45  0
     }
 46  
     protected SearchCriteria criteria;
 47  
 
 48  
     /**
 49  
      * Get the value of criteria
 50  
      *
 51  
      * @return the value of criteria
 52  
      */
 53  
     public SearchCriteria getSearchCriteria() {
 54  0
         return criteria;
 55  
     }
 56  
 
 57  
     /**
 58  
      * Set the value of criteria
 59  
      *
 60  
      * @param criteria new value of criteria
 61  
      */
 62  
     public void setSearchCriteria(SearchCriteria criteria) {
 63  0
         this.criteria = criteria;
 64  0
     }
 65  
     private SearchResult result;
 66  
 
 67  
     /**
 68  
      * Get the value of results
 69  
      *
 70  
      * @return the value of results
 71  
      */
 72  
     public SearchResult getSearchResult() {
 73  0
         return result;
 74  
     }
 75  
 
 76  
     /**
 77  
      * Set the value of results
 78  
      *
 79  
      * @param results new value of results
 80  
      */
 81  
     public void setSearchResult(SearchResult result) {
 82  0
         this.result = result;
 83  0
     }
 84  
 }