You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by sa...@apache.org on 2005/11/22 12:49:12 UTC

svn commit: r348153 - in /webservices/axis2/trunk/c/modules/xml/parser: axis2_pull_parser.h axis2_xml_writer.h

Author: samisa
Date: Tue Nov 22 03:49:01 2005
New Revision: 348153

URL: http://svn.apache.org/viewcvs?rev=348153&view=rev
Log: (empty)

Modified:
    webservices/axis2/trunk/c/modules/xml/parser/axis2_pull_parser.h
    webservices/axis2/trunk/c/modules/xml/parser/axis2_xml_writer.h

Modified: webservices/axis2/trunk/c/modules/xml/parser/axis2_pull_parser.h
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/xml/parser/axis2_pull_parser.h?rev=348153&r1=348152&r2=348153&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/xml/parser/axis2_pull_parser.h (original)
+++ webservices/axis2/trunk/c/modules/xml/parser/axis2_pull_parser.h Tue Nov 22 03:49:01 2005
@@ -63,8 +63,8 @@
 AXIS2_DECLARE_DATA struct axis2_pull_parser_ops
     {
         /**
-         * moves the position of the parser to next 
-         * xml node in the stream
+         * causes the reader to read the next parse event. 
+         * returns the event just read
          * @param parser axis2_pull_parser struct 
          * @param env    axis2_environment, MUST NOT be NULL
          * @returns one of the events defined in 
@@ -304,7 +304,8 @@
 
 /** Macros corresponding to above declared function pointers */
 
-/** pull parser next */
+/** causes the reader to read the next parse event.
+ returns an integer which identifies the type of event just read. */
 #define AXIS2_PULL_PARSER_NEXT(parser, env) \
         ((parser)->ops->next(parser, env))
 /** Free pull parser struct */

Modified: webservices/axis2/trunk/c/modules/xml/parser/axis2_xml_writer.h
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/xml/parser/axis2_xml_writer.h?rev=348153&r1=348152&r2=348153&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/xml/parser/axis2_xml_writer.h (original)
+++ webservices/axis2/trunk/c/modules/xml/parser/axis2_xml_writer.h Tue Nov 22 03:49:01 2005
@@ -51,15 +51,18 @@
     {
        /**
         * Free xml writer
-        * @param writer pointer to xml_writer struct
-        * @returns status code 
+        * @param writer pointer to xml_writer struct to be freed
+        * @param env environment, MUST NOT be NULL.
+        * @returns status of the operation. 
         *       AXIS2_SUCCESS on success and AXIS2_FAILURE on error
         */
         
         axis2_status_t (AXIS2_CALL *free)(axis2_xml_writer_t *writer,
                                           axis2_env_t **env);
        /**
-        *   Write start part of xml element
+        *  Write the localname of an xml element
+        * 
+        *   
         */
         axis2_status_t (AXIS2_CALL *write_start_element)(
                                     axis2_xml_writer_t *writer,