Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
SearchType |
|
| 1.0;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 | ||
25 | public SearchType () | |
26 | { | |
27 | 0 | super (); |
28 | 0 | } |
29 | ||
30 | protected SearchImplementation implementation; | |
31 | ||
32 | /** | |
33 | * Get the value of implementation | |
34 | * | |
35 | * @return the value of implementation | |
36 | */ | |
37 | public SearchImplementation getImplementation () | |
38 | { | |
39 | 0 | return implementation; |
40 | } | |
41 | ||
42 | /** | |
43 | * Set the value of implementation | |
44 | * | |
45 | * @param implementation new value of implementation | |
46 | */ | |
47 | public void setImplementation (SearchImplementation implementation) | |
48 | { | |
49 | 0 | this.implementation = implementation; |
50 | 0 | } |
51 | ||
52 | protected SearchCriteria criteria; | |
53 | ||
54 | /** | |
55 | * Get the value of criteria | |
56 | * | |
57 | * @return the value of criteria | |
58 | */ | |
59 | public SearchCriteria getSearchCriteria () | |
60 | { | |
61 | 0 | return criteria; |
62 | } | |
63 | ||
64 | /** | |
65 | * Set the value of criteria | |
66 | * | |
67 | * @param criteria new value of criteria | |
68 | */ | |
69 | public void setSearchCriteria (SearchCriteria criteria) | |
70 | { | |
71 | 0 | this.criteria = criteria; |
72 | 0 | } |
73 | ||
74 | private SearchResult result; | |
75 | ||
76 | /** | |
77 | * Get the value of results | |
78 | * | |
79 | * @return the value of results | |
80 | */ | |
81 | public SearchResult getSearchResult () | |
82 | { | |
83 | 0 | return result; |
84 | } | |
85 | ||
86 | /** | |
87 | * Set the value of results | |
88 | * | |
89 | * @param results new value of results | |
90 | */ | |
91 | public void setSearchResult (SearchResult result) | |
92 | { | |
93 | 0 | this.result = result; |
94 | 0 | } |
95 | ||
96 | ||
97 | } |