svn commit: r13117 - trunk/src_new/org/argouml/kernel
| Newsgroups | gmane.comp.lang.uml.argouml.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: mvw
Date: 2007-07-23 12:05:40-0700
New Revision: 13117
Modified:
trunk/src_new/org/argouml/kernel/ProjectFactory.java
trunk/src_new/org/argouml/kernel/ProjectManager.java
Log:
Comments only.
Modified: trunk/src_new/org/argouml/kernel/ProjectFactory.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src_new/org/argouml/kernel/ProjectFactory.java?view=diff&rev=13117&p1=trunk/src_new/org/argouml/kernel/ProjectFactory.java&p2=trunk/src_new/org/argouml/kernel/ProjectFactory.java&r1=13116&r2=13117
==============================================================================
--- trunk/src_new/org/argouml/kernel/ProjectFactory.java (original)
+++ trunk/src_new/org/argouml/kernel/ProjectFactory.java 2007-07-23 12:05:40-0700
@@ -49,7 +49,7 @@
/**
* Create a new empty project.
*
- * @return a new initialised project
+ * @return a new NOT initialised project
*/
public Project createProject() {
return new ProjectImpl();
Modified: trunk/src_new/org/argouml/kernel/ProjectManager.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src_new/org/argouml/kernel/ProjectManager.java?view=diff&rev=13117&p1=trunk/src_new/org/argouml/kernel/ProjectManager.java&p2=trunk/src_new/org/argouml/kernel/ProjectManager.java&r1=13116&r2=13117
==============================================================================
--- trunk/src_new/org/argouml/kernel/ProjectManager.java (original)
+++ trunk/src_new/org/argouml/kernel/ProjectManager.java 2007-07-23 12:05:40-0700
@@ -47,14 +47,18 @@
import org.tigris.gef.undo.UndoManager;
/**
- * This class manages the projects loaded in argouml. <p>
+ * This class manages the projects loaded in argouml,
+ * and what the current project is. <p>
*
* Classes in ArgoUML can ask this class for the current
* project and set the current project. Since we only have one
* project in ArgoUML at the moment, this class does not manage a list
* of projects like one would expect. This could be a nice extension
* for the future of ArgoUML. As soon as the current project is
- * changed, a property changed event is fired.
+ * changed, a property changed event is fired. <p>
+ *
+ * TODO: Move everything related to the creation of a project
+ * into the ProjectFactory.
*
* @since Nov 17, 2002
* @author [email protected]