svn commit: r13591 - trunk/src/model/src/org/argouml/model/XmiReader.java
| Newsgroups | gmane.comp.lang.uml.argouml.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: tfmorris
Date: 2007-09-25 01:08:27-0700
New Revision: 13591
Modified:
trunk/src/model/src/org/argouml/model/XmiReader.java
Log:
Minor Javadoc cleanup
Modified: trunk/src/model/src/org/argouml/model/XmiReader.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/model/src/org/argouml/model/XmiReader.java?view=diff&rev=13591&p1=trunk/src/model/src/org/argouml/model/XmiReader.java&p2=trunk/src/model/src/org/argouml/model/XmiReader.java&r1=13590&r2=13591
==============================================================================
--- trunk/src/model/src/org/argouml/model/XmiReader.java (original)
+++ trunk/src/model/src/org/argouml/model/XmiReader.java 2007-09-25 01:08:27-0700
@@ -24,7 +24,6 @@
package org.argouml.model;
-import java.net.URL;
import java.util.Collection;
import java.util.List;
import java.util.Map;
@@ -119,29 +118,31 @@
* resolve external references with. The list is maintained in a static
* structure shared by all instances.
*
- * @param paths an array of directory paths
+ * @return a List of directory paths
*/
public List<String> getSearchPath();
/**
- * Add a path to the list of paths to be searched when looking for XMI files to
- * resolve external references with. The list is maintained in a static
+ * Add a path to the list of paths to be searched when looking for XMI files
+ * to resolve external references with. The list is maintained in a static
* structure shared by all instances.
* <p>
* TODO: It's desirable to have separate search paths for separate files,
* but more work is required in ArgoUML so that it knows how to maintain
* separate contexts for the profiles and user models.
*
- * @param paths an array of directory paths
+ * @param path
+ * a directory path to add to the search path
*/
public void addSearchPath(String path);
/**
- * Remove a path from the list of paths to be searched when looking for XMI files to
- * resolve external references with. The list is maintained in a static
- * structure shared by all instances.
+ * Remove a path from the list of paths to be searched when looking for XMI
+ * files to resolve external references with. The list is maintained in a
+ * static structure shared by all instances.
*
- * @param paths an array of directory paths
+ * @param path
+ * directory path to remove from search
*/
public void removeSearchPath(String path);
}