Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenoit Maggi2017-05-05 08:04:22 +0000
committerBenoit Maggi2017-05-10 02:30:36 +0000
commit03d9608d7d5f0023fdeb3b6bd029355c77c7f0cc (patch)
treedb9e7407008f28ad41b6c51e5ae6bb220ccebbfb /extraplugins/soaml/org.eclipse.papyrus.soaml.profile.validation/src/org/eclipse/papyrus/soaml/profile/validation/selectors/RequestClientSelector.java
parent5b38de0431bfb6f9fd926d0a7b222fb2844d09c2 (diff)
downloadorg.eclipse.papyrus-03d9608d7d5f0023fdeb3b6bd029355c77c7f0cc.tar.gz
org.eclipse.papyrus-03d9608d7d5f0023fdeb3b6bd029355c77c7f0cc.tar.xz
org.eclipse.papyrus-03d9608d7d5f0023fdeb3b6bd029355c77c7f0cc.zip
Bug 516224 - [Extra] Archive soaml
remove soaml plugins and feature Change-Id: I4150a3508794c26a69ff8121baee859aeb6ffda7 Signed-off-by: Benoit Maggi <benoit.maggi@cea.fr>
Diffstat (limited to 'extraplugins/soaml/org.eclipse.papyrus.soaml.profile.validation/src/org/eclipse/papyrus/soaml/profile/validation/selectors/RequestClientSelector.java')
-rw-r--r--extraplugins/soaml/org.eclipse.papyrus.soaml.profile.validation/src/org/eclipse/papyrus/soaml/profile/validation/selectors/RequestClientSelector.java29
1 files changed, 0 insertions, 29 deletions
diff --git a/extraplugins/soaml/org.eclipse.papyrus.soaml.profile.validation/src/org/eclipse/papyrus/soaml/profile/validation/selectors/RequestClientSelector.java b/extraplugins/soaml/org.eclipse.papyrus.soaml.profile.validation/src/org/eclipse/papyrus/soaml/profile/validation/selectors/RequestClientSelector.java
deleted file mode 100644
index c1ee4baba80..00000000000
--- a/extraplugins/soaml/org.eclipse.papyrus.soaml.profile.validation/src/org/eclipse/papyrus/soaml/profile/validation/selectors/RequestClientSelector.java
+++ /dev/null
@@ -1,29 +0,0 @@
-/*****************************************************************************
- * Copyright (c) 2015 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:
- * Fadwa TMAR (CEA LIST) fadwa.tmar@cea.fr - Initial API and implementation
- *****************************************************************************/
-
-package org.eclipse.papyrus.soaml.profile.validation.selectors;
-
-import org.eclipse.emf.validation.model.IClientSelector;
-import org.eclipse.papyrus.uml.service.validation.StereotypeUtil;
-
-/**
- * This class filters (selects) passed stereotype applications. It returns true, if the
- * associated stereotype (or one of its super-stereotypes) has the name '[stereotype.name/]'.
- *
- * @generated
- */
-public class RequestClientSelector implements IClientSelector {
-
- public boolean selects(Object stereoApplicationObj) {
- return StereotypeUtil.checkStereoApplication(stereoApplicationObj, "Request"); //$NON-NLS-1$
- }
-}

Back to the top