Index: java/net/JarURLConnection.java =================================================================== RCS file: /cvsroot/classpath/classpath/java/net/JarURLConnection.java,v retrieving revision 1.19 diff -u -r1.19 JarURLConnection.java --- java/net/JarURLConnection.java 8 Apr 2004 17:25:02 -0000 1.19 +++ java/net/JarURLConnection.java 17 Apr 2004 18:40:29 -0000 @@ -50,7 +50,7 @@ * of jar URL's. A jar URL is a special type of URL that allows JAR * files on remote systems to be accessed. It has the form: *

- * jar:!/file/within/jarfile + * jar:<standard URL pointing to jar filei>!/file/within/jarfile *

for example: *

* jar:http://www.urbanophile.com/java/foo.jar!/com/urbanophile/bar.class Index: java/net/NetPermission.java =================================================================== RCS file: /cvsroot/classpath/classpath/java/net/NetPermission.java,v retrieving revision 1.10 diff -u -r1.10 NetPermission.java --- java/net/NetPermission.java 8 Apr 2004 16:26:04 -0000 1.10 +++ java/net/NetPermission.java 17 Apr 2004 18:40:29 -0000 @@ -51,11 +51,11 @@ *

* * @author Aaron M. Renn (address@hidden) Index: java/net/SocketPermission.java =================================================================== RCS file: /cvsroot/classpath/classpath/java/net/SocketPermission.java,v retrieving revision 1.13 diff -u -r1.13 SocketPermission.java --- java/net/SocketPermission.java 12 Apr 2004 11:09:20 -0000 1.13 +++ java/net/SocketPermission.java 17 Apr 2004 18:40:30 -0000 @@ -65,18 +65,20 @@ * value for a port (respectively) is used by default. Here are some * examples: *

* The permission list is a comma separated list of individual permissions. * These individual permissions are: *

- * accept
- * connect
- * listen
- * resolve
+ *

+ * accept
+ * connect
+ * listen
+ * resolve
+ * 
*

* The "listen" permission is only relevant if the host is localhost. If * any permission at all is specified, then resolve permission is implied to @@ -232,20 +234,22 @@ /** * Returns true if the permission object passed it is implied by the - * this permission. This will be true if - *