Home » apache-openwebbeans-1.0.0-incubating-M3-sources » javax.enterprise.inject.spi » [javadoc | source]
javax.enterprise.inject.spi
public interface: Annotated [javadoc | source]

All Known Implementing Classes:
    AnnotatedCallable, AnnotatedConstructor, AnnotatedField, AnnotatedParameter, AnnotatedMember, AnnotatedType, AnnotatedMethod

Describes annotated member properties.
Method from javax.enterprise.inject.spi.Annotated Summary:
getAnnotation,   getAnnotations,   getBaseType,   getTypeClosure,   isAnnotationPresent
Method from javax.enterprise.inject.spi.Annotated Detail:
 public T getAnnotation(Class<T> annotationType)
    Gets annotated element's annotation member if exist, null otherwise
 public Set<Annotation> getAnnotations()
    Gets annotated member all annotations.
 public Type getBaseType()
    Returns type of the element.
 public Set<Type> getTypeClosure()
 public boolean isAnnotationPresent(Class<Annotation> annotationType)
    Returns true if annotated member has annotation for given annotation type, false otherwise.