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.Member
getJavaMember()
Get the underlyingMember
.boolean
isStatic()
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 jakarta.enterprise.inject.spi.Annotated
getAnnotation, getAnnotations, getAnnotations, getBaseType, getTypeClosure, isAnnotationPresent
-
-
-
-
Method Detail
-
getJavaMember
public Member getJavaMember()
Description copied from interface:AnnotatedMember
Get the underlying
Member
.- Specified by:
getJavaMember
in interfaceAnnotatedMember<X>
- Returns:
- the
Member
-
isStatic
public boolean isStatic()
Description copied from interface:AnnotatedMember
Determines if the member is static.
- Specified by:
isStatic
in interfaceAnnotatedMember<X>
- Returns:
true
if the member is static
-
getDeclaringType
public AnnotatedType<X> getDeclaringType()
Description copied from interface:AnnotatedMember
Get the type which defines this member.
- Specified by:
getDeclaringType
in interfaceAnnotatedMember<X>
- Returns:
- the type which defines this member
-
delegate
protected abstract AnnotatedMember<X> delegate()
- Specified by:
delegate
in classForwardingAnnotated
-
-