[jsword-svn] jsword-support/java/limbo/org/crosswire/common/net s

jswordcvs at crosswire.org jswordcvs at crosswire.org
Sat Sep 25 14:27:15 MST 2004


Update of /cvs/jsword/jsword-support/java/limbo/org/crosswire/common/net
In directory www.crosswire.org:/tmp/cvs-serv17852/java/limbo/org/crosswire/common/net

Modified Files:
	Header.java Cookie.java 
Log Message:
javadoc fixes

Index: Header.java
===================================================================
RCS file: /cvs/jsword/jsword-support/java/limbo/org/crosswire/common/net/Header.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** Header.java	8 Aug 2004 11:39:35 -0000	1.2
--- Header.java	25 Sep 2004 21:27:13 -0000	1.3
***************
*** 13,17 ****
      * @param name a string specifying the name of the cookie
      * @param value a string specifying the value of the cookie
-     * @see #setValue
      */
      public Header(String name, String value)
--- 13,16 ----
***************
*** 34,38 ****
      * Returns the value of the header.
      * @return a string containing the header's present value
-     * @see setValue
      */
      public String getValue()
--- 33,36 ----

Index: Cookie.java
===================================================================
RCS file: /cvs/jsword/jsword-support/java/limbo/org/crosswire/common/net/Cookie.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** Cookie.java	21 Sep 2004 17:46:49 -0000	1.3
--- Cookie.java	25 Sep 2004 21:27:13 -0000	1.4
***************
*** 2,8 ****
  package org.crosswire.common.net;
  
- import javax.servlet.http.HttpServletRequest;
- import javax.servlet.http.HttpServletResponse;
- 
  import org.crosswire.common.util.StringUtil;
  
--- 2,5 ----
***************
*** 20,25 ****
  *
  * <p>The servlet sends cookies to the browser by using the
! * {@link HttpServletResponse.addCookie} method, which adds
! * fields to HTTP response headers to send cookies to the
  * browser, one at a time. The browser is expected to
  * support 20 cookies for each Web server, of at least 4 KB each.
--- 17,22 ----
  *
  * <p>The servlet sends cookies to the browser by using the
! * {@link javax.servlet.http.HttpServletResponse#addCookie(javax.servlet.http.Cookie)}
! * method, which adds fields to HTTP response headers to send cookies to the
  * browser, one at a time. The browser is expected to
  * support 20 cookies for each Web server, of at least 4 KB each.
***************
*** 27,31 ****
  * <p>The browser returns cookies to the servlet by adding
  * fields to HTTP request headers. You can retrieve all of the cookies
! * in a request by using the {@link HttpServletRequest.getCookies} method.
  * Several cookies might have the same name but different path attributes.
  *
--- 24,29 ----
  * <p>The browser returns cookies to the servlet by adding
  * fields to HTTP request headers. You can retrieve all of the cookies
! * in a request by using the
! * {@link javax.servlet.http.HttpServletRequest#getCookies()} method.
  * Several cookies might have the same name but different path attributes.
  *
***************
*** 301,305 ****
      * @param value a string specifying the new value
      * @see #getValue
-     * @see #Cookie
      */
      public void setValue(String value)
--- 299,302 ----
***************
*** 311,315 ****
      * Returns the value of the cookie.
      * @return a string containing the cookie's present value
-     * @see setValue
      * @see Cookie
      */
--- 308,311 ----



More information about the jsword-svn mailing list