Searched defs:annotations (Results 51 - 75 of 136) sorted by relevance

123456

/openjdk7/langtools/test/tools/javac/processing/options/testPrintProcessorInfo/
H A DTest.java46 public boolean process(Set<? extends TypeElement> annotations, RoundEnvironment roundEnv) { argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJAnnotationArrayMember.java40 * new annotations to be added as a member of the array.
260 * {@link JAnnotatable#annotations()}
263 public Collection<JAnnotationUse> annotations() { method in class:JAnnotationArrayMember
264 // this invocation is invalid if the caller isn't adding annotations into an array
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/api/
H A DReference.java41 * and a set of annotations (represented as a {@link Declaration}).
57 * The declaration from which annotations for the {@link #type} is read.
60 public final Declaration annotations; field in class:Reference
64 * and annotations on the method.
72 * and annotations on the parameter.
79 * Creates a reference from a class declaration and its annotations.
88 public Reference(TypeMirror type, Declaration annotations) { argument
89 if(type==null || annotations==null)
92 this.annotations = annotations;
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/api/
H A DTypeReference.java62 * The annotations associated with the reference of this type.
66 public final Annotation[] annotations; field in class:TypeReference
68 public TypeReference(QName tagName, Type type, Annotation... annotations) { argument
69 if(tagName==null || type==null || annotations==null) {
74 if(annotations == null) nullArgs += (nullArgs.length() > 0 ? ", annotations" : "annotations");
83 this.annotations = annotations;
91 for (Annotation a : annotations) {
[all...]
/openjdk7/langtools/src/share/classes/com/sun/javadoc/
H A DPackageDoc.java114 * Get the annotations of this package.
117 * @return the annotations of this package.
120 AnnotationDesc[] annotations(); method in interface:PackageDoc
H A DProgramElementDoc.java89 * Get the annotations of this program element.
92 * @return the annotations of this program element.
95 AnnotationDesc[] annotations(); method in interface:ProgramElementDoc
/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/
H A DRuntimeInvisibleAnnotations_attribute.java44 public RuntimeInvisibleAnnotations_attribute(ConstantPool cp, Annotation[] annotations) argument
46 this(cp.getUTF8Index(Attribute.RuntimeInvisibleAnnotations), annotations);
49 public RuntimeInvisibleAnnotations_attribute(int name_index, Annotation[] annotations) { argument
50 super(name_index, annotations);
H A DRuntimeVisibleAnnotations_attribute.java44 public RuntimeVisibleAnnotations_attribute(ConstantPool cp, Annotation[] annotations) argument
46 this(cp.getUTF8Index(Attribute.RuntimeVisibleAnnotations), annotations);
49 public RuntimeVisibleAnnotations_attribute(int name_index, Annotation[] annotations) { argument
50 super(name_index, annotations);
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DParameterImpl.java40 * @author Scott Seligman (generics, annotations)
94 * Get the annotations of this parameter.
97 public AnnotationDesc[] annotations() { method in class:ParameterImpl
/openjdk7/langtools/test/tools/javac/api/6421111/
H A DT6421111.java93 public boolean process(Set<? extends TypeElement> annotations, argument
/openjdk7/langtools/test/tools/javac/api/
H A DTestTreePath.java51 public boolean process(Set<? extends TypeElement> annotations, argument
/openjdk7/langtools/test/tools/javac/enum/6350057/
H A DT6350057.java78 public boolean process(Set<? extends TypeElement> annotations, argument
/openjdk7/langtools/test/tools/javac/file/
H A DT7068437.java89 public boolean process(Set<? extends TypeElement> annotations, RoundEnvironment roundEnv) { argument
/openjdk7/langtools/test/tools/javac/options/
H A DT7022337.java84 public boolean process(Set<? extends TypeElement> annotations, RoundEnvironment roundEnv) { argument
/openjdk7/langtools/test/tools/javac/processing/6499119/
H A DClassProcessor.java46 public boolean process(Set<? extends TypeElement> annotations, RoundEnvironment roundEnv) { argument
/openjdk7/langtools/test/tools/javac/processing/
H A DT6439826.java67 public boolean process(Set<? extends TypeElement> annotations, argument
/openjdk7/langtools/test/tools/javac/processing/environment/round/
H A DTestContext.java58 public boolean process(Set<? extends TypeElement> annotations, RoundEnvironment roundEnv) { argument
/openjdk7/langtools/test/tools/javac/processing/filer/
H A DTestFilerConstraints.java81 public boolean process(Set<? extends TypeElement> annotations, argument
H A DTestInvalidRelativeNames.java49 public boolean process(Set<? extends TypeElement> annotations, RoundEnvironment roundEnv) { argument
H A DTestValidRelativeNames.java51 public boolean process(Set<? extends TypeElement> annotations, RoundEnvironment roundEnv) { argument
/openjdk7/langtools/test/tools/javac/processing/model/element/
H A DTestResourceElement.java42 public boolean process(Set<? extends TypeElement> annotations, argument
H A DTestResourceVariable.java53 public boolean process(Set<? extends TypeElement> annotations, argument
/openjdk7/langtools/test/tools/javac/processing/model/type/MirroredTypeEx/
H A DPlurality.java50 public boolean process(Set<? extends TypeElement> annotations, argument
/openjdk7/langtools/test/tools/javac/processing/options/
H A DTestImplicitNone.java100 public boolean process(Set<? extends TypeElement> annotations, argument
/openjdk7/langtools/test/tools/javac/processing/options/testCommandLineClasses/
H A DTest.java97 public boolean process(Set<? extends TypeElement> annotations, argument

Completed in 547 milliseconds

123456