Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVincent Lorenzo2017-01-28 14:11:00 +0000
committervincent lorenzo2017-01-30 14:37:12 +0000
commit9dc8d494032c5b8476011068ed86b49acbfc657a (patch)
tree1bb2ecfdce036479f4bf0ac2a7d86aa7db6c5b6d /extraplugins/migration/rhapsody/org.eclipse.papyrus.migration.rhapsody/transform/SysML11InternalBlockDiagram.qvto
parent3e90003e595227eb377ea86ed6ffa239b97d9fef (diff)
downloadorg.eclipse.papyrus-9dc8d494032c5b8476011068ed86b49acbfc657a.tar.gz
org.eclipse.papyrus-9dc8d494032c5b8476011068ed86b49acbfc657a.tar.xz
org.eclipse.papyrus-9dc8d494032c5b8476011068ed86b49acbfc657a.zip
Bug 511292 :[Importer][Rhapsody] UML Actor is not supported to type properties used Association member ends
- rename the mapping method toUMLInterface into iClassToUMLInterface and toUMLClass into iClassToUMLClass - change there signature from umlrhapsody::IClass to ecore::EObject - move them from toUMLElement to generalMappingToUMLElement - remove the mapping toUMLElement Change-Id: Id2439556a481a7d0b1ea4b853ad9dc5a9d7aa185 Signed-off-by: Vincent Lorenzo <vincent.lorenzo@cea.fr>
Diffstat (limited to 'extraplugins/migration/rhapsody/org.eclipse.papyrus.migration.rhapsody/transform/SysML11InternalBlockDiagram.qvto')
-rw-r--r--extraplugins/migration/rhapsody/org.eclipse.papyrus.migration.rhapsody/transform/SysML11InternalBlockDiagram.qvto2
1 files changed, 1 insertions, 1 deletions
diff --git a/extraplugins/migration/rhapsody/org.eclipse.papyrus.migration.rhapsody/transform/SysML11InternalBlockDiagram.qvto b/extraplugins/migration/rhapsody/org.eclipse.papyrus.migration.rhapsody/transform/SysML11InternalBlockDiagram.qvto
index a9f668d4b85..04b57ba3cce 100644
--- a/extraplugins/migration/rhapsody/org.eclipse.papyrus.migration.rhapsody/transform/SysML11InternalBlockDiagram.qvto
+++ b/extraplugins/migration/rhapsody/org.eclipse.papyrus.migration.rhapsody/transform/SysML11InternalBlockDiagram.qvto
@@ -51,7 +51,7 @@ mapping rhapsodymetamodel::IDiagram::iDiagramToSysML11InternalBlockDiagram(rpyPr
var owner:EObject;
var iDiagramOwner:ecore::EObject:=self[EObject].eContainer()![EObject];
if(iDiagramOwner.oclIsKindOf(umlrhapsody::IClass)){
- owner:= iDiagramOwner.resolveIn(umlrhapsody::IClass::toUMLElement, uml::Element)![EObject];
+ owner:= iDiagramOwner.resolveIn(ecore::EObject::generalMappingToUMLElement, uml::Element)![EObject];
};
result:=self.map createAndInitDiagram(rpyProject,getPapyrusDiagramType(), owner, owner);
}

Back to the top