Browse Source

added a getter.


git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@308 30ef5769-5b8d-40dd-aea6-55b5d6557bb3
tags/rel_3_17_1_ga
chiba 18 years ago
parent
commit
0acfa5ff72
1 changed files with 7 additions and 0 deletions
  1. 7
    0
      src/main/javassist/bytecode/annotation/AnnotationImpl.java

+ 7
- 0
src/main/javassist/bytecode/annotation/AnnotationImpl.java View File

@@ -61,6 +61,13 @@ public class AnnotationImpl implements InvocationHandler {
return annotation.getTypeName();
}

/**
* Obtains the internal data structure representing the annotation.
*/
public Annotation getAnnotation() {
return annotation;
}

/**
* Executes a method invocation on a proxy instance.
* The implementations of <code>toString()</code>, <code>equals()</code>,

Loading…
Cancel
Save