You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by su...@apache.org on 2002/09/07 18:45:48 UTC

cvs commit: jakarta-commons/httpclient/src/java/org/apache/commons/httpclient NameValuePair.java

sullis      2002/09/07 09:45:48

  Modified:    httpclient/src/java/org/apache/commons/httpclient
                        NameValuePair.java
  Log:
  enhanced javadocs
  
  Revision  Changes    Path
  1.9       +21 -4     jakarta-commons/httpclient/src/java/org/apache/commons/httpclient/NameValuePair.java
  
  Index: NameValuePair.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/httpclient/src/java/org/apache/commons/httpclient/NameValuePair.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- NameValuePair.java	28 Jul 2002 18:08:57 -0000	1.8
  +++ NameValuePair.java	7 Sep 2002 16:45:48 -0000	1.9
  @@ -66,8 +66,12 @@
   
   /**
    * <p>A simple class encapsulating a name/value pair.</p>
  + * 
    * @author <a href="mailto:bcholmes@interlog.com">B.C. Holmes</a>
  + * @author Sean C. Sullivan
  + * 
    * @version $Revision$ $Date$
  + * 
    */
   public class NameValuePair implements Serializable {
   
  @@ -75,6 +79,7 @@
   
       /**
        * Default constructor.
  +     * 
        */
       public NameValuePair() {
           this(null,null);
  @@ -108,6 +113,9 @@
        * Name property setter.
        *
        * @param name
  +     * 
  +     * @see #getName()
  +     * 
        */
       public void setName(String name) {
           this.name = name;
  @@ -118,6 +126,9 @@
        * Name property getter.
        *
        * @return String name
  +     * 
  +     * @see #setName(String)
  +     * 
        */
       public String getName() {
           return name;
  @@ -128,6 +139,9 @@
        * Value property setter.
        *
        * @param value
  +     * 
  +     * @see #getValue()
  +     * 
        */
       public void setValue(String value) {
           this.value = value;
  @@ -138,6 +152,9 @@
        * Value property getter.
        *
        * @return String value
  +     * 
  +     * @see #setValue(String)
  +     * 
        */
       public String getValue() {
           return value;
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>