Class UnbackedAnnotatedMember<X>
- java.lang.Object
-
- org.jboss.weld.annotated.slim.BaseAnnotated
-
- org.jboss.weld.annotated.slim.unbacked.UnbackedAnnotated
-
- org.jboss.weld.annotated.slim.unbacked.UnbackedAnnotatedMember<X>
-
- All Implemented Interfaces:
Annotated,AnnotatedMember<X>
- Direct Known Subclasses:
UnbackedAnnotatedConstructor,UnbackedAnnotatedField,UnbackedAnnotatedMethod
public abstract class UnbackedAnnotatedMember<X> extends UnbackedAnnotated implements AnnotatedMember<X>
-
-
Constructor Summary
Constructors Constructor Description UnbackedAnnotatedMember(Type baseType, Set<Type> typeClosure, Set<Annotation> annotations, UnbackedAnnotatedType<X> declaringType)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description UnbackedAnnotatedType<X>getDeclaringType()Get the type which defines this member.booleanisStatic()Determines if the member is static.-
Methods inherited from class org.jboss.weld.annotated.slim.unbacked.UnbackedAnnotated
getAnnotation, getAnnotations, getTypeClosure, isAnnotationPresent
-
Methods inherited from class org.jboss.weld.annotated.slim.BaseAnnotated
getBaseType
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface javax.enterprise.inject.spi.Annotated
getAnnotation, getAnnotations, getAnnotations, getBaseType, getTypeClosure, isAnnotationPresent
-
Methods inherited from interface javax.enterprise.inject.spi.AnnotatedMember
getJavaMember
-
-
-
-
Constructor Detail
-
UnbackedAnnotatedMember
public UnbackedAnnotatedMember(Type baseType, Set<Type> typeClosure, Set<Annotation> annotations, UnbackedAnnotatedType<X> declaringType)
-
-
Method Detail
-
isStatic
public boolean isStatic()
Description copied from interface:AnnotatedMemberDetermines if the member is static.
- Specified by:
isStaticin interfaceAnnotatedMember<X>- Returns:
- true if the member is static
-
getDeclaringType
public UnbackedAnnotatedType<X> getDeclaringType()
Description copied from interface:AnnotatedMemberGet the type which defines this member.
- Specified by:
getDeclaringTypein interfaceAnnotatedMember<X>- Returns:
- the type which defines this member
-
-