Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/infra/nattable/org.eclipse.papyrus.infra.nattable/src/org/eclipse/papyrus/infra/nattable/applynamedstyle/PapyrusApplyNamedStyleCommand.java')
-rw-r--r--plugins/infra/nattable/org.eclipse.papyrus.infra.nattable/src/org/eclipse/papyrus/infra/nattable/applynamedstyle/PapyrusApplyNamedStyleCommand.java69
1 files changed, 69 insertions, 0 deletions
diff --git a/plugins/infra/nattable/org.eclipse.papyrus.infra.nattable/src/org/eclipse/papyrus/infra/nattable/applynamedstyle/PapyrusApplyNamedStyleCommand.java b/plugins/infra/nattable/org.eclipse.papyrus.infra.nattable/src/org/eclipse/papyrus/infra/nattable/applynamedstyle/PapyrusApplyNamedStyleCommand.java
new file mode 100644
index 00000000000..3e646a37038
--- /dev/null
+++ b/plugins/infra/nattable/org.eclipse.papyrus.infra.nattable/src/org/eclipse/papyrus/infra/nattable/applynamedstyle/PapyrusApplyNamedStyleCommand.java
@@ -0,0 +1,69 @@
+/*****************************************************************************
+ * Copyright (c) 2017 CEA LIST and others.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Thanh Liem PHAN (ALL4TEC) thanhliem.phan@all4tec.net - Bug 515737
+ *****************************************************************************/
+
+package org.eclipse.papyrus.infra.nattable.applynamedstyle;
+
+import org.eclipse.emf.transaction.TransactionalEditingDomain;
+import org.eclipse.nebula.widgets.nattable.command.AbstractContextFreeCommand;
+import org.eclipse.papyrus.infra.nattable.model.nattable.nattablestyle.StyledElement;
+
+/**
+ * The apply named style command.
+ *
+ * @since 5.0
+ */
+public class PapyrusApplyNamedStyleCommand extends AbstractContextFreeCommand {
+
+ /** The editing domain. */
+ private TransactionalEditingDomain editingDomain;
+
+ /** The element to be applied the named style. */
+ private StyledElement element;
+
+ /** The named style string. */
+ private String namedStyle;
+
+ /**
+ * Constructor.
+ *
+ * @param element
+ * The element to be applied the named style
+ * @param namedStyle
+ * The named style string
+ */
+ public PapyrusApplyNamedStyleCommand(final TransactionalEditingDomain editingDomain, final StyledElement element, final String namedStyle) {
+ this.editingDomain = editingDomain;
+ this.element = element;
+ this.namedStyle = namedStyle;
+ }
+
+ /**
+ * @return The editing domain
+ */
+ public TransactionalEditingDomain getEditingDomain() {
+ return this.editingDomain;
+ }
+
+ /**
+ * @return The element to be applied the named style
+ */
+ public StyledElement getElement() {
+ return this.element;
+ }
+
+ /**
+ * @return The named style string
+ */
+ public String getNamedStyle() {
+ return this.namedStyle;
+ }
+}

Back to the top