Package com.sun.xml.bind.unmarshaller
Interface Patcher
-
public interface Patcher
Runs by UnmarshallingContext after all the parsing is done. Primarily used to resolve forward IDREFs, but it can run any action.- Author:
- Kohsuke Kawaguchi
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
run()
Runs an post-action.
-
-
-
Method Detail
-
run
void run() throws org.xml.sax.SAXException
Runs an post-action.- Throws:
org.xml.sax.SAXException
- if an error is found during the action, it should be reporeted to the context. The context may then throw aSAXException
to abort the processing, and that's when you can throw aSAXException
.
-
-