Package org.dom4j.jaxb
Interface JAXBObjectModifier
- 
public interface JAXBObjectModifierJAXBObjectHandler implementations can be registered with theJAXBModifierin order to change unmarshalled XML fragments. 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description javax.xml.bind.ElementmodifyObject(javax.xml.bind.Element jaxbElement)Called when theJAXBModifierhas finished parsing the xml path the handler was registered for. 
 - 
 
- 
- 
Method Detail
- 
modifyObject
javax.xml.bind.Element modifyObject(javax.xml.bind.Element jaxbElement) throws ExceptionCalled when theJAXBModifierhas finished parsing the xml path the handler was registered for. The provided object is the unmarshalled representation of the XML fragment. It can be casted to the appropriate implementation class that is generated by the JAXB compiler.
The modified JAXB element that returns from this method will be marshalled by theJAXBModifierand put in the DOM4J tree.- Parameters:
 jaxbElement- the JAXB object to be modified- Returns:
 - the modified JAXB object, or null when it must be removed.
 - Throws:
 Exception- possibly thrown by the implementation.
 
 - 
 
 -