01: /**
02: * EasyBeans
03: * Copyright (C) 2006 Bull S.A.S.
04: * Contact: easybeans@ow2.org
05: *
06: * This library is free software; you can redistribute it and/or
07: * modify it under the terms of the GNU Lesser General Public
08: * License as published by the Free Software Foundation; either
09: * version 2.1 of the License, or any later version.
10: *
11: * This library is distributed in the hope that it will be useful,
12: * but WITHOUT ANY WARRANTY; without even the implied warranty of
13: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14: * Lesser General Public License for more details.
15: *
16: * You should have received a copy of the GNU Lesser General Public
17: * License along with this library; if not, write to the Free Software
18: * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19: * USA
20: *
21: * --------------------------------------------------------------------------
22: * $Id: EnumAnnotationVisitor.java 2059 2007-11-22 17:22:33Z benoitf $
23: * --------------------------------------------------------------------------
24: */package org.ow2.easybeans.deployment.annotations.analyzer;
25:
26: import org.ow2.easybeans.asm.AnnotationVisitor;
27:
28: /**
29: * This class manages the handling of enum values.
30: * @param <T> the ClassAnnotationMetadata or MethodAnnotationMetadata.
31: * @author Florent Benoit
32: */
33: public abstract class EnumAnnotationVisitor<T> extends
34: AbsAnnotationVisitor<T> implements AnnotationVisitor,
35: AnnotationType {
36:
37: /**
38: * Value.
39: */
40: private String value = null;
41:
42: /**
43: * Constructor.
44: * @param annotationMetadata linked to a <T> metadata.
45: */
46: public EnumAnnotationVisitor(final T annotationMetadata) {
47: super (annotationMetadata);
48: }
49:
50: /**
51: * Visits an enumeration value of the annotation.
52: * @param name the value name.
53: * @param desc the class descriptor of the enumeration class.
54: * @param value the actual enumeration value.
55: */
56: @Override
57: public void visitEnum(final String name, final String desc,
58: final String value) {
59: this .value = value;
60: }
61:
62: /**
63: * @return value of the object
64: */
65: public String getValue() {
66: return this.value;
67: }
68:
69: }
|