Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVincent Lorenzo2018-02-25 14:40:08 +0000
committerVincent Lorenzo2018-04-10 12:05:56 +0000
commit88b6509bbd8f5626c12106f63a920613cdbb0a21 (patch)
tree1b100c65f02eaa2015c1ee0563e3307f07910e9e /plugins/infra/nattable/org.eclipse.papyrus.infra.nattable/src
parent7be80618c31a8f0f6a0cb4f79eca30f00616933c (diff)
downloadorg.eclipse.papyrus-88b6509bbd8f5626c12106f63a920613cdbb0a21.tar.gz
org.eclipse.papyrus-88b6509bbd8f5626c12106f63a920613cdbb0a21.tar.xz
org.eclipse.papyrus-88b6509bbd8f5626c12106f63a920613cdbb0a21.zip
Bug 531643: [Table] Remove all table files creation from the Papyrus New Wizard, excepted NattableConfiguration file
- Edit the genmodel, setting generate editor and generate wizard to false for all EPackage, excepted nattableconfiguration package - Remove all customs editors - Remove the tests plugins org.eclipse.papyrus.infra.nattable.model.editor.test - Create a NattableConfigurationResource with the same options than the removed custom editors - Change path contribution for the NattableConfiguration wizard - Set nice icons for the NattableConfiguration wizban and the NattableConfiguration resource Change-Id: I6384e45036a35fe026fcdf2aa65b63d49177159b Signed-off-by: Vincent Lorenzo <vincent.lorenzo@cea.fr>
Diffstat (limited to 'plugins/infra/nattable/org.eclipse.papyrus.infra.nattable/src')
-rw-r--r--plugins/infra/nattable/org.eclipse.papyrus.infra.nattable/src/org/eclipse/papyrus/infra/nattable/utils/NattableConfigurationConstants.java9
1 files changed, 7 insertions, 2 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
index 924025d2154..ff74f8ac410 100644
--- 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
@@ -1,5 +1,5 @@
/*****************************************************************************
- * Copyright (c) 2016 CEA LIST and others.
+ * Copyright (c) 2016, 2018 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
@@ -13,6 +13,8 @@
package org.eclipse.papyrus.infra.nattable.utils;
+import org.eclipse.papyrus.internal.infra.nattable.model.resources.NattableConfigurationResource;
+
/**
* @author Vincent Lorenzo
*
@@ -21,6 +23,9 @@ public class NattableConfigurationConstants {
/**
* The extension for the nattable configuration file.
+ * @deprecated since 6.0.0, use NattableConfigurationResource.NATTABLE_CONFIGURATION_RESOURCE_FILE_EXTENSION instead
+ *
*/
- public static final String NATTABLE_CONFIGURATION_EXTENSION_FILE = "nattableconfiguration"; //$NON-NLS-1$
+ @Deprecated
+ public static final String NATTABLE_CONFIGURATION_EXTENSION_FILE = NattableConfigurationResource.NATTABLE_CONFIGURATION_RESOURCE_FILE_EXTENSION;
}

Back to the top