Return-Path: Mailing-List: contact xerces-cvs-help@xml.apache.org; run by ezmlm Delivered-To: mailing list xerces-cvs@xml.apache.org Received: (qmail 95985 invoked from network); 9 Feb 2000 19:48:37 -0000 Received: from taz.hyperreal.org (HELO hyperreal.org) (209.133.83.16) by locus.apache.org with SMTP; 9 Feb 2000 19:48:37 -0000 Received: (qmail 2870 invoked by uid 2016); 9 Feb 2000 19:47:30 -0000 Delivered-To: apcore-xml-xerces-cvs@apache.org Received: (qmail 2830 invoked from network); 9 Feb 2000 19:47:29 -0000 Received: from locus.apache.org (63.211.145.10) by taz.hyperreal.org with SMTP; 9 Feb 2000 19:47:29 -0000 Received: (qmail 95889 invoked by uid 1026); 9 Feb 2000 19:47:27 -0000 Date: 9 Feb 2000 19:47:27 -0000 Message-ID: <20000209194727.95888.qmail@locus.apache.org> From: abagchi@locus.apache.org To: xml-xerces-cvs@apache.org Subject: cvs commit: xml-xerces/c/src/framework XMLDocumentHandler.hpp abagchi 00/02/09 11:47:27 Modified: c/src/framework XMLDocumentHandler.hpp Log: Added docs for startElement Revision Changes Path 1.3 +22 -1 xml-xerces/c/src/framework/XMLDocumentHandler.hpp Index: XMLDocumentHandler.hpp =================================================================== RCS file: /home/cvs/xml-xerces/c/src/framework/XMLDocumentHandler.hpp,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- XMLDocumentHandler.hpp 2000/02/06 07:47:48 1.2 +++ XMLDocumentHandler.hpp 2000/02/09 19:47:27 1.3 @@ -56,6 +56,9 @@ /** * $Log: XMLDocumentHandler.hpp,v $ + * Revision 1.3 2000/02/09 19:47:27 abagchi + * Added docs for startElement + * * Revision 1.2 2000/02/06 07:47:48 rahulj * Year 2K copyright swat. * @@ -168,8 +171,10 @@ * endElement() event, but not necessarily the other way around. For * empty tags, there is only a startElement() call. * - * @param elementName The name of the element whose end tag was just + * @param elementDecl The name of the element whose end tag was just * parsed. + * @param uriId The ID of the URI in the URI pool (only valid if + * name spaces is enabled) * @param isRoot Indicates if this is the root element. */ virtual void endElement @@ -233,6 +238,22 @@ */ virtual void startDocument() = 0; + /** + * This method is called when scanner encounters the start of an element tag. + * All elements must always have a startElement() tag. Empty tags will + * only have the startElement() tag and no endElement() tag. + * + * @param elementDecl The name of the element whose start tag was just + * parsed. + * @param uriId The ID of the URI in the URI pool (only valid if + * name spaces is enabled) + * @param prefixName The string representing the prefix name + * @param attrList List of attributes in the element + * @param attrCount Count of the attributes in the element + * @param isEmpty Indicates if the element is empty + * @param isRoot Indicates if this is the root element. + * + */ virtual void startElement ( const XMLElementDecl& elemDecl