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 2005/02/21 14:50:29 UTC

cvs commit: ws-axis/c/include/axis IAttribute.hpp

dicka       2005/02/21 05:50:29

  Modified:    c/include/axis IAttribute.hpp
  Log:
  Improve documentation of IAttribute APIs.
  
  PR: AXISCPP-435
  Submitted by: Adrian Dick
  
  Revision  Changes    Path
  1.8       +16 -0     ws-axis/c/include/axis/IAttribute.hpp
  
  Index: IAttribute.hpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/include/axis/IAttribute.hpp,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- IAttribute.hpp	11 Feb 2005 18:45:33 -0000	1.7
  +++ IAttribute.hpp	21 Feb 2005 13:50:29 -0000	1.8
  @@ -65,9 +65,25 @@
   	 * @return AXIS_SUCCESS if succeeded, AXIS_Fail otherwise. NOTE: Passing NULL will result in a AXIS_FAIL
   	 */
       virtual int setLocalName(const AxisChar* localname) = 0;    
  +    /**
  +     * Get the value of this attribute.
  +     * @return The value of this attribute.
  +     */
       virtual const AxisChar* getValue() = 0;
  +    /**
  +     * Get the URI of this attribute
  +     * @return The URI of this attribute
  +     */
       virtual const AxisChar* getURI() = 0;
  +    /**
  +     * Get the prefix of this attribute
  +     * @return The prefix of this attribute
  +     */
       virtual const AxisChar* getPrefix() = 0;
  +    /**
  +     * Get the local name of this attribute
  +     * @return The local name of this attribute
  +     */
       virtual const AxisChar* getLocalName() = 0;
   };