Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCéline Janssens2017-05-03 14:54:24 +0000
committerptessier2017-05-08 14:58:10 +0000
commitfe0a81c2e06572bdafcb1c17638d9c7b9ac7a1df (patch)
treeecd8434c800c862f803c8779230ee7219ff31846 /plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.common
parent50204ad32b0bb8103c3f999599febdf2cfd4833d (diff)
downloadorg.eclipse.papyrus-fe0a81c2e06572bdafcb1c17638d9c7b9ac7a1df.tar.gz
org.eclipse.papyrus-fe0a81c2e06572bdafcb1c17638d9c7b9ac7a1df.tar.xz
org.eclipse.papyrus-fe0a81c2e06572bdafcb1c17638d9c7b9ac7a1df.zip
Bug 489116: [Sequence Diagram] Update Coregion
- Do not use CoRegion Edit Part and Figure - Use Combined Fragment EditPart and Figure - Add CoRegion Field in the Combined Fragment Figure - Paint Brackets if needed TODO: Delete the CombinedFragment2EditPart from the gmfGen Change-Id: Ibfc206c5b42ab1369a098ae59e35c5916654a9b7 Signed-off-by: Céline Janssens <Celine.Janssens@all4tec.net>
Diffstat (limited to 'plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.common')
-rw-r--r--plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.common/src/org/eclipse/papyrus/uml/diagram/common/editparts/RoundedCompartmentEditPart.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.common/src/org/eclipse/papyrus/uml/diagram/common/editparts/RoundedCompartmentEditPart.java b/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.common/src/org/eclipse/papyrus/uml/diagram/common/editparts/RoundedCompartmentEditPart.java
index 491d87bd54f..c8dbf691bfc 100644
--- a/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.common/src/org/eclipse/papyrus/uml/diagram/common/editparts/RoundedCompartmentEditPart.java
+++ b/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.common/src/org/eclipse/papyrus/uml/diagram/common/editparts/RoundedCompartmentEditPart.java
@@ -72,7 +72,7 @@ public abstract class RoundedCompartmentEditPart extends NamedElementEditPart {
private static final int DEFAULT_SHADOW_WIDTH = 4;
/** The namedStyle Listener */
- private IChangeListener namedStyleListener = new IChangeListener() {
+ protected IChangeListener namedStyleListener = new IChangeListener() {
@Override
public void handleChange(ChangeEvent event) {

Back to the top