Searched refs:annotationType (Results 1 - 25 of 71) sorted by relevance

123

/openjdk7/langtools/test/tools/javac/annotations/neg/
H A DNoAnnotationMethods.java33 int annotationType(); method in interface:NoAnnotationMethods
/openjdk7/jdk/src/share/classes/java/lang/annotation/
H A DIncompleteAnnotationException.java44 private Class annotationType; field in class:IncompleteAnnotationException
52 * @param annotationType the Class object for the annotation type
56 Class<? extends Annotation> annotationType,
58 super(annotationType.getName() + " missing element " + elementName);
60 this.annotationType = annotationType;
71 public Class<? extends Annotation> annotationType() { method in class:IncompleteAnnotationException
72 return annotationType;
55 IncompleteAnnotationException( Class<? extends Annotation> annotationType, String elementName) argument
H A DAnnotation.java130 Class<? extends Annotation> annotationType(); method in interface:Annotation
/openjdk7/langtools/test/tools/javac/annotations/pos/
H A DClassB.java26 public Class<ClassA> annotationType() { return ClassA.class; } method in class:ClassB
/openjdk7/langtools/src/share/classes/com/sun/javadoc/
H A DAnnotationDesc.java43 AnnotationTypeDoc annotationType(); method in interface:AnnotationDesc
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/annotation/
H A DAnnotationSource.java47 <A extends Annotation> A readAnnotation(Class<A> annotationType); argument
52 * Short for <code>readAnnotation(annotationType)!=null</code>,
55 boolean hasAnnotation(Class<? extends Annotation> annotationType); argument
H A DXmlElementRefsQuick.java52 public Class<XmlElementRefs> annotationType() { method in class:XmlElementRefsQuick
H A DXmlEnumQuick.java51 public Class<XmlEnum> annotationType() { method in class:XmlEnumQuick
H A DXmlRootElementQuick.java51 public Class<XmlRootElement> annotationType() { method in class:XmlRootElementQuick
H A DXmlTransientQuick.java51 public Class<XmlTransient> annotationType() { method in class:XmlTransientQuick
H A DXmlValueQuick.java51 public Class<XmlValue> annotationType() { method in class:XmlValueQuick
H A DRuntimeInlineAnnotationReader.java49 public boolean hasFieldAnnotation(Class<? extends Annotation> annotationType, Field field) { argument
50 return field.isAnnotationPresent(annotationType);
53 public boolean hasClassAnnotation(Class clazz, Class<? extends Annotation> annotationType) { argument
54 return clazz.isAnnotationPresent(annotationType);
84 if(a.annotationType()==annotation)
122 return (Class)a.annotationType().getMethod(name).invoke(a);
128 throw new InternalError(Messages.CLASS_NOT_FOUND.format(a.annotationType(), e.getMessage()));
136 return (Class[])a.annotationType().getMethod(name).invoke(a);
H A DXmlAttributeQuick.java51 public Class<XmlAttribute> annotationType() { method in class:XmlAttributeQuick
H A DXmlElementDeclQuick.java51 public Class<XmlElementDecl> annotationType() { method in class:XmlElementDeclQuick
H A DXmlElementQuick.java51 public Class<XmlElement> annotationType() { method in class:XmlElementQuick
H A DXmlElementRefQuick.java51 public Class<XmlElementRef> annotationType() { method in class:XmlElementRefQuick
H A DXmlSchemaQuick.java53 public Class<XmlSchema> annotationType() { method in class:XmlSchemaQuick
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/
H A DAnnotationTypeWriterImpl.java49 protected AnnotationTypeDoc annotationType; field in class:AnnotationTypeWriterImpl
56 * @param annotationType the annotation type being documented.
60 public AnnotationTypeWriterImpl (AnnotationTypeDoc annotationType, argument
64 DirectoryManager.getDirectoryPath(annotationType.containingPackage()),
65 annotationType.name() + ".html",
66 DirectoryManager.getRelativePath(annotationType.containingPackage().name()));
67 this.annotationType = annotationType;
68 configuration.currentcd = annotationType.asClassDoc();
146 String pkgname = (annotationType
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/api/
H A DTypeReference.java90 public <A extends Annotation> A get( Class<A> annotationType ) {
92 if(a.annotationType()==annotationType)
93 return annotationType.cast(a);
/openjdk7/langtools/src/share/classes/com/sun/mirror/declaration/
H A DDeclaration.java117 * @param annotationType the <tt>Class</tt> object corresponding to
123 <A extends Annotation> A getAnnotation(Class<A> annotationType); argument
/openjdk7/jdk/src/share/classes/sun/misc/
H A DJavaLangAccess.java40 void setAnnotationType(Class klass, AnnotationType annotationType); argument
/openjdk7/langtools/test/tools/javadoc/annotations/missing/
H A DMain.java47 System.out.println(a.annotationType());
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/impl/
H A DFieldPropertySeed.java52 public boolean hasAnnotation(Class<? extends Annotation> annotationType) { argument
53 return parent.reader().hasFieldAnnotation(annotationType,field);
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/builders/
H A DBuilderFactory.java109 * @param annotationType the annotation type being documented.
116 AnnotationTypeDoc annotationType,
119 return AnnotationTypeBuilder.getInstance(configuration, annotationType,
120 writerFactory.getAnnotationTypeWriter(annotationType, prevType,
115 getAnnotationTypeBuilder( AnnotationTypeDoc annotationType, Type prevType, Type nextType) argument
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/processing/
H A DJavacRoundEnvironment.java173 TypeElement annotationType = processingEnv.getElementUtils().getTypeElement(name);
174 if (annotationType == null)
177 return getElementsAnnotatedWith(annotationType);

Completed in 68 milliseconds

123