net.sourceforge.saxadapter.examples.env
Class EnvPropertyTagHandler

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

class EnvPropertyTagHandler
extends java.lang.Object
implements SAXTagHandler

This handler collects the stored values for name, value, and type and calls the setProperty() method on EnvironmentImpl


Field Summary
(package private)  EnvironmentImpl m_env
           
 
Constructor Summary
(package private) EnvPropertyTagHandler(EnvironmentImpl argEnv)
           
 
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
 

Field Detail

m_env

EnvironmentImpl m_env
Constructor Detail

EnvPropertyTagHandler

EnvPropertyTagHandler(EnvironmentImpl argEnv)
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 -