Author: bobtarling Date: 2010-07-14 08:06:46-0700 New Revision: 18514 Modified: trunk/src/argouml-core-model-euml/src/org/argouml/model/euml/ActivityGraphsFactoryEUMLlImpl.java
Log: Some slight changes to javadoc Modified: trunk/src/argouml-core-model-euml/src/org/argouml/model/euml/ActivityGraphsFactoryEUMLlImpl.java Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-core-model-euml/src/org/argouml/model/euml/ActivityGraphsFactoryEUMLlImpl.java?view=diff&pathrev=18514&r1=18513&r2=18514 ============================================================================== --- trunk/src/argouml-core-model-euml/src/org/argouml/model/euml/ActivityGraphsFactoryEUMLlImpl.java (original) +++ trunk/src/argouml-core-model-euml/src/org/argouml/model/euml/ActivityGraphsFactoryEUMLlImpl.java 2010-07-14 08:06:46-0700 @@ -43,6 +43,14 @@ modelImpl = implementation; } + /** + * ActivityGraph is a UML1.x element that has been dropped in UML2. + * For convenience and prevent changes to interfaces this is currently + * being used to build an Activity for UML2 + * @param theContext the package the activity is to be contained inside + * @return the Activity created + * @see org.argouml.model.ActivityGraphsFactory#buildActivityGraph(java.lang.Object) + */ public Object buildActivityGraph(final Object theContext) { if (!(theContext instanceof org.eclipse.uml2.uml.Package)) { throw new IllegalArgumentException("Didn't expect a " + theContext); ------------------------------------------------------ http://argouml.tigris.org/ds/viewMessage.do?dsForumId=5905&dsMessageId=2633162 To unsubscribe from this discussion, e-mail: [[email protected]].
