This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
Patch: FYI: classpath mergelet
- From: Tom Tromey <tromey at redhat dot com>
- To: Java Patch List <java-patches at gcc dot gnu dot org>
- Date: 26 Jul 2002 18:55:35 -0600
- Subject: Patch: FYI: classpath mergelet
- Reply-to: tromey at redhat dot com
I'm checking this in.
This copies in a couple Classpath javadoc fixes.
Comment changes only.
Tom
Index: ChangeLog
from Tom Tromey <tromey@redhat.com>
* java/net/Authenticator.java: New version from Classpath.
* java/net/DatagramSocketImpl.java: New version from Classpath.
Index: java/net/Authenticator.java
===================================================================
RCS file: /cvs/gcc/gcc/libjava/java/net/Authenticator.java,v
retrieving revision 1.2
diff -u -r1.2 Authenticator.java
--- java/net/Authenticator.java 22 Jan 2002 22:40:23 -0000 1.2
+++ java/net/Authenticator.java 27 Jul 2002 00:49:27 -0000
@@ -38,10 +38,10 @@
package java.net;
/**
- * Sometimes a network operation (such as hitting a password protected
- * web site) will require authentication information in the form of a
- * username and password. This abstract class provides a model for
- * obtaining that information.
+ * This abstract class provides a model for obtaining authentication
+ * information (in the form of a username and password) required by
+ * some network operations (such as hitting a password protected
+ * web site).
* <p>
* To make use of this feature, a programmer must create a subclass of
* Authenticator that knows how to obtain the necessary info. An example
Index: java/net/DatagramSocketImpl.java
===================================================================
RCS file: /cvs/gcc/gcc/libjava/java/net/DatagramSocketImpl.java,v
retrieving revision 1.8
diff -u -r1.8 DatagramSocketImpl.java
--- java/net/DatagramSocketImpl.java 14 Feb 2002 23:16:06 -0000 1.8
+++ java/net/DatagramSocketImpl.java 27 Jul 2002 00:49:27 -0000
@@ -42,13 +42,14 @@
import java.io.FileDescriptor;
/**
+ * This abstract class models a datagram socket implementation. An
+ * actual implementation class would implement these methods, probably
+ * via redirecting them to native code.
+ * <p>
* Written using on-line Java Platform 1.2 API Specification, as well
* as "The Java Class Libraries", 2nd edition (Addison-Wesley, 1998).
+ * <p>
* Status: Believed complete and correct.
- *
- * <p>This abstract class models a datagram socket implementation. An
- * actual implementation class would implement these methods, probably
- * via redirecting them to native code.
*
* @author Aaron M. Renn (arenn@urbanophile.com)
* @author Warren Levy <warrenl@cygnus.com>