You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by pi...@apache.org on 2006/08/01 07:42:48 UTC

svn commit: r427451 - in /webservices/axis2/trunk/c: include/axis2_desc.h include/axis2_di_client.h modules/core/description/desc.c

Author: pini
Date: Mon Jul 31 22:42:48 2006
New Revision: 427451

URL: http://svn.apache.org/viewvc?rev=427451&view=rev
Log:
Updated doxygen comments to clean doc structure


Modified:
    webservices/axis2/trunk/c/include/axis2_desc.h
    webservices/axis2/trunk/c/include/axis2_di_client.h
    webservices/axis2/trunk/c/modules/core/description/desc.c

Modified: webservices/axis2/trunk/c/include/axis2_desc.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/include/axis2_desc.h?rev=427451&r1=427450&r2=427451&view=diff
==============================================================================
--- webservices/axis2/trunk/c/include/axis2_desc.h (original)
+++ webservices/axis2/trunk/c/include/axis2_desc.h Mon Jul 31 22:42:48 2006
@@ -87,7 +87,7 @@
 	 */
         axis2_array_list_t *(AXIS2_CALL *
                 get_all_params)(
-                    axis2_desc_t *desc,
+                    const axis2_desc_t *desc,
                     const axis2_env_t *env);
 
 	/**

Modified: webservices/axis2/trunk/c/include/axis2_di_client.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/include/axis2_di_client.h?rev=427451&r1=427450&r2=427451&view=diff
==============================================================================
--- webservices/axis2/trunk/c/include/axis2_di_client.h (original)
+++ webservices/axis2/trunk/c/include/axis2_di_client.h Mon Jul 31 22:42:48 2006
@@ -51,8 +51,9 @@
     struct axis2_diclient_ops
     {
         axis2_status_t (AXIS2_CALL *
-                free)(struct axis2_diclient *diclient,
-                        const axis2_env_t *env);
+                free)(
+                    struct axis2_diclient *diclient,
+                    const axis2_env_t *env);
 
         /**
          * Invoke the operation by passing om node and axis2 operation as 
@@ -64,10 +65,11 @@
 	 * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE
          */
         axis2_status_t (AXIS2_CALL *
-                invoke) (axis2_diclient_t *diclient,
-                        const axis2_env_t *env,
-                        axiom_node_t *node,
-                        struct axis2_op *op);
+                invoke)(
+                    axis2_diclient_t *diclient,
+                    const axis2_env_t *env,
+                    axiom_node_t *node,
+                    struct axis2_op *op);
 
         /**
          * Do the initialization work. Here wsdl parser is created and
@@ -80,9 +82,10 @@
 	 * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE
          */
         axis2_status_t (AXIS2_CALL *
-                init) (axis2_diclient_t *diclient,
-                        const axis2_env_t *env,
-                        axis2_char_t *wsdl_file_name);
+                init)(
+                    axis2_diclient_t *diclient,
+                    const axis2_env_t *env,
+                    axis2_char_t *wsdl_file_name);
 
         /**
          * By passing the operation qualified name and the endpoint qualified
@@ -93,9 +96,10 @@
 	 * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE
          */
         axis2_status_t *(AXIS2_CALL *
-                set_address_and_action_for_op) (axis2_diclient_t *diclient,
-                        const axis2_env_t *env,
-                        axis2_qname_t *op_qname);
+                set_address_and_action_for_op)(
+                    axis2_diclient_t *diclient,
+                    const axis2_env_t *env,
+                    axis2_qname_t *op_qname);
 
 
         /**
@@ -105,8 +109,9 @@
          * @return table of endpoints associated with the wsdl
          */
         axis2_hash_t *(AXIS2_CALL *
-                get_endpoints) (const axis2_diclient_t *diclient,
-                        const axis2_env_t *env);
+                get_endpoints)(
+                    const axis2_diclient_t *diclient,
+                    const axis2_env_t *env);
 
         /**
          * Return all the services associated with the wsdl
@@ -115,8 +120,9 @@
          * @return table of services associated with the wsdl
          */
         axis2_hash_t *(AXIS2_CALL *
-                get_services) (const axis2_diclient_t *diclient,
-                        const axis2_env_t *env);
+                get_services)(
+                    const axis2_diclient_t *diclient,
+                    const axis2_env_t *env);
 
         /**
          * Return the all operations associated with the wsdl
@@ -125,8 +131,9 @@
          * @return table of operations associated with the wsdl
          */
         axis2_hash_t *(AXIS2_CALL *
-                get_operations) (const axis2_diclient_t *diclient,
-                        const axis2_env_t *env);
+                get_operations)(
+                    const axis2_diclient_t *diclient,
+                    const axis2_env_t *env);
 
         /**
          * Return the operation parameter's localname. This method
@@ -138,9 +145,10 @@
          * @return parameter's localname
          */
         axis2_char_t *(AXIS2_CALL *
-                get_param_localname) (const axis2_diclient_t *diclient,
-                        const axis2_env_t *env,
-                        axis2_qname_t *op_qname);
+                get_param_localname)(
+                    const axis2_diclient_t *diclient,
+                    const axis2_env_t *env,
+                    axis2_qname_t *op_qname);
 
         /**
          * Return the operation parameter's namespace. This method
@@ -152,9 +160,10 @@
          * @return parameter's namespace
          */
         axis2_char_t *(AXIS2_CALL *
-                get_param_namespace) (const axis2_diclient_t *diclient,
-                        const axis2_env_t *env,
-                        axis2_qname_t *op_qname);
+                get_param_namespace)(
+                    const axis2_diclient_t *diclient,
+                    const axis2_env_t *env,
+                    axis2_qname_t *op_qname);
 
         /**
          * Return the set of parameters associated with the operation.
@@ -166,9 +175,10 @@
          * @return set of parameters assoicated with the operation
          */
         axis2_hash_t *(AXIS2_CALL *
-                get_params) (const axis2_diclient_t *diclient,
-                        const axis2_env_t *env,
-                        axis2_qname_t *op_qname);
+                get_params)(
+                    const axis2_diclient_t *diclient,
+                    const axis2_env_t *env,
+                    axis2_qname_t *op_qname);
     };
 
     /**

Modified: webservices/axis2/trunk/c/modules/core/description/desc.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/description/desc.c?rev=427451&r1=427450&r2=427451&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/description/desc.c (original)
+++ webservices/axis2/trunk/c/modules/core/description/desc.c Mon Jul 31 22:42:48 2006
@@ -54,7 +54,7 @@
     const axis2_char_t *param_name);
 
 axis2_array_list_t * AXIS2_CALL
-axis2_desc_get_all_params(axis2_desc_t *desc, 
+axis2_desc_get_all_params(const axis2_desc_t *desc, 
     const axis2_env_t *env);
 
 axis2_bool_t AXIS2_CALL 
@@ -218,7 +218,7 @@
 }
 
 axis2_array_list_t * AXIS2_CALL
-axis2_desc_get_all_params(axis2_desc_t *desc, 
+axis2_desc_get_all_params(const axis2_desc_t *desc, 
     const axis2_env_t *env)
 {
     axis2_desc_impl_t *desc_impl = NULL;



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org