e2de4eec4cb8329fd62a59d96f77fea7d94c58b6
[utils] / support / general / src / main / java / org / wamblee / persistence / FieldAccessor.java
1 /*
2  * Copyright 2005-2010 the original author or authors.
3  * 
4  * Licensed under the Apache 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.apache.org/licenses/LICENSE-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.wamblee.persistence;
17
18 import java.lang.reflect.Field;
19
20 /**
21  * Utility for interfacing to a field of an object. 
22  * 
23  * @author Erik Brakkee
24  *
25  * @param <T> Type of the field. 
26  */
27 class FieldAccessor<T> implements Accessor<T> {
28     private Field field;
29
30     /**
31      * Constructs the accessor. 
32      * @param aField Field. 
33      */
34     public FieldAccessor(Field aField) {
35         field = aField;
36         field.setAccessible(true);
37     }
38
39     @Override
40     public T get(Object aEntity) {
41         try {
42             T value = (T) field.get(aEntity);
43             return value;
44         } catch (Exception e) {
45             throw new RuntimeException(e);
46         }
47     }
48
49     @Override
50     public void set(Object aEntity, T aValue) {
51         try {
52             field.set(aEntity, aValue);
53         } catch (IllegalAccessException e) {
54             throw new RuntimeException(e.getMessage(), e);
55         }
56     }
57
58     /**
59      * Gets the field. 
60      * @return Field. 
61      */
62     public Field getField() {
63         return field;
64     }
65 }