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 di...@apache.org on 2006/04/18 17:50:30 UTC

svn commit: r394973 - in /webservices/axis/trunk/c/include/axis: IAttribute.hpp INamespace.hpp

Author: dicka
Date: Tue Apr 18 08:50:28 2006
New Revision: 394973

URL: http://svn.apache.org/viewcvs?rev=394973&view=rev
Log:
AXISCPP-169  On-going improvements to API documentation

Modified:
    webservices/axis/trunk/c/include/axis/IAttribute.hpp
    webservices/axis/trunk/c/include/axis/INamespace.hpp

Modified: webservices/axis/trunk/c/include/axis/IAttribute.hpp
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/c/include/axis/IAttribute.hpp?rev=394973&r1=394972&r2=394973&view=diff
==============================================================================
--- webservices/axis/trunk/c/include/axis/IAttribute.hpp (original)
+++ webservices/axis/trunk/c/include/axis/IAttribute.hpp Tue Apr 18 08:50:28 2006
@@ -41,6 +41,10 @@
 public:        
 
     virtual ~IAttribute() {};
+    /**
+     * Get the value of this attribute
+     * @return The value of this attribute
+     */
     virtual const AxisChar* getValue() = 0;
     /**
      * Get the URI of this attribute
@@ -60,26 +64,26 @@
 
 	/**
 	 * try to set theattribute with given value
-	 * @param AxisChar* the value to set the value to 
+	 * @param value to set
 	 * @return AXIS_SUCCESS if succeeded, AXIS_FAIL otherwise. NOTE: Passing NULL will result in a AXIS_SUCCESS
 	 */
     virtual int setValue(const AxisChar* value) = 0;
     
 	/**
 	 * try to set the URI
-	 * @param AxisChar* the value to set the URI to 
+	 * @param uri to set
 	 * @return AXIS_SUCCESS if succeeded, AXIS_FAIL otherwise. NOTE: Passing NULL will result in a AXIS_SUCCESS
 	 */
     virtual int setURI(const AxisChar* uri) = 0;
 	/**
 	 * try to set the prefix with given value
-	 * @param AxisChar* the prefix to set to 
+	 * @param prefix to set
 	 * @return AXIS_SUCCESS if succeeded, AXIS_FAIL otherwise. NOTE: Passing NULL will result in a AXIS_SUCCESS
 	 */
     virtual int setPrefix(const AxisChar* prefix) = 0;
 	/**
 	 * try to set the attribute with given value
-	 * @param AxisChar* the value to set the local name to 
+	 * @param localname to be set
 	 * @return AXIS_SUCCESS if succeeded, AXIS_FAIL otherwise. NOTE: Passing NULL will result in a AXIS_SUCCESS
 	 */
     virtual int setLocalName(const AxisChar* localname) = 0;    

Modified: webservices/axis/trunk/c/include/axis/INamespace.hpp
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/c/include/axis/INamespace.hpp?rev=394973&r1=394972&r2=394973&view=diff
==============================================================================
--- webservices/axis/trunk/c/include/axis/INamespace.hpp (original)
+++ webservices/axis/trunk/c/include/axis/INamespace.hpp Tue Apr 18 08:50:28 2006
@@ -58,7 +58,7 @@
     /**
       * Sets the namespace uri of this Namespace.
       *
-      * @param uri The namespace uri to set in.
+      * @param achURI The namespace uri to set in.
       * @return AXIS_SUCCESS if successful AXIS_FAIL otherwise. NOTE: Passing NULL will result in a AXIS_SUCCESS
       * 
       */
@@ -66,7 +66,7 @@
     /**
      * Sets the prefix of this Namespace.
      *
-     * @param prefix The prefix to set in.
+     * @param achPrefix The prefix to set in.
      * @return AXIS_SUCCESS if successful AXIS_FAIL otherwise. NOTE: Passing NULL will result in a AXIS_SUCCESS
      */
 	virtual int setPrefix(const AxisChar* achPrefix)=0;