public interface XMLUnmarshalListener
An implementation of XMLUnmarshalListener can be set on an XMLUnmarshaller to provide additional behaviour during unmarshal operations.
| Modifier and Type | Method and Description |
|---|---|
void |
afterUnmarshal(Object target,
Object parent)
Event that will be called after objects are unmarshalled.
|
void |
beforeUnmarshal(Object target,
Object parent)
Event that will be called before objects are unmarshalled.
|
void beforeUnmarshal(Object target, Object parent)
target - A newly created instance of the object to be unmarshalled.parent - the owning object of the object that will be unmarshalled. This may be null.