Searched defs:annotations (Results 76 - 100 of 136) sorted by relevance

123456

/openjdk7/langtools/test/tools/javac/util/
H A DT6597678.java77 public boolean process(Set<? extends TypeElement> annotations, RoundEnvironment roundEnv) { argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJEnumConstant.java60 private List<JAnnotationUse> annotations = null; field in class:JEnumConstant
114 if(annotations==null)
115 annotations = new ArrayList<JAnnotationUse>();
117 annotations.add(a);
136 * {@link JAnnotatable#annotations()}
138 public Collection<JAnnotationUse> annotations() { method in class:JEnumConstant
139 if (annotations == null)
140 annotations = new ArrayList<JAnnotationUse>();
141 return Collections.unmodifiableList(annotations);
147 if (annotations !
[all...]
H A DJVar.java64 private List<JAnnotationUse> annotations = null; field in class:JVar
159 if(annotations==null)
160 annotations = new ArrayList<JAnnotationUse>();
162 annotations.add(a);
180 public Collection<JAnnotationUse> annotations() { method in class:JVar
181 if (annotations == null)
182 annotations = new ArrayList<JAnnotationUse>();
183 return Collections.unmodifiableList(annotations);
187 return annotations!=null;
191 if (annotations !
[all...]
/openjdk7/langtools/src/share/classes/javax/annotation/processing/
H A DProcessor.java38 * subset of the annotations found on the source and class files
44 * including the last round, even if there are no annotations for it
91 * of what annotations are present on the {@linkplain
95 * claims the annotations it processes}. A processor will be asked to
102 * from the set of unmatched annotations. When the set is empty or no
110 * true}, all annotations are claimed. Therefore, a universal
211 * claiming unnecessary annotations may cause a performance
260 * these annotations are claimed by this processor. If {@code
261 * true} is returned, the annotations are claimed and subsequent
263 * is returned, the annotations ar
276 process(Set<? extends TypeElement> annotations, RoundEnvironment roundEnv) argument
[all...]
H A DAbstractProcessor.java40 * #getSupportedAnnotationTypes annotations}, and {@linkplain
159 public abstract boolean process(Set<? extends TypeElement> annotations, argument
/openjdk7/langtools/test/tools/javac/classreader/
H A DT7031108.java137 public boolean process(Set<? extends TypeElement> annotations, RoundEnvironment roundEnv) { argument
/openjdk7/langtools/test/tools/javac/file/
H A DT7018098.java95 public boolean process(Set<? extends TypeElement> annotations, RoundEnvironment roundEnv) { argument
H A DT7068451.java131 @Override public boolean process(Set<? extends TypeElement> annotations, RoundEnvironment roundEnv) { argument
/openjdk7/langtools/test/tools/javac/multicatch/model/
H A DModelChecker.java55 public boolean process(Set<? extends TypeElement> annotations, RoundEnvironment roundEnv) { argument
/openjdk7/langtools/test/tools/javac/processing/model/element/
H A DTestNames.java55 public boolean process(Set<? extends TypeElement> annotations, argument
H A DTestAnonClassNames.java174 public boolean process(Set<? extends TypeElement> annotations, argument
H A DTestTypeParameter.java42 public boolean process(Set<? extends TypeElement> annotations, RoundEnvironment roundEnv) { argument
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dv/
H A DSchemaDVFactory.java112 * @param annotations set of annotations
117 XSObjectList annotations);
127 * @param annotations set of annotations
132 XSObjectList annotations);
142 * @param annotations set of annotations
147 XSObjectList annotations);
115 createTypeRestriction(String name, String targetNamespace, short finalSet, XSSimpleType base, XSObjectList annotations) argument
130 createTypeList(String name, String targetNamespace, short finalSet, XSSimpleType itemType, XSObjectList annotations) argument
145 createTypeUnion(String name, String targetNamespace, short finalSet, XSSimpleType[] memberTypes, XSObjectList annotations) argument
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dv/xs/
H A DBaseDVFactory.java83 * @param annotations set of annotations
87 short finalSet, XSSimpleType base, XSObjectList annotations) {
88 return new XSSimpleTypeDecl((XSSimpleTypeDecl)base, name, targetNamespace, finalSet, false, annotations);
99 * @param annotations set of annotations
104 XSObjectList annotations) {
105 return new XSSimpleTypeDecl(name, targetNamespace, finalSet, (XSSimpleTypeDecl)itemType, false, annotations);
116 * @param annotations set of annotations
86 createTypeRestriction(String name, String targetNamespace, short finalSet, XSSimpleType base, XSObjectList annotations) argument
102 createTypeList(String name, String targetNamespace, short finalSet, XSSimpleType itemType, XSObjectList annotations) argument
119 createTypeUnion(String name, String targetNamespace, short finalSet, XSSimpleType[] memberTypes, XSObjectList annotations) argument
[all...]
H A DBaseSchemaDVFactory.java262 * @param annotations set of annotations
266 short finalSet, XSSimpleType base, XSObjectList annotations) {
270 return st.setRestrictionValues((XSSimpleTypeDecl)base, name, targetNamespace, finalSet, annotations);
272 return new XSSimpleTypeDecl((XSSimpleTypeDecl)base, name, targetNamespace, finalSet, false, annotations);
283 * @param annotations set of annotations
288 XSObjectList annotations) {
291 return st.setListValues(name, targetNamespace, finalSet, (XSSimpleTypeDecl)itemType, annotations);
293 return new XSSimpleTypeDecl(name, targetNamespace, finalSet, (XSSimpleTypeDecl)itemType, false, annotations);
265 createTypeRestriction(String name, String targetNamespace, short finalSet, XSSimpleType base, XSObjectList annotations) argument
286 createTypeList(String name, String targetNamespace, short finalSet, XSSimpleType itemType, XSObjectList annotations) argument
307 createTypeUnion(String name, String targetNamespace, short finalSet, XSSimpleType[] memberTypes, XSObjectList annotations) argument
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A DfieldDescriptor.cpp59 typeArrayOop fieldDescriptor::annotations() const { function in class:fieldDescriptor
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DProgramElementDocImpl.java53 * @author Scott Seligman (generics, enums, annotations)
156 * Get the annotations of this program element.
159 public AnnotationDesc[] annotations() { method in class:ProgramElementDocImpl
/openjdk7/langtools/test/tools/javac/api/6406133/
H A DT6406133.java68 public boolean process(Set<? extends TypeElement> annotations, RoundEnvironment roundEnv) { argument
/openjdk7/langtools/test/tools/javac/api/6468404/
H A DT6468404.java129 public boolean process(Set<? extends TypeElement> annotations, RoundEnvironment roundEnv) { argument
/openjdk7/langtools/test/tools/javac/api/
H A DTestGetElement.java94 public boolean process(Set<? extends TypeElement> annotations, argument
/openjdk7/langtools/test/tools/javac/processing/filer/
H A DTestGetResource2.java120 public @Override boolean process(Set<? extends TypeElement> annotations, RoundEnvironment roundEnv) { argument
/openjdk7/langtools/test/tools/javac/processing/model/element/TestMissingElement/
H A DTestMissingElement.java43 public boolean process(Set<? extends TypeElement> annotations, RoundEnvironment roundEnv) { argument
/openjdk7/langtools/test/tools/javac/tree/
H A DTreePosRoundsTest.java91 public boolean process(Set<? extends TypeElement> annotations, RoundEnvironment roundEnv) { argument
/openjdk7/langtools/test/tools/javac/util/context/
H A DT7021650.java171 public boolean process(Set<? extends TypeElement> annotations, RoundEnvironment roundEnv) { argument
/openjdk7/jdk/src/share/classes/java/lang/reflect/
H A DReflectAccess.java42 byte[] annotations)
50 annotations);
61 byte[] annotations,
73 annotations,
84 byte[] annotations,
93 annotations,
36 newField(Class<?> declaringClass, String name, Class<?> type, int modifiers, int slot, String signature, byte[] annotations) argument
53 newMethod(Class<?> declaringClass, String name, Class<?>[] parameterTypes, Class<?> returnType, Class<?>[] checkedExceptions, int modifiers, int slot, String signature, byte[] annotations, byte[] parameterAnnotations, byte[] annotationDefault) argument
78 newConstructor(Class<T> declaringClass, Class<?>[] parameterTypes, Class<?>[] checkedExceptions, int modifiers, int slot, String signature, byte[] annotations, byte[] parameterAnnotations) argument

Completed in 108 milliseconds

123456