Author: tfmorris Date: 2011-04-23 12:43:30-0700 New Revision: 19272 Modified: trunk/src/argouml-core-model-euml/src/org/argouml/model/euml/FacadeEUMLImpl.java
Log: Implement getPartitions(). Exposed by issue 6236, but not really related. Modified: trunk/src/argouml-core-model-euml/src/org/argouml/model/euml/FacadeEUMLImpl.java Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-core-model-euml/src/org/argouml/model/euml/FacadeEUMLImpl.java?view=diff&pathrev=19272&r1=19271&r2=19272 ============================================================================== --- trunk/src/argouml-core-model-euml/src/org/argouml/model/euml/FacadeEUMLImpl.java (original) +++ trunk/src/argouml-core-model-euml/src/org/argouml/model/euml/FacadeEUMLImpl.java 2011-04-23 12:43:30-0700 @@ -1207,7 +1207,7 @@ } public Collection getPartitions(Object container) { - throw new NotYetImplementedException(); + return ((Activity) container).getPartitions(); } public Object getPowertype(Object handle) { ------------------------------------------------------ http://argouml.tigris.org/ds/viewMessage.do?dsForumId=5905&dsMessageId=2723464 To unsubscribe from this discussion, e-mail: [[email protected]].
