dion        02/02/06 21:35:58

  Modified:    latka/src/java/org/apache/commons/latka/xml
                        SuiteHandler.java
  Log:
  no message
  
  Revision  Changes    Path
  1.17      +23 -0     
jakarta-commons/latka/src/java/org/apache/commons/latka/xml/SuiteHandler.java
  
  Index: SuiteHandler.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-commons/latka/src/java/org/apache/commons/latka/xml/SuiteHandler.java,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- SuiteHandler.java 7 Feb 2002 05:11:44 -0000       1.16
  +++ SuiteHandler.java 7 Feb 2002 05:35:58 -0000       1.17
  @@ -79,7 +79,7 @@
    * FIXME: What does this class do?
    * @author Morgan Delagrange
    * @author dIon Gillard
  - * @version $Id: SuiteHandler.java,v 1.16 2002/02/07 05:11:44 dion Exp $
  + * @version $Id: SuiteHandler.java,v 1.17 2002/02/07 05:35:58 dion Exp $
    */
   public class SuiteHandler extends LatkaHandler {
   
  @@ -96,6 +96,18 @@
           _log.debug("suite handler instantiated");
       }
   
  +    /**
  +     * On start of<br />
  +     * suite: store defaultHost and defaultPort attributes as properties <br />
  +     * session: create a session handler and delegate to it <br />
  +     * request: create a new session and a request handler and delegate
  +     *
  +     * @param uri namespace URI if namespace processing is being done
  +     * @param localName The element type name
  +     * @param qName fully qualified element name
  +     * @param atts The specified or defaulted attributes
  +     * @throws SAXException
  +     */
       public void startElement(String uri, String localName, String qName,
                                Attributes atts) throws SAXException{
   
  @@ -134,6 +146,17 @@
           }
       }
   
  +    /**
  +     * fire suiteCompleted to the listener when the suite tag end is reached
  +     * @param namespaceURI - The Namespace URI, or the empty string if the
  +     *      element has no Namespace URI or if Namespace processing is not 
  +     *      being performed
  +     * @param localName - The local name (without prefix), or the empty string
  +     *      if Namespace processing is not being performed
  +     * @param rawName - The qualified XML 1.0 name (with prefix), or the empty
  +     *      string if qualified names are not available
  +     * @throws SAXException when errors occur
  +     */
       public void endElement(String namespaceURI, String localName,
                              String rawName) throws SAXException {
           if (localName.equals("suite")) {
  
  
  

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to