/** The name of the project. */
private String name;
+ /** The description of the project. */
+ private String description;
+
/** The local path of the project. */
private String localPath;
}
/**
+ * Returns the description of the project.
+ *
+ * @return The description of the project
+ */
+ String getDescription() {
+ return description;
+ }
+
+ /**
+ * Sets the description of the project
+ *
+ * @param description
+ * The description of the project
+ */
+ void setDescription(String description) {
+ this.description = description;
+ }
+
+ /**
* Returns the local path of the project.
*
* @return The local path of the project