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/src/SoaML/Participant.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/src/SoaML/Participant.java')
-rw-r--r--extraplugins/soaml/org.eclipse.papyrus.soaml.profile/src/SoaML/Participant.java85
1 files changed, 0 insertions, 85 deletions
diff --git a/extraplugins/soaml/org.eclipse.papyrus.soaml.profile/src/SoaML/Participant.java b/extraplugins/soaml/org.eclipse.papyrus.soaml.profile/src/SoaML/Participant.java
deleted file mode 100644
index 8a1c11f1ee3..00000000000
--- a/extraplugins/soaml/org.eclipse.papyrus.soaml.profile/src/SoaML/Participant.java
+++ /dev/null
@@ -1,85 +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 SoaML;
-
-import java.util.Map;
-import org.eclipse.emf.common.util.DiagnosticChain;
-import org.eclipse.emf.ecore.EObject;
-
-/**
- * <!-- begin-user-doc -->
- * A representation of the model object '<em><b>Participant</b></em>'.
- * <!-- end-user-doc -->
- *
- * <p>
- * The following features are supported:
- * </p>
- * <ul>
- * <li>{@link SoaML.Participant#getBase_Class <em>Base Class</em>}</li>
- * </ul>
- *
- * @see SoaML.SoaMLPackage#getParticipant()
- * @model
- * @generated
- */
-public interface Participant extends EObject {
- /**
- * Returns the value of the '<em><b>Base Class</b></em>' reference.
- * <!-- begin-user-doc -->
- * <p>
- * If the meaning of the '<em>Base Class</em>' reference isn't clear,
- * there really should be more of a description here...
- * </p>
- * <!-- end-user-doc -->
- * @return the value of the '<em>Base Class</em>' reference.
- * @see #setBase_Class(org.eclipse.uml2.uml.Class)
- * @see SoaML.SoaMLPackage#getParticipant_Base_Class()
- * @model required="true" ordered="false"
- * @generated
- */
- org.eclipse.uml2.uml.Class getBase_Class();
-
- /**
- * Sets the value of the '{@link SoaML.Participant#getBase_Class <em>Base Class</em>}' reference.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * @param value the new value of the '<em>Base Class</em>' reference.
- * @see #getBase_Class()
- * @generated
- */
- void setBase_Class(org.eclipse.uml2.uml.Class value);
-
- /**
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * <!-- begin-model-doc -->
- * @param diagnostics The chain of diagnostics to which problems are to be appended.
- * @param context The cache of context-specific information.
- * <!-- end-model-doc -->
- * @model annotation="http://www.eclipse.org/uml2/1.1.0/GenModel body='Realization.allInstances()->select(r|r.client->includes(self.base_Class))->size()=0 and \r\nUsage.allInstances()->select(r|r.client->includes(self.base_Class))->size()=0'"
- * @generated
- */
- boolean noRealizedUsedInterface(DiagnosticChain diagnostics, Map<Object, Object> context);
-
- /**
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * <!-- begin-model-doc -->
- * @param diagnostics The chain of diagnostics to which problems are to be appended.
- * @param context The cache of context-specific information.
- * <!-- end-model-doc -->
- * @model annotation="http://www.eclipse.org/uml2/1.1.0/GenModel body=' let portsSet: OrderedSet(UML::Port)= self.base_Class.ownedPort() in\r\n portsSet->size()>0 implies \r\n portsSet->forAll(p|p.getAppliedStereotypes()->select(s|s.name=\'Request\' or s.name=\'Service\')->size()=1 )'"
- * @generated
- */
- boolean portTypes(DiagnosticChain diagnostics, Map<Object, Object> context);
-
-} // Participant

Back to the top