Package org.eclipse.persistence.jaxb
Class JAXBIntrospector
- java.lang.Object
-
- javax.xml.bind.JAXBIntrospector
-
- org.eclipse.persistence.jaxb.JAXBIntrospector
-
public class JAXBIntrospector extends javax.xml.bind.JAXBIntrospector
INTERNALPurpose:Provide a TopLink implementation of JAXBIntrospector
Responsibilities:
- Determine if a an object has an associated Global Element
- Get an element QName for an object that has an associated global element
This class is the TopLink implementation of JAXBIntrospector. An Introspector is created by a JAXBContext and allows the user to access certain pieces of meta-data about an instance of a JAXB bound class.
- Since:
- Oracle TopLink 11.1.1.0.0
- Author:
- mmacivor
- See Also:
JAXBIntrospector
,JAXBContext
-
-
Constructor Summary
Constructors Constructor Description JAXBIntrospector(XMLContext context)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description QName
getElementName(Object obj)
boolean
isElement(Object obj)
-
Methods inherited from class javax.xml.bind.JAXBIntrospector
getValue
-
-
-
-
Constructor Detail
-
JAXBIntrospector
public JAXBIntrospector(XMLContext context)
-
-
Method Detail
-
isElement
public boolean isElement(Object obj)
- Specified by:
isElement
in classjavax.xml.bind.JAXBIntrospector
-
getElementName
public QName getElementName(Object obj)
- Specified by:
getElementName
in classjavax.xml.bind.JAXBIntrospector
-
-