1 package de.tivsource.ejb3plugin.cache;
2
3 import de.tivsource.ejb3plugin.InjectEJB;
4 import java.lang.reflect.Field;
5
6
7
8
9
10
11
12 public class AnnotatedField {
13
14 private InjectEJB annotation;
15 private Field field;
16
17 public AnnotatedField(InjectEJB a, Field f) {
18 this.annotation = a;
19 this.field = f;
20 }
21
22 public InjectEJB getAnnotation() {
23 return annotation;
24 }
25
26 public void setAnnotation(InjectEJB annotation) {
27 this.annotation = annotation;
28 }
29
30 public Field getField() {
31 return field;
32 }
33
34 public void setField(Field field) {
35 this.field = field;
36 }
37
38 }