Skip to content
Snippets Groups Projects
Commit ce1d661d authored by Fabian Brosig's avatar Fabian Brosig
Browse files

removed CoarseGrainedBehavior#describedEntity (now also the corresponding OCLconstraint)

git-svn-id: https://se1.informatik.uni-wuerzburg.de/usvn/svn/code/DMM/trunk@16516 9e42b895-fcda-4063-8a3b-11be15eb1bbd
parent b73d072a
No related branches found
No related tags found
No related merge requests found
......@@ -119,15 +119,6 @@
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CoarseGrainedBehavior" eSuperTypes="#//ServiceBehaviorAbstraction">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="--# TODO discuss this construction of InternalCallAction and InternalHelper(Container)&#xA;class InternalCallAction {&#xA;property internalFineGrainedBehaviorHelper : InternalFineGrainedBehaviorHelper[1];&#xA;}&#xA;class InternalFineGrainedBehaviorHelper extends core_0::Entity {&#xA;invariant parametersMustHaveUniqueNames: self.parameters->isUnique(p : repository_0::Parameter | p.name);&#xA;property parameters : repository_0::Parameter[0..*] { composes };&#xA;property returnType : repository_0::DataType[0..1];&#xA;property internalFineGrainedBehaviorHelperContainer#internalFineGrainedBehaviorHelper : InternalFineGrainedBehaviorHelperContainer[1];&#xA;property behavior : ComponentInternalBehavior[1] { composes };&#xA;}&#xA;class InternalFineGrainedBehaviorHelperContainer extends core_0::Entity {&#xA;invariant internalFineGrainedBehaviorHelperMustBeUnique:&#xA;let helper : Bag(&#xA;-- parameters: Sequence of DataType, NOT name&#xA;-- return types have not to be considered&#xA;-- exceptions have not to be considered&#xA;Tuple(helperName : String, parameters : Sequence(repository_0::DataType) )&#xA;) = self.internalFineGrainedBehaviorHelper->collect(h : InternalFineGrainedBehaviorHelper | Tuple{&#xA;helperName : String = h.name,&#xA;parameters : Sequence(repository_0::DataType) = h.parameters.dataType }&#xA;) in helper->isUnique(h|h);&#xA;property internalFineGrainedBehaviorHelper#internalFineGrainedBehaviorHelperContainer : InternalFineGrainedBehaviorHelper[0..*] { composes };&#xA;property component#internalFineGrainedBehaviorHelperContainer : repository_0::BasicComponent[1];&#xA;}"/>
</eAnnotations>
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore">
<details key="constraints" value="AtMostOneCoarseGrainedBehaviorPerProvidedService"/>
</eAnnotations>
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore/OCL/Pivot">
<details key="AtMostOneCoarseGrainedBehaviorPerProvidedService" value="&#xA;&#x9;&#x9;&#x9;self.describedEntity.coarseGrainedBehavior->forAll(cgb1 : CoarseGrainedBehavior | cgb1.describedSignature = self.describedSignature implies cgb1 = self)"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="externalCallFrequency"
ordered="false" upperBound="-1" eType="#//ExternalCallFrequency" containment="true"
eOpposite="#//ExternalCallFrequency/coarseGrainedBehavior"/>
......
......@@ -120,8 +120,6 @@ package servicebehavior : servicebehavior = 'http://www.descartes-research.net/m
class CoarseGrainedBehavior extends ServiceBehaviorAbstraction
{
invariant AtMostOneCoarseGrainedBehaviorPerProvidedService:
self.describedEntity.coarseGrainedBehavior->forAll(cgb1 : CoarseGrainedBehavior | cgb1.describedSignature = self.describedSignature implies cgb1 = self);
property externalCallFrequency#coarseGrainedBehavior : ExternalCallFrequency[*] { composes };
property resourceDemand#coarseGrainedBehavior : ResourceDemand[*] { composes };
}
......
......@@ -10,34 +10,6 @@ import org.eclipse.emf.common.util.EList;
* A representation of the model object '<em><b>Coarse Grained Behavior</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* --# TODO discuss this construction of InternalCallAction and InternalHelper(Container)
* class InternalCallAction {
* property internalFineGrainedBehaviorHelper : InternalFineGrainedBehaviorHelper[1];
* }
* class InternalFineGrainedBehaviorHelper extends core_0::Entity {
* invariant parametersMustHaveUniqueNames: self.parameters->isUnique(p : repository_0::Parameter | p.name);
* property parameters : repository_0::Parameter[0..*] { composes };
* property returnType : repository_0::DataType[0..1];
* property internalFineGrainedBehaviorHelperContainer#internalFineGrainedBehaviorHelper : InternalFineGrainedBehaviorHelperContainer[1];
* property behavior : ComponentInternalBehavior[1] { composes };
* }
* class InternalFineGrainedBehaviorHelperContainer extends core_0::Entity {
* invariant internalFineGrainedBehaviorHelperMustBeUnique:
* let helper : Bag(
* -- parameters: Sequence of DataType, NOT name
* -- return types have not to be considered
* -- exceptions have not to be considered
* Tuple(helperName : String, parameters : Sequence(repository_0::DataType) )
* ) = self.internalFineGrainedBehaviorHelper->collect(h : InternalFineGrainedBehaviorHelper | Tuple{
* helperName : String = h.name,
* parameters : Sequence(repository_0::DataType) = h.parameters.dataType }
* ) in helper->isUnique(h|h);
* property internalFineGrainedBehaviorHelper#internalFineGrainedBehaviorHelperContainer : InternalFineGrainedBehaviorHelper[0..*] { composes };
* property component#internalFineGrainedBehaviorHelperContainer : repository_0::BasicComponent[1];
* }
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* <ul>
......@@ -47,8 +19,7 @@ import org.eclipse.emf.common.util.EList;
* </p>
*
* @see edu.kit.ipd.descartes.mm.applicationlevel.servicebehavior.ServicebehaviorPackage#getCoarseGrainedBehavior()
* @model annotation="http://www.eclipse.org/emf/2002/Ecore constraints='AtMostOneCoarseGrainedBehaviorPerProvidedService'"
* annotation="http://www.eclipse.org/emf/2002/Ecore/OCL/Pivot AtMostOneCoarseGrainedBehaviorPerProvidedService='\n\t\t\tself.describedEntity.coarseGrainedBehavior->forAll(cgb1 : CoarseGrainedBehavior | cgb1.describedSignature = self.describedSignature implies cgb1 = self)'"
* @model
* @generated
*/
public interface CoarseGrainedBehavior extends ServiceBehaviorAbstraction {
......
......@@ -1152,12 +1152,6 @@ public class ServicebehaviorPackageImpl extends EPackageImpl implements Serviceb
new String[] {
"constraints", "EnforceExplicitDescriptionWhenExplicitCharacterizationType"
});
addAnnotation
(coarseGrainedBehaviorEClass,
source,
new String[] {
"constraints", "AtMostOneCoarseGrainedBehaviorPerProvidedService"
});
addAnnotation
(responseTimeEClass,
source,
......@@ -1193,12 +1187,6 @@ public class ServicebehaviorPackageImpl extends EPackageImpl implements Serviceb
new String[] {
"EnforceExplicitDescriptionWhenExplicitCharacterizationType", "\n\t\t self.characterization = parameterdependencies::RelationshipCharacterizationType::EXPLICIT implies explicitDescription <> null"
});
addAnnotation
(coarseGrainedBehaviorEClass,
source,
new String[] {
"AtMostOneCoarseGrainedBehaviorPerProvidedService", "\n\t\t\tself.describedEntity.coarseGrainedBehavior->forAll(cgb1 : CoarseGrainedBehavior | cgb1.describedSignature = self.describedSignature implies cgb1 = self)"
});
addAnnotation
(responseTimeEClass,
source,
......
......@@ -490,40 +490,9 @@ public class ServicebehaviorValidator extends EObjectValidator {
if (result || diagnostics != null) result &= validate_EveryMapEntryUnique(coarseGrainedBehavior, diagnostics, context);
if (result || diagnostics != null) result &= validateServiceBehaviorAbstraction_DescribedSignatureMustBelongToInterfaceReferencedByInterfaceProvidingRole(coarseGrainedBehavior, diagnostics, context);
if (result || diagnostics != null) result &= validateServiceBehaviorAbstraction_InfluencingParameterNamesMustBeUnique(coarseGrainedBehavior, diagnostics, context);
if (result || diagnostics != null) result &= validateCoarseGrainedBehavior_AtMostOneCoarseGrainedBehaviorPerProvidedService(coarseGrainedBehavior, diagnostics, context);
return result;
}
/**
* The cached validation expression for the AtMostOneCoarseGrainedBehaviorPerProvidedService constraint of '<em>Coarse Grained Behavior</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected static final String COARSE_GRAINED_BEHAVIOR__AT_MOST_ONE_COARSE_GRAINED_BEHAVIOR_PER_PROVIDED_SERVICE__EEXPRESSION = "\n" +
"\t\t\tself.describedEntity.coarseGrainedBehavior->forAll(cgb1 : CoarseGrainedBehavior | cgb1.describedSignature = self.describedSignature implies cgb1 = self)";
/**
* Validates the AtMostOneCoarseGrainedBehaviorPerProvidedService constraint of '<em>Coarse Grained Behavior</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public boolean validateCoarseGrainedBehavior_AtMostOneCoarseGrainedBehaviorPerProvidedService(CoarseGrainedBehavior coarseGrainedBehavior, DiagnosticChain diagnostics, Map<Object, Object> context) {
return
validate
(ServicebehaviorPackage.Literals.COARSE_GRAINED_BEHAVIOR,
coarseGrainedBehavior,
diagnostics,
context,
"http://www.eclipse.org/emf/2002/Ecore/OCL/Pivot",
"AtMostOneCoarseGrainedBehaviorPerProvidedService",
COARSE_GRAINED_BEHAVIOR__AT_MOST_ONE_COARSE_GRAINED_BEHAVIOR_PER_PROVIDED_SERVICE__EEXPRESSION,
Diagnostic.ERROR,
DIAGNOSTIC_SOURCE,
0);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment