svn commit: r18143 - trunk/src/argouml-core-model-euml/src/org/argouml/model/euml/FacadeEUMLImpl.java
Andreas Rueckert <[email protected]>
| Newsgroups | gmane.comp.lang.uml.argouml.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: andreas
Date: 2010-03-23 07:04:19-0700
New Revision: 18143
Modified:
trunk/src/argouml-core-model-euml/src/org/argouml/model/euml/FacadeEUMLImpl.java
Log:
getSpecifications threw an NotYetImplementedException after fetching implemented interfaces, instead of just returning the
interfaces.
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=18143&r1=18142&r2=18143
==============================================================================
--- 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 2010-03-23 07:04:19-0700
@@ -1261,7 +1261,7 @@
// return ((Property) handle).gets
return Collections.EMPTY_SET;
} else if (handle instanceof org.eclipse.uml2.uml.Class) {
- ((org.eclipse.uml2.uml.Class) handle).getInterfaceRealizations();
+ return ((org.eclipse.uml2.uml.Class) handle).getInterfaceRealizations();
}
throw new NotYetImplementedException();
------------------------------------------------------
http://argouml.tigris.org/ds/viewMessage.do?dsForumId=5905&dsMessageId=2463803
To unsubscribe from this discussion, e-mail: [[email protected]].