Author: pini
Date: Thu Aug 3 04:08:08 2006
New Revision: 428332
URL: http://svn.apache.org/viewvc?rev=428332&view=rev
Log:
Updated doxygen comments to clean doc structure
Modified:
webservices/axis2/trunk/c/include/axis2_phases_info.h
webservices/axis2/trunk/c/modules/core/deployment/phases_info.c
Modified: webservices/axis2/trunk/c/include/axis2_phases_info.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/include/axis2_phases_info.h?rev=428332&r1=428331&r2=428332&view=diff
==============================================================================
--- webservices/axis2/trunk/c/include/axis2_phases_info.h (original)
+++ webservices/axis2/trunk/c/include/axis2_phases_info.h Thu Aug 3 04:08:08 2006
@@ -118,7 +118,7 @@
*/
axis2_array_list_t *(AXIS2_CALL *
get_in_phases)(
- axis2_phases_info_t *phases_info,
+ const axis2_phases_info_t *phases_info,
const axis2_env_t *env);
/**
@@ -127,7 +127,7 @@
*/
axis2_array_list_t *(AXIS2_CALL *
get_out_phases)(
- axis2_phases_info_t *phases_info,
+ const axis2_phases_info_t *phases_info,
const axis2_env_t *env);
/**
@@ -136,7 +136,7 @@
*/
axis2_array_list_t *(AXIS2_CALL *
get_in_faultphases)(
- axis2_phases_info_t *phases_info,
+ const axis2_phases_info_t *phases_info,
const axis2_env_t *env);
/**
@@ -145,7 +145,7 @@
*/
axis2_array_list_t *(AXIS2_CALL *
get_out_faultphases)(
- axis2_phases_info_t *phases_info,
+ const axis2_phases_info_t *phases_info,
const axis2_env_t *env);
/**
@@ -154,7 +154,7 @@
*/
axis2_array_list_t *(AXIS2_CALL *
get_op_in_phases)(
- axis2_phases_info_t *phases_info,
+ const axis2_phases_info_t *phases_info,
const axis2_env_t *env);
/**
@@ -163,7 +163,7 @@
*/
axis2_array_list_t *(AXIS2_CALL *
get_op_out_phases)(
- axis2_phases_info_t *phases_info,
+ const axis2_phases_info_t *phases_info,
const axis2_env_t *env);
/**
@@ -172,7 +172,7 @@
*/
axis2_array_list_t *(AXIS2_CALL *
get_op_in_faultphases)(
- axis2_phases_info_t *phases_info,
+ const axis2_phases_info_t *phases_info,
const axis2_env_t *env);
/**
@@ -181,7 +181,7 @@
*/
axis2_array_list_t *(AXIS2_CALL *
get_op_out_faultphases)(
- axis2_phases_info_t *phases_info,
+ const axis2_phases_info_t *phases_info,
const axis2_env_t *env);
/**
@@ -212,8 +212,8 @@
* @return pointer to newly created phases info
*/
AXIS2_EXTERN axis2_phases_info_t * AXIS2_CALL
- axis2_phases_info_create (
- const axis2_env_t *env);
+ axis2_phases_info_create (
+ const axis2_env_t *env);
/**************************** Start of function macros ************************/
Modified: webservices/axis2/trunk/c/modules/core/deployment/phases_info.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/deployment/phases_info.c?rev=428332&r1=428331&r2=428332&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/deployment/phases_info.c (original)
+++ webservices/axis2/trunk/c/modules/core/deployment/phases_info.c Thu Aug 3 04:08:08 2006
@@ -60,35 +60,35 @@
axis2_array_list_t * out_faultphases);
axis2_array_list_t *AXIS2_CALL
-axis2_phases_info_get_in_phases(axis2_phases_info_t *phases_info,
+axis2_phases_info_get_in_phases(const axis2_phases_info_t *phases_info,
const axis2_env_t *env);
axis2_array_list_t *AXIS2_CALL
-axis2_phases_info_get_out_phases(axis2_phases_info_t *phases_info,
+axis2_phases_info_get_out_phases(const axis2_phases_info_t *phases_info,
const axis2_env_t *env);
axis2_array_list_t *AXIS2_CALL
-axis2_phases_info_get_in_faultphases(axis2_phases_info_t *phases_info,
+axis2_phases_info_get_in_faultphases(const axis2_phases_info_t *phases_info,
const axis2_env_t *env);
axis2_array_list_t *AXIS2_CALL
-axis2_phases_info_get_out_faultphases(axis2_phases_info_t *phases_info,
+axis2_phases_info_get_out_faultphases(const axis2_phases_info_t *phases_info,
const axis2_env_t *env);
axis2_array_list_t *AXIS2_CALL
-axis2_phases_info_get_op_in_phases(axis2_phases_info_t *phases_info,
+axis2_phases_info_get_op_in_phases(const axis2_phases_info_t *phases_info,
const axis2_env_t *env);
axis2_array_list_t *AXIS2_CALL
-axis2_phases_info_get_op_out_phases(axis2_phases_info_t *phases_info,
+axis2_phases_info_get_op_out_phases(const axis2_phases_info_t *phases_info,
const axis2_env_t *env);
axis2_array_list_t *AXIS2_CALL
-axis2_phases_info_get_op_in_faultphases(axis2_phases_info_t *phases_info,
+axis2_phases_info_get_op_in_faultphases(const axis2_phases_info_t *phases_info,
const axis2_env_t *env);
axis2_array_list_t *AXIS2_CALL
-axis2_phases_info_get_op_out_faultphases(axis2_phases_info_t *phases_info,
+axis2_phases_info_get_op_out_faultphases(const axis2_phases_info_t *phases_info,
const axis2_env_t *env);
axis2_status_t AXIS2_CALL
@@ -305,7 +305,7 @@
}
axis2_array_list_t *AXIS2_CALL
-axis2_phases_info_get_in_phases(axis2_phases_info_t *phases_info,
+axis2_phases_info_get_in_phases(const axis2_phases_info_t *phases_info,
const axis2_env_t *env)
{
AXIS2_ENV_CHECK(env, NULL);
@@ -314,7 +314,7 @@
}
axis2_array_list_t *AXIS2_CALL
-axis2_phases_info_get_out_phases(axis2_phases_info_t *phases_info,
+axis2_phases_info_get_out_phases(const axis2_phases_info_t *phases_info,
const axis2_env_t *env)
{
AXIS2_ENV_CHECK(env, NULL);
@@ -323,7 +323,7 @@
}
axis2_array_list_t *AXIS2_CALL
-axis2_phases_info_get_in_faultphases(axis2_phases_info_t *phases_info,
+axis2_phases_info_get_in_faultphases(const axis2_phases_info_t *phases_info,
const axis2_env_t *env)
{
AXIS2_ENV_CHECK(env, NULL);
@@ -332,7 +332,7 @@
}
axis2_array_list_t *AXIS2_CALL
-axis2_phases_info_get_out_faultphases(axis2_phases_info_t *phases_info,
+axis2_phases_info_get_out_faultphases(const axis2_phases_info_t *phases_info,
const axis2_env_t *env)
{
AXIS2_ENV_CHECK(env, NULL);
@@ -341,7 +341,7 @@
}
axis2_array_list_t *AXIS2_CALL
-axis2_phases_info_get_op_in_phases(axis2_phases_info_t *phases_info,
+axis2_phases_info_get_op_in_phases(const axis2_phases_info_t *phases_info,
const axis2_env_t *env)
{
axis2_phases_info_impl_t *phases_info_impl = NULL;
@@ -417,7 +417,7 @@
}
axis2_array_list_t *AXIS2_CALL
-axis2_phases_info_get_op_out_phases(axis2_phases_info_t *phases_info,
+axis2_phases_info_get_op_out_phases(const axis2_phases_info_t *phases_info,
const axis2_env_t *env)
{
axis2_phases_info_impl_t *phases_info_impl = NULL;
@@ -520,7 +520,7 @@
}
axis2_array_list_t *AXIS2_CALL
-axis2_phases_info_get_op_in_faultphases(axis2_phases_info_t *phases_info,
+axis2_phases_info_get_op_in_faultphases(const axis2_phases_info_t *phases_info,
const axis2_env_t *env)
{
axis2_phases_info_impl_t *phases_info_impl = NULL;
@@ -580,7 +580,7 @@
}
axis2_array_list_t *AXIS2_CALL
-axis2_phases_info_get_op_out_faultphases(axis2_phases_info_t *phases_info,
+axis2_phases_info_get_op_out_faultphases(const axis2_phases_info_t *phases_info,
const axis2_env_t *env)
{
axis2_phases_info_impl_t *phases_info_impl = NULL;
---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org
|