svn commit: r16604 - trunk/src/argouml-app/src/org/argouml/notation/providers/uml/NotationUtilityUml.java
Michiel van der Wulp <[email protected]>
| Newsgroups | gmane.comp.lang.uml.argouml.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: mvw
Date: 2009-01-15 01:48:25-0800
New Revision: 16604
Modified:
trunk/src/argouml-app/src/org/argouml/notation/providers/uml/NotationUtilityUml.java
Log:
Comment and style only.
Modified: trunk/src/argouml-app/src/org/argouml/notation/providers/uml/NotationUtilityUml.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/notation/providers/uml/NotationUtilityUml.java?view=diff&pathrev=16604&r1=16603&r2=16604
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/notation/providers/uml/NotationUtilityUml.java (original)
+++ trunk/src/argouml-app/src/org/argouml/notation/providers/uml/NotationUtilityUml.java 2009-01-15 01:48:25-0800
@@ -1269,7 +1269,7 @@
/**
* @param m the action
- * @return the generated text
+ * @return the generated text (never null)
*/
static String generateAction(Object m) {
Collection c;
@@ -1326,6 +1326,15 @@
return s + " (" + p + ")";
}
+ /**
+ * Generate a textual representation of the given Action or ActionSequence
+ * according the UML standard notation.
+ *
+ * @param a the UML Action or ActionSequence
+ * @return the generated textual representation
+ * of the given action(sequence).
+ * This value is guaranteed NOT null.
+ */
public static String generateActionSequence(Object a) {
if (Model.getFacade().isAActionSequence(a)) {
StringBuffer str = new StringBuffer("");
------------------------------------------------------
http://argouml.tigris.org/ds/viewMessage.do?dsForumId=5905&dsMessageId=1026174
To unsubscribe from this discussion, e-mail: [[email protected]].