|
Préférences
Moteurs de recherche
|
||||||||||||
JavaTM 2 Platform Std. Ed. v1.6.0
javax.xml.bind
|
Constructor Summary | |
---|---|
Unmarshaller.Listener()
|
Method Summary | |
---|---|
void |
afterUnmarshal(Object target,
Object parent)
Callback method invoked after unmarshalling XML data into target. |
void |
beforeUnmarshal(Object target,
Object parent)
Callback method invoked before unmarshalling into target. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public Unmarshaller.Listener()
Method Detail |
---|
public void beforeUnmarshal(Object target, Object parent)
target
- non-null instance of JAXB mapped class prior to unmarshalling into it.parent
- instance of JAXB mapped class that will eventually reference target.
null when target is root element.public void afterUnmarshal(Object target, Object parent)
target
- non-null instance of JAXB mapped class prior to unmarshalling into it.parent
- instance of JAXB mapped class that will reference target.
null when target is root element.