net.sourceforge.saxadapter.examples.commerce
Class XCBLResponseWriter.SellerPartyTagHandler

java.lang.Object
  |
  +--net.sourceforge.saxadapter.examples.commerce.XCBLResponseWriter.SellerPartyTagHandler
All Implemented Interfaces:
SAXTagHandler
Enclosing class:
XCBLResponseWriter

class XCBLResponseWriter.SellerPartyTagHandler
extends java.lang.Object
implements SAXTagHandler

This handler writes out the Seller info and then the buffered buyer info so that they are in the correct (but reversed) order in the response


Constructor Summary
(package private) XCBLResponseWriter.SellerPartyTagHandler()
           
 
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

XCBLResponseWriter.SellerPartyTagHandler

XCBLResponseWriter.SellerPartyTagHandler()
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 -