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()TypegetBaseType()Set<AnnotatedConstructor<X>>getConstructors()Set<AnnotatedField<? super X>>getFields()Class<X>getJavaClass()Set<AnnotatedMethod<? super X>>getMethods()Set<Type>getTypeClosure()booleanisAnnotationPresent(Class<? extends Annotation> annotationType)
-
-
-
Constructor Detail
-
NoopAnnotatedType
public NoopAnnotatedType()
-
-
Method Detail
-
getBaseType
public Type getBaseType()
- Specified by:
getBaseTypein interfaceAnnotated
-
getTypeClosure
public Set<Type> getTypeClosure()
- Specified by:
getTypeClosurein interfaceAnnotated
-
getAnnotation
public <T extends Annotation> T getAnnotation(Class<T> annotationType)
- Specified by:
getAnnotationin interfaceAnnotated
-
getAnnotations
public Set<Annotation> getAnnotations()
- Specified by:
getAnnotationsin interfaceAnnotated
-
isAnnotationPresent
public boolean isAnnotationPresent(Class<? extends Annotation> annotationType)
- Specified by:
isAnnotationPresentin interfaceAnnotated
-
getJavaClass
public Class<X> getJavaClass()
- Specified by:
getJavaClassin interfaceAnnotatedType<X>
-
getConstructors
public Set<AnnotatedConstructor<X>> getConstructors()
- Specified by:
getConstructorsin interfaceAnnotatedType<X>
-
getMethods
public Set<AnnotatedMethod<? super X>> getMethods()
- Specified by:
getMethodsin interfaceAnnotatedType<X>
-
getFields
public Set<AnnotatedField<? super X>> getFields()
- Specified by:
getFieldsin interfaceAnnotatedType<X>
-
-