Connection.java: Some reformating.
authorMichael Koch <konqueror@gmx.de>
Tue, 2 Dec 2003 14:27:33 +0000 (14:27 +0000)
committerMichael Koch <mkoch@gcc.gnu.org>
Tue, 2 Dec 2003 14:27:33 +0000 (14:27 +0000)
2003-12-02  Michael Koch  <konqueror@gmx.de>

* gnu/java/net/protocol/file/Connection.java:
Some reformating.
(file): Renamed from fileIn.
(getPermission): Moved around.

From-SVN: r74179

libjava/ChangeLog
libjava/gnu/java/net/protocol/file/Connection.java

index 789fa924b241403f7497087da517aa40a4580816..3e9b3d517d2a28a048fd51436efda519e64c74e6 100644 (file)
@@ -1,3 +1,10 @@
+2003-12-02  Michael Koch  <konqueror@gmx.de>
+
+       * gnu/java/net/protocol/file/Connection.java:
+       Some reformating.
+       (file): Renamed from fileIn.
+       (getPermission): Moved around.
+
 2003-12-02  Michael Koch  <konqueror@gmx.de>
 
        * gnu/java/net/protocol/jar/Connection.java
index dddbd309482bbe9f9cba53a2ed809cec6d05a20f..fcae745e1308254b90ae98b1eb10165def9d5ac7 100644 (file)
@@ -74,7 +74,7 @@ public class Connection extends URLConnection
   /**
    * This is a File object for this connection
    */
-  private File fileIn;
+  private File file;
 
   /**
    * InputStream if we are reading from the file
@@ -115,11 +115,12 @@ public class Connection extends URLConnection
       return;
     
     // If not connected, then file needs to be openned.
-    fileIn = new File(getURL().getFile());
+    file = new File (getURL().getFile());
     if (doInput)
-      inputStream = new BufferedInputStream(new FileInputStream(fileIn));
+      inputStream = new BufferedInputStream(new FileInputStream(file));
+    
     if (doOutput)
-      outputStream = new BufferedOutputStream(new FileOutputStream(fileIn));
+      outputStream = new BufferedOutputStream(new FileOutputStream(file));
     
     connected = true;
   }
@@ -134,8 +135,9 @@ public class Connection extends URLConnection
   public InputStream getInputStream()
     throws IOException
   {
-    if (! doInput)
+    if (!doInput)
       throw new ProtocolException("Can't open InputStream if doInput is false");
+    
     if (!connected)
       connect();
     
@@ -152,7 +154,7 @@ public class Connection extends URLConnection
   public OutputStream getOutputStream()
     throws IOException
   {
-    if (! doOutput)
+    if (!doOutput)
       throw new
        ProtocolException("Can't open OutputStream if doOutput is false");
 
@@ -163,6 +165,19 @@ public class Connection extends URLConnection
   }
 
   // Override default method in URLConnection.
+  /**
+   * This method returns a <code>Permission</code> object representing the
+   * permissions required to access this URL.  This method returns a
+   * <code>java.io.FilePermission</code> for the file's path with a read
+   * permission.
+   *
+   * @return A Permission object
+   */
+  public Permission getPermission() throws IOException
+  {
+    return permission;
+  }
+
   public String getHeaderField(String name)
   {
     try
@@ -176,7 +191,6 @@ public class Connection extends URLConnection
     return (String) hdrHash.get(name.toLowerCase());
   }
 
-  // Override default method in URLConnection.
   public Map getHeaderFields()
   {
     try
@@ -190,7 +204,6 @@ public class Connection extends URLConnection
     return hdrHash;
   }
 
-  // Override default method in URLConnection.
   public String getHeaderField(int n)
   {
     try
@@ -207,7 +220,6 @@ public class Connection extends URLConnection
     return null;
   }
 
-  // Override default method in URLConnection.
   public String getHeaderFieldKey(int n)
   {
     try
@@ -259,7 +271,7 @@ public class Connection extends URLConnection
     // to add others later and for consistency, we'll implement it this way.
 
     // Add the only header we know about right now:  Content-length.
-    long len = fileIn.length();
+    long len = file.length();
     String line = "Content-length: " + len;
     hdrVec.addElement(line);
 
@@ -269,18 +281,5 @@ public class Connection extends URLConnection
     String key = getKey(line);
     hdrHash.put(key.toLowerCase(), Long.toString(len));
   }
-  
-  /**
-   * This method returns a <code>Permission</code> object representing the
-   * permissions required to access this URL.  This method returns a
-   * <code>java.io.FilePermission</code> for the file's path with a read
-   * permission.
-   *
-   * @return A Permission object
-   */
-  public Permission getPermission() throws IOException
-  {
-    return permission;
-  }
 
 } // class FileURLConnection