Searched refs:annotate (Results 1 - 25 of 60) sorted by relevance

123

/openjdk9/langtools/test/tools/javac/classfiles/attributes/annotations/
H A DRuntimeAnnotationsForInnerEnumTest.java63 annotations.annotate(clazz);
66 annotations.annotate(innerClazzMethod);
69 annotations.annotate(localClassInClassMethod);
72 annotations.annotate(innerStaticClazzMethod);
75 annotations.annotate(localClassInStaticMethod);
78 annotations.annotate(valueA);
81 annotations.annotate(valueB);
H A DRuntimeAnnotationsForInnerInterfaceTest.java62 annotations.annotate(inter);
65 annotations.annotate(interField);
68 annotations.annotate(interMethod);
71 annotations.annotate(interStaticMethod);
74 annotations.annotate(localClassInStaticMethod);
77 annotations.annotate(interDefaultMethod);
80 annotations.annotate(localClassInDefaultMethod);
H A DRuntimeAnnotationsForInnerClassTest.java62 annotations.annotate(clazz);
65 annotations.annotate(constructor);
68 annotations.annotate(localClassInConstructor);
71 annotations.annotate(innerClazzMethod);
74 annotations.annotate(localClassInClassMethod);
77 annotations.annotate(innerStaticClazzMethod);
80 annotations.annotate(localClassInStaticMethod);
H A DRuntimeAnnotationsForTopLevelClassTest.java63 annotations.annotate(clazz);
67 annotations.annotate(constructor);
70 annotations.annotate(localClass);
74 annotations.annotate(staticClassMethod);
77 annotations.annotate(localClassInStaticMethod);
80 annotations.annotate(classMethod);
83 annotations.annotate(localClassInClassMethod);
86 annotations.annotate(field);
89 annotations.annotate(staticField);
H A DRuntimeAnnotationsForGenericMethodTest.java75 annotations.annotate(method);
77 annotations.annotate(synMethod);
H A DRuntimeParameterAnnotationsForGenericMethodTest.java72 annotations.annotate(parameter);
74 annotations.annotate(synParameter);
H A DRuntimeAnnotationsForInnerAnnotationTest.java61 annotations.annotate(anno);
64 annotations.annotate(annoMethod);
67 annotations.annotate(annoField);
H A DRuntimeParameterAnnotationsTest.java91 annotations.annotate(p1);
94 annotations.annotate(p3);
H A DRuntimeParameterAnnotationsForLambdaTest.java73 annotations.annotate(p1);
76 annotations.annotate(p3);
/openjdk9/jaxws/src/jdk.xml.bind/share/classes/com/sun/codemodel/internal/
H A DJAnnotatable.java40 * The annotation class to annotate the program element with
42 JAnnotationUse annotate(JClass clazz); method in interface:JAnnotatable
48 * The annotation class to annotate the program element with
50 JAnnotationUse annotate(Class <? extends Annotation> clazz); method in interface:JAnnotatable
H A DJEnumConstant.java111 * The annotation class to annotate the field with
113 public JAnnotationUse annotate(JClass clazz){ method in class:JEnumConstant
125 * The annotation class to annotate the field with
127 public JAnnotationUse annotate(Class <? extends Annotation> clazz){ method in class:JEnumConstant
128 return annotate(type.owner().ref(clazz));
H A DJVar.java156 * The annotation class to annotate the field with
158 public JAnnotationUse annotate(JClass clazz){ method in class:JVar
170 * The annotation class to annotate the field with
172 public JAnnotationUse annotate(Class <? extends Annotation> clazz){ method in class:JVar
173 return annotate(type.owner().ref(clazz));
H A DJAnnotationArrayMember.java242 public JAnnotationUse annotate(Class<? extends Annotation> clazz){ method in class:JAnnotationArrayMember
243 return annotate(owner.ref(clazz));
249 public JAnnotationUse annotate(JClass clazz){ method in class:JAnnotationArrayMember
284 * use {@link #annotate}
/openjdk9/jaxws/src/jdk.xml.bind/share/classes/com/sun/tools/internal/xjc/api/
H A DTypeAndAnnotation.java53 void annotate( JAnnotatable programElement ); method in interface:TypeAndAnnotation
/openjdk9/jaxws/src/jdk.xml.bind/share/classes/com/sun/tools/internal/xjc/addon/at_generated/
H A DPluginImpl.java76 annotate(eo.clazz);
83 annotate(co.implClass);
85 annotate(m);
87 annotate(f);
90 private void annotate(JAnnotatable m) { method in class:PluginImpl
91 m.annotate(annotation)
/openjdk9/jaxws/src/jdk.xml.ws/share/classes/com/sun/tools/internal/ws/processor/model/jaxb/
H A DJAXBTypeAndAnnotation.java54 public void annotate(JAnnotatable typeVar) { method in class:JAXBTypeAndAnnotation
56 typeAnn.annotate(typeVar);
/openjdk9/jaxws/src/jdk.xml.ws/share/classes/com/sun/tools/internal/ws/wscompile/plugin/at_generated/
H A DPluginImpl.java72 annotate(j.next());
79 private void annotate(JAnnotatable m) { method in class:PluginImpl
80 m.annotate(annotation)
/openjdk9/jaxws/src/jdk.xml.ws/share/classes/com/sun/tools/internal/ws/processor/generator/
H A DW3CAddressingJavaGeneratorExtension.java60 actionAnn = jMethod.annotate(Action.class);
68 actionAnn = jMethod.annotate(Action.class);
86 actionAnn = jMethod.annotate(Action.class);
91 final JAnnotationUse faAnn = jam.annotate(FaultAction.class);
H A DSeiGenerator.java131 JAnnotationUse webServiceAnn = cls.annotate(cm.ref(WebService.class));
158 retType.annotate(m);
178 //annotate parameter with JAXB annotations
179 paramType.annotate(var);
181 JAnnotationUse paramAnn = var.annotate(cm.ref(WebParam.class));
205 JAnnotationUse xmlSeeAlso = cls.annotate(cm.ref(XmlSeeAlso.class));
216 JAnnotationUse webMethodAnn = m.annotate(cm.ref(WebMethod.class));
230 m.annotate(javax.jws.Oneway.class);
264 wr = m.annotate(javax.jws.WebResult.class);
269 wr = m.annotate(java
[all...]
/openjdk9/jaxws/src/jdk.xml.bind/share/classes/com/sun/tools/internal/xjc/generator/bean/field/
H A DDummyListField.java105 protected void annotate( JAnnotatable field ) { method in class:DummyListField
106 super.annotate(field);
118 field.annotate(OverrideAnnotationOf.class);
H A DAbstractFieldWithVar.java64 annotate(field);
/openjdk9/jaxws/src/jdk.xml.bind/share/classes/com/sun/tools/internal/xjc/api/impl/s2j/
H A DTypeAndAnnotationImpl.java77 public void annotate(JAnnotatable programElement) { method in class:TypeAndAnnotationImpl
85 programElement.annotate(XmlAttachmentRef.class);
94 programElement.annotate(XmlList.class);
/openjdk9/jaxws/src/jdk.xml.bind/share/classes/com/sun/tools/internal/xjc/addon/locator/
H A DSourceLocationAddOn.java78 $loc.annotate(XmlLocation.class);
79 $loc.annotate(XmlTransient.class);
/openjdk9/jaxws/src/jdk.xml.bind/share/classes/com/sun/xml/internal/rngom/ast/builder/
H A DNameClassBuilder.java67 N annotate(N nc, A anno) throws BuildException; method in interface:NameClassBuilder
/openjdk9/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/comp/
H A DMemberEnter.java61 private final Annotate annotate; field in class:MemberEnter
79 annotate = Annotate.instance(context);
221 annotate.annotateLater(tree.mods.annotations, localEnv, m, tree.pos());
224 annotate.queueScanTreeAndTypeAnnotate(tree, localEnv, m, tree.pos());
227 m.defaultValue = annotate.unfinishedDefaultValue(); // set it to temporary sentinel for now
228 annotate.annotateDefaultValueLater(tree.defaultValue, localEnv, m, tree.pos());
299 annotate.annotateLater(tree.mods.annotations, localEnv, v, tree.pos());
300 annotate.queueScanTreeAndTypeAnnotate(tree.vartype, localEnv, v, tree.pos());

Completed in 259 milliseconds

123