Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNicolas FAUVERGUE2016-05-30 10:55:00 +0000
committerGerrit Code Review @ Eclipse.org2016-05-31 14:30:00 +0000
commitb82e6e300f10da43dfa6a2c547ff4179c97fbc52 (patch)
tree9ea4639bab1850712a3c979aa9da0c8de1dba92c /plugins/infra/nattable
parent78884f12fcdc10c36624896677378a2448a2ec32 (diff)
downloadorg.eclipse.papyrus-b82e6e300f10da43dfa6a2c547ff4179c97fbc52.tar.gz
org.eclipse.papyrus-b82e6e300f10da43dfa6a2c547ff4179c97fbc52.tar.xz
org.eclipse.papyrus-b82e6e300f10da43dfa6a2c547ff4179c97fbc52.zip
bug 492873 - [Table] The Create Table Configuration menu appears
everywhere bug 493756 - [Table] Edit table configuration calls same wizard as "create..." bug 493756 - [Table] Papyrus must provide the Table creation Wizard in the New Dialog Change-Id: Ie708c6a515ffd0498b45cd961d2e3c075e938b0b Signed-off-by: Nicolas FAUVERGUE <nicolas.fauvergue@all4tec.net> Signed-off-by: Vincent LORENZO <vincent.lorenzo@cea.fr>
Diffstat (limited to 'plugins/infra/nattable')
-rw-r--r--plugins/infra/nattable/org.eclipse.papyrus.infra.nattable/src/org/eclipse/papyrus/infra/nattable/utils/NattableConfigurationConstants.java26
1 files changed, 26 insertions, 0 deletions
diff --git a/plugins/infra/nattable/org.eclipse.papyrus.infra.nattable/src/org/eclipse/papyrus/infra/nattable/utils/NattableConfigurationConstants.java b/plugins/infra/nattable/org.eclipse.papyrus.infra.nattable/src/org/eclipse/papyrus/infra/nattable/utils/NattableConfigurationConstants.java
new file mode 100644
index 00000000000..37c2559be2c
--- /dev/null
+++ b/plugins/infra/nattable/org.eclipse.papyrus.infra.nattable/src/org/eclipse/papyrus/infra/nattable/utils/NattableConfigurationConstants.java
@@ -0,0 +1,26 @@
+/*****************************************************************************
+ * Copyright (c) 2016 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:
+ * CEA LIST - Initial API and implementation
+ *
+ *****************************************************************************/
+
+package org.eclipse.papyrus.infra.nattable.utils;
+
+/**
+ * @author VL222926
+ *
+ */
+public class NattableConfigurationConstants {
+
+ /**
+ * The extension for the nattable configuration file.
+ */
+ public static final String NATTABLE_CONFIGURATION_EXTENSION_FILE = "nattableconfiguration"; //$NON-NLS-1$
+}

Back to the top