| java.lang.Object com.nabhinc.portal.config.impl.runtime.AbstractUnmarshallingEventHandlerImpl
AbstractUnmarshallingEventHandlerImpl | abstract public class AbstractUnmarshallingEventHandlerImpl implements UnmarshallingEventHandler(Code) | | Convenient default implementation of
UnmarshallingEventHandler to minimize code generation.
For historical reasons, sometimes this type is used where
UnmarshallingEventHandler should be used.
Once an exception is in the form of UnmarshalException, we consider
it to be already reported to the client app.
|
Method Summary | |
final protected void | dump() | public void | enterAttribute(String uri, String local, String qname) | public void | enterElement(String uri, String local, String qname, Attributes atts) | protected void | handleGenericException(Exception e) Last resort when something goes terribly wrong within the unmarshaller. | protected void | handleParseConversionException(Exception e) This method is called by the generated derived class
when a datatype parse method throws an exception. | protected void | handleText(String s) | protected void | handleUnexpectedTextException(String text, RuntimeException e) Called when a RuntimeException is thrown during unmarshalling a text. | final protected boolean | isListState() Checks if the current state is marked as a list state. | public void | leaveAttribute(String uri, String local, String qname) | public void | leaveChild(int nextState) | public void | leaveElement(String uri, String local, String qname) | final protected void | revertToParentFromEnterAttribute(String uri, String local, String qname) | final protected void | revertToParentFromEnterElement(String uri, String local, String qname, Attributes atts) | final protected void | revertToParentFromLeaveAttribute(String uri, String local, String qname) | final protected void | revertToParentFromLeaveElement(String uri, String local, String qname) | final protected void | revertToParentFromText(String value) | final protected Object | spawnChildFromEnterAttribute(Class clazz, int memento, String uri, String local, String qname) | final protected Object | spawnChildFromEnterElement(Class clazz, int memento, String uri, String local, String qname, Attributes atts) | final protected Object | spawnChildFromLeaveAttribute(Class clazz, int memento, String uri, String local, String qname) | final protected Object | spawnChildFromLeaveElement(Class clazz, int memento, String uri, String local, String qname) | final protected Object | spawnChildFromText(Class clazz, int memento, String value) | final protected void | spawnHandlerFromEnterAttribute(UnmarshallingEventHandler unm, int memento, String uri, String local, String qname) | final protected void | spawnHandlerFromEnterElement(UnmarshallingEventHandler unm, int memento, String uri, String local, String qname, Attributes atts) | final protected void | spawnHandlerFromFromText(UnmarshallingEventHandler unm, int memento, String value) | final protected void | spawnHandlerFromLeaveAttribute(UnmarshallingEventHandler unm, int memento, String uri, String local, String qname) | final protected void | spawnHandlerFromLeaveElement(UnmarshallingEventHandler unm, int memento, String uri, String local, String qname) | final protected void | spawnHandlerFromText(UnmarshallingEventHandler unm, int memento, String text) | final protected Element | spawnWildcard(int memento, String uri, String local, String qname, Attributes atts) | final public void | text(String text) | final protected void | unexpectedEnterAttribute(String uri, String local, String qname) | final protected void | unexpectedEnterElement(String uri, String local, String qname, Attributes atts) | final protected void | unexpectedLeaveAttribute(String uri, String local, String qname) | final protected void | unexpectedLeaveChild() | final protected void | unexpectedLeaveElement(String uri, String local, String qname) | final protected void | unexpectedText(String str) |
state | public int state(Code) | | Current state of this automaton.
|
dump | final protected void dump()(Code) | | |
handleGenericException | protected void handleGenericException(Exception e) throws SAXException(Code) | | Last resort when something goes terribly wrong within the unmarshaller.
|
handleParseConversionException | protected void handleParseConversionException(Exception e) throws SAXException(Code) | | This method is called by the generated derived class
when a datatype parse method throws an exception.
|
handleUnexpectedTextException | protected void handleUnexpectedTextException(String text, RuntimeException e) throws SAXException(Code) | | Called when a RuntimeException is thrown during unmarshalling a text.
|
isListState | final protected boolean isListState()(Code) | | Checks if the current state is marked as a list state.
|
|
|