Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/org.eclipse.papyrus.views.properties.table/src/org/eclipse/papyrus/views/properties/table/axis/DerivedUMLPropertiesAxisManager.java')
-rw-r--r--sandbox/org.eclipse.papyrus.views.properties.table/src/org/eclipse/papyrus/views/properties/table/axis/DerivedUMLPropertiesAxisManager.java59
1 files changed, 0 insertions, 59 deletions
diff --git a/sandbox/org.eclipse.papyrus.views.properties.table/src/org/eclipse/papyrus/views/properties/table/axis/DerivedUMLPropertiesAxisManager.java b/sandbox/org.eclipse.papyrus.views.properties.table/src/org/eclipse/papyrus/views/properties/table/axis/DerivedUMLPropertiesAxisManager.java
deleted file mode 100644
index 2a8e1f0354f..00000000000
--- a/sandbox/org.eclipse.papyrus.views.properties.table/src/org/eclipse/papyrus/views/properties/table/axis/DerivedUMLPropertiesAxisManager.java
+++ /dev/null
@@ -1,59 +0,0 @@
-/*****************************************************************************
- * Copyright (c) 2013 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:
- * Camille Letavernier (camille.letavernier@cea.fr) - Initial API and implementation
- *
- *****************************************************************************/
-package org.eclipse.papyrus.views.properties.table.axis;
-
-import org.eclipse.emf.common.command.Command;
-import org.eclipse.emf.transaction.TransactionalEditingDomain;
-import org.eclipse.papyrus.infra.nattable.manager.axis.AbstractAxisManager;
-
-/**
- * An AxisManager for custom/derived UML features (Such as Multiplicity)
- *
- * @author Camille Letavernier
- *
- */
-public class DerivedUMLPropertiesAxisManager extends AbstractAxisManager {
-
- public static final String AXIS_MANAGER_ID = "org.eclipse.papyrus.uml.nattable.derived.features.axis.manager"; //$NON-NLS-1$
-
- public static final String PROPERTIES_PREFIX = "uml_derived_features:/";
-
- public static final String MULTIPLICITY = PROPERTIES_PREFIX + "multiplicity";
-
- public boolean isSlave() {
- return false;
- }
-
- public boolean isDynamic() {
- return false;
- }
-
- public boolean canEditAxisHeader() {
- return true;
- }
-
- public boolean canDestroyAxisElement(Integer axisIndex) {
- return false;
- }
-
- public Command getDestroyAxisElementCommand(TransactionalEditingDomain domain, Integer axisPosition) {
- return null;
- }
-
- @Override
- public boolean canBeSavedAsConfig() {
- return false;
- }
-
-}

Back to the top