Class JavaAnnotationImpl
- java.lang.Object
-
- org.eclipse.persistence.jaxb.javamodel.reflection.JavaAnnotationImpl
-
- All Implemented Interfaces:
JavaAnnotation
public class JavaAnnotationImpl extends java.lang.Object implements JavaAnnotation
INTERNAL:Purpose:A wrapper class for a JDK Annotation. This implementation of the TopLink JAXB 2.0 Java model simply makes reflective calls on the underlying JDK object - in this case the Annotation itself is returned.
Responsibilities:
- Provide access to the underlying JDK Annotation
- See Also:
JavaAnnotation
,Annotation
- Since:
- Oracle TopLink 11.1.1.0.0
-
-
Constructor Summary
Constructors Constructor Description JavaAnnotationImpl(java.lang.annotation.Annotation javaAnnotation)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Map
getComponents()
java.lang.annotation.Annotation
getJavaAnnotation()
java.lang.String
getName()
-
-
-
Method Detail
-
getJavaAnnotation
public java.lang.annotation.Annotation getJavaAnnotation()
-
getComponents
public java.util.Map getComponents()
- Specified by:
getComponents
in interfaceJavaAnnotation
-
getName
public java.lang.String getName()
- Specified by:
getName
in interfaceJavaAnnotation
-
-