Package com.sun.xml.ws.api.databinding
Interface MetadataReader
-
- All Known Implementing Classes:
ExternalMetadataReader
,ReflectAnnotationReader
public interface MetadataReader
MetadataReader- Author:
- [email protected]
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <A extends Annotation>
AgetAnnotation(Class<A> annType, Class<?> cls)
<A extends Annotation>
AgetAnnotation(Class<A> annType, Method m)
Annotation[]
getAnnotations(Class<?> c)
Annotation[]
getAnnotations(Method m)
Annotation[][]
getParameterAnnotations(Method method)
void
getProperties(Map<String,Object> prop, Class<?> cls)
void
getProperties(Map<String,Object> prop, Method method)
void
getProperties(Map<String,Object> prop, Method method, int pos)
-
-
-
Method Detail
-
getAnnotations
Annotation[] getAnnotations(Method m)
-
getParameterAnnotations
Annotation[][] getParameterAnnotations(Method method)
-
getAnnotation
<A extends Annotation> A getAnnotation(Class<A> annType, Method m)
-
getAnnotation
<A extends Annotation> A getAnnotation(Class<A> annType, Class<?> cls)
-
getAnnotations
Annotation[] getAnnotations(Class<?> c)
-
-