Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorcletavernie2011-10-25 11:59:50 +0000
committercletavernie2011-10-25 11:59:50 +0000
commit6c8ef497ffecc43373f9c5e66089f26e2d9afba2 (patch)
tree193e1971a7fc9cdb600a3fd7d01bf9fe59299ce9 /plugins/core/org.eclipse.papyrus.navigation/src/org/eclipse/papyrus/navigation/ExistingNavigableElement.java
parent734e34828d49771a6e1f9a807018be1cee5ea41e (diff)
downloadorg.eclipse.papyrus-6c8ef497ffecc43373f9c5e66089f26e2d9afba2.tar.gz
org.eclipse.papyrus-6c8ef497ffecc43373f9c5e66089f26e2d9afba2.tar.xz
org.eclipse.papyrus-6c8ef497ffecc43373f9c5e66089f26e2d9afba2.zip
359057: [Architecture - SVN - Build] The Papyrus architecture should be refactored
https://bugs.eclipse.org/bugs/show_bug.cgi?id=359057
Diffstat (limited to 'plugins/core/org.eclipse.papyrus.navigation/src/org/eclipse/papyrus/navigation/ExistingNavigableElement.java')
-rw-r--r--plugins/core/org.eclipse.papyrus.navigation/src/org/eclipse/papyrus/navigation/ExistingNavigableElement.java37
1 files changed, 0 insertions, 37 deletions
diff --git a/plugins/core/org.eclipse.papyrus.navigation/src/org/eclipse/papyrus/navigation/ExistingNavigableElement.java b/plugins/core/org.eclipse.papyrus.navigation/src/org/eclipse/papyrus/navigation/ExistingNavigableElement.java
deleted file mode 100644
index 729569f9947..00000000000
--- a/plugins/core/org.eclipse.papyrus.navigation/src/org/eclipse/papyrus/navigation/ExistingNavigableElement.java
+++ /dev/null
@@ -1,37 +0,0 @@
-/*****************************************************************************
- * Copyright (c) 2010 Atos Origin.
- *
- *
- * 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:
- * Mathieu Velten (Atos Origin) mathieu.velten@atosorigin.com - Initial API and implementation
- *
- *****************************************************************************/
-package org.eclipse.papyrus.navigation;
-
-import org.eclipse.emf.ecore.EObject;
-import org.eclipse.emf.ecore.EStructuralFeature;
-
-/**
- * This class represents an element that already exists in the navigated model.
- *
- * @author mvelten
- *
- */
-public class ExistingNavigableElement extends NavigableElement {
-
- /**
- * This constructor initiates a navigable element from an existing model
- * element.
- *
- * @param element
- */
- public ExistingNavigableElement(EObject element, EStructuralFeature feature) {
- super(element, feature);
- }
-
-}

Back to the top