X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fnet%2Fpterodactylus%2Fjsite%2Fcore%2FProject.java;h=c601d76fcf996dbfcd7fd83b3763bc992f1f30b6;hb=c63257e8cc0ba1a5aca9364b22171abe7279d479;hp=8bc45dd06703c90d9875a63232053af0bb63abb2;hpb=9ead5c4ce7962b75e632346e51a984bcb1f71eed;p=jSite2.git diff --git a/src/net/pterodactylus/jsite/core/Project.java b/src/net/pterodactylus/jsite/core/Project.java index 8bc45dd..c601d76 100644 --- a/src/net/pterodactylus/jsite/core/Project.java +++ b/src/net/pterodactylus/jsite/core/Project.java @@ -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,17 +122,21 @@ public class Project extends AbstractBean { /** * Sets the internal ID. - * + * * @param id * The internal ID */ void setId(String id) { - this.id = id; + if (id == null) { + this.id = Hex.toHex(IdGenerator.generateId()); + } else { + this.id = id; + } } /** * Returns the name of the project. - * + * * @return The name of the project */ public String getName() { @@ -141,7 +145,7 @@ public class Project extends AbstractBean { /** * Sets the name of the project. - * + * * @param name * The name of the project */ @@ -153,7 +157,7 @@ public class Project extends AbstractBean { /** * Returns the description of the project. - * + * * @return The description of the project */ public String getDescription() { @@ -162,7 +166,7 @@ public class Project extends AbstractBean { /** * Sets the description of the project - * + * * @param description * The description of the project */ @@ -174,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() { @@ -183,7 +187,7 @@ public class Project extends AbstractBean { /** * Sets the public key of the project. - * + * * @param publicKey * The public key of the project */ @@ -195,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() { @@ -204,7 +208,7 @@ public class Project extends AbstractBean { /** * Sets the private key of the project. - * + * * @param privateKey * The private key of the project */ @@ -216,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() { @@ -225,7 +229,7 @@ public class Project extends AbstractBean { /** * Sets the base path of the project. - * + * * @param basePath * The base path of the project */ @@ -237,7 +241,7 @@ public class Project extends AbstractBean { /** * Returns the default file. - * + * * @return The default file */ public String getDefaultFile() { @@ -246,7 +250,7 @@ public class Project extends AbstractBean { /** * Sets the default file. - * + * * @param defaultFile * The default file */ @@ -258,7 +262,7 @@ public class Project extends AbstractBean { /** * Adds a file override for the given file. - * + * * @param projectFile * The file * @param override @@ -270,7 +274,7 @@ public class Project extends AbstractBean { /** * Adds a file override for the given file. - * + * * @param filePath * The file path * @param override @@ -282,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 */ @@ -292,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 */ @@ -302,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 null if the given file does @@ -314,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 null if the given file does @@ -326,7 +330,7 @@ public class Project extends AbstractBean { /** * Returns the list of {@link FileOverride}s. - * + * * @return All file overrides */ public Map getFileOverrides() { @@ -338,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 null if the base * path does not denote an existing directory */ @@ -354,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 null if @@ -380,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() { @@ -389,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 */ @@ -414,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 @@ -436,7 +440,7 @@ public class Project extends AbstractBean { /** * Implementation of a {@link ProjectFile}. - * + * * @author David ‘Bombe’ Roden <bombe@freenetproject.org> */ private static class ProjectFileImpl implements ProjectFile, Comparable { @@ -461,7 +465,7 @@ public class Project extends AbstractBean { /** * Creates a new project fie. - * + * * @param parentProjectFile * The parent of the project file, or null if * the new project file does not have a parent @@ -559,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 null if there is no @@ -591,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