More whitespace fixes.
[jFCPlib.git] / src / net / pterodactylus / fcp / FileEntry.java
index 6d0e8a3..f939d78 100644 (file)
@@ -24,7 +24,7 @@ import java.util.Map;
 
 /**
  * Container class for file entry data.
- * 
+ *
  * @see ClientPutComplexDir#addFileEntry(FileEntry)
  * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
  */
@@ -38,7 +38,7 @@ public abstract class FileEntry {
 
        /**
         * Creates a new file entry with the given name and upload source.
-        * 
+        *
         * @param name
         *            The name of the file
         * @param uploadFrom
@@ -52,7 +52,7 @@ public abstract class FileEntry {
        /**
         * Creates a new file entry for a file that should be transmitted to the
         * node in the payload of the message.
-        * 
+        *
         * @param name
         *            The name of the file
         * @param contentType
@@ -70,7 +70,7 @@ public abstract class FileEntry {
 
        /**
         * Creates a new file entry for a file that should be uploaded from disk.
-        * 
+        *
         * @param name
         *            The name of the file
         * @param filename
@@ -89,7 +89,7 @@ public abstract class FileEntry {
 
        /**
         * Creates a new file entry for a file that redirects to another URI.
-        * 
+        *
         * @param name
         *            The name of the file
         * @param targetURI
@@ -102,7 +102,7 @@ public abstract class FileEntry {
 
        /**
         * Returns the fields for this file entry.
-        * 
+        *
         * @return The fields for this file entry
         */
        abstract Map<String, String> getFields();
@@ -110,7 +110,7 @@ public abstract class FileEntry {
        /**
         * A file entry for a file that should be transmitted in the payload of the
         * {@link ClientPutComplexDir} message.
-        * 
+        *
         * @author David ‘Bombe’ Roden &lt;bombe@freenetproject.org&gt;
         */
        static class DirectFileEntry extends FileEntry {
@@ -126,7 +126,7 @@ public abstract class FileEntry {
 
                /**
                 * Creates a new direct file entry with content type auto-detection.
-                * 
+                *
                 * @param name
                 *            The name of the file
                 * @param length
@@ -140,7 +140,7 @@ public abstract class FileEntry {
 
                /**
                 * Creates a new direct file entry.
-                * 
+                *
                 * @param name
                 *            The name of the file
                 * @param contentType
@@ -175,7 +175,7 @@ public abstract class FileEntry {
 
                /**
                 * Returns the input stream of the file.
-                * 
+                *
                 * @return The input stream of the file
                 */
                InputStream getInputStream() {
@@ -186,7 +186,7 @@ public abstract class FileEntry {
 
        /**
         * A file entry for a file that should be uploaded from the disk.
-        * 
+        *
         * @author David ‘Bombe’ Roden &lt;bombe@freenetproject.org&gt;
         */
        static class DiskFileEntry extends FileEntry {
@@ -202,7 +202,7 @@ public abstract class FileEntry {
 
                /**
                 * Creates a new disk file entry.
-                * 
+                *
                 * @param name
                 *            The name of the file
                 * @param filename
@@ -216,7 +216,7 @@ public abstract class FileEntry {
 
                /**
                 * Creates a new disk file entry.
-                * 
+                *
                 * @param name
                 *            The name of the file
                 * @param filename
@@ -256,7 +256,7 @@ public abstract class FileEntry {
 
        /**
         * A file entry for a file that redirects to another URI.
-        * 
+        *
         * @author David ‘Bombe’ Roden &lt;bombe@freenetproject.org&gt;
         */
        static class RedirectFileEntry extends FileEntry {
@@ -266,7 +266,7 @@ public abstract class FileEntry {
 
                /**
                 * Creates a new redirect file entry.
-                * 
+                *
                 * @param name
                 *            The name of the file
                 * @param targetURI