Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'extraplugins/adl4eclipse/org.eclipse.papyrus.adl4eclipse.profile/src/org/eclipse/papyrus/adl4eclipse/org/ADL4Eclipse_StereotypesUtils.java')
-rw-r--r--extraplugins/adl4eclipse/org.eclipse.papyrus.adl4eclipse.profile/src/org/eclipse/papyrus/adl4eclipse/org/ADL4Eclipse_StereotypesUtils.java31
1 files changed, 0 insertions, 31 deletions
diff --git a/extraplugins/adl4eclipse/org.eclipse.papyrus.adl4eclipse.profile/src/org/eclipse/papyrus/adl4eclipse/org/ADL4Eclipse_StereotypesUtils.java b/extraplugins/adl4eclipse/org.eclipse.papyrus.adl4eclipse.profile/src/org/eclipse/papyrus/adl4eclipse/org/ADL4Eclipse_StereotypesUtils.java
deleted file mode 100644
index 1ba958b760e..00000000000
--- a/extraplugins/adl4eclipse/org.eclipse.papyrus.adl4eclipse.profile/src/org/eclipse/papyrus/adl4eclipse/org/ADL4Eclipse_StereotypesUtils.java
+++ /dev/null
@@ -1,31 +0,0 @@
-/*****************************************************************************
- * Copyright (c) 2016 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
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * CEA LIST - Initial API and implementation
- *
- *****************************************************************************/
-
-package org.eclipse.papyrus.adl4eclipse.org;
-
-import org.eclipse.uml2.uml.Element;
-
-/**
- * Utility class for {@link ADL4Eclipse_Stereotypes}
- */
-public class ADL4Eclipse_StereotypesUtils {
-
- /**
- * Returns <code>true</code> if the specified element represents a Feature
- * @param element the element to check
- * @return <code>true</code> if the specified element represents a Feature
- */
- public static boolean isFeature(Element element) {
- return element.getAppliedStereotype(ADL4Eclipse_Stereotypes.FEATURE_STEREOTYPE) != null;
- }
-}

Back to the top