Searched defs:annotations (Results 101 - 125 of 136) sorted by relevance

123456

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJMethod.java90 private List<JAnnotationUse> annotations = null; field in class:JMethod
249 if(annotations==null)
250 annotations = new ArrayList<JAnnotationUse>();
252 annotations.add(a);
270 public Collection<JAnnotationUse> annotations() { method in class:JMethod
271 if (annotations == null)
272 annotations = new ArrayList<JAnnotationUse>();
273 return Collections.unmodifiableList(annotations);
403 if (annotations != null){
404 for (JAnnotationUse a : annotations)
[all...]
H A DJPackage.java80 * Lazily created list of package annotations.
82 private List<JAnnotationUse> annotations = null; field in class:JPackage
376 if(annotations==null)
377 annotations = new ArrayList<JAnnotationUse>();
379 annotations.add(a);
391 public Collection<JAnnotationUse> annotations() { method in class:JPackage
392 if (annotations == null)
393 annotations = new ArrayList<JAnnotationUse>();
394 return Collections.unmodifiableList(annotations);
427 // write package annotations
[all...]
H A DJDefinedClass.java145 private List<JAnnotationUse> annotations = null; field in class:JDefinedClass
756 if (annotations != null){
757 for (JAnnotationUse annotation : annotations)
870 if(annotations==null)
871 annotations = new ArrayList<JAnnotationUse>();
873 annotations.add(a);
882 * {@link JAnnotatable#annotations()}
884 public Collection<JAnnotationUse> annotations() { method in class:JDefinedClass
885 if (annotations == null)
886 annotations
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DPackageDocImpl.java282 * Get the annotations of this package.
285 public AnnotationDesc[] annotations() { method in class:PackageDocImpl
/openjdk7/langtools/src/share/sample/javac/processing/src/
H A DCheckNamesProcessor.java114 * annotations are present; no new source or class files are
117 * <p>Processors that actually process specific annotations should
122 public boolean process(Set<? extends TypeElement> annotations, argument
/openjdk7/jdk/src/share/classes/sun/reflect/
H A DLangReflectAccess.java42 byte[] annotations);
54 byte[] annotations,
66 byte[] annotations,
90 /** Gets the "annotations" field from a Constructor (used for serialization) */
36 newField(Class<?> declaringClass, String name, Class<?> type, int modifiers, int slot, String signature, byte[] annotations) argument
46 newMethod(Class<?> declaringClass, String name, Class<?>[] parameterTypes, Class<?> returnType, Class<?>[] checkedExceptions, int modifiers, int slot, String signature, byte[] annotations, byte[] parameterAnnotations, byte[] annotationDefault) argument
60 newConstructor(Class<T> declaringClass, Class<?>[] parameterTypes, Class<?>[] checkedExceptions, int modifiers, int slot, String signature, byte[] annotations, byte[] parameterAnnotations) argument
H A DReflectionFactory.java213 byte[] annotations)
221 annotations);
234 byte[] annotations,
246 annotations,
259 byte[] annotations,
268 annotations,
207 newField(Class<?> declaringClass, String name, Class<?> type, int modifiers, int slot, String signature, byte[] annotations) argument
226 newMethod(Class<?> declaringClass, String name, Class<?>[] parameterTypes, Class<?> returnType, Class<?>[] checkedExceptions, int modifiers, int slot, String signature, byte[] annotations, byte[] parameterAnnotations, byte[] annotationDefault) argument
253 newConstructor(Class<?> declaringClass, Class<?>[] parameterTypes, Class<?>[] checkedExceptions, int modifiers, int slot, String signature, byte[] annotations, byte[] parameterAnnotations) argument
/openjdk7/langtools/test/tools/javac/processing/model/type/
H A DTestUnionType.java151 public boolean process(Set<? extends TypeElement> annotations, RoundEnvironment roundEnv) { argument
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/
H A DXSAttributeDecl.java66 // optional annotations
77 XSObjectList annotations) {
85 fAnnotations = annotations;
74 setValues(String name, String targetNamespace, XSSimpleType simpleType, short constraintType, short scope, ValidatedInfo valInfo, XSComplexTypeDecl enclosingCT, XSObjectList annotations) argument
H A DXSComplexTypeDecl.java83 // list of annotations affiliated with this type
106 XSObjectListImpl annotations) {
118 fAnnotations = annotations;
101 setValues(String name, String targetNamespace, XSTypeDefinition baseType, short derivedBy, short schemaFinal, short block, short contentType, boolean isAbstract, XSAttributeGroupDecl attrGrp, XSSimpleType simpleType, XSParticleDecl particle, XSObjectListImpl annotations) argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/
H A DAnnotatedMemoryPanel.java42 with annotations describing the significance of various
57 private IntervalTree annotations = field in class:AnnotatedMemoryPanel
80 // can scroll annotations
84 // List<Annotation>. These annotations have already been laid out.
170 // Scroll last-known annotations
199 // Query for visible annotations (little slop to ensure we get the
203 // annotations still visible shouldn't change position
205 annotations.findAllNodesIntersecting(new Interval(startAddr.addOffsetTo(-addressSize),
262 annotations.insert(annotation.getInterval(), annotation);
276 annotations
[all...]
/openjdk7/jdk/src/share/classes/java/lang/reflect/
H A DConstructor.java71 // Generics and annotations support
75 private byte[] annotations; field in class:Constructor
114 byte[] annotations,
123 this.annotations = annotations;
144 annotations,
601 return annotations;
631 annotations, sun.misc.SharedSecrets.getJavaLangAccess().
639 * Returns an array of arrays that represent the annotations on the formal
644 * with no annotations
108 Constructor(Class<T> declaringClass, Class<?>[] parameterTypes, Class<?>[] checkedExceptions, int modifiers, int slot, String signature, byte[] annotations, byte[] parameterAnnotations) argument
[all...]
H A DMethod.java74 // Generics and annotations support
78 private byte[] annotations; field in class:Method
121 byte[] annotations,
133 this.annotations = annotations;
153 annotations, parameterAnnotations, annotationDefault);
715 annotations, sun.misc.SharedSecrets.getJavaLangAccess().
752 * Returns an array of arrays that represent the annotations on the formal
757 * with no annotations.) The annotation objects contained in the returned
762 * @return an array of arrays that represent the annotations o
113 Method(Class<?> declaringClass, String name, Class<?>[] parameterTypes, Class<?> returnType, Class<?>[] checkedExceptions, int modifiers, int slot, String signature, byte[] annotations, byte[] parameterAnnotations, byte[] annotationDefault) argument
[all...]
H A DField.java69 // Generics and annotations support
73 private byte[] annotations; field in class:Field
117 byte[] annotations)
125 this.annotations = annotations;
141 Field res = new Field(clazz, name, type, modifiers, slot, signature, annotations);
1129 annotations, sun.misc.SharedSecrets.getJavaLangAccess().
111 Field(Class<?> declaringClass, String name, Class<?> type, int modifiers, int slot, String signature, byte[] annotations) argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/model/
H A DParameter.java158 private List<String> annotations = new ArrayList<String>(); field in class:Parameter
161 * @return Returns the annotations.
164 return annotations;
169 * @param annotations The annotations to set.
171 public void setAnnotations(List<String> annotations) { argument
172 this.annotations = annotations;
/openjdk7/jdk/src/share/classes/sun/reflect/annotation/
H A DAnnotationParser.java43 * Parser for Java programming language annotations. Translates
51 * Parses the annotations described by the specified byte array.
53 * The array must contain an array of annotations as described
57 * annotation annotations[num_annotations];
72 throw new AnnotationFormatError("Unexpected end of annotations.");
102 * Parses the parameter annotations described by the specified byte array.
104 * The array must contain an array of annotations as described
110 * annotation annotations[num_annotations];
132 "Unexpected end of parameter annotations.");
149 List<Annotation> annotations
802 toArray(Map<Class<? extends Annotation>, Annotation> annotations) argument
[all...]
/openjdk7/langtools/test/tools/javac/api/
H A DTestContainTypes.java178 public boolean process(Set<? extends TypeElement> annotations, RoundEnvironment roundEnv) { argument
182 if (annotations.isEmpty() || annotations.size() > 1) {
183 error("no anno found/wrong number of annotations found: " + annotations.size());
185 TypeElement anno = (TypeElement)annotations.toArray()[0];
H A DTestOperators.java296 public boolean process(Set<? extends TypeElement> annotations, argument
H A DTestClientCodeWrapper.java249 public boolean process(Set<? extends TypeElement> annotations, RoundEnvironment roundEnv) { argument
551 public boolean process(Set<? extends TypeElement> annotations, RoundEnvironment roundEnv) { argument
/openjdk7/langtools/test/tools/javac/processing/
H A DTestWarnErrorCount.java297 public boolean process(Set<? extends TypeElement> annotations, RoundEnvironment roundEnv) { argument
/openjdk7/langtools/test/tools/javac/processing/errors/
H A DTestSuppression.java211 public boolean process(Set<? extends TypeElement> annotations, RoundEnvironment roundEnv) { argument
/openjdk7/langtools/test/tools/javac/processing/model/util/elements/doccomments/
H A DTestDocComments.java164 public boolean process(Set<? extends TypeElement> annotations, RoundEnvironment roundEnv) { argument
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DMemberEnter.java189 // enter non-types before annotations that might use them
283 // enter non-types before annotations that might use them
518 // process package annotations
600 annotateLater(tree.mods.annotations, localEnv, m);
662 annotateLater(tree.mods.annotations, localEnv, v);
731 /** Queue annotations for later processing. */
732 void annotateLater(final List<JCAnnotation> annotations, argument
735 if (annotations.isEmpty()) return;
739 return "annotate " + annotations + " onto " + s + " in " + s.owner;
747 annotations
763 hasDeprecatedAnnotation(List<JCAnnotation> annotations) argument
774 enterAnnotations(List<JCAnnotation> annotations, Env<AttrContext> env, Symbol s) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javah/
H A DJavahTask.java698 public boolean process(Set<? extends TypeElement> annotations, RoundEnvironment roundEnv) { argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/impl/
H A DClassInfoImpl.java366 Annotation[] annotations = reader().getAllFieldAnnotations(f,this);
371 if(hasJAXBAnnotation(annotations))
374 getSomeJAXBAnnotation(annotations)));
378 if(hasJAXBAnnotation(annotations))
379 addProperty(createFieldSeed(f),annotations, false);
383 || hasJAXBAnnotation(annotations)) {
393 addProperty(createFieldSeed(f), annotations, false);
440 * annotations.
574 final List<Annotation> annotations; field in class:ClassInfoImpl.ConflictException
577 this.annotations
709 addProperty( PropertySeed<T,C,F,M> seed, Annotation[] annotations, boolean dummy ) argument
1136 hasJAXBAnnotation(Annotation[] annotations) argument
1140 getSomeJAXBAnnotation(Annotation[] annotations) argument
[all...]

Completed in 95 milliseconds

123456