diff options
Diffstat (limited to 'libjava/java/net/JarURLConnection.java')
-rw-r--r-- | libjava/java/net/JarURLConnection.java | 25 |
1 files changed, 21 insertions, 4 deletions
diff --git a/libjava/java/net/JarURLConnection.java b/libjava/java/net/JarURLConnection.java index c5597d6..8f75622 100644 --- a/libjava/java/net/JarURLConnection.java +++ b/libjava/java/net/JarURLConnection.java @@ -50,7 +50,14 @@ public abstract class JarURLConnection extends URLConnection return element; } - public JarURLConnection(URL url) + /** + * Creates a new JarURLConnection + * + * @exception MalformedURLException If url is invalid + * + * @specnote This constructor is protected since JDK 1.4 + */ + protected JarURLConnection(URL url) throws MalformedURLException { super(url); @@ -153,7 +160,12 @@ public abstract class JarURLConnection extends URLConnection return null; } - public JarEntry getJarEntry () throws java.io.IOException + /** + * Return the JAR entry object for this connection, if any + * + * @exception IOException If an error occurs + */ + public JarEntry getJarEntry () throws IOException { JarFile jarfile = null; @@ -167,7 +179,7 @@ public abstract class JarURLConnection extends URLConnection { jarfile = getJarFile (); } - catch (java.io.IOException x) + catch (IOException x) { /* ignore */ } @@ -197,7 +209,12 @@ public abstract class JarURLConnection extends URLConnection return null; } - public abstract JarFile getJarFile() throws java.io.IOException; + /** + * Return the JAR file for this connection + * + * @exception IOException If an error occurs + */ + public abstract JarFile getJarFile() throws IOException; // Steal and borrow from protocol/file/Connection.java |