Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.emf.compare.diagram.ide.papyrus/src/org/eclipse/emf/compare/diagram/ide/papyrus/DeploymentViewLabelProvider.java')
-rw-r--r--plugins/org.eclipse.emf.compare.diagram.ide.papyrus/src/org/eclipse/emf/compare/diagram/ide/papyrus/DeploymentViewLabelProvider.java37
1 files changed, 0 insertions, 37 deletions
diff --git a/plugins/org.eclipse.emf.compare.diagram.ide.papyrus/src/org/eclipse/emf/compare/diagram/ide/papyrus/DeploymentViewLabelProvider.java b/plugins/org.eclipse.emf.compare.diagram.ide.papyrus/src/org/eclipse/emf/compare/diagram/ide/papyrus/DeploymentViewLabelProvider.java
deleted file mode 100644
index 8f1ca8d3c..000000000
--- a/plugins/org.eclipse.emf.compare.diagram.ide.papyrus/src/org/eclipse/emf/compare/diagram/ide/papyrus/DeploymentViewLabelProvider.java
+++ /dev/null
@@ -1,37 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2006, 2012 Obeo.
- * 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:
- * Obeo - initial API and implementation
- *******************************************************************************/
-package org.eclipse.emf.compare.diagram.ide.papyrus;
-
-import org.eclipse.gmf.runtime.diagram.ui.editparts.ITextAwareEditPart;
-import org.eclipse.gmf.runtime.notation.View;
-import org.eclipse.papyrus.uml.diagram.deployment.edit.parts.UMLEditPartFactory;
-
-/**
- * View label provider for Deployment.
- * @author Mikael Barbero <a href="mailto:mikael.barbero@obeo.fr">Mikael.barbero@obeo.fr</a>
- */
-public class DeploymentViewLabelProvider extends AbstractUMLViewLabelProvider {
-
- /**
- * The edit part factory.
- */
- private static final UMLEditPartFactory EDIT_PART_FACTORY = new UMLEditPartFactory();
-
- /**
- * {@inheritDoc}
- *
- * @see org.eclipse.emf.compare.diagram.provider.IViewLabelProvider#isManaged(org.eclipse.gmf.runtime.notation.View)
- */
- public boolean isManaged(View view) {
- return EDIT_PART_FACTORY.createEditPart(null, view) instanceof ITextAwareEditPart;
- }
-
-}

Back to the top