Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCéline Janssens2015-06-22 13:18:40 +0000
committerGerrit Code Review @ Eclipse.org2016-04-08 17:12:32 +0000
commit3a9563171c25a86814889c60f39e9144bd892b0b (patch)
tree4d3922b0dbe91f5b8449dc86e6d7af7662598782 /plugins/infra/gmfdiag
parente96c514e2972419fda4e3d3c53bd1fcbf60f7c6a (diff)
downloadorg.eclipse.papyrus-3a9563171c25a86814889c60f39e9144bd892b0b.tar.gz
org.eclipse.papyrus-3a9563171c25a86814889c60f39e9144bd892b0b.tar.xz
org.eclipse.papyrus-3a9563171c25a86814889c60f39e9144bd892b0b.zip
Bug 471348: [Stereotype Display] User-input should always be serialized
https://bugs.eclipse.org/bugs/show_bug.cgi?id=471348 - Visibility and Persistency as compound command Only one command for set and unset visibility depending on default value. - Not taken the default value into acount for setting the persistency of a view when the user set or unset the visibility or the depth into the appearance view. - ShowTitle Value set as CSS in the default behavior - Fix some NPE errors when deleting the StereotypeComment when unapplying all the stereotypes. Change-Id: I33af4cdb912840b50257167f13e2f85fc8c0f3d2 Signed-off-by: Céline Janssens <Celine.Janssens@all4tec.net>
Diffstat (limited to 'plugins/infra/gmfdiag')
-rw-r--r--plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.common/src/org/eclipse/papyrus/infra/gmfdiag/common/commands/SetNodeVisibilityCommand.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.common/src/org/eclipse/papyrus/infra/gmfdiag/common/commands/SetNodeVisibilityCommand.java b/plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.common/src/org/eclipse/papyrus/infra/gmfdiag/common/commands/SetNodeVisibilityCommand.java
index 7cb3c4eb72b..f55666f6ecd 100644
--- a/plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.common/src/org/eclipse/papyrus/infra/gmfdiag/common/commands/SetNodeVisibilityCommand.java
+++ b/plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.common/src/org/eclipse/papyrus/infra/gmfdiag/common/commands/SetNodeVisibilityCommand.java
@@ -26,7 +26,7 @@ public class SetNodeVisibilityCommand extends RecordingCommand {
protected Boolean isVisible;
public SetNodeVisibilityCommand(TransactionalEditingDomain domain, View view, Boolean isVisible) {
- super(domain);
+ super(domain, "Set Node Visibility");
this.view = view;
this.isVisible = isVisible;
}
@@ -42,4 +42,6 @@ public class SetNodeVisibilityCommand extends RecordingCommand {
}
}
}
+
+
}

Back to the top