whitespace fixups
[jSite2.git] / src / net / pterodactylus / jsite / core / Project.java
index 9ddada5..c601d76 100644 (file)
@@ -34,7 +34,7 @@ import net.pterodactylus.util.number.Hex;
 /**
  * Container for project information. A Project is capable of notifying
  * {@link PropertyChangeListener}s if any of the contained properties change.
- * 
+ *
  * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
  */
 public class Project extends AbstractBean {
@@ -99,7 +99,7 @@ public class Project extends AbstractBean {
 
        /**
         * Clones the given project.
-        * 
+        *
         * @param project
         */
        Project(Project project) {
@@ -113,7 +113,7 @@ public class Project extends AbstractBean {
 
        /**
         * Returns the internal ID.
-        * 
+        *
         * @return The internal ID
         */
        String getId() {
@@ -122,7 +122,7 @@ public class Project extends AbstractBean {
 
        /**
         * Sets the internal ID.
-        * 
+        *
         * @param id
         *            The internal ID
         */
@@ -136,7 +136,7 @@ public class Project extends AbstractBean {
 
        /**
         * Returns the name of the project.
-        * 
+        *
         * @return The name of the project
         */
        public String getName() {
@@ -145,7 +145,7 @@ public class Project extends AbstractBean {
 
        /**
         * Sets the name of the project.
-        * 
+        *
         * @param name
         *            The name of the project
         */
@@ -157,7 +157,7 @@ public class Project extends AbstractBean {
 
        /**
         * Returns the description of the project.
-        * 
+        *
         * @return The description of the project
         */
        public String getDescription() {
@@ -166,7 +166,7 @@ public class Project extends AbstractBean {
 
        /**
         * Sets the description of the project
-        * 
+        *
         * @param description
         *            The description of the project
         */
@@ -178,7 +178,7 @@ public class Project extends AbstractBean {
 
        /**
         * Returns the public key of the project.
-        * 
+        *
         * @return The public key of the project
         */
        public String getPublicKey() {
@@ -187,7 +187,7 @@ public class Project extends AbstractBean {
 
        /**
         * Sets the public key of the project.
-        * 
+        *
         * @param publicKey
         *            The public key of the project
         */
@@ -199,7 +199,7 @@ public class Project extends AbstractBean {
 
        /**
         * Returns the private key of the project.
-        * 
+        *
         * @return The private key of the project
         */
        public String getPrivateKey() {
@@ -208,7 +208,7 @@ public class Project extends AbstractBean {
 
        /**
         * Sets the private key of the project.
-        * 
+        *
         * @param privateKey
         *            The private key of the project
         */
@@ -220,7 +220,7 @@ public class Project extends AbstractBean {
 
        /**
         * Returns the base path of the project.
-        * 
+        *
         * @return The base path of the project
         */
        public String getBasePath() {
@@ -229,7 +229,7 @@ public class Project extends AbstractBean {
 
        /**
         * Sets the base path of the project.
-        * 
+        *
         * @param basePath
         *            The base path of the project
         */
@@ -241,7 +241,7 @@ public class Project extends AbstractBean {
 
        /**
         * Returns the default file.
-        * 
+        *
         * @return The default file
         */
        public String getDefaultFile() {
@@ -250,7 +250,7 @@ public class Project extends AbstractBean {
 
        /**
         * Sets the default file.
-        * 
+        *
         * @param defaultFile
         *            The default file
         */
@@ -262,7 +262,7 @@ public class Project extends AbstractBean {
 
        /**
         * Adds a file override for the given file.
-        * 
+        *
         * @param projectFile
         *            The file
         * @param override
@@ -274,7 +274,7 @@ public class Project extends AbstractBean {
 
        /**
         * Adds a file override for the given file.
-        * 
+        *
         * @param filePath
         *            The file path
         * @param override
@@ -286,7 +286,7 @@ public class Project extends AbstractBean {
 
        /**
         * Removes the file override for the given file.
-        * 
+        *
         * @param projectFile
         *            The file for which to remove the override
         */
@@ -296,7 +296,7 @@ public class Project extends AbstractBean {
 
        /**
         * Removes the file override for the given file.
-        * 
+        *
         * @param filePath
         *            The file path for which to remove the override
         */
@@ -306,7 +306,7 @@ public class Project extends AbstractBean {
 
        /**
         * Returns the file override for the given file.
-        * 
+        *
         * @param projectFile
         *            The file for which to get the override
         * @return The file override, or <code>null</code> if the given file does
@@ -318,7 +318,7 @@ public class Project extends AbstractBean {
 
        /**
         * Returns the file override for the given file.
-        * 
+        *
         * @param filePath
         *            The file path for which to get the override
         * @return The file override, or <code>null</code> if the given file does
@@ -330,7 +330,7 @@ public class Project extends AbstractBean {
 
        /**
         * Returns the list of {@link FileOverride}s.
-        * 
+        *
         * @return All file overrides
         */
        public Map<String, FileOverride> getFileOverrides() {
@@ -342,7 +342,7 @@ public class Project extends AbstractBean {
         * base path. From this file it is possible to reach all files in the base
         * path. This method is disk-intensive and may take some time on larger
         * directories!
-        * 
+        *
         * @return The file for the base path, or <code>null</code> if the base
         *         path does not denote an existing directory
         */
@@ -358,7 +358,7 @@ public class Project extends AbstractBean {
 
        /**
         * Returns the file that is specified by its complete path.
-        * 
+        *
         * @param completePath
         *            The complete path of the file
         * @return The project file at the given path, or <code>null</code> if
@@ -384,7 +384,7 @@ public class Project extends AbstractBean {
 
        /**
         * Returns the default node to insert this project to.
-        * 
+        *
         * @return The node to insert this project to
         */
        public Node getNode() {
@@ -393,7 +393,7 @@ public class Project extends AbstractBean {
 
        /**
         * Sets the default node to insert this project to.
-        * 
+        *
         * @param node
         *            The node to insert this project to
         */
@@ -418,7 +418,7 @@ public class Project extends AbstractBean {
        /**
         * Scans the given directory and recreates the file and directory structure
         * in the given project file.
-        * 
+        *
         * @param directory
         *            The directory to scan
         * @param projectFile
@@ -440,7 +440,7 @@ public class Project extends AbstractBean {
 
        /**
         * Implementation of a {@link ProjectFile}.
-        * 
+        *
         * @author David ‘Bombe’ Roden &lt;bombe@freenetproject.org&gt;
         */
        private static class ProjectFileImpl implements ProjectFile, Comparable<ProjectFileImpl> {
@@ -465,7 +465,7 @@ public class Project extends AbstractBean {
 
                /**
                 * Creates a new project fie.
-                * 
+                *
                 * @param parentProjectFile
                 *            The parent of the project file, or <code>null</code> if
                 *            the new project file does not have a parent
@@ -563,7 +563,7 @@ public class Project extends AbstractBean {
                /**
                 * Returns the project file with the given name. The project file has to
                 * be a direct child of this project file.
-                * 
+                *
                 * @param name
                 *            The name of the file to get
                 * @return The project file, or <code>null</code> if there is no
@@ -595,7 +595,7 @@ public class Project extends AbstractBean {
 
                /**
                 * Adds a new project file as child to this project file.
-                * 
+                *
                 * @param name
                 *            The name of the file
                 * @param size