Searched refs:AnnotationMirror (Results 1 - 25 of 45) sorted by relevance

12

/openjdk7/langtools/src/share/classes/javax/lang/model/element/
H A DAnnotationMirror.java44 public interface AnnotationMirror { interface
H A DElement.java103 List<? extends AnnotationMirror> getAnnotationMirrors();
H A DAnnotationValueVisitor.java181 R visitAnnotation(AnnotationMirror a, P p);
/openjdk7/langtools/src/share/classes/javax/annotation/processing/
H A DMessager.java83 void printMessage(Diagnostic.Kind kind, CharSequence msg, Element e, AnnotationMirror a);
99 AnnotationMirror a,
H A DProcessor.java316 * 2<sup><i>n</i></sup> - 1.) Given an {@code AnnotationMirror}
407 AnnotationMirror annotation,
H A DAbstractProcessor.java171 AnnotationMirror annotation,
/openjdk7/langtools/src/share/classes/com/sun/mirror/declaration/
H A DAnnotationMirror.java44 * javax.lang.model.element.AnnotationMirror}.
52 public interface AnnotationMirror { interface
H A DDeclaration.java87 Collection<AnnotationMirror> getAnnotationMirrors();
/openjdk7/langtools/test/tools/apt/mirror/declaration/
H A DAnnoMirror.java28 * @summary Tests AnnotationMirror and AnnotationValue methods.
50 AnnotationMirror anno = getAnno("getAnnotationType", "AT1");
57 AnnotationMirror anno = getAnno("getElementValuesNone", "AT1");
74 AnnotationMirror anno = getAnno("getElementValues", "AT2");
82 Collection<AnnotationMirror> toStringTests() {
H A DAnnoVal.java78 AnnotationMirror anno = getAnno("getValue", "AT2");
108 AnnotationMirror anno = getAnno("getValue", "AT2");
141 AnnotationMirror anno = getAnno("toStringFancy", "AT3");
H A DParameterDecl.java88 Collection<AnnotationMirror> getAnnotationMirrors() {
H A DFieldDecl.java81 Collection<AnnotationMirror> getAnnotationMirrors() {
/openjdk7/langtools/src/share/classes/javax/lang/model/util/
H A DElements.java69 * @see AnnotationMirror#getElementValues()
74 getElementValuesWithDefaults(AnnotationMirror a);
153 List<? extends AnnotationMirror> getAllAnnotationMirrors(Element e);
H A DSimpleAnnotationValueVisitor6.java248 public R visitAnnotation(AnnotationMirror a, P p) {
/openjdk7/langtools/src/share/classes/com/sun/source/util/
H A DTrees.java30 import javax.lang.model.element.AnnotationMirror;
112 * Gets the Tree node for an AnnotationMirror on a given Element.
115 public abstract Tree getTree(Element e, AnnotationMirror a);
118 * Gets the Tree node for an AnnotationValue for an AnnotationMirror on a given Element.
121 public abstract Tree getTree(Element e, AnnotationMirror a, AnnotationValue v);
135 * Gets the TreePath node for an AnnotationMirror on a given Element.
138 public abstract TreePath getPath(Element e, AnnotationMirror a);
141 * Gets the TreePath node for an AnnotationValue for an AnnotationMirror on a given Element.
144 public abstract TreePath getPath(Element e, AnnotationMirror a, AnnotationValue v);
/openjdk7/langtools/test/tools/javac/
H A DT6411379.java48 for (AnnotationMirror anno: te.getAnnotationMirrors()) {
/openjdk7/langtools/test/tools/javac/processing/messager/6362067/
H A DT6362067.java23 for (AnnotationMirror a: e.getAnnotationMirrors()) {
/openjdk7/langtools/test/tools/apt/Scanners/
H A DScanner.java53 Collection<AnnotationMirror> ams = d.getAnnotationMirrors();
62 for(AnnotationMirror am: ams) {
/openjdk7/langtools/test/tools/apt/lib/
H A DTester.java148 protected AnnotationMirror getAnno(String methodName, String annoType) {
152 for (AnnotationMirror a : m.getAnnotationMirrors()) {
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/processing/
H A DJavacRoundEnvironment.java151 java.util.List<? extends AnnotationMirror> annotationMirrors =
153 for (AnnotationMirror annotationMirror : annotationMirrors) {
H A DJavacMessager.java77 Element e, AnnotationMirror a) {
93 Element e, AnnotationMirror a, AnnotationValue v) {
/openjdk7/langtools/test/tools/apt/Compile/
H A DWarnAPF.java57 for(AnnotationMirror annotMirror : typeDecl.getAnnotationMirrors()) {
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/mirror/declaration/
H A DDeclarationImpl.java113 public Collection<AnnotationMirror> getAnnotationMirrors() {
114 Collection<AnnotationMirror> res =
115 new ArrayList<AnnotationMirror>();
/openjdk7/langtools/test/tools/javac/treeannotests/
H A DTestProcessor.java79 /** Get the AnnotationMirror on an element for a given annotation. */
80 AnnotationMirror getAnnoMirror(Element e, TypeElement anno) {
82 for (AnnotationMirror m: e.getAnnotationMirrors()) {
90 <T> T getValue(AnnotationMirror m, Class<T> type) {
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/comp/
H A DPrintAP.java237 private void printAnnotations(Collection<AnnotationMirror> annots) {
239 for(AnnotationMirror annot: annots) {
246 private void printAnnotationsInline(Collection<AnnotationMirror> annots) {
248 for(AnnotationMirror annot: annots) {

Completed in 144 milliseconds

12