Package com.sun.xml.ws.api.databinding
Interface MetadataReader
-
- All Known Implementing Classes:
ExternalMetadataReader,ReflectAnnotationReader
public interface MetadataReaderMetadataReader- Author:
- shih-chang.chen@oracle.com
-
-
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)voidgetProperties(Map<String,Object> prop, Class<?> cls)voidgetProperties(Map<String,Object> prop, Method method)voidgetProperties(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)
-
-