remm 01/02/06 19:20:14
Modified: src/webdav/client/src/org/apache/webdav/lib Cookie.java
src/webdav/client/src/org/apache/webdav/lib/util
MIME2Java.java
Log:
- Fix some Javadoc warnings.
Revision Changes Path
1.3 +9 -9
jakarta-slide/src/webdav/client/src/org/apache/webdav/lib/Cookie.java
Index: Cookie.java
===================================================================
RCS file:
/home/cvs/jakarta-slide/src/webdav/client/src/org/apache/webdav/lib/Cookie.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- Cookie.java 2000/12/21 04:22:08 1.2
+++ Cookie.java 2001/02/07 03:20:14 1.3
@@ -1,7 +1,7 @@
/*
- * $Header:
/home/cvs/jakarta-slide/src/webdav/client/src/org/apache/webdav/lib/Cookie.java,v 1.2
2000/12/21 04:22:08 bcholmes Exp $
- * $Revision: 1.2 $
- * $Date: 2000/12/21 04:22:08 $
+ * $Header:
/home/cvs/jakarta-slide/src/webdav/client/src/org/apache/webdav/lib/Cookie.java,v 1.3
2001/02/07 03:20:14 remm Exp $
+ * $Revision: 1.3 $
+ * $Date: 2001/02/07 03:20:14 $
*
* ====================================================================
*
@@ -116,7 +116,7 @@
* Returns the comment describing the purpose of this cookie, or
* null if no such comment has been defined.
*
- * @see setComment
+ * @see #setComment(String)
*/
public String getComment() {
return m_comment;
@@ -126,7 +126,7 @@
* If a user agent (web browser) presents this cookie to a user, the
* cookie's purpose will be described using this comment.
*
- * @see getComment
+ * @see #getComment()
*/
public void setComment(String comment) {
m_comment = comment;
@@ -156,7 +156,7 @@
/**
* Returns the domain of this cookie.
*
- * @see setDomain
+ * @see #setDomain(String)
*/
public String getDomain() {
return m_domain;
@@ -170,9 +170,9 @@
* should see the cookie. By default, cookies are only returned to
* the host which saved them.
*
- * @see getDomain
+ * @see #getDomain()
*/
- public void setDomain (String domain) {
+ public void setDomain(String domain) {
m_domain = domain.toLowerCase();
}
@@ -207,7 +207,7 @@
* the cookie's originating server used a secure protocol to set the
* cookie's value.
*
- * @see getSecure
+ * @see #getSecure()
*/
public void setSecure (boolean secure) {
m_secure = secure;
1.2 +0 -1
jakarta-slide/src/webdav/client/src/org/apache/webdav/lib/util/MIME2Java.java
Index: MIME2Java.java
===================================================================
RCS file:
/home/cvs/jakarta-slide/src/webdav/client/src/org/apache/webdav/lib/util/MIME2Java.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- MIME2Java.java 2000/11/22 06:19:11 1.1
+++ MIME2Java.java 2001/02/07 03:20:14 1.2
@@ -506,7 +506,6 @@
* </TR>
* </TABLE>
*
- * @version
* @author TAMURA Kent <[EMAIL PROTECTED]>
*/
public class MIME2Java {