Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'extraplugins/migration/rhapsody/org.eclipse.papyrus.migration.rhapsody/transform/Rhapsody2PapyrusSemanticElements.qvto')
-rw-r--r--extraplugins/migration/rhapsody/org.eclipse.papyrus.migration.rhapsody/transform/Rhapsody2PapyrusSemanticElements.qvto11
1 files changed, 9 insertions, 2 deletions
diff --git a/extraplugins/migration/rhapsody/org.eclipse.papyrus.migration.rhapsody/transform/Rhapsody2PapyrusSemanticElements.qvto b/extraplugins/migration/rhapsody/org.eclipse.papyrus.migration.rhapsody/transform/Rhapsody2PapyrusSemanticElements.qvto
index c762f6dc4f3..94d9ebf7cea 100644
--- a/extraplugins/migration/rhapsody/org.eclipse.papyrus.migration.rhapsody/transform/Rhapsody2PapyrusSemanticElements.qvto
+++ b/extraplugins/migration/rhapsody/org.eclipse.papyrus.migration.rhapsody/transform/Rhapsody2PapyrusSemanticElements.qvto
@@ -1023,7 +1023,11 @@ mapping umlrhapsody::IPrimitiveOperation::toOperations(): uml::Operation
};
ownedParameter+=return_param;
};
- visibility:=getVisibility(self.protection);
+ var desiredVisibility := getVisibility(self.protection);
+ if (desiredVisibility != VisibilityKind::public) { //to avoid green + in UML editor
+ visibility:= desiredVisibility
+ };
+
}
@@ -1052,7 +1056,10 @@ mapping umlrhapsody::IAttribute::iAttributeToUMLElement(): uml::Property when {s
}else{
type := self.typeOf [IType]->any(true).oclAsType(IType).map iTypeToUMLElement().oclAsType(Type);
};
- visibility:=getVisibility(self.protection);
+ var desiredVisibility := getVisibility(self.protection);
+ if (desiredVisibility != VisibilityKind::public) { //to avoid green + in UML editor
+ visibility:= desiredVisibility
+ };
var lower:String;
var upper:String;
//a multiplicity has been defined

Back to the top