Class NoopAnnotatedType<X>
- java.lang.Object
-
- org.apache.tapestry5.internal.jpa.NoopAnnotatedType<X>
-
- All Implemented Interfaces:
Annotated
,AnnotatedType<X>
public class NoopAnnotatedType<X> extends Object implements AnnotatedType<X>
-
-
Constructor Summary
Constructors Constructor Description NoopAnnotatedType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <T extends Annotation>
TgetAnnotation(Class<T> annotationType)
Set<Annotation>
getAnnotations()
Type
getBaseType()
Set<AnnotatedConstructor<X>>
getConstructors()
Set<AnnotatedField<? super X>>
getFields()
Class<X>
getJavaClass()
Set<AnnotatedMethod<? super X>>
getMethods()
Set<Type>
getTypeClosure()
boolean
isAnnotationPresent(Class<? extends Annotation> annotationType)
-
-
-
Constructor Detail
-
NoopAnnotatedType
public NoopAnnotatedType()
-
-
Method Detail
-
getBaseType
public Type getBaseType()
- Specified by:
getBaseType
in interfaceAnnotated
-
getTypeClosure
public Set<Type> getTypeClosure()
- Specified by:
getTypeClosure
in interfaceAnnotated
-
getAnnotation
public <T extends Annotation> T getAnnotation(Class<T> annotationType)
- Specified by:
getAnnotation
in interfaceAnnotated
-
getAnnotations
public Set<Annotation> getAnnotations()
- Specified by:
getAnnotations
in interfaceAnnotated
-
isAnnotationPresent
public boolean isAnnotationPresent(Class<? extends Annotation> annotationType)
- Specified by:
isAnnotationPresent
in interfaceAnnotated
-
getJavaClass
public Class<X> getJavaClass()
- Specified by:
getJavaClass
in interfaceAnnotatedType<X>
-
getConstructors
public Set<AnnotatedConstructor<X>> getConstructors()
- Specified by:
getConstructors
in interfaceAnnotatedType<X>
-
getMethods
public Set<AnnotatedMethod<? super X>> getMethods()
- Specified by:
getMethods
in interfaceAnnotatedType<X>
-
getFields
public Set<AnnotatedField<? super X>> getFields()
- Specified by:
getFields
in interfaceAnnotatedType<X>
-
-