Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/org.eclipse.papyrus.uml.table.efacet.parameter/src/org/eclipse/papyrus/uml/table/efacet/parameter/editor/ParameterTableEditor.java')
-rw-r--r--sandbox/org.eclipse.papyrus.uml.table.efacet.parameter/src/org/eclipse/papyrus/uml/table/efacet/parameter/editor/ParameterTableEditor.java39
1 files changed, 0 insertions, 39 deletions
diff --git a/sandbox/org.eclipse.papyrus.uml.table.efacet.parameter/src/org/eclipse/papyrus/uml/table/efacet/parameter/editor/ParameterTableEditor.java b/sandbox/org.eclipse.papyrus.uml.table.efacet.parameter/src/org/eclipse/papyrus/uml/table/efacet/parameter/editor/ParameterTableEditor.java
deleted file mode 100644
index c8f71e8b996..00000000000
--- a/sandbox/org.eclipse.papyrus.uml.table.efacet.parameter/src/org/eclipse/papyrus/uml/table/efacet/parameter/editor/ParameterTableEditor.java
+++ /dev/null
@@ -1,39 +0,0 @@
-/*****************************************************************************
- * Copyright (c) 2012 CEA LIST.
- *
- *
- * 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:
- * Vincent Lorenzo (CEA LIST) vincent.lorenzo@cea.fr - Initial API and implementation
- *
- *****************************************************************************/
-package org.eclipse.papyrus.uml.table.efacet.parameter.editor;
-
-import org.eclipse.papyrus.infra.core.services.ServicesRegistry;
-import org.eclipse.papyrus.infra.table.efacet.common.editor.AbstractSynchronizedTableEditor;
-import org.eclipse.papyrus.infra.table.efacet.metamodel.papyrustable.PapyrusTable;
-
-
-public class ParameterTableEditor extends AbstractSynchronizedTableEditor {
-
- /** the type of the editor */
- public static final String EDITOR_TYPE = "PapyrusUMLParameterTable"; //$NON-NLS-1$
-
- /** the default name for this table */
- public static final String DEFAULT_NAME = "ParameterTable"; //$NON-NLS-1$
-
- /**
- * @param servicesRegistry
- * @param rawModel
- *
- */
- public ParameterTableEditor(final ServicesRegistry servicesRegistry, final PapyrusTable rawModel) {
- super(servicesRegistry, rawModel);
- }
-
-
-}

Back to the top