net.sourceforge.saxadapter.examples.commerce
Class OrderHandler

java.lang.Object
  |
  +--net.sourceforge.saxadapter.examples.commerce.OrderHandler
All Implemented Interfaces:
SAXTagHandler

class OrderHandler
extends java.lang.Object
implements SAXTagHandler

This handler creates the order from the constituent parts built up in the other handlers


Constructor Summary
(package private) OrderHandler()
           
 
Method Summary
 void onEndTag(java.lang.String argTagNamespace, java.lang.String argLocalTagName, java.lang.String argQName, java.util.Map argContext, NamespaceContext argNamespaceContext)
          Called by the SAXAdapter when an end tag, for which this callback interface has been registered, has been encountered.
 void onStartTag(java.lang.String argTagNamespace, java.lang.String argLocalTagName, java.lang.String argQName, org.xml.sax.Attributes argAttributes, java.lang.StringBuffer argText, java.util.Map argContext, NamespaceContext argNamespaceContext)
          Called by the SAXAdapter when a start tag, for which this callback interface has been registered, has been encountered.
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

OrderHandler

OrderHandler()
Method Detail

onStartTag

public void onStartTag(java.lang.String argTagNamespace,
                       java.lang.String argLocalTagName,
                       java.lang.String argQName,
                       org.xml.sax.Attributes argAttributes,
                       java.lang.StringBuffer argText,
                       java.util.Map argContext,
                       NamespaceContext argNamespaceContext)
                throws org.xml.sax.SAXException
Description copied from interface: SAXTagHandler
Called by the SAXAdapter when a start tag, for which this callback interface has been registered, has been encountered.
Specified by:
onStartTag in interface SAXTagHandler
Following copied from interface: net.sourceforge.saxadapter.SAXTagHandler
Parameters:
argTagNamespace - namespace URI of tag
argLocalTagName - unqualified tag name
argQName - qualified name of tag
argAttributes - tag attributes
argText - a StringBuffer that contains the text between the start and end tags.
argContext - the Map that represents parsing context. This context must be understood by each handler
argNamespaceContext - an interface that allows the handler to access namespace data associated with the current parsing state
Throws:
org.xml.sax.SAXException -  

onEndTag

public void onEndTag(java.lang.String argTagNamespace,
                     java.lang.String argLocalTagName,
                     java.lang.String argQName,
                     java.util.Map argContext,
                     NamespaceContext argNamespaceContext)
              throws org.xml.sax.SAXException
Description copied from interface: SAXTagHandler
Called by the SAXAdapter when an end tag, for which this callback interface has been registered, has been encountered.
Specified by:
onEndTag in interface SAXTagHandler
Following copied from interface: net.sourceforge.saxadapter.SAXTagHandler
Parameters:
argTagNamespace - namespace URI of tag
argLocalTagName - unqualified tag name
argQName - qualified tag name
argContext - the Map that represents parsing context. This context must be understood by each handler
argNamespaceContext - an interface that allows the handler to access namespace data associated with the current parsing state
Throws:
org.xml.sax.SAXException -