Package org.jboss.weld.util.annotated
Class ForwardingAnnotatedMember<X>
- java.lang.Object
-
- org.jboss.weld.util.annotated.ForwardingAnnotated
-
- org.jboss.weld.util.annotated.ForwardingAnnotatedMember<X>
-
- All Implemented Interfaces:
Annotated,AnnotatedMember<X>
- Direct Known Subclasses:
ForwardingAnnotatedCallable,ForwardingAnnotatedField
public abstract class ForwardingAnnotatedMember<X> extends ForwardingAnnotated implements AnnotatedMember<X>
Forwarding implementation ofAnnotatedMember.- Author:
- Jozef Hartinger
-
-
Constructor Summary
Constructors Constructor Description ForwardingAnnotatedMember()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description protected abstract AnnotatedMember<X>delegate()AnnotatedType<X>getDeclaringType()Get the type which defines this member.MembergetJavaMember()Get the underlyingMember.booleanisStatic()Determines if the member is static.-
Methods inherited from class org.jboss.weld.util.annotated.ForwardingAnnotated
equals, getAnnotation, getAnnotations, getBaseType, getTypeClosure, hashCode, isAnnotationPresent, toString
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface javax.enterprise.inject.spi.Annotated
getAnnotation, getAnnotations, getAnnotations, getBaseType, getTypeClosure, isAnnotationPresent
-
-
-
-
Method Detail
-
getJavaMember
public Member getJavaMember()
Description copied from interface:AnnotatedMemberGet the underlying
Member.- Specified by:
getJavaMemberin interfaceAnnotatedMember<X>- Returns:
- the
Member
-
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 AnnotatedType<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
-
delegate
protected abstract AnnotatedMember<X> delegate()
- Specified by:
delegatein classForwardingAnnotated
-
-