Searched defs:annotated (Results 1 - 2 of 2) sorted by relevance

/openjdk7/langtools/src/share/classes/com/sun/tools/apt/mirror/declaration/
H A DDeclarationImpl.java131 Symbol annotated) {
137 for (Attribute.Compound attr : annotated.getAnnotationMirrors()) {
130 getAnnotation(Class<A> annoType, Symbol annotated) argument
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/model/
H A DJavacElements.java100 public static <A extends Annotation> A getAnnotation(Symbol annotated, argument
106 for (Attribute.Compound anno : annotated.getAnnotationMirrors())
116 public static <A extends Annotation> A getAnnotation(ClassSymbol annotated, argument
120 while (annotated.name != annotated.name.table.names.java_lang_Object) {
121 result = getAnnotation((Symbol)annotated, annoType);
124 Type sup = annotated.getSuperclass();
127 annotated = (ClassSymbol) sup.tsym;
213 * Returns the tree for an annotation given the annotated element

Completed in 41 milliseconds