View Javadoc

1   /*
2    * Copyright 2012 The Kuali Foundation
3    *
4    * Licensed under the the Educational Community License, Version 1.0
5    * (the "License"); you may not use this file except in compliance
6    * with the License.  You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl1.php
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.model.annotation;
17  
18  /**
19   * @author Kuali Student Team
20   */
21  public class FakeObjectInfo {
22  
23  	EnumWithAnnotationValue withValue;
24  	EnumWithoutAnnotationValue withoutValue;
25  	
26  	/**
27  	 * 
28  	 */
29  	public FakeObjectInfo() {
30  		// TODO Auto-generated constructor stub
31  	}
32  
33  	/**
34  	 * @return the withValue
35  	 */
36  	public EnumWithAnnotationValue getWithValue() {
37  		return withValue;
38  	}
39  
40  	/**
41  	 * @param withValue the withValue to set
42  	 */
43  	public void setWithValue(EnumWithAnnotationValue withValue) {
44  		this.withValue = withValue;
45  	}
46  
47  	/**
48  	 * @return the withoutValue
49  	 */
50  	public EnumWithoutAnnotationValue getWithoutValue() {
51  		return withoutValue;
52  	}
53  
54  	/**
55  	 * @param withoutValue the withoutValue to set
56  	 */
57  	public void setWithoutValue(EnumWithoutAnnotationValue withoutValue) {
58  		this.withoutValue = withoutValue;
59  	}
60  
61  	
62  }