is_duplicated bool 2 classes | xmi stringlengths 506 392k | ids stringlengths 42 388 | model_type stringclasses 1 value | txt stringlengths 3 77k | labels null | graph stringlengths 176 1.29M |
|---|---|---|---|---|---|---|
false | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="expressions" nsURI="https://robmosys.eu/roqme/expressions" nsPrefix="roqme.expressions">
<eClassifiers xsi:type="ecore:EClass" name="Term" abstract="true"/>
<eClassifiers xsi:type="ecore:EClass" name="ConstTerm" eSuperTypes="#//Term">
<eStructuralFeatures xsi:type="ecore:EReference" name="value" lowerBound="1" eType="ecore:EClass ../datatypes/roqmedatatypes.ecore#//TypedValue"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="VarTerm" eSuperTypes="#//Term">
<eStructuralFeatures xsi:type="ecore:EReference" name="variable" lowerBound="1"
eType="ecore:EClass ../datatypes/roqmedatatypes.ecore#//TypedVariable"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="BinaryTermOp" abstract="true" eSuperTypes="#//Term">
<eStructuralFeatures xsi:type="ecore:EReference" name="left" lowerBound="1" eType="#//Term"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="right" lowerBound="1" eType="#//Term"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="UnaryTermOp" abstract="true" eSuperTypes="#//Term">
<eStructuralFeatures xsi:type="ecore:EReference" name="term" lowerBound="1" eType="#//Term"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="FunctionTerm" abstract="true" eSuperTypes="#//NaryTermOp"/>
<eClassifiers xsi:type="ecore:EClass" name="UnaryLogicalOp" abstract="true" eSuperTypes="#//UnaryTermOp"/>
<eClassifiers xsi:type="ecore:EClass" name="UnaryPatternOp" abstract="true" eSuperTypes="#//UnaryTermOp"/>
<eClassifiers xsi:type="ecore:EClass" name="NotBooleanTerm" eSuperTypes="#//UnaryLogicalOp"/>
<eClassifiers xsi:type="ecore:EClass" name="RepeatTerm" eSuperTypes="#//UnaryPatternOp">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="nrep" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="BinaryArithOp" abstract="true" eSuperTypes="#//BinaryTermOp"/>
<eClassifiers xsi:type="ecore:EClass" name="BinaryRelationalOp" abstract="true"
eSuperTypes="#//BinaryTermOp"/>
<eClassifiers xsi:type="ecore:EClass" name="BinaryLogicalOp" abstract="true" eSuperTypes="#//BinaryTermOp"/>
<eClassifiers xsi:type="ecore:EClass" name="BinaryPatternOp" abstract="true" eSuperTypes="#//BinaryTermOp"/>
<eClassifiers xsi:type="ecore:EClass" name="AddTerm" eSuperTypes="#//BinaryArithOp"/>
<eClassifiers xsi:type="ecore:EClass" name="MultTerm" eSuperTypes="#//BinaryArithOp"/>
<eClassifiers xsi:type="ecore:EClass" name="SubTerm" eSuperTypes="#//BinaryArithOp"/>
<eClassifiers xsi:type="ecore:EClass" name="DivTerm" eSuperTypes="#//BinaryArithOp"/>
<eClassifiers xsi:type="ecore:EClass" name="AndBooleanTerm" eSuperTypes="#//BinaryLogicalOp"/>
<eClassifiers xsi:type="ecore:EClass" name="OrBooleanTerm" eSuperTypes="#//BinaryLogicalOp"/>
<eClassifiers xsi:type="ecore:EClass" name="LessEqualTerm" eSuperTypes="#//BinaryRelationalOp"/>
<eClassifiers xsi:type="ecore:EClass" name="GreaterEqualTerm" eSuperTypes="#//BinaryRelationalOp"/>
<eClassifiers xsi:type="ecore:EClass" name="NotEqualTerm" eSuperTypes="#//BinaryRelationalOp"/>
<eClassifiers xsi:type="ecore:EClass" name="EqualTerm" eSuperTypes="#//BinaryRelationalOp"/>
<eClassifiers xsi:type="ecore:EClass" name="GreaterThanTerm" eSuperTypes="#//BinaryRelationalOp"/>
<eClassifiers xsi:type="ecore:EClass" name="LessThanTerm" eSuperTypes="#//BinaryRelationalOp"/>
<eClassifiers xsi:type="ecore:EClass" name="FollowedByTerm" eSuperTypes="#//BinaryPatternOp"/>
<eClassifiers xsi:type="ecore:EClass" name="ArithFunction" eSuperTypes="#//FunctionTerm">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" lowerBound="1" eType="#//ArithFtnEnum"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="AggregationFunction" eSuperTypes="#//FunctionTerm">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" lowerBound="1" eType="#//AggregationFtnEnum"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="PatternFunction" eSuperTypes="#//FunctionTerm">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" lowerBound="1" eType="#//PatternFtnEnum"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="ArithFtnEnum">
<eLiterals name="POW"/>
<eLiterals name="SQRT" value="1"/>
<eLiterals name="EXP" value="2"/>
<eLiterals name="ABS" value="4"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="AggregationFtnEnum">
<eLiterals name="AVG"/>
<eLiterals name="MIN" value="3"/>
<eLiterals name="MAX" value="4"/>
<eLiterals name="COUNT" value="5"/>
<eLiterals name="SUM" value="6"/>
<eLiterals name="DECREASING" value="1"/>
<eLiterals name="INCREASING" value="2"/>
<eLiterals name="STABLE" value="7"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="PatternFtnEnum">
<eLiterals name="EVENT_WHEN"/>
<eLiterals name="UPDATE" value="1"/>
<eLiterals name="PERIOD" value="3"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="GeneralExpression">
<eStructuralFeatures xsi:type="ecore:EReference" name="term" lowerBound="1" eType="#//Term"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ContextPattern">
<eStructuralFeatures xsi:type="ecore:EReference" name="term" lowerBound="1" eType="#//Term"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="OutputTransformation">
<eStructuralFeatures xsi:type="ecore:EReference" name="term" lowerBound="1" eType="#//Term"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="WhileTerm" eSuperTypes="#//BinaryPatternOp"/>
<eClassifiers xsi:type="ecore:EClass" name="ConditionalTerm" eSuperTypes="#//NaryTermOp"/>
<eClassifiers xsi:type="ecore:EClass" name="NaryTermOp" abstract="true" eSuperTypes="#//Term">
<eStructuralFeatures xsi:type="ecore:EReference" name="terms" upperBound="-1"
eType="#//Term" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="SelfTerm" eSuperTypes="#//Term"/>
<eClassifiers xsi:type="ecore:EClass" name="CollectionFunction" eSuperTypes="#//FunctionTerm">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" lowerBound="1" eType="#//CollectionFtnEnum"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="CollectionFtnEnum">
<eLiterals name="FIRST"/>
<eLiterals name="LAST" value="1"/>
<eLiterals name="AT" value="2"/>
<eLiterals name="SIZE" value="3"/>
<eLiterals name="IS_EMPTY" value="4"/>
<eLiterals name="INCLUDES" value="5"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="OnceTerm" eSuperTypes="#//UnaryPatternOp"/>
<eClassifiers xsi:type="ecore:EClass" name="RangeTerm" eSuperTypes="#//UnaryPatternOp">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="lowerBound" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="upperBound" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ModTerm" eSuperTypes="#//BinaryArithOp"/>
<eClassifiers xsi:type="ecore:EClass" name="ScheduleFunction" eSuperTypes="#//FunctionTerm">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="pattern" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="AndEventTerm" eSuperTypes="#//BinaryPatternOp"/>
<eClassifiers xsi:type="ecore:EClass" name="OrEventTerm" eSuperTypes="#//BinaryPatternOp"/>
<eClassifiers xsi:type="ecore:EClass" name="NotEventTerm" eSuperTypes="#//UnaryPatternOp"/>
</ecore:EPackage>
| github:ecore:/data/roqme/robmosys-roqme-itp/src/roqme.metamodel/metamodel/expressions/roqmeexpressions.ecore | ecore | expressions
Term
ConstTerm
value
VarTerm
variable
BinaryTermOp
left
right
UnaryTermOp
term
FunctionTerm
UnaryLogicalOp
UnaryPatternOp
NotBooleanTerm
RepeatTerm
nrep
BinaryArithOp
BinaryRelationalOp
BinaryLogicalOp
BinaryPatternOp
AddTerm
MultTerm
SubTerm
DivTerm
AndBooleanTerm
OrBooleanTerm
LessEqualTerm
GreaterEqualTerm
NotEqualTerm
EqualTerm
GreaterThanTerm
LessThanTerm
FollowedByTerm
ArithFunction
name
AggregationFunction
name
PatternFunction
name
ArithFtnEnum
POW
POW
SQRT
SQRT
EXP
EXP
ABS
ABS
AggregationFtnEnum
AVG
AVG
MIN
MIN
MAX
MAX
COUNT
COUNT
SUM
SUM
DECREASING
DECREASING
INCREASING
INCREASING
STABLE
STABLE
PatternFtnEnum
EVENT_WHEN
EVENT_WHEN
UPDATE
UPDATE
PERIOD
PERIOD
GeneralExpression
term
ContextPattern
term
OutputTransformation
term
WhileTerm
ConditionalTerm
NaryTermOp
terms
SelfTerm
CollectionFunction
name
CollectionFtnEnum
FIRST
FIRST
LAST
LAST
AT
AT
SIZE
SIZE
IS_EMPTY
IS_EMPTY
INCLUDES
INCLUDES
OnceTerm
RangeTerm
lowerBound
upperBound
ModTerm
ScheduleFunction
pattern
AndEventTerm
OrEventTerm
NotEventTerm | null | {"directed":true,"nodes":[{"nsPrefix":"roqme.expressions","nsURI":"https://robmosys.eu/roqme/expressions","name":"expressions","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Term","instanceClass":null,"abstract":true,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ConstTerm","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"VarTerm","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BinaryTermOp","instanceClass":null,"abstract":true,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"UnaryTermOp","instanceClass":null,"abstract":true,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FunctionTerm","instanceClass":null,"abstract":true,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"UnaryLogicalOp","instanceClass":null,"abstract":true,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"UnaryPatternOp","instanceClass":null,"abstract":true,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NotBooleanTerm","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RepeatTerm","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BinaryArithOp","instanceClass":null,"abstract":true,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BinaryRelationalOp","instanceClass":null,"abstract":true,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BinaryLogicalOp","instanceClass":null,"abstract":true,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BinaryPatternOp","instanceClass":null,"abstract":true,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AddTerm","instanceClass":null,"abstract":false,"id":15,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MultTerm","instanceClass":null,"abstract":false,"id":16,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SubTerm","instanceClass":null,"abstract":false,"id":17,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DivTerm","instanceClass":null,"abstract":false,"id":18,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AndBooleanTerm","instanceClass":null,"abstract":false,"id":19,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OrBooleanTerm","instanceClass":null,"abstract":false,"id":20,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LessEqualTerm","instanceClass":null,"abstract":false,"id":21,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"GreaterEqualTerm","instanceClass":null,"abstract":false,"id":22,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NotEqualTerm","instanceClass":null,"abstract":false,"id":23,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EqualTerm","instanceClass":null,"abstract":false,"id":24,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"GreaterThanTerm","instanceClass":null,"abstract":false,"id":25,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LessThanTerm","instanceClass":null,"abstract":false,"id":26,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FollowedByTerm","instanceClass":null,"abstract":false,"id":27,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ArithFunction","instanceClass":null,"abstract":false,"id":28,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AggregationFunction","instanceClass":null,"abstract":false,"id":29,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PatternFunction","instanceClass":null,"abstract":false,"id":30,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"ArithFtnEnum","instanceClass":null,"id":31,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"AggregationFtnEnum","instanceClass":null,"id":32,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"PatternFtnEnum","instanceClass":null,"id":33,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"GeneralExpression","instanceClass":null,"abstract":false,"id":34,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ContextPattern","instanceClass":null,"abstract":false,"id":35,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OutputTransformation","instanceClass":null,"abstract":false,"id":36,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"WhileTerm","instanceClass":null,"abstract":false,"id":37,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ConditionalTerm","instanceClass":null,"abstract":false,"id":38,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NaryTermOp","instanceClass":null,"abstract":true,"id":39,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SelfTerm","instanceClass":null,"abstract":false,"id":40,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CollectionFunction","instanceClass":null,"abstract":false,"id":41,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"CollectionFtnEnum","instanceClass":null,"id":42,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OnceTerm","instanceClass":null,"abstract":false,"id":43,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RangeTerm","instanceClass":null,"abstract":false,"id":44,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ModTerm","instanceClass":null,"abstract":false,"id":45,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ScheduleFunction","instanceClass":null,"abstract":false,"id":46,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AndEventTerm","instanceClass":null,"abstract":false,"id":47,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OrEventTerm","instanceClass":null,"abstract":false,"id":48,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NotEventTerm","instanceClass":null,"abstract":false,"id":49,"interface":false,"eClass":"EClass"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"resolveProxies":true,"lowerBound":1,"id":50,"derived":false},{"id":51,"eClass":"EGenericType"},{"id":52,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"variable","changeable":true,"resolveProxies":true,"lowerBound":1,"id":53,"derived":false},{"id":54,"eClass":"EGenericType"},{"id":55,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"left","changeable":true,"resolveProxies":true,"lowerBound":1,"id":56,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"right","changeable":true,"resolveProxies":true,"lowerBound":1,"id":57,"derived":false},{"id":58,"eClass":"EGenericType"},{"id":59,"eClass":"EGenericType"},{"id":60,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"term","changeable":true,"resolveProxies":true,"lowerBound":1,"id":61,"derived":false},{"id":62,"eClass":"EGenericType"},{"id":63,"eClass":"EGenericType"},{"id":64,"eClass":"EGenericType"},{"id":65,"eClass":"EGenericType"},{"id":66,"eClass":"EGenericType"},{"id":67,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"nrep","changeable":true,"lowerBound":1,"iD":false,"id":68,"derived":false},{"id":69,"eClass":"EGenericType"},{"id":70,"eClass":"EGenericType"},{"id":71,"eClass":"EGenericType"},{"id":72,"eClass":"EGenericType"},{"id":73,"eClass":"EGenericType"},{"id":74,"eClass":"EGenericType"},{"id":75,"eClass":"EGenericType"},{"id":76,"eClass":"EGenericType"},{"id":77,"eClass":"EGenericType"},{"id":78,"eClass":"EGenericType"},{"id":79,"eClass":"EGenericType"},{"id":80,"eClass":"EGenericType"},{"id":81,"eClass":"EGenericType"},{"id":82,"eClass":"EGenericType"},{"id":83,"eClass":"EGenericType"},{"id":84,"eClass":"EGenericType"},{"id":85,"eClass":"EGenericType"},{"id":86,"eClass":"EGenericType"},{"id":87,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":88,"derived":false},{"id":89,"eClass":"EGenericType"},{"id":90,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":91,"derived":false},{"id":92,"eClass":"EGenericType"},{"id":93,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":94,"derived":false},{"id":95,"eClass":"EGenericType"},{"id":96,"eClass":"EGenericType"},{"name":"POW","id":97,"value":0,"literal":"POW","eClass":"EEnumLiteral"},{"name":"SQRT","id":98,"value":1,"literal":"SQRT","eClass":"EEnumLiteral"},{"name":"EXP","id":99,"value":2,"literal":"EXP","eClass":"EEnumLiteral"},{"name":"ABS","id":100,"value":4,"literal":"ABS","eClass":"EEnumLiteral"},{"name":"AVG","id":101,"value":0,"literal":"AVG","eClass":"EEnumLiteral"},{"name":"MIN","id":102,"value":3,"literal":"MIN","eClass":"EEnumLiteral"},{"name":"MAX","id":103,"value":4,"literal":"MAX","eClass":"EEnumLiteral"},{"name":"COUNT","id":104,"value":5,"literal":"COUNT","eClass":"EEnumLiteral"},{"name":"SUM","id":105,"value":6,"literal":"SUM","eClass":"EEnumLiteral"},{"name":"DECREASING","id":106,"value":1,"literal":"DECREASING","eClass":"EEnumLiteral"},{"name":"INCREASING","id":107,"value":2,"literal":"INCREASING","eClass":"EEnumLiteral"},{"name":"STABLE","id":108,"value":7,"literal":"STABLE","eClass":"EEnumLiteral"},{"name":"EVENT_WHEN","id":109,"value":0,"literal":"EVENT_WHEN","eClass":"EEnumLiteral"},{"name":"UPDATE","id":110,"value":1,"literal":"UPDATE","eClass":"EEnumLiteral"},{"name":"PERIOD","id":111,"value":3,"literal":"PERIOD","eClass":"EEnumLiteral"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"term","changeable":true,"resolveProxies":true,"lowerBound":1,"id":112,"derived":false},{"id":113,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"term","changeable":true,"resolveProxies":true,"lowerBound":1,"id":114,"derived":false},{"id":115,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"term","changeable":true,"resolveProxies":true,"lowerBound":1,"id":116,"derived":false},{"id":117,"eClass":"EGenericType"},{"id":118,"eClass":"EGenericType"},{"id":119,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"terms","changeable":true,"resolveProxies":true,"lowerBound":0,"id":120,"derived":false},{"id":121,"eClass":"EGenericType"},{"id":122,"eClass":"EGenericType"},{"id":123,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":124,"derived":false},{"id":125,"eClass":"EGenericType"},{"id":126,"eClass":"EGenericType"},{"name":"FIRST","id":127,"value":0,"literal":"FIRST","eClass":"EEnumLiteral"},{"name":"LAST","id":128,"value":1,"literal":"LAST","eClass":"EEnumLiteral"},{"name":"AT","id":129,"value":2,"literal":"AT","eClass":"EEnumLiteral"},{"name":"SIZE","id":130,"value":3,"literal":"SIZE","eClass":"EEnumLiteral"},{"name":"IS_EMPTY","id":131,"value":4,"literal":"IS_EMPTY","eClass":"EEnumLiteral"},{"name":"INCLUDES","id":132,"value":5,"literal":"INCLUDES","eClass":"EEnumLiteral"},{"id":133,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"lowerBound","changeable":true,"lowerBound":1,"iD":false,"id":134,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"upperBound","changeable":true,"lowerBound":1,"iD":false,"id":135,"derived":false},{"id":136,"eClass":"EGenericType"},{"id":137,"eClass":"EGenericType"},{"id":138,"eClass":"EGenericType"},{"id":139,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"pattern","changeable":true,"lowerBound":1,"iD":false,"id":140,"derived":false},{"id":141,"eClass":"EGenericType"},{"id":142,"eClass":"EGenericType"},{"id":143,"eClass":"EGenericType"},{"id":144,"eClass":"EGenericType"},{"id":145,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":0,"target":8},{"source":0,"target":9},{"source":0,"target":10},{"source":0,"target":11},{"source":0,"target":12},{"source":0,"target":13},{"source":0,"target":14},{"source":0,"target":15},{"source":0,"target":16},{"source":0,"target":17},{"source":0,"target":18},{"source":0,"target":19},{"source":0,"target":20},{"source":0,"target":21},{"source":0,"target":22},{"source":0,"target":23},{"source":0,"target":24},{"source":0,"target":25},{"source":0,"target":26},{"source":0,"target":27},{"source":0,"target":28},{"source":0,"target":29},{"source":0,"target":30},{"source":0,"target":31},{"source":0,"target":32},{"source":0,"target":33},{"source":0,"target":34},{"source":0,"target":35},{"source":0,"target":36},{"source":0,"target":37},{"source":0,"target":38},{"source":0,"target":39},{"source":0,"target":40},{"source":0,"target":41},{"source":0,"target":42},{"source":0,"target":43},{"source":0,"target":44},{"source":0,"target":45},{"source":0,"target":46},{"source":0,"target":47},{"source":0,"target":48},{"source":0,"target":49},{"source":1,"target":0},{"source":2,"target":0},{"source":2,"target":1},{"source":2,"target":50},{"source":2,"target":51},{"source":50,"target":52},{"source":50,"target":2},{"source":51,"target":1},{"source":3,"target":0},{"source":3,"target":1},{"source":3,"target":53},{"source":3,"target":54},{"source":53,"target":55},{"source":53,"target":3},{"source":54,"target":1},{"source":4,"target":0},{"source":4,"target":1},{"source":4,"target":56},{"source":4,"target":57},{"source":4,"target":58},{"source":56,"target":1},{"source":56,"target":59},{"source":56,"target":4},{"source":59,"target":1},{"source":57,"target":1},{"source":57,"target":60},{"source":57,"target":4},{"source":60,"target":1},{"source":58,"target":1},{"source":5,"target":0},{"source":5,"target":1},{"source":5,"target":61},{"source":5,"target":62},{"source":61,"target":1},{"source":61,"target":63},{"source":61,"target":5},{"source":63,"target":1},{"source":62,"target":1},{"source":6,"target":0},{"source":6,"target":39},{"source":6,"target":64},{"source":64,"target":39},{"source":7,"target":0},{"source":7,"target":5},{"source":7,"target":65},{"source":65,"target":5},{"source":8,"target":0},{"source":8,"target":5},{"source":8,"target":66},{"source":66,"target":5},{"source":9,"target":0},{"source":9,"target":7},{"source":9,"target":67},{"source":67,"target":7},{"source":10,"target":0},{"source":10,"target":8},{"source":10,"target":68},{"source":10,"target":69},{"source":68,"target":70},{"source":68,"target":10},{"source":69,"target":8},{"source":11,"target":0},{"source":11,"target":4},{"source":11,"target":71},{"source":71,"target":4},{"source":12,"target":0},{"source":12,"target":4},{"source":12,"target":72},{"source":72,"target":4},{"source":13,"target":0},{"source":13,"target":4},{"source":13,"target":73},{"source":73,"target":4},{"source":14,"target":0},{"source":14,"target":4},{"source":14,"target":74},{"source":74,"target":4},{"source":15,"target":0},{"source":15,"target":11},{"source":15,"target":75},{"source":75,"target":11},{"source":16,"target":0},{"source":16,"target":11},{"source":16,"target":76},{"source":76,"target":11},{"source":17,"target":0},{"source":17,"target":11},{"source":17,"target":77},{"source":77,"target":11},{"source":18,"target":0},{"source":18,"target":11},{"source":18,"target":78},{"source":78,"target":11},{"source":19,"target":0},{"source":19,"target":13},{"source":19,"target":79},{"source":79,"target":13},{"source":20,"target":0},{"source":20,"target":13},{"source":20,"target":80},{"source":80,"target":13},{"source":21,"target":0},{"source":21,"target":12},{"source":21,"target":81},{"source":81,"target":12},{"source":22,"target":0},{"source":22,"target":12},{"source":22,"target":82},{"source":82,"target":12},{"source":23,"target":0},{"source":23,"target":12},{"source":23,"target":83},{"source":83,"target":12},{"source":24,"target":0},{"source":24,"target":12},{"source":24,"target":84},{"source":84,"target":12},{"source":25,"target":0},{"source":25,"target":12},{"source":25,"target":85},{"source":85,"target":12},{"source":26,"target":0},{"source":26,"target":12},{"source":26,"target":86},{"source":86,"target":12},{"source":27,"target":0},{"source":27,"target":14},{"source":27,"target":87},{"source":87,"target":14},{"source":28,"target":0},{"source":28,"target":6},{"source":28,"target":88},{"source":28,"target":89},{"source":88,"target":31},{"source":88,"target":90},{"source":88,"target":28},{"source":90,"target":31},{"source":89,"target":6},{"source":29,"target":0},{"source":29,"target":6},{"source":29,"target":91},{"source":29,"target":92},{"source":91,"target":32},{"source":91,"target":93},{"source":91,"target":29},{"source":93,"target":32},{"source":92,"target":6},{"source":30,"target":0},{"source":30,"target":6},{"source":30,"target":94},{"source":30,"target":95},{"source":94,"target":33},{"source":94,"target":96},{"source":94,"target":30},{"source":96,"target":33},{"source":95,"target":6},{"source":31,"target":0},{"source":31,"target":97},{"source":31,"target":98},{"source":31,"target":99},{"source":31,"target":100},{"source":97,"target":31},{"source":98,"target":31},{"source":99,"target":31},{"source":100,"target":31},{"source":32,"target":0},{"source":32,"target":101},{"source":32,"target":102},{"source":32,"target":103},{"source":32,"target":104},{"source":32,"target":105},{"source":32,"target":106},{"source":32,"target":107},{"source":32,"target":108},{"source":101,"target":32},{"source":102,"target":32},{"source":103,"target":32},{"source":104,"target":32},{"source":105,"target":32},{"source":106,"target":32},{"source":107,"target":32},{"source":108,"target":32},{"source":33,"target":0},{"source":33,"target":109},{"source":33,"target":110},{"source":33,"target":111},{"source":109,"target":33},{"source":110,"target":33},{"source":111,"target":33},{"source":34,"target":0},{"source":34,"target":112},{"source":112,"target":1},{"source":112,"target":113},{"source":112,"target":34},{"source":113,"target":1},{"source":35,"target":0},{"source":35,"target":114},{"source":114,"target":1},{"source":114,"target":115},{"source":114,"target":35},{"source":115,"target":1},{"source":36,"target":0},{"source":36,"target":116},{"source":116,"target":1},{"source":116,"target":117},{"source":116,"target":36},{"source":117,"target":1},{"source":37,"target":0},{"source":37,"target":14},{"source":37,"target":118},{"source":118,"target":14},{"source":38,"target":0},{"source":38,"target":39},{"source":38,"target":119},{"source":119,"target":39},{"source":39,"target":0},{"source":39,"target":1},{"source":39,"target":120},{"source":39,"target":121},{"source":120,"target":1},{"source":120,"target":122},{"source":120,"target":39},{"source":122,"target":1},{"source":121,"target":1},{"source":40,"target":0},{"source":40,"target":1},{"source":40,"target":123},{"source":123,"target":1},{"source":41,"target":0},{"source":41,"target":6},{"source":41,"target":124},{"source":41,"target":125},{"source":124,"target":42},{"source":124,"target":126},{"source":124,"target":41},{"source":126,"target":42},{"source":125,"target":6},{"source":42,"target":0},{"source":42,"target":127},{"source":42,"target":128},{"source":42,"target":129},{"source":42,"target":130},{"source":42,"target":131},{"source":42,"target":132},{"source":127,"target":42},{"source":128,"target":42},{"source":129,"target":42},{"source":130,"target":42},{"source":131,"target":42},{"source":132,"target":42},{"source":43,"target":0},{"source":43,"target":8},{"source":43,"target":133},{"source":133,"target":8},{"source":44,"target":0},{"source":44,"target":8},{"source":44,"target":134},{"source":44,"target":135},{"source":44,"target":136},{"source":134,"target":137},{"source":134,"target":44},{"source":135,"target":138},{"source":135,"target":44},{"source":136,"target":8},{"source":45,"target":0},{"source":45,"target":11},{"source":45,"target":139},{"source":139,"target":11},{"source":46,"target":0},{"source":46,"target":6},{"source":46,"target":140},{"source":46,"target":141},{"source":140,"target":142},{"source":140,"target":46},{"source":141,"target":6},{"source":47,"target":0},{"source":47,"target":14},{"source":47,"target":143},{"source":143,"target":14},{"source":48,"target":0},{"source":48,"target":14},{"source":48,"target":144},{"source":144,"target":14},{"source":49,"target":0},{"source":49,"target":8},{"source":49,"target":145},{"source":145,"target":8}],"multigraph":true} |
true | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0"
xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="subsumption"
nsURI="http://subsumption/1.0" nsPrefix="subsumption">
<eClassifiers xsi:type="ecore:EClass" name="System">
<eStructuralFeatures xsi:type="ecore:EReference" name="modules" upperBound="-1"
eType="#//Module" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
defaultValueLiteral="sample"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Module">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="inputs" upperBound="-1"
eType="#//Input" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="outputs" upperBound="-1"
eType="#//Output" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="period" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFloat"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Output">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="sink" upperBound="-1" eType="#//Input"
eOpposite="#//Input/source"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="activates" upperBound="-1"
eType="#//Modifier" eOpposite="#//Modifier/controlledBy"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="inhibitedBy" upperBound="-1"
eType="#//Inhibitor" containment="true" eOpposite="#//Inhibitor/inhibits"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Input">
<eStructuralFeatures xsi:type="ecore:EReference" name="source" eType="#//Output"
eOpposite="#//Output/sink"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="suppressedBy" upperBound="-1"
eType="#//Suppressor" containment="true" eOpposite="#//Suppressor/suppress"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Suppressor" eSuperTypes="#//Modifier">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="time" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFloat"
defaultValueLiteral="0.0"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="suppress" lowerBound="1"
eType="#//Input" eOpposite="#//Input/suppressedBy"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Inhibitor" eSuperTypes="#//Modifier">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="time" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFloat"
defaultValueLiteral="0.0"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="inhibits" lowerBound="1"
eType="#//Output" eOpposite="#//Output/inhibitedBy"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Modifier" abstract="true">
<eStructuralFeatures xsi:type="ecore:EReference" name="controlledBy" lowerBound="1"
eType="#//Output" eOpposite="#//Output/activates"/>
</eClassifiers>
</ecore:EPackage>
| github:ecore:/data/gssi/metamodel-dataset-analysis-toolchain/metamodels/subsumption.ecore | ecore | subsumption
System
modules
name
sample
Module
name
inputs
outputs
period
Output
name
sink
activates
inhibitedBy
Input
source
suppressedBy
name
Suppressor
time
0.0
suppress
Inhibitor
time
0.0
inhibits
Modifier
controlledBy | null | {"directed":true,"nodes":[{"nsPrefix":"subsumption","nsURI":"http://subsumption/1.0","name":"subsumption","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"System","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Module","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Output","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Input","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Suppressor","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Inhibitor","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Modifier","instanceClass":null,"abstract":true,"id":7,"interface":false,"eClass":"EClass"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"modules","changeable":true,"resolveProxies":true,"lowerBound":0,"id":8,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":"sample","volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"sample","unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":9,"derived":false},{"id":10,"eClass":"EGenericType"},{"id":11,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":12,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"inputs","changeable":true,"resolveProxies":true,"lowerBound":0,"id":13,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"outputs","changeable":true,"resolveProxies":true,"lowerBound":0,"id":14,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"period","changeable":true,"lowerBound":0,"iD":false,"id":15,"derived":false},{"id":16,"eClass":"EGenericType"},{"id":17,"eClass":"EGenericType"},{"id":18,"eClass":"EGenericType"},{"id":19,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":20,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"sink","changeable":true,"resolveProxies":true,"lowerBound":0,"id":21,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"activates","changeable":true,"resolveProxies":true,"lowerBound":0,"id":22,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"inhibitedBy","changeable":true,"resolveProxies":true,"lowerBound":0,"id":23,"derived":false},{"id":24,"eClass":"EGenericType"},{"id":25,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"source","changeable":true,"resolveProxies":true,"lowerBound":0,"id":26,"derived":false},{"id":27,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"controlledBy","changeable":true,"resolveProxies":true,"lowerBound":1,"id":28,"derived":false},{"id":29,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"inhibits","changeable":true,"resolveProxies":true,"lowerBound":1,"id":30,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"suppressedBy","changeable":true,"resolveProxies":true,"lowerBound":0,"id":31,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":32,"derived":false},{"id":33,"eClass":"EGenericType"},{"id":34,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"suppress","changeable":true,"resolveProxies":true,"lowerBound":1,"id":35,"derived":false},{"id":36,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"0.0","unsettable":false,"transient":false,"unique":true,"name":"time","changeable":true,"lowerBound":1,"iD":false,"id":37,"derived":false},{"id":38,"eClass":"EGenericType"},{"id":39,"eClass":"EGenericType"},{"id":40,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"0.0","unsettable":false,"transient":false,"unique":true,"name":"time","changeable":true,"lowerBound":1,"iD":false,"id":41,"derived":false},{"id":42,"eClass":"EGenericType"},{"id":43,"eClass":"EGenericType"},{"id":44,"eClass":"EGenericType"},{"id":45,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":1,"target":0},{"source":1,"target":8},{"source":1,"target":9},{"source":8,"target":2},{"source":8,"target":10},{"source":8,"target":1},{"source":10,"target":2},{"source":9,"target":11},{"source":9,"target":1},{"source":2,"target":0},{"source":2,"target":12},{"source":2,"target":13},{"source":2,"target":14},{"source":2,"target":15},{"source":12,"target":16},{"source":12,"target":2},{"source":13,"target":4},{"source":13,"target":17},{"source":13,"target":2},{"source":17,"target":4},{"source":14,"target":3},{"source":14,"target":18},{"source":14,"target":2},{"source":18,"target":3},{"source":15,"target":19},{"source":15,"target":2},{"source":3,"target":0},{"source":3,"target":20},{"source":3,"target":21},{"source":3,"target":22},{"source":3,"target":23},{"source":20,"target":24},{"source":20,"target":3},{"source":21,"target":4},{"source":21,"target":25},{"source":21,"target":3},{"source":21,"target":26},{"source":25,"target":4},{"source":22,"target":7},{"source":22,"target":27},{"source":22,"target":3},{"source":22,"target":28},{"source":27,"target":7},{"source":23,"target":6},{"source":23,"target":29},{"source":23,"target":3},{"source":23,"target":30},{"source":29,"target":6},{"source":4,"target":0},{"source":4,"target":26},{"source":4,"target":31},{"source":4,"target":32},{"source":26,"target":3},{"source":26,"target":33},{"source":26,"target":4},{"source":26,"target":21},{"source":33,"target":3},{"source":31,"target":5},{"source":31,"target":34},{"source":31,"target":4},{"source":31,"target":35},{"source":34,"target":5},{"source":32,"target":36},{"source":32,"target":4},{"source":5,"target":0},{"source":5,"target":7},{"source":5,"target":37},{"source":5,"target":35},{"source":5,"target":38},{"source":37,"target":39},{"source":37,"target":5},{"source":35,"target":4},{"source":35,"target":40},{"source":35,"target":5},{"source":35,"target":31},{"source":40,"target":4},{"source":38,"target":7},{"source":6,"target":0},{"source":6,"target":7},{"source":6,"target":41},{"source":6,"target":30},{"source":6,"target":42},{"source":41,"target":43},{"source":41,"target":6},{"source":30,"target":3},{"source":30,"target":44},{"source":30,"target":6},{"source":30,"target":23},{"source":44,"target":3},{"source":42,"target":7},{"source":7,"target":0},{"source":7,"target":28},{"source":28,"target":3},{"source":28,"target":45},{"source":28,"target":7},{"source":28,"target":22},{"source":45,"target":3}],"multigraph":true} |
true | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0"
xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="study"
nsURI="http:///org/generationcp/model/core/study.ecore" nsPrefix="org.generationcp.model.core.study">
<eClassifiers xsi:type="ecore:EClass" name="Effect" eSuperTypes="identification.ecore#//SimpleIdentifier">
<eStructuralFeatures xsi:type="ecore:EReference" name="study" lowerBound="1" eType="#//Study"
eOpposite="#//Study/effects"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="representations" upperBound="-1"
eType="#//Representation" eOpposite="#//Representation/effect"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ExperimentalBatch" eSuperTypes="#//Effect"/>
<eClassifiers xsi:type="ecore:EClass" name="Factor" eSuperTypes="feature.ecore#//Feature">
<eStructuralFeatures xsi:type="ecore:EReference" name="study" eType="#//Study"
eOpposite="#//Study/factors"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="levels" lowerBound="1"
upperBound="-1" eType="ecore:EClass constraint.ecore#//Constraint"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Representation" eSuperTypes="identification.ecore#//SimpleIdentifier">
<eStructuralFeatures xsi:type="ecore:EReference" name="effect" lowerBound="1"
eType="#//Effect" eOpposite="#//Effect/representations"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="factors" upperBound="-1"
eType="#//Factor"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="variates" upperBound="-1"
eType="#//Variate"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Study" eSuperTypes="core.ecore#//Entity">
<eStructuralFeatures xsi:type="ecore:EReference" name="project" eType="ecore:EClass organization.ecore#//Project"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="effects" lowerBound="1"
upperBound="-1" eType="#//Effect" eOpposite="#//Effect/study"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="factors" lowerBound="1"
upperBound="-1" eType="#//Factor" eOpposite="#//Factor/study"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="variates" lowerBound="1"
upperBound="-1" eType="#//Variate" eOpposite="#//Variate/study"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="investigators" lowerBound="1"
upperBound="-1" eType="ecore:EClass organization.ecore#//Contact"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="observationUnits" upperBound="-1"
eType="ecore:EClass value.ecore#//ValueSet"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="startDate" eType="ecore:EClass value.ecore#//TimeValue"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="endDate" eType="ecore:EClass value.ecore#//TimeValue"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="StudyFeature" eSuperTypes="feature.ecore#//Feature">
<eStructuralFeatures xsi:type="ecore:EReference" name="study" lowerBound="1" eType="#//Study"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Variate" eSuperTypes="feature.ecore#//Feature">
<eStructuralFeatures xsi:type="ecore:EReference" name="study" eType="#//Study"
eOpposite="#//Study/variates"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="dataRange" lowerBound="1"
upperBound="-1" eType="ecore:EClass constraint.ecore#//Constraint"/>
</eClassifiers>
</ecore:EPackage>
| github:ecore:/data/gssi/metamodel-dataset-analysis-toolchain/metamodels/study.ecore | ecore | study
Effect
study
representations
ExperimentalBatch
Factor
study
levels
Representation
effect
factors
variates
Study
project
effects
factors
variates
investigators
observationUnits
startDate
endDate
StudyFeature
study
Variate
study
dataRange | null | {"directed":true,"nodes":[{"nsPrefix":"org.generationcp.model.core.study","nsURI":"http:///org/generationcp/model/core/study.ecore","name":"study","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Effect","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExperimentalBatch","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Factor","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Representation","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Study","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StudyFeature","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Variate","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"study","changeable":true,"resolveProxies":true,"lowerBound":1,"id":8,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"representations","changeable":true,"resolveProxies":true,"lowerBound":0,"id":9,"derived":false},{"id":10,"eClass":"EGenericType"},{"id":11,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"effects","changeable":true,"resolveProxies":true,"lowerBound":1,"id":12,"derived":false},{"id":13,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"effect","changeable":true,"resolveProxies":true,"lowerBound":1,"id":14,"derived":false},{"id":15,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"study","changeable":true,"resolveProxies":true,"lowerBound":0,"id":16,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"levels","changeable":true,"resolveProxies":true,"lowerBound":1,"id":17,"derived":false},{"id":18,"eClass":"EGenericType"},{"id":19,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"factors","changeable":true,"resolveProxies":true,"lowerBound":1,"id":20,"derived":false},{"id":21,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"factors","changeable":true,"resolveProxies":true,"lowerBound":0,"id":22,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"variates","changeable":true,"resolveProxies":true,"lowerBound":0,"id":23,"derived":false},{"id":24,"eClass":"EGenericType"},{"id":25,"eClass":"EGenericType"},{"id":26,"eClass":"EGenericType"},{"id":27,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"project","changeable":true,"resolveProxies":true,"lowerBound":0,"id":28,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"variates","changeable":true,"resolveProxies":true,"lowerBound":1,"id":29,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"investigators","changeable":true,"resolveProxies":true,"lowerBound":1,"id":30,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"observationUnits","changeable":true,"resolveProxies":true,"lowerBound":0,"id":31,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"startDate","changeable":true,"resolveProxies":true,"lowerBound":0,"id":32,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"endDate","changeable":true,"resolveProxies":true,"lowerBound":0,"id":33,"derived":false},{"id":34,"eClass":"EGenericType"},{"id":35,"eClass":"EGenericType"},{"id":36,"eClass":"EGenericType"},{"id":37,"eClass":"EGenericType"},{"id":38,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"study","changeable":true,"resolveProxies":true,"lowerBound":0,"id":39,"derived":false},{"id":40,"eClass":"EGenericType"},{"id":41,"eClass":"EGenericType"},{"id":42,"eClass":"EGenericType"},{"id":43,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"study","changeable":true,"resolveProxies":true,"lowerBound":1,"id":44,"derived":false},{"id":45,"eClass":"EGenericType"},{"id":46,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"dataRange","changeable":true,"resolveProxies":true,"lowerBound":1,"id":47,"derived":false},{"id":48,"eClass":"EGenericType"},{"id":49,"eClass":"EGenericType"},{"id":50,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":1,"target":0},{"source":1,"target":8},{"source":1,"target":9},{"source":1,"target":10},{"source":8,"target":5},{"source":8,"target":11},{"source":8,"target":1},{"source":8,"target":12},{"source":11,"target":5},{"source":9,"target":4},{"source":9,"target":13},{"source":9,"target":1},{"source":9,"target":14},{"source":13,"target":4},{"source":2,"target":0},{"source":2,"target":1},{"source":2,"target":15},{"source":15,"target":1},{"source":3,"target":0},{"source":3,"target":16},{"source":3,"target":17},{"source":3,"target":18},{"source":16,"target":5},{"source":16,"target":19},{"source":16,"target":3},{"source":16,"target":20},{"source":19,"target":5},{"source":17,"target":21},{"source":17,"target":3},{"source":4,"target":0},{"source":4,"target":14},{"source":4,"target":22},{"source":4,"target":23},{"source":4,"target":24},{"source":14,"target":1},{"source":14,"target":25},{"source":14,"target":4},{"source":14,"target":9},{"source":25,"target":1},{"source":22,"target":3},{"source":22,"target":26},{"source":22,"target":4},{"source":26,"target":3},{"source":23,"target":7},{"source":23,"target":27},{"source":23,"target":4},{"source":27,"target":7},{"source":5,"target":0},{"source":5,"target":28},{"source":5,"target":12},{"source":5,"target":20},{"source":5,"target":29},{"source":5,"target":30},{"source":5,"target":31},{"source":5,"target":32},{"source":5,"target":33},{"source":5,"target":34},{"source":28,"target":35},{"source":28,"target":5},{"source":12,"target":1},{"source":12,"target":36},{"source":12,"target":5},{"source":12,"target":8},{"source":36,"target":1},{"source":20,"target":3},{"source":20,"target":37},{"source":20,"target":5},{"source":20,"target":16},{"source":37,"target":3},{"source":29,"target":7},{"source":29,"target":38},{"source":29,"target":5},{"source":29,"target":39},{"source":38,"target":7},{"source":30,"target":40},{"source":30,"target":5},{"source":31,"target":41},{"source":31,"target":5},{"source":32,"target":42},{"source":32,"target":5},{"source":33,"target":43},{"source":33,"target":5},{"source":6,"target":0},{"source":6,"target":44},{"source":6,"target":45},{"source":44,"target":5},{"source":44,"target":46},{"source":44,"target":6},{"source":46,"target":5},{"source":7,"target":0},{"source":7,"target":39},{"source":7,"target":47},{"source":7,"target":48},{"source":39,"target":5},{"source":39,"target":49},{"source":39,"target":7},{"source":39,"target":29},{"source":49,"target":5},{"source":47,"target":50},{"source":47,"target":7}],"multigraph":true} |
true | <?xml version="1.0" encoding="ISO-8859-1"?>
<xmi:XMI xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore">
<ecore:EPackage name="Common_Behavior">
<eClassifiers xsi:type="ecore:EClass" name="Signal" eSuperTypes="/4/Classifier"/>
<eClassifiers xsi:type="ecore:EClass" name="Action" abstract="true" eSuperTypes="/4/ModelElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="actualArgument" upperBound="-1" eType="/0/Argument" containment="true" eOpposite="/0/Argument/action"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="actionSequence" ordered="false" eType="/0/ActionSequence" eOpposite="/0/ActionSequence/action"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="recurrence" ordered="false" eType="/1/IterationExpression" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="target" ordered="false" eType="/1/ObjectSetExpression" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isAsynchronous" ordered="false" unique="false" lowerBound="1" eType="/3/Boolean"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="script" ordered="false" eType="/1/ActionExpression" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CreateAction" eSuperTypes="/0/Action">
<eStructuralFeatures xsi:type="ecore:EReference" name="instantiation" ordered="false" lowerBound="1" eType="/4/Classifier"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="DestroyAction" eSuperTypes="/0/Action"/>
<eClassifiers xsi:type="ecore:EClass" name="UninterpretedAction" eSuperTypes="/0/Action"/>
<eClassifiers xsi:type="ecore:EClass" name="CallAction" eSuperTypes="/0/Action">
<eStructuralFeatures xsi:type="ecore:EReference" name="operation" ordered="false" lowerBound="1" eType="/4/Operation"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="SendAction" eSuperTypes="/0/Action">
<eStructuralFeatures xsi:type="ecore:EReference" name="signal" ordered="false" lowerBound="1" eType="/0/Signal"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ActionSequence" eSuperTypes="/0/Action">
<eStructuralFeatures xsi:type="ecore:EReference" name="action" upperBound="-1" eType="/0/Action" containment="true" eOpposite="/0/Action/actionSequence"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Argument" eSuperTypes="/4/ModelElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="action" ordered="false" eType="/0/Action" eOpposite="/0/Action/actualArgument"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="value" ordered="false" lowerBound="1" eType="/1/Expression" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Reception" eSuperTypes="/4/BehavioralFeature">
<eStructuralFeatures xsi:type="ecore:EReference" name="signal" ordered="false" lowerBound="1" eType="/0/Signal"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="specification" ordered="false" unique="false" eType="/3/String"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isRoot" ordered="false" unique="false" lowerBound="1" eType="/3/Boolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isLeaf" ordered="false" unique="false" lowerBound="1" eType="/3/Boolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isAbstract" ordered="false" unique="false" lowerBound="1" eType="/3/Boolean"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ReturnAction" eSuperTypes="/0/Action"/>
<eClassifiers xsi:type="ecore:EClass" name="TerminateAction" eSuperTypes="/0/Action"/>
<eClassifiers xsi:type="ecore:EClass" name="Exception" eSuperTypes="/0/Signal"/>
</ecore:EPackage>
<ecore:EPackage name="Data_Types">
<eClassifiers xsi:type="ecore:EEnum" name="CallConcurrencyKind">
<eLiterals name="cck_sequential" value="1"/>
<eLiterals name="cck_guarded" value="2"/>
<eLiterals name="cck_concurrent" value="3"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="ParameterDirectionKind">
<eLiterals name="pdk_in" value="1"/>
<eLiterals name="pdk_inout" value="2"/>
<eLiterals name="pdk_out" value="3"/>
<eLiterals name="pdk_return" value="4"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="ScopeKind">
<eLiterals name="sk_instance" value="1"/>
<eLiterals name="sk_classifier" value="2"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="VisibilityKind">
<eLiterals name="vk_public" value="1"/>
<eLiterals name="vk_protected" value="2"/>
<eLiterals name="vk_private" value="3"/>
<eLiterals name="vk_package" value="4"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Expression">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="language" ordered="false" unique="false" eType="/3/String"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="body" ordered="false" unique="false" lowerBound="1" eType="/3/String"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="BooleanExpression" eSuperTypes="/1/Expression"/>
<eClassifiers xsi:type="ecore:EClass" name="ObjectSetExpression" eSuperTypes="/1/Expression"/>
<eClassifiers xsi:type="ecore:EClass" name="ActionExpression" eSuperTypes="/1/Expression"/>
<eClassifiers xsi:type="ecore:EClass" name="IterationExpression" eSuperTypes="/1/Expression"/>
<eClassifiers xsi:type="ecore:EClass" name="TimeExpression" eSuperTypes="/1/Expression"/>
<eClassifiers xsi:type="ecore:EEnum" name="PseudostateKind">
<eLiterals name="pk_choice" value="1"/>
<eLiterals name="pk_deepHistory" value="2"/>
<eLiterals name="pk_fork" value="3"/>
<eLiterals name="pk_initial" value="4"/>
<eLiterals name="pk_join" value="5"/>
<eLiterals name="pk_junction" value="6"/>
<eLiterals name="pk_shallowHistory" value="7"/>
</eClassifiers>
</ecore:EPackage>
<ecore:EPackage name="State_Machines">
<eClassifiers xsi:type="ecore:EClass" name="StateMachine" eSuperTypes="/4/ModelElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="context" ordered="false" eType="/4/ModelElement"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="submachineState" ordered="false" upperBound="-1" eType="/2/SubmachineState" eOpposite="/2/SubmachineState/submachine"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="top" ordered="false" lowerBound="1" eType="/2/State" containment="true" eOpposite="/2/State/stateMachine"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="transitions" ordered="false" upperBound="-1" eType="/2/Transition" containment="true" eOpposite="/2/Transition/stateMachine"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Event" abstract="true" eSuperTypes="/4/ModelElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="parameter" upperBound="-1" eType="/4/Parameter" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="StateVertex" abstract="true" eSuperTypes="/4/ModelElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="container" ordered="false" eType="/2/CompositeState" eOpposite="/2/CompositeState/subvertex"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="incoming" ordered="false" upperBound="-1" eType="/2/Transition" eOpposite="/2/Transition/target"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="outgoing" ordered="false" upperBound="-1" eType="/2/Transition" eOpposite="/2/Transition/source"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="State" abstract="true" eSuperTypes="/2/StateVertex">
<eStructuralFeatures xsi:type="ecore:EReference" name="deferrableEvent" ordered="false" upperBound="-1" eType="/2/Event"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="internalTransition" ordered="false" upperBound="-1" eType="/2/Transition" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="exit" ordered="false" eType="/0/Action" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="doActivity" ordered="false" eType="/0/Action" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="entry" ordered="false" eType="/0/Action" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="stateMachine" ordered="false" eType="/2/StateMachine" eOpposite="/2/StateMachine/top"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="TimeEvent" eSuperTypes="/2/Event">
<eStructuralFeatures xsi:type="ecore:EReference" name="when" ordered="false" lowerBound="1" eType="/1/TimeExpression" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CallEvent" eSuperTypes="/2/Event">
<eStructuralFeatures xsi:type="ecore:EReference" name="operation" ordered="false" lowerBound="1" eType="/4/Operation"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="SignalEvent" eSuperTypes="/2/Event">
<eStructuralFeatures xsi:type="ecore:EReference" name="signal" ordered="false" lowerBound="1" eType="/0/Signal"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Transition" eSuperTypes="/4/ModelElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="target" ordered="false" lowerBound="1" eType="/2/StateVertex" eOpposite="/2/StateVertex/incoming"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="trigger" ordered="false" eType="/2/Event"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="stateMachine" ordered="false" eType="/2/StateMachine" eOpposite="/2/StateMachine/transitions"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="source" ordered="false" lowerBound="1" eType="/2/StateVertex" eOpposite="/2/StateVertex/outgoing"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="effect" ordered="false" eType="/0/Action" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="guard" ordered="false" eType="/2/Guard" containment="true" eOpposite="/2/Guard/transition"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CompositeState" eSuperTypes="/2/State">
<eStructuralFeatures xsi:type="ecore:EReference" name="subvertex" ordered="false" upperBound="-1" eType="/2/StateVertex" containment="true" eOpposite="/2/StateVertex/container"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isConcurrent" ordered="false" unique="false" lowerBound="1" eType="/3/Boolean"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ChangeEvent" eSuperTypes="/2/Event">
<eStructuralFeatures xsi:type="ecore:EReference" name="changeExpression" ordered="false" lowerBound="1" eType="/1/BooleanExpression" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Guard" eSuperTypes="/4/ModelElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="transition" ordered="false" lowerBound="1" eType="/2/Transition" eOpposite="/2/Transition/guard"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="expression" ordered="false" lowerBound="1" eType="/1/BooleanExpression" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Pseudostate" eSuperTypes="/2/StateVertex">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="kind" ordered="false" unique="false" lowerBound="1" eType="/1/PseudostateKind"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="SimpleState" eSuperTypes="/2/State"/>
<eClassifiers xsi:type="ecore:EClass" name="SubmachineState" eSuperTypes="/2/CompositeState">
<eStructuralFeatures xsi:type="ecore:EReference" name="submachine" ordered="false" lowerBound="1" eType="/2/StateMachine" eOpposite="/2/StateMachine/submachineState"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="SynchState" eSuperTypes="/2/StateVertex">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="bound" ordered="false" unique="false" lowerBound="1" eType="/3/Integer"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="StubState" eSuperTypes="/2/StateVertex">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="referenceState" ordered="false" unique="false" lowerBound="1" eType="/3/String"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="FinalState" eSuperTypes="/2/State"/>
</ecore:EPackage>
<ecore:EPackage name="PrimitiveTypes">
<eClassifiers xsi:type="ecore:EDataType" name="Boolean"/>
<eClassifiers xsi:type="ecore:EDataType" name="Float"/>
<eClassifiers xsi:type="ecore:EDataType" name="Integer"/>
<eClassifiers xsi:type="ecore:EDataType" name="Long"/>
<eClassifiers xsi:type="ecore:EDataType" name="String"/>
<eClassifiers xsi:type="ecore:EDataType" name="Double"/>
</ecore:EPackage>
<ecore:EPackage name="Core">
<eClassifiers xsi:type="ecore:EClass" name="Element" abstract="true"/>
<eClassifiers xsi:type="ecore:EClass" name="ModelElement" abstract="true" eSuperTypes="/4/Element">
<eStructuralFeatures xsi:type="ecore:EReference" name="namespace" ordered="false" eType="/4/Namespace" eOpposite="/4/Namespace/ownedElement"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" ordered="false" unique="false" eType="/3/String"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="visibility" ordered="false" unique="false" eType="/1/VisibilityKind"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isSpecification" ordered="false" unique="false" lowerBound="1" eType="/3/Boolean"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="GeneralizableElement" abstract="true" eSuperTypes="/4/ModelElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="generalization" ordered="false" upperBound="-1" eType="/4/Generalization" eOpposite="/4/Generalization/child"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isRoot" ordered="false" unique="false" lowerBound="1" eType="/3/Boolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isLeaf" ordered="false" unique="false" lowerBound="1" eType="/3/Boolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isAbstract" ordered="false" unique="false" lowerBound="1" eType="/3/Boolean"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Namespace" abstract="true" eSuperTypes="/4/ModelElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="ownedElement" ordered="false" upperBound="-1" eType="/4/ModelElement" containment="true" eOpposite="/4/ModelElement/namespace"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Classifier" abstract="true" eSuperTypes="/4/GeneralizableElement /4/Namespace">
<eStructuralFeatures xsi:type="ecore:EReference" name="powertypeRange" ordered="false" upperBound="-1" eType="/4/Generalization" eOpposite="/4/Generalization/powertype"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="feature" upperBound="-1" eType="/4/Feature" containment="true" eOpposite="/4/Feature/owner"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Feature" abstract="true" eSuperTypes="/4/ModelElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="owner" ordered="false" eType="/4/Classifier" eOpposite="/4/Classifier/feature"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="ownerScope" ordered="false" unique="false" lowerBound="1" eType="/1/ScopeKind"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Relationship" abstract="true" eSuperTypes="/4/ModelElement"/>
<eClassifiers xsi:type="ecore:EClass" name="BehavioralFeature" abstract="true" eSuperTypes="/4/Feature">
<eStructuralFeatures xsi:type="ecore:EReference" name="parameter" upperBound="-1" eType="/4/Parameter" containment="true" eOpposite="/4/Parameter/behavioralFeature"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isQuery" ordered="false" unique="false" lowerBound="1" eType="/3/Boolean"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Operation" eSuperTypes="/4/BehavioralFeature">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="concurrency" ordered="false" unique="false" eType="/1/CallConcurrencyKind"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isRoot" ordered="false" unique="false" lowerBound="1" eType="/3/Boolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isLeaf" ordered="false" unique="false" lowerBound="1" eType="/3/Boolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isAbstract" ordered="false" unique="false" lowerBound="1" eType="/3/Boolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="specification" ordered="false" unique="false" eType="/3/String"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Parameter" eSuperTypes="/4/ModelElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="type" ordered="false" lowerBound="1" eType="/4/Classifier"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="behavioralFeature" ordered="false" eType="/4/BehavioralFeature" eOpposite="/4/BehavioralFeature/parameter"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="defaultValue" ordered="false" eType="/1/Expression" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="kind" ordered="false" unique="false" lowerBound="1" eType="/1/ParameterDirectionKind"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Generalization" eSuperTypes="/4/Relationship">
<eStructuralFeatures xsi:type="ecore:EReference" name="parent" ordered="false" lowerBound="1" eType="/4/GeneralizableElement"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="powertype" ordered="false" eType="/4/Classifier" eOpposite="/4/Classifier/powertypeRange"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="child" ordered="false" lowerBound="1" eType="/4/GeneralizableElement" eOpposite="/4/GeneralizableElement/generalization"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="discriminator" ordered="false" unique="false" eType="/3/String"/>
</eClassifiers>
</ecore:EPackage>
</xmi:XMI>
| github:ecore:/data/MDEGroup/QMM-COMLAN-data/validation-subjects/metamodels/UMLDI-StateMachines.ecore | ecore | Common_Behavior
Signal
Action
actualArgument
actionSequence
recurrence
target
isAsynchronous
script
CreateAction
instantiation
DestroyAction
UninterpretedAction
CallAction
operation
SendAction
signal
ActionSequence
action
Argument
action
value
Reception
signal
specification
isRoot
isLeaf
isAbstract
ReturnAction
TerminateAction
Exception
Data_Types
CallConcurrencyKind
cck_sequential
cck_sequential
cck_guarded
cck_guarded
cck_concurrent
cck_concurrent
ParameterDirectionKind
pdk_in
pdk_in
pdk_inout
pdk_inout
pdk_out
pdk_out
pdk_return
pdk_return
ScopeKind
sk_instance
sk_instance
sk_classifier
sk_classifier
VisibilityKind
vk_public
vk_public
vk_protected
vk_protected
vk_private
vk_private
vk_package
vk_package
Expression
language
body
BooleanExpression
ObjectSetExpression
ActionExpression
IterationExpression
TimeExpression
PseudostateKind
pk_choice
pk_choice
pk_deepHistory
pk_deepHistory
pk_fork
pk_fork
pk_initial
pk_initial
pk_join
pk_join
pk_junction
pk_junction
pk_shallowHistory
pk_shallowHistory
State_Machines
StateMachine
context
submachineState
top
transitions
Event
parameter
StateVertex
container
incoming
outgoing
State
deferrableEvent
internalTransition
exit
doActivity
entry
stateMachine
TimeEvent
when
CallEvent
operation
SignalEvent
signal
Transition
target
trigger
stateMachine
source
effect
guard
CompositeState
subvertex
isConcurrent
ChangeEvent
changeExpression
Guard
transition
expression
Pseudostate
kind
SimpleState
SubmachineState
submachine
SynchState
bound
StubState
referenceState
FinalState
PrimitiveTypes
Boolean
Float
Integer
Long
String
Double
Core
Element
ModelElement
namespace
name
visibility
isSpecification
GeneralizableElement
generalization
isRoot
isLeaf
isAbstract
Namespace
ownedElement
Classifier
powertypeRange
feature
Feature
owner
ownerScope
Relationship
BehavioralFeature
parameter
isQuery
Operation
concurrency
isRoot
isLeaf
isAbstract
specification
Parameter
type
behavioralFeature
defaultValue
kind
Generalization
parent
powertype
child
discriminator | null | {"directed":true,"nodes":[{"nsPrefix":null,"nsURI":null,"name":"Common_Behavior","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Signal","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Action","instanceClass":null,"abstract":true,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CreateAction","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DestroyAction","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"UninterpretedAction","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CallAction","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SendAction","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ActionSequence","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Argument","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Reception","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ReturnAction","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TerminateAction","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Exception","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Classifier","instanceClass":null,"abstract":true,"id":14,"interface":false,"eClass":"EClass"},{"id":15,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ModelElement","instanceClass":null,"abstract":true,"id":16,"interface":false,"eClass":"EClass"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"actualArgument","changeable":true,"resolveProxies":true,"lowerBound":0,"id":17,"derived":false},{"container":true,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"actionSequence","changeable":true,"resolveProxies":true,"lowerBound":0,"id":18,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"recurrence","changeable":true,"resolveProxies":true,"lowerBound":0,"id":19,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"target","changeable":true,"resolveProxies":true,"lowerBound":0,"id":20,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"isAsynchronous","changeable":true,"lowerBound":1,"iD":false,"id":21,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"script","changeable":true,"resolveProxies":true,"lowerBound":0,"id":22,"derived":false},{"id":23,"eClass":"EGenericType"},{"id":24,"eClass":"EGenericType"},{"container":true,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"action","changeable":true,"resolveProxies":true,"lowerBound":0,"id":25,"derived":false},{"id":26,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"action","changeable":true,"resolveProxies":true,"lowerBound":0,"id":27,"derived":false},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IterationExpression","instanceClass":null,"abstract":false,"id":28,"interface":false,"eClass":"EClass"},{"id":29,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ObjectSetExpression","instanceClass":null,"abstract":false,"id":30,"interface":false,"eClass":"EClass"},{"id":31,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Boolean","instanceClass":null,"id":32,"serializable":true,"eClass":"EDataType"},{"id":33,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ActionExpression","instanceClass":null,"abstract":false,"id":34,"interface":false,"eClass":"EClass"},{"id":35,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"instantiation","changeable":true,"resolveProxies":true,"lowerBound":1,"id":36,"derived":false},{"id":37,"eClass":"EGenericType"},{"id":38,"eClass":"EGenericType"},{"id":39,"eClass":"EGenericType"},{"id":40,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"operation","changeable":true,"resolveProxies":true,"lowerBound":1,"id":41,"derived":false},{"id":42,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Operation","instanceClass":null,"abstract":false,"id":43,"interface":false,"eClass":"EClass"},{"id":44,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"signal","changeable":true,"resolveProxies":true,"lowerBound":1,"id":45,"derived":false},{"id":46,"eClass":"EGenericType"},{"id":47,"eClass":"EGenericType"},{"id":48,"eClass":"EGenericType"},{"id":49,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"resolveProxies":true,"lowerBound":1,"id":50,"derived":false},{"id":51,"eClass":"EGenericType"},{"id":52,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Expression","instanceClass":null,"abstract":false,"id":53,"interface":false,"eClass":"EClass"},{"id":54,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BehavioralFeature","instanceClass":null,"abstract":true,"id":55,"interface":false,"eClass":"EClass"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"signal","changeable":true,"resolveProxies":true,"lowerBound":1,"id":56,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"specification","changeable":true,"lowerBound":0,"iD":false,"id":57,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"isRoot","changeable":true,"lowerBound":1,"iD":false,"id":58,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"isLeaf","changeable":true,"lowerBound":1,"iD":false,"id":59,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"isAbstract","changeable":true,"lowerBound":1,"iD":false,"id":60,"derived":false},{"id":61,"eClass":"EGenericType"},{"id":62,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"String","instanceClass":null,"id":63,"serializable":true,"eClass":"EDataType"},{"id":64,"eClass":"EGenericType"},{"id":65,"eClass":"EGenericType"},{"id":66,"eClass":"EGenericType"},{"id":67,"eClass":"EGenericType"},{"id":68,"eClass":"EGenericType"},{"id":69,"eClass":"EGenericType"},{"id":70,"eClass":"EGenericType"},{"nsPrefix":null,"nsURI":null,"name":"Data_Types","id":71,"eClass":"EPackage"},{"instanceTypeName":null,"instanceClassName":null,"name":"CallConcurrencyKind","instanceClass":null,"id":72,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"ParameterDirectionKind","instanceClass":null,"id":73,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"ScopeKind","instanceClass":null,"id":74,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"VisibilityKind","instanceClass":null,"id":75,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BooleanExpression","instanceClass":null,"abstract":false,"id":76,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TimeExpression","instanceClass":null,"abstract":false,"id":77,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"PseudostateKind","instanceClass":null,"id":78,"serializable":true,"eClass":"EEnum"},{"name":"cck_sequential","id":79,"value":1,"literal":"cck_sequential","eClass":"EEnumLiteral"},{"name":"cck_guarded","id":80,"value":2,"literal":"cck_guarded","eClass":"EEnumLiteral"},{"name":"cck_concurrent","id":81,"value":3,"literal":"cck_concurrent","eClass":"EEnumLiteral"},{"name":"pdk_in","id":82,"value":1,"literal":"pdk_in","eClass":"EEnumLiteral"},{"name":"pdk_inout","id":83,"value":2,"literal":"pdk_inout","eClass":"EEnumLiteral"},{"name":"pdk_out","id":84,"value":3,"literal":"pdk_out","eClass":"EEnumLiteral"},{"name":"pdk_return","id":85,"value":4,"literal":"pdk_return","eClass":"EEnumLiteral"},{"name":"sk_instance","id":86,"value":1,"literal":"sk_instance","eClass":"EEnumLiteral"},{"name":"sk_classifier","id":87,"value":2,"literal":"sk_classifier","eClass":"EEnumLiteral"},{"name":"vk_public","id":88,"value":1,"literal":"vk_public","eClass":"EEnumLiteral"},{"name":"vk_protected","id":89,"value":2,"literal":"vk_protected","eClass":"EEnumLiteral"},{"name":"vk_private","id":90,"value":3,"literal":"vk_private","eClass":"EEnumLiteral"},{"name":"vk_package","id":91,"value":4,"literal":"vk_package","eClass":"EEnumLiteral"},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"language","changeable":true,"lowerBound":0,"iD":false,"id":92,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"body","changeable":true,"lowerBound":1,"iD":false,"id":93,"derived":false},{"id":94,"eClass":"EGenericType"},{"id":95,"eClass":"EGenericType"},{"id":96,"eClass":"EGenericType"},{"id":97,"eClass":"EGenericType"},{"id":98,"eClass":"EGenericType"},{"id":99,"eClass":"EGenericType"},{"id":100,"eClass":"EGenericType"},{"name":"pk_choice","id":101,"value":1,"literal":"pk_choice","eClass":"EEnumLiteral"},{"name":"pk_deepHistory","id":102,"value":2,"literal":"pk_deepHistory","eClass":"EEnumLiteral"},{"name":"pk_fork","id":103,"value":3,"literal":"pk_fork","eClass":"EEnumLiteral"},{"name":"pk_initial","id":104,"value":4,"literal":"pk_initial","eClass":"EEnumLiteral"},{"name":"pk_join","id":105,"value":5,"literal":"pk_join","eClass":"EEnumLiteral"},{"name":"pk_junction","id":106,"value":6,"literal":"pk_junction","eClass":"EEnumLiteral"},{"name":"pk_shallowHistory","id":107,"value":7,"literal":"pk_shallowHistory","eClass":"EEnumLiteral"},{"nsPrefix":null,"nsURI":null,"name":"State_Machines","id":108,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StateMachine","instanceClass":null,"abstract":false,"id":109,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Event","instanceClass":null,"abstract":true,"id":110,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StateVertex","instanceClass":null,"abstract":true,"id":111,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"State","instanceClass":null,"abstract":true,"id":112,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TimeEvent","instanceClass":null,"abstract":false,"id":113,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CallEvent","instanceClass":null,"abstract":false,"id":114,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SignalEvent","instanceClass":null,"abstract":false,"id":115,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Transition","instanceClass":null,"abstract":false,"id":116,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CompositeState","instanceClass":null,"abstract":false,"id":117,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ChangeEvent","instanceClass":null,"abstract":false,"id":118,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Guard","instanceClass":null,"abstract":false,"id":119,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Pseudostate","instanceClass":null,"abstract":false,"id":120,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SimpleState","instanceClass":null,"abstract":false,"id":121,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SubmachineState","instanceClass":null,"abstract":false,"id":122,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SynchState","instanceClass":null,"abstract":false,"id":123,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StubState","instanceClass":null,"abstract":false,"id":124,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FinalState","instanceClass":null,"abstract":false,"id":125,"interface":false,"eClass":"EClass"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"context","changeable":true,"resolveProxies":true,"lowerBound":0,"id":126,"derived":false},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"submachineState","changeable":true,"resolveProxies":true,"lowerBound":0,"id":127,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"top","changeable":true,"resolveProxies":true,"lowerBound":1,"id":128,"derived":false},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"transitions","changeable":true,"resolveProxies":true,"lowerBound":0,"id":129,"derived":false},{"id":130,"eClass":"EGenericType"},{"id":131,"eClass":"EGenericType"},{"id":132,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"submachine","changeable":true,"resolveProxies":true,"lowerBound":1,"id":133,"derived":false},{"id":134,"eClass":"EGenericType"},{"container":true,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"stateMachine","changeable":true,"resolveProxies":true,"lowerBound":0,"id":135,"derived":false},{"id":136,"eClass":"EGenericType"},{"container":true,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"stateMachine","changeable":true,"resolveProxies":true,"lowerBound":0,"id":137,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"parameter","changeable":true,"resolveProxies":true,"lowerBound":0,"id":138,"derived":false},{"id":139,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Parameter","instanceClass":null,"abstract":false,"id":140,"interface":false,"eClass":"EClass"},{"id":141,"eClass":"EGenericType"},{"container":true,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"container","changeable":true,"resolveProxies":true,"lowerBound":0,"id":142,"derived":false},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"incoming","changeable":true,"resolveProxies":true,"lowerBound":0,"id":143,"derived":false},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"outgoing","changeable":true,"resolveProxies":true,"lowerBound":0,"id":144,"derived":false},{"id":145,"eClass":"EGenericType"},{"id":146,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"subvertex","changeable":true,"resolveProxies":true,"lowerBound":0,"id":147,"derived":false},{"id":148,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"target","changeable":true,"resolveProxies":true,"lowerBound":1,"id":149,"derived":false},{"id":150,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"source","changeable":true,"resolveProxies":true,"lowerBound":1,"id":151,"derived":false},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"deferrableEvent","changeable":true,"resolveProxies":true,"lowerBound":0,"id":152,"derived":false},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"internalTransition","changeable":true,"resolveProxies":true,"lowerBound":0,"id":153,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"exit","changeable":true,"resolveProxies":true,"lowerBound":0,"id":154,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"doActivity","changeable":true,"resolveProxies":true,"lowerBound":0,"id":155,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"entry","changeable":true,"resolveProxies":true,"lowerBound":0,"id":156,"derived":false},{"id":157,"eClass":"EGenericType"},{"id":158,"eClass":"EGenericType"},{"id":159,"eClass":"EGenericType"},{"id":160,"eClass":"EGenericType"},{"id":161,"eClass":"EGenericType"},{"id":162,"eClass":"EGenericType"},{"id":163,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"when","changeable":true,"resolveProxies":true,"lowerBound":1,"id":164,"derived":false},{"id":165,"eClass":"EGenericType"},{"id":166,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"operation","changeable":true,"resolveProxies":true,"lowerBound":1,"id":167,"derived":false},{"id":168,"eClass":"EGenericType"},{"id":169,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"signal","changeable":true,"resolveProxies":true,"lowerBound":1,"id":170,"derived":false},{"id":171,"eClass":"EGenericType"},{"id":172,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"trigger","changeable":true,"resolveProxies":true,"lowerBound":0,"id":173,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"effect","changeable":true,"resolveProxies":true,"lowerBound":0,"id":174,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"guard","changeable":true,"resolveProxies":true,"lowerBound":0,"id":175,"derived":false},{"id":176,"eClass":"EGenericType"},{"id":177,"eClass":"EGenericType"},{"id":178,"eClass":"EGenericType"},{"id":179,"eClass":"EGenericType"},{"id":180,"eClass":"EGenericType"},{"id":181,"eClass":"EGenericType"},{"id":182,"eClass":"EGenericType"},{"container":true,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"transition","changeable":true,"resolveProxies":true,"lowerBound":1,"id":183,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"isConcurrent","changeable":true,"lowerBound":1,"iD":false,"id":184,"derived":false},{"id":185,"eClass":"EGenericType"},{"id":186,"eClass":"EGenericType"},{"id":187,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"changeExpression","changeable":true,"resolveProxies":true,"lowerBound":1,"id":188,"derived":false},{"id":189,"eClass":"EGenericType"},{"id":190,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"expression","changeable":true,"resolveProxies":true,"lowerBound":1,"id":191,"derived":false},{"id":192,"eClass":"EGenericType"},{"id":193,"eClass":"EGenericType"},{"id":194,"eClass":"EGenericType"},{"ordered":false,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"kind","changeable":true,"lowerBound":1,"iD":false,"id":195,"derived":false},{"id":196,"eClass":"EGenericType"},{"id":197,"eClass":"EGenericType"},{"id":198,"eClass":"EGenericType"},{"id":199,"eClass":"EGenericType"},{"id":200,"eClass":"EGenericType"},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"bound","changeable":true,"lowerBound":1,"iD":false,"id":201,"derived":false},{"id":202,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Integer","instanceClass":null,"id":203,"serializable":true,"eClass":"EDataType"},{"id":204,"eClass":"EGenericType"},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"referenceState","changeable":true,"lowerBound":1,"iD":false,"id":205,"derived":false},{"id":206,"eClass":"EGenericType"},{"id":207,"eClass":"EGenericType"},{"id":208,"eClass":"EGenericType"},{"nsPrefix":null,"nsURI":null,"name":"PrimitiveTypes","id":209,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Float","instanceClass":null,"id":210,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Long","instanceClass":null,"id":211,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Double","instanceClass":null,"id":212,"serializable":true,"eClass":"EDataType"},{"nsPrefix":null,"nsURI":null,"name":"Core","id":213,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Element","instanceClass":null,"abstract":true,"id":214,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"GeneralizableElement","instanceClass":null,"abstract":true,"id":215,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Namespace","instanceClass":null,"abstract":true,"id":216,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Feature","instanceClass":null,"abstract":true,"id":217,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Relationship","instanceClass":null,"abstract":true,"id":218,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Generalization","instanceClass":null,"abstract":false,"id":219,"interface":false,"eClass":"EClass"},{"container":true,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"namespace","changeable":true,"resolveProxies":true,"lowerBound":0,"id":220,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":221,"derived":false},{"ordered":false,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"visibility","changeable":true,"lowerBound":0,"iD":false,"id":222,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"isSpecification","changeable":true,"lowerBound":1,"iD":false,"id":223,"derived":false},{"id":224,"eClass":"EGenericType"},{"id":225,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"ownedElement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":226,"derived":false},{"id":227,"eClass":"EGenericType"},{"id":228,"eClass":"EGenericType"},{"id":229,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"generalization","changeable":true,"resolveProxies":true,"lowerBound":0,"id":230,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"isRoot","changeable":true,"lowerBound":1,"iD":false,"id":231,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"isLeaf","changeable":true,"lowerBound":1,"iD":false,"id":232,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"isAbstract","changeable":true,"lowerBound":1,"iD":false,"id":233,"derived":false},{"id":234,"eClass":"EGenericType"},{"id":235,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"child","changeable":true,"resolveProxies":true,"lowerBound":1,"id":236,"derived":false},{"id":237,"eClass":"EGenericType"},{"id":238,"eClass":"EGenericType"},{"id":239,"eClass":"EGenericType"},{"id":240,"eClass":"EGenericType"},{"id":241,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"powertypeRange","changeable":true,"resolveProxies":true,"lowerBound":0,"id":242,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"feature","changeable":true,"resolveProxies":true,"lowerBound":0,"id":243,"derived":false},{"id":244,"eClass":"EGenericType"},{"id":245,"eClass":"EGenericType"},{"id":246,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"powertype","changeable":true,"resolveProxies":true,"lowerBound":0,"id":247,"derived":false},{"id":248,"eClass":"EGenericType"},{"container":true,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"owner","changeable":true,"resolveProxies":true,"lowerBound":0,"id":249,"derived":false},{"ordered":false,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"ownerScope","changeable":true,"lowerBound":1,"iD":false,"id":250,"derived":false},{"id":251,"eClass":"EGenericType"},{"id":252,"eClass":"EGenericType"},{"id":253,"eClass":"EGenericType"},{"id":254,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"parameter","changeable":true,"resolveProxies":true,"lowerBound":0,"id":255,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"isQuery","changeable":true,"lowerBound":1,"iD":false,"id":256,"derived":false},{"id":257,"eClass":"EGenericType"},{"id":258,"eClass":"EGenericType"},{"container":true,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"behavioralFeature","changeable":true,"resolveProxies":true,"lowerBound":0,"id":259,"derived":false},{"id":260,"eClass":"EGenericType"},{"ordered":false,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"concurrency","changeable":true,"lowerBound":0,"iD":false,"id":261,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"isRoot","changeable":true,"lowerBound":1,"iD":false,"id":262,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"isLeaf","changeable":true,"lowerBound":1,"iD":false,"id":263,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"isAbstract","changeable":true,"lowerBound":1,"iD":false,"id":264,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"specification","changeable":true,"lowerBound":0,"iD":false,"id":265,"derived":false},{"id":266,"eClass":"EGenericType"},{"id":267,"eClass":"EGenericType"},{"id":268,"eClass":"EGenericType"},{"id":269,"eClass":"EGenericType"},{"id":270,"eClass":"EGenericType"},{"id":271,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"resolveProxies":true,"lowerBound":1,"id":272,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"defaultValue","changeable":true,"resolveProxies":true,"lowerBound":0,"id":273,"derived":false},{"ordered":false,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"kind","changeable":true,"lowerBound":1,"iD":false,"id":274,"derived":false},{"id":275,"eClass":"EGenericType"},{"id":276,"eClass":"EGenericType"},{"id":277,"eClass":"EGenericType"},{"id":278,"eClass":"EGenericType"},{"id":279,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"parent","changeable":true,"resolveProxies":true,"lowerBound":1,"id":280,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"discriminator","changeable":true,"lowerBound":0,"iD":false,"id":281,"derived":false},{"id":282,"eClass":"EGenericType"},{"id":283,"eClass":"EGenericType"},{"id":284,"eClass":"EGenericType"},{"id":285,"eClass":"EGenericType"},{"id":286,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":0,"target":8},{"source":0,"target":9},{"source":0,"target":10},{"source":0,"target":11},{"source":0,"target":12},{"source":0,"target":13},{"source":1,"target":0},{"source":1,"target":14},{"source":1,"target":15},{"source":15,"target":14},{"source":2,"target":0},{"source":2,"target":16},{"source":2,"target":17},{"source":2,"target":18},{"source":2,"target":19},{"source":2,"target":20},{"source":2,"target":21},{"source":2,"target":22},{"source":2,"target":23},{"source":17,"target":9},{"source":17,"target":24},{"source":17,"target":2},{"source":17,"target":25},{"source":24,"target":9},{"source":18,"target":8},{"source":18,"target":26},{"source":18,"target":2},{"source":18,"target":27},{"source":26,"target":8},{"source":19,"target":28},{"source":19,"target":29},{"source":19,"target":2},{"source":29,"target":28},{"source":20,"target":30},{"source":20,"target":31},{"source":20,"target":2},{"source":31,"target":30},{"source":21,"target":32},{"source":21,"target":33},{"source":21,"target":2},{"source":33,"target":32},{"source":22,"target":34},{"source":22,"target":35},{"source":22,"target":2},{"source":35,"target":34},{"source":23,"target":16},{"source":3,"target":0},{"source":3,"target":2},{"source":3,"target":36},{"source":3,"target":37},{"source":36,"target":14},{"source":36,"target":38},{"source":36,"target":3},{"source":38,"target":14},{"source":37,"target":2},{"source":4,"target":0},{"source":4,"target":2},{"source":4,"target":39},{"source":39,"target":2},{"source":5,"target":0},{"source":5,"target":2},{"source":5,"target":40},{"source":40,"target":2},{"source":6,"target":0},{"source":6,"target":2},{"source":6,"target":41},{"source":6,"target":42},{"source":41,"target":43},{"source":41,"target":44},{"source":41,"target":6},{"source":44,"target":43},{"source":42,"target":2},{"source":7,"target":0},{"source":7,"target":2},{"source":7,"target":45},{"source":7,"target":46},{"source":45,"target":1},{"source":45,"target":47},{"source":45,"target":7},{"source":47,"target":1},{"source":46,"target":2},{"source":8,"target":0},{"source":8,"target":2},{"source":8,"target":27},{"source":8,"target":48},{"source":27,"target":2},{"source":27,"target":49},{"source":27,"target":8},{"source":27,"target":18},{"source":49,"target":2},{"source":48,"target":2},{"source":9,"target":0},{"source":9,"target":16},{"source":9,"target":25},{"source":9,"target":50},{"source":9,"target":51},{"source":25,"target":2},{"source":25,"target":52},{"source":25,"target":9},{"source":25,"target":17},{"source":52,"target":2},{"source":50,"target":53},{"source":50,"target":54},{"source":50,"target":9},{"source":54,"target":53},{"source":51,"target":16},{"source":10,"target":0},{"source":10,"target":55},{"source":10,"target":56},{"source":10,"target":57},{"source":10,"target":58},{"source":10,"target":59},{"source":10,"target":60},{"source":10,"target":61},{"source":56,"target":1},{"source":56,"target":62},{"source":56,"target":10},{"source":62,"target":1},{"source":57,"target":63},{"source":57,"target":64},{"source":57,"target":10},{"source":64,"target":63},{"source":58,"target":32},{"source":58,"target":65},{"source":58,"target":10},{"source":65,"target":32},{"source":59,"target":32},{"source":59,"target":66},{"source":59,"target":10},{"source":66,"target":32},{"source":60,"target":32},{"source":60,"target":67},{"source":60,"target":10},{"source":67,"target":32},{"source":61,"target":55},{"source":11,"target":0},{"source":11,"target":2},{"source":11,"target":68},{"source":68,"target":2},{"source":12,"target":0},{"source":12,"target":2},{"source":12,"target":69},{"source":69,"target":2},{"source":13,"target":0},{"source":13,"target":1},{"source":13,"target":70},{"source":70,"target":1},{"source":71,"target":72},{"source":71,"target":73},{"source":71,"target":74},{"source":71,"target":75},{"source":71,"target":53},{"source":71,"target":76},{"source":71,"target":30},{"source":71,"target":34},{"source":71,"target":28},{"source":71,"target":77},{"source":71,"target":78},{"source":72,"target":71},{"source":72,"target":79},{"source":72,"target":80},{"source":72,"target":81},{"source":79,"target":72},{"source":80,"target":72},{"source":81,"target":72},{"source":73,"target":71},{"source":73,"target":82},{"source":73,"target":83},{"source":73,"target":84},{"source":73,"target":85},{"source":82,"target":73},{"source":83,"target":73},{"source":84,"target":73},{"source":85,"target":73},{"source":74,"target":71},{"source":74,"target":86},{"source":74,"target":87},{"source":86,"target":74},{"source":87,"target":74},{"source":75,"target":71},{"source":75,"target":88},{"source":75,"target":89},{"source":75,"target":90},{"source":75,"target":91},{"source":88,"target":75},{"source":89,"target":75},{"source":90,"target":75},{"source":91,"target":75},{"source":53,"target":71},{"source":53,"target":92},{"source":53,"target":93},{"source":92,"target":63},{"source":92,"target":94},{"source":92,"target":53},{"source":94,"target":63},{"source":93,"target":63},{"source":93,"target":95},{"source":93,"target":53},{"source":95,"target":63},{"source":76,"target":71},{"source":76,"target":53},{"source":76,"target":96},{"source":96,"target":53},{"source":30,"target":71},{"source":30,"target":53},{"source":30,"target":97},{"source":97,"target":53},{"source":34,"target":71},{"source":34,"target":53},{"source":34,"target":98},{"source":98,"target":53},{"source":28,"target":71},{"source":28,"target":53},{"source":28,"target":99},{"source":99,"target":53},{"source":77,"target":71},{"source":77,"target":53},{"source":77,"target":100},{"source":100,"target":53},{"source":78,"target":71},{"source":78,"target":101},{"source":78,"target":102},{"source":78,"target":103},{"source":78,"target":104},{"source":78,"target":105},{"source":78,"target":106},{"source":78,"target":107},{"source":101,"target":78},{"source":102,"target":78},{"source":103,"target":78},{"source":104,"target":78},{"source":105,"target":78},{"source":106,"target":78},{"source":107,"target":78},{"source":108,"target":109},{"source":108,"target":110},{"source":108,"target":111},{"source":108,"target":112},{"source":108,"target":113},{"source":108,"target":114},{"source":108,"target":115},{"source":108,"target":116},{"source":108,"target":117},{"source":108,"target":118},{"source":108,"target":119},{"source":108,"target":120},{"source":108,"target":121},{"source":108,"target":122},{"source":108,"target":123},{"source":108,"target":124},{"source":108,"target":125},{"source":109,"target":108},{"source":109,"target":16},{"source":109,"target":126},{"source":109,"target":127},{"source":109,"target":128},{"source":109,"target":129},{"source":109,"target":130},{"source":126,"target":16},{"source":126,"target":131},{"source":126,"target":109},{"source":131,"target":16},{"source":127,"target":122},{"source":127,"target":132},{"source":127,"target":109},{"source":127,"target":133},{"source":132,"target":122},{"source":128,"target":112},{"source":128,"target":134},{"source":128,"target":109},{"source":128,"target":135},{"source":134,"target":112},{"source":129,"target":116},{"source":129,"target":136},{"source":129,"target":109},{"source":129,"target":137},{"source":136,"target":116},{"source":130,"target":16},{"source":110,"target":108},{"source":110,"target":16},{"source":110,"target":138},{"source":110,"target":139},{"source":138,"target":140},{"source":138,"target":141},{"source":138,"target":110},{"source":141,"target":140},{"source":139,"target":16},{"source":111,"target":108},{"source":111,"target":16},{"source":111,"target":142},{"source":111,"target":143},{"source":111,"target":144},{"source":111,"target":145},{"source":142,"target":117},{"source":142,"target":146},{"source":142,"target":111},{"source":142,"target":147},{"source":146,"target":117},{"source":143,"target":116},{"source":143,"target":148},{"source":143,"target":111},{"source":143,"target":149},{"source":148,"target":116},{"source":144,"target":116},{"source":144,"target":150},{"source":144,"target":111},{"source":144,"target":151},{"source":150,"target":116},{"source":145,"target":16},{"source":112,"target":108},{"source":112,"target":111},{"source":112,"target":152},{"source":112,"target":153},{"source":112,"target":154},{"source":112,"target":155},{"source":112,"target":156},{"source":112,"target":135},{"source":112,"target":157},{"source":152,"target":110},{"source":152,"target":158},{"source":152,"target":112},{"source":158,"target":110},{"source":153,"target":116},{"source":153,"target":159},{"source":153,"target":112},{"source":159,"target":116},{"source":154,"target":2},{"source":154,"target":160},{"source":154,"target":112},{"source":160,"target":2},{"source":155,"target":2},{"source":155,"target":161},{"source":155,"target":112},{"source":161,"target":2},{"source":156,"target":2},{"source":156,"target":162},{"source":156,"target":112},{"source":162,"target":2},{"source":135,"target":109},{"source":135,"target":163},{"source":135,"target":112},{"source":135,"target":128},{"source":163,"target":109},{"source":157,"target":111},{"source":113,"target":108},{"source":113,"target":110},{"source":113,"target":164},{"source":113,"target":165},{"source":164,"target":77},{"source":164,"target":166},{"source":164,"target":113},{"source":166,"target":77},{"source":165,"target":110},{"source":114,"target":108},{"source":114,"target":110},{"source":114,"target":167},{"source":114,"target":168},{"source":167,"target":43},{"source":167,"target":169},{"source":167,"target":114},{"source":169,"target":43},{"source":168,"target":110},{"source":115,"target":108},{"source":115,"target":110},{"source":115,"target":170},{"source":115,"target":171},{"source":170,"target":1},{"source":170,"target":172},{"source":170,"target":115},{"source":172,"target":1},{"source":171,"target":110},{"source":116,"target":108},{"source":116,"target":16},{"source":116,"target":149},{"source":116,"target":173},{"source":116,"target":137},{"source":116,"target":151},{"source":116,"target":174},{"source":116,"target":175},{"source":116,"target":176},{"source":149,"target":111},{"source":149,"target":177},{"source":149,"target":116},{"source":149,"target":143},{"source":177,"target":111},{"source":173,"target":110},{"source":173,"target":178},{"source":173,"target":116},{"source":178,"target":110},{"source":137,"target":109},{"source":137,"target":179},{"source":137,"target":116},{"source":137,"target":129},{"source":179,"target":109},{"source":151,"target":111},{"source":151,"target":180},{"source":151,"target":116},{"source":151,"target":144},{"source":180,"target":111},{"source":174,"target":2},{"source":174,"target":181},{"source":174,"target":116},{"source":181,"target":2},{"source":175,"target":119},{"source":175,"target":182},{"source":175,"target":116},{"source":175,"target":183},{"source":182,"target":119},{"source":176,"target":16},{"source":117,"target":108},{"source":117,"target":112},{"source":117,"target":147},{"source":117,"target":184},{"source":117,"target":185},{"source":147,"target":111},{"source":147,"target":186},{"source":147,"target":117},{"source":147,"target":142},{"source":186,"target":111},{"source":184,"target":32},{"source":184,"target":187},{"source":184,"target":117},{"source":187,"target":32},{"source":185,"target":112},{"source":118,"target":108},{"source":118,"target":110},{"source":118,"target":188},{"source":118,"target":189},{"source":188,"target":76},{"source":188,"target":190},{"source":188,"target":118},{"source":190,"target":76},{"source":189,"target":110},{"source":119,"target":108},{"source":119,"target":16},{"source":119,"target":183},{"source":119,"target":191},{"source":119,"target":192},{"source":183,"target":116},{"source":183,"target":193},{"source":183,"target":119},{"source":183,"target":175},{"source":193,"target":116},{"source":191,"target":76},{"source":191,"target":194},{"source":191,"target":119},{"source":194,"target":76},{"source":192,"target":16},{"source":120,"target":108},{"source":120,"target":111},{"source":120,"target":195},{"source":120,"target":196},{"source":195,"target":78},{"source":195,"target":197},{"source":195,"target":120},{"source":197,"target":78},{"source":196,"target":111},{"source":121,"target":108},{"source":121,"target":112},{"source":121,"target":198},{"source":198,"target":112},{"source":122,"target":108},{"source":122,"target":117},{"source":122,"target":133},{"source":122,"target":199},{"source":133,"target":109},{"source":133,"target":200},{"source":133,"target":122},{"source":133,"target":127},{"source":200,"target":109},{"source":199,"target":117},{"source":123,"target":108},{"source":123,"target":111},{"source":123,"target":201},{"source":123,"target":202},{"source":201,"target":203},{"source":201,"target":204},{"source":201,"target":123},{"source":204,"target":203},{"source":202,"target":111},{"source":124,"target":108},{"source":124,"target":111},{"source":124,"target":205},{"source":124,"target":206},{"source":205,"target":63},{"source":205,"target":207},{"source":205,"target":124},{"source":207,"target":63},{"source":206,"target":111},{"source":125,"target":108},{"source":125,"target":112},{"source":125,"target":208},{"source":208,"target":112},{"source":209,"target":32},{"source":209,"target":210},{"source":209,"target":203},{"source":209,"target":211},{"source":209,"target":63},{"source":209,"target":212},{"source":32,"target":209},{"source":210,"target":209},{"source":203,"target":209},{"source":211,"target":209},{"source":63,"target":209},{"source":212,"target":209},{"source":213,"target":214},{"source":213,"target":16},{"source":213,"target":215},{"source":213,"target":216},{"source":213,"target":14},{"source":213,"target":217},{"source":213,"target":218},{"source":213,"target":55},{"source":213,"target":43},{"source":213,"target":140},{"source":213,"target":219},{"source":214,"target":213},{"source":16,"target":213},{"source":16,"target":214},{"source":16,"target":220},{"source":16,"target":221},{"source":16,"target":222},{"source":16,"target":223},{"source":16,"target":224},{"source":220,"target":216},{"source":220,"target":225},{"source":220,"target":16},{"source":220,"target":226},{"source":225,"target":216},{"source":221,"target":63},{"source":221,"target":227},{"source":221,"target":16},{"source":227,"target":63},{"source":222,"target":75},{"source":222,"target":228},{"source":222,"target":16},{"source":228,"target":75},{"source":223,"target":32},{"source":223,"target":229},{"source":223,"target":16},{"source":229,"target":32},{"source":224,"target":214},{"source":215,"target":213},{"source":215,"target":16},{"source":215,"target":230},{"source":215,"target":231},{"source":215,"target":232},{"source":215,"target":233},{"source":215,"target":234},{"source":230,"target":219},{"source":230,"target":235},{"source":230,"target":215},{"source":230,"target":236},{"source":235,"target":219},{"source":231,"target":32},{"source":231,"target":237},{"source":231,"target":215},{"source":237,"target":32},{"source":232,"target":32},{"source":232,"target":238},{"source":232,"target":215},{"source":238,"target":32},{"source":233,"target":32},{"source":233,"target":239},{"source":233,"target":215},{"source":239,"target":32},{"source":234,"target":16},{"source":216,"target":213},{"source":216,"target":16},{"source":216,"target":226},{"source":216,"target":240},{"source":226,"target":16},{"source":226,"target":241},{"source":226,"target":216},{"source":226,"target":220},{"source":241,"target":16},{"source":240,"target":16},{"source":14,"target":213},{"source":14,"target":215},{"source":14,"target":216},{"source":14,"target":242},{"source":14,"target":243},{"source":14,"target":244},{"source":14,"target":245},{"source":242,"target":219},{"source":242,"target":246},{"source":242,"target":14},{"source":242,"target":247},{"source":246,"target":219},{"source":243,"target":217},{"source":243,"target":248},{"source":243,"target":14},{"source":243,"target":249},{"source":248,"target":217},{"source":244,"target":215},{"source":245,"target":216},{"source":217,"target":213},{"source":217,"target":16},{"source":217,"target":249},{"source":217,"target":250},{"source":217,"target":251},{"source":249,"target":14},{"source":249,"target":252},{"source":249,"target":217},{"source":249,"target":243},{"source":252,"target":14},{"source":250,"target":74},{"source":250,"target":253},{"source":250,"target":217},{"source":253,"target":74},{"source":251,"target":16},{"source":218,"target":213},{"source":218,"target":16},{"source":218,"target":254},{"source":254,"target":16},{"source":55,"target":213},{"source":55,"target":217},{"source":55,"target":255},{"source":55,"target":256},{"source":55,"target":257},{"source":255,"target":140},{"source":255,"target":258},{"source":255,"target":55},{"source":255,"target":259},{"source":258,"target":140},{"source":256,"target":32},{"source":256,"target":260},{"source":256,"target":55},{"source":260,"target":32},{"source":257,"target":217},{"source":43,"target":213},{"source":43,"target":55},{"source":43,"target":261},{"source":43,"target":262},{"source":43,"target":263},{"source":43,"target":264},{"source":43,"target":265},{"source":43,"target":266},{"source":261,"target":72},{"source":261,"target":267},{"source":261,"target":43},{"source":267,"target":72},{"source":262,"target":32},{"source":262,"target":268},{"source":262,"target":43},{"source":268,"target":32},{"source":263,"target":32},{"source":263,"target":269},{"source":263,"target":43},{"source":269,"target":32},{"source":264,"target":32},{"source":264,"target":270},{"source":264,"target":43},{"source":270,"target":32},{"source":265,"target":63},{"source":265,"target":271},{"source":265,"target":43},{"source":271,"target":63},{"source":266,"target":55},{"source":140,"target":213},{"source":140,"target":16},{"source":140,"target":272},{"source":140,"target":259},{"source":140,"target":273},{"source":140,"target":274},{"source":140,"target":275},{"source":272,"target":14},{"source":272,"target":276},{"source":272,"target":140},{"source":276,"target":14},{"source":259,"target":55},{"source":259,"target":277},{"source":259,"target":140},{"source":259,"target":255},{"source":277,"target":55},{"source":273,"target":53},{"source":273,"target":278},{"source":273,"target":140},{"source":278,"target":53},{"source":274,"target":73},{"source":274,"target":279},{"source":274,"target":140},{"source":279,"target":73},{"source":275,"target":16},{"source":219,"target":213},{"source":219,"target":218},{"source":219,"target":280},{"source":219,"target":247},{"source":219,"target":236},{"source":219,"target":281},{"source":219,"target":282},{"source":280,"target":215},{"source":280,"target":283},{"source":280,"target":219},{"source":283,"target":215},{"source":247,"target":14},{"source":247,"target":284},{"source":247,"target":219},{"source":247,"target":242},{"source":284,"target":14},{"source":236,"target":215},{"source":236,"target":285},{"source":236,"target":219},{"source":236,"target":230},{"source":285,"target":215},{"source":281,"target":63},{"source":281,"target":286},{"source":281,"target":219},{"source":286,"target":63},{"source":282,"target":218}],"multigraph":true} |
false | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="HTML" nsURI="HTML" nsPrefix="HTML">
<eClassifiers xsi:type="ecore:EClass" name="HTML">
<eStructuralFeatures xsi:type="ecore:EReference" name="htmlElements" ordered="false"
upperBound="-1" eType="#//HTMLElement" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="HTMLElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="elements" upperBound="-1"
eType="#//HTMLElement" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="styles" upperBound="-1"
eType="#//Style" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="TABLE" eSuperTypes="#//HTMLElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="trs" ordered="false" upperBound="-1"
eType="#//TR" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="border" ordered="false"
unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="width" ordered="false"
unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="cellspacing" ordered="false"
unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="cellpadding" ordered="false"
unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="align" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="bgcolor" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="TR" eSuperTypes="#//HTMLElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="tds" ordered="false" upperBound="-1"
eType="#//TD" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="valign" ordered="false"
unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="align" ordered="false"
unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="bgcolor" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="height" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="TD" eSuperTypes="#//HTMLElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="colspan" ordered="false"
unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="rowspan" ordered="false"
unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="valign" ordered="false"
unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="align" ordered="false"
unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="width" ordered="false"
unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="bgcolor" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="height" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="DIV" eSuperTypes="#//HTMLElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="align" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="SPAN" eSuperTypes="#//HTMLElement"/>
<eClassifiers xsi:type="ecore:EClass" name="P" eSuperTypes="#//HTMLElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="align" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="A" eSuperTypes="#//HTMLElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="ref" ordered="false" unique="false"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="FONT" eSuperTypes="#//HTMLElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="color" ordered="false"
unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="face" ordered="false" unique="false"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="size" ordered="false" unique="false"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="B" eSuperTypes="#//HTMLElement"/>
<eClassifiers xsi:type="ecore:EClass" name="U" eSuperTypes="#//HTMLElement"/>
<eClassifiers xsi:type="ecore:EClass" name="I" eSuperTypes="#//HTMLElement"/>
<eClassifiers xsi:type="ecore:EClass" name="S" eSuperTypes="#//HTMLElement"/>
<eClassifiers xsi:type="ecore:EClass" name="IMG" eSuperTypes="#//HTMLElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="src" ordered="false" unique="false"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="width" ordered="false"
unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="height" ordered="false"
unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="border" ordered="false"
unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="BR" eSuperTypes="#//HTMLElement"/>
<eClassifiers xsi:type="ecore:EClass" name="HR" eSuperTypes="#//HTMLElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="color" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Style">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="key" lowerBound="1" eType="#//StyleKey"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="StyleKey">
<eLiterals name="backgroundColor" literal="background-color"/>
<eLiterals name="color" literal="color"/>
<eLiterals name="display" literal="display"/>
<eLiterals name="lineHeight" literal="line-height"/>
<eLiterals name="textAlign" literal="text-align"/>
<eLiterals name="textDecoration" literal="text-decoration"/>
<eLiterals name="width"/>
<eLiterals name="padding" literal="padding"/>
</eClassifiers>
</ecore:EPackage>
| github:ecore:/data/monardo12/NewsletterProject/NewsletterGenerator/metamodels/HTML.ecore | ecore | HTML
HTML
htmlElements
HTMLElement
elements
styles
TABLE
trs
border
width
cellspacing
cellpadding
align
bgcolor
TR
tds
valign
align
bgcolor
height
TD
colspan
rowspan
valign
align
width
bgcolor
height
DIV
align
SPAN
P
align
A
ref
FONT
color
face
size
value
B
U
I
S
IMG
src
width
height
border
BR
HR
color
Style
key
value
StyleKey
backgroundColor
background-color
color
color
display
display
lineHeight
line-height
textAlign
text-align
textDecoration
text-decoration
width
width
padding
padding | null | {"directed":true,"nodes":[{"nsPrefix":"HTML","nsURI":"HTML","name":"HTML","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"HTML","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"HTMLElement","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TABLE","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TR","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TD","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DIV","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SPAN","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"P","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"A","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FONT","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"B","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"U","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"I","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"S","instanceClass":null,"abstract":false,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IMG","instanceClass":null,"abstract":false,"id":15,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BR","instanceClass":null,"abstract":false,"id":16,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"HR","instanceClass":null,"abstract":false,"id":17,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Style","instanceClass":null,"abstract":false,"id":18,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"StyleKey","instanceClass":null,"id":19,"serializable":true,"eClass":"EEnum"},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"htmlElements","changeable":true,"resolveProxies":true,"lowerBound":0,"id":20,"derived":false},{"id":21,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"elements","changeable":true,"resolveProxies":true,"lowerBound":0,"id":22,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"styles","changeable":true,"resolveProxies":true,"lowerBound":0,"id":23,"derived":false},{"id":24,"eClass":"EGenericType"},{"id":25,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"trs","changeable":true,"resolveProxies":true,"lowerBound":0,"id":26,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"border","changeable":true,"lowerBound":0,"iD":false,"id":27,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"width","changeable":true,"lowerBound":0,"iD":false,"id":28,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"cellspacing","changeable":true,"lowerBound":0,"iD":false,"id":29,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"cellpadding","changeable":true,"lowerBound":0,"iD":false,"id":30,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"align","changeable":true,"lowerBound":0,"iD":false,"id":31,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"bgcolor","changeable":true,"lowerBound":0,"iD":false,"id":32,"derived":false},{"id":33,"eClass":"EGenericType"},{"id":34,"eClass":"EGenericType"},{"id":35,"eClass":"EGenericType"},{"id":36,"eClass":"EGenericType"},{"id":37,"eClass":"EGenericType"},{"id":38,"eClass":"EGenericType"},{"id":39,"eClass":"EGenericType"},{"id":40,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"tds","changeable":true,"resolveProxies":true,"lowerBound":0,"id":41,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"valign","changeable":true,"lowerBound":0,"iD":false,"id":42,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"align","changeable":true,"lowerBound":0,"iD":false,"id":43,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"bgcolor","changeable":true,"lowerBound":0,"iD":false,"id":44,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"height","changeable":true,"lowerBound":0,"iD":false,"id":45,"derived":false},{"id":46,"eClass":"EGenericType"},{"id":47,"eClass":"EGenericType"},{"id":48,"eClass":"EGenericType"},{"id":49,"eClass":"EGenericType"},{"id":50,"eClass":"EGenericType"},{"id":51,"eClass":"EGenericType"},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"colspan","changeable":true,"lowerBound":0,"iD":false,"id":52,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"rowspan","changeable":true,"lowerBound":0,"iD":false,"id":53,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"valign","changeable":true,"lowerBound":0,"iD":false,"id":54,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"align","changeable":true,"lowerBound":0,"iD":false,"id":55,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"width","changeable":true,"lowerBound":0,"iD":false,"id":56,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"bgcolor","changeable":true,"lowerBound":0,"iD":false,"id":57,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"height","changeable":true,"lowerBound":0,"iD":false,"id":58,"derived":false},{"id":59,"eClass":"EGenericType"},{"id":60,"eClass":"EGenericType"},{"id":61,"eClass":"EGenericType"},{"id":62,"eClass":"EGenericType"},{"id":63,"eClass":"EGenericType"},{"id":64,"eClass":"EGenericType"},{"id":65,"eClass":"EGenericType"},{"id":66,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"align","changeable":true,"lowerBound":0,"iD":false,"id":67,"derived":false},{"id":68,"eClass":"EGenericType"},{"id":69,"eClass":"EGenericType"},{"id":70,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"align","changeable":true,"lowerBound":0,"iD":false,"id":71,"derived":false},{"id":72,"eClass":"EGenericType"},{"id":73,"eClass":"EGenericType"},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"ref","changeable":true,"lowerBound":0,"iD":false,"id":74,"derived":false},{"id":75,"eClass":"EGenericType"},{"id":76,"eClass":"EGenericType"},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"color","changeable":true,"lowerBound":0,"iD":false,"id":77,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"face","changeable":true,"lowerBound":0,"iD":false,"id":78,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"size","changeable":true,"lowerBound":0,"iD":false,"id":79,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":0,"iD":false,"id":80,"derived":false},{"id":81,"eClass":"EGenericType"},{"id":82,"eClass":"EGenericType"},{"id":83,"eClass":"EGenericType"},{"id":84,"eClass":"EGenericType"},{"id":85,"eClass":"EGenericType"},{"id":86,"eClass":"EGenericType"},{"id":87,"eClass":"EGenericType"},{"id":88,"eClass":"EGenericType"},{"id":89,"eClass":"EGenericType"},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"src","changeable":true,"lowerBound":0,"iD":false,"id":90,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"width","changeable":true,"lowerBound":0,"iD":false,"id":91,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"height","changeable":true,"lowerBound":0,"iD":false,"id":92,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"border","changeable":true,"lowerBound":0,"iD":false,"id":93,"derived":false},{"id":94,"eClass":"EGenericType"},{"id":95,"eClass":"EGenericType"},{"id":96,"eClass":"EGenericType"},{"id":97,"eClass":"EGenericType"},{"id":98,"eClass":"EGenericType"},{"id":99,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"color","changeable":true,"lowerBound":0,"iD":false,"id":100,"derived":false},{"id":101,"eClass":"EGenericType"},{"id":102,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"key","changeable":true,"lowerBound":1,"iD":false,"id":103,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":1,"iD":false,"id":104,"derived":false},{"id":105,"eClass":"EGenericType"},{"id":106,"eClass":"EGenericType"},{"name":"backgroundColor","id":107,"value":0,"literal":"background-color","eClass":"EEnumLiteral"},{"name":"color","id":108,"value":0,"literal":"color","eClass":"EEnumLiteral"},{"name":"display","id":109,"value":0,"literal":"display","eClass":"EEnumLiteral"},{"name":"lineHeight","id":110,"value":0,"literal":"line-height","eClass":"EEnumLiteral"},{"name":"textAlign","id":111,"value":0,"literal":"text-align","eClass":"EEnumLiteral"},{"name":"textDecoration","id":112,"value":0,"literal":"text-decoration","eClass":"EEnumLiteral"},{"name":"width","id":113,"value":0,"literal":"width","eClass":"EEnumLiteral"},{"name":"padding","id":114,"value":0,"literal":"padding","eClass":"EEnumLiteral"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":0,"target":8},{"source":0,"target":9},{"source":0,"target":10},{"source":0,"target":11},{"source":0,"target":12},{"source":0,"target":13},{"source":0,"target":14},{"source":0,"target":15},{"source":0,"target":16},{"source":0,"target":17},{"source":0,"target":18},{"source":0,"target":19},{"source":1,"target":0},{"source":1,"target":20},{"source":20,"target":2},{"source":20,"target":21},{"source":20,"target":1},{"source":21,"target":2},{"source":2,"target":0},{"source":2,"target":22},{"source":2,"target":23},{"source":22,"target":2},{"source":22,"target":24},{"source":22,"target":2},{"source":24,"target":2},{"source":23,"target":18},{"source":23,"target":25},{"source":23,"target":2},{"source":25,"target":18},{"source":3,"target":0},{"source":3,"target":2},{"source":3,"target":26},{"source":3,"target":27},{"source":3,"target":28},{"source":3,"target":29},{"source":3,"target":30},{"source":3,"target":31},{"source":3,"target":32},{"source":3,"target":33},{"source":26,"target":4},{"source":26,"target":34},{"source":26,"target":3},{"source":34,"target":4},{"source":27,"target":35},{"source":27,"target":3},{"source":28,"target":36},{"source":28,"target":3},{"source":29,"target":37},{"source":29,"target":3},{"source":30,"target":38},{"source":30,"target":3},{"source":31,"target":39},{"source":31,"target":3},{"source":32,"target":40},{"source":32,"target":3},{"source":33,"target":2},{"source":4,"target":0},{"source":4,"target":2},{"source":4,"target":41},{"source":4,"target":42},{"source":4,"target":43},{"source":4,"target":44},{"source":4,"target":45},{"source":4,"target":46},{"source":41,"target":5},{"source":41,"target":47},{"source":41,"target":4},{"source":47,"target":5},{"source":42,"target":48},{"source":42,"target":4},{"source":43,"target":49},{"source":43,"target":4},{"source":44,"target":50},{"source":44,"target":4},{"source":45,"target":51},{"source":45,"target":4},{"source":46,"target":2},{"source":5,"target":0},{"source":5,"target":2},{"source":5,"target":52},{"source":5,"target":53},{"source":5,"target":54},{"source":5,"target":55},{"source":5,"target":56},{"source":5,"target":57},{"source":5,"target":58},{"source":5,"target":59},{"source":52,"target":60},{"source":52,"target":5},{"source":53,"target":61},{"source":53,"target":5},{"source":54,"target":62},{"source":54,"target":5},{"source":55,"target":63},{"source":55,"target":5},{"source":56,"target":64},{"source":56,"target":5},{"source":57,"target":65},{"source":57,"target":5},{"source":58,"target":66},{"source":58,"target":5},{"source":59,"target":2},{"source":6,"target":0},{"source":6,"target":2},{"source":6,"target":67},{"source":6,"target":68},{"source":67,"target":69},{"source":67,"target":6},{"source":68,"target":2},{"source":7,"target":0},{"source":7,"target":2},{"source":7,"target":70},{"source":70,"target":2},{"source":8,"target":0},{"source":8,"target":2},{"source":8,"target":71},{"source":8,"target":72},{"source":71,"target":73},{"source":71,"target":8},{"source":72,"target":2},{"source":9,"target":0},{"source":9,"target":2},{"source":9,"target":74},{"source":9,"target":75},{"source":74,"target":76},{"source":74,"target":9},{"source":75,"target":2},{"source":10,"target":0},{"source":10,"target":2},{"source":10,"target":77},{"source":10,"target":78},{"source":10,"target":79},{"source":10,"target":80},{"source":10,"target":81},{"source":77,"target":82},{"source":77,"target":10},{"source":78,"target":83},{"source":78,"target":10},{"source":79,"target":84},{"source":79,"target":10},{"source":80,"target":85},{"source":80,"target":10},{"source":81,"target":2},{"source":11,"target":0},{"source":11,"target":2},{"source":11,"target":86},{"source":86,"target":2},{"source":12,"target":0},{"source":12,"target":2},{"source":12,"target":87},{"source":87,"target":2},{"source":13,"target":0},{"source":13,"target":2},{"source":13,"target":88},{"source":88,"target":2},{"source":14,"target":0},{"source":14,"target":2},{"source":14,"target":89},{"source":89,"target":2},{"source":15,"target":0},{"source":15,"target":2},{"source":15,"target":90},{"source":15,"target":91},{"source":15,"target":92},{"source":15,"target":93},{"source":15,"target":94},{"source":90,"target":95},{"source":90,"target":15},{"source":91,"target":96},{"source":91,"target":15},{"source":92,"target":97},{"source":92,"target":15},{"source":93,"target":98},{"source":93,"target":15},{"source":94,"target":2},{"source":16,"target":0},{"source":16,"target":2},{"source":16,"target":99},{"source":99,"target":2},{"source":17,"target":0},{"source":17,"target":2},{"source":17,"target":100},{"source":17,"target":101},{"source":100,"target":102},{"source":100,"target":17},{"source":101,"target":2},{"source":18,"target":0},{"source":18,"target":103},{"source":18,"target":104},{"source":103,"target":19},{"source":103,"target":105},{"source":103,"target":18},{"source":105,"target":19},{"source":104,"target":106},{"source":104,"target":18},{"source":19,"target":0},{"source":19,"target":107},{"source":19,"target":108},{"source":19,"target":109},{"source":19,"target":110},{"source":19,"target":111},{"source":19,"target":112},{"source":19,"target":113},{"source":19,"target":114},{"source":107,"target":19},{"source":108,"target":19},{"source":109,"target":19},{"source":110,"target":19},{"source":111,"target":19},{"source":112,"target":19},{"source":113,"target":19},{"source":114,"target":19}],"multigraph":true} |
false | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="form" nsURI="http://www.edu.co/unal/forms/Form" nsPrefix="form">
<eClassifiers xsi:type="ecore:EClass" name="Model">
<eStructuralFeatures xsi:type="ecore:EReference" name="form" eType="#//Form" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Form">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="legend" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="id" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="class" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="elementName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="method" eType="#//METHOD"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="action" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="elements" upperBound="-1"
eType="#//FormElement" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="FormElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="id" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="label" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="class" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="type" eType="#//ELEMENT_TYPE"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="size" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="validation" upperBound="-1"
eType="#//ValidationRule" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ValidationRule">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="type" eType="#//VALIDATION_TYPE"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="message" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="VALIDATION_TYPE">
<eLiterals name="REQUIRED" literal="required"/>
<eLiterals name="EMAIL" value="1" literal="email"/>
<eLiterals name="DIGITS" value="2" literal="digits"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="ELEMENT_TYPE">
<eLiterals name="INPUT" literal="input"/>
<eLiterals name="TEXTAREA" value="1" literal="textarea"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="METHOD">
<eLiterals name="GET" literal="get"/>
<eLiterals name="POST" value="1" literal="post"/>
</eClassifiers>
</ecore:EPackage>
| github:ecore:/data/MDEGroup/QMM-COMLAN-data/validation-subjects/metamodels/form.ecore | ecore | form
Model
form
Form
name
legend
id
class
elementName
method
action
elements
FormElement
id
name
label
class
type
size
value
validation
ValidationRule
type
message
VALIDATION_TYPE
REQUIRED
required
EMAIL
email
DIGITS
digits
ELEMENT_TYPE
INPUT
input
TEXTAREA
textarea
METHOD
GET
get
POST
post | null | {"directed":true,"nodes":[{"nsPrefix":"form","nsURI":"http://www.edu.co/unal/forms/Form","name":"form","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Model","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Form","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FormElement","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ValidationRule","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"VALIDATION_TYPE","instanceClass":null,"id":5,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"ELEMENT_TYPE","instanceClass":null,"id":6,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"METHOD","instanceClass":null,"id":7,"serializable":true,"eClass":"EEnum"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"form","changeable":true,"resolveProxies":true,"lowerBound":0,"id":8,"derived":false},{"id":9,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":10,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"legend","changeable":true,"lowerBound":0,"iD":false,"id":11,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"id","changeable":true,"lowerBound":0,"iD":false,"id":12,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"class","changeable":true,"lowerBound":0,"iD":false,"id":13,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"elementName","changeable":true,"lowerBound":0,"iD":false,"id":14,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"method","changeable":true,"lowerBound":0,"iD":false,"id":15,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"action","changeable":true,"lowerBound":0,"iD":false,"id":16,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"elements","changeable":true,"resolveProxies":true,"lowerBound":0,"id":17,"derived":false},{"id":18,"eClass":"EGenericType"},{"id":19,"eClass":"EGenericType"},{"id":20,"eClass":"EGenericType"},{"id":21,"eClass":"EGenericType"},{"id":22,"eClass":"EGenericType"},{"id":23,"eClass":"EGenericType"},{"id":24,"eClass":"EGenericType"},{"id":25,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"id","changeable":true,"lowerBound":0,"iD":false,"id":26,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":27,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"label","changeable":true,"lowerBound":0,"iD":false,"id":28,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"class","changeable":true,"lowerBound":0,"iD":false,"id":29,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"lowerBound":0,"iD":false,"id":30,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"size","changeable":true,"lowerBound":0,"iD":false,"id":31,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":0,"iD":false,"id":32,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"validation","changeable":true,"resolveProxies":true,"lowerBound":0,"id":33,"derived":false},{"id":34,"eClass":"EGenericType"},{"id":35,"eClass":"EGenericType"},{"id":36,"eClass":"EGenericType"},{"id":37,"eClass":"EGenericType"},{"id":38,"eClass":"EGenericType"},{"id":39,"eClass":"EGenericType"},{"id":40,"eClass":"EGenericType"},{"id":41,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"lowerBound":0,"iD":false,"id":42,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"message","changeable":true,"lowerBound":0,"iD":false,"id":43,"derived":false},{"id":44,"eClass":"EGenericType"},{"id":45,"eClass":"EGenericType"},{"name":"REQUIRED","id":46,"value":0,"literal":"required","eClass":"EEnumLiteral"},{"name":"EMAIL","id":47,"value":1,"literal":"email","eClass":"EEnumLiteral"},{"name":"DIGITS","id":48,"value":2,"literal":"digits","eClass":"EEnumLiteral"},{"name":"INPUT","id":49,"value":0,"literal":"input","eClass":"EEnumLiteral"},{"name":"TEXTAREA","id":50,"value":1,"literal":"textarea","eClass":"EEnumLiteral"},{"name":"GET","id":51,"value":0,"literal":"get","eClass":"EEnumLiteral"},{"name":"POST","id":52,"value":1,"literal":"post","eClass":"EEnumLiteral"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":1,"target":0},{"source":1,"target":8},{"source":8,"target":2},{"source":8,"target":9},{"source":8,"target":1},{"source":9,"target":2},{"source":2,"target":0},{"source":2,"target":10},{"source":2,"target":11},{"source":2,"target":12},{"source":2,"target":13},{"source":2,"target":14},{"source":2,"target":15},{"source":2,"target":16},{"source":2,"target":17},{"source":10,"target":18},{"source":10,"target":2},{"source":11,"target":19},{"source":11,"target":2},{"source":12,"target":20},{"source":12,"target":2},{"source":13,"target":21},{"source":13,"target":2},{"source":14,"target":22},{"source":14,"target":2},{"source":15,"target":7},{"source":15,"target":23},{"source":15,"target":2},{"source":23,"target":7},{"source":16,"target":24},{"source":16,"target":2},{"source":17,"target":3},{"source":17,"target":25},{"source":17,"target":2},{"source":25,"target":3},{"source":3,"target":0},{"source":3,"target":26},{"source":3,"target":27},{"source":3,"target":28},{"source":3,"target":29},{"source":3,"target":30},{"source":3,"target":31},{"source":3,"target":32},{"source":3,"target":33},{"source":26,"target":34},{"source":26,"target":3},{"source":27,"target":35},{"source":27,"target":3},{"source":28,"target":36},{"source":28,"target":3},{"source":29,"target":37},{"source":29,"target":3},{"source":30,"target":6},{"source":30,"target":38},{"source":30,"target":3},{"source":38,"target":6},{"source":31,"target":39},{"source":31,"target":3},{"source":32,"target":40},{"source":32,"target":3},{"source":33,"target":4},{"source":33,"target":41},{"source":33,"target":3},{"source":41,"target":4},{"source":4,"target":0},{"source":4,"target":42},{"source":4,"target":43},{"source":42,"target":5},{"source":42,"target":44},{"source":42,"target":4},{"source":44,"target":5},{"source":43,"target":45},{"source":43,"target":4},{"source":5,"target":0},{"source":5,"target":46},{"source":5,"target":47},{"source":5,"target":48},{"source":46,"target":5},{"source":47,"target":5},{"source":48,"target":5},{"source":6,"target":0},{"source":6,"target":49},{"source":6,"target":50},{"source":49,"target":6},{"source":50,"target":6},{"source":7,"target":0},{"source":7,"target":51},{"source":7,"target":52},{"source":51,"target":7},{"source":52,"target":7}],"multigraph":true} |
true | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0"
xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="notation"
nsURI="http://www.eclipse.org/gmf/runtime/1.0.2/notation" nsPrefix="notation">
<eClassifiers xsi:type="ecore:EClass" name="Edge" eSuperTypes="#//View">
<eOperations name="createBendpoints" eType="#//Bendpoints">
<eParameters name="eClass" eType="ecore:EClass platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EClass"/>
</eOperations>
<eOperations name="createSourceAnchor" eType="#//Anchor">
<eParameters name="eClass" eType="ecore:EClass platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EClass"/>
</eOperations>
<eOperations name="createTargetAnchor" eType="#//Anchor">
<eParameters name="eClass" eType="ecore:EClass platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EClass"/>
</eOperations>
<eStructuralFeatures xsi:type="ecore:EReference" name="source" lowerBound="1"
eType="#//View" resolveProxies="false" eOpposite="#//View/sourceEdges"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="target" lowerBound="1"
eType="#//View" resolveProxies="false" eOpposite="#//View/targetEdges"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="bendpoints" eType="#//Bendpoints"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="sourceAnchor" eType="#//Anchor"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="targetAnchor" eType="#//Anchor"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Node" eSuperTypes="#//View">
<eOperations name="createLayoutConstraint" eType="#//LayoutConstraint">
<eParameters name="eClass" eType="ecore:EClass platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EClass"/>
</eOperations>
<eStructuralFeatures xsi:type="ecore:EReference" name="layoutConstraint" eType="#//LayoutConstraint"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Style" abstract="true" interface="true"/>
<eClassifiers xsi:type="ecore:EClass" name="FillStyle" eSuperTypes="#//Style">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="fillColor" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"
defaultValueLiteral="16777215"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="transparency" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"
defaultValueLiteral="-1"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="gradient" eType="#//GradientData"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="LineStyle" eSuperTypes="#//Style">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="lineColor" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"
defaultValueLiteral="11579568"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="lineWidth" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt"
defaultValueLiteral="-1"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="FontStyle" eSuperTypes="#//Style">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="fontColor" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"
defaultValueLiteral="0"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="fontName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
defaultValueLiteral="Tahoma"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="fontHeight" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"
defaultValueLiteral="9"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="bold" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"
defaultValueLiteral="false"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="italic" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"
defaultValueLiteral="false"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="underline" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"
defaultValueLiteral="false"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="strikeThrough" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"
defaultValueLiteral="false"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="TitleStyle" eSuperTypes="#//Style">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="showTitle" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"
defaultValueLiteral="false"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="SortingStyle" eSuperTypes="#//Style">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="sorting" eType="#//Sorting"
defaultValueLiteral="None"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="sortingKeys" eType="#//SortKeyMap"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="sortedObjects" upperBound="-1"
eType="ecore:EClass platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EObject"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="DescriptionStyle" eSuperTypes="#//Style">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="description" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
defaultValueLiteral=""/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="LayoutConstraint" abstract="true" interface="true"/>
<eClassifiers xsi:type="ecore:EClass" name="Size" eSuperTypes="#//LayoutConstraint">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="width" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"
defaultValueLiteral="-1"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="height" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"
defaultValueLiteral="-1"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Location" eSuperTypes="#//LayoutConstraint">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="x" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"
defaultValueLiteral="0"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="y" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"
defaultValueLiteral="0"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Bounds" eSuperTypes="#//Location #//Size"/>
<eClassifiers xsi:type="ecore:EClass" name="Ratio" eSuperTypes="#//LayoutConstraint">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"
defaultValueLiteral="-1"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Anchor" abstract="true" interface="true"/>
<eClassifiers xsi:type="ecore:EClass" name="Bendpoints" abstract="true" interface="true"/>
<eClassifiers xsi:type="ecore:EEnum" name="Sorting">
<eLiterals name="None"/>
<eLiterals name="Manual" value="1"/>
<eLiterals name="Automatic" value="2"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="Filtering">
<eLiterals name="None"/>
<eLiterals name="Manual" value="1"/>
<eLiterals name="Automatic" value="2"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="IdentityAnchor" eSuperTypes="#//Anchor">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="id" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
defaultValueLiteral="anchor"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="Routing">
<eLiterals name="Manual"/>
<eLiterals name="Rectilinear" value="1"/>
<eLiterals name="Tree" value="2"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="Smoothness">
<eLiterals name="None"/>
<eLiterals name="Normal" value="1"/>
<eLiterals name="Less" value="2"/>
<eLiterals name="More" value="3"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="JumpLinkStatus">
<eLiterals name="None"/>
<eLiterals name="All" value="1"/>
<eLiterals name="Below" value="2"/>
<eLiterals name="Above" value="3"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="JumpLinkType">
<eLiterals name="Semicircle"/>
<eLiterals name="Square" value="1"/>
<eLiterals name="Chamfered" value="2"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="RoutingStyle" eSuperTypes="#//Style">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="routing" eType="#//Routing"
defaultValueLiteral="Manual"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="smoothness" eType="#//Smoothness"
defaultValueLiteral="None"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="avoidObstructions" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"
defaultValueLiteral="false"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="closestDistance" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"
defaultValueLiteral="false"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="jumpLinkStatus" eType="#//JumpLinkStatus"
defaultValueLiteral="None"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="jumpLinkType" eType="#//JumpLinkType"
defaultValueLiteral="Semicircle"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="jumpLinksReverse" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"
defaultValueLiteral="false"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="roundedBendpointsRadius"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt" defaultValueLiteral="0"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="View" abstract="true" eSuperTypes="platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EModelElement">
<eOperations name="getStyle" eType="#//Style">
<eParameters name="eClass" eType="ecore:EClass platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EClass"/>
</eOperations>
<eOperations name="createChild" eType="#//Node">
<eParameters name="eClass" eType="ecore:EClass platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EClass"/>
</eOperations>
<eOperations name="createStyle" eType="#//Style">
<eParameters name="eClass" eType="ecore:EClass platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EClass"/>
</eOperations>
<eOperations name="getNamedStyle" eType="#//NamedStyle">
<eParameters name="eClass" eType="ecore:EClass platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EClass"/>
<eParameters name="name" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/>
</eOperations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="visible" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"
defaultValueLiteral="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="type" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
defaultValueLiteral=""/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="mutable" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"
transient="true" defaultValueLiteral="false"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="sourceEdges" upperBound="-1"
eType="#//Edge" transient="true" resolveProxies="false" eOpposite="#//Edge/source"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="targetEdges" upperBound="-1"
eType="#//Edge" transient="true" resolveProxies="false" eOpposite="#//Edge/target"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="persistedChildren" upperBound="-1"
eType="#//Node" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="styles" upperBound="-1"
eType="#//Style" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="element" eType="ecore:EClass platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EObject"
unsettable="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="diagram" lowerBound="1"
eType="#//Diagram" changeable="false" volatile="true" transient="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="transientChildren" upperBound="-1"
eType="#//Node" transient="true" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="RelativeBendpoints" eSuperTypes="#//Bendpoints">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="points" eType="#//RelativeBendpointList"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Diagram" eSuperTypes="#//View">
<eOperations name="createEdge" eType="#//Edge">
<eParameters name="eClass" eType="ecore:EClass platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EClass"/>
</eOperations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
defaultValueLiteral=""/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="measurementUnit" eType="#//MeasurementUnit"
defaultValueLiteral="Himetric" unsettable="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="persistedEdges" upperBound="-1"
eType="#//Edge" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="TransientEdges" upperBound="-1"
eType="#//Edge" transient="true" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Image">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="data" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EByteArray"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CanonicalStyle" eSuperTypes="#//Style">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="canonical" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"
defaultValueLiteral="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ShapeStyle" eSuperTypes="#//FontStyle #//DescriptionStyle #//FillStyle #//LineStyle"/>
<eClassifiers xsi:type="ecore:EClass" name="ConnectorStyle" eSuperTypes="#//RoutingStyle #//LineStyle"/>
<eClassifiers xsi:type="ecore:EDataType" name="RelativeBendpointList" instanceClassName="java.util.List"/>
<eClassifiers xsi:type="ecore:EClass" name="PageStyle" eSuperTypes="#//Style">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="pageX" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"
defaultValueLiteral="0"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="pageY" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"
defaultValueLiteral="0"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="pageWidth" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"
defaultValueLiteral="100"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="pageHeight" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"
defaultValueLiteral="100"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="DrawerStyle" eSuperTypes="#//Style">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="collapsed" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"
defaultValueLiteral="false"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="GuideStyle" eSuperTypes="#//Style">
<eStructuralFeatures xsi:type="ecore:EReference" name="horizontalGuides" upperBound="-1"
eType="#//Guide" containment="true" resolveProxies="false"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="verticalGuides" upperBound="-1"
eType="#//Guide" containment="true" resolveProxies="false"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Guide">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="position" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"
defaultValueLiteral="0"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="nodeMap" upperBound="-1"
eType="#//NodeEntry" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="NodeEntry" instanceClassName="java.util.Map$Entry">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="#//Alignment"
defaultValueLiteral="Center"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="key" lowerBound="1" eType="#//Node"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="Alignment">
<eLiterals name="Left"/>
<eLiterals name="Right" value="1"/>
<eLiterals name="Center" value="2"/>
<eLiterals name="Top" value="3"/>
<eLiterals name="Bottom" value="4"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="FilteringStyle" eSuperTypes="#//Style">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="filtering" eType="#//Filtering"
defaultValueLiteral="None"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="filteringKeys" eType="#//FilterKeyList"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="filteredObjects" upperBound="-1"
eType="ecore:EClass platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EObject"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="FilterKeyList" instanceClassName="java.util.List"/>
<eClassifiers xsi:type="ecore:EDataType" name="SortKeyMap" instanceClassName="java.util.Map"/>
<eClassifiers xsi:type="ecore:EEnum" name="SortingDirection">
<eLiterals name="Ascending"/>
<eLiterals name="Descending" value="1"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="DiagramStyle" eSuperTypes="#//PageStyle #//GuideStyle #//DescriptionStyle"/>
<eClassifiers xsi:type="ecore:EClass" name="ImageStyle" eSuperTypes="#//Style">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="antiAlias" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBooleanObject"
defaultValueLiteral="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="maintainAspectRatio" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBooleanObject"
defaultValueLiteral="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="cropBound" lowerBound="1"
eType="#//Bounds" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ImageBufferStyle" eSuperTypes="#//ImageStyle">
<eStructuralFeatures xsi:type="ecore:EReference" name="imageBuffer" lowerBound="1"
eType="#//Image" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="MeasurementUnit">
<eLiterals name="Himetric"/>
<eLiterals name="Pixel" value="1"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="PropertiesSetStyle" eSuperTypes="#//NamedStyle">
<eOperations name="getProperty" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EJavaObject">
<eParameters name="propertyName" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/>
</eOperations>
<eOperations name="setProperty" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EBoolean">
<eParameters name="propertyName" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/>
<eParameters name="newValue" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EJavaObject"/>
</eOperations>
<eOperations name="createProperty" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EBoolean">
<eParameters name="propertyName" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/>
<eParameters name="instanceType" eType="ecore:EClass platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EDataType"/>
<eParameters name="initialValue" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EJavaObject"/>
</eOperations>
<eOperations name="removeProperty" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EBoolean">
<eParameters name="propertyName" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/>
</eOperations>
<eOperations name="hasProperty" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EBoolean">
<eParameters name="propertyName" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/>
</eOperations>
<eOperations name="createProperty" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EBoolean">
<eParameters name="propertyName" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/>
<eParameters name="initialValue" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/>
</eOperations>
<eStructuralFeatures xsi:type="ecore:EReference" name="propertiesMap" upperBound="-1"
eType="#//StringToPropertyValueMapEntry" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="StringToPropertyValueMapEntry" instanceClassName="java.util.Map$Entry">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="key" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="value" eType="#//PropertyValue"
containment="true" resolveProxies="false"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="PropertyValue" eSuperTypes="#//StringObjectConverter">
<eOperations name="getValue" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EJavaObject"/>
<eOperations name="setValue">
<eParameters name="newValue" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EJavaObject"/>
</eOperations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="rawValue" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="instanceType" eType="ecore:EClass platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EDataType"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="SingleValueStyle" eSuperTypes="#//DataTypeStyle">
<eOperations name="getValue" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EJavaObject"/>
<eOperations name="setValue">
<eParameters name="newValue" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EJavaObject"/>
</eOperations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="rawValue" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ListValueStyle" eSuperTypes="#//DataTypeStyle">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="rawValuesList" unique="false"
upperBound="-1" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="NamedStyle" eSuperTypes="#//Style">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="StringObjectConverter" abstract="true"
interface="true">
<eOperations name="getStringFromObject" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString">
<eParameters name="objectValue" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EJavaObject"/>
</eOperations>
<eOperations name="getObjectFromString" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EJavaObject">
<eParameters name="stringValue" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/>
</eOperations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="DataTypeStyle" eSuperTypes="#//NamedStyle #//StringObjectConverter">
<eStructuralFeatures xsi:type="ecore:EReference" name="instanceType" eType="ecore:EClass platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EDataType"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="IntValueStyle" eSuperTypes="#//NamedStyle">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="intValue" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="IntListValueStyle" eSuperTypes="#//NamedStyle">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="intListValue" unique="false"
upperBound="-1" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="BooleanValueStyle" eSuperTypes="#//NamedStyle">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="booleanValue" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EBoolean"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="DoubleValueStyle" eSuperTypes="#//NamedStyle">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="doubleValue" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EDouble"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="DoubleListValueStyle" eSuperTypes="#//NamedStyle">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="doubleListValue" unique="false"
upperBound="-1" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EDoubleObject"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="StringValueStyle" eSuperTypes="#//NamedStyle">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="stringValue" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="StringListValueStyle" eSuperTypes="#//NamedStyle">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="stringListValue" unique="false"
upperBound="-1" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EObjectValueStyle" eSuperTypes="#//NamedStyle">
<eStructuralFeatures xsi:type="ecore:EReference" name="eObjectValue" eType="ecore:EClass platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EObject"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EObjectListValueStyle" eSuperTypes="#//NamedStyle">
<eStructuralFeatures xsi:type="ecore:EReference" name="eObjectListValue" upperBound="-1"
eType="ecore:EClass platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EObject"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ByteArrayValueStyle" eSuperTypes="#//NamedStyle">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="byteArrayValue" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EByteArray"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="BooleanListValueStyle" eSuperTypes="#//NamedStyle">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="booleanListValue" unique="false"
upperBound="-1" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EBooleanObject"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="HintedDiagramLinkStyle" eSuperTypes="#//DiagramLinkStyle #//Style">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="hint" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="DiagramLinkStyle" eSuperTypes="#//Style">
<eStructuralFeatures xsi:type="ecore:EReference" name="diagramLink" eType="#//Diagram"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="MultiDiagramLinkStyle" eSuperTypes="#//Style">
<eStructuralFeatures xsi:type="ecore:EReference" name="diagramLinks" upperBound="-1"
eType="#//Diagram"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="TextAlignment">
<eLiterals name="Left"/>
<eLiterals name="Right" value="1"/>
<eLiterals name="Center" value="2"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="TextStyle" eSuperTypes="#//Style">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="textAlignment" eType="#//TextAlignment"
defaultValueLiteral="Left"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="LineType">
<eLiterals name="Solid"/>
<eLiterals name="Dash" value="1"/>
<eLiterals name="Dot" value="2"/>
<eLiterals name="DashDot" value="3"/>
<eLiterals name="DashDotDot" value="4"/>
<eLiterals name="Double" value="5"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="LineTypeStyle" eSuperTypes="#//Style">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="lineType" eType="#//LineType"
defaultValueLiteral="Solid"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="ArrowType">
<eLiterals name="None"/>
<eLiterals name="OpenArrow" value="1"/>
<eLiterals name="SolidArrow" value="2"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ArrowStyle" eSuperTypes="#//Style">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="arrowSource" eType="#//ArrowType"
defaultValueLiteral="None"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="arrowTarget" eType="#//ArrowType"
defaultValueLiteral="None"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Shape" eSuperTypes="#//Node #//ShapeStyle"/>
<eClassifiers xsi:type="ecore:EClass" name="Compartment" eSuperTypes="#//BasicCompartment #//CanonicalStyle #//TitleStyle"/>
<eClassifiers xsi:type="ecore:EClass" name="ListCompartment" eSuperTypes="#//BasicCompartment #//SortingStyle #//FilteringStyle #//TitleStyle"/>
<eClassifiers xsi:type="ecore:EClass" name="Connector" eSuperTypes="#//Edge #//ConnectorStyle"/>
<eClassifiers xsi:type="ecore:EClass" name="StandardDiagram" eSuperTypes="#//Diagram #//DiagramStyle"/>
<eClassifiers xsi:type="ecore:EClass" name="DecorationNode" eSuperTypes="#//BasicDecorationNode"/>
<eClassifiers xsi:type="ecore:EClass" name="BasicDecorationNode" eSuperTypes="#//Node"/>
<eClassifiers xsi:type="ecore:EClass" name="BasicCompartment" eSuperTypes="#//DecorationNode #//DrawerStyle"/>
<eClassifiers xsi:type="ecore:EClass" name="BasicSemanticCompartment" eSuperTypes="#//BasicDecorationNode #//DrawerStyle"/>
<eClassifiers xsi:type="ecore:EClass" name="SemanticListCompartment" eSuperTypes="#//BasicSemanticCompartment #//SortingStyle #//FilteringStyle #//TitleStyle"/>
<eClassifiers xsi:type="ecore:EEnum" name="GradientStyle">
<eLiterals name="Vertical"/>
<eLiterals name="Horizontal" value="1"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="GradientData" instanceClassName="org.eclipse.gmf.runtime.notation.datatype.GradientData"/>
</ecore:EPackage>
| github:ecore:/data/imace/de.cau.cs.kieler/models/uml/gmf_notation.ecore | ecore | notation
Edge
createBendpoints
eClass
createSourceAnchor
eClass
createTargetAnchor
eClass
source
target
bendpoints
sourceAnchor
targetAnchor
Node
createLayoutConstraint
eClass
layoutConstraint
Style
FillStyle
fillColor
16777215
transparency
-1
gradient
LineStyle
lineColor
11579568
lineWidth
-1
FontStyle
fontColor
0
fontName
Tahoma
fontHeight
9
bold
false
italic
false
underline
false
strikeThrough
false
TitleStyle
showTitle
false
SortingStyle
sorting
None
sortingKeys
sortedObjects
DescriptionStyle
description
LayoutConstraint
Size
width
-1
height
-1
Location
x
0
y
0
Bounds
Ratio
value
-1
Anchor
Bendpoints
Sorting
None
None
Manual
Manual
Automatic
Automatic
Filtering
None
None
Manual
Manual
Automatic
Automatic
IdentityAnchor
id
anchor
Routing
Manual
Manual
Rectilinear
Rectilinear
Tree
Tree
Smoothness
None
None
Normal
Normal
Less
Less
More
More
JumpLinkStatus
None
None
All
All
Below
Below
Above
Above
JumpLinkType
Semicircle
Semicircle
Square
Square
Chamfered
Chamfered
RoutingStyle
routing
Manual
smoothness
None
avoidObstructions
false
closestDistance
false
jumpLinkStatus
None
jumpLinkType
Semicircle
jumpLinksReverse
false
roundedBendpointsRadius
0
View
getStyle
eClass
createChild
eClass
createStyle
eClass
getNamedStyle
eClass
name
visible
true
type
mutable
false
sourceEdges
targetEdges
persistedChildren
styles
element
diagram
transientChildren
RelativeBendpoints
points
Diagram
createEdge
eClass
name
measurementUnit
Himetric
persistedEdges
TransientEdges
Image
data
CanonicalStyle
canonical
true
ShapeStyle
ConnectorStyle
RelativeBendpointList
java.util.List
java.util.List
PageStyle
pageX
0
pageY
0
pageWidth
100
pageHeight
100
DrawerStyle
collapsed
false
GuideStyle
horizontalGuides
verticalGuides
Guide
position
0
nodeMap
NodeEntry
java.util.Map$Entry
java.util.Map$Entry
value
Center
key
Alignment
Left
Left
Right
Right
Center
Center
Top
Top
Bottom
Bottom
FilteringStyle
filtering
None
filteringKeys
filteredObjects
FilterKeyList
java.util.List
java.util.List
SortKeyMap
java.util.Map
java.util.Map
SortingDirection
Ascending
Ascending
Descending
Descending
DiagramStyle
ImageStyle
antiAlias
true
maintainAspectRatio
true
cropBound
ImageBufferStyle
imageBuffer
MeasurementUnit
Himetric
Himetric
Pixel
Pixel
PropertiesSetStyle
getProperty
propertyName
setProperty
propertyName
newValue
createProperty
propertyName
instanceType
initialValue
removeProperty
propertyName
hasProperty
propertyName
createProperty
propertyName
initialValue
propertiesMap
StringToPropertyValueMapEntry
java.util.Map$Entry
java.util.Map$Entry
key
value
PropertyValue
getValue
setValue
newValue
rawValue
instanceType
SingleValueStyle
getValue
setValue
newValue
rawValue
ListValueStyle
rawValuesList
NamedStyle
name
StringObjectConverter
getStringFromObject
objectValue
getObjectFromString
stringValue
DataTypeStyle
instanceType
IntValueStyle
intValue
IntListValueStyle
intListValue
BooleanValueStyle
booleanValue
DoubleValueStyle
doubleValue
DoubleListValueStyle
doubleListValue
StringValueStyle
stringValue
StringListValueStyle
stringListValue
EObjectValueStyle
eObjectValue
EObjectListValueStyle
eObjectListValue
ByteArrayValueStyle
byteArrayValue
BooleanListValueStyle
booleanListValue
HintedDiagramLinkStyle
hint
DiagramLinkStyle
diagramLink
MultiDiagramLinkStyle
diagramLinks
TextAlignment
Left
Left
Right
Right
Center
Center
TextStyle
textAlignment
Left
LineType
Solid
Solid
Dash
Dash
Dot
Dot
DashDot
DashDot
DashDotDot
DashDotDot
Double
Double
LineTypeStyle
lineType
Solid
ArrowType
None
None
OpenArrow
OpenArrow
SolidArrow
SolidArrow
ArrowStyle
arrowSource
None
arrowTarget
None
Shape
Compartment
ListCompartment
Connector
StandardDiagram
DecorationNode
BasicDecorationNode
BasicCompartment
BasicSemanticCompartment
SemanticListCompartment
GradientStyle
Vertical
Vertical
Horizontal
Horizontal
GradientData
org.eclipse.gmf.runtime.notation.datatype.GradientData
org.eclipse.gmf.runtime.notation.datatype.GradientData | null | {"directed":true,"nodes":[{"nsPrefix":"notation","nsURI":"http://www.eclipse.org/gmf/runtime/1.0.2/notation","name":"notation","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Edge","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Node","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Style","instanceClass":null,"abstract":true,"id":3,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FillStyle","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LineStyle","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FontStyle","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TitleStyle","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SortingStyle","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DescriptionStyle","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LayoutConstraint","instanceClass":null,"abstract":true,"id":10,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Size","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Location","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Bounds","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Ratio","instanceClass":null,"abstract":false,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Anchor","instanceClass":null,"abstract":true,"id":15,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Bendpoints","instanceClass":null,"abstract":true,"id":16,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"Sorting","instanceClass":null,"id":17,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"Filtering","instanceClass":null,"id":18,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IdentityAnchor","instanceClass":null,"abstract":false,"id":19,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"Routing","instanceClass":null,"id":20,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"Smoothness","instanceClass":null,"id":21,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"JumpLinkStatus","instanceClass":null,"id":22,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"JumpLinkType","instanceClass":null,"id":23,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RoutingStyle","instanceClass":null,"abstract":false,"id":24,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"View","instanceClass":null,"abstract":true,"id":25,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RelativeBendpoints","instanceClass":null,"abstract":false,"id":26,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Diagram","instanceClass":null,"abstract":false,"id":27,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Image","instanceClass":null,"abstract":false,"id":28,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CanonicalStyle","instanceClass":null,"abstract":false,"id":29,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ShapeStyle","instanceClass":null,"abstract":false,"id":30,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ConnectorStyle","instanceClass":null,"abstract":false,"id":31,"interface":false,"eClass":"EClass"},{"instanceTypeName":"java.util.List","defaultValue":null,"instanceClassName":"java.util.List","name":"RelativeBendpointList","instanceClass":"java.util.List","id":32,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PageStyle","instanceClass":null,"abstract":false,"id":33,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DrawerStyle","instanceClass":null,"abstract":false,"id":34,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"GuideStyle","instanceClass":null,"abstract":false,"id":35,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Guide","instanceClass":null,"abstract":false,"id":36,"interface":false,"eClass":"EClass"},{"instanceTypeName":"java.util.Map$Entry","defaultValue":null,"instanceClassName":"java.util.Map$Entry","name":"NodeEntry","instanceClass":"java.util.Map$Entry","abstract":false,"id":37,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"Alignment","instanceClass":null,"id":38,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FilteringStyle","instanceClass":null,"abstract":false,"id":39,"interface":false,"eClass":"EClass"},{"instanceTypeName":"java.util.List","defaultValue":null,"instanceClassName":"java.util.List","name":"FilterKeyList","instanceClass":"java.util.List","id":40,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.util.Map","defaultValue":null,"instanceClassName":"java.util.Map","name":"SortKeyMap","instanceClass":"java.util.Map","id":41,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":null,"instanceClassName":null,"name":"SortingDirection","instanceClass":null,"id":42,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DiagramStyle","instanceClass":null,"abstract":false,"id":43,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ImageStyle","instanceClass":null,"abstract":false,"id":44,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ImageBufferStyle","instanceClass":null,"abstract":false,"id":45,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"MeasurementUnit","instanceClass":null,"id":46,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PropertiesSetStyle","instanceClass":null,"abstract":false,"id":47,"interface":false,"eClass":"EClass"},{"instanceTypeName":"java.util.Map$Entry","defaultValue":null,"instanceClassName":"java.util.Map$Entry","name":"StringToPropertyValueMapEntry","instanceClass":"java.util.Map$Entry","abstract":false,"id":48,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PropertyValue","instanceClass":null,"abstract":false,"id":49,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SingleValueStyle","instanceClass":null,"abstract":false,"id":50,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ListValueStyle","instanceClass":null,"abstract":false,"id":51,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NamedStyle","instanceClass":null,"abstract":false,"id":52,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StringObjectConverter","instanceClass":null,"abstract":true,"id":53,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DataTypeStyle","instanceClass":null,"abstract":false,"id":54,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IntValueStyle","instanceClass":null,"abstract":false,"id":55,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IntListValueStyle","instanceClass":null,"abstract":false,"id":56,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BooleanValueStyle","instanceClass":null,"abstract":false,"id":57,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DoubleValueStyle","instanceClass":null,"abstract":false,"id":58,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DoubleListValueStyle","instanceClass":null,"abstract":false,"id":59,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StringValueStyle","instanceClass":null,"abstract":false,"id":60,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StringListValueStyle","instanceClass":null,"abstract":false,"id":61,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EObjectValueStyle","instanceClass":null,"abstract":false,"id":62,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EObjectListValueStyle","instanceClass":null,"abstract":false,"id":63,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ByteArrayValueStyle","instanceClass":null,"abstract":false,"id":64,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BooleanListValueStyle","instanceClass":null,"abstract":false,"id":65,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"HintedDiagramLinkStyle","instanceClass":null,"abstract":false,"id":66,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DiagramLinkStyle","instanceClass":null,"abstract":false,"id":67,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MultiDiagramLinkStyle","instanceClass":null,"abstract":false,"id":68,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"TextAlignment","instanceClass":null,"id":69,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TextStyle","instanceClass":null,"abstract":false,"id":70,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"LineType","instanceClass":null,"id":71,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LineTypeStyle","instanceClass":null,"abstract":false,"id":72,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"ArrowType","instanceClass":null,"id":73,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ArrowStyle","instanceClass":null,"abstract":false,"id":74,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Shape","instanceClass":null,"abstract":false,"id":75,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Compartment","instanceClass":null,"abstract":false,"id":76,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ListCompartment","instanceClass":null,"abstract":false,"id":77,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Connector","instanceClass":null,"abstract":false,"id":78,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StandardDiagram","instanceClass":null,"abstract":false,"id":79,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DecorationNode","instanceClass":null,"abstract":false,"id":80,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BasicDecorationNode","instanceClass":null,"abstract":false,"id":81,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BasicCompartment","instanceClass":null,"abstract":false,"id":82,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BasicSemanticCompartment","instanceClass":null,"abstract":false,"id":83,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SemanticListCompartment","instanceClass":null,"abstract":false,"id":84,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"GradientStyle","instanceClass":null,"id":85,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":"org.eclipse.gmf.runtime.notation.datatype.GradientData","defaultValue":null,"instanceClassName":"org.eclipse.gmf.runtime.notation.datatype.GradientData","name":"GradientData","instanceClass":null,"id":86,"serializable":true,"eClass":"EDataType"},{"ordered":true,"upperBound":1,"unique":true,"name":"createBendpoints","lowerBound":0,"id":87,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"createSourceAnchor","lowerBound":0,"id":88,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"createTargetAnchor","lowerBound":0,"id":89,"many":false,"required":false,"eClass":"EOperation"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"source","changeable":true,"resolveProxies":false,"lowerBound":1,"id":90,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"target","changeable":true,"resolveProxies":false,"lowerBound":1,"id":91,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"bendpoints","changeable":true,"resolveProxies":true,"lowerBound":0,"id":92,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"sourceAnchor","changeable":true,"resolveProxies":true,"lowerBound":0,"id":93,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"targetAnchor","changeable":true,"resolveProxies":true,"lowerBound":0,"id":94,"derived":false},{"id":95,"eClass":"EGenericType"},{"id":96,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"eClass","lowerBound":0,"id":97,"many":false,"required":false,"eClass":"EParameter"},{"id":98,"eClass":"EGenericType"},{"id":99,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"eClass","lowerBound":0,"id":100,"many":false,"required":false,"eClass":"EParameter"},{"id":101,"eClass":"EGenericType"},{"id":102,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"eClass","lowerBound":0,"id":103,"many":false,"required":false,"eClass":"EParameter"},{"id":104,"eClass":"EGenericType"},{"id":105,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"sourceEdges","changeable":true,"resolveProxies":false,"lowerBound":0,"id":106,"derived":false},{"id":107,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"targetEdges","changeable":true,"resolveProxies":false,"lowerBound":0,"id":108,"derived":false},{"id":109,"eClass":"EGenericType"},{"id":110,"eClass":"EGenericType"},{"id":111,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"createLayoutConstraint","lowerBound":0,"id":112,"many":false,"required":false,"eClass":"EOperation"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"layoutConstraint","changeable":true,"resolveProxies":true,"lowerBound":0,"id":113,"derived":false},{"id":114,"eClass":"EGenericType"},{"id":115,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"eClass","lowerBound":0,"id":116,"many":false,"required":false,"eClass":"EParameter"},{"id":117,"eClass":"EGenericType"},{"id":118,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":16777215,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"16777215","unsettable":false,"transient":false,"unique":true,"name":"fillColor","changeable":true,"lowerBound":0,"iD":false,"id":119,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":-1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"-1","unsettable":false,"transient":false,"unique":true,"name":"transparency","changeable":true,"lowerBound":0,"iD":false,"id":120,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"gradient","changeable":true,"lowerBound":0,"iD":false,"id":121,"derived":false},{"id":122,"eClass":"EGenericType"},{"id":123,"eClass":"EGenericType"},{"id":124,"eClass":"EGenericType"},{"id":125,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":11579568,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"11579568","unsettable":false,"transient":false,"unique":true,"name":"lineColor","changeable":true,"lowerBound":0,"iD":false,"id":126,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"-1","unsettable":false,"transient":false,"unique":true,"name":"lineWidth","changeable":true,"lowerBound":0,"iD":false,"id":127,"derived":false},{"id":128,"eClass":"EGenericType"},{"id":129,"eClass":"EGenericType"},{"id":130,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"0","unsettable":false,"transient":false,"unique":true,"name":"fontColor","changeable":true,"lowerBound":0,"iD":false,"id":131,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":"Tahoma","volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"Tahoma","unsettable":false,"transient":false,"unique":true,"name":"fontName","changeable":true,"lowerBound":0,"iD":false,"id":132,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":9,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"9","unsettable":false,"transient":false,"unique":true,"name":"fontHeight","changeable":true,"lowerBound":0,"iD":false,"id":133,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"false","unsettable":false,"transient":false,"unique":true,"name":"bold","changeable":true,"lowerBound":0,"iD":false,"id":134,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"false","unsettable":false,"transient":false,"unique":true,"name":"italic","changeable":true,"lowerBound":0,"iD":false,"id":135,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"false","unsettable":false,"transient":false,"unique":true,"name":"underline","changeable":true,"lowerBound":0,"iD":false,"id":136,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"false","unsettable":false,"transient":false,"unique":true,"name":"strikeThrough","changeable":true,"lowerBound":0,"iD":false,"id":137,"derived":false},{"id":138,"eClass":"EGenericType"},{"id":139,"eClass":"EGenericType"},{"id":140,"eClass":"EGenericType"},{"id":141,"eClass":"EGenericType"},{"id":142,"eClass":"EGenericType"},{"id":143,"eClass":"EGenericType"},{"id":144,"eClass":"EGenericType"},{"id":145,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"false","unsettable":false,"transient":false,"unique":true,"name":"showTitle","changeable":true,"lowerBound":0,"iD":false,"id":146,"derived":false},{"id":147,"eClass":"EGenericType"},{"id":148,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"None","unsettable":false,"transient":false,"unique":true,"name":"sorting","changeable":true,"lowerBound":0,"iD":false,"id":149,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"sortingKeys","changeable":true,"lowerBound":0,"iD":false,"id":150,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"sortedObjects","changeable":true,"resolveProxies":true,"lowerBound":0,"id":151,"derived":false},{"id":152,"eClass":"EGenericType"},{"id":153,"eClass":"EGenericType"},{"id":154,"eClass":"EGenericType"},{"id":155,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":"","volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"","unsettable":false,"transient":false,"unique":true,"name":"description","changeable":true,"lowerBound":0,"iD":false,"id":156,"derived":false},{"id":157,"eClass":"EGenericType"},{"id":158,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":-1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"-1","unsettable":false,"transient":false,"unique":true,"name":"width","changeable":true,"lowerBound":0,"iD":false,"id":159,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":-1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"-1","unsettable":false,"transient":false,"unique":true,"name":"height","changeable":true,"lowerBound":0,"iD":false,"id":160,"derived":false},{"id":161,"eClass":"EGenericType"},{"id":162,"eClass":"EGenericType"},{"id":163,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"0","unsettable":false,"transient":false,"unique":true,"name":"x","changeable":true,"lowerBound":0,"iD":false,"id":164,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"0","unsettable":false,"transient":false,"unique":true,"name":"y","changeable":true,"lowerBound":0,"iD":false,"id":165,"derived":false},{"id":166,"eClass":"EGenericType"},{"id":167,"eClass":"EGenericType"},{"id":168,"eClass":"EGenericType"},{"id":169,"eClass":"EGenericType"},{"id":170,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":-1.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"-1","unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":0,"iD":false,"id":171,"derived":false},{"id":172,"eClass":"EGenericType"},{"id":173,"eClass":"EGenericType"},{"name":"None","id":174,"value":0,"literal":"None","eClass":"EEnumLiteral"},{"name":"Manual","id":175,"value":1,"literal":"Manual","eClass":"EEnumLiteral"},{"name":"Automatic","id":176,"value":2,"literal":"Automatic","eClass":"EEnumLiteral"},{"name":"None","id":177,"value":0,"literal":"None","eClass":"EEnumLiteral"},{"name":"Manual","id":178,"value":1,"literal":"Manual","eClass":"EEnumLiteral"},{"name":"Automatic","id":179,"value":2,"literal":"Automatic","eClass":"EEnumLiteral"},{"ordered":true,"upperBound":1,"defaultValue":"anchor","volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"anchor","unsettable":false,"transient":false,"unique":true,"name":"id","changeable":true,"lowerBound":0,"iD":false,"id":180,"derived":false},{"id":181,"eClass":"EGenericType"},{"id":182,"eClass":"EGenericType"},{"name":"Manual","id":183,"value":0,"literal":"Manual","eClass":"EEnumLiteral"},{"name":"Rectilinear","id":184,"value":1,"literal":"Rectilinear","eClass":"EEnumLiteral"},{"name":"Tree","id":185,"value":2,"literal":"Tree","eClass":"EEnumLiteral"},{"name":"None","id":186,"value":0,"literal":"None","eClass":"EEnumLiteral"},{"name":"Normal","id":187,"value":1,"literal":"Normal","eClass":"EEnumLiteral"},{"name":"Less","id":188,"value":2,"literal":"Less","eClass":"EEnumLiteral"},{"name":"More","id":189,"value":3,"literal":"More","eClass":"EEnumLiteral"},{"name":"None","id":190,"value":0,"literal":"None","eClass":"EEnumLiteral"},{"name":"All","id":191,"value":1,"literal":"All","eClass":"EEnumLiteral"},{"name":"Below","id":192,"value":2,"literal":"Below","eClass":"EEnumLiteral"},{"name":"Above","id":193,"value":3,"literal":"Above","eClass":"EEnumLiteral"},{"name":"Semicircle","id":194,"value":0,"literal":"Semicircle","eClass":"EEnumLiteral"},{"name":"Square","id":195,"value":1,"literal":"Square","eClass":"EEnumLiteral"},{"name":"Chamfered","id":196,"value":2,"literal":"Chamfered","eClass":"EEnumLiteral"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"Manual","unsettable":false,"transient":false,"unique":true,"name":"routing","changeable":true,"lowerBound":0,"iD":false,"id":197,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"None","unsettable":false,"transient":false,"unique":true,"name":"smoothness","changeable":true,"lowerBound":0,"iD":false,"id":198,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"false","unsettable":false,"transient":false,"unique":true,"name":"avoidObstructions","changeable":true,"lowerBound":0,"iD":false,"id":199,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"false","unsettable":false,"transient":false,"unique":true,"name":"closestDistance","changeable":true,"lowerBound":0,"iD":false,"id":200,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"None","unsettable":false,"transient":false,"unique":true,"name":"jumpLinkStatus","changeable":true,"lowerBound":0,"iD":false,"id":201,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"Semicircle","unsettable":false,"transient":false,"unique":true,"name":"jumpLinkType","changeable":true,"lowerBound":0,"iD":false,"id":202,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"false","unsettable":false,"transient":false,"unique":true,"name":"jumpLinksReverse","changeable":true,"lowerBound":0,"iD":false,"id":203,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"0","unsettable":false,"transient":false,"unique":true,"name":"roundedBendpointsRadius","changeable":true,"lowerBound":0,"iD":false,"id":204,"derived":false},{"id":205,"eClass":"EGenericType"},{"id":206,"eClass":"EGenericType"},{"id":207,"eClass":"EGenericType"},{"id":208,"eClass":"EGenericType"},{"id":209,"eClass":"EGenericType"},{"id":210,"eClass":"EGenericType"},{"id":211,"eClass":"EGenericType"},{"id":212,"eClass":"EGenericType"},{"id":213,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"getStyle","lowerBound":0,"id":214,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"createChild","lowerBound":0,"id":215,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"createStyle","lowerBound":0,"id":216,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getNamedStyle","lowerBound":0,"id":217,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"defaultValue":true,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"true","unsettable":false,"transient":false,"unique":true,"name":"visible","changeable":true,"lowerBound":0,"iD":false,"id":218,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":"","volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"","unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"lowerBound":0,"iD":false,"id":219,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"false","unsettable":false,"transient":true,"unique":true,"name":"mutable","changeable":true,"lowerBound":0,"iD":false,"id":220,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"persistedChildren","changeable":true,"resolveProxies":true,"lowerBound":0,"id":221,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"styles","changeable":true,"resolveProxies":true,"lowerBound":0,"id":222,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":true,"transient":false,"unique":true,"name":"element","changeable":true,"resolveProxies":true,"lowerBound":0,"id":223,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":true,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"diagram","changeable":false,"resolveProxies":true,"lowerBound":1,"id":224,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":true,"unique":true,"name":"transientChildren","changeable":true,"resolveProxies":true,"lowerBound":0,"id":225,"derived":false},{"id":226,"eClass":"EGenericType"},{"id":227,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"eClass","lowerBound":0,"id":228,"many":false,"required":false,"eClass":"EParameter"},{"id":229,"eClass":"EGenericType"},{"id":230,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"eClass","lowerBound":0,"id":231,"many":false,"required":false,"eClass":"EParameter"},{"id":232,"eClass":"EGenericType"},{"id":233,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"eClass","lowerBound":0,"id":234,"many":false,"required":false,"eClass":"EParameter"},{"id":235,"eClass":"EGenericType"},{"id":236,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"eClass","lowerBound":0,"id":237,"many":false,"required":false,"eClass":"EParameter"},{"ordered":true,"upperBound":1,"unique":true,"name":"name","lowerBound":0,"id":238,"many":false,"required":false,"eClass":"EParameter"},{"id":239,"eClass":"EGenericType"},{"id":240,"eClass":"EGenericType"},{"id":241,"eClass":"EGenericType"},{"id":242,"eClass":"EGenericType"},{"id":243,"eClass":"EGenericType"},{"id":244,"eClass":"EGenericType"},{"id":245,"eClass":"EGenericType"},{"id":246,"eClass":"EGenericType"},{"id":247,"eClass":"EGenericType"},{"id":248,"eClass":"EGenericType"},{"id":249,"eClass":"EGenericType"},{"id":250,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"points","changeable":true,"lowerBound":0,"iD":false,"id":251,"derived":false},{"id":252,"eClass":"EGenericType"},{"id":253,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"createEdge","lowerBound":0,"id":254,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"defaultValue":"","volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"","unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":255,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"Himetric","unsettable":true,"transient":false,"unique":true,"name":"measurementUnit","changeable":true,"lowerBound":0,"iD":false,"id":256,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"persistedEdges","changeable":true,"resolveProxies":true,"lowerBound":0,"id":257,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":true,"unique":true,"name":"TransientEdges","changeable":true,"resolveProxies":true,"lowerBound":0,"id":258,"derived":false},{"id":259,"eClass":"EGenericType"},{"id":260,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"eClass","lowerBound":0,"id":261,"many":false,"required":false,"eClass":"EParameter"},{"id":262,"eClass":"EGenericType"},{"id":263,"eClass":"EGenericType"},{"id":264,"eClass":"EGenericType"},{"id":265,"eClass":"EGenericType"},{"id":266,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"data","changeable":true,"lowerBound":0,"iD":false,"id":267,"derived":false},{"id":268,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":true,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"true","unsettable":false,"transient":false,"unique":true,"name":"canonical","changeable":true,"lowerBound":0,"iD":false,"id":269,"derived":false},{"id":270,"eClass":"EGenericType"},{"id":271,"eClass":"EGenericType"},{"id":272,"eClass":"EGenericType"},{"id":273,"eClass":"EGenericType"},{"id":274,"eClass":"EGenericType"},{"id":275,"eClass":"EGenericType"},{"id":276,"eClass":"EGenericType"},{"id":277,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"0","unsettable":false,"transient":false,"unique":true,"name":"pageX","changeable":true,"lowerBound":0,"iD":false,"id":278,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"0","unsettable":false,"transient":false,"unique":true,"name":"pageY","changeable":true,"lowerBound":0,"iD":false,"id":279,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":100,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"100","unsettable":false,"transient":false,"unique":true,"name":"pageWidth","changeable":true,"lowerBound":0,"iD":false,"id":280,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":100,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"100","unsettable":false,"transient":false,"unique":true,"name":"pageHeight","changeable":true,"lowerBound":0,"iD":false,"id":281,"derived":false},{"id":282,"eClass":"EGenericType"},{"id":283,"eClass":"EGenericType"},{"id":284,"eClass":"EGenericType"},{"id":285,"eClass":"EGenericType"},{"id":286,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"false","unsettable":false,"transient":false,"unique":true,"name":"collapsed","changeable":true,"lowerBound":0,"iD":false,"id":287,"derived":false},{"id":288,"eClass":"EGenericType"},{"id":289,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"horizontalGuides","changeable":true,"resolveProxies":false,"lowerBound":0,"id":290,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"verticalGuides","changeable":true,"resolveProxies":false,"lowerBound":0,"id":291,"derived":false},{"id":292,"eClass":"EGenericType"},{"id":293,"eClass":"EGenericType"},{"id":294,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"0","unsettable":false,"transient":false,"unique":true,"name":"position","changeable":true,"lowerBound":0,"iD":false,"id":295,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"nodeMap","changeable":true,"resolveProxies":true,"lowerBound":0,"id":296,"derived":false},{"id":297,"eClass":"EGenericType"},{"id":298,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"Center","unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":0,"iD":false,"id":299,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"key","changeable":true,"resolveProxies":true,"lowerBound":1,"id":300,"derived":false},{"id":301,"eClass":"EGenericType"},{"id":302,"eClass":"EGenericType"},{"name":"Left","id":303,"value":0,"literal":"Left","eClass":"EEnumLiteral"},{"name":"Right","id":304,"value":1,"literal":"Right","eClass":"EEnumLiteral"},{"name":"Center","id":305,"value":2,"literal":"Center","eClass":"EEnumLiteral"},{"name":"Top","id":306,"value":3,"literal":"Top","eClass":"EEnumLiteral"},{"name":"Bottom","id":307,"value":4,"literal":"Bottom","eClass":"EEnumLiteral"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"None","unsettable":false,"transient":false,"unique":true,"name":"filtering","changeable":true,"lowerBound":0,"iD":false,"id":308,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"filteringKeys","changeable":true,"lowerBound":0,"iD":false,"id":309,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"filteredObjects","changeable":true,"resolveProxies":true,"lowerBound":0,"id":310,"derived":false},{"id":311,"eClass":"EGenericType"},{"id":312,"eClass":"EGenericType"},{"id":313,"eClass":"EGenericType"},{"id":314,"eClass":"EGenericType"},{"name":"Ascending","id":315,"value":0,"literal":"Ascending","eClass":"EEnumLiteral"},{"name":"Descending","id":316,"value":1,"literal":"Descending","eClass":"EEnumLiteral"},{"id":317,"eClass":"EGenericType"},{"id":318,"eClass":"EGenericType"},{"id":319,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":true,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"true","unsettable":false,"transient":false,"unique":true,"name":"antiAlias","changeable":true,"lowerBound":0,"iD":false,"id":320,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":true,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"true","unsettable":false,"transient":false,"unique":true,"name":"maintainAspectRatio","changeable":true,"lowerBound":0,"iD":false,"id":321,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"cropBound","changeable":true,"resolveProxies":true,"lowerBound":1,"id":322,"derived":false},{"id":323,"eClass":"EGenericType"},{"id":324,"eClass":"EGenericType"},{"id":325,"eClass":"EGenericType"},{"id":326,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"imageBuffer","changeable":true,"resolveProxies":true,"lowerBound":1,"id":327,"derived":false},{"id":328,"eClass":"EGenericType"},{"id":329,"eClass":"EGenericType"},{"name":"Himetric","id":330,"value":0,"literal":"Himetric","eClass":"EEnumLiteral"},{"name":"Pixel","id":331,"value":1,"literal":"Pixel","eClass":"EEnumLiteral"},{"ordered":true,"upperBound":1,"unique":true,"name":"getProperty","lowerBound":0,"id":332,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"setProperty","lowerBound":0,"id":333,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"createProperty","lowerBound":0,"id":334,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"removeProperty","lowerBound":0,"id":335,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"hasProperty","lowerBound":0,"id":336,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"createProperty","lowerBound":0,"id":337,"many":false,"required":false,"eClass":"EOperation"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"propertiesMap","changeable":true,"resolveProxies":true,"lowerBound":0,"id":338,"derived":false},{"id":339,"eClass":"EGenericType"},{"id":340,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"propertyName","lowerBound":0,"id":341,"many":false,"required":false,"eClass":"EParameter"},{"id":342,"eClass":"EGenericType"},{"id":343,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"propertyName","lowerBound":0,"id":344,"many":false,"required":false,"eClass":"EParameter"},{"ordered":true,"upperBound":1,"unique":true,"name":"newValue","lowerBound":0,"id":345,"many":false,"required":false,"eClass":"EParameter"},{"id":346,"eClass":"EGenericType"},{"id":347,"eClass":"EGenericType"},{"id":348,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"propertyName","lowerBound":0,"id":349,"many":false,"required":false,"eClass":"EParameter"},{"ordered":true,"upperBound":1,"unique":true,"name":"instanceType","lowerBound":0,"id":350,"many":false,"required":false,"eClass":"EParameter"},{"ordered":true,"upperBound":1,"unique":true,"name":"initialValue","lowerBound":0,"id":351,"many":false,"required":false,"eClass":"EParameter"},{"id":352,"eClass":"EGenericType"},{"id":353,"eClass":"EGenericType"},{"id":354,"eClass":"EGenericType"},{"id":355,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"propertyName","lowerBound":0,"id":356,"many":false,"required":false,"eClass":"EParameter"},{"id":357,"eClass":"EGenericType"},{"id":358,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"propertyName","lowerBound":0,"id":359,"many":false,"required":false,"eClass":"EParameter"},{"id":360,"eClass":"EGenericType"},{"id":361,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"propertyName","lowerBound":0,"id":362,"many":false,"required":false,"eClass":"EParameter"},{"ordered":true,"upperBound":1,"unique":true,"name":"initialValue","lowerBound":0,"id":363,"many":false,"required":false,"eClass":"EParameter"},{"id":364,"eClass":"EGenericType"},{"id":365,"eClass":"EGenericType"},{"id":366,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"key","changeable":true,"lowerBound":0,"iD":false,"id":367,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"resolveProxies":false,"lowerBound":0,"id":368,"derived":false},{"id":369,"eClass":"EGenericType"},{"id":370,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"getValue","lowerBound":0,"id":371,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"setValue","lowerBound":0,"id":372,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"rawValue","changeable":true,"lowerBound":0,"iD":false,"id":373,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"instanceType","changeable":true,"resolveProxies":true,"lowerBound":0,"id":374,"derived":false},{"id":375,"eClass":"EGenericType"},{"id":376,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"newValue","lowerBound":0,"id":377,"many":false,"required":false,"eClass":"EParameter"},{"id":378,"eClass":"EGenericType"},{"id":379,"eClass":"EGenericType"},{"id":380,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"getValue","lowerBound":0,"id":381,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"setValue","lowerBound":0,"id":382,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"rawValue","changeable":true,"lowerBound":0,"iD":false,"id":383,"derived":false},{"id":384,"eClass":"EGenericType"},{"id":385,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"newValue","lowerBound":0,"id":386,"many":false,"required":false,"eClass":"EParameter"},{"id":387,"eClass":"EGenericType"},{"id":388,"eClass":"EGenericType"},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"rawValuesList","changeable":true,"lowerBound":0,"iD":false,"id":389,"derived":false},{"id":390,"eClass":"EGenericType"},{"id":391,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":392,"derived":false},{"id":393,"eClass":"EGenericType"},{"id":394,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"getStringFromObject","lowerBound":0,"id":395,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getObjectFromString","lowerBound":0,"id":396,"many":false,"required":false,"eClass":"EOperation"},{"id":397,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"objectValue","lowerBound":0,"id":398,"many":false,"required":false,"eClass":"EParameter"},{"id":399,"eClass":"EGenericType"},{"id":400,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"stringValue","lowerBound":0,"id":401,"many":false,"required":false,"eClass":"EParameter"},{"id":402,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"instanceType","changeable":true,"resolveProxies":true,"lowerBound":0,"id":403,"derived":false},{"id":404,"eClass":"EGenericType"},{"id":405,"eClass":"EGenericType"},{"id":406,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"intValue","changeable":true,"lowerBound":0,"iD":false,"id":407,"derived":false},{"id":408,"eClass":"EGenericType"},{"id":409,"eClass":"EGenericType"},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"intListValue","changeable":true,"lowerBound":0,"iD":false,"id":410,"derived":false},{"id":411,"eClass":"EGenericType"},{"id":412,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"booleanValue","changeable":true,"lowerBound":0,"iD":false,"id":413,"derived":false},{"id":414,"eClass":"EGenericType"},{"id":415,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"doubleValue","changeable":true,"lowerBound":0,"iD":false,"id":416,"derived":false},{"id":417,"eClass":"EGenericType"},{"id":418,"eClass":"EGenericType"},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"doubleListValue","changeable":true,"lowerBound":0,"iD":false,"id":419,"derived":false},{"id":420,"eClass":"EGenericType"},{"id":421,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"stringValue","changeable":true,"lowerBound":0,"iD":false,"id":422,"derived":false},{"id":423,"eClass":"EGenericType"},{"id":424,"eClass":"EGenericType"},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"stringListValue","changeable":true,"lowerBound":0,"iD":false,"id":425,"derived":false},{"id":426,"eClass":"EGenericType"},{"id":427,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"eObjectValue","changeable":true,"resolveProxies":true,"lowerBound":0,"id":428,"derived":false},{"id":429,"eClass":"EGenericType"},{"id":430,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"eObjectListValue","changeable":true,"resolveProxies":true,"lowerBound":0,"id":431,"derived":false},{"id":432,"eClass":"EGenericType"},{"id":433,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"byteArrayValue","changeable":true,"lowerBound":0,"iD":false,"id":434,"derived":false},{"id":435,"eClass":"EGenericType"},{"id":436,"eClass":"EGenericType"},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"booleanListValue","changeable":true,"lowerBound":0,"iD":false,"id":437,"derived":false},{"id":438,"eClass":"EGenericType"},{"id":439,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"hint","changeable":true,"lowerBound":0,"iD":false,"id":440,"derived":false},{"id":441,"eClass":"EGenericType"},{"id":442,"eClass":"EGenericType"},{"id":443,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"diagramLink","changeable":true,"resolveProxies":true,"lowerBound":0,"id":444,"derived":false},{"id":445,"eClass":"EGenericType"},{"id":446,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"diagramLinks","changeable":true,"resolveProxies":true,"lowerBound":0,"id":447,"derived":false},{"id":448,"eClass":"EGenericType"},{"id":449,"eClass":"EGenericType"},{"name":"Left","id":450,"value":0,"literal":"Left","eClass":"EEnumLiteral"},{"name":"Right","id":451,"value":1,"literal":"Right","eClass":"EEnumLiteral"},{"name":"Center","id":452,"value":2,"literal":"Center","eClass":"EEnumLiteral"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"Left","unsettable":false,"transient":false,"unique":true,"name":"textAlignment","changeable":true,"lowerBound":0,"iD":false,"id":453,"derived":false},{"id":454,"eClass":"EGenericType"},{"id":455,"eClass":"EGenericType"},{"name":"Solid","id":456,"value":0,"literal":"Solid","eClass":"EEnumLiteral"},{"name":"Dash","id":457,"value":1,"literal":"Dash","eClass":"EEnumLiteral"},{"name":"Dot","id":458,"value":2,"literal":"Dot","eClass":"EEnumLiteral"},{"name":"DashDot","id":459,"value":3,"literal":"DashDot","eClass":"EEnumLiteral"},{"name":"DashDotDot","id":460,"value":4,"literal":"DashDotDot","eClass":"EEnumLiteral"},{"name":"Double","id":461,"value":5,"literal":"Double","eClass":"EEnumLiteral"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"Solid","unsettable":false,"transient":false,"unique":true,"name":"lineType","changeable":true,"lowerBound":0,"iD":false,"id":462,"derived":false},{"id":463,"eClass":"EGenericType"},{"id":464,"eClass":"EGenericType"},{"name":"None","id":465,"value":0,"literal":"None","eClass":"EEnumLiteral"},{"name":"OpenArrow","id":466,"value":1,"literal":"OpenArrow","eClass":"EEnumLiteral"},{"name":"SolidArrow","id":467,"value":2,"literal":"SolidArrow","eClass":"EEnumLiteral"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"None","unsettable":false,"transient":false,"unique":true,"name":"arrowSource","changeable":true,"lowerBound":0,"iD":false,"id":468,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"None","unsettable":false,"transient":false,"unique":true,"name":"arrowTarget","changeable":true,"lowerBound":0,"iD":false,"id":469,"derived":false},{"id":470,"eClass":"EGenericType"},{"id":471,"eClass":"EGenericType"},{"id":472,"eClass":"EGenericType"},{"id":473,"eClass":"EGenericType"},{"id":474,"eClass":"EGenericType"},{"id":475,"eClass":"EGenericType"},{"id":476,"eClass":"EGenericType"},{"id":477,"eClass":"EGenericType"},{"id":478,"eClass":"EGenericType"},{"id":479,"eClass":"EGenericType"},{"id":480,"eClass":"EGenericType"},{"id":481,"eClass":"EGenericType"},{"id":482,"eClass":"EGenericType"},{"id":483,"eClass":"EGenericType"},{"id":484,"eClass":"EGenericType"},{"id":485,"eClass":"EGenericType"},{"id":486,"eClass":"EGenericType"},{"id":487,"eClass":"EGenericType"},{"id":488,"eClass":"EGenericType"},{"id":489,"eClass":"EGenericType"},{"id":490,"eClass":"EGenericType"},{"id":491,"eClass":"EGenericType"},{"id":492,"eClass":"EGenericType"},{"id":493,"eClass":"EGenericType"},{"id":494,"eClass":"EGenericType"},{"id":495,"eClass":"EGenericType"},{"name":"Vertical","id":496,"value":0,"literal":"Vertical","eClass":"EEnumLiteral"},{"name":"Horizontal","id":497,"value":1,"literal":"Horizontal","eClass":"EEnumLiteral"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":0,"target":8},{"source":0,"target":9},{"source":0,"target":10},{"source":0,"target":11},{"source":0,"target":12},{"source":0,"target":13},{"source":0,"target":14},{"source":0,"target":15},{"source":0,"target":16},{"source":0,"target":17},{"source":0,"target":18},{"source":0,"target":19},{"source":0,"target":20},{"source":0,"target":21},{"source":0,"target":22},{"source":0,"target":23},{"source":0,"target":24},{"source":0,"target":25},{"source":0,"target":26},{"source":0,"target":27},{"source":0,"target":28},{"source":0,"target":29},{"source":0,"target":30},{"source":0,"target":31},{"source":0,"target":32},{"source":0,"target":33},{"source":0,"target":34},{"source":0,"target":35},{"source":0,"target":36},{"source":0,"target":37},{"source":0,"target":38},{"source":0,"target":39},{"source":0,"target":40},{"source":0,"target":41},{"source":0,"target":42},{"source":0,"target":43},{"source":0,"target":44},{"source":0,"target":45},{"source":0,"target":46},{"source":0,"target":47},{"source":0,"target":48},{"source":0,"target":49},{"source":0,"target":50},{"source":0,"target":51},{"source":0,"target":52},{"source":0,"target":53},{"source":0,"target":54},{"source":0,"target":55},{"source":0,"target":56},{"source":0,"target":57},{"source":0,"target":58},{"source":0,"target":59},{"source":0,"target":60},{"source":0,"target":61},{"source":0,"target":62},{"source":0,"target":63},{"source":0,"target":64},{"source":0,"target":65},{"source":0,"target":66},{"source":0,"target":67},{"source":0,"target":68},{"source":0,"target":69},{"source":0,"target":70},{"source":0,"target":71},{"source":0,"target":72},{"source":0,"target":73},{"source":0,"target":74},{"source":0,"target":75},{"source":0,"target":76},{"source":0,"target":77},{"source":0,"target":78},{"source":0,"target":79},{"source":0,"target":80},{"source":0,"target":81},{"source":0,"target":82},{"source":0,"target":83},{"source":0,"target":84},{"source":0,"target":85},{"source":0,"target":86},{"source":1,"target":0},{"source":1,"target":25},{"source":1,"target":87},{"source":1,"target":88},{"source":1,"target":89},{"source":1,"target":90},{"source":1,"target":91},{"source":1,"target":92},{"source":1,"target":93},{"source":1,"target":94},{"source":1,"target":95},{"source":87,"target":16},{"source":87,"target":96},{"source":87,"target":1},{"source":87,"target":97},{"source":96,"target":16},{"source":97,"target":98},{"source":97,"target":87},{"source":88,"target":15},{"source":88,"target":99},{"source":88,"target":1},{"source":88,"target":100},{"source":99,"target":15},{"source":100,"target":101},{"source":100,"target":88},{"source":89,"target":15},{"source":89,"target":102},{"source":89,"target":1},{"source":89,"target":103},{"source":102,"target":15},{"source":103,"target":104},{"source":103,"target":89},{"source":90,"target":25},{"source":90,"target":105},{"source":90,"target":1},{"source":90,"target":106},{"source":105,"target":25},{"source":91,"target":25},{"source":91,"target":107},{"source":91,"target":1},{"source":91,"target":108},{"source":107,"target":25},{"source":92,"target":16},{"source":92,"target":109},{"source":92,"target":1},{"source":109,"target":16},{"source":93,"target":15},{"source":93,"target":110},{"source":93,"target":1},{"source":110,"target":15},{"source":94,"target":15},{"source":94,"target":111},{"source":94,"target":1},{"source":111,"target":15},{"source":95,"target":25},{"source":2,"target":0},{"source":2,"target":25},{"source":2,"target":112},{"source":2,"target":113},{"source":2,"target":114},{"source":112,"target":10},{"source":112,"target":115},{"source":112,"target":2},{"source":112,"target":116},{"source":115,"target":10},{"source":116,"target":117},{"source":116,"target":112},{"source":113,"target":10},{"source":113,"target":118},{"source":113,"target":2},{"source":118,"target":10},{"source":114,"target":25},{"source":3,"target":0},{"source":4,"target":0},{"source":4,"target":3},{"source":4,"target":119},{"source":4,"target":120},{"source":4,"target":121},{"source":4,"target":122},{"source":119,"target":123},{"source":119,"target":4},{"source":120,"target":124},{"source":120,"target":4},{"source":121,"target":86},{"source":121,"target":125},{"source":121,"target":4},{"source":125,"target":86},{"source":122,"target":3},{"source":5,"target":0},{"source":5,"target":3},{"source":5,"target":126},{"source":5,"target":127},{"source":5,"target":128},{"source":126,"target":129},{"source":126,"target":5},{"source":127,"target":130},{"source":127,"target":5},{"source":128,"target":3},{"source":6,"target":0},{"source":6,"target":3},{"source":6,"target":131},{"source":6,"target":132},{"source":6,"target":133},{"source":6,"target":134},{"source":6,"target":135},{"source":6,"target":136},{"source":6,"target":137},{"source":6,"target":138},{"source":131,"target":139},{"source":131,"target":6},{"source":132,"target":140},{"source":132,"target":6},{"source":133,"target":141},{"source":133,"target":6},{"source":134,"target":142},{"source":134,"target":6},{"source":135,"target":143},{"source":135,"target":6},{"source":136,"target":144},{"source":136,"target":6},{"source":137,"target":145},{"source":137,"target":6},{"source":138,"target":3},{"source":7,"target":0},{"source":7,"target":3},{"source":7,"target":146},{"source":7,"target":147},{"source":146,"target":148},{"source":146,"target":7},{"source":147,"target":3},{"source":8,"target":0},{"source":8,"target":3},{"source":8,"target":149},{"source":8,"target":150},{"source":8,"target":151},{"source":8,"target":152},{"source":149,"target":17},{"source":149,"target":153},{"source":149,"target":8},{"source":153,"target":17},{"source":150,"target":41},{"source":150,"target":154},{"source":150,"target":8},{"source":154,"target":41},{"source":151,"target":155},{"source":151,"target":8},{"source":152,"target":3},{"source":9,"target":0},{"source":9,"target":3},{"source":9,"target":156},{"source":9,"target":157},{"source":156,"target":158},{"source":156,"target":9},{"source":157,"target":3},{"source":10,"target":0},{"source":11,"target":0},{"source":11,"target":10},{"source":11,"target":159},{"source":11,"target":160},{"source":11,"target":161},{"source":159,"target":162},{"source":159,"target":11},{"source":160,"target":163},{"source":160,"target":11},{"source":161,"target":10},{"source":12,"target":0},{"source":12,"target":10},{"source":12,"target":164},{"source":12,"target":165},{"source":12,"target":166},{"source":164,"target":167},{"source":164,"target":12},{"source":165,"target":168},{"source":165,"target":12},{"source":166,"target":10},{"source":13,"target":0},{"source":13,"target":12},{"source":13,"target":11},{"source":13,"target":169},{"source":13,"target":170},{"source":169,"target":12},{"source":170,"target":11},{"source":14,"target":0},{"source":14,"target":10},{"source":14,"target":171},{"source":14,"target":172},{"source":171,"target":173},{"source":171,"target":14},{"source":172,"target":10},{"source":15,"target":0},{"source":16,"target":0},{"source":17,"target":0},{"source":17,"target":174},{"source":17,"target":175},{"source":17,"target":176},{"source":174,"target":17},{"source":175,"target":17},{"source":176,"target":17},{"source":18,"target":0},{"source":18,"target":177},{"source":18,"target":178},{"source":18,"target":179},{"source":177,"target":18},{"source":178,"target":18},{"source":179,"target":18},{"source":19,"target":0},{"source":19,"target":15},{"source":19,"target":180},{"source":19,"target":181},{"source":180,"target":182},{"source":180,"target":19},{"source":181,"target":15},{"source":20,"target":0},{"source":20,"target":183},{"source":20,"target":184},{"source":20,"target":185},{"source":183,"target":20},{"source":184,"target":20},{"source":185,"target":20},{"source":21,"target":0},{"source":21,"target":186},{"source":21,"target":187},{"source":21,"target":188},{"source":21,"target":189},{"source":186,"target":21},{"source":187,"target":21},{"source":188,"target":21},{"source":189,"target":21},{"source":22,"target":0},{"source":22,"target":190},{"source":22,"target":191},{"source":22,"target":192},{"source":22,"target":193},{"source":190,"target":22},{"source":191,"target":22},{"source":192,"target":22},{"source":193,"target":22},{"source":23,"target":0},{"source":23,"target":194},{"source":23,"target":195},{"source":23,"target":196},{"source":194,"target":23},{"source":195,"target":23},{"source":196,"target":23},{"source":24,"target":0},{"source":24,"target":3},{"source":24,"target":197},{"source":24,"target":198},{"source":24,"target":199},{"source":24,"target":200},{"source":24,"target":201},{"source":24,"target":202},{"source":24,"target":203},{"source":24,"target":204},{"source":24,"target":205},{"source":197,"target":20},{"source":197,"target":206},{"source":197,"target":24},{"source":206,"target":20},{"source":198,"target":21},{"source":198,"target":207},{"source":198,"target":24},{"source":207,"target":21},{"source":199,"target":208},{"source":199,"target":24},{"source":200,"target":209},{"source":200,"target":24},{"source":201,"target":22},{"source":201,"target":210},{"source":201,"target":24},{"source":210,"target":22},{"source":202,"target":23},{"source":202,"target":211},{"source":202,"target":24},{"source":211,"target":23},{"source":203,"target":212},{"source":203,"target":24},{"source":204,"target":213},{"source":204,"target":24},{"source":205,"target":3},{"source":25,"target":0},{"source":25,"target":214},{"source":25,"target":215},{"source":25,"target":216},{"source":25,"target":217},{"source":25,"target":218},{"source":25,"target":219},{"source":25,"target":220},{"source":25,"target":106},{"source":25,"target":108},{"source":25,"target":221},{"source":25,"target":222},{"source":25,"target":223},{"source":25,"target":224},{"source":25,"target":225},{"source":25,"target":226},{"source":214,"target":3},{"source":214,"target":227},{"source":214,"target":25},{"source":214,"target":228},{"source":227,"target":3},{"source":228,"target":229},{"source":228,"target":214},{"source":215,"target":2},{"source":215,"target":230},{"source":215,"target":25},{"source":215,"target":231},{"source":230,"target":2},{"source":231,"target":232},{"source":231,"target":215},{"source":216,"target":3},{"source":216,"target":233},{"source":216,"target":25},{"source":216,"target":234},{"source":233,"target":3},{"source":234,"target":235},{"source":234,"target":216},{"source":217,"target":52},{"source":217,"target":236},{"source":217,"target":25},{"source":217,"target":237},{"source":217,"target":238},{"source":236,"target":52},{"source":237,"target":239},{"source":237,"target":217},{"source":238,"target":240},{"source":238,"target":217},{"source":218,"target":241},{"source":218,"target":25},{"source":219,"target":242},{"source":219,"target":25},{"source":220,"target":243},{"source":220,"target":25},{"source":106,"target":1},{"source":106,"target":244},{"source":106,"target":25},{"source":106,"target":90},{"source":244,"target":1},{"source":108,"target":1},{"source":108,"target":245},{"source":108,"target":25},{"source":108,"target":91},{"source":245,"target":1},{"source":221,"target":2},{"source":221,"target":246},{"source":221,"target":25},{"source":246,"target":2},{"source":222,"target":3},{"source":222,"target":247},{"source":222,"target":25},{"source":247,"target":3},{"source":223,"target":248},{"source":223,"target":25},{"source":224,"target":27},{"source":224,"target":249},{"source":224,"target":25},{"source":249,"target":27},{"source":225,"target":2},{"source":225,"target":250},{"source":225,"target":25},{"source":250,"target":2},{"source":26,"target":0},{"source":26,"target":16},{"source":26,"target":251},{"source":26,"target":252},{"source":251,"target":32},{"source":251,"target":253},{"source":251,"target":26},{"source":253,"target":32},{"source":252,"target":16},{"source":27,"target":0},{"source":27,"target":25},{"source":27,"target":254},{"source":27,"target":255},{"source":27,"target":256},{"source":27,"target":257},{"source":27,"target":258},{"source":27,"target":259},{"source":254,"target":1},{"source":254,"target":260},{"source":254,"target":27},{"source":254,"target":261},{"source":260,"target":1},{"source":261,"target":262},{"source":261,"target":254},{"source":255,"target":263},{"source":255,"target":27},{"source":256,"target":46},{"source":256,"target":264},{"source":256,"target":27},{"source":264,"target":46},{"source":257,"target":1},{"source":257,"target":265},{"source":257,"target":27},{"source":265,"target":1},{"source":258,"target":1},{"source":258,"target":266},{"source":258,"target":27},{"source":266,"target":1},{"source":259,"target":25},{"source":28,"target":0},{"source":28,"target":267},{"source":267,"target":268},{"source":267,"target":28},{"source":29,"target":0},{"source":29,"target":3},{"source":29,"target":269},{"source":29,"target":270},{"source":269,"target":271},{"source":269,"target":29},{"source":270,"target":3},{"source":30,"target":0},{"source":30,"target":6},{"source":30,"target":9},{"source":30,"target":4},{"source":30,"target":5},{"source":30,"target":272},{"source":30,"target":273},{"source":30,"target":274},{"source":30,"target":275},{"source":272,"target":6},{"source":273,"target":9},{"source":274,"target":4},{"source":275,"target":5},{"source":31,"target":0},{"source":31,"target":24},{"source":31,"target":5},{"source":31,"target":276},{"source":31,"target":277},{"source":276,"target":24},{"source":277,"target":5},{"source":32,"target":0},{"source":33,"target":0},{"source":33,"target":3},{"source":33,"target":278},{"source":33,"target":279},{"source":33,"target":280},{"source":33,"target":281},{"source":33,"target":282},{"source":278,"target":283},{"source":278,"target":33},{"source":279,"target":284},{"source":279,"target":33},{"source":280,"target":285},{"source":280,"target":33},{"source":281,"target":286},{"source":281,"target":33},{"source":282,"target":3},{"source":34,"target":0},{"source":34,"target":3},{"source":34,"target":287},{"source":34,"target":288},{"source":287,"target":289},{"source":287,"target":34},{"source":288,"target":3},{"source":35,"target":0},{"source":35,"target":3},{"source":35,"target":290},{"source":35,"target":291},{"source":35,"target":292},{"source":290,"target":36},{"source":290,"target":293},{"source":290,"target":35},{"source":293,"target":36},{"source":291,"target":36},{"source":291,"target":294},{"source":291,"target":35},{"source":294,"target":36},{"source":292,"target":3},{"source":36,"target":0},{"source":36,"target":295},{"source":36,"target":296},{"source":295,"target":297},{"source":295,"target":36},{"source":296,"target":37},{"source":296,"target":298},{"source":296,"target":36},{"source":298,"target":37},{"source":37,"target":0},{"source":37,"target":299},{"source":37,"target":300},{"source":299,"target":38},{"source":299,"target":301},{"source":299,"target":37},{"source":301,"target":38},{"source":300,"target":2},{"source":300,"target":302},{"source":300,"target":37},{"source":302,"target":2},{"source":38,"target":0},{"source":38,"target":303},{"source":38,"target":304},{"source":38,"target":305},{"source":38,"target":306},{"source":38,"target":307},{"source":303,"target":38},{"source":304,"target":38},{"source":305,"target":38},{"source":306,"target":38},{"source":307,"target":38},{"source":39,"target":0},{"source":39,"target":3},{"source":39,"target":308},{"source":39,"target":309},{"source":39,"target":310},{"source":39,"target":311},{"source":308,"target":18},{"source":308,"target":312},{"source":308,"target":39},{"source":312,"target":18},{"source":309,"target":40},{"source":309,"target":313},{"source":309,"target":39},{"source":313,"target":40},{"source":310,"target":314},{"source":310,"target":39},{"source":311,"target":3},{"source":40,"target":0},{"source":41,"target":0},{"source":42,"target":0},{"source":42,"target":315},{"source":42,"target":316},{"source":315,"target":42},{"source":316,"target":42},{"source":43,"target":0},{"source":43,"target":33},{"source":43,"target":35},{"source":43,"target":9},{"source":43,"target":317},{"source":43,"target":318},{"source":43,"target":319},{"source":317,"target":33},{"source":318,"target":35},{"source":319,"target":9},{"source":44,"target":0},{"source":44,"target":3},{"source":44,"target":320},{"source":44,"target":321},{"source":44,"target":322},{"source":44,"target":323},{"source":320,"target":324},{"source":320,"target":44},{"source":321,"target":325},{"source":321,"target":44},{"source":322,"target":13},{"source":322,"target":326},{"source":322,"target":44},{"source":326,"target":13},{"source":323,"target":3},{"source":45,"target":0},{"source":45,"target":44},{"source":45,"target":327},{"source":45,"target":328},{"source":327,"target":28},{"source":327,"target":329},{"source":327,"target":45},{"source":329,"target":28},{"source":328,"target":44},{"source":46,"target":0},{"source":46,"target":330},{"source":46,"target":331},{"source":330,"target":46},{"source":331,"target":46},{"source":47,"target":0},{"source":47,"target":52},{"source":47,"target":332},{"source":47,"target":333},{"source":47,"target":334},{"source":47,"target":335},{"source":47,"target":336},{"source":47,"target":337},{"source":47,"target":338},{"source":47,"target":339},{"source":332,"target":340},{"source":332,"target":47},{"source":332,"target":341},{"source":341,"target":342},{"source":341,"target":332},{"source":333,"target":343},{"source":333,"target":47},{"source":333,"target":344},{"source":333,"target":345},{"source":344,"target":346},{"source":344,"target":333},{"source":345,"target":347},{"source":345,"target":333},{"source":334,"target":348},{"source":334,"target":47},{"source":334,"target":349},{"source":334,"target":350},{"source":334,"target":351},{"source":349,"target":352},{"source":349,"target":334},{"source":350,"target":353},{"source":350,"target":334},{"source":351,"target":354},{"source":351,"target":334},{"source":335,"target":355},{"source":335,"target":47},{"source":335,"target":356},{"source":356,"target":357},{"source":356,"target":335},{"source":336,"target":358},{"source":336,"target":47},{"source":336,"target":359},{"source":359,"target":360},{"source":359,"target":336},{"source":337,"target":361},{"source":337,"target":47},{"source":337,"target":362},{"source":337,"target":363},{"source":362,"target":364},{"source":362,"target":337},{"source":363,"target":365},{"source":363,"target":337},{"source":338,"target":48},{"source":338,"target":366},{"source":338,"target":47},{"source":366,"target":48},{"source":339,"target":52},{"source":48,"target":0},{"source":48,"target":367},{"source":48,"target":368},{"source":367,"target":369},{"source":367,"target":48},{"source":368,"target":49},{"source":368,"target":370},{"source":368,"target":48},{"source":370,"target":49},{"source":49,"target":0},{"source":49,"target":53},{"source":49,"target":371},{"source":49,"target":372},{"source":49,"target":373},{"source":49,"target":374},{"source":49,"target":375},{"source":371,"target":376},{"source":371,"target":49},{"source":372,"target":49},{"source":372,"target":377},{"source":377,"target":378},{"source":377,"target":372},{"source":373,"target":379},{"source":373,"target":49},{"source":374,"target":380},{"source":374,"target":49},{"source":375,"target":53},{"source":50,"target":0},{"source":50,"target":54},{"source":50,"target":381},{"source":50,"target":382},{"source":50,"target":383},{"source":50,"target":384},{"source":381,"target":385},{"source":381,"target":50},{"source":382,"target":50},{"source":382,"target":386},{"source":386,"target":387},{"source":386,"target":382},{"source":383,"target":388},{"source":383,"target":50},{"source":384,"target":54},{"source":51,"target":0},{"source":51,"target":54},{"source":51,"target":389},{"source":51,"target":390},{"source":389,"target":391},{"source":389,"target":51},{"source":390,"target":54},{"source":52,"target":0},{"source":52,"target":3},{"source":52,"target":392},{"source":52,"target":393},{"source":392,"target":394},{"source":392,"target":52},{"source":393,"target":3},{"source":53,"target":0},{"source":53,"target":395},{"source":53,"target":396},{"source":395,"target":397},{"source":395,"target":53},{"source":395,"target":398},{"source":398,"target":399},{"source":398,"target":395},{"source":396,"target":400},{"source":396,"target":53},{"source":396,"target":401},{"source":401,"target":402},{"source":401,"target":396},{"source":54,"target":0},{"source":54,"target":52},{"source":54,"target":53},{"source":54,"target":403},{"source":54,"target":404},{"source":54,"target":405},{"source":403,"target":406},{"source":403,"target":54},{"source":404,"target":52},{"source":405,"target":53},{"source":55,"target":0},{"source":55,"target":52},{"source":55,"target":407},{"source":55,"target":408},{"source":407,"target":409},{"source":407,"target":55},{"source":408,"target":52},{"source":56,"target":0},{"source":56,"target":52},{"source":56,"target":410},{"source":56,"target":411},{"source":410,"target":412},{"source":410,"target":56},{"source":411,"target":52},{"source":57,"target":0},{"source":57,"target":52},{"source":57,"target":413},{"source":57,"target":414},{"source":413,"target":415},{"source":413,"target":57},{"source":414,"target":52},{"source":58,"target":0},{"source":58,"target":52},{"source":58,"target":416},{"source":58,"target":417},{"source":416,"target":418},{"source":416,"target":58},{"source":417,"target":52},{"source":59,"target":0},{"source":59,"target":52},{"source":59,"target":419},{"source":59,"target":420},{"source":419,"target":421},{"source":419,"target":59},{"source":420,"target":52},{"source":60,"target":0},{"source":60,"target":52},{"source":60,"target":422},{"source":60,"target":423},{"source":422,"target":424},{"source":422,"target":60},{"source":423,"target":52},{"source":61,"target":0},{"source":61,"target":52},{"source":61,"target":425},{"source":61,"target":426},{"source":425,"target":427},{"source":425,"target":61},{"source":426,"target":52},{"source":62,"target":0},{"source":62,"target":52},{"source":62,"target":428},{"source":62,"target":429},{"source":428,"target":430},{"source":428,"target":62},{"source":429,"target":52},{"source":63,"target":0},{"source":63,"target":52},{"source":63,"target":431},{"source":63,"target":432},{"source":431,"target":433},{"source":431,"target":63},{"source":432,"target":52},{"source":64,"target":0},{"source":64,"target":52},{"source":64,"target":434},{"source":64,"target":435},{"source":434,"target":436},{"source":434,"target":64},{"source":435,"target":52},{"source":65,"target":0},{"source":65,"target":52},{"source":65,"target":437},{"source":65,"target":438},{"source":437,"target":439},{"source":437,"target":65},{"source":438,"target":52},{"source":66,"target":0},{"source":66,"target":67},{"source":66,"target":3},{"source":66,"target":440},{"source":66,"target":441},{"source":66,"target":442},{"source":440,"target":443},{"source":440,"target":66},{"source":441,"target":67},{"source":442,"target":3},{"source":67,"target":0},{"source":67,"target":3},{"source":67,"target":444},{"source":67,"target":445},{"source":444,"target":27},{"source":444,"target":446},{"source":444,"target":67},{"source":446,"target":27},{"source":445,"target":3},{"source":68,"target":0},{"source":68,"target":3},{"source":68,"target":447},{"source":68,"target":448},{"source":447,"target":27},{"source":447,"target":449},{"source":447,"target":68},{"source":449,"target":27},{"source":448,"target":3},{"source":69,"target":0},{"source":69,"target":450},{"source":69,"target":451},{"source":69,"target":452},{"source":450,"target":69},{"source":451,"target":69},{"source":452,"target":69},{"source":70,"target":0},{"source":70,"target":3},{"source":70,"target":453},{"source":70,"target":454},{"source":453,"target":69},{"source":453,"target":455},{"source":453,"target":70},{"source":455,"target":69},{"source":454,"target":3},{"source":71,"target":0},{"source":71,"target":456},{"source":71,"target":457},{"source":71,"target":458},{"source":71,"target":459},{"source":71,"target":460},{"source":71,"target":461},{"source":456,"target":71},{"source":457,"target":71},{"source":458,"target":71},{"source":459,"target":71},{"source":460,"target":71},{"source":461,"target":71},{"source":72,"target":0},{"source":72,"target":3},{"source":72,"target":462},{"source":72,"target":463},{"source":462,"target":71},{"source":462,"target":464},{"source":462,"target":72},{"source":464,"target":71},{"source":463,"target":3},{"source":73,"target":0},{"source":73,"target":465},{"source":73,"target":466},{"source":73,"target":467},{"source":465,"target":73},{"source":466,"target":73},{"source":467,"target":73},{"source":74,"target":0},{"source":74,"target":3},{"source":74,"target":468},{"source":74,"target":469},{"source":74,"target":470},{"source":468,"target":73},{"source":468,"target":471},{"source":468,"target":74},{"source":471,"target":73},{"source":469,"target":73},{"source":469,"target":472},{"source":469,"target":74},{"source":472,"target":73},{"source":470,"target":3},{"source":75,"target":0},{"source":75,"target":2},{"source":75,"target":30},{"source":75,"target":473},{"source":75,"target":474},{"source":473,"target":2},{"source":474,"target":30},{"source":76,"target":0},{"source":76,"target":82},{"source":76,"target":29},{"source":76,"target":7},{"source":76,"target":475},{"source":76,"target":476},{"source":76,"target":477},{"source":475,"target":82},{"source":476,"target":29},{"source":477,"target":7},{"source":77,"target":0},{"source":77,"target":82},{"source":77,"target":8},{"source":77,"target":39},{"source":77,"target":7},{"source":77,"target":478},{"source":77,"target":479},{"source":77,"target":480},{"source":77,"target":481},{"source":478,"target":82},{"source":479,"target":8},{"source":480,"target":39},{"source":481,"target":7},{"source":78,"target":0},{"source":78,"target":1},{"source":78,"target":31},{"source":78,"target":482},{"source":78,"target":483},{"source":482,"target":1},{"source":483,"target":31},{"source":79,"target":0},{"source":79,"target":27},{"source":79,"target":43},{"source":79,"target":484},{"source":79,"target":485},{"source":484,"target":27},{"source":485,"target":43},{"source":80,"target":0},{"source":80,"target":81},{"source":80,"target":486},{"source":486,"target":81},{"source":81,"target":0},{"source":81,"target":2},{"source":81,"target":487},{"source":487,"target":2},{"source":82,"target":0},{"source":82,"target":80},{"source":82,"target":34},{"source":82,"target":488},{"source":82,"target":489},{"source":488,"target":80},{"source":489,"target":34},{"source":83,"target":0},{"source":83,"target":81},{"source":83,"target":34},{"source":83,"target":490},{"source":83,"target":491},{"source":490,"target":81},{"source":491,"target":34},{"source":84,"target":0},{"source":84,"target":83},{"source":84,"target":8},{"source":84,"target":39},{"source":84,"target":7},{"source":84,"target":492},{"source":84,"target":493},{"source":84,"target":494},{"source":84,"target":495},{"source":492,"target":83},{"source":493,"target":8},{"source":494,"target":39},{"source":495,"target":7},{"source":85,"target":0},{"source":85,"target":496},{"source":85,"target":497},{"source":496,"target":85},{"source":497,"target":85},{"source":86,"target":0}],"multigraph":true} |
false | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="kinematicmodel" nsURI="http://aut.sze.hu/kinematicmodel" nsPrefix="kinematicmodel">
<eClassifiers xsi:type="ecore:EClass" name="Robot" eSuperTypes="#//KinematicModule">
<eStructuralFeatures xsi:type="ecore:EReference" name="templateinstantiation"
upperBound="-1" eType="#//TemplateInstantiation" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="controlmodel" eType="#//ControlModel"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="description_package" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="description_format" upperBound="-1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Link" eSuperTypes="#//TreeElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="inertia" upperBound="-1"
eType="#//Inertia" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="collision" upperBound="-1"
eType="#//Collision" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="visual" upperBound="-1"
eType="#//Visual" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="child_joint" upperBound="-1"
eType="#//Joint" eOpposite="#//Joint/parent"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="templateinstantiation"
upperBound="-1" eType="#//TemplateInstantiation" eOpposite="#//TemplateInstantiation/link"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="torsionalfriction" eType="#//TorsionalFriction"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="translationalfriction"
eType="#//TranslationalFriction" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="parent_joint" eType="#//Joint"
eOpposite="#//Joint/child"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="sensor" eType="#//Sensor"
eOpposite="#//Sensor/parent"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Joint" eSuperTypes="#//TreeElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="jointconstraints" eType="#//JointConstraints"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="parent" eType="#//Link"
eOpposite="#//Link/child_joint"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="child" eType="#//Link"
eOpposite="#//Link/parent_joint"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="axis" eType="#//Axis" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="jointtype" eType="#//JointType"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="controlled" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="damping" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="friction" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="TreeElement" abstract="true">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="pose" eType="#//Pose" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Pose">
<eStructuralFeatures xsi:type="ecore:EReference" name="rotation" eType="#//Rotation"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="position" eType="#//Position"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Position">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="x" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="y" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="z" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Rotation">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="roll" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="pitch" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="yaw" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="JointConstraints">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="min_limit" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="max_limit" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Inertia">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="mass" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"
defaultValueLiteral="1.0"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="inertiamatrix" eType="#//InertiaMatrix"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="pose" eType="#//Pose" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Axis">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="ax" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"
defaultValueLiteral="1.0"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="ay" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="az" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Visual" eSuperTypes="#//Geometry"/>
<eClassifiers xsi:type="ecore:EClass" name="Collision" eSuperTypes="#//Geometry"/>
<eClassifiers xsi:type="ecore:EClass" name="Geometry" abstract="true">
<eStructuralFeatures xsi:type="ecore:EReference" name="geometrydescription" eType="#//GeometryDescription"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="offset" eType="#//Pose"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="GeometryDescription" abstract="true"/>
<eClassifiers xsi:type="ecore:EClass" name="Mesh" eSuperTypes="#//GeometryDescription">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="filepath" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="sx" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"
defaultValueLiteral="1.0"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="sy" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"
defaultValueLiteral="1.0"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="sz" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"
defaultValueLiteral="1.0"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Primitive" abstract="true" eSuperTypes="#//GeometryDescription"/>
<eClassifiers xsi:type="ecore:EClass" name="Cube" eSuperTypes="#//Primitive">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="sx" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"
defaultValueLiteral="1.0"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="sy" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"
defaultValueLiteral="1.0"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="sz" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"
defaultValueLiteral="1.0"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Cylinder" eSuperTypes="#//Primitive">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="radius" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"
defaultValueLiteral="0.5"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="height" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"
defaultValueLiteral="1.0"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Sphere" eSuperTypes="#//Primitive">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="radius" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"
defaultValueLiteral="1.0"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="JointType">
<eLiterals name="Translational"/>
<eLiterals name="Rotational" value="1"/>
<eLiterals name="Continuous" value="2"/>
<eLiterals name="Fixed" value="3"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="KinematicModule" eSuperTypes="#//RootElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="link" upperBound="-1" eType="#//Link"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="joint" upperBound="-1"
eType="#//Joint" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="root_element" eType="#//Link"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="sensor" upperBound="-1"
eType="#//Sensor" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="TemplateInstantiation">
<eStructuralFeatures xsi:type="ecore:EReference" name="kinematicmodule" eType="#//KinematicModule"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="pose" eType="#//Pose" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="link" eType="#//Link" eOpposite="#//Link/templateinstantiation"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="negate" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="RootElement" abstract="true">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Sensor" abstract="true">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="parent" eType="#//Link"
eOpposite="#//Link/sensor"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="freq" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"
defaultValueLiteral="1.0"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="topic_name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="namespace" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Lidar" eSuperTypes="#//LaserScanner">
<eStructuralFeatures xsi:type="ecore:EReference" name="vertical" eType="#//BeamBlockDefinition"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Camera" eSuperTypes="#//Sensor">
<eStructuralFeatures xsi:type="ecore:EReference" name="cameraobjective" upperBound="-1"
eType="#//CameraObjective" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="image_type" eType="#//ImageType"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="LaserScanner" eSuperTypes="#//Sensor">
<eStructuralFeatures xsi:type="ecore:EReference" name="horizontal" eType="#//BeamBlockDefinition"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="range" eType="#//RangeDefinition"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="InertiaMatrix">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="iyy" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"
defaultValueLiteral="1.0"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="ixz" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="izz" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"
defaultValueLiteral="1.0"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="iyz" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="ixx" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"
defaultValueLiteral="1.0"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="ixy" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="BeamBlockDefinition">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="samples" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="resolution" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"
defaultValueLiteral="1.0"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="min_angle" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="max_angle" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="RangeDefinition">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="max_range" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="min_range" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CameraObjective">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="fov" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="image_width" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="image_height" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="clip_near" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="clip_far" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="offset" eType="#//Pose"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="ImageType">
<eLiterals name="RGB"/>
<eLiterals name="Depth" value="1"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Imu" eSuperTypes="#//Sensor"/>
<eClassifiers xsi:type="ecore:EClass" name="ControlModel" abstract="true"/>
<eClassifiers xsi:type="ecore:EClass" name="DifferentialRobotModel" eSuperTypes="#//ControlModel">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="left_joint" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="right_joint" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="wheel_separation" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="wheel_diameter" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CustomControlModel" eSuperTypes="#//ControlModel"/>
<eClassifiers xsi:type="ecore:EClass" name="SpringJoint" eSuperTypes="#//Joint">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="stiffness" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="pos_reference" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="limit_stiffness" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="limit_reference" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="TorsionalFriction">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="coeffictient" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="patch_radius" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="surface_radius" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="TranslationalFriction">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="mu" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="mu2" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="axis" eType="#//Axis" containment="true"/>
</eClassifiers>
</ecore:EPackage>
| github:ecore:/data/robotlabor/model-based-robotics/hu.sze.aut.robotics.robot.kinematic.description.model/model/kinematicmodel.ecore | ecore | kinematicmodel
Robot
templateinstantiation
controlmodel
description_package
description_format
Link
inertia
collision
visual
child_joint
templateinstantiation
torsionalfriction
translationalfriction
parent_joint
sensor
Joint
jointconstraints
parent
child
axis
jointtype
controlled
damping
friction
TreeElement
name
pose
Pose
rotation
position
Position
x
y
z
Rotation
roll
pitch
yaw
JointConstraints
min_limit
max_limit
Inertia
mass
1.0
inertiamatrix
pose
Axis
ax
1.0
ay
az
Visual
Collision
Geometry
geometrydescription
offset
GeometryDescription
Mesh
filepath
sx
1.0
sy
1.0
sz
1.0
Primitive
Cube
sx
1.0
sy
1.0
sz
1.0
Cylinder
radius
0.5
height
1.0
Sphere
radius
1.0
JointType
Translational
Translational
Rotational
Rotational
Continuous
Continuous
Fixed
Fixed
KinematicModule
link
joint
root_element
sensor
TemplateInstantiation
kinematicmodule
name
pose
link
negate
RootElement
name
Sensor
name
parent
freq
1.0
topic_name
namespace
Lidar
vertical
Camera
cameraobjective
image_type
LaserScanner
horizontal
range
InertiaMatrix
iyy
1.0
ixz
izz
1.0
iyz
ixx
1.0
ixy
BeamBlockDefinition
samples
resolution
1.0
min_angle
max_angle
RangeDefinition
max_range
min_range
CameraObjective
name
fov
image_width
image_height
clip_near
clip_far
offset
ImageType
RGB
RGB
Depth
Depth
Imu
ControlModel
DifferentialRobotModel
left_joint
right_joint
wheel_separation
wheel_diameter
CustomControlModel
SpringJoint
stiffness
pos_reference
limit_stiffness
limit_reference
TorsionalFriction
coeffictient
patch_radius
surface_radius
TranslationalFriction
mu
mu2
axis | null | {"directed":true,"nodes":[{"nsPrefix":"kinematicmodel","nsURI":"http://aut.sze.hu/kinematicmodel","name":"kinematicmodel","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Robot","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Link","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Joint","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TreeElement","instanceClass":null,"abstract":true,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Pose","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Position","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Rotation","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"JointConstraints","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Inertia","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Axis","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Visual","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Collision","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Geometry","instanceClass":null,"abstract":true,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"GeometryDescription","instanceClass":null,"abstract":true,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Mesh","instanceClass":null,"abstract":false,"id":15,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Primitive","instanceClass":null,"abstract":true,"id":16,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Cube","instanceClass":null,"abstract":false,"id":17,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Cylinder","instanceClass":null,"abstract":false,"id":18,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Sphere","instanceClass":null,"abstract":false,"id":19,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"JointType","instanceClass":null,"id":20,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"KinematicModule","instanceClass":null,"abstract":false,"id":21,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TemplateInstantiation","instanceClass":null,"abstract":false,"id":22,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RootElement","instanceClass":null,"abstract":true,"id":23,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Sensor","instanceClass":null,"abstract":true,"id":24,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Lidar","instanceClass":null,"abstract":false,"id":25,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Camera","instanceClass":null,"abstract":false,"id":26,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LaserScanner","instanceClass":null,"abstract":false,"id":27,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InertiaMatrix","instanceClass":null,"abstract":false,"id":28,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BeamBlockDefinition","instanceClass":null,"abstract":false,"id":29,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RangeDefinition","instanceClass":null,"abstract":false,"id":30,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CameraObjective","instanceClass":null,"abstract":false,"id":31,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"ImageType","instanceClass":null,"id":32,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Imu","instanceClass":null,"abstract":false,"id":33,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ControlModel","instanceClass":null,"abstract":true,"id":34,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DifferentialRobotModel","instanceClass":null,"abstract":false,"id":35,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CustomControlModel","instanceClass":null,"abstract":false,"id":36,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SpringJoint","instanceClass":null,"abstract":false,"id":37,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TorsionalFriction","instanceClass":null,"abstract":false,"id":38,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TranslationalFriction","instanceClass":null,"abstract":false,"id":39,"interface":false,"eClass":"EClass"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"templateinstantiation","changeable":true,"resolveProxies":true,"lowerBound":0,"id":40,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"controlmodel","changeable":true,"resolveProxies":true,"lowerBound":0,"id":41,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"description_package","changeable":true,"lowerBound":0,"iD":false,"id":42,"derived":false},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"description_format","changeable":true,"lowerBound":0,"iD":false,"id":43,"derived":false},{"id":44,"eClass":"EGenericType"},{"id":45,"eClass":"EGenericType"},{"id":46,"eClass":"EGenericType"},{"id":47,"eClass":"EGenericType"},{"id":48,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"inertia","changeable":true,"resolveProxies":true,"lowerBound":0,"id":49,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"collision","changeable":true,"resolveProxies":true,"lowerBound":0,"id":50,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"visual","changeable":true,"resolveProxies":true,"lowerBound":0,"id":51,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"child_joint","changeable":true,"resolveProxies":true,"lowerBound":0,"id":52,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"templateinstantiation","changeable":true,"resolveProxies":true,"lowerBound":0,"id":53,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"torsionalfriction","changeable":true,"resolveProxies":true,"lowerBound":0,"id":54,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"translationalfriction","changeable":true,"resolveProxies":true,"lowerBound":0,"id":55,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"parent_joint","changeable":true,"resolveProxies":true,"lowerBound":0,"id":56,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"sensor","changeable":true,"resolveProxies":true,"lowerBound":0,"id":57,"derived":false},{"id":58,"eClass":"EGenericType"},{"id":59,"eClass":"EGenericType"},{"id":60,"eClass":"EGenericType"},{"id":61,"eClass":"EGenericType"},{"id":62,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"parent","changeable":true,"resolveProxies":true,"lowerBound":0,"id":63,"derived":false},{"id":64,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"link","changeable":true,"resolveProxies":true,"lowerBound":0,"id":65,"derived":false},{"id":66,"eClass":"EGenericType"},{"id":67,"eClass":"EGenericType"},{"id":68,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"child","changeable":true,"resolveProxies":true,"lowerBound":0,"id":69,"derived":false},{"id":70,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"parent","changeable":true,"resolveProxies":true,"lowerBound":0,"id":71,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"jointconstraints","changeable":true,"resolveProxies":true,"lowerBound":0,"id":72,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"axis","changeable":true,"resolveProxies":true,"lowerBound":0,"id":73,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"jointtype","changeable":true,"lowerBound":0,"iD":false,"id":74,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"controlled","changeable":true,"lowerBound":0,"iD":false,"id":75,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"damping","changeable":true,"lowerBound":0,"iD":false,"id":76,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"friction","changeable":true,"lowerBound":0,"iD":false,"id":77,"derived":false},{"id":78,"eClass":"EGenericType"},{"id":79,"eClass":"EGenericType"},{"id":80,"eClass":"EGenericType"},{"id":81,"eClass":"EGenericType"},{"id":82,"eClass":"EGenericType"},{"id":83,"eClass":"EGenericType"},{"id":84,"eClass":"EGenericType"},{"id":85,"eClass":"EGenericType"},{"id":86,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":87,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"pose","changeable":true,"resolveProxies":true,"lowerBound":0,"id":88,"derived":false},{"id":89,"eClass":"EGenericType"},{"id":90,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"rotation","changeable":true,"resolveProxies":true,"lowerBound":0,"id":91,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"position","changeable":true,"resolveProxies":true,"lowerBound":0,"id":92,"derived":false},{"id":93,"eClass":"EGenericType"},{"id":94,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"x","changeable":true,"lowerBound":0,"iD":false,"id":95,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"y","changeable":true,"lowerBound":0,"iD":false,"id":96,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"z","changeable":true,"lowerBound":0,"iD":false,"id":97,"derived":false},{"id":98,"eClass":"EGenericType"},{"id":99,"eClass":"EGenericType"},{"id":100,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"roll","changeable":true,"lowerBound":0,"iD":false,"id":101,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"pitch","changeable":true,"lowerBound":0,"iD":false,"id":102,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"yaw","changeable":true,"lowerBound":0,"iD":false,"id":103,"derived":false},{"id":104,"eClass":"EGenericType"},{"id":105,"eClass":"EGenericType"},{"id":106,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"min_limit","changeable":true,"lowerBound":0,"iD":false,"id":107,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"max_limit","changeable":true,"lowerBound":0,"iD":false,"id":108,"derived":false},{"id":109,"eClass":"EGenericType"},{"id":110,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":1.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"1.0","unsettable":false,"transient":false,"unique":true,"name":"mass","changeable":true,"lowerBound":0,"iD":false,"id":111,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"inertiamatrix","changeable":true,"resolveProxies":true,"lowerBound":0,"id":112,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"pose","changeable":true,"resolveProxies":true,"lowerBound":0,"id":113,"derived":false},{"id":114,"eClass":"EGenericType"},{"id":115,"eClass":"EGenericType"},{"id":116,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":1.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"1.0","unsettable":false,"transient":false,"unique":true,"name":"ax","changeable":true,"lowerBound":0,"iD":false,"id":117,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"ay","changeable":true,"lowerBound":0,"iD":false,"id":118,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"az","changeable":true,"lowerBound":0,"iD":false,"id":119,"derived":false},{"id":120,"eClass":"EGenericType"},{"id":121,"eClass":"EGenericType"},{"id":122,"eClass":"EGenericType"},{"id":123,"eClass":"EGenericType"},{"id":124,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"geometrydescription","changeable":true,"resolveProxies":true,"lowerBound":0,"id":125,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"offset","changeable":true,"resolveProxies":true,"lowerBound":0,"id":126,"derived":false},{"id":127,"eClass":"EGenericType"},{"id":128,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"filepath","changeable":true,"lowerBound":0,"iD":false,"id":129,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":1.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"1.0","unsettable":false,"transient":false,"unique":true,"name":"sx","changeable":true,"lowerBound":0,"iD":false,"id":130,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":1.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"1.0","unsettable":false,"transient":false,"unique":true,"name":"sy","changeable":true,"lowerBound":0,"iD":false,"id":131,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":1.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"1.0","unsettable":false,"transient":false,"unique":true,"name":"sz","changeable":true,"lowerBound":0,"iD":false,"id":132,"derived":false},{"id":133,"eClass":"EGenericType"},{"id":134,"eClass":"EGenericType"},{"id":135,"eClass":"EGenericType"},{"id":136,"eClass":"EGenericType"},{"id":137,"eClass":"EGenericType"},{"id":138,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":1.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"1.0","unsettable":false,"transient":false,"unique":true,"name":"sx","changeable":true,"lowerBound":0,"iD":false,"id":139,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":1.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"1.0","unsettable":false,"transient":false,"unique":true,"name":"sy","changeable":true,"lowerBound":0,"iD":false,"id":140,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":1.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"1.0","unsettable":false,"transient":false,"unique":true,"name":"sz","changeable":true,"lowerBound":0,"iD":false,"id":141,"derived":false},{"id":142,"eClass":"EGenericType"},{"id":143,"eClass":"EGenericType"},{"id":144,"eClass":"EGenericType"},{"id":145,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0.5,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"0.5","unsettable":false,"transient":false,"unique":true,"name":"radius","changeable":true,"lowerBound":0,"iD":false,"id":146,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":1.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"1.0","unsettable":false,"transient":false,"unique":true,"name":"height","changeable":true,"lowerBound":0,"iD":false,"id":147,"derived":false},{"id":148,"eClass":"EGenericType"},{"id":149,"eClass":"EGenericType"},{"id":150,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":1.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"1.0","unsettable":false,"transient":false,"unique":true,"name":"radius","changeable":true,"lowerBound":0,"iD":false,"id":151,"derived":false},{"id":152,"eClass":"EGenericType"},{"id":153,"eClass":"EGenericType"},{"name":"Translational","id":154,"value":0,"literal":"Translational","eClass":"EEnumLiteral"},{"name":"Rotational","id":155,"value":1,"literal":"Rotational","eClass":"EEnumLiteral"},{"name":"Continuous","id":156,"value":2,"literal":"Continuous","eClass":"EEnumLiteral"},{"name":"Fixed","id":157,"value":3,"literal":"Fixed","eClass":"EEnumLiteral"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"link","changeable":true,"resolveProxies":true,"lowerBound":0,"id":158,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"joint","changeable":true,"resolveProxies":true,"lowerBound":0,"id":159,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"root_element","changeable":true,"resolveProxies":true,"lowerBound":0,"id":160,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"sensor","changeable":true,"resolveProxies":true,"lowerBound":0,"id":161,"derived":false},{"id":162,"eClass":"EGenericType"},{"id":163,"eClass":"EGenericType"},{"id":164,"eClass":"EGenericType"},{"id":165,"eClass":"EGenericType"},{"id":166,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"kinematicmodule","changeable":true,"resolveProxies":true,"lowerBound":0,"id":167,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":168,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"pose","changeable":true,"resolveProxies":true,"lowerBound":0,"id":169,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"negate","changeable":true,"lowerBound":0,"iD":false,"id":170,"derived":false},{"id":171,"eClass":"EGenericType"},{"id":172,"eClass":"EGenericType"},{"id":173,"eClass":"EGenericType"},{"id":174,"eClass":"EGenericType"},{"id":175,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":176,"derived":false},{"id":177,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":178,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":1.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"1.0","unsettable":false,"transient":false,"unique":true,"name":"freq","changeable":true,"lowerBound":0,"iD":false,"id":179,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"topic_name","changeable":true,"lowerBound":0,"iD":false,"id":180,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"namespace","changeable":true,"lowerBound":0,"iD":false,"id":181,"derived":false},{"id":182,"eClass":"EGenericType"},{"id":183,"eClass":"EGenericType"},{"id":184,"eClass":"EGenericType"},{"id":185,"eClass":"EGenericType"},{"id":186,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"vertical","changeable":true,"resolveProxies":true,"lowerBound":0,"id":187,"derived":false},{"id":188,"eClass":"EGenericType"},{"id":189,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"cameraobjective","changeable":true,"resolveProxies":true,"lowerBound":0,"id":190,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"image_type","changeable":true,"lowerBound":0,"iD":false,"id":191,"derived":false},{"id":192,"eClass":"EGenericType"},{"id":193,"eClass":"EGenericType"},{"id":194,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"horizontal","changeable":true,"resolveProxies":true,"lowerBound":0,"id":195,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"range","changeable":true,"resolveProxies":true,"lowerBound":0,"id":196,"derived":false},{"id":197,"eClass":"EGenericType"},{"id":198,"eClass":"EGenericType"},{"id":199,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":1.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"1.0","unsettable":false,"transient":false,"unique":true,"name":"iyy","changeable":true,"lowerBound":0,"iD":false,"id":200,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"ixz","changeable":true,"lowerBound":0,"iD":false,"id":201,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":1.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"1.0","unsettable":false,"transient":false,"unique":true,"name":"izz","changeable":true,"lowerBound":0,"iD":false,"id":202,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"iyz","changeable":true,"lowerBound":0,"iD":false,"id":203,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":1.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"1.0","unsettable":false,"transient":false,"unique":true,"name":"ixx","changeable":true,"lowerBound":0,"iD":false,"id":204,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"ixy","changeable":true,"lowerBound":0,"iD":false,"id":205,"derived":false},{"id":206,"eClass":"EGenericType"},{"id":207,"eClass":"EGenericType"},{"id":208,"eClass":"EGenericType"},{"id":209,"eClass":"EGenericType"},{"id":210,"eClass":"EGenericType"},{"id":211,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"samples","changeable":true,"lowerBound":0,"iD":false,"id":212,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":1.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"1.0","unsettable":false,"transient":false,"unique":true,"name":"resolution","changeable":true,"lowerBound":0,"iD":false,"id":213,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"min_angle","changeable":true,"lowerBound":0,"iD":false,"id":214,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"max_angle","changeable":true,"lowerBound":0,"iD":false,"id":215,"derived":false},{"id":216,"eClass":"EGenericType"},{"id":217,"eClass":"EGenericType"},{"id":218,"eClass":"EGenericType"},{"id":219,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"max_range","changeable":true,"lowerBound":0,"iD":false,"id":220,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"min_range","changeable":true,"lowerBound":0,"iD":false,"id":221,"derived":false},{"id":222,"eClass":"EGenericType"},{"id":223,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":224,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"fov","changeable":true,"lowerBound":0,"iD":false,"id":225,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"image_width","changeable":true,"lowerBound":0,"iD":false,"id":226,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"image_height","changeable":true,"lowerBound":0,"iD":false,"id":227,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"clip_near","changeable":true,"lowerBound":0,"iD":false,"id":228,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"clip_far","changeable":true,"lowerBound":0,"iD":false,"id":229,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"offset","changeable":true,"resolveProxies":true,"lowerBound":0,"id":230,"derived":false},{"id":231,"eClass":"EGenericType"},{"id":232,"eClass":"EGenericType"},{"id":233,"eClass":"EGenericType"},{"id":234,"eClass":"EGenericType"},{"id":235,"eClass":"EGenericType"},{"id":236,"eClass":"EGenericType"},{"id":237,"eClass":"EGenericType"},{"name":"RGB","id":238,"value":0,"literal":"RGB","eClass":"EEnumLiteral"},{"name":"Depth","id":239,"value":1,"literal":"Depth","eClass":"EEnumLiteral"},{"id":240,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"left_joint","changeable":true,"lowerBound":0,"iD":false,"id":241,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"right_joint","changeable":true,"lowerBound":0,"iD":false,"id":242,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"wheel_separation","changeable":true,"lowerBound":0,"iD":false,"id":243,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"wheel_diameter","changeable":true,"lowerBound":0,"iD":false,"id":244,"derived":false},{"id":245,"eClass":"EGenericType"},{"id":246,"eClass":"EGenericType"},{"id":247,"eClass":"EGenericType"},{"id":248,"eClass":"EGenericType"},{"id":249,"eClass":"EGenericType"},{"id":250,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"stiffness","changeable":true,"lowerBound":0,"iD":false,"id":251,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"pos_reference","changeable":true,"lowerBound":0,"iD":false,"id":252,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"limit_stiffness","changeable":true,"lowerBound":0,"iD":false,"id":253,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"limit_reference","changeable":true,"lowerBound":0,"iD":false,"id":254,"derived":false},{"id":255,"eClass":"EGenericType"},{"id":256,"eClass":"EGenericType"},{"id":257,"eClass":"EGenericType"},{"id":258,"eClass":"EGenericType"},{"id":259,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"coeffictient","changeable":true,"lowerBound":0,"iD":false,"id":260,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"patch_radius","changeable":true,"lowerBound":0,"iD":false,"id":261,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"surface_radius","changeable":true,"lowerBound":0,"iD":false,"id":262,"derived":false},{"id":263,"eClass":"EGenericType"},{"id":264,"eClass":"EGenericType"},{"id":265,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"mu","changeable":true,"lowerBound":0,"iD":false,"id":266,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"mu2","changeable":true,"lowerBound":0,"iD":false,"id":267,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"axis","changeable":true,"resolveProxies":true,"lowerBound":0,"id":268,"derived":false},{"id":269,"eClass":"EGenericType"},{"id":270,"eClass":"EGenericType"},{"id":271,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":0,"target":8},{"source":0,"target":9},{"source":0,"target":10},{"source":0,"target":11},{"source":0,"target":12},{"source":0,"target":13},{"source":0,"target":14},{"source":0,"target":15},{"source":0,"target":16},{"source":0,"target":17},{"source":0,"target":18},{"source":0,"target":19},{"source":0,"target":20},{"source":0,"target":21},{"source":0,"target":22},{"source":0,"target":23},{"source":0,"target":24},{"source":0,"target":25},{"source":0,"target":26},{"source":0,"target":27},{"source":0,"target":28},{"source":0,"target":29},{"source":0,"target":30},{"source":0,"target":31},{"source":0,"target":32},{"source":0,"target":33},{"source":0,"target":34},{"source":0,"target":35},{"source":0,"target":36},{"source":0,"target":37},{"source":0,"target":38},{"source":0,"target":39},{"source":1,"target":0},{"source":1,"target":21},{"source":1,"target":40},{"source":1,"target":41},{"source":1,"target":42},{"source":1,"target":43},{"source":1,"target":44},{"source":40,"target":22},{"source":40,"target":45},{"source":40,"target":1},{"source":45,"target":22},{"source":41,"target":34},{"source":41,"target":46},{"source":41,"target":1},{"source":46,"target":34},{"source":42,"target":47},{"source":42,"target":1},{"source":43,"target":48},{"source":43,"target":1},{"source":44,"target":21},{"source":2,"target":0},{"source":2,"target":4},{"source":2,"target":49},{"source":2,"target":50},{"source":2,"target":51},{"source":2,"target":52},{"source":2,"target":53},{"source":2,"target":54},{"source":2,"target":55},{"source":2,"target":56},{"source":2,"target":57},{"source":2,"target":58},{"source":49,"target":9},{"source":49,"target":59},{"source":49,"target":2},{"source":59,"target":9},{"source":50,"target":12},{"source":50,"target":60},{"source":50,"target":2},{"source":60,"target":12},{"source":51,"target":11},{"source":51,"target":61},{"source":51,"target":2},{"source":61,"target":11},{"source":52,"target":3},{"source":52,"target":62},{"source":52,"target":2},{"source":52,"target":63},{"source":62,"target":3},{"source":53,"target":22},{"source":53,"target":64},{"source":53,"target":2},{"source":53,"target":65},{"source":64,"target":22},{"source":54,"target":38},{"source":54,"target":66},{"source":54,"target":2},{"source":66,"target":38},{"source":55,"target":39},{"source":55,"target":67},{"source":55,"target":2},{"source":67,"target":39},{"source":56,"target":3},{"source":56,"target":68},{"source":56,"target":2},{"source":56,"target":69},{"source":68,"target":3},{"source":57,"target":24},{"source":57,"target":70},{"source":57,"target":2},{"source":57,"target":71},{"source":70,"target":24},{"source":58,"target":4},{"source":3,"target":0},{"source":3,"target":4},{"source":3,"target":72},{"source":3,"target":63},{"source":3,"target":69},{"source":3,"target":73},{"source":3,"target":74},{"source":3,"target":75},{"source":3,"target":76},{"source":3,"target":77},{"source":3,"target":78},{"source":72,"target":8},{"source":72,"target":79},{"source":72,"target":3},{"source":79,"target":8},{"source":63,"target":2},{"source":63,"target":80},{"source":63,"target":3},{"source":63,"target":52},{"source":80,"target":2},{"source":69,"target":2},{"source":69,"target":81},{"source":69,"target":3},{"source":69,"target":56},{"source":81,"target":2},{"source":73,"target":10},{"source":73,"target":82},{"source":73,"target":3},{"source":82,"target":10},{"source":74,"target":20},{"source":74,"target":83},{"source":74,"target":3},{"source":83,"target":20},{"source":75,"target":84},{"source":75,"target":3},{"source":76,"target":85},{"source":76,"target":3},{"source":77,"target":86},{"source":77,"target":3},{"source":78,"target":4},{"source":4,"target":0},{"source":4,"target":87},{"source":4,"target":88},{"source":87,"target":89},{"source":87,"target":4},{"source":88,"target":5},{"source":88,"target":90},{"source":88,"target":4},{"source":90,"target":5},{"source":5,"target":0},{"source":5,"target":91},{"source":5,"target":92},{"source":91,"target":7},{"source":91,"target":93},{"source":91,"target":5},{"source":93,"target":7},{"source":92,"target":6},{"source":92,"target":94},{"source":92,"target":5},{"source":94,"target":6},{"source":6,"target":0},{"source":6,"target":95},{"source":6,"target":96},{"source":6,"target":97},{"source":95,"target":98},{"source":95,"target":6},{"source":96,"target":99},{"source":96,"target":6},{"source":97,"target":100},{"source":97,"target":6},{"source":7,"target":0},{"source":7,"target":101},{"source":7,"target":102},{"source":7,"target":103},{"source":101,"target":104},{"source":101,"target":7},{"source":102,"target":105},{"source":102,"target":7},{"source":103,"target":106},{"source":103,"target":7},{"source":8,"target":0},{"source":8,"target":107},{"source":8,"target":108},{"source":107,"target":109},{"source":107,"target":8},{"source":108,"target":110},{"source":108,"target":8},{"source":9,"target":0},{"source":9,"target":111},{"source":9,"target":112},{"source":9,"target":113},{"source":111,"target":114},{"source":111,"target":9},{"source":112,"target":28},{"source":112,"target":115},{"source":112,"target":9},{"source":115,"target":28},{"source":113,"target":5},{"source":113,"target":116},{"source":113,"target":9},{"source":116,"target":5},{"source":10,"target":0},{"source":10,"target":117},{"source":10,"target":118},{"source":10,"target":119},{"source":117,"target":120},{"source":117,"target":10},{"source":118,"target":121},{"source":118,"target":10},{"source":119,"target":122},{"source":119,"target":10},{"source":11,"target":0},{"source":11,"target":13},{"source":11,"target":123},{"source":123,"target":13},{"source":12,"target":0},{"source":12,"target":13},{"source":12,"target":124},{"source":124,"target":13},{"source":13,"target":0},{"source":13,"target":125},{"source":13,"target":126},{"source":125,"target":14},{"source":125,"target":127},{"source":125,"target":13},{"source":127,"target":14},{"source":126,"target":5},{"source":126,"target":128},{"source":126,"target":13},{"source":128,"target":5},{"source":14,"target":0},{"source":15,"target":0},{"source":15,"target":14},{"source":15,"target":129},{"source":15,"target":130},{"source":15,"target":131},{"source":15,"target":132},{"source":15,"target":133},{"source":129,"target":134},{"source":129,"target":15},{"source":130,"target":135},{"source":130,"target":15},{"source":131,"target":136},{"source":131,"target":15},{"source":132,"target":137},{"source":132,"target":15},{"source":133,"target":14},{"source":16,"target":0},{"source":16,"target":14},{"source":16,"target":138},{"source":138,"target":14},{"source":17,"target":0},{"source":17,"target":16},{"source":17,"target":139},{"source":17,"target":140},{"source":17,"target":141},{"source":17,"target":142},{"source":139,"target":143},{"source":139,"target":17},{"source":140,"target":144},{"source":140,"target":17},{"source":141,"target":145},{"source":141,"target":17},{"source":142,"target":16},{"source":18,"target":0},{"source":18,"target":16},{"source":18,"target":146},{"source":18,"target":147},{"source":18,"target":148},{"source":146,"target":149},{"source":146,"target":18},{"source":147,"target":150},{"source":147,"target":18},{"source":148,"target":16},{"source":19,"target":0},{"source":19,"target":16},{"source":19,"target":151},{"source":19,"target":152},{"source":151,"target":153},{"source":151,"target":19},{"source":152,"target":16},{"source":20,"target":0},{"source":20,"target":154},{"source":20,"target":155},{"source":20,"target":156},{"source":20,"target":157},{"source":154,"target":20},{"source":155,"target":20},{"source":156,"target":20},{"source":157,"target":20},{"source":21,"target":0},{"source":21,"target":23},{"source":21,"target":158},{"source":21,"target":159},{"source":21,"target":160},{"source":21,"target":161},{"source":21,"target":162},{"source":158,"target":2},{"source":158,"target":163},{"source":158,"target":21},{"source":163,"target":2},{"source":159,"target":3},{"source":159,"target":164},{"source":159,"target":21},{"source":164,"target":3},{"source":160,"target":2},{"source":160,"target":165},{"source":160,"target":21},{"source":165,"target":2},{"source":161,"target":24},{"source":161,"target":166},{"source":161,"target":21},{"source":166,"target":24},{"source":162,"target":23},{"source":22,"target":0},{"source":22,"target":167},{"source":22,"target":168},{"source":22,"target":169},{"source":22,"target":65},{"source":22,"target":170},{"source":167,"target":21},{"source":167,"target":171},{"source":167,"target":22},{"source":171,"target":21},{"source":168,"target":172},{"source":168,"target":22},{"source":169,"target":5},{"source":169,"target":173},{"source":169,"target":22},{"source":173,"target":5},{"source":65,"target":2},{"source":65,"target":174},{"source":65,"target":22},{"source":65,"target":53},{"source":174,"target":2},{"source":170,"target":175},{"source":170,"target":22},{"source":23,"target":0},{"source":23,"target":176},{"source":176,"target":177},{"source":176,"target":23},{"source":24,"target":0},{"source":24,"target":178},{"source":24,"target":71},{"source":24,"target":179},{"source":24,"target":180},{"source":24,"target":181},{"source":178,"target":182},{"source":178,"target":24},{"source":71,"target":2},{"source":71,"target":183},{"source":71,"target":24},{"source":71,"target":57},{"source":183,"target":2},{"source":179,"target":184},{"source":179,"target":24},{"source":180,"target":185},{"source":180,"target":24},{"source":181,"target":186},{"source":181,"target":24},{"source":25,"target":0},{"source":25,"target":27},{"source":25,"target":187},{"source":25,"target":188},{"source":187,"target":29},{"source":187,"target":189},{"source":187,"target":25},{"source":189,"target":29},{"source":188,"target":27},{"source":26,"target":0},{"source":26,"target":24},{"source":26,"target":190},{"source":26,"target":191},{"source":26,"target":192},{"source":190,"target":31},{"source":190,"target":193},{"source":190,"target":26},{"source":193,"target":31},{"source":191,"target":32},{"source":191,"target":194},{"source":191,"target":26},{"source":194,"target":32},{"source":192,"target":24},{"source":27,"target":0},{"source":27,"target":24},{"source":27,"target":195},{"source":27,"target":196},{"source":27,"target":197},{"source":195,"target":29},{"source":195,"target":198},{"source":195,"target":27},{"source":198,"target":29},{"source":196,"target":30},{"source":196,"target":199},{"source":196,"target":27},{"source":199,"target":30},{"source":197,"target":24},{"source":28,"target":0},{"source":28,"target":200},{"source":28,"target":201},{"source":28,"target":202},{"source":28,"target":203},{"source":28,"target":204},{"source":28,"target":205},{"source":200,"target":206},{"source":200,"target":28},{"source":201,"target":207},{"source":201,"target":28},{"source":202,"target":208},{"source":202,"target":28},{"source":203,"target":209},{"source":203,"target":28},{"source":204,"target":210},{"source":204,"target":28},{"source":205,"target":211},{"source":205,"target":28},{"source":29,"target":0},{"source":29,"target":212},{"source":29,"target":213},{"source":29,"target":214},{"source":29,"target":215},{"source":212,"target":216},{"source":212,"target":29},{"source":213,"target":217},{"source":213,"target":29},{"source":214,"target":218},{"source":214,"target":29},{"source":215,"target":219},{"source":215,"target":29},{"source":30,"target":0},{"source":30,"target":220},{"source":30,"target":221},{"source":220,"target":222},{"source":220,"target":30},{"source":221,"target":223},{"source":221,"target":30},{"source":31,"target":0},{"source":31,"target":224},{"source":31,"target":225},{"source":31,"target":226},{"source":31,"target":227},{"source":31,"target":228},{"source":31,"target":229},{"source":31,"target":230},{"source":224,"target":231},{"source":224,"target":31},{"source":225,"target":232},{"source":225,"target":31},{"source":226,"target":233},{"source":226,"target":31},{"source":227,"target":234},{"source":227,"target":31},{"source":228,"target":235},{"source":228,"target":31},{"source":229,"target":236},{"source":229,"target":31},{"source":230,"target":5},{"source":230,"target":237},{"source":230,"target":31},{"source":237,"target":5},{"source":32,"target":0},{"source":32,"target":238},{"source":32,"target":239},{"source":238,"target":32},{"source":239,"target":32},{"source":33,"target":0},{"source":33,"target":24},{"source":33,"target":240},{"source":240,"target":24},{"source":34,"target":0},{"source":35,"target":0},{"source":35,"target":34},{"source":35,"target":241},{"source":35,"target":242},{"source":35,"target":243},{"source":35,"target":244},{"source":35,"target":245},{"source":241,"target":246},{"source":241,"target":35},{"source":242,"target":247},{"source":242,"target":35},{"source":243,"target":248},{"source":243,"target":35},{"source":244,"target":249},{"source":244,"target":35},{"source":245,"target":34},{"source":36,"target":0},{"source":36,"target":34},{"source":36,"target":250},{"source":250,"target":34},{"source":37,"target":0},{"source":37,"target":3},{"source":37,"target":251},{"source":37,"target":252},{"source":37,"target":253},{"source":37,"target":254},{"source":37,"target":255},{"source":251,"target":256},{"source":251,"target":37},{"source":252,"target":257},{"source":252,"target":37},{"source":253,"target":258},{"source":253,"target":37},{"source":254,"target":259},{"source":254,"target":37},{"source":255,"target":3},{"source":38,"target":0},{"source":38,"target":260},{"source":38,"target":261},{"source":38,"target":262},{"source":260,"target":263},{"source":260,"target":38},{"source":261,"target":264},{"source":261,"target":38},{"source":262,"target":265},{"source":262,"target":38},{"source":39,"target":0},{"source":39,"target":266},{"source":39,"target":267},{"source":39,"target":268},{"source":266,"target":269},{"source":266,"target":39},{"source":267,"target":270},{"source":267,"target":39},{"source":268,"target":10},{"source":268,"target":271},{"source":268,"target":39},{"source":271,"target":10}],"multigraph":true} |
true | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="icse15_sequencediagram_mavo" nsURI="http://se.cs.toronto.edu/modelepedia/ICSE15_SequenceDiagram_MAVO"
nsPrefix="icse15_sequencediagram_mavo">
<eClassifiers xsi:type="ecore:EClass" name="SequenceDiagram" eSuperTypes="../../edu.toronto.cs.se.mavo/model/mavo.ecore#//MAVORoot">
<eAnnotations source="gmf.diagram"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="lifelines" upperBound="-1"
eType="#//Lifeline" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="classes" upperBound="-1"
eType="#//Class" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="messages" upperBound="-1"
eType="#//Message" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="NamedElement" eSuperTypes="../../edu.toronto.cs.se.mavo/model/mavo.ecore#//MAVOElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Lifeline" eSuperTypes="#//NamedElement">
<eAnnotations source="gmf.node">
<details key="label" value="name"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="class" lowerBound="1" upperBound="-1"
eType="#//ClassReference" containment="true" eOpposite="#//ClassReference/source"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="messagesAsSource" upperBound="-1"
eType="#//SourceLifelineReference" eOpposite="#//SourceLifelineReference/target"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="messagesAsTarget" upperBound="-1"
eType="#//TargetLifelineReference" eOpposite="#//TargetLifelineReference/target"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Class" eSuperTypes="#//NamedElement">
<eAnnotations source="gmf.node">
<details key="label" value="name"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="attributes" upperBound="-1"
eType="#//Attribute" containment="true">
<eAnnotations source="gmf.compartment">
<details key="layout" value="list"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="operations" upperBound="-1"
eType="#//Operation" containment="true">
<eAnnotations source="gmf.compartment">
<details key="layout" value="list"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="lifelines" upperBound="-1"
eType="#//ClassReference" eOpposite="#//ClassReference/target"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Attribute" eSuperTypes="#//NamedElement">
<eAnnotations source="gmf.node">
<details key="label" value="name"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="messages" upperBound="-1"
eType="#//AttributeReference" eOpposite="#//AttributeReference/target"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Operation" eSuperTypes="#//NamedElement">
<eAnnotations source="gmf.node">
<details key="label" value="name"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="messages" upperBound="-1"
eType="#//OperationReference" eOpposite="#//OperationReference/target"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Message" eSuperTypes="#//NamedElement">
<eAnnotations source="gmf.node">
<details key="label" value="name"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="attributes" upperBound="-1"
eType="#//AttributeReference" containment="true" eOpposite="#//AttributeReference/source"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="operation" lowerBound="1"
upperBound="-1" eType="#//OperationReference" containment="true" eOpposite="#//OperationReference/source"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="sourceLifeline" lowerBound="1"
upperBound="-1" eType="#//SourceLifelineReference" containment="true" eOpposite="#//SourceLifelineReference/source"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="targetLifeline" lowerBound="1"
upperBound="-1" eType="#//TargetLifelineReference" containment="true" eOpposite="#//TargetLifelineReference/source"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ClassReference" eSuperTypes="../../edu.toronto.cs.se.mavo/model/mavo.ecore#//MAVOReference">
<eAnnotations source="gmf.link">
<details key="source" value="source"/>
<details key="target" value="target"/>
<details key="target.decoration" value="arrow"/>
<details key="label.icon" value="true"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="source" lowerBound="1"
eType="#//Lifeline" eOpposite="#//Lifeline/class"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="target" lowerBound="1"
eType="#//Class" eOpposite="#//Class/lifelines"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="AttributeReference" eSuperTypes="../../edu.toronto.cs.se.mavo/model/mavo.ecore#//MAVOReference">
<eAnnotations source="gmf.link">
<details key="source" value="source"/>
<details key="target" value="target"/>
<details key="target.decoration" value="arrow"/>
<details key="label.icon" value="true"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="source" lowerBound="1"
eType="#//Message" eOpposite="#//Message/attributes"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="target" lowerBound="1"
eType="#//Attribute" eOpposite="#//Attribute/messages"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="OperationReference" eSuperTypes="../../edu.toronto.cs.se.mavo/model/mavo.ecore#//MAVOReference">
<eAnnotations source="gmf.link">
<details key="source" value="source"/>
<details key="target" value="target"/>
<details key="target.decoration" value="arrow"/>
<details key="label.icon" value="true"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="source" lowerBound="1"
eType="#//Message" eOpposite="#//Message/operation"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="target" lowerBound="1"
eType="#//Operation" eOpposite="#//Operation/messages"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="SourceLifelineReference" eSuperTypes="../../edu.toronto.cs.se.mavo/model/mavo.ecore#//MAVOReference">
<eAnnotations source="gmf.link">
<details key="source" value="source"/>
<details key="target" value="target"/>
<details key="target.decoration" value="arrow"/>
<details key="label.icon" value="true"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="source" lowerBound="1"
eType="#//Message" eOpposite="#//Message/sourceLifeline"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="target" lowerBound="1"
eType="#//Lifeline" eOpposite="#//Lifeline/messagesAsSource"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="TargetLifelineReference" eSuperTypes="../../edu.toronto.cs.se.mavo/model/mavo.ecore#//MAVOReference">
<eAnnotations source="gmf.link">
<details key="source" value="source"/>
<details key="target" value="target"/>
<details key="target.decoration" value="arrow"/>
<details key="label.icon" value="true"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="source" lowerBound="1"
eType="#//Message" eOpposite="#//Message/targetLifeline"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="target" lowerBound="1"
eType="#//Lifeline" eOpposite="#//Lifeline/messagesAsTarget"/>
</eClassifiers>
</ecore:EPackage>
| github:ecore:/data/adisandro/MMINT/examples/ICSE15/edu.toronto.cs.se.modelepedia.icse15_sequencediagram_mavo/model/icse15_sequencediagram_mavo.ecore | ecore | icse15_sequencediagram_mavo
SequenceDiagram
lifelines
classes
messages
NamedElement
name
Lifeline
class
messagesAsSource
messagesAsTarget
Class
attributes
operations
lifelines
Attribute
messages
Operation
messages
Message
attributes
operation
sourceLifeline
targetLifeline
ClassReference
source
target
AttributeReference
source
target
OperationReference
source
target
SourceLifelineReference
source
target
TargetLifelineReference
source
target | null | {"directed":true,"nodes":[{"nsPrefix":"icse15_sequencediagram_mavo","nsURI":"http://se.cs.toronto.edu/modelepedia/ICSE15_SequenceDiagram_MAVO","name":"icse15_sequencediagram_mavo","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SequenceDiagram","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NamedElement","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Lifeline","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Class","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Attribute","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Operation","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Message","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ClassReference","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AttributeReference","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OperationReference","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SourceLifelineReference","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TargetLifelineReference","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"lifelines","changeable":true,"resolveProxies":true,"lowerBound":0,"id":13,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"classes","changeable":true,"resolveProxies":true,"lowerBound":0,"id":14,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"messages","changeable":true,"resolveProxies":true,"lowerBound":0,"id":15,"derived":false},{"id":16,"eClass":"EGenericType"},{"id":17,"eClass":"EGenericType"},{"id":18,"eClass":"EGenericType"},{"id":19,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":20,"derived":false},{"id":21,"eClass":"EGenericType"},{"id":22,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"class","changeable":true,"resolveProxies":true,"lowerBound":1,"id":23,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"messagesAsSource","changeable":true,"resolveProxies":true,"lowerBound":0,"id":24,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"messagesAsTarget","changeable":true,"resolveProxies":true,"lowerBound":0,"id":25,"derived":false},{"id":26,"eClass":"EGenericType"},{"id":27,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"source","changeable":true,"resolveProxies":true,"lowerBound":1,"id":28,"derived":false},{"id":29,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"target","changeable":true,"resolveProxies":true,"lowerBound":1,"id":30,"derived":false},{"id":31,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"target","changeable":true,"resolveProxies":true,"lowerBound":1,"id":32,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"attributes","changeable":true,"resolveProxies":true,"lowerBound":0,"id":33,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"operations","changeable":true,"resolveProxies":true,"lowerBound":0,"id":34,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"lifelines","changeable":true,"resolveProxies":true,"lowerBound":0,"id":35,"derived":false},{"id":36,"eClass":"EGenericType"},{"id":37,"eClass":"EGenericType"},{"id":38,"eClass":"EGenericType"},{"id":39,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"target","changeable":true,"resolveProxies":true,"lowerBound":1,"id":40,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"messages","changeable":true,"resolveProxies":true,"lowerBound":0,"id":41,"derived":false},{"id":42,"eClass":"EGenericType"},{"id":43,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"target","changeable":true,"resolveProxies":true,"lowerBound":1,"id":44,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"messages","changeable":true,"resolveProxies":true,"lowerBound":0,"id":45,"derived":false},{"id":46,"eClass":"EGenericType"},{"id":47,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"target","changeable":true,"resolveProxies":true,"lowerBound":1,"id":48,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"attributes","changeable":true,"resolveProxies":true,"lowerBound":0,"id":49,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"operation","changeable":true,"resolveProxies":true,"lowerBound":1,"id":50,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"sourceLifeline","changeable":true,"resolveProxies":true,"lowerBound":1,"id":51,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"targetLifeline","changeable":true,"resolveProxies":true,"lowerBound":1,"id":52,"derived":false},{"id":53,"eClass":"EGenericType"},{"id":54,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"source","changeable":true,"resolveProxies":true,"lowerBound":1,"id":55,"derived":false},{"id":56,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"source","changeable":true,"resolveProxies":true,"lowerBound":1,"id":57,"derived":false},{"id":58,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"source","changeable":true,"resolveProxies":true,"lowerBound":1,"id":59,"derived":false},{"id":60,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"source","changeable":true,"resolveProxies":true,"lowerBound":1,"id":61,"derived":false},{"id":62,"eClass":"EGenericType"},{"id":63,"eClass":"EGenericType"},{"id":64,"eClass":"EGenericType"},{"id":65,"eClass":"EGenericType"},{"id":66,"eClass":"EGenericType"},{"id":67,"eClass":"EGenericType"},{"id":68,"eClass":"EGenericType"},{"id":69,"eClass":"EGenericType"},{"id":70,"eClass":"EGenericType"},{"id":71,"eClass":"EGenericType"},{"id":72,"eClass":"EGenericType"},{"id":73,"eClass":"EGenericType"},{"id":74,"eClass":"EGenericType"},{"id":75,"eClass":"EGenericType"},{"id":76,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":0,"target":8},{"source":0,"target":9},{"source":0,"target":10},{"source":0,"target":11},{"source":0,"target":12},{"source":1,"target":0},{"source":1,"target":13},{"source":1,"target":14},{"source":1,"target":15},{"source":1,"target":16},{"source":13,"target":3},{"source":13,"target":17},{"source":13,"target":1},{"source":17,"target":3},{"source":14,"target":4},{"source":14,"target":18},{"source":14,"target":1},{"source":18,"target":4},{"source":15,"target":7},{"source":15,"target":19},{"source":15,"target":1},{"source":19,"target":7},{"source":2,"target":0},{"source":2,"target":20},{"source":2,"target":21},{"source":20,"target":22},{"source":20,"target":2},{"source":3,"target":0},{"source":3,"target":2},{"source":3,"target":23},{"source":3,"target":24},{"source":3,"target":25},{"source":3,"target":26},{"source":23,"target":8},{"source":23,"target":27},{"source":23,"target":3},{"source":23,"target":28},{"source":27,"target":8},{"source":24,"target":11},{"source":24,"target":29},{"source":24,"target":3},{"source":24,"target":30},{"source":29,"target":11},{"source":25,"target":12},{"source":25,"target":31},{"source":25,"target":3},{"source":25,"target":32},{"source":31,"target":12},{"source":26,"target":2},{"source":4,"target":0},{"source":4,"target":2},{"source":4,"target":33},{"source":4,"target":34},{"source":4,"target":35},{"source":4,"target":36},{"source":33,"target":5},{"source":33,"target":37},{"source":33,"target":4},{"source":37,"target":5},{"source":34,"target":6},{"source":34,"target":38},{"source":34,"target":4},{"source":38,"target":6},{"source":35,"target":8},{"source":35,"target":39},{"source":35,"target":4},{"source":35,"target":40},{"source":39,"target":8},{"source":36,"target":2},{"source":5,"target":0},{"source":5,"target":2},{"source":5,"target":41},{"source":5,"target":42},{"source":41,"target":9},{"source":41,"target":43},{"source":41,"target":5},{"source":41,"target":44},{"source":43,"target":9},{"source":42,"target":2},{"source":6,"target":0},{"source":6,"target":2},{"source":6,"target":45},{"source":6,"target":46},{"source":45,"target":10},{"source":45,"target":47},{"source":45,"target":6},{"source":45,"target":48},{"source":47,"target":10},{"source":46,"target":2},{"source":7,"target":0},{"source":7,"target":2},{"source":7,"target":49},{"source":7,"target":50},{"source":7,"target":51},{"source":7,"target":52},{"source":7,"target":53},{"source":49,"target":9},{"source":49,"target":54},{"source":49,"target":7},{"source":49,"target":55},{"source":54,"target":9},{"source":50,"target":10},{"source":50,"target":56},{"source":50,"target":7},{"source":50,"target":57},{"source":56,"target":10},{"source":51,"target":11},{"source":51,"target":58},{"source":51,"target":7},{"source":51,"target":59},{"source":58,"target":11},{"source":52,"target":12},{"source":52,"target":60},{"source":52,"target":7},{"source":52,"target":61},{"source":60,"target":12},{"source":53,"target":2},{"source":8,"target":0},{"source":8,"target":28},{"source":8,"target":40},{"source":8,"target":62},{"source":28,"target":3},{"source":28,"target":63},{"source":28,"target":8},{"source":28,"target":23},{"source":63,"target":3},{"source":40,"target":4},{"source":40,"target":64},{"source":40,"target":8},{"source":40,"target":35},{"source":64,"target":4},{"source":9,"target":0},{"source":9,"target":55},{"source":9,"target":44},{"source":9,"target":65},{"source":55,"target":7},{"source":55,"target":66},{"source":55,"target":9},{"source":55,"target":49},{"source":66,"target":7},{"source":44,"target":5},{"source":44,"target":67},{"source":44,"target":9},{"source":44,"target":41},{"source":67,"target":5},{"source":10,"target":0},{"source":10,"target":57},{"source":10,"target":48},{"source":10,"target":68},{"source":57,"target":7},{"source":57,"target":69},{"source":57,"target":10},{"source":57,"target":50},{"source":69,"target":7},{"source":48,"target":6},{"source":48,"target":70},{"source":48,"target":10},{"source":48,"target":45},{"source":70,"target":6},{"source":11,"target":0},{"source":11,"target":59},{"source":11,"target":30},{"source":11,"target":71},{"source":59,"target":7},{"source":59,"target":72},{"source":59,"target":11},{"source":59,"target":51},{"source":72,"target":7},{"source":30,"target":3},{"source":30,"target":73},{"source":30,"target":11},{"source":30,"target":24},{"source":73,"target":3},{"source":12,"target":0},{"source":12,"target":61},{"source":12,"target":32},{"source":12,"target":74},{"source":61,"target":7},{"source":61,"target":75},{"source":61,"target":12},{"source":61,"target":52},{"source":75,"target":7},{"source":32,"target":3},{"source":32,"target":76},{"source":32,"target":12},{"source":32,"target":25},{"source":76,"target":3}],"multigraph":true} |
false | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="architectureDSL" nsURI="http://www.tocea.com/codewatch/architecture/dsl/ArchitectureDSL"
nsPrefix="architectureDSL">
<eClassifiers xsi:type="ecore:EClass" name="ArchitectureExtension">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="entities" upperBound="-1"
eType="#//ExtensionEntity" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ExtensionEntity"/>
<eClassifiers xsi:type="ecore:EClass" name="Datatype" eSuperTypes="#//Type">
<eStructuralFeatures xsi:type="ecore:EReference" name="reference" eType="ecore:EClass ../../../../../../../../../org.eclipse.xtext.common.types/model/JavaVMTypes.ecore#//JvmTypeReference"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Import" eSuperTypes="#//ExtensionEntity">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="importedNamespace" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Type" eSuperTypes="#//ExtensionEntity #//ReferencedType"/>
<eClassifiers xsi:type="ecore:EClass" name="ParametrizedType" eSuperTypes="#//Type">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="abstract" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="parameters" upperBound="-1"
eType="#//Parameter" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="fields" upperBound="-1"
eType="#//Field" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Pattern" eSuperTypes="#//ParametrizedType">
<eStructuralFeatures xsi:type="ecore:EReference" name="superPattern" eType="#//TypeReference"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="PrimitiveRole" eSuperTypes="#//Type">
<eStructuralFeatures xsi:type="ecore:EReference" name="type" eType="ecore:EClass ../../../../../../../../../org.eclipse.xtext.common.types/model/JavaVMTypes.ecore#//JvmTypeReference"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Role" eSuperTypes="#//ParametrizedType">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="inherited" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="element" eType="#//Type"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="superRole" eType="#//TypeReference"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="constraints" upperBound="-1"
eType="#//ExtensionConstraint" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ExtensionConstraint">
<eStructuralFeatures xsi:type="ecore:EReference" name="constraint" eType="#//Constraint"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="explanation" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Constraint">
<eStructuralFeatures xsi:type="ecore:EReference" name="query" eType="ecore:EClass ../../../../../../../../../com.tocea.scertify.architecture.aql/src-gen/com/tocea/codewatch/architecture/query/dsl/QueryDsl.ecore#//Query"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="comparator" eType="#//MetricComparator"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="value" eType="ecore:EClass ../../../../../../../../../org.eclipse.xtext.xbase/model/Xbase.ecore#//XExpression"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="MetricComparator">
<eLiterals name="ge" literal=">="/>
<eLiterals name="le" value="1" literal="<="/>
<eLiterals name="gt" value="2" literal=">"/>
<eLiterals name="lt" value="3" literal="<"/>
<eLiterals name="eq" value="4" literal="="/>
<eLiterals name="ne" value="5" literal="!="/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Relationship" eSuperTypes="#//ExtensionEntity #//NamedEntity">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="abstract" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="superRelationship" eType="#//Relationship"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="constraints" upperBound="-1"
eType="#//RelationshipConstraint" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="fields" upperBound="-1"
eType="#//Field" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Parameter" eSuperTypes="#//ReferencedType"/>
<eClassifiers xsi:type="ecore:EClass" name="Field">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="mandatory" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="type" eType="#//TypeReference"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="many" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="lb" eType="#//Arity" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="ub" eType="#//Arity" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Arity">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="unbound" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="TypeReference">
<eStructuralFeatures xsi:type="ecore:EReference" name="reference" eType="#//ReferencedType"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="parameters" upperBound="-1"
eType="#//TypeReference" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="RelationshipConstraint"/>
<eClassifiers xsi:type="ecore:EClass" name="RelationshipConjunctionConstraint" eSuperTypes="#//RelationshipConstraint">
<eStructuralFeatures xsi:type="ecore:EReference" name="constraints" upperBound="-1"
eType="#//RelationshipPrimitiveConstraint" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="RelationshipPrimitiveConstraint"/>
<eClassifiers xsi:type="ecore:EClass" name="TypeConstraint" eSuperTypes="#//RelationshipPrimitiveConstraint">
<eStructuralFeatures xsi:type="ecore:EReference" name="source" eType="#//Type"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="target" eType="#//Type"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Enumeration" eSuperTypes="#//Type">
<eStructuralFeatures xsi:type="ecore:EReference" name="elements" upperBound="-1"
eType="#//EnumerationElement" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EnumerationElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="NamedEntity">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ReferencedType" eSuperTypes="#//NamedEntity"/>
</ecore:EPackage>
| github:ecore:/data/MDEGroup/QMM-COMLAN-data/validation-subjects/metamodels/ArchitectureDSL.ecore | ecore | architectureDSL
ArchitectureExtension
name
entities
ExtensionEntity
Datatype
reference
Import
importedNamespace
Type
ParametrizedType
abstract
parameters
fields
Pattern
superPattern
PrimitiveRole
type
Role
inherited
element
superRole
constraints
ExtensionConstraint
constraint
explanation
Constraint
query
comparator
value
MetricComparator
ge
>=
le
<=
gt
>
lt
<
eq
=
ne
!=
Relationship
abstract
superRelationship
constraints
fields
Parameter
Field
mandatory
name
type
many
lb
ub
Arity
value
unbound
TypeReference
reference
parameters
RelationshipConstraint
RelationshipConjunctionConstraint
constraints
RelationshipPrimitiveConstraint
TypeConstraint
source
target
Enumeration
elements
EnumerationElement
name
NamedEntity
name
ReferencedType | null | {"directed":true,"nodes":[{"nsPrefix":"architectureDSL","nsURI":"http://www.tocea.com/codewatch/architecture/dsl/ArchitectureDSL","name":"architectureDSL","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ArchitectureExtension","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExtensionEntity","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Datatype","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Import","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Type","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ParametrizedType","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Pattern","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PrimitiveRole","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Role","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExtensionConstraint","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Constraint","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"MetricComparator","instanceClass":null,"id":12,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Relationship","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Parameter","instanceClass":null,"abstract":false,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Field","instanceClass":null,"abstract":false,"id":15,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Arity","instanceClass":null,"abstract":false,"id":16,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TypeReference","instanceClass":null,"abstract":false,"id":17,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RelationshipConstraint","instanceClass":null,"abstract":false,"id":18,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RelationshipConjunctionConstraint","instanceClass":null,"abstract":false,"id":19,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RelationshipPrimitiveConstraint","instanceClass":null,"abstract":false,"id":20,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TypeConstraint","instanceClass":null,"abstract":false,"id":21,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Enumeration","instanceClass":null,"abstract":false,"id":22,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EnumerationElement","instanceClass":null,"abstract":false,"id":23,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NamedEntity","instanceClass":null,"abstract":false,"id":24,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ReferencedType","instanceClass":null,"abstract":false,"id":25,"interface":false,"eClass":"EClass"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":26,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"entities","changeable":true,"resolveProxies":true,"lowerBound":0,"id":27,"derived":false},{"id":28,"eClass":"EGenericType"},{"id":29,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"reference","changeable":true,"resolveProxies":true,"lowerBound":0,"id":30,"derived":false},{"id":31,"eClass":"EGenericType"},{"id":32,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"importedNamespace","changeable":true,"lowerBound":0,"iD":false,"id":33,"derived":false},{"id":34,"eClass":"EGenericType"},{"id":35,"eClass":"EGenericType"},{"id":36,"eClass":"EGenericType"},{"id":37,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"abstract","changeable":true,"lowerBound":0,"iD":false,"id":38,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"parameters","changeable":true,"resolveProxies":true,"lowerBound":0,"id":39,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"fields","changeable":true,"resolveProxies":true,"lowerBound":0,"id":40,"derived":false},{"id":41,"eClass":"EGenericType"},{"id":42,"eClass":"EGenericType"},{"id":43,"eClass":"EGenericType"},{"id":44,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"superPattern","changeable":true,"resolveProxies":true,"lowerBound":0,"id":45,"derived":false},{"id":46,"eClass":"EGenericType"},{"id":47,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"resolveProxies":true,"lowerBound":0,"id":48,"derived":false},{"id":49,"eClass":"EGenericType"},{"id":50,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"inherited","changeable":true,"lowerBound":0,"iD":false,"id":51,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"element","changeable":true,"resolveProxies":true,"lowerBound":0,"id":52,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"superRole","changeable":true,"resolveProxies":true,"lowerBound":0,"id":53,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"constraints","changeable":true,"resolveProxies":true,"lowerBound":0,"id":54,"derived":false},{"id":55,"eClass":"EGenericType"},{"id":56,"eClass":"EGenericType"},{"id":57,"eClass":"EGenericType"},{"id":58,"eClass":"EGenericType"},{"id":59,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"constraint","changeable":true,"resolveProxies":true,"lowerBound":0,"id":60,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"explanation","changeable":true,"lowerBound":0,"iD":false,"id":61,"derived":false},{"id":62,"eClass":"EGenericType"},{"id":63,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"query","changeable":true,"resolveProxies":true,"lowerBound":0,"id":64,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"comparator","changeable":true,"lowerBound":0,"iD":false,"id":65,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"resolveProxies":true,"lowerBound":0,"id":66,"derived":false},{"id":67,"eClass":"EGenericType"},{"id":68,"eClass":"EGenericType"},{"id":69,"eClass":"EGenericType"},{"name":"ge","id":70,"value":0,"literal":">=","eClass":"EEnumLiteral"},{"name":"le","id":71,"value":1,"literal":"<=","eClass":"EEnumLiteral"},{"name":"gt","id":72,"value":2,"literal":">","eClass":"EEnumLiteral"},{"name":"lt","id":73,"value":3,"literal":"<","eClass":"EEnumLiteral"},{"name":"eq","id":74,"value":4,"literal":"=","eClass":"EEnumLiteral"},{"name":"ne","id":75,"value":5,"literal":"!=","eClass":"EEnumLiteral"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"abstract","changeable":true,"lowerBound":0,"iD":false,"id":76,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"superRelationship","changeable":true,"resolveProxies":true,"lowerBound":0,"id":77,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"constraints","changeable":true,"resolveProxies":true,"lowerBound":0,"id":78,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"fields","changeable":true,"resolveProxies":true,"lowerBound":0,"id":79,"derived":false},{"id":80,"eClass":"EGenericType"},{"id":81,"eClass":"EGenericType"},{"id":82,"eClass":"EGenericType"},{"id":83,"eClass":"EGenericType"},{"id":84,"eClass":"EGenericType"},{"id":85,"eClass":"EGenericType"},{"id":86,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"mandatory","changeable":true,"lowerBound":0,"iD":false,"id":87,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":88,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"resolveProxies":true,"lowerBound":0,"id":89,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"many","changeable":true,"lowerBound":0,"iD":false,"id":90,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"lb","changeable":true,"resolveProxies":true,"lowerBound":0,"id":91,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"ub","changeable":true,"resolveProxies":true,"lowerBound":0,"id":92,"derived":false},{"id":93,"eClass":"EGenericType"},{"id":94,"eClass":"EGenericType"},{"id":95,"eClass":"EGenericType"},{"id":96,"eClass":"EGenericType"},{"id":97,"eClass":"EGenericType"},{"id":98,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":0,"iD":false,"id":99,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"unbound","changeable":true,"lowerBound":0,"iD":false,"id":100,"derived":false},{"id":101,"eClass":"EGenericType"},{"id":102,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"reference","changeable":true,"resolveProxies":true,"lowerBound":0,"id":103,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"parameters","changeable":true,"resolveProxies":true,"lowerBound":0,"id":104,"derived":false},{"id":105,"eClass":"EGenericType"},{"id":106,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"constraints","changeable":true,"resolveProxies":true,"lowerBound":0,"id":107,"derived":false},{"id":108,"eClass":"EGenericType"},{"id":109,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"source","changeable":true,"resolveProxies":true,"lowerBound":0,"id":110,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"target","changeable":true,"resolveProxies":true,"lowerBound":0,"id":111,"derived":false},{"id":112,"eClass":"EGenericType"},{"id":113,"eClass":"EGenericType"},{"id":114,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"elements","changeable":true,"resolveProxies":true,"lowerBound":0,"id":115,"derived":false},{"id":116,"eClass":"EGenericType"},{"id":117,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":118,"derived":false},{"id":119,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":120,"derived":false},{"id":121,"eClass":"EGenericType"},{"id":122,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":0,"target":8},{"source":0,"target":9},{"source":0,"target":10},{"source":0,"target":11},{"source":0,"target":12},{"source":0,"target":13},{"source":0,"target":14},{"source":0,"target":15},{"source":0,"target":16},{"source":0,"target":17},{"source":0,"target":18},{"source":0,"target":19},{"source":0,"target":20},{"source":0,"target":21},{"source":0,"target":22},{"source":0,"target":23},{"source":0,"target":24},{"source":0,"target":25},{"source":1,"target":0},{"source":1,"target":26},{"source":1,"target":27},{"source":26,"target":28},{"source":26,"target":1},{"source":27,"target":2},{"source":27,"target":29},{"source":27,"target":1},{"source":29,"target":2},{"source":2,"target":0},{"source":3,"target":0},{"source":3,"target":5},{"source":3,"target":30},{"source":3,"target":31},{"source":30,"target":32},{"source":30,"target":3},{"source":31,"target":5},{"source":4,"target":0},{"source":4,"target":2},{"source":4,"target":33},{"source":4,"target":34},{"source":33,"target":35},{"source":33,"target":4},{"source":34,"target":2},{"source":5,"target":0},{"source":5,"target":2},{"source":5,"target":25},{"source":5,"target":36},{"source":5,"target":37},{"source":36,"target":2},{"source":37,"target":25},{"source":6,"target":0},{"source":6,"target":5},{"source":6,"target":38},{"source":6,"target":39},{"source":6,"target":40},{"source":6,"target":41},{"source":38,"target":42},{"source":38,"target":6},{"source":39,"target":14},{"source":39,"target":43},{"source":39,"target":6},{"source":43,"target":14},{"source":40,"target":15},{"source":40,"target":44},{"source":40,"target":6},{"source":44,"target":15},{"source":41,"target":5},{"source":7,"target":0},{"source":7,"target":6},{"source":7,"target":45},{"source":7,"target":46},{"source":45,"target":17},{"source":45,"target":47},{"source":45,"target":7},{"source":47,"target":17},{"source":46,"target":6},{"source":8,"target":0},{"source":8,"target":5},{"source":8,"target":48},{"source":8,"target":49},{"source":48,"target":50},{"source":48,"target":8},{"source":49,"target":5},{"source":9,"target":0},{"source":9,"target":6},{"source":9,"target":51},{"source":9,"target":52},{"source":9,"target":53},{"source":9,"target":54},{"source":9,"target":55},{"source":51,"target":56},{"source":51,"target":9},{"source":52,"target":5},{"source":52,"target":57},{"source":52,"target":9},{"source":57,"target":5},{"source":53,"target":17},{"source":53,"target":58},{"source":53,"target":9},{"source":58,"target":17},{"source":54,"target":10},{"source":54,"target":59},{"source":54,"target":9},{"source":59,"target":10},{"source":55,"target":6},{"source":10,"target":0},{"source":10,"target":60},{"source":10,"target":61},{"source":60,"target":11},{"source":60,"target":62},{"source":60,"target":10},{"source":62,"target":11},{"source":61,"target":63},{"source":61,"target":10},{"source":11,"target":0},{"source":11,"target":64},{"source":11,"target":65},{"source":11,"target":66},{"source":64,"target":67},{"source":64,"target":11},{"source":65,"target":12},{"source":65,"target":68},{"source":65,"target":11},{"source":68,"target":12},{"source":66,"target":69},{"source":66,"target":11},{"source":12,"target":0},{"source":12,"target":70},{"source":12,"target":71},{"source":12,"target":72},{"source":12,"target":73},{"source":12,"target":74},{"source":12,"target":75},{"source":70,"target":12},{"source":71,"target":12},{"source":72,"target":12},{"source":73,"target":12},{"source":74,"target":12},{"source":75,"target":12},{"source":13,"target":0},{"source":13,"target":2},{"source":13,"target":24},{"source":13,"target":76},{"source":13,"target":77},{"source":13,"target":78},{"source":13,"target":79},{"source":13,"target":80},{"source":13,"target":81},{"source":76,"target":82},{"source":76,"target":13},{"source":77,"target":13},{"source":77,"target":83},{"source":77,"target":13},{"source":83,"target":13},{"source":78,"target":18},{"source":78,"target":84},{"source":78,"target":13},{"source":84,"target":18},{"source":79,"target":15},{"source":79,"target":85},{"source":79,"target":13},{"source":85,"target":15},{"source":80,"target":2},{"source":81,"target":24},{"source":14,"target":0},{"source":14,"target":25},{"source":14,"target":86},{"source":86,"target":25},{"source":15,"target":0},{"source":15,"target":87},{"source":15,"target":88},{"source":15,"target":89},{"source":15,"target":90},{"source":15,"target":91},{"source":15,"target":92},{"source":87,"target":93},{"source":87,"target":15},{"source":88,"target":94},{"source":88,"target":15},{"source":89,"target":17},{"source":89,"target":95},{"source":89,"target":15},{"source":95,"target":17},{"source":90,"target":96},{"source":90,"target":15},{"source":91,"target":16},{"source":91,"target":97},{"source":91,"target":15},{"source":97,"target":16},{"source":92,"target":16},{"source":92,"target":98},{"source":92,"target":15},{"source":98,"target":16},{"source":16,"target":0},{"source":16,"target":99},{"source":16,"target":100},{"source":99,"target":101},{"source":99,"target":16},{"source":100,"target":102},{"source":100,"target":16},{"source":17,"target":0},{"source":17,"target":103},{"source":17,"target":104},{"source":103,"target":25},{"source":103,"target":105},{"source":103,"target":17},{"source":105,"target":25},{"source":104,"target":17},{"source":104,"target":106},{"source":104,"target":17},{"source":106,"target":17},{"source":18,"target":0},{"source":19,"target":0},{"source":19,"target":18},{"source":19,"target":107},{"source":19,"target":108},{"source":107,"target":20},{"source":107,"target":109},{"source":107,"target":19},{"source":109,"target":20},{"source":108,"target":18},{"source":20,"target":0},{"source":21,"target":0},{"source":21,"target":20},{"source":21,"target":110},{"source":21,"target":111},{"source":21,"target":112},{"source":110,"target":5},{"source":110,"target":113},{"source":110,"target":21},{"source":113,"target":5},{"source":111,"target":5},{"source":111,"target":114},{"source":111,"target":21},{"source":114,"target":5},{"source":112,"target":20},{"source":22,"target":0},{"source":22,"target":5},{"source":22,"target":115},{"source":22,"target":116},{"source":115,"target":23},{"source":115,"target":117},{"source":115,"target":22},{"source":117,"target":23},{"source":116,"target":5},{"source":23,"target":0},{"source":23,"target":118},{"source":118,"target":119},{"source":118,"target":23},{"source":24,"target":0},{"source":24,"target":120},{"source":120,"target":121},{"source":120,"target":24},{"source":25,"target":0},{"source":25,"target":24},{"source":25,"target":122},{"source":122,"target":24}],"multigraph":true} |
true | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="ecore" nsURI="http://conflictingeclass/" nsPrefix="ecore">
<eClassifiers xsi:type="ecore:EClass" name="EAttribute" eSuperTypes="#//EStructuralFeature">
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore">
<details key="constraints" value="ConsistentTransient"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="iD" eType="#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eAttributeType" lowerBound="1"
eType="#//EDataType" changeable="false" volatile="true" transient="true" derived="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EAnnotation" eSuperTypes="#//EModelElement">
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore">
<details key="constraints" value="WellFormedSourceURI"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="source" eType="#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="details" upperBound="-1"
eType="#//EStringToStringMapEntry" containment="true" resolveProxies="false"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eModelElement" eType="#//EModelElement"
transient="true" resolveProxies="false" eOpposite="#//EModelElement/eAnnotations"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="contents" upperBound="-1"
eType="#//EObject" containment="true" resolveProxies="false"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="references" upperBound="-1"
eType="#//EObject"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EClassNotMatching" eSuperTypes="#//EClassifier">
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore">
<details key="constraints" value="InterfaceIsAbstract AtMostOneID UniqueFeatureNames UniqueOperationSignatures NoCircularSuperTypes WellFormedMapEntryClass ConsistentSuperTypes DisjointFeatureAndOperationSignatures"/>
</eAnnotations>
<eOperations name="isSuperTypeOf" eType="#//EBoolean">
<eParameters name="someClass" eType="#//EClassNotMatching"/>
</eOperations>
<eOperations name="getFeatureCount" eType="#//EInt"/>
<eOperations name="getEStructuralFeature" eType="#//EStructuralFeature">
<eParameters name="featureID" eType="#//EInt"/>
</eOperations>
<eOperations name="getFeatureID" eType="#//EInt">
<eParameters name="feature" eType="#//EStructuralFeature"/>
</eOperations>
<eOperations name="getEStructuralFeature" eType="#//EStructuralFeature">
<eParameters name="featureName" eType="#//EString"/>
</eOperations>
<eOperations name="getOperationCount" eType="#//EInt"/>
<eOperations name="getEOperation" eType="#//EOperation">
<eParameters name="operationID" eType="#//EInt"/>
</eOperations>
<eOperations name="getOperationID" eType="#//EInt">
<eParameters name="operation" eType="#//EOperation"/>
</eOperations>
<eOperations name="getOverride" eType="#//EOperation">
<eParameters name="operation" eType="#//EOperation"/>
</eOperations>
<eOperations name="getFeatureType" eType="#//EGenericType">
<eParameters name="feature" eType="#//EStructuralFeature"/>
</eOperations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="abstract" eType="#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="interface" eType="#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eSuperTypes" upperBound="-1"
eType="#//EClassNotMatching" unsettable="true">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="suppressedIsSetVisibility" value="true"/>
<details key="suppressedUnsetVisibility" value="true"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="eOperations" upperBound="-1"
eType="#//EOperation" containment="true" resolveProxies="false" eOpposite="#//EOperation/eContainingClass"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eAllAttributes" upperBound="-1"
eType="#//EAttribute" changeable="false" volatile="true" transient="true"
derived="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eAllReferences" upperBound="-1"
eType="#//EReference" changeable="false" volatile="true" transient="true"
derived="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eReferences" upperBound="-1"
eType="#//EReference" changeable="false" volatile="true" transient="true"
derived="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eAttributes" upperBound="-1"
eType="#//EAttribute" changeable="false" volatile="true" transient="true"
derived="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eAllContainments" upperBound="-1"
eType="#//EReference" changeable="false" volatile="true" transient="true"
derived="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eAllOperations" upperBound="-1"
eType="#//EOperation" changeable="false" volatile="true" transient="true"
derived="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eAllStructuralFeatures"
upperBound="-1" eType="#//EStructuralFeature" changeable="false" volatile="true"
transient="true" derived="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eAllSuperTypes" upperBound="-1"
eType="#//EClassNotMatching" changeable="false" volatile="true" transient="true"
derived="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eIDAttribute" eType="#//EAttribute"
changeable="false" volatile="true" transient="true" derived="true" resolveProxies="false"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eStructuralFeatures" upperBound="-1"
eType="#//EStructuralFeature" containment="true" resolveProxies="false" eOpposite="#//EStructuralFeature/eContainingClass"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eGenericSuperTypes" upperBound="-1"
eType="#//EGenericType" unsettable="true" containment="true" resolveProxies="false">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="suppressedIsSetVisibility" value="true"/>
<details key="suppressedUnsetVisibility" value="true"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="eAllGenericSuperTypes"
upperBound="-1" eType="#//EGenericType" changeable="false" volatile="true"
transient="true" derived="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EClassifier" abstract="true" eSuperTypes="#//ENamedElement">
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore">
<details key="constraints" value="WellFormedInstanceTypeName UniqueTypeParameterNames"/>
</eAnnotations>
<eOperations name="isInstance" eType="#//EBoolean">
<eParameters name="object" eType="#//EJavaObject"/>
</eOperations>
<eOperations name="getClassifierID" eType="#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="instanceClassName" eType="#//EString"
volatile="true" unsettable="true">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="suppressedIsSetVisibility" value="true"/>
<details key="suppressedUnsetVisibility" value="true"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="instanceClass" changeable="false"
volatile="true" transient="true" derived="true">
<eGenericType eClassifier="#//EJavaClass">
<eTypeArguments/>
</eGenericType>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="defaultValue" eType="#//EJavaObject"
changeable="false" volatile="true" transient="true" derived="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="instanceTypeName" eType="#//EString"
volatile="true" unsettable="true">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="suppressedIsSetVisibility" value="true"/>
<details key="suppressedUnsetVisibility" value="true"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="ePackage" eType="#//EPackage"
changeable="false" transient="true" eOpposite="#//EPackage/eClassifiers"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eTypeParameters" upperBound="-1"
eType="#//ETypeParameter" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EDataType" eSuperTypes="#//EClassifier">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="serializable" eType="#//EBoolean"
defaultValueLiteral="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EEnum" eSuperTypes="#//EDataType">
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore">
<details key="constraints" value="UniqueEnumeratorNames UniqueEnumeratorLiterals"/>
</eAnnotations>
<eOperations name="getEEnumLiteral" eType="#//EEnumLiteral">
<eParameters name="name" eType="#//EString"/>
</eOperations>
<eOperations name="getEEnumLiteral" eType="#//EEnumLiteral">
<eParameters name="value" eType="#//EInt"/>
</eOperations>
<eOperations name="getEEnumLiteralByLiteral" eType="#//EEnumLiteral">
<eParameters name="literal" eType="#//EString"/>
</eOperations>
<eStructuralFeatures xsi:type="ecore:EReference" name="eLiterals" upperBound="-1"
eType="#//EEnumLiteral" containment="true" resolveProxies="false" eOpposite="#//EEnumLiteral/eEnum"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EEnumLiteral" eSuperTypes="#//ENamedElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="instance" eType="#//EEnumerator"
transient="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="literal" eType="#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eEnum" eType="#//EEnum"
changeable="false" transient="true" resolveProxies="false" eOpposite="#//EEnum/eLiterals"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EFactory" eSuperTypes="#//EModelElement">
<eOperations name="create" eType="#//EObject">
<eParameters name="eClass" eType="#//EClassNotMatching"/>
</eOperations>
<eOperations name="createFromString" eType="#//EJavaObject">
<eParameters name="eDataType" eType="#//EDataType"/>
<eParameters name="literalValue" eType="#//EString"/>
</eOperations>
<eOperations name="convertToString" eType="#//EString">
<eParameters name="eDataType" eType="#//EDataType"/>
<eParameters name="instanceValue" eType="#//EJavaObject"/>
</eOperations>
<eStructuralFeatures xsi:type="ecore:EReference" name="ePackage" lowerBound="1"
eType="#//EPackage" transient="true" resolveProxies="false" eOpposite="#//EPackage/eFactoryInstance"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EModelElement" abstract="true">
<eOperations name="getEAnnotation" eType="#//EAnnotation">
<eParameters name="source" eType="#//EString"/>
</eOperations>
<eStructuralFeatures xsi:type="ecore:EReference" name="eAnnotations" upperBound="-1"
eType="#//EAnnotation" containment="true" resolveProxies="false" eOpposite="#//EAnnotation/eModelElement"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ENamedElement" abstract="true" eSuperTypes="#//EModelElement">
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore">
<details key="constraints" value="WellFormedName"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EObject">
<eOperations name="eClass" eType="#//EClassNotMatching"/>
<eOperations name="eIsProxy" eType="#//EBoolean"/>
<eOperations name="eResource" eType="#//EResource"/>
<eOperations name="eContainer" eType="#//EObject"/>
<eOperations name="eContainingFeature" eType="#//EStructuralFeature"/>
<eOperations name="eContainmentFeature" eType="#//EReference"/>
<eOperations name="eContents">
<eGenericType eClassifier="#//EEList">
<eTypeArguments eClassifier="#//EObject"/>
</eGenericType>
</eOperations>
<eOperations name="eAllContents">
<eGenericType eClassifier="#//ETreeIterator">
<eTypeArguments eClassifier="#//EObject"/>
</eGenericType>
</eOperations>
<eOperations name="eCrossReferences">
<eGenericType eClassifier="#//EEList">
<eTypeArguments eClassifier="#//EObject"/>
</eGenericType>
</eOperations>
<eOperations name="eGet" eType="#//EJavaObject">
<eParameters name="feature" eType="#//EStructuralFeature"/>
</eOperations>
<eOperations name="eGet" eType="#//EJavaObject">
<eParameters name="feature" eType="#//EStructuralFeature"/>
<eParameters name="resolve" eType="#//EBoolean"/>
</eOperations>
<eOperations name="eSet">
<eParameters name="feature" eType="#//EStructuralFeature"/>
<eParameters name="newValue" eType="#//EJavaObject"/>
</eOperations>
<eOperations name="eIsSet" eType="#//EBoolean">
<eParameters name="feature" eType="#//EStructuralFeature"/>
</eOperations>
<eOperations name="eUnset">
<eParameters name="feature" eType="#//EStructuralFeature"/>
</eOperations>
<eOperations name="eInvoke" eType="#//EJavaObject" eExceptions="#//EInvocationTargetException">
<eParameters name="operation" eType="#//EOperation"/>
<eParameters name="arguments">
<eGenericType eClassifier="#//EEList">
<eTypeArguments/>
</eGenericType>
</eParameters>
</eOperations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EOperation" eSuperTypes="#//ETypedElement">
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore">
<details key="constraints" value="UniqueParameterNames UniqueTypeParameterNames NoRepeatingVoid"/>
</eAnnotations>
<eOperations name="getOperationID" eType="#//EInt"/>
<eOperations name="isOverrideOf" eType="#//EBoolean">
<eParameters name="someOperation" eType="#//EOperation"/>
</eOperations>
<eStructuralFeatures xsi:type="ecore:EReference" name="eContainingClass" eType="#//EClassNotMatching"
changeable="false" transient="true" resolveProxies="false" eOpposite="#//EClassNotMatching/eOperations"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eTypeParameters" upperBound="-1"
eType="#//ETypeParameter" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eParameters" upperBound="-1"
eType="#//EParameter" containment="true" resolveProxies="false" eOpposite="#//EParameter/eOperation"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eExceptions" upperBound="-1"
eType="#//EClassifier" unsettable="true">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="suppressedIsSetVisibility" value="true"/>
<details key="suppressedUnsetVisibility" value="true"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="eGenericExceptions" upperBound="-1"
eType="#//EGenericType" unsettable="true" containment="true" resolveProxies="false">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="suppressedIsSetVisibility" value="true"/>
<details key="suppressedUnsetVisibility" value="true"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EPackage" eSuperTypes="#//ENamedElement">
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore">
<details key="constraints" value="WellFormedNsURI WellFormedNsPrefix UniqueSubpackageNames UniqueClassifierNames UniqueNsURIs"/>
</eAnnotations>
<eOperations name="getEClassifier" eType="#//EClassifier">
<eParameters name="name" eType="#//EString"/>
</eOperations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="nsURI" eType="#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="nsPrefix" eType="#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eFactoryInstance" lowerBound="1"
eType="#//EFactory" transient="true" resolveProxies="false" eOpposite="#//EFactory/ePackage"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eClassifiers" upperBound="-1"
eType="#//EClassifier" containment="true" eOpposite="#//EClassifier/ePackage"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eSubpackages" upperBound="-1"
eType="#//EPackage" containment="true" eOpposite="#//EPackage/eSuperPackage"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eSuperPackage" eType="#//EPackage"
changeable="false" transient="true" eOpposite="#//EPackage/eSubpackages"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EParameter" eSuperTypes="#//ETypedElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="eOperation" eType="#//EOperation"
changeable="false" transient="true" resolveProxies="false" eOpposite="#//EOperation/eParameters"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EReference" eSuperTypes="#//EStructuralFeature">
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore">
<details key="constraints" value="ConsistentOpposite SingleContainer ConsistentKeys ConsistentUnique ConsistentContainer"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="containment" eType="#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="container" eType="#//EBoolean"
changeable="false" volatile="true" transient="true" derived="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="resolveProxies" eType="#//EBoolean"
defaultValueLiteral="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eOpposite" eType="#//EReference"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eReferenceType" lowerBound="1"
eType="#//EClassNotMatching" changeable="false" volatile="true" transient="true"
derived="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eKeys" upperBound="-1"
eType="#//EAttribute"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EStructuralFeature" abstract="true"
eSuperTypes="#//ETypedElement">
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore">
<details key="constraints" value="ValidDefaultValueLiteral"/>
</eAnnotations>
<eOperations name="getFeatureID" eType="#//EInt"/>
<eOperations name="getContainerClass">
<eGenericType eClassifier="#//EJavaClass">
<eTypeArguments/>
</eGenericType>
</eOperations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="changeable" eType="#//EBoolean"
defaultValueLiteral="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="volatile" eType="#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="transient" eType="#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="defaultValueLiteral" eType="#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="defaultValue" eType="#//EJavaObject"
changeable="false" volatile="true" transient="true" derived="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="unsettable" eType="#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="derived" eType="#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eContainingClass" eType="#//EClassNotMatching"
changeable="false" transient="true" resolveProxies="false" eOpposite="#//EClassNotMatching/eStructuralFeatures"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ETypedElement" abstract="true" eSuperTypes="#//ENamedElement">
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore">
<details key="constraints" value="ValidLowerBound ValidUpperBound ConsistentBounds ValidType"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="ordered" eType="#//EBoolean"
defaultValueLiteral="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="unique" eType="#//EBoolean"
defaultValueLiteral="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="lowerBound" eType="#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="upperBound" eType="#//EInt"
defaultValueLiteral="1"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="many" eType="#//EBoolean"
changeable="false" volatile="true" transient="true" derived="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="required" eType="#//EBoolean"
changeable="false" volatile="true" transient="true" derived="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eType" eType="#//EClassifier"
volatile="true" unsettable="true">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="suppressedIsSetVisibility" value="true"/>
<details key="suppressedUnsetVisibility" value="true"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="eGenericType" eType="#//EGenericType"
volatile="true" unsettable="true" containment="true" resolveProxies="false">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="suppressedIsSetVisibility" value="true"/>
<details key="suppressedUnsetVisibility" value="true"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="EBigDecimal" instanceClassName="java.math.BigDecimal">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="baseType" value="http://www.w3.org/2001/XMLSchema#decimal"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="EBigInteger" instanceClassName="java.math.BigInteger">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="baseType" value="http://www.w3.org/2001/XMLSchema#integer"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="EBoolean" instanceClassName="boolean">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="baseType" value="http://www.w3.org/2001/XMLSchema#boolean"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="EBooleanObject" instanceClassName="java.lang.Boolean">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="baseType" value="EBoolean"/>
<details key="name" value="EBoolean:Object"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="EByte" instanceClassName="byte">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="baseType" value="http://www.w3.org/2001/XMLSchema#byte"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="EByteArray" instanceClassName="byte[]">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="baseType" value="http://www.w3.org/2001/XMLSchema#hexBinary"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="EByteObject" instanceClassName="java.lang.Byte">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="baseType" value="EByte"/>
<details key="name" value="EByte:Object"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="EChar" instanceClassName="char"/>
<eClassifiers xsi:type="ecore:EDataType" name="ECharacterObject" instanceClassName="java.lang.Character">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="baseType" value="EChar"/>
<details key="name" value="EChar:Object"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="EDate" instanceClassName="java.util.Date"/>
<eClassifiers xsi:type="ecore:EDataType" name="EDiagnosticChain" instanceClassName="org.eclipse.emf.common.util.DiagnosticChain"
serializable="false"/>
<eClassifiers xsi:type="ecore:EDataType" name="EDouble" instanceClassName="double">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="baseType" value="http://www.w3.org/2001/XMLSchema#double"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="EDoubleObject" instanceClassName="java.lang.Double">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="baseType" value="EDouble"/>
<details key="name" value="EDouble:Object"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="EEList" instanceClassName="org.eclipse.emf.common.util.EList"
serializable="false">
<eTypeParameters name="E"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="EEnumerator" instanceClassName="org.eclipse.emf.common.util.Enumerator"
serializable="false"/>
<eClassifiers xsi:type="ecore:EDataType" name="EFeatureMap" instanceClassName="org.eclipse.emf.ecore.util.FeatureMap"
serializable="false"/>
<eClassifiers xsi:type="ecore:EDataType" name="EFeatureMapEntry" instanceClassName="org.eclipse.emf.ecore.util.FeatureMap$Entry"
serializable="false"/>
<eClassifiers xsi:type="ecore:EDataType" name="EFloat" instanceClassName="float">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="baseType" value="http://www.w3.org/2001/XMLSchema#float"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="EFloatObject" instanceClassName="java.lang.Float">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="baseType" value="EFloat"/>
<details key="name" value="EFloat:Object"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="EInt" instanceClassName="int">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="baseType" value="http://www.w3.org/2001/XMLSchema#int"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="EIntegerObject" instanceClassName="java.lang.Integer">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="baseType" value="EInt"/>
<details key="name" value="EInt:Object"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="EJavaClass" instanceClassName="java.lang.Class">
<eTypeParameters name="T"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="EJavaObject" instanceClassName="java.lang.Object"/>
<eClassifiers xsi:type="ecore:EDataType" name="ELong" instanceClassName="long">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="baseType" value="http://www.w3.org/2001/XMLSchema#long"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="ELongObject" instanceClassName="java.lang.Long">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="baseType" value="ELong"/>
<details key="name" value="ELong:Object"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="EMap" instanceClassName="java.util.Map"
serializable="false">
<eTypeParameters name="K"/>
<eTypeParameters name="V"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="EResource" instanceClassName="org.eclipse.emf.ecore.resource.Resource"
serializable="false"/>
<eClassifiers xsi:type="ecore:EDataType" name="EResourceSet" instanceClassName="org.eclipse.emf.ecore.resource.ResourceSet"
serializable="false"/>
<eClassifiers xsi:type="ecore:EDataType" name="EShort" instanceClassName="short">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="baseType" value="http://www.w3.org/2001/XMLSchema#short"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="EShortObject" instanceClassName="java.lang.Short">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="baseType" value="EShort"/>
<details key="name" value="EShort:Object"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="EString" instanceClassName="java.lang.String">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="baseType" value="http://www.w3.org/2001/XMLSchema#string"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EStringToStringMapEntry" instanceClassName="java.util.Map$Entry">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="key" eType="#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="ETreeIterator" instanceClassName="org.eclipse.emf.common.util.TreeIterator"
serializable="false">
<eTypeParameters name="E"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EGenericType">
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore">
<details key="constraints" value="ConsistentType ConsistentBounds ConsistentArguments"/>
</eAnnotations>
<eOperations name="isInstance" eType="#//EBoolean">
<eParameters name="object" eType="#//EJavaObject"/>
</eOperations>
<eStructuralFeatures xsi:type="ecore:EReference" name="eUpperBound" eType="#//EGenericType"
containment="true" resolveProxies="false"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eTypeArguments" upperBound="-1"
eType="#//EGenericType" containment="true" resolveProxies="false"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eRawType" lowerBound="1"
eType="#//EClassifier" changeable="false" transient="true" derived="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eLowerBound" eType="#//EGenericType"
containment="true" resolveProxies="false"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eTypeParameter" eType="#//ETypeParameter"
resolveProxies="false"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eClassifier" eType="#//EClassifier"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ETypeParameter" eSuperTypes="#//ENamedElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="eBounds" upperBound="-1"
eType="#//EGenericType" containment="true" resolveProxies="false"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="EInvocationTargetException" instanceClassName="java.lang.reflect.InvocationTargetException"
serializable="false"/>
</ecore:EPackage>
| github:ecore:/data/diverse-project/melange/tests/fr.inria.diverse.melange.tests/tests-inputs/metamodels/merge/ConflictingEClass.ecore | ecore | ecore
EAttribute
iD
eAttributeType
EAnnotation
source
details
eModelElement
contents
references
EClassNotMatching
isSuperTypeOf
someClass
getFeatureCount
getEStructuralFeature
featureID
getFeatureID
feature
getEStructuralFeature
featureName
getOperationCount
getEOperation
operationID
getOperationID
operation
getOverride
operation
getFeatureType
feature
abstract
interface
eSuperTypes
eOperations
eAllAttributes
eAllReferences
eReferences
eAttributes
eAllContainments
eAllOperations
eAllStructuralFeatures
eAllSuperTypes
eIDAttribute
eStructuralFeatures
eGenericSuperTypes
eAllGenericSuperTypes
EClassifier
isInstance
object
getClassifierID
instanceClassName
instanceClass
defaultValue
instanceTypeName
ePackage
eTypeParameters
EDataType
serializable
true
EEnum
getEEnumLiteral
name
getEEnumLiteral
value
getEEnumLiteralByLiteral
literal
eLiterals
EEnumLiteral
value
instance
literal
eEnum
EFactory
create
eClass
createFromString
eDataType
literalValue
convertToString
eDataType
instanceValue
ePackage
EModelElement
getEAnnotation
source
eAnnotations
ENamedElement
name
EObject
eClass
eIsProxy
eResource
eContainer
eContainingFeature
eContainmentFeature
eContents
eAllContents
eCrossReferences
eGet
feature
eGet
feature
resolve
eSet
feature
newValue
eIsSet
feature
eUnset
feature
eInvoke
operation
arguments
EOperation
getOperationID
isOverrideOf
someOperation
eContainingClass
eTypeParameters
eParameters
eExceptions
eGenericExceptions
EPackage
getEClassifier
name
nsURI
nsPrefix
eFactoryInstance
eClassifiers
eSubpackages
eSuperPackage
EParameter
eOperation
EReference
containment
container
resolveProxies
true
eOpposite
eReferenceType
eKeys
EStructuralFeature
getFeatureID
getContainerClass
changeable
true
volatile
transient
defaultValueLiteral
defaultValue
unsettable
derived
eContainingClass
ETypedElement
ordered
true
unique
true
lowerBound
upperBound
1
many
required
eType
eGenericType
EBigDecimal
java.math.BigDecimal
java.math.BigDecimal
EBigInteger
java.math.BigInteger
java.math.BigInteger
EBoolean
boolean
boolean
EBooleanObject
java.lang.Boolean
java.lang.Boolean
EByte
byte
byte
EByteArray
byte[]
byte[]
EByteObject
java.lang.Byte
java.lang.Byte
EChar
char
char
ECharacterObject
java.lang.Character
java.lang.Character
EDate
java.util.Date
java.util.Date
EDiagnosticChain
org.eclipse.emf.common.util.DiagnosticChain
org.eclipse.emf.common.util.DiagnosticChain
EDouble
double
double
EDoubleObject
java.lang.Double
java.lang.Double
EEList
org.eclipse.emf.common.util.EList
org.eclipse.emf.common.util.EList
E
EEnumerator
org.eclipse.emf.common.util.Enumerator
org.eclipse.emf.common.util.Enumerator
EFeatureMap
org.eclipse.emf.ecore.util.FeatureMap
org.eclipse.emf.ecore.util.FeatureMap
EFeatureMapEntry
org.eclipse.emf.ecore.util.FeatureMap$Entry
org.eclipse.emf.ecore.util.FeatureMap$Entry
EFloat
float
float
EFloatObject
java.lang.Float
java.lang.Float
EInt
int
int
EIntegerObject
java.lang.Integer
java.lang.Integer
EJavaClass
java.lang.Class
java.lang.Class
T
EJavaObject
java.lang.Object
java.lang.Object
ELong
long
long
ELongObject
java.lang.Long
java.lang.Long
EMap
java.util.Map
java.util.Map
K
V
EResource
org.eclipse.emf.ecore.resource.Resource
org.eclipse.emf.ecore.resource.Resource
EResourceSet
org.eclipse.emf.ecore.resource.ResourceSet
org.eclipse.emf.ecore.resource.ResourceSet
EShort
short
short
EShortObject
java.lang.Short
java.lang.Short
EString
java.lang.String
java.lang.String
EStringToStringMapEntry
java.util.Map$Entry
java.util.Map$Entry
key
value
ETreeIterator
org.eclipse.emf.common.util.TreeIterator
org.eclipse.emf.common.util.TreeIterator
E
EGenericType
isInstance
object
eUpperBound
eTypeArguments
eRawType
eLowerBound
eTypeParameter
eClassifier
ETypeParameter
eBounds
EInvocationTargetException
java.lang.reflect.InvocationTargetException
java.lang.reflect.InvocationTargetException | null | {"directed":true,"nodes":[{"nsPrefix":"ecore","nsURI":"http://conflictingeclass/","name":"ecore","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EAttribute","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EAnnotation","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EClassNotMatching","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EClassifier","instanceClass":null,"abstract":true,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EDataType","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EEnum","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EEnumLiteral","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EFactory","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EModelElement","instanceClass":null,"abstract":true,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ENamedElement","instanceClass":null,"abstract":true,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EObject","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EOperation","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EPackage","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EParameter","instanceClass":null,"abstract":false,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EReference","instanceClass":null,"abstract":false,"id":15,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EStructuralFeature","instanceClass":null,"abstract":true,"id":16,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ETypedElement","instanceClass":null,"abstract":true,"id":17,"interface":false,"eClass":"EClass"},{"instanceTypeName":"java.math.BigDecimal","defaultValue":null,"instanceClassName":"java.math.BigDecimal","name":"EBigDecimal","instanceClass":"java.math.BigDecimal","id":18,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.math.BigInteger","defaultValue":null,"instanceClassName":"java.math.BigInteger","name":"EBigInteger","instanceClass":"java.math.BigInteger","id":19,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"boolean","defaultValue":false,"instanceClassName":"boolean","name":"EBoolean","instanceClass":"boolean","id":20,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.lang.Boolean","defaultValue":null,"instanceClassName":"java.lang.Boolean","name":"EBooleanObject","instanceClass":"java.lang.Boolean","id":21,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"byte","defaultValue":0,"instanceClassName":"byte","name":"EByte","instanceClass":"byte","id":22,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"byte[]","defaultValue":null,"instanceClassName":"byte[]","name":"EByteArray","instanceClass":"[B","id":23,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.lang.Byte","defaultValue":null,"instanceClassName":"java.lang.Byte","name":"EByteObject","instanceClass":"java.lang.Byte","id":24,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"char","defaultValue":"\u0000","instanceClassName":"char","name":"EChar","instanceClass":"char","id":25,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.lang.Character","defaultValue":null,"instanceClassName":"java.lang.Character","name":"ECharacterObject","instanceClass":"java.lang.Character","id":26,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.util.Date","defaultValue":null,"instanceClassName":"java.util.Date","name":"EDate","instanceClass":"java.util.Date","id":27,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"org.eclipse.emf.common.util.DiagnosticChain","defaultValue":null,"instanceClassName":"org.eclipse.emf.common.util.DiagnosticChain","name":"EDiagnosticChain","instanceClass":"org.eclipse.emf.common.util.DiagnosticChain","id":28,"serializable":false,"eClass":"EDataType"},{"instanceTypeName":"double","defaultValue":0.0,"instanceClassName":"double","name":"EDouble","instanceClass":"double","id":29,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.lang.Double","defaultValue":null,"instanceClassName":"java.lang.Double","name":"EDoubleObject","instanceClass":"java.lang.Double","id":30,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"org.eclipse.emf.common.util.EList","defaultValue":null,"instanceClassName":"org.eclipse.emf.common.util.EList","name":"EEList","instanceClass":"org.eclipse.emf.common.util.EList","id":31,"serializable":false,"eClass":"EDataType"},{"instanceTypeName":"org.eclipse.emf.common.util.Enumerator","defaultValue":null,"instanceClassName":"org.eclipse.emf.common.util.Enumerator","name":"EEnumerator","instanceClass":"org.eclipse.emf.common.util.Enumerator","id":32,"serializable":false,"eClass":"EDataType"},{"instanceTypeName":"org.eclipse.emf.ecore.util.FeatureMap","defaultValue":null,"instanceClassName":"org.eclipse.emf.ecore.util.FeatureMap","name":"EFeatureMap","instanceClass":"org.eclipse.emf.ecore.util.FeatureMap","id":33,"serializable":false,"eClass":"EDataType"},{"instanceTypeName":"org.eclipse.emf.ecore.util.FeatureMap$Entry","defaultValue":null,"instanceClassName":"org.eclipse.emf.ecore.util.FeatureMap$Entry","name":"EFeatureMapEntry","instanceClass":"org.eclipse.emf.ecore.util.FeatureMap$Entry","id":34,"serializable":false,"eClass":"EDataType"},{"instanceTypeName":"float","defaultValue":0.0,"instanceClassName":"float","name":"EFloat","instanceClass":"float","id":35,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.lang.Float","defaultValue":null,"instanceClassName":"java.lang.Float","name":"EFloatObject","instanceClass":"java.lang.Float","id":36,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"int","defaultValue":0,"instanceClassName":"int","name":"EInt","instanceClass":"int","id":37,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.lang.Integer","defaultValue":null,"instanceClassName":"java.lang.Integer","name":"EIntegerObject","instanceClass":"java.lang.Integer","id":38,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.lang.Class","defaultValue":null,"instanceClassName":"java.lang.Class","name":"EJavaClass","instanceClass":"java.lang.Class","id":39,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.lang.Object","defaultValue":null,"instanceClassName":"java.lang.Object","name":"EJavaObject","instanceClass":"java.lang.Object","id":40,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"long","defaultValue":0,"instanceClassName":"long","name":"ELong","instanceClass":"long","id":41,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.lang.Long","defaultValue":null,"instanceClassName":"java.lang.Long","name":"ELongObject","instanceClass":"java.lang.Long","id":42,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.util.Map","defaultValue":null,"instanceClassName":"java.util.Map","name":"EMap","instanceClass":"java.util.Map","id":43,"serializable":false,"eClass":"EDataType"},{"instanceTypeName":"org.eclipse.emf.ecore.resource.Resource","defaultValue":null,"instanceClassName":"org.eclipse.emf.ecore.resource.Resource","name":"EResource","instanceClass":"org.eclipse.emf.ecore.resource.Resource","id":44,"serializable":false,"eClass":"EDataType"},{"instanceTypeName":"org.eclipse.emf.ecore.resource.ResourceSet","defaultValue":null,"instanceClassName":"org.eclipse.emf.ecore.resource.ResourceSet","name":"EResourceSet","instanceClass":"org.eclipse.emf.ecore.resource.ResourceSet","id":45,"serializable":false,"eClass":"EDataType"},{"instanceTypeName":"short","defaultValue":0,"instanceClassName":"short","name":"EShort","instanceClass":"short","id":46,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.lang.Short","defaultValue":null,"instanceClassName":"java.lang.Short","name":"EShortObject","instanceClass":"java.lang.Short","id":47,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.lang.String","defaultValue":null,"instanceClassName":"java.lang.String","name":"EString","instanceClass":"java.lang.String","id":48,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.util.Map$Entry","defaultValue":null,"instanceClassName":"java.util.Map$Entry","name":"EStringToStringMapEntry","instanceClass":"java.util.Map$Entry","abstract":false,"id":49,"interface":false,"eClass":"EClass"},{"instanceTypeName":"org.eclipse.emf.common.util.TreeIterator","defaultValue":null,"instanceClassName":"org.eclipse.emf.common.util.TreeIterator","name":"ETreeIterator","instanceClass":"org.eclipse.emf.common.util.TreeIterator","id":50,"serializable":false,"eClass":"EDataType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EGenericType","instanceClass":null,"abstract":false,"id":51,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ETypeParameter","instanceClass":null,"abstract":false,"id":52,"interface":false,"eClass":"EClass"},{"instanceTypeName":"java.lang.reflect.InvocationTargetException","defaultValue":null,"instanceClassName":"java.lang.reflect.InvocationTargetException","name":"EInvocationTargetException","instanceClass":"java.lang.reflect.InvocationTargetException","id":53,"serializable":false,"eClass":"EDataType"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"iD","changeable":true,"lowerBound":0,"iD":false,"id":54,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":true,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"eAttributeType","changeable":false,"resolveProxies":true,"lowerBound":1,"id":55,"derived":true},{"id":56,"eClass":"EGenericType"},{"id":57,"eClass":"EGenericType"},{"id":58,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"source","changeable":true,"lowerBound":0,"iD":false,"id":59,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"details","changeable":true,"resolveProxies":false,"lowerBound":0,"id":60,"derived":false},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"eModelElement","changeable":true,"resolveProxies":false,"lowerBound":0,"id":61,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"contents","changeable":true,"resolveProxies":false,"lowerBound":0,"id":62,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"references","changeable":true,"resolveProxies":true,"lowerBound":0,"id":63,"derived":false},{"id":64,"eClass":"EGenericType"},{"id":65,"eClass":"EGenericType"},{"id":66,"eClass":"EGenericType"},{"id":67,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"eAnnotations","changeable":true,"resolveProxies":false,"lowerBound":0,"id":68,"derived":false},{"id":69,"eClass":"EGenericType"},{"id":70,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"isSuperTypeOf","lowerBound":0,"id":71,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getFeatureCount","lowerBound":0,"id":72,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getEStructuralFeature","lowerBound":0,"id":73,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getFeatureID","lowerBound":0,"id":74,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getEStructuralFeature","lowerBound":0,"id":75,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getOperationCount","lowerBound":0,"id":76,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getEOperation","lowerBound":0,"id":77,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getOperationID","lowerBound":0,"id":78,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getOverride","lowerBound":0,"id":79,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getFeatureType","lowerBound":0,"id":80,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"abstract","changeable":true,"lowerBound":0,"iD":false,"id":81,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"interface","changeable":true,"lowerBound":0,"iD":false,"id":82,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":true,"transient":false,"unique":true,"name":"eSuperTypes","changeable":true,"resolveProxies":true,"lowerBound":0,"id":83,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"eOperations","changeable":true,"resolveProxies":false,"lowerBound":0,"id":84,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":true,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"eAllAttributes","changeable":false,"resolveProxies":true,"lowerBound":0,"id":85,"derived":true},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":true,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"eAllReferences","changeable":false,"resolveProxies":true,"lowerBound":0,"id":86,"derived":true},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":true,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"eReferences","changeable":false,"resolveProxies":true,"lowerBound":0,"id":87,"derived":true},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":true,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"eAttributes","changeable":false,"resolveProxies":true,"lowerBound":0,"id":88,"derived":true},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":true,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"eAllContainments","changeable":false,"resolveProxies":true,"lowerBound":0,"id":89,"derived":true},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":true,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"eAllOperations","changeable":false,"resolveProxies":true,"lowerBound":0,"id":90,"derived":true},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":true,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"eAllStructuralFeatures","changeable":false,"resolveProxies":true,"lowerBound":0,"id":91,"derived":true},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":true,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"eAllSuperTypes","changeable":false,"resolveProxies":true,"lowerBound":0,"id":92,"derived":true},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":true,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"eIDAttribute","changeable":false,"resolveProxies":false,"lowerBound":0,"id":93,"derived":true},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"eStructuralFeatures","changeable":true,"resolveProxies":false,"lowerBound":0,"id":94,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":true,"transient":false,"unique":true,"name":"eGenericSuperTypes","changeable":true,"resolveProxies":false,"lowerBound":0,"id":95,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":true,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"eAllGenericSuperTypes","changeable":false,"resolveProxies":true,"lowerBound":0,"id":96,"derived":true},{"id":97,"eClass":"EGenericType"},{"id":98,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"someClass","lowerBound":0,"id":99,"many":false,"required":false,"eClass":"EParameter"},{"id":100,"eClass":"EGenericType"},{"id":101,"eClass":"EGenericType"},{"id":102,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"featureID","lowerBound":0,"id":103,"many":false,"required":false,"eClass":"EParameter"},{"id":104,"eClass":"EGenericType"},{"id":105,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"feature","lowerBound":0,"id":106,"many":false,"required":false,"eClass":"EParameter"},{"id":107,"eClass":"EGenericType"},{"id":108,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"featureName","lowerBound":0,"id":109,"many":false,"required":false,"eClass":"EParameter"},{"id":110,"eClass":"EGenericType"},{"id":111,"eClass":"EGenericType"},{"id":112,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"operationID","lowerBound":0,"id":113,"many":false,"required":false,"eClass":"EParameter"},{"id":114,"eClass":"EGenericType"},{"id":115,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"operation","lowerBound":0,"id":116,"many":false,"required":false,"eClass":"EParameter"},{"id":117,"eClass":"EGenericType"},{"id":118,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"operation","lowerBound":0,"id":119,"many":false,"required":false,"eClass":"EParameter"},{"id":120,"eClass":"EGenericType"},{"id":121,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"feature","lowerBound":0,"id":122,"many":false,"required":false,"eClass":"EParameter"},{"id":123,"eClass":"EGenericType"},{"id":124,"eClass":"EGenericType"},{"id":125,"eClass":"EGenericType"},{"id":126,"eClass":"EGenericType"},{"id":127,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"eContainingClass","changeable":false,"resolveProxies":false,"lowerBound":0,"id":128,"derived":false},{"id":129,"eClass":"EGenericType"},{"id":130,"eClass":"EGenericType"},{"id":131,"eClass":"EGenericType"},{"id":132,"eClass":"EGenericType"},{"id":133,"eClass":"EGenericType"},{"id":134,"eClass":"EGenericType"},{"id":135,"eClass":"EGenericType"},{"id":136,"eClass":"EGenericType"},{"id":137,"eClass":"EGenericType"},{"id":138,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"eContainingClass","changeable":false,"resolveProxies":false,"lowerBound":0,"id":139,"derived":false},{"id":140,"eClass":"EGenericType"},{"id":141,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"isInstance","lowerBound":0,"id":142,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getClassifierID","lowerBound":0,"id":143,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":true,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":true,"name":"instanceClassName","changeable":true,"lowerBound":0,"iD":false,"id":144,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":true,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":true,"unique":true,"name":"instanceClass","changeable":false,"lowerBound":0,"iD":false,"id":145,"derived":true},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":true,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":true,"unique":true,"name":"defaultValue","changeable":false,"lowerBound":0,"iD":false,"id":146,"derived":true},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":true,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":true,"name":"instanceTypeName","changeable":true,"lowerBound":0,"iD":false,"id":147,"derived":false},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"ePackage","changeable":false,"resolveProxies":true,"lowerBound":0,"id":148,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"eTypeParameters","changeable":true,"resolveProxies":true,"lowerBound":0,"id":149,"derived":false},{"id":150,"eClass":"EGenericType"},{"id":151,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"object","lowerBound":0,"id":152,"many":false,"required":false,"eClass":"EParameter"},{"id":153,"eClass":"EGenericType"},{"id":154,"eClass":"EGenericType"},{"id":155,"eClass":"EGenericType"},{"id":156,"eClass":"EGenericType"},{"id":157,"eClass":"EGenericType"},{"id":158,"eClass":"EGenericType"},{"id":159,"eClass":"EGenericType"},{"id":160,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"eClassifiers","changeable":true,"resolveProxies":true,"lowerBound":0,"id":161,"derived":false},{"id":162,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":true,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"true","unsettable":false,"transient":false,"unique":true,"name":"serializable","changeable":true,"lowerBound":0,"iD":false,"id":163,"derived":false},{"id":164,"eClass":"EGenericType"},{"id":165,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"getEEnumLiteral","lowerBound":0,"id":166,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getEEnumLiteral","lowerBound":0,"id":167,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getEEnumLiteralByLiteral","lowerBound":0,"id":168,"many":false,"required":false,"eClass":"EOperation"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"eLiterals","changeable":true,"resolveProxies":false,"lowerBound":0,"id":169,"derived":false},{"id":170,"eClass":"EGenericType"},{"id":171,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"name","lowerBound":0,"id":172,"many":false,"required":false,"eClass":"EParameter"},{"id":173,"eClass":"EGenericType"},{"id":174,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"value","lowerBound":0,"id":175,"many":false,"required":false,"eClass":"EParameter"},{"id":176,"eClass":"EGenericType"},{"id":177,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"literal","lowerBound":0,"id":178,"many":false,"required":false,"eClass":"EParameter"},{"id":179,"eClass":"EGenericType"},{"id":180,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"eEnum","changeable":false,"resolveProxies":false,"lowerBound":0,"id":181,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":0,"iD":false,"id":182,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":true,"unique":true,"name":"instance","changeable":true,"lowerBound":0,"iD":false,"id":183,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"literal","changeable":true,"lowerBound":0,"iD":false,"id":184,"derived":false},{"id":185,"eClass":"EGenericType"},{"id":186,"eClass":"EGenericType"},{"id":187,"eClass":"EGenericType"},{"id":188,"eClass":"EGenericType"},{"id":189,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"create","lowerBound":0,"id":190,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"createFromString","lowerBound":0,"id":191,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"convertToString","lowerBound":0,"id":192,"many":false,"required":false,"eClass":"EOperation"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"ePackage","changeable":true,"resolveProxies":false,"lowerBound":1,"id":193,"derived":false},{"id":194,"eClass":"EGenericType"},{"id":195,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"eClass","lowerBound":0,"id":196,"many":false,"required":false,"eClass":"EParameter"},{"id":197,"eClass":"EGenericType"},{"id":198,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"eDataType","lowerBound":0,"id":199,"many":false,"required":false,"eClass":"EParameter"},{"ordered":true,"upperBound":1,"unique":true,"name":"literalValue","lowerBound":0,"id":200,"many":false,"required":false,"eClass":"EParameter"},{"id":201,"eClass":"EGenericType"},{"id":202,"eClass":"EGenericType"},{"id":203,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"eDataType","lowerBound":0,"id":204,"many":false,"required":false,"eClass":"EParameter"},{"ordered":true,"upperBound":1,"unique":true,"name":"instanceValue","lowerBound":0,"id":205,"many":false,"required":false,"eClass":"EParameter"},{"id":206,"eClass":"EGenericType"},{"id":207,"eClass":"EGenericType"},{"id":208,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"eFactoryInstance","changeable":true,"resolveProxies":false,"lowerBound":1,"id":209,"derived":false},{"ordered":true,"upperBound":1,"unique":true,"name":"getEAnnotation","lowerBound":0,"id":210,"many":false,"required":false,"eClass":"EOperation"},{"id":211,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"source","lowerBound":0,"id":212,"many":false,"required":false,"eClass":"EParameter"},{"id":213,"eClass":"EGenericType"},{"id":214,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":215,"derived":false},{"id":216,"eClass":"EGenericType"},{"id":217,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"eClass","lowerBound":0,"id":218,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"eIsProxy","lowerBound":0,"id":219,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"eResource","lowerBound":0,"id":220,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"eContainer","lowerBound":0,"id":221,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"eContainingFeature","lowerBound":0,"id":222,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"eContainmentFeature","lowerBound":0,"id":223,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"eContents","lowerBound":0,"id":224,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"eAllContents","lowerBound":0,"id":225,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"eCrossReferences","lowerBound":0,"id":226,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"eGet","lowerBound":0,"id":227,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"eGet","lowerBound":0,"id":228,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"eSet","lowerBound":0,"id":229,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"eIsSet","lowerBound":0,"id":230,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"eUnset","lowerBound":0,"id":231,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"eInvoke","lowerBound":0,"id":232,"many":false,"required":false,"eClass":"EOperation"},{"id":233,"eClass":"EGenericType"},{"id":234,"eClass":"EGenericType"},{"id":235,"eClass":"EGenericType"},{"id":236,"eClass":"EGenericType"},{"id":237,"eClass":"EGenericType"},{"id":238,"eClass":"EGenericType"},{"id":239,"eClass":"EGenericType"},{"id":240,"eClass":"EGenericType"},{"id":241,"eClass":"EGenericType"},{"id":242,"eClass":"EGenericType"},{"id":243,"eClass":"EGenericType"},{"id":244,"eClass":"EGenericType"},{"id":245,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"feature","lowerBound":0,"id":246,"many":false,"required":false,"eClass":"EParameter"},{"id":247,"eClass":"EGenericType"},{"id":248,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"feature","lowerBound":0,"id":249,"many":false,"required":false,"eClass":"EParameter"},{"ordered":true,"upperBound":1,"unique":true,"name":"resolve","lowerBound":0,"id":250,"many":false,"required":false,"eClass":"EParameter"},{"id":251,"eClass":"EGenericType"},{"id":252,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"feature","lowerBound":0,"id":253,"many":false,"required":false,"eClass":"EParameter"},{"ordered":true,"upperBound":1,"unique":true,"name":"newValue","lowerBound":0,"id":254,"many":false,"required":false,"eClass":"EParameter"},{"id":255,"eClass":"EGenericType"},{"id":256,"eClass":"EGenericType"},{"id":257,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"feature","lowerBound":0,"id":258,"many":false,"required":false,"eClass":"EParameter"},{"id":259,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"feature","lowerBound":0,"id":260,"many":false,"required":false,"eClass":"EParameter"},{"id":261,"eClass":"EGenericType"},{"id":262,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"operation","lowerBound":0,"id":263,"many":false,"required":false,"eClass":"EParameter"},{"ordered":true,"upperBound":1,"unique":true,"name":"arguments","lowerBound":0,"id":264,"many":false,"required":false,"eClass":"EParameter"},{"id":265,"eClass":"EGenericType"},{"id":266,"eClass":"EGenericType"},{"id":267,"eClass":"EGenericType"},{"id":268,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"getOperationID","lowerBound":0,"id":269,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"isOverrideOf","lowerBound":0,"id":270,"many":false,"required":false,"eClass":"EOperation"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"eTypeParameters","changeable":true,"resolveProxies":true,"lowerBound":0,"id":271,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"eParameters","changeable":true,"resolveProxies":false,"lowerBound":0,"id":272,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":true,"transient":false,"unique":true,"name":"eExceptions","changeable":true,"resolveProxies":true,"lowerBound":0,"id":273,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":true,"transient":false,"unique":true,"name":"eGenericExceptions","changeable":true,"resolveProxies":false,"lowerBound":0,"id":274,"derived":false},{"id":275,"eClass":"EGenericType"},{"id":276,"eClass":"EGenericType"},{"id":277,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"someOperation","lowerBound":0,"id":278,"many":false,"required":false,"eClass":"EParameter"},{"id":279,"eClass":"EGenericType"},{"id":280,"eClass":"EGenericType"},{"id":281,"eClass":"EGenericType"},{"id":282,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"eOperation","changeable":false,"resolveProxies":false,"lowerBound":0,"id":283,"derived":false},{"id":284,"eClass":"EGenericType"},{"id":285,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"getEClassifier","lowerBound":0,"id":286,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"nsURI","changeable":true,"lowerBound":0,"iD":false,"id":287,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"nsPrefix","changeable":true,"lowerBound":0,"iD":false,"id":288,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"eSubpackages","changeable":true,"resolveProxies":true,"lowerBound":0,"id":289,"derived":false},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"eSuperPackage","changeable":false,"resolveProxies":true,"lowerBound":0,"id":290,"derived":false},{"id":291,"eClass":"EGenericType"},{"id":292,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"name","lowerBound":0,"id":293,"many":false,"required":false,"eClass":"EParameter"},{"id":294,"eClass":"EGenericType"},{"id":295,"eClass":"EGenericType"},{"id":296,"eClass":"EGenericType"},{"id":297,"eClass":"EGenericType"},{"id":298,"eClass":"EGenericType"},{"id":299,"eClass":"EGenericType"},{"id":300,"eClass":"EGenericType"},{"id":301,"eClass":"EGenericType"},{"id":302,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"containment","changeable":true,"lowerBound":0,"iD":false,"id":303,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":true,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":true,"unique":true,"name":"container","changeable":false,"lowerBound":0,"iD":false,"id":304,"derived":true},{"ordered":true,"upperBound":1,"defaultValue":true,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"true","unsettable":false,"transient":false,"unique":true,"name":"resolveProxies","changeable":true,"lowerBound":0,"iD":false,"id":305,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"eOpposite","changeable":true,"resolveProxies":true,"lowerBound":0,"id":306,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":true,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"eReferenceType","changeable":false,"resolveProxies":true,"lowerBound":1,"id":307,"derived":true},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"eKeys","changeable":true,"resolveProxies":true,"lowerBound":0,"id":308,"derived":false},{"id":309,"eClass":"EGenericType"},{"id":310,"eClass":"EGenericType"},{"id":311,"eClass":"EGenericType"},{"id":312,"eClass":"EGenericType"},{"id":313,"eClass":"EGenericType"},{"id":314,"eClass":"EGenericType"},{"id":315,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"getFeatureID","lowerBound":0,"id":316,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getContainerClass","lowerBound":0,"id":317,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"defaultValue":true,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"true","unsettable":false,"transient":false,"unique":true,"name":"changeable","changeable":true,"lowerBound":0,"iD":false,"id":318,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"volatile","changeable":true,"lowerBound":0,"iD":false,"id":319,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"transient","changeable":true,"lowerBound":0,"iD":false,"id":320,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"defaultValueLiteral","changeable":true,"lowerBound":0,"iD":false,"id":321,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":true,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":true,"unique":true,"name":"defaultValue","changeable":false,"lowerBound":0,"iD":false,"id":322,"derived":true},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"unsettable","changeable":true,"lowerBound":0,"iD":false,"id":323,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"derived","changeable":true,"lowerBound":0,"iD":false,"id":324,"derived":false},{"id":325,"eClass":"EGenericType"},{"id":326,"eClass":"EGenericType"},{"id":327,"eClass":"EGenericType"},{"id":328,"eClass":"EGenericType"},{"id":329,"eClass":"EGenericType"},{"id":330,"eClass":"EGenericType"},{"id":331,"eClass":"EGenericType"},{"id":332,"eClass":"EGenericType"},{"id":333,"eClass":"EGenericType"},{"id":334,"eClass":"EGenericType"},{"id":335,"eClass":"EGenericType"},{"id":336,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":true,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"true","unsettable":false,"transient":false,"unique":true,"name":"ordered","changeable":true,"lowerBound":0,"iD":false,"id":337,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":true,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"true","unsettable":false,"transient":false,"unique":true,"name":"unique","changeable":true,"lowerBound":0,"iD":false,"id":338,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"lowerBound","changeable":true,"lowerBound":0,"iD":false,"id":339,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"1","unsettable":false,"transient":false,"unique":true,"name":"upperBound","changeable":true,"lowerBound":0,"iD":false,"id":340,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":true,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":true,"unique":true,"name":"many","changeable":false,"lowerBound":0,"iD":false,"id":341,"derived":true},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":true,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":true,"unique":true,"name":"required","changeable":false,"lowerBound":0,"iD":false,"id":342,"derived":true},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":true,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":true,"transient":false,"unique":true,"name":"eType","changeable":true,"resolveProxies":true,"lowerBound":0,"id":343,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":true,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":true,"transient":false,"unique":true,"name":"eGenericType","changeable":true,"resolveProxies":false,"lowerBound":0,"id":344,"derived":false},{"id":345,"eClass":"EGenericType"},{"id":346,"eClass":"EGenericType"},{"id":347,"eClass":"EGenericType"},{"id":348,"eClass":"EGenericType"},{"id":349,"eClass":"EGenericType"},{"id":350,"eClass":"EGenericType"},{"id":351,"eClass":"EGenericType"},{"id":352,"eClass":"EGenericType"},{"id":353,"eClass":"EGenericType"},{"name":"E","id":354,"eClass":"ETypeParameter"},{"name":"T","id":355,"eClass":"ETypeParameter"},{"name":"K","id":356,"eClass":"ETypeParameter"},{"name":"V","id":357,"eClass":"ETypeParameter"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"key","changeable":true,"lowerBound":0,"iD":false,"id":358,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":0,"iD":false,"id":359,"derived":false},{"id":360,"eClass":"EGenericType"},{"id":361,"eClass":"EGenericType"},{"name":"E","id":362,"eClass":"ETypeParameter"},{"ordered":true,"upperBound":1,"unique":true,"name":"isInstance","lowerBound":0,"id":363,"many":false,"required":false,"eClass":"EOperation"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"eUpperBound","changeable":true,"resolveProxies":false,"lowerBound":0,"id":364,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"eTypeArguments","changeable":true,"resolveProxies":false,"lowerBound":0,"id":365,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"eRawType","changeable":false,"resolveProxies":true,"lowerBound":1,"id":366,"derived":true},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"eLowerBound","changeable":true,"resolveProxies":false,"lowerBound":0,"id":367,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"eTypeParameter","changeable":true,"resolveProxies":false,"lowerBound":0,"id":368,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"eClassifier","changeable":true,"resolveProxies":true,"lowerBound":0,"id":369,"derived":false},{"id":370,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"object","lowerBound":0,"id":371,"many":false,"required":false,"eClass":"EParameter"},{"id":372,"eClass":"EGenericType"},{"id":373,"eClass":"EGenericType"},{"id":374,"eClass":"EGenericType"},{"id":375,"eClass":"EGenericType"},{"id":376,"eClass":"EGenericType"},{"id":377,"eClass":"EGenericType"},{"id":378,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"eBounds","changeable":true,"resolveProxies":false,"lowerBound":0,"id":379,"derived":false},{"id":380,"eClass":"EGenericType"},{"id":381,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":0,"target":8},{"source":0,"target":9},{"source":0,"target":10},{"source":0,"target":11},{"source":0,"target":12},{"source":0,"target":13},{"source":0,"target":14},{"source":0,"target":15},{"source":0,"target":16},{"source":0,"target":17},{"source":0,"target":18},{"source":0,"target":19},{"source":0,"target":20},{"source":0,"target":21},{"source":0,"target":22},{"source":0,"target":23},{"source":0,"target":24},{"source":0,"target":25},{"source":0,"target":26},{"source":0,"target":27},{"source":0,"target":28},{"source":0,"target":29},{"source":0,"target":30},{"source":0,"target":31},{"source":0,"target":32},{"source":0,"target":33},{"source":0,"target":34},{"source":0,"target":35},{"source":0,"target":36},{"source":0,"target":37},{"source":0,"target":38},{"source":0,"target":39},{"source":0,"target":40},{"source":0,"target":41},{"source":0,"target":42},{"source":0,"target":43},{"source":0,"target":44},{"source":0,"target":45},{"source":0,"target":46},{"source":0,"target":47},{"source":0,"target":48},{"source":0,"target":49},{"source":0,"target":50},{"source":0,"target":51},{"source":0,"target":52},{"source":0,"target":53},{"source":1,"target":0},{"source":1,"target":16},{"source":1,"target":54},{"source":1,"target":55},{"source":1,"target":56},{"source":54,"target":20},{"source":54,"target":57},{"source":54,"target":1},{"source":57,"target":20},{"source":55,"target":5},{"source":55,"target":58},{"source":55,"target":1},{"source":58,"target":5},{"source":56,"target":16},{"source":2,"target":0},{"source":2,"target":9},{"source":2,"target":59},{"source":2,"target":60},{"source":2,"target":61},{"source":2,"target":62},{"source":2,"target":63},{"source":2,"target":64},{"source":59,"target":48},{"source":59,"target":65},{"source":59,"target":2},{"source":65,"target":48},{"source":60,"target":49},{"source":60,"target":66},{"source":60,"target":2},{"source":66,"target":49},{"source":61,"target":9},{"source":61,"target":67},{"source":61,"target":2},{"source":61,"target":68},{"source":67,"target":9},{"source":62,"target":11},{"source":62,"target":69},{"source":62,"target":2},{"source":69,"target":11},{"source":63,"target":11},{"source":63,"target":70},{"source":63,"target":2},{"source":70,"target":11},{"source":64,"target":9},{"source":3,"target":0},{"source":3,"target":4},{"source":3,"target":71},{"source":3,"target":72},{"source":3,"target":73},{"source":3,"target":74},{"source":3,"target":75},{"source":3,"target":76},{"source":3,"target":77},{"source":3,"target":78},{"source":3,"target":79},{"source":3,"target":80},{"source":3,"target":81},{"source":3,"target":82},{"source":3,"target":83},{"source":3,"target":84},{"source":3,"target":85},{"source":3,"target":86},{"source":3,"target":87},{"source":3,"target":88},{"source":3,"target":89},{"source":3,"target":90},{"source":3,"target":91},{"source":3,"target":92},{"source":3,"target":93},{"source":3,"target":94},{"source":3,"target":95},{"source":3,"target":96},{"source":3,"target":97},{"source":71,"target":20},{"source":71,"target":98},{"source":71,"target":3},{"source":71,"target":99},{"source":98,"target":20},{"source":99,"target":3},{"source":99,"target":100},{"source":99,"target":71},{"source":100,"target":3},{"source":72,"target":37},{"source":72,"target":101},{"source":72,"target":3},{"source":101,"target":37},{"source":73,"target":16},{"source":73,"target":102},{"source":73,"target":3},{"source":73,"target":103},{"source":102,"target":16},{"source":103,"target":37},{"source":103,"target":104},{"source":103,"target":73},{"source":104,"target":37},{"source":74,"target":37},{"source":74,"target":105},{"source":74,"target":3},{"source":74,"target":106},{"source":105,"target":37},{"source":106,"target":16},{"source":106,"target":107},{"source":106,"target":74},{"source":107,"target":16},{"source":75,"target":16},{"source":75,"target":108},{"source":75,"target":3},{"source":75,"target":109},{"source":108,"target":16},{"source":109,"target":48},{"source":109,"target":110},{"source":109,"target":75},{"source":110,"target":48},{"source":76,"target":37},{"source":76,"target":111},{"source":76,"target":3},{"source":111,"target":37},{"source":77,"target":12},{"source":77,"target":112},{"source":77,"target":3},{"source":77,"target":113},{"source":112,"target":12},{"source":113,"target":37},{"source":113,"target":114},{"source":113,"target":77},{"source":114,"target":37},{"source":78,"target":37},{"source":78,"target":115},{"source":78,"target":3},{"source":78,"target":116},{"source":115,"target":37},{"source":116,"target":12},{"source":116,"target":117},{"source":116,"target":78},{"source":117,"target":12},{"source":79,"target":12},{"source":79,"target":118},{"source":79,"target":3},{"source":79,"target":119},{"source":118,"target":12},{"source":119,"target":12},{"source":119,"target":120},{"source":119,"target":79},{"source":120,"target":12},{"source":80,"target":51},{"source":80,"target":121},{"source":80,"target":3},{"source":80,"target":122},{"source":121,"target":51},{"source":122,"target":16},{"source":122,"target":123},{"source":122,"target":80},{"source":123,"target":16},{"source":81,"target":20},{"source":81,"target":124},{"source":81,"target":3},{"source":124,"target":20},{"source":82,"target":20},{"source":82,"target":125},{"source":82,"target":3},{"source":125,"target":20},{"source":83,"target":3},{"source":83,"target":126},{"source":83,"target":3},{"source":126,"target":3},{"source":84,"target":12},{"source":84,"target":127},{"source":84,"target":3},{"source":84,"target":128},{"source":127,"target":12},{"source":85,"target":1},{"source":85,"target":129},{"source":85,"target":3},{"source":129,"target":1},{"source":86,"target":15},{"source":86,"target":130},{"source":86,"target":3},{"source":130,"target":15},{"source":87,"target":15},{"source":87,"target":131},{"source":87,"target":3},{"source":131,"target":15},{"source":88,"target":1},{"source":88,"target":132},{"source":88,"target":3},{"source":132,"target":1},{"source":89,"target":15},{"source":89,"target":133},{"source":89,"target":3},{"source":133,"target":15},{"source":90,"target":12},{"source":90,"target":134},{"source":90,"target":3},{"source":134,"target":12},{"source":91,"target":16},{"source":91,"target":135},{"source":91,"target":3},{"source":135,"target":16},{"source":92,"target":3},{"source":92,"target":136},{"source":92,"target":3},{"source":136,"target":3},{"source":93,"target":1},{"source":93,"target":137},{"source":93,"target":3},{"source":137,"target":1},{"source":94,"target":16},{"source":94,"target":138},{"source":94,"target":3},{"source":94,"target":139},{"source":138,"target":16},{"source":95,"target":51},{"source":95,"target":140},{"source":95,"target":3},{"source":140,"target":51},{"source":96,"target":51},{"source":96,"target":141},{"source":96,"target":3},{"source":141,"target":51},{"source":97,"target":4},{"source":4,"target":0},{"source":4,"target":10},{"source":4,"target":142},{"source":4,"target":143},{"source":4,"target":144},{"source":4,"target":145},{"source":4,"target":146},{"source":4,"target":147},{"source":4,"target":148},{"source":4,"target":149},{"source":4,"target":150},{"source":142,"target":20},{"source":142,"target":151},{"source":142,"target":4},{"source":142,"target":152},{"source":151,"target":20},{"source":152,"target":40},{"source":152,"target":153},{"source":152,"target":142},{"source":153,"target":40},{"source":143,"target":37},{"source":143,"target":154},{"source":143,"target":4},{"source":154,"target":37},{"source":144,"target":48},{"source":144,"target":155},{"source":144,"target":4},{"source":155,"target":48},{"source":145,"target":39},{"source":145,"target":156},{"source":145,"target":4},{"source":156,"target":157},{"source":156,"target":39},{"source":146,"target":40},{"source":146,"target":158},{"source":146,"target":4},{"source":158,"target":40},{"source":147,"target":48},{"source":147,"target":159},{"source":147,"target":4},{"source":159,"target":48},{"source":148,"target":13},{"source":148,"target":160},{"source":148,"target":4},{"source":148,"target":161},{"source":160,"target":13},{"source":149,"target":52},{"source":149,"target":162},{"source":149,"target":4},{"source":162,"target":52},{"source":150,"target":10},{"source":5,"target":0},{"source":5,"target":4},{"source":5,"target":163},{"source":5,"target":164},{"source":163,"target":20},{"source":163,"target":165},{"source":163,"target":5},{"source":165,"target":20},{"source":164,"target":4},{"source":6,"target":0},{"source":6,"target":5},{"source":6,"target":166},{"source":6,"target":167},{"source":6,"target":168},{"source":6,"target":169},{"source":6,"target":170},{"source":166,"target":7},{"source":166,"target":171},{"source":166,"target":6},{"source":166,"target":172},{"source":171,"target":7},{"source":172,"target":48},{"source":172,"target":173},{"source":172,"target":166},{"source":173,"target":48},{"source":167,"target":7},{"source":167,"target":174},{"source":167,"target":6},{"source":167,"target":175},{"source":174,"target":7},{"source":175,"target":37},{"source":175,"target":176},{"source":175,"target":167},{"source":176,"target":37},{"source":168,"target":7},{"source":168,"target":177},{"source":168,"target":6},{"source":168,"target":178},{"source":177,"target":7},{"source":178,"target":48},{"source":178,"target":179},{"source":178,"target":168},{"source":179,"target":48},{"source":169,"target":7},{"source":169,"target":180},{"source":169,"target":6},{"source":169,"target":181},{"source":180,"target":7},{"source":170,"target":5},{"source":7,"target":0},{"source":7,"target":10},{"source":7,"target":182},{"source":7,"target":183},{"source":7,"target":184},{"source":7,"target":181},{"source":7,"target":185},{"source":182,"target":37},{"source":182,"target":186},{"source":182,"target":7},{"source":186,"target":37},{"source":183,"target":32},{"source":183,"target":187},{"source":183,"target":7},{"source":187,"target":32},{"source":184,"target":48},{"source":184,"target":188},{"source":184,"target":7},{"source":188,"target":48},{"source":181,"target":6},{"source":181,"target":189},{"source":181,"target":7},{"source":181,"target":169},{"source":189,"target":6},{"source":185,"target":10},{"source":8,"target":0},{"source":8,"target":9},{"source":8,"target":190},{"source":8,"target":191},{"source":8,"target":192},{"source":8,"target":193},{"source":8,"target":194},{"source":190,"target":11},{"source":190,"target":195},{"source":190,"target":8},{"source":190,"target":196},{"source":195,"target":11},{"source":196,"target":3},{"source":196,"target":197},{"source":196,"target":190},{"source":197,"target":3},{"source":191,"target":40},{"source":191,"target":198},{"source":191,"target":8},{"source":191,"target":199},{"source":191,"target":200},{"source":198,"target":40},{"source":199,"target":5},{"source":199,"target":201},{"source":199,"target":191},{"source":201,"target":5},{"source":200,"target":48},{"source":200,"target":202},{"source":200,"target":191},{"source":202,"target":48},{"source":192,"target":48},{"source":192,"target":203},{"source":192,"target":8},{"source":192,"target":204},{"source":192,"target":205},{"source":203,"target":48},{"source":204,"target":5},{"source":204,"target":206},{"source":204,"target":192},{"source":206,"target":5},{"source":205,"target":40},{"source":205,"target":207},{"source":205,"target":192},{"source":207,"target":40},{"source":193,"target":13},{"source":193,"target":208},{"source":193,"target":8},{"source":193,"target":209},{"source":208,"target":13},{"source":194,"target":9},{"source":9,"target":0},{"source":9,"target":210},{"source":9,"target":68},{"source":210,"target":2},{"source":210,"target":211},{"source":210,"target":9},{"source":210,"target":212},{"source":211,"target":2},{"source":212,"target":48},{"source":212,"target":213},{"source":212,"target":210},{"source":213,"target":48},{"source":68,"target":2},{"source":68,"target":214},{"source":68,"target":9},{"source":68,"target":61},{"source":214,"target":2},{"source":10,"target":0},{"source":10,"target":9},{"source":10,"target":215},{"source":10,"target":216},{"source":215,"target":48},{"source":215,"target":217},{"source":215,"target":10},{"source":217,"target":48},{"source":216,"target":9},{"source":11,"target":0},{"source":11,"target":218},{"source":11,"target":219},{"source":11,"target":220},{"source":11,"target":221},{"source":11,"target":222},{"source":11,"target":223},{"source":11,"target":224},{"source":11,"target":225},{"source":11,"target":226},{"source":11,"target":227},{"source":11,"target":228},{"source":11,"target":229},{"source":11,"target":230},{"source":11,"target":231},{"source":11,"target":232},{"source":218,"target":3},{"source":218,"target":233},{"source":218,"target":11},{"source":233,"target":3},{"source":219,"target":20},{"source":219,"target":234},{"source":219,"target":11},{"source":234,"target":20},{"source":220,"target":44},{"source":220,"target":235},{"source":220,"target":11},{"source":235,"target":44},{"source":221,"target":11},{"source":221,"target":236},{"source":221,"target":11},{"source":236,"target":11},{"source":222,"target":16},{"source":222,"target":237},{"source":222,"target":11},{"source":237,"target":16},{"source":223,"target":15},{"source":223,"target":238},{"source":223,"target":11},{"source":238,"target":15},{"source":224,"target":31},{"source":224,"target":239},{"source":224,"target":11},{"source":239,"target":240},{"source":239,"target":31},{"source":240,"target":11},{"source":225,"target":50},{"source":225,"target":241},{"source":225,"target":11},{"source":241,"target":242},{"source":241,"target":50},{"source":242,"target":11},{"source":226,"target":31},{"source":226,"target":243},{"source":226,"target":11},{"source":243,"target":244},{"source":243,"target":31},{"source":244,"target":11},{"source":227,"target":40},{"source":227,"target":245},{"source":227,"target":11},{"source":227,"target":246},{"source":245,"target":40},{"source":246,"target":16},{"source":246,"target":247},{"source":246,"target":227},{"source":247,"target":16},{"source":228,"target":40},{"source":228,"target":248},{"source":228,"target":11},{"source":228,"target":249},{"source":228,"target":250},{"source":248,"target":40},{"source":249,"target":16},{"source":249,"target":251},{"source":249,"target":228},{"source":251,"target":16},{"source":250,"target":20},{"source":250,"target":252},{"source":250,"target":228},{"source":252,"target":20},{"source":229,"target":11},{"source":229,"target":253},{"source":229,"target":254},{"source":253,"target":16},{"source":253,"target":255},{"source":253,"target":229},{"source":255,"target":16},{"source":254,"target":40},{"source":254,"target":256},{"source":254,"target":229},{"source":256,"target":40},{"source":230,"target":20},{"source":230,"target":257},{"source":230,"target":11},{"source":230,"target":258},{"source":257,"target":20},{"source":258,"target":16},{"source":258,"target":259},{"source":258,"target":230},{"source":259,"target":16},{"source":231,"target":11},{"source":231,"target":260},{"source":260,"target":16},{"source":260,"target":261},{"source":260,"target":231},{"source":261,"target":16},{"source":232,"target":40},{"source":232,"target":262},{"source":232,"target":11},{"source":232,"target":263},{"source":232,"target":264},{"source":232,"target":53},{"source":232,"target":265},{"source":262,"target":40},{"source":263,"target":12},{"source":263,"target":266},{"source":263,"target":232},{"source":266,"target":12},{"source":264,"target":31},{"source":264,"target":267},{"source":264,"target":232},{"source":267,"target":268},{"source":267,"target":31},{"source":265,"target":53},{"source":12,"target":0},{"source":12,"target":17},{"source":12,"target":269},{"source":12,"target":270},{"source":12,"target":128},{"source":12,"target":271},{"source":12,"target":272},{"source":12,"target":273},{"source":12,"target":274},{"source":12,"target":275},{"source":269,"target":37},{"source":269,"target":276},{"source":269,"target":12},{"source":276,"target":37},{"source":270,"target":20},{"source":270,"target":277},{"source":270,"target":12},{"source":270,"target":278},{"source":277,"target":20},{"source":278,"target":12},{"source":278,"target":279},{"source":278,"target":270},{"source":279,"target":12},{"source":128,"target":3},{"source":128,"target":280},{"source":128,"target":12},{"source":128,"target":84},{"source":280,"target":3},{"source":271,"target":52},{"source":271,"target":281},{"source":271,"target":12},{"source":281,"target":52},{"source":272,"target":14},{"source":272,"target":282},{"source":272,"target":12},{"source":272,"target":283},{"source":282,"target":14},{"source":273,"target":4},{"source":273,"target":284},{"source":273,"target":12},{"source":284,"target":4},{"source":274,"target":51},{"source":274,"target":285},{"source":274,"target":12},{"source":285,"target":51},{"source":275,"target":17},{"source":13,"target":0},{"source":13,"target":10},{"source":13,"target":286},{"source":13,"target":287},{"source":13,"target":288},{"source":13,"target":209},{"source":13,"target":161},{"source":13,"target":289},{"source":13,"target":290},{"source":13,"target":291},{"source":286,"target":4},{"source":286,"target":292},{"source":286,"target":13},{"source":286,"target":293},{"source":292,"target":4},{"source":293,"target":48},{"source":293,"target":294},{"source":293,"target":286},{"source":294,"target":48},{"source":287,"target":48},{"source":287,"target":295},{"source":287,"target":13},{"source":295,"target":48},{"source":288,"target":48},{"source":288,"target":296},{"source":288,"target":13},{"source":296,"target":48},{"source":209,"target":8},{"source":209,"target":297},{"source":209,"target":13},{"source":209,"target":193},{"source":297,"target":8},{"source":161,"target":4},{"source":161,"target":298},{"source":161,"target":13},{"source":161,"target":148},{"source":298,"target":4},{"source":289,"target":13},{"source":289,"target":299},{"source":289,"target":13},{"source":289,"target":290},{"source":299,"target":13},{"source":290,"target":13},{"source":290,"target":300},{"source":290,"target":13},{"source":290,"target":289},{"source":300,"target":13},{"source":291,"target":10},{"source":14,"target":0},{"source":14,"target":17},{"source":14,"target":283},{"source":14,"target":301},{"source":283,"target":12},{"source":283,"target":302},{"source":283,"target":14},{"source":283,"target":272},{"source":302,"target":12},{"source":301,"target":17},{"source":15,"target":0},{"source":15,"target":16},{"source":15,"target":303},{"source":15,"target":304},{"source":15,"target":305},{"source":15,"target":306},{"source":15,"target":307},{"source":15,"target":308},{"source":15,"target":309},{"source":303,"target":20},{"source":303,"target":310},{"source":303,"target":15},{"source":310,"target":20},{"source":304,"target":20},{"source":304,"target":311},{"source":304,"target":15},{"source":311,"target":20},{"source":305,"target":20},{"source":305,"target":312},{"source":305,"target":15},{"source":312,"target":20},{"source":306,"target":15},{"source":306,"target":313},{"source":306,"target":15},{"source":313,"target":15},{"source":307,"target":3},{"source":307,"target":314},{"source":307,"target":15},{"source":314,"target":3},{"source":308,"target":1},{"source":308,"target":315},{"source":308,"target":15},{"source":315,"target":1},{"source":309,"target":16},{"source":16,"target":0},{"source":16,"target":17},{"source":16,"target":316},{"source":16,"target":317},{"source":16,"target":318},{"source":16,"target":319},{"source":16,"target":320},{"source":16,"target":321},{"source":16,"target":322},{"source":16,"target":323},{"source":16,"target":324},{"source":16,"target":139},{"source":16,"target":325},{"source":316,"target":37},{"source":316,"target":326},{"source":316,"target":16},{"source":326,"target":37},{"source":317,"target":39},{"source":317,"target":327},{"source":317,"target":16},{"source":327,"target":328},{"source":327,"target":39},{"source":318,"target":20},{"source":318,"target":329},{"source":318,"target":16},{"source":329,"target":20},{"source":319,"target":20},{"source":319,"target":330},{"source":319,"target":16},{"source":330,"target":20},{"source":320,"target":20},{"source":320,"target":331},{"source":320,"target":16},{"source":331,"target":20},{"source":321,"target":48},{"source":321,"target":332},{"source":321,"target":16},{"source":332,"target":48},{"source":322,"target":40},{"source":322,"target":333},{"source":322,"target":16},{"source":333,"target":40},{"source":323,"target":20},{"source":323,"target":334},{"source":323,"target":16},{"source":334,"target":20},{"source":324,"target":20},{"source":324,"target":335},{"source":324,"target":16},{"source":335,"target":20},{"source":139,"target":3},{"source":139,"target":336},{"source":139,"target":16},{"source":139,"target":94},{"source":336,"target":3},{"source":325,"target":17},{"source":17,"target":0},{"source":17,"target":10},{"source":17,"target":337},{"source":17,"target":338},{"source":17,"target":339},{"source":17,"target":340},{"source":17,"target":341},{"source":17,"target":342},{"source":17,"target":343},{"source":17,"target":344},{"source":17,"target":345},{"source":337,"target":20},{"source":337,"target":346},{"source":337,"target":17},{"source":346,"target":20},{"source":338,"target":20},{"source":338,"target":347},{"source":338,"target":17},{"source":347,"target":20},{"source":339,"target":37},{"source":339,"target":348},{"source":339,"target":17},{"source":348,"target":37},{"source":340,"target":37},{"source":340,"target":349},{"source":340,"target":17},{"source":349,"target":37},{"source":341,"target":20},{"source":341,"target":350},{"source":341,"target":17},{"source":350,"target":20},{"source":342,"target":20},{"source":342,"target":351},{"source":342,"target":17},{"source":351,"target":20},{"source":343,"target":4},{"source":343,"target":352},{"source":343,"target":17},{"source":352,"target":4},{"source":344,"target":51},{"source":344,"target":353},{"source":344,"target":17},{"source":353,"target":51},{"source":345,"target":10},{"source":18,"target":0},{"source":19,"target":0},{"source":20,"target":0},{"source":21,"target":0},{"source":22,"target":0},{"source":23,"target":0},{"source":24,"target":0},{"source":25,"target":0},{"source":26,"target":0},{"source":27,"target":0},{"source":28,"target":0},{"source":29,"target":0},{"source":30,"target":0},{"source":31,"target":0},{"source":31,"target":354},{"source":32,"target":0},{"source":33,"target":0},{"source":34,"target":0},{"source":35,"target":0},{"source":36,"target":0},{"source":37,"target":0},{"source":38,"target":0},{"source":39,"target":0},{"source":39,"target":355},{"source":40,"target":0},{"source":41,"target":0},{"source":42,"target":0},{"source":43,"target":0},{"source":43,"target":356},{"source":43,"target":357},{"source":44,"target":0},{"source":45,"target":0},{"source":46,"target":0},{"source":47,"target":0},{"source":48,"target":0},{"source":49,"target":0},{"source":49,"target":358},{"source":49,"target":359},{"source":358,"target":48},{"source":358,"target":360},{"source":358,"target":49},{"source":360,"target":48},{"source":359,"target":48},{"source":359,"target":361},{"source":359,"target":49},{"source":361,"target":48},{"source":50,"target":0},{"source":50,"target":362},{"source":51,"target":0},{"source":51,"target":363},{"source":51,"target":364},{"source":51,"target":365},{"source":51,"target":366},{"source":51,"target":367},{"source":51,"target":368},{"source":51,"target":369},{"source":363,"target":20},{"source":363,"target":370},{"source":363,"target":51},{"source":363,"target":371},{"source":370,"target":20},{"source":371,"target":40},{"source":371,"target":372},{"source":371,"target":363},{"source":372,"target":40},{"source":364,"target":51},{"source":364,"target":373},{"source":364,"target":51},{"source":373,"target":51},{"source":365,"target":51},{"source":365,"target":374},{"source":365,"target":51},{"source":374,"target":51},{"source":366,"target":4},{"source":366,"target":375},{"source":366,"target":51},{"source":375,"target":4},{"source":367,"target":51},{"source":367,"target":376},{"source":367,"target":51},{"source":376,"target":51},{"source":368,"target":52},{"source":368,"target":377},{"source":368,"target":51},{"source":377,"target":52},{"source":369,"target":4},{"source":369,"target":378},{"source":369,"target":51},{"source":378,"target":4},{"source":52,"target":0},{"source":52,"target":10},{"source":52,"target":379},{"source":52,"target":380},{"source":379,"target":51},{"source":379,"target":381},{"source":379,"target":52},{"source":381,"target":51},{"source":380,"target":10},{"source":53,"target":0}],"multigraph":true} |
false | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="myAtl" nsURI="http://www.xtext.org/example/mydsl/MyAtl" nsPrefix="myAtl">
<eClassifiers xsi:type="ecore:EClass" name="Module">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="outModels" upperBound="-1"
eType="#//NameExpCS" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="inModels" upperBound="-1"
eType="#//NameExpCS" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="varName" eType="#//NameExpCS"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="elements" upperBound="-1"
eType="#//ModuleElement" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ModuleElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="MatchedRule" eSuperTypes="#//ModuleElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="inPattern" eType="#//InPattern"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="variables" upperBound="-1"
eType="#//RuleVariableDeclaration" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="outPattern" eType="#//OutPattern"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="actionBlock" eType="#//ActionBlock"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CalledRule" eSuperTypes="#//ModuleElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="variables" upperBound="-1"
eType="#//RuleVariableDeclaration" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="outPattern" eType="#//OutPattern"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="actionBlock" eType="#//ActionBlock"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="QueryRule" eSuperTypes="#//ModuleElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="parameters" upperBound="-1"
eType="#//ATLParameterCS" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="initExpression" eType="#//ExpCS"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Helper" eSuperTypes="#//ModuleElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="definition" eType="#//ATLDefCS"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ATLDefCS">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="varName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="parameters" upperBound="-1"
eType="#//ATLParameterCS" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="type" eType="#//ATLType"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="initExpression" eType="#//ExpCS"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ATLParameterCS">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="varName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="type" eType="#//ATLType"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="RuleVariableDeclaration">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="varName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="type" eType="#//ATLType"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="initExpression" eType="#//ExpCS"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="InPattern">
<eStructuralFeatures xsi:type="ecore:EReference" name="elements" upperBound="-1"
eType="#//InPatternElement" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="filter" eType="#//ExpCS"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="InPatternElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="varName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="type" eType="#//ATLType"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="OutPattern">
<eStructuralFeatures xsi:type="ecore:EReference" name="elements" upperBound="-1"
eType="#//OutPatternElement" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="OutPatternElement"/>
<eClassifiers xsi:type="ecore:EClass" name="SimpleOutPatternElement" eSuperTypes="#//OutPatternElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="varName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="type" eType="#//ATLType"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="bindings" upperBound="-1"
eType="#//Binding" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ForEachOutPatternElement" eSuperTypes="#//OutPatternElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="collection" eType="#//ExpCS"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Binding">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="propertyName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="value" eType="#//ExpCS"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ActionBlock">
<eStructuralFeatures xsi:type="ecore:EReference" name="statements" upperBound="-1"
eType="#//Statement" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Statement"/>
<eClassifiers xsi:type="ecore:EClass" name="BindingStat" eSuperTypes="#//Statement">
<eStructuralFeatures xsi:type="ecore:EReference" name="source" eType="#//ExpCS"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="propertyName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="value" eType="#//ExpCS"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ATLType">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="modelName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="type" eType="#//TypeExpCS"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CollectionTypeCS" eSuperTypes="#//TypeLiteralCS">
<eStructuralFeatures xsi:type="ecore:EReference" name="ownedType" eType="#//TypeExpCS"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="TupleTypeCS" eSuperTypes="#//TypeLiteralCS">
<eStructuralFeatures xsi:type="ecore:EReference" name="ownedParts" upperBound="-1"
eType="#//tuplePartCS" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="backtrack" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="tuplePartCS">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="ownedType" eType="#//TypeExpCS"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="PrimitiveLiteralExpCS" eSuperTypes="#//PrimaryExpCS"/>
<eClassifiers xsi:type="ecore:EClass" name="TupleLiteralExpCS" eSuperTypes="#//PrimaryExpCS">
<eStructuralFeatures xsi:type="ecore:EReference" name="ownedParts" upperBound="-1"
eType="#//TupleLiteralPartCS" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="TupleLiteralPartCS">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="ownedType" eType="#//TypeExpCS"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="initExpression" eType="#//ExpCS"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="NumberLiteralExpCS" eSuperTypes="#//PrimitiveLiteralExpCS">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="StringLiteralExpCS" eSuperTypes="#//PrimitiveLiteralExpCS">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" unique="false" upperBound="-1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="BooleanLiteralExpCS" eSuperTypes="#//PrimitiveLiteralExpCS">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="UnlimitedNaturalLiteralExpCS" eSuperTypes="#//PrimitiveLiteralExpCS"/>
<eClassifiers xsi:type="ecore:EClass" name="InvalidLiteralExpCS" eSuperTypes="#//PrimitiveLiteralExpCS"/>
<eClassifiers xsi:type="ecore:EClass" name="NullLiteralExpCS" eSuperTypes="#//PrimitiveLiteralExpCS"/>
<eClassifiers xsi:type="ecore:EClass" name="PrimitiveTypeCS" eSuperTypes="#//TypeLiteralCS"/>
<eClassifiers xsi:type="ecore:EClass" name="TypeLiteralCS" eSuperTypes="#//TypeExpCS">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="TypeLiteralExpCS">
<eStructuralFeatures xsi:type="ecore:EReference" name="ownedType" eType="#//TypeLiteralCS"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="TypeNameExpCS" eSuperTypes="#//TypeExpCS">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="namespace" unique="false"
upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="element" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="TypeExpCS"/>
<eClassifiers xsi:type="ecore:EClass" name="NavigatingArgCS">
<eStructuralFeatures xsi:type="ecore:EReference" name="name" eType="#//NavigatingArgExpCS"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="ownedType" eType="#//TypeExpCS"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="init" eType="#//ExpCS"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="NavigatingBarArgCS">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="prefix" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="name" eType="#//NavigatingArgExpCS"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="ownedType" eType="#//TypeExpCS"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="init" eType="#//ExpCS"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="NavigatingCommaArgCS">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="prefix" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="name" eType="#//NavigatingArgExpCS"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="ownedType" eType="#//TypeExpCS"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="init" eType="#//ExpCS"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="NavigatingSemiArgCS">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="prefix" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="name" eType="#//NavigatingArgExpCS"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="ownedType" eType="#//TypeExpCS"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="init" eType="#//ExpCS"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="NavigatingArgExpCS"/>
<eClassifiers xsi:type="ecore:EClass" name="IfExpCS" eSuperTypes="#//PrimaryExpCS">
<eStructuralFeatures xsi:type="ecore:EReference" name="condition" eType="#//ExpCS"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="thenExpression" eType="#//ExpCS"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="elseExpression" eType="#//ExpCS"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="LetExpCS" eSuperTypes="#//PrimaryExpCS">
<eStructuralFeatures xsi:type="ecore:EReference" name="variable" upperBound="-1"
eType="#//LetVariableCS" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="in" eType="#//ExpCS" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="LetVariableCS">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="ownedType" eType="#//TypeExpCS"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="initExpression" eType="#//ExpCS"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="NestedExpCS" eSuperTypes="#//PrimaryExpCS">
<eStructuralFeatures xsi:type="ecore:EReference" name="source" eType="#//ExpCS"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="SelfExpCS" eSuperTypes="#//PrimaryExpCS"/>
<eClassifiers xsi:type="ecore:EClass" name="PrimaryExpCS" eSuperTypes="#//PrefixedExpCS"/>
<eClassifiers xsi:type="ecore:EClass" name="StringExpCs" eSuperTypes="#//PrimaryExpCS">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="NameExpCS" eSuperTypes="#//IndexExpCS">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="namespace" unique="false"
upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="element" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ExpCS" eSuperTypes="#//NavigatingArgExpCS"/>
<eClassifiers xsi:type="ecore:EClass" name="InfixedExpCS" eSuperTypes="#//ExpCS"/>
<eClassifiers xsi:type="ecore:EClass" name="BinaryOperatorCS">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="InfixOperatorCS" eSuperTypes="#//BinaryOperatorCS"/>
<eClassifiers xsi:type="ecore:EClass" name="NavigationOperatorCS" eSuperTypes="#//BinaryOperatorCS"/>
<eClassifiers xsi:type="ecore:EClass" name="PrefixedExpCS" eSuperTypes="#//InfixedExpCS"/>
<eClassifiers xsi:type="ecore:EClass" name="UnaryOperatorCS">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="IndexExpCS" eSuperTypes="#//NavigatingExpCS_Base">
<eStructuralFeatures xsi:type="ecore:EReference" name="firstIndexes" upperBound="-1"
eType="#//ExpCS" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="secondIndexes" upperBound="-1"
eType="#//ExpCS" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="NavigatingExpCS_Base" eSuperTypes="#//NavigatingExpCS"/>
<eClassifiers xsi:type="ecore:EClass" name="NavigatingExpCS" eSuperTypes="#//PrimaryExpCS">
<eStructuralFeatures xsi:type="ecore:EReference" name="namedExp" eType="#//NavigatingExpCS_Base"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="argument" upperBound="-1"
eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EObject" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="InfixExpCS" eSuperTypes="#//InfixedExpCS">
<eStructuralFeatures xsi:type="ecore:EReference" name="ownedExpression" upperBound="-1"
eType="#//PrefixedExpCS" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="ownedOperator" upperBound="-1"
eType="#//BinaryOperatorCS" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="PrefixExpCS" eSuperTypes="#//PrefixedExpCS">
<eStructuralFeatures xsi:type="ecore:EReference" name="ownedOperator" upperBound="-1"
eType="#//UnaryOperatorCS" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="ownedExpression" eType="#//PrimaryExpCS"
containment="true"/>
</eClassifiers>
</ecore:EPackage>
| github:ecore:/data/lollix91/ATLCsForge/myAtlProject/org.xtext.example.myatl.parent/org.xtext.example.myatl/model/generated/MyAtl.ecore | ecore | myAtl
Module
name
outModels
inModels
varName
elements
ModuleElement
name
MatchedRule
inPattern
variables
outPattern
actionBlock
CalledRule
variables
outPattern
actionBlock
QueryRule
parameters
initExpression
Helper
definition
ATLDefCS
varName
parameters
type
initExpression
ATLParameterCS
varName
type
RuleVariableDeclaration
varName
type
initExpression
InPattern
elements
filter
InPatternElement
varName
type
OutPattern
elements
OutPatternElement
SimpleOutPatternElement
varName
type
bindings
ForEachOutPatternElement
collection
Binding
propertyName
value
ActionBlock
statements
Statement
BindingStat
source
propertyName
value
ATLType
modelName
type
CollectionTypeCS
ownedType
TupleTypeCS
ownedParts
backtrack
tuplePartCS
name
ownedType
PrimitiveLiteralExpCS
TupleLiteralExpCS
ownedParts
TupleLiteralPartCS
name
ownedType
initExpression
NumberLiteralExpCS
name
StringLiteralExpCS
name
BooleanLiteralExpCS
name
UnlimitedNaturalLiteralExpCS
InvalidLiteralExpCS
NullLiteralExpCS
PrimitiveTypeCS
TypeLiteralCS
name
TypeLiteralExpCS
ownedType
TypeNameExpCS
namespace
element
TypeExpCS
NavigatingArgCS
name
ownedType
init
NavigatingBarArgCS
prefix
name
ownedType
init
NavigatingCommaArgCS
prefix
name
ownedType
init
NavigatingSemiArgCS
prefix
name
ownedType
init
NavigatingArgExpCS
IfExpCS
condition
thenExpression
elseExpression
LetExpCS
variable
in
LetVariableCS
name
ownedType
initExpression
NestedExpCS
source
SelfExpCS
PrimaryExpCS
StringExpCs
name
NameExpCS
namespace
element
ExpCS
InfixedExpCS
BinaryOperatorCS
name
InfixOperatorCS
NavigationOperatorCS
PrefixedExpCS
UnaryOperatorCS
name
IndexExpCS
firstIndexes
secondIndexes
NavigatingExpCS_Base
NavigatingExpCS
namedExp
argument
InfixExpCS
ownedExpression
ownedOperator
PrefixExpCS
ownedOperator
ownedExpression | null | {"directed":true,"nodes":[{"nsPrefix":"myAtl","nsURI":"http://www.xtext.org/example/mydsl/MyAtl","name":"myAtl","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Module","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ModuleElement","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MatchedRule","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CalledRule","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"QueryRule","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Helper","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ATLDefCS","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ATLParameterCS","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RuleVariableDeclaration","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InPattern","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InPatternElement","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OutPattern","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OutPatternElement","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SimpleOutPatternElement","instanceClass":null,"abstract":false,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ForEachOutPatternElement","instanceClass":null,"abstract":false,"id":15,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Binding","instanceClass":null,"abstract":false,"id":16,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ActionBlock","instanceClass":null,"abstract":false,"id":17,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Statement","instanceClass":null,"abstract":false,"id":18,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BindingStat","instanceClass":null,"abstract":false,"id":19,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ATLType","instanceClass":null,"abstract":false,"id":20,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CollectionTypeCS","instanceClass":null,"abstract":false,"id":21,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TupleTypeCS","instanceClass":null,"abstract":false,"id":22,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"tuplePartCS","instanceClass":null,"abstract":false,"id":23,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PrimitiveLiteralExpCS","instanceClass":null,"abstract":false,"id":24,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TupleLiteralExpCS","instanceClass":null,"abstract":false,"id":25,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TupleLiteralPartCS","instanceClass":null,"abstract":false,"id":26,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NumberLiteralExpCS","instanceClass":null,"abstract":false,"id":27,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StringLiteralExpCS","instanceClass":null,"abstract":false,"id":28,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BooleanLiteralExpCS","instanceClass":null,"abstract":false,"id":29,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"UnlimitedNaturalLiteralExpCS","instanceClass":null,"abstract":false,"id":30,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InvalidLiteralExpCS","instanceClass":null,"abstract":false,"id":31,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NullLiteralExpCS","instanceClass":null,"abstract":false,"id":32,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PrimitiveTypeCS","instanceClass":null,"abstract":false,"id":33,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TypeLiteralCS","instanceClass":null,"abstract":false,"id":34,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TypeLiteralExpCS","instanceClass":null,"abstract":false,"id":35,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TypeNameExpCS","instanceClass":null,"abstract":false,"id":36,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TypeExpCS","instanceClass":null,"abstract":false,"id":37,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NavigatingArgCS","instanceClass":null,"abstract":false,"id":38,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NavigatingBarArgCS","instanceClass":null,"abstract":false,"id":39,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NavigatingCommaArgCS","instanceClass":null,"abstract":false,"id":40,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NavigatingSemiArgCS","instanceClass":null,"abstract":false,"id":41,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NavigatingArgExpCS","instanceClass":null,"abstract":false,"id":42,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IfExpCS","instanceClass":null,"abstract":false,"id":43,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LetExpCS","instanceClass":null,"abstract":false,"id":44,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LetVariableCS","instanceClass":null,"abstract":false,"id":45,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NestedExpCS","instanceClass":null,"abstract":false,"id":46,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SelfExpCS","instanceClass":null,"abstract":false,"id":47,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PrimaryExpCS","instanceClass":null,"abstract":false,"id":48,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StringExpCs","instanceClass":null,"abstract":false,"id":49,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NameExpCS","instanceClass":null,"abstract":false,"id":50,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExpCS","instanceClass":null,"abstract":false,"id":51,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InfixedExpCS","instanceClass":null,"abstract":false,"id":52,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BinaryOperatorCS","instanceClass":null,"abstract":false,"id":53,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InfixOperatorCS","instanceClass":null,"abstract":false,"id":54,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NavigationOperatorCS","instanceClass":null,"abstract":false,"id":55,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PrefixedExpCS","instanceClass":null,"abstract":false,"id":56,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"UnaryOperatorCS","instanceClass":null,"abstract":false,"id":57,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IndexExpCS","instanceClass":null,"abstract":false,"id":58,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NavigatingExpCS_Base","instanceClass":null,"abstract":false,"id":59,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NavigatingExpCS","instanceClass":null,"abstract":false,"id":60,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InfixExpCS","instanceClass":null,"abstract":false,"id":61,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PrefixExpCS","instanceClass":null,"abstract":false,"id":62,"interface":false,"eClass":"EClass"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":63,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"outModels","changeable":true,"resolveProxies":true,"lowerBound":0,"id":64,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"inModels","changeable":true,"resolveProxies":true,"lowerBound":0,"id":65,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"varName","changeable":true,"resolveProxies":true,"lowerBound":0,"id":66,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"elements","changeable":true,"resolveProxies":true,"lowerBound":0,"id":67,"derived":false},{"id":68,"eClass":"EGenericType"},{"id":69,"eClass":"EGenericType"},{"id":70,"eClass":"EGenericType"},{"id":71,"eClass":"EGenericType"},{"id":72,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":73,"derived":false},{"id":74,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"inPattern","changeable":true,"resolveProxies":true,"lowerBound":0,"id":75,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"variables","changeable":true,"resolveProxies":true,"lowerBound":0,"id":76,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"outPattern","changeable":true,"resolveProxies":true,"lowerBound":0,"id":77,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"actionBlock","changeable":true,"resolveProxies":true,"lowerBound":0,"id":78,"derived":false},{"id":79,"eClass":"EGenericType"},{"id":80,"eClass":"EGenericType"},{"id":81,"eClass":"EGenericType"},{"id":82,"eClass":"EGenericType"},{"id":83,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"variables","changeable":true,"resolveProxies":true,"lowerBound":0,"id":84,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"outPattern","changeable":true,"resolveProxies":true,"lowerBound":0,"id":85,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"actionBlock","changeable":true,"resolveProxies":true,"lowerBound":0,"id":86,"derived":false},{"id":87,"eClass":"EGenericType"},{"id":88,"eClass":"EGenericType"},{"id":89,"eClass":"EGenericType"},{"id":90,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"parameters","changeable":true,"resolveProxies":true,"lowerBound":0,"id":91,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"initExpression","changeable":true,"resolveProxies":true,"lowerBound":0,"id":92,"derived":false},{"id":93,"eClass":"EGenericType"},{"id":94,"eClass":"EGenericType"},{"id":95,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"definition","changeable":true,"resolveProxies":true,"lowerBound":0,"id":96,"derived":false},{"id":97,"eClass":"EGenericType"},{"id":98,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"varName","changeable":true,"lowerBound":0,"iD":false,"id":99,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"parameters","changeable":true,"resolveProxies":true,"lowerBound":0,"id":100,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"resolveProxies":true,"lowerBound":0,"id":101,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"initExpression","changeable":true,"resolveProxies":true,"lowerBound":0,"id":102,"derived":false},{"id":103,"eClass":"EGenericType"},{"id":104,"eClass":"EGenericType"},{"id":105,"eClass":"EGenericType"},{"id":106,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"varName","changeable":true,"lowerBound":0,"iD":false,"id":107,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"resolveProxies":true,"lowerBound":0,"id":108,"derived":false},{"id":109,"eClass":"EGenericType"},{"id":110,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"varName","changeable":true,"lowerBound":0,"iD":false,"id":111,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"resolveProxies":true,"lowerBound":0,"id":112,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"initExpression","changeable":true,"resolveProxies":true,"lowerBound":0,"id":113,"derived":false},{"id":114,"eClass":"EGenericType"},{"id":115,"eClass":"EGenericType"},{"id":116,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"elements","changeable":true,"resolveProxies":true,"lowerBound":0,"id":117,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"filter","changeable":true,"resolveProxies":true,"lowerBound":0,"id":118,"derived":false},{"id":119,"eClass":"EGenericType"},{"id":120,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"varName","changeable":true,"lowerBound":0,"iD":false,"id":121,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"resolveProxies":true,"lowerBound":0,"id":122,"derived":false},{"id":123,"eClass":"EGenericType"},{"id":124,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"elements","changeable":true,"resolveProxies":true,"lowerBound":0,"id":125,"derived":false},{"id":126,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"varName","changeable":true,"lowerBound":0,"iD":false,"id":127,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"resolveProxies":true,"lowerBound":0,"id":128,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"bindings","changeable":true,"resolveProxies":true,"lowerBound":0,"id":129,"derived":false},{"id":130,"eClass":"EGenericType"},{"id":131,"eClass":"EGenericType"},{"id":132,"eClass":"EGenericType"},{"id":133,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"collection","changeable":true,"resolveProxies":true,"lowerBound":0,"id":134,"derived":false},{"id":135,"eClass":"EGenericType"},{"id":136,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"propertyName","changeable":true,"lowerBound":0,"iD":false,"id":137,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"resolveProxies":true,"lowerBound":0,"id":138,"derived":false},{"id":139,"eClass":"EGenericType"},{"id":140,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"statements","changeable":true,"resolveProxies":true,"lowerBound":0,"id":141,"derived":false},{"id":142,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"source","changeable":true,"resolveProxies":true,"lowerBound":0,"id":143,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"propertyName","changeable":true,"lowerBound":0,"iD":false,"id":144,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"resolveProxies":true,"lowerBound":0,"id":145,"derived":false},{"id":146,"eClass":"EGenericType"},{"id":147,"eClass":"EGenericType"},{"id":148,"eClass":"EGenericType"},{"id":149,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"modelName","changeable":true,"lowerBound":0,"iD":false,"id":150,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"resolveProxies":true,"lowerBound":0,"id":151,"derived":false},{"id":152,"eClass":"EGenericType"},{"id":153,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"ownedType","changeable":true,"resolveProxies":true,"lowerBound":0,"id":154,"derived":false},{"id":155,"eClass":"EGenericType"},{"id":156,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"ownedParts","changeable":true,"resolveProxies":true,"lowerBound":0,"id":157,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"backtrack","changeable":true,"lowerBound":0,"iD":false,"id":158,"derived":false},{"id":159,"eClass":"EGenericType"},{"id":160,"eClass":"EGenericType"},{"id":161,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":162,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"ownedType","changeable":true,"resolveProxies":true,"lowerBound":0,"id":163,"derived":false},{"id":164,"eClass":"EGenericType"},{"id":165,"eClass":"EGenericType"},{"id":166,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"ownedParts","changeable":true,"resolveProxies":true,"lowerBound":0,"id":167,"derived":false},{"id":168,"eClass":"EGenericType"},{"id":169,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":170,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"ownedType","changeable":true,"resolveProxies":true,"lowerBound":0,"id":171,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"initExpression","changeable":true,"resolveProxies":true,"lowerBound":0,"id":172,"derived":false},{"id":173,"eClass":"EGenericType"},{"id":174,"eClass":"EGenericType"},{"id":175,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":176,"derived":false},{"id":177,"eClass":"EGenericType"},{"id":178,"eClass":"EGenericType"},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":179,"derived":false},{"id":180,"eClass":"EGenericType"},{"id":181,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":182,"derived":false},{"id":183,"eClass":"EGenericType"},{"id":184,"eClass":"EGenericType"},{"id":185,"eClass":"EGenericType"},{"id":186,"eClass":"EGenericType"},{"id":187,"eClass":"EGenericType"},{"id":188,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":189,"derived":false},{"id":190,"eClass":"EGenericType"},{"id":191,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"ownedType","changeable":true,"resolveProxies":true,"lowerBound":0,"id":192,"derived":false},{"id":193,"eClass":"EGenericType"},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"namespace","changeable":true,"lowerBound":0,"iD":false,"id":194,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"element","changeable":true,"lowerBound":0,"iD":false,"id":195,"derived":false},{"id":196,"eClass":"EGenericType"},{"id":197,"eClass":"EGenericType"},{"id":198,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"resolveProxies":true,"lowerBound":0,"id":199,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"ownedType","changeable":true,"resolveProxies":true,"lowerBound":0,"id":200,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"init","changeable":true,"resolveProxies":true,"lowerBound":0,"id":201,"derived":false},{"id":202,"eClass":"EGenericType"},{"id":203,"eClass":"EGenericType"},{"id":204,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"prefix","changeable":true,"lowerBound":0,"iD":false,"id":205,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"resolveProxies":true,"lowerBound":0,"id":206,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"ownedType","changeable":true,"resolveProxies":true,"lowerBound":0,"id":207,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"init","changeable":true,"resolveProxies":true,"lowerBound":0,"id":208,"derived":false},{"id":209,"eClass":"EGenericType"},{"id":210,"eClass":"EGenericType"},{"id":211,"eClass":"EGenericType"},{"id":212,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"prefix","changeable":true,"lowerBound":0,"iD":false,"id":213,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"resolveProxies":true,"lowerBound":0,"id":214,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"ownedType","changeable":true,"resolveProxies":true,"lowerBound":0,"id":215,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"init","changeable":true,"resolveProxies":true,"lowerBound":0,"id":216,"derived":false},{"id":217,"eClass":"EGenericType"},{"id":218,"eClass":"EGenericType"},{"id":219,"eClass":"EGenericType"},{"id":220,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"prefix","changeable":true,"lowerBound":0,"iD":false,"id":221,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"resolveProxies":true,"lowerBound":0,"id":222,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"ownedType","changeable":true,"resolveProxies":true,"lowerBound":0,"id":223,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"init","changeable":true,"resolveProxies":true,"lowerBound":0,"id":224,"derived":false},{"id":225,"eClass":"EGenericType"},{"id":226,"eClass":"EGenericType"},{"id":227,"eClass":"EGenericType"},{"id":228,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"condition","changeable":true,"resolveProxies":true,"lowerBound":0,"id":229,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"thenExpression","changeable":true,"resolveProxies":true,"lowerBound":0,"id":230,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"elseExpression","changeable":true,"resolveProxies":true,"lowerBound":0,"id":231,"derived":false},{"id":232,"eClass":"EGenericType"},{"id":233,"eClass":"EGenericType"},{"id":234,"eClass":"EGenericType"},{"id":235,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"variable","changeable":true,"resolveProxies":true,"lowerBound":0,"id":236,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"in","changeable":true,"resolveProxies":true,"lowerBound":0,"id":237,"derived":false},{"id":238,"eClass":"EGenericType"},{"id":239,"eClass":"EGenericType"},{"id":240,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":241,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"ownedType","changeable":true,"resolveProxies":true,"lowerBound":0,"id":242,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"initExpression","changeable":true,"resolveProxies":true,"lowerBound":0,"id":243,"derived":false},{"id":244,"eClass":"EGenericType"},{"id":245,"eClass":"EGenericType"},{"id":246,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"source","changeable":true,"resolveProxies":true,"lowerBound":0,"id":247,"derived":false},{"id":248,"eClass":"EGenericType"},{"id":249,"eClass":"EGenericType"},{"id":250,"eClass":"EGenericType"},{"id":251,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":252,"derived":false},{"id":253,"eClass":"EGenericType"},{"id":254,"eClass":"EGenericType"},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"namespace","changeable":true,"lowerBound":0,"iD":false,"id":255,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"element","changeable":true,"lowerBound":0,"iD":false,"id":256,"derived":false},{"id":257,"eClass":"EGenericType"},{"id":258,"eClass":"EGenericType"},{"id":259,"eClass":"EGenericType"},{"id":260,"eClass":"EGenericType"},{"id":261,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":262,"derived":false},{"id":263,"eClass":"EGenericType"},{"id":264,"eClass":"EGenericType"},{"id":265,"eClass":"EGenericType"},{"id":266,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":267,"derived":false},{"id":268,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"firstIndexes","changeable":true,"resolveProxies":true,"lowerBound":0,"id":269,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"secondIndexes","changeable":true,"resolveProxies":true,"lowerBound":0,"id":270,"derived":false},{"id":271,"eClass":"EGenericType"},{"id":272,"eClass":"EGenericType"},{"id":273,"eClass":"EGenericType"},{"id":274,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"namedExp","changeable":true,"resolveProxies":true,"lowerBound":0,"id":275,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"argument","changeable":true,"resolveProxies":true,"lowerBound":0,"id":276,"derived":false},{"id":277,"eClass":"EGenericType"},{"id":278,"eClass":"EGenericType"},{"id":279,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"ownedExpression","changeable":true,"resolveProxies":true,"lowerBound":0,"id":280,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"ownedOperator","changeable":true,"resolveProxies":true,"lowerBound":0,"id":281,"derived":false},{"id":282,"eClass":"EGenericType"},{"id":283,"eClass":"EGenericType"},{"id":284,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"ownedOperator","changeable":true,"resolveProxies":true,"lowerBound":0,"id":285,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"ownedExpression","changeable":true,"resolveProxies":true,"lowerBound":0,"id":286,"derived":false},{"id":287,"eClass":"EGenericType"},{"id":288,"eClass":"EGenericType"},{"id":289,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":0,"target":8},{"source":0,"target":9},{"source":0,"target":10},{"source":0,"target":11},{"source":0,"target":12},{"source":0,"target":13},{"source":0,"target":14},{"source":0,"target":15},{"source":0,"target":16},{"source":0,"target":17},{"source":0,"target":18},{"source":0,"target":19},{"source":0,"target":20},{"source":0,"target":21},{"source":0,"target":22},{"source":0,"target":23},{"source":0,"target":24},{"source":0,"target":25},{"source":0,"target":26},{"source":0,"target":27},{"source":0,"target":28},{"source":0,"target":29},{"source":0,"target":30},{"source":0,"target":31},{"source":0,"target":32},{"source":0,"target":33},{"source":0,"target":34},{"source":0,"target":35},{"source":0,"target":36},{"source":0,"target":37},{"source":0,"target":38},{"source":0,"target":39},{"source":0,"target":40},{"source":0,"target":41},{"source":0,"target":42},{"source":0,"target":43},{"source":0,"target":44},{"source":0,"target":45},{"source":0,"target":46},{"source":0,"target":47},{"source":0,"target":48},{"source":0,"target":49},{"source":0,"target":50},{"source":0,"target":51},{"source":0,"target":52},{"source":0,"target":53},{"source":0,"target":54},{"source":0,"target":55},{"source":0,"target":56},{"source":0,"target":57},{"source":0,"target":58},{"source":0,"target":59},{"source":0,"target":60},{"source":0,"target":61},{"source":0,"target":62},{"source":1,"target":0},{"source":1,"target":63},{"source":1,"target":64},{"source":1,"target":65},{"source":1,"target":66},{"source":1,"target":67},{"source":63,"target":68},{"source":63,"target":1},{"source":64,"target":50},{"source":64,"target":69},{"source":64,"target":1},{"source":69,"target":50},{"source":65,"target":50},{"source":65,"target":70},{"source":65,"target":1},{"source":70,"target":50},{"source":66,"target":50},{"source":66,"target":71},{"source":66,"target":1},{"source":71,"target":50},{"source":67,"target":2},{"source":67,"target":72},{"source":67,"target":1},{"source":72,"target":2},{"source":2,"target":0},{"source":2,"target":73},{"source":73,"target":74},{"source":73,"target":2},{"source":3,"target":0},{"source":3,"target":2},{"source":3,"target":75},{"source":3,"target":76},{"source":3,"target":77},{"source":3,"target":78},{"source":3,"target":79},{"source":75,"target":10},{"source":75,"target":80},{"source":75,"target":3},{"source":80,"target":10},{"source":76,"target":9},{"source":76,"target":81},{"source":76,"target":3},{"source":81,"target":9},{"source":77,"target":12},{"source":77,"target":82},{"source":77,"target":3},{"source":82,"target":12},{"source":78,"target":17},{"source":78,"target":83},{"source":78,"target":3},{"source":83,"target":17},{"source":79,"target":2},{"source":4,"target":0},{"source":4,"target":2},{"source":4,"target":84},{"source":4,"target":85},{"source":4,"target":86},{"source":4,"target":87},{"source":84,"target":9},{"source":84,"target":88},{"source":84,"target":4},{"source":88,"target":9},{"source":85,"target":12},{"source":85,"target":89},{"source":85,"target":4},{"source":89,"target":12},{"source":86,"target":17},{"source":86,"target":90},{"source":86,"target":4},{"source":90,"target":17},{"source":87,"target":2},{"source":5,"target":0},{"source":5,"target":2},{"source":5,"target":91},{"source":5,"target":92},{"source":5,"target":93},{"source":91,"target":8},{"source":91,"target":94},{"source":91,"target":5},{"source":94,"target":8},{"source":92,"target":51},{"source":92,"target":95},{"source":92,"target":5},{"source":95,"target":51},{"source":93,"target":2},{"source":6,"target":0},{"source":6,"target":2},{"source":6,"target":96},{"source":6,"target":97},{"source":96,"target":7},{"source":96,"target":98},{"source":96,"target":6},{"source":98,"target":7},{"source":97,"target":2},{"source":7,"target":0},{"source":7,"target":99},{"source":7,"target":100},{"source":7,"target":101},{"source":7,"target":102},{"source":99,"target":103},{"source":99,"target":7},{"source":100,"target":8},{"source":100,"target":104},{"source":100,"target":7},{"source":104,"target":8},{"source":101,"target":20},{"source":101,"target":105},{"source":101,"target":7},{"source":105,"target":20},{"source":102,"target":51},{"source":102,"target":106},{"source":102,"target":7},{"source":106,"target":51},{"source":8,"target":0},{"source":8,"target":107},{"source":8,"target":108},{"source":107,"target":109},{"source":107,"target":8},{"source":108,"target":20},{"source":108,"target":110},{"source":108,"target":8},{"source":110,"target":20},{"source":9,"target":0},{"source":9,"target":111},{"source":9,"target":112},{"source":9,"target":113},{"source":111,"target":114},{"source":111,"target":9},{"source":112,"target":20},{"source":112,"target":115},{"source":112,"target":9},{"source":115,"target":20},{"source":113,"target":51},{"source":113,"target":116},{"source":113,"target":9},{"source":116,"target":51},{"source":10,"target":0},{"source":10,"target":117},{"source":10,"target":118},{"source":117,"target":11},{"source":117,"target":119},{"source":117,"target":10},{"source":119,"target":11},{"source":118,"target":51},{"source":118,"target":120},{"source":118,"target":10},{"source":120,"target":51},{"source":11,"target":0},{"source":11,"target":121},{"source":11,"target":122},{"source":121,"target":123},{"source":121,"target":11},{"source":122,"target":20},{"source":122,"target":124},{"source":122,"target":11},{"source":124,"target":20},{"source":12,"target":0},{"source":12,"target":125},{"source":125,"target":13},{"source":125,"target":126},{"source":125,"target":12},{"source":126,"target":13},{"source":13,"target":0},{"source":14,"target":0},{"source":14,"target":13},{"source":14,"target":127},{"source":14,"target":128},{"source":14,"target":129},{"source":14,"target":130},{"source":127,"target":131},{"source":127,"target":14},{"source":128,"target":20},{"source":128,"target":132},{"source":128,"target":14},{"source":132,"target":20},{"source":129,"target":16},{"source":129,"target":133},{"source":129,"target":14},{"source":133,"target":16},{"source":130,"target":13},{"source":15,"target":0},{"source":15,"target":13},{"source":15,"target":134},{"source":15,"target":135},{"source":134,"target":51},{"source":134,"target":136},{"source":134,"target":15},{"source":136,"target":51},{"source":135,"target":13},{"source":16,"target":0},{"source":16,"target":137},{"source":16,"target":138},{"source":137,"target":139},{"source":137,"target":16},{"source":138,"target":51},{"source":138,"target":140},{"source":138,"target":16},{"source":140,"target":51},{"source":17,"target":0},{"source":17,"target":141},{"source":141,"target":18},{"source":141,"target":142},{"source":141,"target":17},{"source":142,"target":18},{"source":18,"target":0},{"source":19,"target":0},{"source":19,"target":18},{"source":19,"target":143},{"source":19,"target":144},{"source":19,"target":145},{"source":19,"target":146},{"source":143,"target":51},{"source":143,"target":147},{"source":143,"target":19},{"source":147,"target":51},{"source":144,"target":148},{"source":144,"target":19},{"source":145,"target":51},{"source":145,"target":149},{"source":145,"target":19},{"source":149,"target":51},{"source":146,"target":18},{"source":20,"target":0},{"source":20,"target":150},{"source":20,"target":151},{"source":150,"target":152},{"source":150,"target":20},{"source":151,"target":37},{"source":151,"target":153},{"source":151,"target":20},{"source":153,"target":37},{"source":21,"target":0},{"source":21,"target":34},{"source":21,"target":154},{"source":21,"target":155},{"source":154,"target":37},{"source":154,"target":156},{"source":154,"target":21},{"source":156,"target":37},{"source":155,"target":34},{"source":22,"target":0},{"source":22,"target":34},{"source":22,"target":157},{"source":22,"target":158},{"source":22,"target":159},{"source":157,"target":23},{"source":157,"target":160},{"source":157,"target":22},{"source":160,"target":23},{"source":158,"target":161},{"source":158,"target":22},{"source":159,"target":34},{"source":23,"target":0},{"source":23,"target":162},{"source":23,"target":163},{"source":162,"target":164},{"source":162,"target":23},{"source":163,"target":37},{"source":163,"target":165},{"source":163,"target":23},{"source":165,"target":37},{"source":24,"target":0},{"source":24,"target":48},{"source":24,"target":166},{"source":166,"target":48},{"source":25,"target":0},{"source":25,"target":48},{"source":25,"target":167},{"source":25,"target":168},{"source":167,"target":26},{"source":167,"target":169},{"source":167,"target":25},{"source":169,"target":26},{"source":168,"target":48},{"source":26,"target":0},{"source":26,"target":170},{"source":26,"target":171},{"source":26,"target":172},{"source":170,"target":173},{"source":170,"target":26},{"source":171,"target":37},{"source":171,"target":174},{"source":171,"target":26},{"source":174,"target":37},{"source":172,"target":51},{"source":172,"target":175},{"source":172,"target":26},{"source":175,"target":51},{"source":27,"target":0},{"source":27,"target":24},{"source":27,"target":176},{"source":27,"target":177},{"source":176,"target":178},{"source":176,"target":27},{"source":177,"target":24},{"source":28,"target":0},{"source":28,"target":24},{"source":28,"target":179},{"source":28,"target":180},{"source":179,"target":181},{"source":179,"target":28},{"source":180,"target":24},{"source":29,"target":0},{"source":29,"target":24},{"source":29,"target":182},{"source":29,"target":183},{"source":182,"target":184},{"source":182,"target":29},{"source":183,"target":24},{"source":30,"target":0},{"source":30,"target":24},{"source":30,"target":185},{"source":185,"target":24},{"source":31,"target":0},{"source":31,"target":24},{"source":31,"target":186},{"source":186,"target":24},{"source":32,"target":0},{"source":32,"target":24},{"source":32,"target":187},{"source":187,"target":24},{"source":33,"target":0},{"source":33,"target":34},{"source":33,"target":188},{"source":188,"target":34},{"source":34,"target":0},{"source":34,"target":37},{"source":34,"target":189},{"source":34,"target":190},{"source":189,"target":191},{"source":189,"target":34},{"source":190,"target":37},{"source":35,"target":0},{"source":35,"target":192},{"source":192,"target":34},{"source":192,"target":193},{"source":192,"target":35},{"source":193,"target":34},{"source":36,"target":0},{"source":36,"target":37},{"source":36,"target":194},{"source":36,"target":195},{"source":36,"target":196},{"source":194,"target":197},{"source":194,"target":36},{"source":195,"target":198},{"source":195,"target":36},{"source":196,"target":37},{"source":37,"target":0},{"source":38,"target":0},{"source":38,"target":199},{"source":38,"target":200},{"source":38,"target":201},{"source":199,"target":42},{"source":199,"target":202},{"source":199,"target":38},{"source":202,"target":42},{"source":200,"target":37},{"source":200,"target":203},{"source":200,"target":38},{"source":203,"target":37},{"source":201,"target":51},{"source":201,"target":204},{"source":201,"target":38},{"source":204,"target":51},{"source":39,"target":0},{"source":39,"target":205},{"source":39,"target":206},{"source":39,"target":207},{"source":39,"target":208},{"source":205,"target":209},{"source":205,"target":39},{"source":206,"target":42},{"source":206,"target":210},{"source":206,"target":39},{"source":210,"target":42},{"source":207,"target":37},{"source":207,"target":211},{"source":207,"target":39},{"source":211,"target":37},{"source":208,"target":51},{"source":208,"target":212},{"source":208,"target":39},{"source":212,"target":51},{"source":40,"target":0},{"source":40,"target":213},{"source":40,"target":214},{"source":40,"target":215},{"source":40,"target":216},{"source":213,"target":217},{"source":213,"target":40},{"source":214,"target":42},{"source":214,"target":218},{"source":214,"target":40},{"source":218,"target":42},{"source":215,"target":37},{"source":215,"target":219},{"source":215,"target":40},{"source":219,"target":37},{"source":216,"target":51},{"source":216,"target":220},{"source":216,"target":40},{"source":220,"target":51},{"source":41,"target":0},{"source":41,"target":221},{"source":41,"target":222},{"source":41,"target":223},{"source":41,"target":224},{"source":221,"target":225},{"source":221,"target":41},{"source":222,"target":42},{"source":222,"target":226},{"source":222,"target":41},{"source":226,"target":42},{"source":223,"target":37},{"source":223,"target":227},{"source":223,"target":41},{"source":227,"target":37},{"source":224,"target":51},{"source":224,"target":228},{"source":224,"target":41},{"source":228,"target":51},{"source":42,"target":0},{"source":43,"target":0},{"source":43,"target":48},{"source":43,"target":229},{"source":43,"target":230},{"source":43,"target":231},{"source":43,"target":232},{"source":229,"target":51},{"source":229,"target":233},{"source":229,"target":43},{"source":233,"target":51},{"source":230,"target":51},{"source":230,"target":234},{"source":230,"target":43},{"source":234,"target":51},{"source":231,"target":51},{"source":231,"target":235},{"source":231,"target":43},{"source":235,"target":51},{"source":232,"target":48},{"source":44,"target":0},{"source":44,"target":48},{"source":44,"target":236},{"source":44,"target":237},{"source":44,"target":238},{"source":236,"target":45},{"source":236,"target":239},{"source":236,"target":44},{"source":239,"target":45},{"source":237,"target":51},{"source":237,"target":240},{"source":237,"target":44},{"source":240,"target":51},{"source":238,"target":48},{"source":45,"target":0},{"source":45,"target":241},{"source":45,"target":242},{"source":45,"target":243},{"source":241,"target":244},{"source":241,"target":45},{"source":242,"target":37},{"source":242,"target":245},{"source":242,"target":45},{"source":245,"target":37},{"source":243,"target":51},{"source":243,"target":246},{"source":243,"target":45},{"source":246,"target":51},{"source":46,"target":0},{"source":46,"target":48},{"source":46,"target":247},{"source":46,"target":248},{"source":247,"target":51},{"source":247,"target":249},{"source":247,"target":46},{"source":249,"target":51},{"source":248,"target":48},{"source":47,"target":0},{"source":47,"target":48},{"source":47,"target":250},{"source":250,"target":48},{"source":48,"target":0},{"source":48,"target":56},{"source":48,"target":251},{"source":251,"target":56},{"source":49,"target":0},{"source":49,"target":48},{"source":49,"target":252},{"source":49,"target":253},{"source":252,"target":254},{"source":252,"target":49},{"source":253,"target":48},{"source":50,"target":0},{"source":50,"target":58},{"source":50,"target":255},{"source":50,"target":256},{"source":50,"target":257},{"source":255,"target":258},{"source":255,"target":50},{"source":256,"target":259},{"source":256,"target":50},{"source":257,"target":58},{"source":51,"target":0},{"source":51,"target":42},{"source":51,"target":260},{"source":260,"target":42},{"source":52,"target":0},{"source":52,"target":51},{"source":52,"target":261},{"source":261,"target":51},{"source":53,"target":0},{"source":53,"target":262},{"source":262,"target":263},{"source":262,"target":53},{"source":54,"target":0},{"source":54,"target":53},{"source":54,"target":264},{"source":264,"target":53},{"source":55,"target":0},{"source":55,"target":53},{"source":55,"target":265},{"source":265,"target":53},{"source":56,"target":0},{"source":56,"target":52},{"source":56,"target":266},{"source":266,"target":52},{"source":57,"target":0},{"source":57,"target":267},{"source":267,"target":268},{"source":267,"target":57},{"source":58,"target":0},{"source":58,"target":59},{"source":58,"target":269},{"source":58,"target":270},{"source":58,"target":271},{"source":269,"target":51},{"source":269,"target":272},{"source":269,"target":58},{"source":272,"target":51},{"source":270,"target":51},{"source":270,"target":273},{"source":270,"target":58},{"source":273,"target":51},{"source":271,"target":59},{"source":59,"target":0},{"source":59,"target":60},{"source":59,"target":274},{"source":274,"target":60},{"source":60,"target":0},{"source":60,"target":48},{"source":60,"target":275},{"source":60,"target":276},{"source":60,"target":277},{"source":275,"target":59},{"source":275,"target":278},{"source":275,"target":60},{"source":278,"target":59},{"source":276,"target":279},{"source":276,"target":60},{"source":277,"target":48},{"source":61,"target":0},{"source":61,"target":52},{"source":61,"target":280},{"source":61,"target":281},{"source":61,"target":282},{"source":280,"target":56},{"source":280,"target":283},{"source":280,"target":61},{"source":283,"target":56},{"source":281,"target":53},{"source":281,"target":284},{"source":281,"target":61},{"source":284,"target":53},{"source":282,"target":52},{"source":62,"target":0},{"source":62,"target":56},{"source":62,"target":285},{"source":62,"target":286},{"source":62,"target":287},{"source":285,"target":57},{"source":285,"target":288},{"source":285,"target":62},{"source":288,"target":57},{"source":286,"target":48},{"source":286,"target":289},{"source":286,"target":62},{"source":289,"target":48},{"source":287,"target":56}],"multigraph":true} |
false | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0"
xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="cametamodel"
nsURI="http:///cametamodel.ecore" nsPrefix="cametamodel">
<eClassifiers xsi:type="ecore:EClass" name="OrganisationalLocation">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" ordered="false" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="acronym" ordered="false"
lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="description" ordered="false"
lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="address" ordered="false"
lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="city" ordered="false" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="postNumber" ordered="false"
lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="country" ordered="false"
lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="organisationalModule" ordered="false"
lowerBound="1" upperBound="-1" eType="#//OrganisationalModule" eOpposite="#//OrganisationalModule/organisationalLocation"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="OrganisationalModule">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" ordered="false" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="acronym" ordered="false"
lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="description" ordered="false"
lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="strategy" ordered="false"
upperBound="-1" eType="#//Strategy" eOpposite="#//Strategy/organisationalModule"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="goal" ordered="false" upperBound="-1"
eType="#//Goal" eOpposite="#//Goal/organisationalModule"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="lower" ordered="false"
lowerBound="1" upperBound="-1" eType="#//OrganisationalUnit" containment="true"
eOpposite="#//OrganisationalUnit/upper"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="organisationalLocation"
ordered="false" lowerBound="1" upperBound="-1" eType="#//OrganisationalLocation"
eOpposite="#//OrganisationalLocation/organisationalModule"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Strategy">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" ordered="false" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="description" ordered="false"
lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="strategyDate" ordered="false"
lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="actionPlan" ordered="false"
lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="operationalisation" ordered="false"
lowerBound="1" upperBound="-1" eType="#//Operationalisation" eOpposite="#//Operationalisation/strategy"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="organisationalModule" ordered="false"
lowerBound="1" eType="#//OrganisationalModule" eOpposite="#//OrganisationalModule/strategy"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Operationalisation">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="currentValue" ordered="false"
lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="targetValue" ordered="false"
lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="goal" ordered="false" lowerBound="1"
eType="#//Goal" eOpposite="#//Goal/oper"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="indicator" ordered="false"
lowerBound="1" eType="#//Indicator" eOpposite="#//Indicator/operationalisation"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="targetDate" ordered="false"
lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="strategy" ordered="false"
eType="#//Strategy" eOpposite="#//Strategy/operationalisation"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Goal">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" ordered="false" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="description" ordered="false"
lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="organisationalModule" ordered="false"
lowerBound="1" eType="#//OrganisationalModule" eOpposite="#//OrganisationalModule/goal"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="event" ordered="false"
upperBound="-1" eType="#//CommunicativeEvent" eOpposite="#//CommunicativeEvent/goal"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="oper" ordered="false" upperBound="-1"
eType="#//Operationalisation" eOpposite="#//Operationalisation/goal"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CommunicativeEvent" eSuperTypes="#//Encapsulation">
<eStructuralFeatures xsi:type="ecore:EReference" name="process" ordered="false"
lowerBound="1" eType="#//Process" eOpposite="#//Process/events"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="ingoingCommunicativeInteraction"
ordered="false" lowerBound="1" eType="#//Ingoing" eOpposite="#//Ingoing/event"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="id" ordered="false" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="description" ordered="false"
lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="goal" ordered="false" upperBound="-1"
eType="#//Goal" eOpposite="#//Goal/event"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Encapsulation" abstract="true" eSuperTypes="#//Node">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="number" ordered="false"
lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" ordered="false" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="precondition" ordered="false"
lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="outgoingCommunicativeInteraction"
ordered="false" upperBound="-1" eType="#//Outgoing" eOpposite="#//Outgoing/event"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="specialisations" ordered="false"
upperBound="-1" eType="#//EventVariant" containment="true" eOpposite="#//EventVariant/generalisation"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="interfaceActor" ordered="false"
lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Node" abstract="true" eSuperTypes="#//Element">
<eStructuralFeatures xsi:type="ecore:EReference" name="incoming" ordered="false"
upperBound="-1" eType="#//Precedence" eOpposite="#//Precedence/target"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="outgoing" ordered="false"
upperBound="-1" eType="#//Precedence" eOpposite="#//Precedence/source"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Element" abstract="true">
<eStructuralFeatures xsi:type="ecore:EReference" name="model" ordered="false"
lowerBound="1" eType="#//Model" eOpposite="#//Model/element"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="textualRequirement" ordered="false"
upperBound="-1" eType="#//TextualRequirement" eOpposite="#//TextualRequirement/element"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Model">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" ordered="false" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="element" ordered="false"
upperBound="-1" eType="#//Element" containment="true" eOpposite="#//Element/model"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="TextualRequirement" eSuperTypes="#//Element">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="id" ordered="false" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="description" ordered="false"
lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="type" ordered="false" lowerBound="1"
eType="#//RequirementType"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="element" ordered="false"
lowerBound="1" eType="#//Element" eOpposite="#//Element/textualRequirement"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="RequirementType">
<eLiterals name="mediumRequirement"/>
<eLiterals name="accreditationRequirement" value="1"/>
<eLiterals name="availabilityRequirement" value="2"/>
<eLiterals name="verificationRequirement" value="3"/>
<eLiterals name="eventPrecondition" value="4"/>
<eLiterals name="structuralConstraint" value="5"/>
<eLiterals name="contextualConstraint" value="6"/>
<eLiterals name="messageParticularisation" value="7"/>
<eLiterals name="linkedBehaviour" value="8"/>
<eLiterals name="linkedCommunication" value="9"/>
<eLiterals name="treatment" value="10"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Precedence" eSuperTypes="#//Element">
<eStructuralFeatures xsi:type="ecore:EReference" name="source" ordered="false"
lowerBound="1" eType="#//Node" eOpposite="#//Node/outgoing"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="target" ordered="false"
lowerBound="1" eType="#//Node" eOpposite="#//Node/incoming"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Outgoing" eSuperTypes="#//CommunicativeInteraction">
<eStructuralFeatures xsi:type="ecore:EReference" name="messageStructure" ordered="false"
lowerBound="1" eType="#//MessageStructure" eOpposite="#//MessageStructure/outgoing"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="receiver" ordered="false"
lowerBound="1" eType="#//Receiver" eOpposite="#//Receiver/outgoingCommunicativeInteraction"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="event" ordered="false"
lowerBound="1" eType="#//Encapsulation" eOpposite="#//Encapsulation/outgoingCommunicativeInteraction"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CommunicativeInteraction" abstract="true"
eSuperTypes="#//Element">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" ordered="false" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="description" ordered="false"
lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="support" ordered="false"
upperBound="-1" eType="#//Support" eOpposite="#//Support/communicativeInteraction"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="businessObjectClass" ordered="false"
upperBound="-1" eType="#//BusinessObjectClass" eOpposite="#//BusinessObjectClass/communicativeInteraction"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="communicationChannel" ordered="false"
upperBound="-1" eType="#//CommunicationChannel" eOpposite="#//CommunicationChannel/communicativeInteraction"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Support" eSuperTypes="#//CommunicativeRole">
<eStructuralFeatures xsi:type="ecore:EReference" name="supportRoleSet" ordered="false"
lowerBound="1" eType="#//SupportRoleSet" eOpposite="#//SupportRoleSet/support"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="communicativeInteraction"
ordered="false" lowerBound="1" eType="#//CommunicativeInteraction" eOpposite="#//CommunicativeInteraction/support"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CommunicativeRole" abstract="true" eSuperTypes="#//Element">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="description" ordered="false"
lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isInterfaceActor" ordered="false"
lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="organisationalRole" ordered="false"
lowerBound="1" eType="#//OrganisationalRole" eOpposite="#//OrganisationalRole/communicativeRole"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="OrganisationalRole" eSuperTypes="#//Element">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" ordered="false" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="description" ordered="false"
lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="duties" ordered="false"
lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="organisationalUnit" ordered="false"
lowerBound="1" upperBound="-1" eType="#//OrganisationalUnit" eOpposite="#//OrganisationalUnit/organisationalRole"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="organisationalActor" ordered="false"
upperBound="-1" eType="#//OrganisationalActor" eOpposite="#//OrganisationalActor/organisationalRole"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="organisationalRoleSet"
ordered="false" lowerBound="1" eType="#//OrganisationalRoleSet" eOpposite="#//OrganisationalRoleSet/organisationalRole"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="communicativeRole" ordered="false"
upperBound="-1" eType="#//CommunicativeRole" eOpposite="#//CommunicativeRole/organisationalRole"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="OrganisationalUnit" eSuperTypes="#//OrganisationalModule">
<eStructuralFeatures xsi:type="ecore:EReference" name="upper" ordered="false"
lowerBound="1" eType="#//OrganisationalModule" eOpposite="#//OrganisationalModule/lower"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="process" ordered="false"
upperBound="-1" eType="#//Process" eOpposite="#//Process/organisationalUnit"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="organisationalActor" ordered="false"
lowerBound="1" upperBound="-1" eType="#//OrganisationalActor" eOpposite="#//OrganisationalActor/organisationalUnit"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="organisationalRole" ordered="false"
lowerBound="1" upperBound="-1" eType="#//OrganisationalRole" eOpposite="#//OrganisationalRole/organisationalUnit"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Process" eSuperTypes="#//Element">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" ordered="false" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="acronym" ordered="false"
lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="description" ordered="false"
lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="events" ordered="false"
lowerBound="1" upperBound="-1" eType="#//CommunicativeEvent" containment="true"
eOpposite="#//CommunicativeEvent/process"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="organisationalUnit" ordered="false"
upperBound="-1" eType="#//OrganisationalUnit" eOpposite="#//OrganisationalUnit/process"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="OrganisationalActor">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="firstName" ordered="false"
lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="lastName" ordered="false"
lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="phoneNumber" ordered="false"
lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="comments" ordered="false"
lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="organisationalRole" ordered="false"
upperBound="-1" eType="#//OrganisationalRole" eOpposite="#//OrganisationalRole/organisationalActor"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="aggregation" ordered="false"
upperBound="-1" eType="#//Aggregation" eOpposite="#//Aggregation/organisationalActor"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="organisationalUnit" ordered="false"
lowerBound="1" upperBound="-1" eType="#//OrganisationalUnit" eOpposite="#//OrganisationalUnit/organisationalActor"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Aggregation" eSuperTypes="#//ComplexSubstructure">
<eStructuralFeatures xsi:type="ecore:EReference" name="organisationalActor" ordered="false"
upperBound="-1" eType="#//OrganisationalActor" eOpposite="#//OrganisationalActor/aggregation"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ComplexSubstructure" abstract="true"
eSuperTypes="#//Substructure">
<eStructuralFeatures xsi:type="ecore:EReference" name="directItems" ordered="false"
lowerBound="1" upperBound="-1" eType="#//Substructure" containment="true"
eOpposite="#//Substructure/parent"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="isInitialComplexSubstructureOf"
ordered="false" eType="#//MessageStructure" eOpposite="#//MessageStructure/initialComplexSubstructure"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="isPartOf" ordered="false"
lowerBound="1" eType="#//MessageStructure" eOpposite="#//MessageStructure/complexSubstructure"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="pointers" ordered="false"
upperBound="-1" eType="#//ReferenceField" eOpposite="#//ReferenceField/domain"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Substructure" abstract="true">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" ordered="false" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="description" ordered="false"
lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="minimumCardinality" ordered="false"
lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="maximumCardinality" ordered="false"
lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="parent" ordered="false"
lowerBound="1" eType="#//ComplexSubstructure" eOpposite="#//ComplexSubstructure/directItems"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="messageStructure" ordered="false"
eType="#//MessageStructure" eOpposite="#//MessageStructure/substructures"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="MessageStructure" eSuperTypes="#//Element">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" ordered="false" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="description" ordered="false"
lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="outgoing" ordered="false"
upperBound="-1" eType="#//Outgoing" eOpposite="#//Outgoing/messageStructure"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="ingoing" ordered="false"
lowerBound="1" eType="#//Ingoing" eOpposite="#//Ingoing/messageStructure"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="initialComplexSubstructure"
ordered="false" lowerBound="1" eType="#//ComplexSubstructure" eOpposite="#//ComplexSubstructure/isInitialComplexSubstructureOf"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="complexSubstructure" ordered="false"
lowerBound="1" upperBound="-1" eType="#//ComplexSubstructure" containment="true"
eOpposite="#//ComplexSubstructure/isPartOf"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="substructures" ordered="false"
upperBound="-1" eType="#//Substructure" eOpposite="#//Substructure/messageStructure"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Ingoing" eSuperTypes="#//CommunicativeInteraction">
<eStructuralFeatures xsi:type="ecore:EReference" name="primary" ordered="false"
lowerBound="1" eType="#//Primary" eOpposite="#//Primary/ingoingCommunicativeInteraction"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="event" ordered="false"
lowerBound="1" eType="#//CommunicativeEvent" eOpposite="#//CommunicativeEvent/ingoingCommunicativeInteraction"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="messageStructure" ordered="false"
lowerBound="1" eType="#//MessageStructure" eOpposite="#//MessageStructure/ingoing"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Primary" eSuperTypes="#//CommunicativeRole">
<eStructuralFeatures xsi:type="ecore:EReference" name="ingoingCommunicativeInteraction"
ordered="false" lowerBound="1" eType="#//Ingoing" eOpposite="#//Ingoing/primary"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ReferenceField" eSuperTypes="#//Field">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="extendsBusinessObject"
ordered="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="domain" ordered="false"
lowerBound="1" eType="#//ComplexSubstructure" eOpposite="#//ComplexSubstructure/pointers"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Field" abstract="true" eSuperTypes="#//Substructure">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="operation" ordered="false"
lowerBound="1" eType="#//Operation"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="derivationFormula" ordered="false"
lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isIdentifier" ordered="false"
lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="example" ordered="false"
lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="Operation">
<eLiterals name="input"/>
<eLiterals name="generation" value="1"/>
<eLiterals name="derivation" value="2"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="OrganisationalRoleSet" eSuperTypes="#//Element">
<eStructuralFeatures xsi:type="ecore:EReference" name="organisationalRole" ordered="false"
lowerBound="1" upperBound="-1" eType="#//OrganisationalRole" containment="true"
eOpposite="#//OrganisationalRole/organisationalRoleSet"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="SupportRoleSet" eSuperTypes="#//Element">
<eStructuralFeatures xsi:type="ecore:EReference" name="support" ordered="false"
upperBound="-1" eType="#//Support" containment="true" eOpposite="#//Support/supportRoleSet"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="BusinessObjectClass">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" ordered="false" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="description" ordered="false"
lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="businessObjectField" ordered="false"
upperBound="-1" eType="#//BusinessObjectField" containment="true" eOpposite="#//BusinessObjectField/businessObjectClass"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="communicativeInteraction"
ordered="false" upperBound="-1" eType="#//CommunicativeInteraction" eOpposite="#//CommunicativeInteraction/businessObjectClass"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="BusinessObjectField">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" ordered="false" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="description" ordered="false"
lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="businessObjectClass" ordered="false"
lowerBound="1" eType="#//BusinessObjectClass" eOpposite="#//BusinessObjectClass/businessObjectField"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CommunicationChannel" eSuperTypes="#//Element">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="description" ordered="false"
lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="communicativeInteraction"
ordered="false" upperBound="-1" eType="#//CommunicativeInteraction" eOpposite="#//CommunicativeInteraction/communicationChannel"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Receiver" eSuperTypes="#//CommunicativeRole">
<eStructuralFeatures xsi:type="ecore:EReference" name="outgoingCommunicativeInteraction"
ordered="false" lowerBound="1" eType="#//Outgoing" eOpposite="#//Outgoing/receiver"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EventVariant" eSuperTypes="#//Encapsulation">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="id" ordered="false" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="specialisationCondition"
ordered="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="generalisation" ordered="false"
lowerBound="1" eType="#//Encapsulation" eOpposite="#//Encapsulation/specialisations"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Indicator">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" ordered="false" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="description" ordered="false"
lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="metric" ordered="false"
lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="operationalisation" ordered="false"
upperBound="-1" eType="#//Operationalisation" eOpposite="#//Operationalisation/indicator"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Organisation" eSuperTypes="#//OrganisationalModule">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="mission" ordered="false"
lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="LogigalNode" abstract="true" eSuperTypes="#//Node"/>
<eClassifiers xsi:type="ecore:EClass" name="End" eSuperTypes="#//Node"/>
<eClassifiers xsi:type="ecore:EClass" name="Start" eSuperTypes="#//Node"/>
<eClassifiers xsi:type="ecore:EClass" name="And" eSuperTypes="#//LogigalNode"/>
<eClassifiers xsi:type="ecore:EClass" name="Or" eSuperTypes="#//LogigalNode"/>
<eClassifiers xsi:type="ecore:EClass" name="DataField" eSuperTypes="#//Field">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="domain" ordered="false"
lowerBound="1" eType="#//Domain"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="Domain">
<eLiterals name="number"/>
<eLiterals name="text" value="1"/>
<eLiterals name="date" value="2"/>
<eLiterals name="money" value="3"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Iteration" eSuperTypes="#//ComplexSubstructure"/>
<eClassifiers xsi:type="ecore:EClass" name="Specialisation" eSuperTypes="#//ComplexSubstructure"/>
</ecore:EPackage>
| github:ecore:/data/tue-mdse/ocl-dataset/dataset/repos/dorisserruto/modeldriventest/Metamodels/cametamodel.ecore | ecore | cametamodel
OrganisationalLocation
name
acronym
description
address
city
postNumber
country
organisationalModule
OrganisationalModule
name
acronym
description
strategy
goal
lower
organisationalLocation
Strategy
name
description
strategyDate
actionPlan
operationalisation
organisationalModule
Operationalisation
currentValue
targetValue
goal
indicator
targetDate
strategy
Goal
name
description
organisationalModule
event
oper
CommunicativeEvent
process
ingoingCommunicativeInteraction
id
description
goal
Encapsulation
number
name
precondition
outgoingCommunicativeInteraction
specialisations
interfaceActor
Node
incoming
outgoing
Element
model
textualRequirement
Model
name
element
TextualRequirement
id
description
type
element
RequirementType
mediumRequirement
mediumRequirement
accreditationRequirement
accreditationRequirement
availabilityRequirement
availabilityRequirement
verificationRequirement
verificationRequirement
eventPrecondition
eventPrecondition
structuralConstraint
structuralConstraint
contextualConstraint
contextualConstraint
messageParticularisation
messageParticularisation
linkedBehaviour
linkedBehaviour
linkedCommunication
linkedCommunication
treatment
treatment
Precedence
source
target
Outgoing
messageStructure
receiver
event
CommunicativeInteraction
name
description
support
businessObjectClass
communicationChannel
Support
supportRoleSet
communicativeInteraction
CommunicativeRole
description
isInterfaceActor
organisationalRole
OrganisationalRole
name
description
duties
organisationalUnit
organisationalActor
organisationalRoleSet
communicativeRole
OrganisationalUnit
upper
process
organisationalActor
organisationalRole
Process
name
acronym
description
events
organisationalUnit
OrganisationalActor
firstName
lastName
phoneNumber
comments
organisationalRole
aggregation
organisationalUnit
Aggregation
organisationalActor
ComplexSubstructure
directItems
isInitialComplexSubstructureOf
isPartOf
pointers
Substructure
name
description
minimumCardinality
maximumCardinality
parent
messageStructure
MessageStructure
name
description
outgoing
ingoing
initialComplexSubstructure
complexSubstructure
substructures
Ingoing
primary
event
messageStructure
Primary
ingoingCommunicativeInteraction
ReferenceField
extendsBusinessObject
domain
Field
operation
derivationFormula
isIdentifier
example
Operation
input
input
generation
generation
derivation
derivation
OrganisationalRoleSet
organisationalRole
SupportRoleSet
support
BusinessObjectClass
name
description
businessObjectField
communicativeInteraction
BusinessObjectField
name
description
businessObjectClass
CommunicationChannel
description
communicativeInteraction
Receiver
outgoingCommunicativeInteraction
EventVariant
id
specialisationCondition
generalisation
Indicator
name
description
metric
operationalisation
Organisation
mission
LogigalNode
End
Start
And
Or
DataField
domain
Domain
number
number
text
text
date
date
money
money
Iteration
Specialisation | null | {"directed":true,"nodes":[{"nsPrefix":"cametamodel","nsURI":"http:///cametamodel.ecore","name":"cametamodel","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OrganisationalLocation","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OrganisationalModule","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Strategy","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Operationalisation","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Goal","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CommunicativeEvent","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Encapsulation","instanceClass":null,"abstract":true,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Node","instanceClass":null,"abstract":true,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Element","instanceClass":null,"abstract":true,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Model","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TextualRequirement","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"RequirementType","instanceClass":null,"id":12,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Precedence","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Outgoing","instanceClass":null,"abstract":false,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CommunicativeInteraction","instanceClass":null,"abstract":true,"id":15,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Support","instanceClass":null,"abstract":false,"id":16,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CommunicativeRole","instanceClass":null,"abstract":true,"id":17,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OrganisationalRole","instanceClass":null,"abstract":false,"id":18,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OrganisationalUnit","instanceClass":null,"abstract":false,"id":19,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Process","instanceClass":null,"abstract":false,"id":20,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OrganisationalActor","instanceClass":null,"abstract":false,"id":21,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Aggregation","instanceClass":null,"abstract":false,"id":22,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ComplexSubstructure","instanceClass":null,"abstract":true,"id":23,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Substructure","instanceClass":null,"abstract":true,"id":24,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MessageStructure","instanceClass":null,"abstract":false,"id":25,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Ingoing","instanceClass":null,"abstract":false,"id":26,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Primary","instanceClass":null,"abstract":false,"id":27,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ReferenceField","instanceClass":null,"abstract":false,"id":28,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Field","instanceClass":null,"abstract":true,"id":29,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"Operation","instanceClass":null,"id":30,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OrganisationalRoleSet","instanceClass":null,"abstract":false,"id":31,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SupportRoleSet","instanceClass":null,"abstract":false,"id":32,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BusinessObjectClass","instanceClass":null,"abstract":false,"id":33,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BusinessObjectField","instanceClass":null,"abstract":false,"id":34,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CommunicationChannel","instanceClass":null,"abstract":false,"id":35,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Receiver","instanceClass":null,"abstract":false,"id":36,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EventVariant","instanceClass":null,"abstract":false,"id":37,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Indicator","instanceClass":null,"abstract":false,"id":38,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Organisation","instanceClass":null,"abstract":false,"id":39,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LogigalNode","instanceClass":null,"abstract":true,"id":40,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"End","instanceClass":null,"abstract":false,"id":41,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Start","instanceClass":null,"abstract":false,"id":42,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"And","instanceClass":null,"abstract":false,"id":43,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Or","instanceClass":null,"abstract":false,"id":44,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DataField","instanceClass":null,"abstract":false,"id":45,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"Domain","instanceClass":null,"id":46,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Iteration","instanceClass":null,"abstract":false,"id":47,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Specialisation","instanceClass":null,"abstract":false,"id":48,"interface":false,"eClass":"EClass"},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":49,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"acronym","changeable":true,"lowerBound":1,"iD":false,"id":50,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"description","changeable":true,"lowerBound":1,"iD":false,"id":51,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"address","changeable":true,"lowerBound":1,"iD":false,"id":52,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"city","changeable":true,"lowerBound":1,"iD":false,"id":53,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"postNumber","changeable":true,"lowerBound":1,"iD":false,"id":54,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"country","changeable":true,"lowerBound":1,"iD":false,"id":55,"derived":false},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"organisationalModule","changeable":true,"resolveProxies":true,"lowerBound":1,"id":56,"derived":false},{"id":57,"eClass":"EGenericType"},{"id":58,"eClass":"EGenericType"},{"id":59,"eClass":"EGenericType"},{"id":60,"eClass":"EGenericType"},{"id":61,"eClass":"EGenericType"},{"id":62,"eClass":"EGenericType"},{"id":63,"eClass":"EGenericType"},{"id":64,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"organisationalLocation","changeable":true,"resolveProxies":true,"lowerBound":1,"id":65,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":66,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"acronym","changeable":true,"lowerBound":1,"iD":false,"id":67,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"description","changeable":true,"lowerBound":1,"iD":false,"id":68,"derived":false},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"strategy","changeable":true,"resolveProxies":true,"lowerBound":0,"id":69,"derived":false},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"goal","changeable":true,"resolveProxies":true,"lowerBound":0,"id":70,"derived":false},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"lower","changeable":true,"resolveProxies":true,"lowerBound":1,"id":71,"derived":false},{"id":72,"eClass":"EGenericType"},{"id":73,"eClass":"EGenericType"},{"id":74,"eClass":"EGenericType"},{"id":75,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"organisationalModule","changeable":true,"resolveProxies":true,"lowerBound":1,"id":76,"derived":false},{"id":77,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"organisationalModule","changeable":true,"resolveProxies":true,"lowerBound":1,"id":78,"derived":false},{"id":79,"eClass":"EGenericType"},{"container":true,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"upper","changeable":true,"resolveProxies":true,"lowerBound":1,"id":80,"derived":false},{"id":81,"eClass":"EGenericType"},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":82,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"description","changeable":true,"lowerBound":1,"iD":false,"id":83,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"strategyDate","changeable":true,"lowerBound":1,"iD":false,"id":84,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"actionPlan","changeable":true,"lowerBound":1,"iD":false,"id":85,"derived":false},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"operationalisation","changeable":true,"resolveProxies":true,"lowerBound":1,"id":86,"derived":false},{"id":87,"eClass":"EGenericType"},{"id":88,"eClass":"EGenericType"},{"id":89,"eClass":"EGenericType"},{"id":90,"eClass":"EGenericType"},{"id":91,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"strategy","changeable":true,"resolveProxies":true,"lowerBound":0,"id":92,"derived":false},{"id":93,"eClass":"EGenericType"},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"currentValue","changeable":true,"lowerBound":1,"iD":false,"id":94,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"targetValue","changeable":true,"lowerBound":1,"iD":false,"id":95,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"goal","changeable":true,"resolveProxies":true,"lowerBound":1,"id":96,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"indicator","changeable":true,"resolveProxies":true,"lowerBound":1,"id":97,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"targetDate","changeable":true,"lowerBound":1,"iD":false,"id":98,"derived":false},{"id":99,"eClass":"EGenericType"},{"id":100,"eClass":"EGenericType"},{"id":101,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"oper","changeable":true,"resolveProxies":true,"lowerBound":0,"id":102,"derived":false},{"id":103,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"operationalisation","changeable":true,"resolveProxies":true,"lowerBound":0,"id":104,"derived":false},{"id":105,"eClass":"EGenericType"},{"id":106,"eClass":"EGenericType"},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":107,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"description","changeable":true,"lowerBound":1,"iD":false,"id":108,"derived":false},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"event","changeable":true,"resolveProxies":true,"lowerBound":0,"id":109,"derived":false},{"id":110,"eClass":"EGenericType"},{"id":111,"eClass":"EGenericType"},{"id":112,"eClass":"EGenericType"},{"id":113,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"goal","changeable":true,"resolveProxies":true,"lowerBound":0,"id":114,"derived":false},{"id":115,"eClass":"EGenericType"},{"container":true,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"process","changeable":true,"resolveProxies":true,"lowerBound":1,"id":116,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"ingoingCommunicativeInteraction","changeable":true,"resolveProxies":true,"lowerBound":1,"id":117,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"id","changeable":true,"lowerBound":1,"iD":false,"id":118,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"description","changeable":true,"lowerBound":1,"iD":false,"id":119,"derived":false},{"id":120,"eClass":"EGenericType"},{"id":121,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"events","changeable":true,"resolveProxies":true,"lowerBound":1,"id":122,"derived":false},{"id":123,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"event","changeable":true,"resolveProxies":true,"lowerBound":1,"id":124,"derived":false},{"id":125,"eClass":"EGenericType"},{"id":126,"eClass":"EGenericType"},{"id":127,"eClass":"EGenericType"},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"number","changeable":true,"lowerBound":1,"iD":false,"id":128,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":129,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"precondition","changeable":true,"lowerBound":1,"iD":false,"id":130,"derived":false},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"outgoingCommunicativeInteraction","changeable":true,"resolveProxies":true,"lowerBound":0,"id":131,"derived":false},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"specialisations","changeable":true,"resolveProxies":true,"lowerBound":0,"id":132,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"interfaceActor","changeable":true,"lowerBound":1,"iD":false,"id":133,"derived":false},{"id":134,"eClass":"EGenericType"},{"id":135,"eClass":"EGenericType"},{"id":136,"eClass":"EGenericType"},{"id":137,"eClass":"EGenericType"},{"id":138,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"event","changeable":true,"resolveProxies":true,"lowerBound":1,"id":139,"derived":false},{"id":140,"eClass":"EGenericType"},{"container":true,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"generalisation","changeable":true,"resolveProxies":true,"lowerBound":1,"id":141,"derived":false},{"id":142,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"incoming","changeable":true,"resolveProxies":true,"lowerBound":0,"id":143,"derived":false},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"outgoing","changeable":true,"resolveProxies":true,"lowerBound":0,"id":144,"derived":false},{"id":145,"eClass":"EGenericType"},{"id":146,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"target","changeable":true,"resolveProxies":true,"lowerBound":1,"id":147,"derived":false},{"id":148,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"source","changeable":true,"resolveProxies":true,"lowerBound":1,"id":149,"derived":false},{"container":true,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"model","changeable":true,"resolveProxies":true,"lowerBound":1,"id":150,"derived":false},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"textualRequirement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":151,"derived":false},{"id":152,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"element","changeable":true,"resolveProxies":true,"lowerBound":0,"id":153,"derived":false},{"id":154,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"element","changeable":true,"resolveProxies":true,"lowerBound":1,"id":155,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":156,"derived":false},{"id":157,"eClass":"EGenericType"},{"id":158,"eClass":"EGenericType"},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"id","changeable":true,"lowerBound":1,"iD":false,"id":159,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"description","changeable":true,"lowerBound":1,"iD":false,"id":160,"derived":false},{"ordered":false,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"lowerBound":1,"iD":false,"id":161,"derived":false},{"id":162,"eClass":"EGenericType"},{"id":163,"eClass":"EGenericType"},{"id":164,"eClass":"EGenericType"},{"id":165,"eClass":"EGenericType"},{"id":166,"eClass":"EGenericType"},{"name":"mediumRequirement","id":167,"value":0,"literal":"mediumRequirement","eClass":"EEnumLiteral"},{"name":"accreditationRequirement","id":168,"value":1,"literal":"accreditationRequirement","eClass":"EEnumLiteral"},{"name":"availabilityRequirement","id":169,"value":2,"literal":"availabilityRequirement","eClass":"EEnumLiteral"},{"name":"verificationRequirement","id":170,"value":3,"literal":"verificationRequirement","eClass":"EEnumLiteral"},{"name":"eventPrecondition","id":171,"value":4,"literal":"eventPrecondition","eClass":"EEnumLiteral"},{"name":"structuralConstraint","id":172,"value":5,"literal":"structuralConstraint","eClass":"EEnumLiteral"},{"name":"contextualConstraint","id":173,"value":6,"literal":"contextualConstraint","eClass":"EEnumLiteral"},{"name":"messageParticularisation","id":174,"value":7,"literal":"messageParticularisation","eClass":"EEnumLiteral"},{"name":"linkedBehaviour","id":175,"value":8,"literal":"linkedBehaviour","eClass":"EEnumLiteral"},{"name":"linkedCommunication","id":176,"value":9,"literal":"linkedCommunication","eClass":"EEnumLiteral"},{"name":"treatment","id":177,"value":10,"literal":"treatment","eClass":"EEnumLiteral"},{"id":178,"eClass":"EGenericType"},{"id":179,"eClass":"EGenericType"},{"id":180,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"messageStructure","changeable":true,"resolveProxies":true,"lowerBound":1,"id":181,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"receiver","changeable":true,"resolveProxies":true,"lowerBound":1,"id":182,"derived":false},{"id":183,"eClass":"EGenericType"},{"id":184,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"outgoing","changeable":true,"resolveProxies":true,"lowerBound":0,"id":185,"derived":false},{"id":186,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"outgoingCommunicativeInteraction","changeable":true,"resolveProxies":true,"lowerBound":1,"id":187,"derived":false},{"id":188,"eClass":"EGenericType"},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":189,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"description","changeable":true,"lowerBound":1,"iD":false,"id":190,"derived":false},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"support","changeable":true,"resolveProxies":true,"lowerBound":0,"id":191,"derived":false},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"businessObjectClass","changeable":true,"resolveProxies":true,"lowerBound":0,"id":192,"derived":false},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"communicationChannel","changeable":true,"resolveProxies":true,"lowerBound":0,"id":193,"derived":false},{"id":194,"eClass":"EGenericType"},{"id":195,"eClass":"EGenericType"},{"id":196,"eClass":"EGenericType"},{"id":197,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"communicativeInteraction","changeable":true,"resolveProxies":true,"lowerBound":1,"id":198,"derived":false},{"id":199,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"communicativeInteraction","changeable":true,"resolveProxies":true,"lowerBound":0,"id":200,"derived":false},{"id":201,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"communicativeInteraction","changeable":true,"resolveProxies":true,"lowerBound":0,"id":202,"derived":false},{"container":true,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"supportRoleSet","changeable":true,"resolveProxies":true,"lowerBound":1,"id":203,"derived":false},{"id":204,"eClass":"EGenericType"},{"id":205,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"support","changeable":true,"resolveProxies":true,"lowerBound":0,"id":206,"derived":false},{"id":207,"eClass":"EGenericType"},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"description","changeable":true,"lowerBound":1,"iD":false,"id":208,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isInterfaceActor","changeable":true,"lowerBound":1,"iD":false,"id":209,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"organisationalRole","changeable":true,"resolveProxies":true,"lowerBound":1,"id":210,"derived":false},{"id":211,"eClass":"EGenericType"},{"id":212,"eClass":"EGenericType"},{"id":213,"eClass":"EGenericType"},{"id":214,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"communicativeRole","changeable":true,"resolveProxies":true,"lowerBound":0,"id":215,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":216,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"description","changeable":true,"lowerBound":1,"iD":false,"id":217,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"duties","changeable":true,"lowerBound":1,"iD":false,"id":218,"derived":false},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"organisationalUnit","changeable":true,"resolveProxies":true,"lowerBound":1,"id":219,"derived":false},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"organisationalActor","changeable":true,"resolveProxies":true,"lowerBound":0,"id":220,"derived":false},{"container":true,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"organisationalRoleSet","changeable":true,"resolveProxies":true,"lowerBound":1,"id":221,"derived":false},{"id":222,"eClass":"EGenericType"},{"id":223,"eClass":"EGenericType"},{"id":224,"eClass":"EGenericType"},{"id":225,"eClass":"EGenericType"},{"id":226,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"organisationalRole","changeable":true,"resolveProxies":true,"lowerBound":1,"id":227,"derived":false},{"id":228,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"organisationalRole","changeable":true,"resolveProxies":true,"lowerBound":0,"id":229,"derived":false},{"id":230,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"organisationalRole","changeable":true,"resolveProxies":true,"lowerBound":1,"id":231,"derived":false},{"id":232,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"process","changeable":true,"resolveProxies":true,"lowerBound":0,"id":233,"derived":false},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"organisationalActor","changeable":true,"resolveProxies":true,"lowerBound":1,"id":234,"derived":false},{"id":235,"eClass":"EGenericType"},{"id":236,"eClass":"EGenericType"},{"id":237,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"organisationalUnit","changeable":true,"resolveProxies":true,"lowerBound":0,"id":238,"derived":false},{"id":239,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"organisationalUnit","changeable":true,"resolveProxies":true,"lowerBound":1,"id":240,"derived":false},{"id":241,"eClass":"EGenericType"},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":242,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"acronym","changeable":true,"lowerBound":1,"iD":false,"id":243,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"description","changeable":true,"lowerBound":1,"iD":false,"id":244,"derived":false},{"id":245,"eClass":"EGenericType"},{"id":246,"eClass":"EGenericType"},{"id":247,"eClass":"EGenericType"},{"id":248,"eClass":"EGenericType"},{"id":249,"eClass":"EGenericType"},{"id":250,"eClass":"EGenericType"},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"firstName","changeable":true,"lowerBound":1,"iD":false,"id":251,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"lastName","changeable":true,"lowerBound":1,"iD":false,"id":252,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"phoneNumber","changeable":true,"lowerBound":1,"iD":false,"id":253,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"comments","changeable":true,"lowerBound":1,"iD":false,"id":254,"derived":false},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"aggregation","changeable":true,"resolveProxies":true,"lowerBound":0,"id":255,"derived":false},{"id":256,"eClass":"EGenericType"},{"id":257,"eClass":"EGenericType"},{"id":258,"eClass":"EGenericType"},{"id":259,"eClass":"EGenericType"},{"id":260,"eClass":"EGenericType"},{"id":261,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"organisationalActor","changeable":true,"resolveProxies":true,"lowerBound":0,"id":262,"derived":false},{"id":263,"eClass":"EGenericType"},{"id":264,"eClass":"EGenericType"},{"id":265,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"directItems","changeable":true,"resolveProxies":true,"lowerBound":1,"id":266,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"isInitialComplexSubstructureOf","changeable":true,"resolveProxies":true,"lowerBound":0,"id":267,"derived":false},{"container":true,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"isPartOf","changeable":true,"resolveProxies":true,"lowerBound":1,"id":268,"derived":false},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"pointers","changeable":true,"resolveProxies":true,"lowerBound":0,"id":269,"derived":false},{"id":270,"eClass":"EGenericType"},{"id":271,"eClass":"EGenericType"},{"container":true,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"parent","changeable":true,"resolveProxies":true,"lowerBound":1,"id":272,"derived":false},{"id":273,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"initialComplexSubstructure","changeable":true,"resolveProxies":true,"lowerBound":1,"id":274,"derived":false},{"id":275,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"complexSubstructure","changeable":true,"resolveProxies":true,"lowerBound":1,"id":276,"derived":false},{"id":277,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"domain","changeable":true,"resolveProxies":true,"lowerBound":1,"id":278,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":279,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"description","changeable":true,"lowerBound":1,"iD":false,"id":280,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"minimumCardinality","changeable":true,"lowerBound":1,"iD":false,"id":281,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"maximumCardinality","changeable":true,"lowerBound":1,"iD":false,"id":282,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"messageStructure","changeable":true,"resolveProxies":true,"lowerBound":0,"id":283,"derived":false},{"id":284,"eClass":"EGenericType"},{"id":285,"eClass":"EGenericType"},{"id":286,"eClass":"EGenericType"},{"id":287,"eClass":"EGenericType"},{"id":288,"eClass":"EGenericType"},{"id":289,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"substructures","changeable":true,"resolveProxies":true,"lowerBound":0,"id":290,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":291,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"description","changeable":true,"lowerBound":1,"iD":false,"id":292,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"ingoing","changeable":true,"resolveProxies":true,"lowerBound":1,"id":293,"derived":false},{"id":294,"eClass":"EGenericType"},{"id":295,"eClass":"EGenericType"},{"id":296,"eClass":"EGenericType"},{"id":297,"eClass":"EGenericType"},{"id":298,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"messageStructure","changeable":true,"resolveProxies":true,"lowerBound":1,"id":299,"derived":false},{"id":300,"eClass":"EGenericType"},{"id":301,"eClass":"EGenericType"},{"id":302,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"primary","changeable":true,"resolveProxies":true,"lowerBound":1,"id":303,"derived":false},{"id":304,"eClass":"EGenericType"},{"id":305,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"ingoingCommunicativeInteraction","changeable":true,"resolveProxies":true,"lowerBound":1,"id":306,"derived":false},{"id":307,"eClass":"EGenericType"},{"id":308,"eClass":"EGenericType"},{"id":309,"eClass":"EGenericType"},{"id":310,"eClass":"EGenericType"},{"ordered":false,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"extendsBusinessObject","changeable":true,"lowerBound":1,"iD":false,"id":311,"derived":false},{"id":312,"eClass":"EGenericType"},{"id":313,"eClass":"EGenericType"},{"id":314,"eClass":"EGenericType"},{"ordered":false,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"operation","changeable":true,"lowerBound":1,"iD":false,"id":315,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"derivationFormula","changeable":true,"lowerBound":1,"iD":false,"id":316,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isIdentifier","changeable":true,"lowerBound":1,"iD":false,"id":317,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"example","changeable":true,"lowerBound":1,"iD":false,"id":318,"derived":false},{"id":319,"eClass":"EGenericType"},{"id":320,"eClass":"EGenericType"},{"id":321,"eClass":"EGenericType"},{"id":322,"eClass":"EGenericType"},{"id":323,"eClass":"EGenericType"},{"name":"input","id":324,"value":0,"literal":"input","eClass":"EEnumLiteral"},{"name":"generation","id":325,"value":1,"literal":"generation","eClass":"EEnumLiteral"},{"name":"derivation","id":326,"value":2,"literal":"derivation","eClass":"EEnumLiteral"},{"id":327,"eClass":"EGenericType"},{"id":328,"eClass":"EGenericType"},{"id":329,"eClass":"EGenericType"},{"id":330,"eClass":"EGenericType"},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":331,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"description","changeable":true,"lowerBound":1,"iD":false,"id":332,"derived":false},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"businessObjectField","changeable":true,"resolveProxies":true,"lowerBound":0,"id":333,"derived":false},{"id":334,"eClass":"EGenericType"},{"id":335,"eClass":"EGenericType"},{"id":336,"eClass":"EGenericType"},{"container":true,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"businessObjectClass","changeable":true,"resolveProxies":true,"lowerBound":1,"id":337,"derived":false},{"id":338,"eClass":"EGenericType"},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":339,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"description","changeable":true,"lowerBound":1,"iD":false,"id":340,"derived":false},{"id":341,"eClass":"EGenericType"},{"id":342,"eClass":"EGenericType"},{"id":343,"eClass":"EGenericType"},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"description","changeable":true,"lowerBound":1,"iD":false,"id":344,"derived":false},{"id":345,"eClass":"EGenericType"},{"id":346,"eClass":"EGenericType"},{"id":347,"eClass":"EGenericType"},{"id":348,"eClass":"EGenericType"},{"id":349,"eClass":"EGenericType"},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"id","changeable":true,"lowerBound":1,"iD":false,"id":350,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"specialisationCondition","changeable":true,"lowerBound":1,"iD":false,"id":351,"derived":false},{"id":352,"eClass":"EGenericType"},{"id":353,"eClass":"EGenericType"},{"id":354,"eClass":"EGenericType"},{"id":355,"eClass":"EGenericType"},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":356,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"description","changeable":true,"lowerBound":1,"iD":false,"id":357,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"metric","changeable":true,"lowerBound":1,"iD":false,"id":358,"derived":false},{"id":359,"eClass":"EGenericType"},{"id":360,"eClass":"EGenericType"},{"id":361,"eClass":"EGenericType"},{"id":362,"eClass":"EGenericType"},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"mission","changeable":true,"lowerBound":1,"iD":false,"id":363,"derived":false},{"id":364,"eClass":"EGenericType"},{"id":365,"eClass":"EGenericType"},{"id":366,"eClass":"EGenericType"},{"id":367,"eClass":"EGenericType"},{"id":368,"eClass":"EGenericType"},{"id":369,"eClass":"EGenericType"},{"id":370,"eClass":"EGenericType"},{"ordered":false,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"domain","changeable":true,"lowerBound":1,"iD":false,"id":371,"derived":false},{"id":372,"eClass":"EGenericType"},{"id":373,"eClass":"EGenericType"},{"name":"number","id":374,"value":0,"literal":"number","eClass":"EEnumLiteral"},{"name":"text","id":375,"value":1,"literal":"text","eClass":"EEnumLiteral"},{"name":"date","id":376,"value":2,"literal":"date","eClass":"EEnumLiteral"},{"name":"money","id":377,"value":3,"literal":"money","eClass":"EEnumLiteral"},{"id":378,"eClass":"EGenericType"},{"id":379,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":0,"target":8},{"source":0,"target":9},{"source":0,"target":10},{"source":0,"target":11},{"source":0,"target":12},{"source":0,"target":13},{"source":0,"target":14},{"source":0,"target":15},{"source":0,"target":16},{"source":0,"target":17},{"source":0,"target":18},{"source":0,"target":19},{"source":0,"target":20},{"source":0,"target":21},{"source":0,"target":22},{"source":0,"target":23},{"source":0,"target":24},{"source":0,"target":25},{"source":0,"target":26},{"source":0,"target":27},{"source":0,"target":28},{"source":0,"target":29},{"source":0,"target":30},{"source":0,"target":31},{"source":0,"target":32},{"source":0,"target":33},{"source":0,"target":34},{"source":0,"target":35},{"source":0,"target":36},{"source":0,"target":37},{"source":0,"target":38},{"source":0,"target":39},{"source":0,"target":40},{"source":0,"target":41},{"source":0,"target":42},{"source":0,"target":43},{"source":0,"target":44},{"source":0,"target":45},{"source":0,"target":46},{"source":0,"target":47},{"source":0,"target":48},{"source":1,"target":0},{"source":1,"target":49},{"source":1,"target":50},{"source":1,"target":51},{"source":1,"target":52},{"source":1,"target":53},{"source":1,"target":54},{"source":1,"target":55},{"source":1,"target":56},{"source":49,"target":57},{"source":49,"target":1},{"source":50,"target":58},{"source":50,"target":1},{"source":51,"target":59},{"source":51,"target":1},{"source":52,"target":60},{"source":52,"target":1},{"source":53,"target":61},{"source":53,"target":1},{"source":54,"target":62},{"source":54,"target":1},{"source":55,"target":63},{"source":55,"target":1},{"source":56,"target":2},{"source":56,"target":64},{"source":56,"target":1},{"source":56,"target":65},{"source":64,"target":2},{"source":2,"target":0},{"source":2,"target":66},{"source":2,"target":67},{"source":2,"target":68},{"source":2,"target":69},{"source":2,"target":70},{"source":2,"target":71},{"source":2,"target":65},{"source":66,"target":72},{"source":66,"target":2},{"source":67,"target":73},{"source":67,"target":2},{"source":68,"target":74},{"source":68,"target":2},{"source":69,"target":3},{"source":69,"target":75},{"source":69,"target":2},{"source":69,"target":76},{"source":75,"target":3},{"source":70,"target":5},{"source":70,"target":77},{"source":70,"target":2},{"source":70,"target":78},{"source":77,"target":5},{"source":71,"target":19},{"source":71,"target":79},{"source":71,"target":2},{"source":71,"target":80},{"source":79,"target":19},{"source":65,"target":1},{"source":65,"target":81},{"source":65,"target":2},{"source":65,"target":56},{"source":81,"target":1},{"source":3,"target":0},{"source":3,"target":82},{"source":3,"target":83},{"source":3,"target":84},{"source":3,"target":85},{"source":3,"target":86},{"source":3,"target":76},{"source":82,"target":87},{"source":82,"target":3},{"source":83,"target":88},{"source":83,"target":3},{"source":84,"target":89},{"source":84,"target":3},{"source":85,"target":90},{"source":85,"target":3},{"source":86,"target":4},{"source":86,"target":91},{"source":86,"target":3},{"source":86,"target":92},{"source":91,"target":4},{"source":76,"target":2},{"source":76,"target":93},{"source":76,"target":3},{"source":76,"target":69},{"source":93,"target":2},{"source":4,"target":0},{"source":4,"target":94},{"source":4,"target":95},{"source":4,"target":96},{"source":4,"target":97},{"source":4,"target":98},{"source":4,"target":92},{"source":94,"target":99},{"source":94,"target":4},{"source":95,"target":100},{"source":95,"target":4},{"source":96,"target":5},{"source":96,"target":101},{"source":96,"target":4},{"source":96,"target":102},{"source":101,"target":5},{"source":97,"target":38},{"source":97,"target":103},{"source":97,"target":4},{"source":97,"target":104},{"source":103,"target":38},{"source":98,"target":105},{"source":98,"target":4},{"source":92,"target":3},{"source":92,"target":106},{"source":92,"target":4},{"source":92,"target":86},{"source":106,"target":3},{"source":5,"target":0},{"source":5,"target":107},{"source":5,"target":108},{"source":5,"target":78},{"source":5,"target":109},{"source":5,"target":102},{"source":107,"target":110},{"source":107,"target":5},{"source":108,"target":111},{"source":108,"target":5},{"source":78,"target":2},{"source":78,"target":112},{"source":78,"target":5},{"source":78,"target":70},{"source":112,"target":2},{"source":109,"target":6},{"source":109,"target":113},{"source":109,"target":5},{"source":109,"target":114},{"source":113,"target":6},{"source":102,"target":4},{"source":102,"target":115},{"source":102,"target":5},{"source":102,"target":96},{"source":115,"target":4},{"source":6,"target":0},{"source":6,"target":7},{"source":6,"target":116},{"source":6,"target":117},{"source":6,"target":118},{"source":6,"target":119},{"source":6,"target":114},{"source":6,"target":120},{"source":116,"target":20},{"source":116,"target":121},{"source":116,"target":6},{"source":116,"target":122},{"source":121,"target":20},{"source":117,"target":26},{"source":117,"target":123},{"source":117,"target":6},{"source":117,"target":124},{"source":123,"target":26},{"source":118,"target":125},{"source":118,"target":6},{"source":119,"target":126},{"source":119,"target":6},{"source":114,"target":5},{"source":114,"target":127},{"source":114,"target":6},{"source":114,"target":109},{"source":127,"target":5},{"source":120,"target":7},{"source":7,"target":0},{"source":7,"target":8},{"source":7,"target":128},{"source":7,"target":129},{"source":7,"target":130},{"source":7,"target":131},{"source":7,"target":132},{"source":7,"target":133},{"source":7,"target":134},{"source":128,"target":135},{"source":128,"target":7},{"source":129,"target":136},{"source":129,"target":7},{"source":130,"target":137},{"source":130,"target":7},{"source":131,"target":14},{"source":131,"target":138},{"source":131,"target":7},{"source":131,"target":139},{"source":138,"target":14},{"source":132,"target":37},{"source":132,"target":140},{"source":132,"target":7},{"source":132,"target":141},{"source":140,"target":37},{"source":133,"target":142},{"source":133,"target":7},{"source":134,"target":8},{"source":8,"target":0},{"source":8,"target":9},{"source":8,"target":143},{"source":8,"target":144},{"source":8,"target":145},{"source":143,"target":13},{"source":143,"target":146},{"source":143,"target":8},{"source":143,"target":147},{"source":146,"target":13},{"source":144,"target":13},{"source":144,"target":148},{"source":144,"target":8},{"source":144,"target":149},{"source":148,"target":13},{"source":145,"target":9},{"source":9,"target":0},{"source":9,"target":150},{"source":9,"target":151},{"source":150,"target":10},{"source":150,"target":152},{"source":150,"target":9},{"source":150,"target":153},{"source":152,"target":10},{"source":151,"target":11},{"source":151,"target":154},{"source":151,"target":9},{"source":151,"target":155},{"source":154,"target":11},{"source":10,"target":0},{"source":10,"target":156},{"source":10,"target":153},{"source":156,"target":157},{"source":156,"target":10},{"source":153,"target":9},{"source":153,"target":158},{"source":153,"target":10},{"source":153,"target":150},{"source":158,"target":9},{"source":11,"target":0},{"source":11,"target":9},{"source":11,"target":159},{"source":11,"target":160},{"source":11,"target":161},{"source":11,"target":155},{"source":11,"target":162},{"source":159,"target":163},{"source":159,"target":11},{"source":160,"target":164},{"source":160,"target":11},{"source":161,"target":12},{"source":161,"target":165},{"source":161,"target":11},{"source":165,"target":12},{"source":155,"target":9},{"source":155,"target":166},{"source":155,"target":11},{"source":155,"target":151},{"source":166,"target":9},{"source":162,"target":9},{"source":12,"target":0},{"source":12,"target":167},{"source":12,"target":168},{"source":12,"target":169},{"source":12,"target":170},{"source":12,"target":171},{"source":12,"target":172},{"source":12,"target":173},{"source":12,"target":174},{"source":12,"target":175},{"source":12,"target":176},{"source":12,"target":177},{"source":167,"target":12},{"source":168,"target":12},{"source":169,"target":12},{"source":170,"target":12},{"source":171,"target":12},{"source":172,"target":12},{"source":173,"target":12},{"source":174,"target":12},{"source":175,"target":12},{"source":176,"target":12},{"source":177,"target":12},{"source":13,"target":0},{"source":13,"target":9},{"source":13,"target":149},{"source":13,"target":147},{"source":13,"target":178},{"source":149,"target":8},{"source":149,"target":179},{"source":149,"target":13},{"source":149,"target":144},{"source":179,"target":8},{"source":147,"target":8},{"source":147,"target":180},{"source":147,"target":13},{"source":147,"target":143},{"source":180,"target":8},{"source":178,"target":9},{"source":14,"target":0},{"source":14,"target":15},{"source":14,"target":181},{"source":14,"target":182},{"source":14,"target":139},{"source":14,"target":183},{"source":181,"target":25},{"source":181,"target":184},{"source":181,"target":14},{"source":181,"target":185},{"source":184,"target":25},{"source":182,"target":36},{"source":182,"target":186},{"source":182,"target":14},{"source":182,"target":187},{"source":186,"target":36},{"source":139,"target":7},{"source":139,"target":188},{"source":139,"target":14},{"source":139,"target":131},{"source":188,"target":7},{"source":183,"target":15},{"source":15,"target":0},{"source":15,"target":9},{"source":15,"target":189},{"source":15,"target":190},{"source":15,"target":191},{"source":15,"target":192},{"source":15,"target":193},{"source":15,"target":194},{"source":189,"target":195},{"source":189,"target":15},{"source":190,"target":196},{"source":190,"target":15},{"source":191,"target":16},{"source":191,"target":197},{"source":191,"target":15},{"source":191,"target":198},{"source":197,"target":16},{"source":192,"target":33},{"source":192,"target":199},{"source":192,"target":15},{"source":192,"target":200},{"source":199,"target":33},{"source":193,"target":35},{"source":193,"target":201},{"source":193,"target":15},{"source":193,"target":202},{"source":201,"target":35},{"source":194,"target":9},{"source":16,"target":0},{"source":16,"target":17},{"source":16,"target":203},{"source":16,"target":198},{"source":16,"target":204},{"source":203,"target":32},{"source":203,"target":205},{"source":203,"target":16},{"source":203,"target":206},{"source":205,"target":32},{"source":198,"target":15},{"source":198,"target":207},{"source":198,"target":16},{"source":198,"target":191},{"source":207,"target":15},{"source":204,"target":17},{"source":17,"target":0},{"source":17,"target":9},{"source":17,"target":208},{"source":17,"target":209},{"source":17,"target":210},{"source":17,"target":211},{"source":208,"target":212},{"source":208,"target":17},{"source":209,"target":213},{"source":209,"target":17},{"source":210,"target":18},{"source":210,"target":214},{"source":210,"target":17},{"source":210,"target":215},{"source":214,"target":18},{"source":211,"target":9},{"source":18,"target":0},{"source":18,"target":9},{"source":18,"target":216},{"source":18,"target":217},{"source":18,"target":218},{"source":18,"target":219},{"source":18,"target":220},{"source":18,"target":221},{"source":18,"target":215},{"source":18,"target":222},{"source":216,"target":223},{"source":216,"target":18},{"source":217,"target":224},{"source":217,"target":18},{"source":218,"target":225},{"source":218,"target":18},{"source":219,"target":19},{"source":219,"target":226},{"source":219,"target":18},{"source":219,"target":227},{"source":226,"target":19},{"source":220,"target":21},{"source":220,"target":228},{"source":220,"target":18},{"source":220,"target":229},{"source":228,"target":21},{"source":221,"target":31},{"source":221,"target":230},{"source":221,"target":18},{"source":221,"target":231},{"source":230,"target":31},{"source":215,"target":17},{"source":215,"target":232},{"source":215,"target":18},{"source":215,"target":210},{"source":232,"target":17},{"source":222,"target":9},{"source":19,"target":0},{"source":19,"target":2},{"source":19,"target":80},{"source":19,"target":233},{"source":19,"target":234},{"source":19,"target":227},{"source":19,"target":235},{"source":80,"target":2},{"source":80,"target":236},{"source":80,"target":19},{"source":80,"target":71},{"source":236,"target":2},{"source":233,"target":20},{"source":233,"target":237},{"source":233,"target":19},{"source":233,"target":238},{"source":237,"target":20},{"source":234,"target":21},{"source":234,"target":239},{"source":234,"target":19},{"source":234,"target":240},{"source":239,"target":21},{"source":227,"target":18},{"source":227,"target":241},{"source":227,"target":19},{"source":227,"target":219},{"source":241,"target":18},{"source":235,"target":2},{"source":20,"target":0},{"source":20,"target":9},{"source":20,"target":242},{"source":20,"target":243},{"source":20,"target":244},{"source":20,"target":122},{"source":20,"target":238},{"source":20,"target":245},{"source":242,"target":246},{"source":242,"target":20},{"source":243,"target":247},{"source":243,"target":20},{"source":244,"target":248},{"source":244,"target":20},{"source":122,"target":6},{"source":122,"target":249},{"source":122,"target":20},{"source":122,"target":116},{"source":249,"target":6},{"source":238,"target":19},{"source":238,"target":250},{"source":238,"target":20},{"source":238,"target":233},{"source":250,"target":19},{"source":245,"target":9},{"source":21,"target":0},{"source":21,"target":251},{"source":21,"target":252},{"source":21,"target":253},{"source":21,"target":254},{"source":21,"target":229},{"source":21,"target":255},{"source":21,"target":240},{"source":251,"target":256},{"source":251,"target":21},{"source":252,"target":257},{"source":252,"target":21},{"source":253,"target":258},{"source":253,"target":21},{"source":254,"target":259},{"source":254,"target":21},{"source":229,"target":18},{"source":229,"target":260},{"source":229,"target":21},{"source":229,"target":220},{"source":260,"target":18},{"source":255,"target":22},{"source":255,"target":261},{"source":255,"target":21},{"source":255,"target":262},{"source":261,"target":22},{"source":240,"target":19},{"source":240,"target":263},{"source":240,"target":21},{"source":240,"target":234},{"source":263,"target":19},{"source":22,"target":0},{"source":22,"target":23},{"source":22,"target":262},{"source":22,"target":264},{"source":262,"target":21},{"source":262,"target":265},{"source":262,"target":22},{"source":262,"target":255},{"source":265,"target":21},{"source":264,"target":23},{"source":23,"target":0},{"source":23,"target":24},{"source":23,"target":266},{"source":23,"target":267},{"source":23,"target":268},{"source":23,"target":269},{"source":23,"target":270},{"source":266,"target":24},{"source":266,"target":271},{"source":266,"target":23},{"source":266,"target":272},{"source":271,"target":24},{"source":267,"target":25},{"source":267,"target":273},{"source":267,"target":23},{"source":267,"target":274},{"source":273,"target":25},{"source":268,"target":25},{"source":268,"target":275},{"source":268,"target":23},{"source":268,"target":276},{"source":275,"target":25},{"source":269,"target":28},{"source":269,"target":277},{"source":269,"target":23},{"source":269,"target":278},{"source":277,"target":28},{"source":270,"target":24},{"source":24,"target":0},{"source":24,"target":279},{"source":24,"target":280},{"source":24,"target":281},{"source":24,"target":282},{"source":24,"target":272},{"source":24,"target":283},{"source":279,"target":284},{"source":279,"target":24},{"source":280,"target":285},{"source":280,"target":24},{"source":281,"target":286},{"source":281,"target":24},{"source":282,"target":287},{"source":282,"target":24},{"source":272,"target":23},{"source":272,"target":288},{"source":272,"target":24},{"source":272,"target":266},{"source":288,"target":23},{"source":283,"target":25},{"source":283,"target":289},{"source":283,"target":24},{"source":283,"target":290},{"source":289,"target":25},{"source":25,"target":0},{"source":25,"target":9},{"source":25,"target":291},{"source":25,"target":292},{"source":25,"target":185},{"source":25,"target":293},{"source":25,"target":274},{"source":25,"target":276},{"source":25,"target":290},{"source":25,"target":294},{"source":291,"target":295},{"source":291,"target":25},{"source":292,"target":296},{"source":292,"target":25},{"source":185,"target":14},{"source":185,"target":297},{"source":185,"target":25},{"source":185,"target":181},{"source":297,"target":14},{"source":293,"target":26},{"source":293,"target":298},{"source":293,"target":25},{"source":293,"target":299},{"source":298,"target":26},{"source":274,"target":23},{"source":274,"target":300},{"source":274,"target":25},{"source":274,"target":267},{"source":300,"target":23},{"source":276,"target":23},{"source":276,"target":301},{"source":276,"target":25},{"source":276,"target":268},{"source":301,"target":23},{"source":290,"target":24},{"source":290,"target":302},{"source":290,"target":25},{"source":290,"target":283},{"source":302,"target":24},{"source":294,"target":9},{"source":26,"target":0},{"source":26,"target":15},{"source":26,"target":303},{"source":26,"target":124},{"source":26,"target":299},{"source":26,"target":304},{"source":303,"target":27},{"source":303,"target":305},{"source":303,"target":26},{"source":303,"target":306},{"source":305,"target":27},{"source":124,"target":6},{"source":124,"target":307},{"source":124,"target":26},{"source":124,"target":117},{"source":307,"target":6},{"source":299,"target":25},{"source":299,"target":308},{"source":299,"target":26},{"source":299,"target":293},{"source":308,"target":25},{"source":304,"target":15},{"source":27,"target":0},{"source":27,"target":17},{"source":27,"target":306},{"source":27,"target":309},{"source":306,"target":26},{"source":306,"target":310},{"source":306,"target":27},{"source":306,"target":303},{"source":310,"target":26},{"source":309,"target":17},{"source":28,"target":0},{"source":28,"target":29},{"source":28,"target":311},{"source":28,"target":278},{"source":28,"target":312},{"source":311,"target":313},{"source":311,"target":28},{"source":278,"target":23},{"source":278,"target":314},{"source":278,"target":28},{"source":278,"target":269},{"source":314,"target":23},{"source":312,"target":29},{"source":29,"target":0},{"source":29,"target":24},{"source":29,"target":315},{"source":29,"target":316},{"source":29,"target":317},{"source":29,"target":318},{"source":29,"target":319},{"source":315,"target":30},{"source":315,"target":320},{"source":315,"target":29},{"source":320,"target":30},{"source":316,"target":321},{"source":316,"target":29},{"source":317,"target":322},{"source":317,"target":29},{"source":318,"target":323},{"source":318,"target":29},{"source":319,"target":24},{"source":30,"target":0},{"source":30,"target":324},{"source":30,"target":325},{"source":30,"target":326},{"source":324,"target":30},{"source":325,"target":30},{"source":326,"target":30},{"source":31,"target":0},{"source":31,"target":9},{"source":31,"target":231},{"source":31,"target":327},{"source":231,"target":18},{"source":231,"target":328},{"source":231,"target":31},{"source":231,"target":221},{"source":328,"target":18},{"source":327,"target":9},{"source":32,"target":0},{"source":32,"target":9},{"source":32,"target":206},{"source":32,"target":329},{"source":206,"target":16},{"source":206,"target":330},{"source":206,"target":32},{"source":206,"target":203},{"source":330,"target":16},{"source":329,"target":9},{"source":33,"target":0},{"source":33,"target":331},{"source":33,"target":332},{"source":33,"target":333},{"source":33,"target":200},{"source":331,"target":334},{"source":331,"target":33},{"source":332,"target":335},{"source":332,"target":33},{"source":333,"target":34},{"source":333,"target":336},{"source":333,"target":33},{"source":333,"target":337},{"source":336,"target":34},{"source":200,"target":15},{"source":200,"target":338},{"source":200,"target":33},{"source":200,"target":192},{"source":338,"target":15},{"source":34,"target":0},{"source":34,"target":339},{"source":34,"target":340},{"source":34,"target":337},{"source":339,"target":341},{"source":339,"target":34},{"source":340,"target":342},{"source":340,"target":34},{"source":337,"target":33},{"source":337,"target":343},{"source":337,"target":34},{"source":337,"target":333},{"source":343,"target":33},{"source":35,"target":0},{"source":35,"target":9},{"source":35,"target":344},{"source":35,"target":202},{"source":35,"target":345},{"source":344,"target":346},{"source":344,"target":35},{"source":202,"target":15},{"source":202,"target":347},{"source":202,"target":35},{"source":202,"target":193},{"source":347,"target":15},{"source":345,"target":9},{"source":36,"target":0},{"source":36,"target":17},{"source":36,"target":187},{"source":36,"target":348},{"source":187,"target":14},{"source":187,"target":349},{"source":187,"target":36},{"source":187,"target":182},{"source":349,"target":14},{"source":348,"target":17},{"source":37,"target":0},{"source":37,"target":7},{"source":37,"target":350},{"source":37,"target":351},{"source":37,"target":141},{"source":37,"target":352},{"source":350,"target":353},{"source":350,"target":37},{"source":351,"target":354},{"source":351,"target":37},{"source":141,"target":7},{"source":141,"target":355},{"source":141,"target":37},{"source":141,"target":132},{"source":355,"target":7},{"source":352,"target":7},{"source":38,"target":0},{"source":38,"target":356},{"source":38,"target":357},{"source":38,"target":358},{"source":38,"target":104},{"source":356,"target":359},{"source":356,"target":38},{"source":357,"target":360},{"source":357,"target":38},{"source":358,"target":361},{"source":358,"target":38},{"source":104,"target":4},{"source":104,"target":362},{"source":104,"target":38},{"source":104,"target":97},{"source":362,"target":4},{"source":39,"target":0},{"source":39,"target":2},{"source":39,"target":363},{"source":39,"target":364},{"source":363,"target":365},{"source":363,"target":39},{"source":364,"target":2},{"source":40,"target":0},{"source":40,"target":8},{"source":40,"target":366},{"source":366,"target":8},{"source":41,"target":0},{"source":41,"target":8},{"source":41,"target":367},{"source":367,"target":8},{"source":42,"target":0},{"source":42,"target":8},{"source":42,"target":368},{"source":368,"target":8},{"source":43,"target":0},{"source":43,"target":40},{"source":43,"target":369},{"source":369,"target":40},{"source":44,"target":0},{"source":44,"target":40},{"source":44,"target":370},{"source":370,"target":40},{"source":45,"target":0},{"source":45,"target":29},{"source":45,"target":371},{"source":45,"target":372},{"source":371,"target":46},{"source":371,"target":373},{"source":371,"target":45},{"source":373,"target":46},{"source":372,"target":29},{"source":46,"target":0},{"source":46,"target":374},{"source":46,"target":375},{"source":46,"target":376},{"source":46,"target":377},{"source":374,"target":46},{"source":375,"target":46},{"source":376,"target":46},{"source":377,"target":46},{"source":47,"target":0},{"source":47,"target":23},{"source":47,"target":378},{"source":378,"target":23},{"source":48,"target":0},{"source":48,"target":23},{"source":48,"target":379},{"source":379,"target":23}],"multigraph":true} |
false | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="rok" nsURI="uri:rok" nsPrefix="rok">
<eClassifiers xsi:type="ecore:EDataType" name="InetAddress" instanceClassName="java.net.InetAddress"/>
<eClassifiers xsi:type="ecore:EDataType" name="Locale" instanceClassName="java.util.Locale">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="Code langue
Code pays
Encodage"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="Country" instanceClassName="java.lang.String"/>
<eSubpackages name="model" nsURI="uri:rok/model" nsPrefix="m">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="Règles :
- Une propriété ne peut pas avoir plus d'une des caractéristique suivante : key, readOnly, required

Valeur par défaut.
- Pour les propriété key : valeur par défaut non permise
- Pour les propriété requires : valeur par défaut non permise
- Pour les propriété readOnly : Si spécifié, est positionnée au niveau du getter
"/>
</eAnnotations>
<eClassifiers xsi:type="ecore:EClass" name="Domain">
<eStructuralFeatures xsi:type="ecore:EReference" name="resources" upperBound="-1"
containment="true">
<eGenericType eClassifier="#//model/MClass">
<eTypeArguments/>
</eGenericType>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="subDomains" upperBound="-1"
eType="#//model/Domain" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="enumerations" upperBound="-1"
eType="#//model/Enumeration" containment="true"/>
<eGenericSuperTypes eClassifier="#//model/Res">
<eTypeArguments eClassifier="#//model/Domain"/>
</eGenericSuperTypes>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Res" abstract="true" interface="true"
eSuperTypes="#//model/Documentable #//model/Nameable">
<eTypeParameters name="T"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="confidentiality" lowerBound="1"
eType="#//model/Confidentiality" defaultValueLiteral="public">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="Confidentialité de la ressource.
Si cette propriété n'est pas renseignée, elle est concodéré comme public"/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="namespace" value=""/>
<details key="wildcards" value=""/>
<details key="name" value=""/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="List" abstract="true" interface="true">
<eTypeParameters name="T"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="type" lowerBound="1">
<eGenericType eClassifier="#//model/MClass">
<eTypeArguments eTypeParameter="#//model/List/T"/>
</eGenericType>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="entities" upperBound="-1">
<eGenericType eClassifier="#//model/MClass">
<eTypeArguments eTypeParameter="#//model/List/T"/>
</eGenericType>
</eStructuralFeatures>
<eGenericSuperTypes eClassifier="#//model/Res">
<eTypeArguments eClassifier="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EEList">
<eTypeArguments eTypeParameter="#//model/List/T"/>
</eTypeArguments>
</eGenericSuperTypes>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="MClass">
<eTypeParameters name="T"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="properties" upperBound="-1"
eType="#//model/property/Property" derived="true" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="rules" upperBound="-1"
eType="#//model/Rule" containment="true"/>
<eGenericSuperTypes eClassifier="#//model/Res">
<eTypeArguments eTypeParameter="#//model/MClass/T"/>
</eGenericSuperTypes>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="Confidentiality">
<eLiterals name="public">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="Caractérise une donnée non confidentielle.
Cette donnée publique peut être rattachée à un individu mais peut être connue de tous."/>
</eAnnotations>
</eLiterals>
<eLiterals name="private" value="3">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="Caractérise une donnée non confidentiel mais qui doit reste à la discrétion de celui qui interagit avec la ressource."/>
</eAnnotations>
</eLiterals>
<eLiterals name="secret" value="1">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="Désigne une ressource ou propriété confidentiel.
Cela implique :
* un transport via flux crypté (SSL)
* une modification via champ "password" (éventuellement avec un 2ème champ de vérification)
* un chiffrement si la propriété fait parti de l'URI
* un chiffrement sur disque si la donnée peut être stocké dans un cache local"/>
</eAnnotations>
</eLiterals>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Rule" eSuperTypes="#//model/Documentable #//model/Nameable"/>
<eClassifiers xsi:type="ecore:EClass" name="Info">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="info" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="locale" lowerBound="1"
eType="#//Locale"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="RootDomain">
<eStructuralFeatures xsi:type="ecore:EReference" name="subDomains" upperBound="-1"
eType="#//model/Domain" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Documentable" abstract="true" interface="true">
<eStructuralFeatures xsi:type="ecore:EReference" name="labels" upperBound="-1"
eType="#//model/Info" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="descriptions" upperBound="-1"
eType="#//model/Info" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Nameable" abstract="true" interface="true">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Enumeration" eSuperTypes="#//model/Nameable #//model/Documentable">
<eStructuralFeatures xsi:type="ecore:EReference" name="values" upperBound="-1"
eType="#//model/EnumValue" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EnumValue" eSuperTypes="#//model/Nameable #//model/Documentable"/>
<eSubpackages name="property" nsURI="uri:rok/model/property" nsPrefix="p">
<eClassifiers xsi:type="ecore:EClass" name="Property" abstract="true" interface="true"
eSuperTypes="#//model/Nameable #//model/Documentable">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="kind" eType="#//model/property/PropertyKind"
defaultValueLiteral="standard"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="confidentiality" eType="#//model/Confidentiality">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="Confidentialité de la ressource.
Si cette propriété n'est pas renseignée, c'est la confidentialité de la ressource attachée qui est appliquée."/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="minOccurrences" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="maxOccurrences" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"
defaultValueLiteral="1"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="IdProperty" eSuperTypes="#//model/property/Property"/>
<eClassifiers xsi:type="ecore:EClass" name="StringProperty" eSuperTypes="#//model/property/Property">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="Pour information, voici les type de données mis en oeuvre en fonction des bornes min/max (inclus) :

Si min = 0 et max = 1 : char sinon String"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="min" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//ELongObject"
defaultValueLiteral="-1">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="Nombre de caractères minimum.
Si < 0, pas de limite."/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="max" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//ELongObject">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="Nombre de caractères maximum
Si < 0, pas de limite."/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="defaultValue" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="pattern" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="multiline" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"
defaultValueLiteral="false"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="BooleanProperty" eSuperTypes="#//model/property/Property">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="defaultValue" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="DateProperty" eSuperTypes="#//model/property/Property">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="defaultvalue" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDate"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="min" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDate"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="max" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDate"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="NumberProperty" abstract="true"
interface="true" eSuperTypes="#//model/property/Property"/>
<eClassifiers xsi:type="ecore:EClass" name="IntegerProperty" eSuperTypes="#//model/property/NumberProperty">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="Pour information, voici les type de données mis en oeuvre en fonction des bornes min/max (inclus) :

8 bits/1octet		(byte)	: de -2^7	(= -128)							à 127
16 bits/2 octets	(short)	: de -2^15	(= -32 768)						à 2^15 -1 (= 32 767)
16 bits/2 octets	(char)	: de 0											à \uFFFF (= 65 535)
32 bits/4 octets	(int)	: de -2^31 (= -2 147 483 648)				à 2^31 -1 (= 2 147 483 647)
64 bits/8 octets	(long)	: de -2^63 (= -9 223 372 036 854 775 808)	à 2^63 -1 (= 9 223 372 036 854 775 807)


"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="defaultValue" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//ELongObject"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="min" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//ELongObject">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="Valeur minimale en-dessous de laquelle la propriété ne peut être définie."/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="max" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//ELongObject">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="Valeur maximale au-dessus de laquelle la propriété ne peut être définie."/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="RealNumberProperty" eSuperTypes="#//model/property/NumberProperty">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="Pour des raisons de précision, le type employé pour représenter un nombre relatif et un BigDecimal"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="defaultValue" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBigDecimal"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="min" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBigDecimal"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="max" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBigDecimal"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="AmountProperty" eSuperTypes="#//model/property/RealNumberProperty">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="currency" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="Code de la devise (sur 3 caractères) tel que défini par la norme ISO 4217

Plus d'information sur lescodes et format disponible ici :
- http://www.oanda.com/currency/currency-code
- http://docs.oracle.com/javase/6/docs/api/java/util/Currency.html#getSymbol%28java.util.Locale%29"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EnumerationProperty" eSuperTypes="#//model/property/Property">
<eStructuralFeatures xsi:type="ecore:EReference" name="type" lowerBound="1"
eType="#//model/Enumeration"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="BinaryProperty">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="min" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//ELongObject"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="max" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//ELongObject"/>
<eGenericSuperTypes eClassifier="#//model/property/Property"/>
<eGenericSuperTypes eClassifier="#//model/property/feature/Range">
<eTypeArguments eClassifier="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//ELongObject"/>
</eGenericSuperTypes>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="PropertyKind">
<eLiterals name="standard" value="3"/>
<eLiterals name="key" value="2"/>
<eLiterals name="readOnly"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EntityProperty" abstract="true"
interface="true" eSuperTypes="#//model/property/Property"/>
<eClassifiers xsi:type="ecore:EClass" name="LinkedEntityProperty" eSuperTypes="#//model/property/EntityProperty">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="Liaison avec une entité externe.
Son cycle de vie n'est pas lié à son entité "parent".
Si max-Occurences > 1, la relation entre l'entité "parent" et celle-ci peut être considérée comme une relation d'aggrégation."/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="type" lowerBound="1">
<eGenericType eClassifier="#//model/MClass">
<eTypeArguments/>
</eGenericType>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="NestedEntityProperty" eSuperTypes="#//model/property/EntityProperty">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="Entité "fille". Son cycle de vie est lié à son entité "parent".
Si max-Occurences > 1, la relation entre l'entité "parent" et celle-ci peut être considérée comme une relation de composition."/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="type" lowerBound="1"
containment="true">
<eGenericType eClassifier="#//model/MClass">
<eTypeArguments/>
</eGenericType>
</eStructuralFeatures>
</eClassifiers>
<eSubpackages name="feature" nsURI="urn:rok/model/property" nsPrefix="f">
<eClassifiers xsi:type="ecore:EClass" name="Range" abstract="true" interface="true">
<eTypeParameters name="T"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="DefaultValue" abstract="true"
interface="true">
<eTypeParameters name="T"/>
</eClassifiers>
</eSubpackages>
</eSubpackages>
</eSubpackages>
</ecore:EPackage>
| github:ecore:/data/gssi/metamodel-dataset-analysis-toolchain/metamodels/rok.ecore | ecore | rok
InetAddress
java.net.InetAddress
java.net.InetAddress
Locale
java.util.Locale
java.util.Locale
Country
java.lang.String
java.lang.String
model
Domain
resources
subDomains
enumerations
Res
T
confidentiality
public
List
T
type
entities
MClass
T
properties
rules
Confidentiality
public
public
private
private
secret
secret
Rule
Info
info
locale
RootDomain
subDomains
Documentable
labels
descriptions
Nameable
name
Enumeration
values
EnumValue
property
Property
kind
standard
confidentiality
minOccurrences
maxOccurrences
1
IdProperty
StringProperty
min
-1
max
defaultValue
pattern
multiline
false
BooleanProperty
defaultValue
DateProperty
defaultvalue
min
max
NumberProperty
IntegerProperty
defaultValue
min
max
RealNumberProperty
defaultValue
min
max
AmountProperty
currency
EnumerationProperty
type
BinaryProperty
min
max
PropertyKind
standard
standard
key
key
readOnly
readOnly
EntityProperty
LinkedEntityProperty
type
NestedEntityProperty
type
feature
Range
T
DefaultValue
T | null | {"directed":true,"nodes":[{"nsPrefix":"rok","nsURI":"uri:rok","name":"rok","id":0,"eClass":"EPackage"},{"instanceTypeName":"java.net.InetAddress","defaultValue":null,"instanceClassName":"java.net.InetAddress","name":"InetAddress","instanceClass":"java.net.InetAddress","id":1,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.util.Locale","defaultValue":null,"instanceClassName":"java.util.Locale","name":"Locale","instanceClass":"java.util.Locale","id":2,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.lang.String","defaultValue":null,"instanceClassName":"java.lang.String","name":"Country","instanceClass":"java.lang.String","id":3,"serializable":true,"eClass":"EDataType"},{"nsPrefix":"m","nsURI":"uri:rok/model","name":"model","id":4,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Domain","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Res","instanceClass":null,"abstract":true,"id":6,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"List","instanceClass":null,"abstract":true,"id":7,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MClass","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"Confidentiality","instanceClass":null,"id":9,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Rule","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Info","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RootDomain","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Documentable","instanceClass":null,"abstract":true,"id":13,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Nameable","instanceClass":null,"abstract":true,"id":14,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Enumeration","instanceClass":null,"abstract":false,"id":15,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EnumValue","instanceClass":null,"abstract":false,"id":16,"interface":false,"eClass":"EClass"},{"nsPrefix":"p","nsURI":"uri:rok/model/property","name":"property","id":17,"eClass":"EPackage"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"resources","changeable":true,"resolveProxies":true,"lowerBound":0,"id":18,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"subDomains","changeable":true,"resolveProxies":true,"lowerBound":0,"id":19,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"enumerations","changeable":true,"resolveProxies":true,"lowerBound":0,"id":20,"derived":false},{"id":21,"eClass":"EGenericType"},{"id":22,"eClass":"EGenericType"},{"id":23,"eClass":"EGenericType"},{"id":24,"eClass":"EGenericType"},{"id":25,"eClass":"EGenericType"},{"id":26,"eClass":"EGenericType"},{"name":"T","id":27,"eClass":"ETypeParameter"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"public","unsettable":false,"transient":false,"unique":true,"name":"confidentiality","changeable":true,"lowerBound":1,"iD":false,"id":28,"derived":false},{"id":29,"eClass":"EGenericType"},{"id":30,"eClass":"EGenericType"},{"id":31,"eClass":"EGenericType"},{"name":"T","id":32,"eClass":"ETypeParameter"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"resolveProxies":true,"lowerBound":1,"id":33,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"entities","changeable":true,"resolveProxies":true,"lowerBound":0,"id":34,"derived":false},{"id":35,"eClass":"EGenericType"},{"id":36,"eClass":"EGenericType"},{"id":37,"eClass":"EGenericType"},{"id":38,"eClass":"EGenericType"},{"id":39,"eClass":"EGenericType"},{"id":40,"eClass":"EGenericType"},{"id":41,"eClass":"EGenericType"},{"name":"T","id":42,"eClass":"ETypeParameter"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"properties","changeable":true,"resolveProxies":true,"lowerBound":0,"id":43,"derived":true},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"rules","changeable":true,"resolveProxies":true,"lowerBound":0,"id":44,"derived":false},{"id":45,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Property","instanceClass":null,"abstract":true,"id":46,"interface":true,"eClass":"EClass"},{"id":47,"eClass":"EGenericType"},{"id":48,"eClass":"EGenericType"},{"id":49,"eClass":"EGenericType"},{"name":"public","id":50,"value":0,"literal":"public","eClass":"EEnumLiteral"},{"name":"private","id":51,"value":3,"literal":"private","eClass":"EEnumLiteral"},{"name":"secret","id":52,"value":1,"literal":"secret","eClass":"EEnumLiteral"},{"id":53,"eClass":"EGenericType"},{"id":54,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"info","changeable":true,"lowerBound":0,"iD":false,"id":55,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"locale","changeable":true,"lowerBound":1,"iD":false,"id":56,"derived":false},{"id":57,"eClass":"EGenericType"},{"id":58,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"subDomains","changeable":true,"resolveProxies":true,"lowerBound":0,"id":59,"derived":false},{"id":60,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"labels","changeable":true,"resolveProxies":true,"lowerBound":0,"id":61,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"descriptions","changeable":true,"resolveProxies":true,"lowerBound":0,"id":62,"derived":false},{"id":63,"eClass":"EGenericType"},{"id":64,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":65,"derived":false},{"id":66,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"values","changeable":true,"resolveProxies":true,"lowerBound":0,"id":67,"derived":false},{"id":68,"eClass":"EGenericType"},{"id":69,"eClass":"EGenericType"},{"id":70,"eClass":"EGenericType"},{"id":71,"eClass":"EGenericType"},{"id":72,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IdProperty","instanceClass":null,"abstract":false,"id":73,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StringProperty","instanceClass":null,"abstract":false,"id":74,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BooleanProperty","instanceClass":null,"abstract":false,"id":75,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DateProperty","instanceClass":null,"abstract":false,"id":76,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NumberProperty","instanceClass":null,"abstract":true,"id":77,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IntegerProperty","instanceClass":null,"abstract":false,"id":78,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RealNumberProperty","instanceClass":null,"abstract":false,"id":79,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AmountProperty","instanceClass":null,"abstract":false,"id":80,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EnumerationProperty","instanceClass":null,"abstract":false,"id":81,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BinaryProperty","instanceClass":null,"abstract":false,"id":82,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"PropertyKind","instanceClass":null,"id":83,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EntityProperty","instanceClass":null,"abstract":true,"id":84,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LinkedEntityProperty","instanceClass":null,"abstract":false,"id":85,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NestedEntityProperty","instanceClass":null,"abstract":false,"id":86,"interface":false,"eClass":"EClass"},{"nsPrefix":"f","nsURI":"urn:rok/model/property","name":"feature","id":87,"eClass":"EPackage"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"standard","unsettable":false,"transient":false,"unique":true,"name":"kind","changeable":true,"lowerBound":0,"iD":false,"id":88,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"confidentiality","changeable":true,"lowerBound":0,"iD":false,"id":89,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"minOccurrences","changeable":true,"lowerBound":0,"iD":false,"id":90,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"1","unsettable":false,"transient":false,"unique":true,"name":"maxOccurrences","changeable":true,"lowerBound":0,"iD":false,"id":91,"derived":false},{"id":92,"eClass":"EGenericType"},{"id":93,"eClass":"EGenericType"},{"id":94,"eClass":"EGenericType"},{"id":95,"eClass":"EGenericType"},{"id":96,"eClass":"EGenericType"},{"id":97,"eClass":"EGenericType"},{"id":98,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":-1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"-1","unsettable":false,"transient":false,"unique":true,"name":"min","changeable":true,"lowerBound":0,"iD":false,"id":99,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"max","changeable":true,"lowerBound":0,"iD":false,"id":100,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"defaultValue","changeable":true,"lowerBound":0,"iD":false,"id":101,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"pattern","changeable":true,"lowerBound":0,"iD":false,"id":102,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"false","unsettable":false,"transient":false,"unique":true,"name":"multiline","changeable":true,"lowerBound":0,"iD":false,"id":103,"derived":false},{"id":104,"eClass":"EGenericType"},{"id":105,"eClass":"EGenericType"},{"id":106,"eClass":"EGenericType"},{"id":107,"eClass":"EGenericType"},{"id":108,"eClass":"EGenericType"},{"id":109,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"defaultValue","changeable":true,"lowerBound":0,"iD":false,"id":110,"derived":false},{"id":111,"eClass":"EGenericType"},{"id":112,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"defaultvalue","changeable":true,"lowerBound":0,"iD":false,"id":113,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"min","changeable":true,"lowerBound":0,"iD":false,"id":114,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"max","changeable":true,"lowerBound":0,"iD":false,"id":115,"derived":false},{"id":116,"eClass":"EGenericType"},{"id":117,"eClass":"EGenericType"},{"id":118,"eClass":"EGenericType"},{"id":119,"eClass":"EGenericType"},{"id":120,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"defaultValue","changeable":true,"lowerBound":0,"iD":false,"id":121,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"min","changeable":true,"lowerBound":0,"iD":false,"id":122,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"max","changeable":true,"lowerBound":0,"iD":false,"id":123,"derived":false},{"id":124,"eClass":"EGenericType"},{"id":125,"eClass":"EGenericType"},{"id":126,"eClass":"EGenericType"},{"id":127,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"defaultValue","changeable":true,"lowerBound":0,"iD":false,"id":128,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"min","changeable":true,"lowerBound":0,"iD":false,"id":129,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"max","changeable":true,"lowerBound":0,"iD":false,"id":130,"derived":false},{"id":131,"eClass":"EGenericType"},{"id":132,"eClass":"EGenericType"},{"id":133,"eClass":"EGenericType"},{"id":134,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"currency","changeable":true,"lowerBound":1,"iD":false,"id":135,"derived":false},{"id":136,"eClass":"EGenericType"},{"id":137,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"resolveProxies":true,"lowerBound":1,"id":138,"derived":false},{"id":139,"eClass":"EGenericType"},{"id":140,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Range","instanceClass":null,"abstract":true,"id":141,"interface":true,"eClass":"EClass"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"min","changeable":true,"lowerBound":0,"iD":false,"id":142,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"max","changeable":true,"lowerBound":0,"iD":false,"id":143,"derived":false},{"id":144,"eClass":"EGenericType"},{"id":145,"eClass":"EGenericType"},{"id":146,"eClass":"EGenericType"},{"id":147,"eClass":"EGenericType"},{"id":148,"eClass":"EGenericType"},{"name":"standard","id":149,"value":3,"literal":"standard","eClass":"EEnumLiteral"},{"name":"key","id":150,"value":2,"literal":"key","eClass":"EEnumLiteral"},{"name":"readOnly","id":151,"value":0,"literal":"readOnly","eClass":"EEnumLiteral"},{"id":152,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"resolveProxies":true,"lowerBound":1,"id":153,"derived":false},{"id":154,"eClass":"EGenericType"},{"id":155,"eClass":"EGenericType"},{"id":156,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"resolveProxies":true,"lowerBound":1,"id":157,"derived":false},{"id":158,"eClass":"EGenericType"},{"id":159,"eClass":"EGenericType"},{"id":160,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DefaultValue","instanceClass":null,"abstract":true,"id":161,"interface":true,"eClass":"EClass"},{"name":"T","id":162,"eClass":"ETypeParameter"},{"name":"T","id":163,"eClass":"ETypeParameter"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":1,"target":0},{"source":2,"target":0},{"source":3,"target":0},{"source":4,"target":5},{"source":4,"target":6},{"source":4,"target":7},{"source":4,"target":8},{"source":4,"target":9},{"source":4,"target":10},{"source":4,"target":11},{"source":4,"target":12},{"source":4,"target":13},{"source":4,"target":14},{"source":4,"target":15},{"source":4,"target":16},{"source":4,"target":17},{"source":4,"target":0},{"source":5,"target":4},{"source":5,"target":6},{"source":5,"target":18},{"source":5,"target":19},{"source":5,"target":20},{"source":5,"target":21},{"source":18,"target":8},{"source":18,"target":22},{"source":18,"target":5},{"source":22,"target":23},{"source":22,"target":8},{"source":19,"target":5},{"source":19,"target":24},{"source":19,"target":5},{"source":24,"target":5},{"source":20,"target":15},{"source":20,"target":25},{"source":20,"target":5},{"source":25,"target":15},{"source":21,"target":26},{"source":21,"target":6},{"source":26,"target":5},{"source":6,"target":4},{"source":6,"target":27},{"source":6,"target":13},{"source":6,"target":14},{"source":6,"target":28},{"source":6,"target":29},{"source":6,"target":30},{"source":28,"target":9},{"source":28,"target":31},{"source":28,"target":6},{"source":31,"target":9},{"source":29,"target":13},{"source":30,"target":14},{"source":7,"target":4},{"source":7,"target":32},{"source":7,"target":6},{"source":7,"target":33},{"source":7,"target":34},{"source":7,"target":35},{"source":33,"target":8},{"source":33,"target":36},{"source":33,"target":7},{"source":36,"target":37},{"source":36,"target":8},{"source":37,"target":32},{"source":34,"target":8},{"source":34,"target":38},{"source":34,"target":7},{"source":38,"target":39},{"source":38,"target":8},{"source":39,"target":32},{"source":35,"target":40},{"source":35,"target":6},{"source":40,"target":41},{"source":41,"target":32},{"source":8,"target":4},{"source":8,"target":42},{"source":8,"target":6},{"source":8,"target":43},{"source":8,"target":44},{"source":8,"target":45},{"source":43,"target":46},{"source":43,"target":47},{"source":43,"target":8},{"source":47,"target":46},{"source":44,"target":10},{"source":44,"target":48},{"source":44,"target":8},{"source":48,"target":10},{"source":45,"target":49},{"source":45,"target":6},{"source":49,"target":42},{"source":9,"target":4},{"source":9,"target":50},{"source":9,"target":51},{"source":9,"target":52},{"source":50,"target":9},{"source":51,"target":9},{"source":52,"target":9},{"source":10,"target":4},{"source":10,"target":13},{"source":10,"target":14},{"source":10,"target":53},{"source":10,"target":54},{"source":53,"target":13},{"source":54,"target":14},{"source":11,"target":4},{"source":11,"target":55},{"source":11,"target":56},{"source":55,"target":57},{"source":55,"target":11},{"source":56,"target":2},{"source":56,"target":58},{"source":56,"target":11},{"source":58,"target":2},{"source":12,"target":4},{"source":12,"target":59},{"source":59,"target":5},{"source":59,"target":60},{"source":59,"target":12},{"source":60,"target":5},{"source":13,"target":4},{"source":13,"target":61},{"source":13,"target":62},{"source":61,"target":11},{"source":61,"target":63},{"source":61,"target":13},{"source":63,"target":11},{"source":62,"target":11},{"source":62,"target":64},{"source":62,"target":13},{"source":64,"target":11},{"source":14,"target":4},{"source":14,"target":65},{"source":65,"target":66},{"source":65,"target":14},{"source":15,"target":4},{"source":15,"target":14},{"source":15,"target":13},{"source":15,"target":67},{"source":15,"target":68},{"source":15,"target":69},{"source":67,"target":16},{"source":67,"target":70},{"source":67,"target":15},{"source":70,"target":16},{"source":68,"target":14},{"source":69,"target":13},{"source":16,"target":4},{"source":16,"target":14},{"source":16,"target":13},{"source":16,"target":71},{"source":16,"target":72},{"source":71,"target":14},{"source":72,"target":13},{"source":17,"target":46},{"source":17,"target":73},{"source":17,"target":74},{"source":17,"target":75},{"source":17,"target":76},{"source":17,"target":77},{"source":17,"target":78},{"source":17,"target":79},{"source":17,"target":80},{"source":17,"target":81},{"source":17,"target":82},{"source":17,"target":83},{"source":17,"target":84},{"source":17,"target":85},{"source":17,"target":86},{"source":17,"target":87},{"source":17,"target":4},{"source":46,"target":17},{"source":46,"target":14},{"source":46,"target":13},{"source":46,"target":88},{"source":46,"target":89},{"source":46,"target":90},{"source":46,"target":91},{"source":46,"target":92},{"source":46,"target":93},{"source":88,"target":83},{"source":88,"target":94},{"source":88,"target":46},{"source":94,"target":83},{"source":89,"target":9},{"source":89,"target":95},{"source":89,"target":46},{"source":95,"target":9},{"source":90,"target":96},{"source":90,"target":46},{"source":91,"target":97},{"source":91,"target":46},{"source":92,"target":14},{"source":93,"target":13},{"source":73,"target":17},{"source":73,"target":46},{"source":73,"target":98},{"source":98,"target":46},{"source":74,"target":17},{"source":74,"target":46},{"source":74,"target":99},{"source":74,"target":100},{"source":74,"target":101},{"source":74,"target":102},{"source":74,"target":103},{"source":74,"target":104},{"source":99,"target":105},{"source":99,"target":74},{"source":100,"target":106},{"source":100,"target":74},{"source":101,"target":107},{"source":101,"target":74},{"source":102,"target":108},{"source":102,"target":74},{"source":103,"target":109},{"source":103,"target":74},{"source":104,"target":46},{"source":75,"target":17},{"source":75,"target":46},{"source":75,"target":110},{"source":75,"target":111},{"source":110,"target":112},{"source":110,"target":75},{"source":111,"target":46},{"source":76,"target":17},{"source":76,"target":46},{"source":76,"target":113},{"source":76,"target":114},{"source":76,"target":115},{"source":76,"target":116},{"source":113,"target":117},{"source":113,"target":76},{"source":114,"target":118},{"source":114,"target":76},{"source":115,"target":119},{"source":115,"target":76},{"source":116,"target":46},{"source":77,"target":17},{"source":77,"target":46},{"source":77,"target":120},{"source":120,"target":46},{"source":78,"target":17},{"source":78,"target":77},{"source":78,"target":121},{"source":78,"target":122},{"source":78,"target":123},{"source":78,"target":124},{"source":121,"target":125},{"source":121,"target":78},{"source":122,"target":126},{"source":122,"target":78},{"source":123,"target":127},{"source":123,"target":78},{"source":124,"target":77},{"source":79,"target":17},{"source":79,"target":77},{"source":79,"target":128},{"source":79,"target":129},{"source":79,"target":130},{"source":79,"target":131},{"source":128,"target":132},{"source":128,"target":79},{"source":129,"target":133},{"source":129,"target":79},{"source":130,"target":134},{"source":130,"target":79},{"source":131,"target":77},{"source":80,"target":17},{"source":80,"target":79},{"source":80,"target":135},{"source":80,"target":136},{"source":135,"target":137},{"source":135,"target":80},{"source":136,"target":79},{"source":81,"target":17},{"source":81,"target":46},{"source":81,"target":138},{"source":81,"target":139},{"source":138,"target":15},{"source":138,"target":140},{"source":138,"target":81},{"source":140,"target":15},{"source":139,"target":46},{"source":82,"target":17},{"source":82,"target":46},{"source":82,"target":141},{"source":82,"target":142},{"source":82,"target":143},{"source":82,"target":144},{"source":82,"target":145},{"source":142,"target":146},{"source":142,"target":82},{"source":143,"target":147},{"source":143,"target":82},{"source":144,"target":46},{"source":145,"target":148},{"source":145,"target":141},{"source":83,"target":17},{"source":83,"target":149},{"source":83,"target":150},{"source":83,"target":151},{"source":149,"target":83},{"source":150,"target":83},{"source":151,"target":83},{"source":84,"target":17},{"source":84,"target":46},{"source":84,"target":152},{"source":152,"target":46},{"source":85,"target":17},{"source":85,"target":84},{"source":85,"target":153},{"source":85,"target":154},{"source":153,"target":8},{"source":153,"target":155},{"source":153,"target":85},{"source":155,"target":156},{"source":155,"target":8},{"source":154,"target":84},{"source":86,"target":17},{"source":86,"target":84},{"source":86,"target":157},{"source":86,"target":158},{"source":157,"target":8},{"source":157,"target":159},{"source":157,"target":86},{"source":159,"target":160},{"source":159,"target":8},{"source":158,"target":84},{"source":87,"target":141},{"source":87,"target":161},{"source":87,"target":17},{"source":141,"target":87},{"source":141,"target":162},{"source":161,"target":87},{"source":161,"target":163}],"multigraph":true} |
false | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="model" nsURI="http://assignmentsystem.ntnu.no/model/1.0" nsPrefix="no.ntnu.assignmentsystem">
<eClassifiers xsi:type="ecore:EClass" name="Assignment">
<eStructuralFeatures xsi:type="ecore:EReference" name="problems" upperBound="-1"
eType="#//Problem" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="id" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
iD="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="localId" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="title" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="deadline" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDate"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Problem" abstract="true">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="id" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
iD="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="localId" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="title" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="maxPoints" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CodeProblem" eSuperTypes="#//Problem">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="repoUrl" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="sourceCodeFiles" upperBound="-1"
eType="#//SourceCodeFile" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="mainImplementationFile"
eType="#//ImplementationFile"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="User">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="id" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
iD="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="email" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
defaultValueLiteral=""/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="password" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
defaultValueLiteral=""/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ModifiedSourceCodeFile">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="sourceCode" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="originalSourceCodeFile"
eType="#//SourceCodeFile"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Submission" abstract="true">
<eTypeParameters name="P">
<eBounds eClassifier="#//Problem"/>
</eTypeParameters>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="submittedAt" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDate"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="problem" lowerBound="1">
<eGenericType eTypeParameter="#//Submission/P"/>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="evaluation" eType="#//Evaluation"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Evaluation">
<eStructuralFeatures xsi:type="ecore:EReference" name="evaluatedBy" lowerBound="1"
eType="#//Staff"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="evaluatedAt" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDate"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="awardedPointsFraction"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFloat"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CodeSubmission">
<eStructuralFeatures xsi:type="ecore:EReference" name="sourceCodeFiles" upperBound="-1"
eType="#//ModifiedSourceCodeFile" containment="true"/>
<eGenericSuperTypes eClassifier="#//Submission">
<eTypeArguments eClassifier="#//CodeProblem"/>
</eGenericSuperTypes>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="UoD">
<eStructuralFeatures xsi:type="ecore:EReference" name="users" upperBound="-1"
eType="#//User" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="courses" upperBound="-1"
eType="#//Course" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="lastGlobalId" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Student" eSuperTypes="#//Participant">
<eStructuralFeatures xsi:type="ecore:EReference" name="submissions" upperBound="-1"
containment="true">
<eGenericType eClassifier="#//Submission">
<eTypeArguments/>
</eGenericType>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="sourceCodeFiles" upperBound="-1"
eType="#//ModifiedSourceCodeFile" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Staff" eSuperTypes="#//Participant"/>
<eClassifiers xsi:type="ecore:EClass" name="Participant" abstract="true">
<eStructuralFeatures xsi:type="ecore:EReference" name="user" lowerBound="1" eType="#//User"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="screenName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Course">
<eStructuralFeatures xsi:type="ecore:EReference" name="assignments" upperBound="-1"
eType="#//Assignment" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="participants" upperBound="-1"
eType="#//Participant" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="id" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
iD="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="title" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="SourceCodeFile" abstract="true">
<eOperations name="getSourceCode" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="body" value="return SourceCodeFileImplHelper.getSourceCode(this);"/>
</eAnnotations>
</eOperations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="id" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
iD="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="filePath" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="packageName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="visible" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"
defaultValueLiteral="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="editable" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"
defaultValueLiteral="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ImplementationFile" eSuperTypes="#//SourceCodeFile"/>
<eClassifiers xsi:type="ecore:EClass" name="TestFile" eSuperTypes="#//SourceCodeFile"/>
<eClassifiers xsi:type="ecore:EClass" name="JexTestFile" eSuperTypes="#//SourceCodeFile"/>
</ecore:EPackage>
| github:ecore:/data/tipsy/masteroppgave/no.ntnu.assignmentsystem.model/model/model.ecore | ecore | model
Assignment
problems
id
localId
title
deadline
Problem
id
localId
title
maxPoints
CodeProblem
repoUrl
sourceCodeFiles
mainImplementationFile
User
id
email
password
ModifiedSourceCodeFile
sourceCode
originalSourceCodeFile
Submission
P
submittedAt
problem
evaluation
Evaluation
evaluatedBy
evaluatedAt
awardedPointsFraction
CodeSubmission
sourceCodeFiles
UoD
users
courses
lastGlobalId
Student
submissions
sourceCodeFiles
Staff
Participant
user
screenName
Course
assignments
participants
id
title
SourceCodeFile
getSourceCode
id
filePath
packageName
visible
true
editable
true
ImplementationFile
TestFile
JexTestFile | null | {"directed":true,"nodes":[{"nsPrefix":"no.ntnu.assignmentsystem","nsURI":"http://assignmentsystem.ntnu.no/model/1.0","name":"model","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Assignment","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Problem","instanceClass":null,"abstract":true,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CodeProblem","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"User","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ModifiedSourceCodeFile","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Submission","instanceClass":null,"abstract":true,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Evaluation","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CodeSubmission","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"UoD","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Student","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Staff","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Participant","instanceClass":null,"abstract":true,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Course","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SourceCodeFile","instanceClass":null,"abstract":true,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ImplementationFile","instanceClass":null,"abstract":false,"id":15,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TestFile","instanceClass":null,"abstract":false,"id":16,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"JexTestFile","instanceClass":null,"abstract":false,"id":17,"interface":false,"eClass":"EClass"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"problems","changeable":true,"resolveProxies":true,"lowerBound":0,"id":18,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"id","changeable":true,"lowerBound":0,"iD":true,"id":19,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"localId","changeable":true,"lowerBound":0,"iD":false,"id":20,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"title","changeable":true,"lowerBound":0,"iD":false,"id":21,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"deadline","changeable":true,"lowerBound":0,"iD":false,"id":22,"derived":false},{"id":23,"eClass":"EGenericType"},{"id":24,"eClass":"EGenericType"},{"id":25,"eClass":"EGenericType"},{"id":26,"eClass":"EGenericType"},{"id":27,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"id","changeable":true,"lowerBound":0,"iD":true,"id":28,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"localId","changeable":true,"lowerBound":0,"iD":false,"id":29,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"title","changeable":true,"lowerBound":0,"iD":false,"id":30,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"maxPoints","changeable":true,"lowerBound":0,"iD":false,"id":31,"derived":false},{"id":32,"eClass":"EGenericType"},{"id":33,"eClass":"EGenericType"},{"id":34,"eClass":"EGenericType"},{"id":35,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"repoUrl","changeable":true,"lowerBound":0,"iD":false,"id":36,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"sourceCodeFiles","changeable":true,"resolveProxies":true,"lowerBound":0,"id":37,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"mainImplementationFile","changeable":true,"resolveProxies":true,"lowerBound":0,"id":38,"derived":false},{"id":39,"eClass":"EGenericType"},{"id":40,"eClass":"EGenericType"},{"id":41,"eClass":"EGenericType"},{"id":42,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"id","changeable":true,"lowerBound":0,"iD":true,"id":43,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":"","volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"","unsettable":false,"transient":false,"unique":true,"name":"email","changeable":true,"lowerBound":0,"iD":false,"id":44,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":"","volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"","unsettable":false,"transient":false,"unique":true,"name":"password","changeable":true,"lowerBound":0,"iD":false,"id":45,"derived":false},{"id":46,"eClass":"EGenericType"},{"id":47,"eClass":"EGenericType"},{"id":48,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"sourceCode","changeable":true,"lowerBound":0,"iD":false,"id":49,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"originalSourceCodeFile","changeable":true,"resolveProxies":true,"lowerBound":0,"id":50,"derived":false},{"id":51,"eClass":"EGenericType"},{"id":52,"eClass":"EGenericType"},{"name":"P","id":53,"eClass":"ETypeParameter"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"submittedAt","changeable":true,"lowerBound":0,"iD":false,"id":54,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"problem","changeable":true,"resolveProxies":true,"lowerBound":1,"id":55,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"evaluation","changeable":true,"resolveProxies":true,"lowerBound":0,"id":56,"derived":false},{"id":57,"eClass":"EGenericType"},{"id":58,"eClass":"EGenericType"},{"id":59,"eClass":"EGenericType"},{"id":60,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"evaluatedBy","changeable":true,"resolveProxies":true,"lowerBound":1,"id":61,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"evaluatedAt","changeable":true,"lowerBound":0,"iD":false,"id":62,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"awardedPointsFraction","changeable":true,"lowerBound":0,"iD":false,"id":63,"derived":false},{"id":64,"eClass":"EGenericType"},{"id":65,"eClass":"EGenericType"},{"id":66,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"sourceCodeFiles","changeable":true,"resolveProxies":true,"lowerBound":0,"id":67,"derived":false},{"id":68,"eClass":"EGenericType"},{"id":69,"eClass":"EGenericType"},{"id":70,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"users","changeable":true,"resolveProxies":true,"lowerBound":0,"id":71,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"courses","changeable":true,"resolveProxies":true,"lowerBound":0,"id":72,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"lastGlobalId","changeable":true,"lowerBound":0,"iD":false,"id":73,"derived":false},{"id":74,"eClass":"EGenericType"},{"id":75,"eClass":"EGenericType"},{"id":76,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"submissions","changeable":true,"resolveProxies":true,"lowerBound":0,"id":77,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"sourceCodeFiles","changeable":true,"resolveProxies":true,"lowerBound":0,"id":78,"derived":false},{"id":79,"eClass":"EGenericType"},{"id":80,"eClass":"EGenericType"},{"id":81,"eClass":"EGenericType"},{"id":82,"eClass":"EGenericType"},{"id":83,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"user","changeable":true,"resolveProxies":true,"lowerBound":1,"id":84,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"screenName","changeable":true,"lowerBound":0,"iD":false,"id":85,"derived":false},{"id":86,"eClass":"EGenericType"},{"id":87,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"assignments","changeable":true,"resolveProxies":true,"lowerBound":0,"id":88,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"participants","changeable":true,"resolveProxies":true,"lowerBound":0,"id":89,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"id","changeable":true,"lowerBound":0,"iD":true,"id":90,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"title","changeable":true,"lowerBound":0,"iD":false,"id":91,"derived":false},{"id":92,"eClass":"EGenericType"},{"id":93,"eClass":"EGenericType"},{"id":94,"eClass":"EGenericType"},{"id":95,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"getSourceCode","lowerBound":0,"id":96,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"id","changeable":true,"lowerBound":0,"iD":true,"id":97,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"filePath","changeable":true,"lowerBound":0,"iD":false,"id":98,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"packageName","changeable":true,"lowerBound":0,"iD":false,"id":99,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":true,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"true","unsettable":false,"transient":false,"unique":true,"name":"visible","changeable":true,"lowerBound":0,"iD":false,"id":100,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":true,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"true","unsettable":false,"transient":false,"unique":true,"name":"editable","changeable":true,"lowerBound":0,"iD":false,"id":101,"derived":false},{"id":102,"eClass":"EGenericType"},{"id":103,"eClass":"EGenericType"},{"id":104,"eClass":"EGenericType"},{"id":105,"eClass":"EGenericType"},{"id":106,"eClass":"EGenericType"},{"id":107,"eClass":"EGenericType"},{"id":108,"eClass":"EGenericType"},{"id":109,"eClass":"EGenericType"},{"id":110,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":0,"target":8},{"source":0,"target":9},{"source":0,"target":10},{"source":0,"target":11},{"source":0,"target":12},{"source":0,"target":13},{"source":0,"target":14},{"source":0,"target":15},{"source":0,"target":16},{"source":0,"target":17},{"source":1,"target":0},{"source":1,"target":18},{"source":1,"target":19},{"source":1,"target":20},{"source":1,"target":21},{"source":1,"target":22},{"source":18,"target":2},{"source":18,"target":23},{"source":18,"target":1},{"source":23,"target":2},{"source":19,"target":24},{"source":19,"target":1},{"source":20,"target":25},{"source":20,"target":1},{"source":21,"target":26},{"source":21,"target":1},{"source":22,"target":27},{"source":22,"target":1},{"source":2,"target":0},{"source":2,"target":28},{"source":2,"target":29},{"source":2,"target":30},{"source":2,"target":31},{"source":28,"target":32},{"source":28,"target":2},{"source":29,"target":33},{"source":29,"target":2},{"source":30,"target":34},{"source":30,"target":2},{"source":31,"target":35},{"source":31,"target":2},{"source":3,"target":0},{"source":3,"target":2},{"source":3,"target":36},{"source":3,"target":37},{"source":3,"target":38},{"source":3,"target":39},{"source":36,"target":40},{"source":36,"target":3},{"source":37,"target":14},{"source":37,"target":41},{"source":37,"target":3},{"source":41,"target":14},{"source":38,"target":15},{"source":38,"target":42},{"source":38,"target":3},{"source":42,"target":15},{"source":39,"target":2},{"source":4,"target":0},{"source":4,"target":43},{"source":4,"target":44},{"source":4,"target":45},{"source":43,"target":46},{"source":43,"target":4},{"source":44,"target":47},{"source":44,"target":4},{"source":45,"target":48},{"source":45,"target":4},{"source":5,"target":0},{"source":5,"target":49},{"source":5,"target":50},{"source":49,"target":51},{"source":49,"target":5},{"source":50,"target":14},{"source":50,"target":52},{"source":50,"target":5},{"source":52,"target":14},{"source":6,"target":0},{"source":6,"target":53},{"source":6,"target":54},{"source":6,"target":55},{"source":6,"target":56},{"source":53,"target":57},{"source":57,"target":2},{"source":54,"target":58},{"source":54,"target":6},{"source":55,"target":2},{"source":55,"target":59},{"source":55,"target":6},{"source":59,"target":53},{"source":56,"target":7},{"source":56,"target":60},{"source":56,"target":6},{"source":60,"target":7},{"source":7,"target":0},{"source":7,"target":61},{"source":7,"target":62},{"source":7,"target":63},{"source":61,"target":11},{"source":61,"target":64},{"source":61,"target":7},{"source":64,"target":11},{"source":62,"target":65},{"source":62,"target":7},{"source":63,"target":66},{"source":63,"target":7},{"source":8,"target":0},{"source":8,"target":6},{"source":8,"target":67},{"source":8,"target":68},{"source":67,"target":5},{"source":67,"target":69},{"source":67,"target":8},{"source":69,"target":5},{"source":68,"target":70},{"source":68,"target":6},{"source":70,"target":3},{"source":9,"target":0},{"source":9,"target":71},{"source":9,"target":72},{"source":9,"target":73},{"source":71,"target":4},{"source":71,"target":74},{"source":71,"target":9},{"source":74,"target":4},{"source":72,"target":13},{"source":72,"target":75},{"source":72,"target":9},{"source":75,"target":13},{"source":73,"target":76},{"source":73,"target":9},{"source":10,"target":0},{"source":10,"target":12},{"source":10,"target":77},{"source":10,"target":78},{"source":10,"target":79},{"source":77,"target":6},{"source":77,"target":80},{"source":77,"target":10},{"source":80,"target":81},{"source":80,"target":6},{"source":78,"target":5},{"source":78,"target":82},{"source":78,"target":10},{"source":82,"target":5},{"source":79,"target":12},{"source":11,"target":0},{"source":11,"target":12},{"source":11,"target":83},{"source":83,"target":12},{"source":12,"target":0},{"source":12,"target":84},{"source":12,"target":85},{"source":84,"target":4},{"source":84,"target":86},{"source":84,"target":12},{"source":86,"target":4},{"source":85,"target":87},{"source":85,"target":12},{"source":13,"target":0},{"source":13,"target":88},{"source":13,"target":89},{"source":13,"target":90},{"source":13,"target":91},{"source":88,"target":1},{"source":88,"target":92},{"source":88,"target":13},{"source":92,"target":1},{"source":89,"target":12},{"source":89,"target":93},{"source":89,"target":13},{"source":93,"target":12},{"source":90,"target":94},{"source":90,"target":13},{"source":91,"target":95},{"source":91,"target":13},{"source":14,"target":0},{"source":14,"target":96},{"source":14,"target":97},{"source":14,"target":98},{"source":14,"target":99},{"source":14,"target":100},{"source":14,"target":101},{"source":96,"target":102},{"source":96,"target":14},{"source":97,"target":103},{"source":97,"target":14},{"source":98,"target":104},{"source":98,"target":14},{"source":99,"target":105},{"source":99,"target":14},{"source":100,"target":106},{"source":100,"target":14},{"source":101,"target":107},{"source":101,"target":14},{"source":15,"target":0},{"source":15,"target":14},{"source":15,"target":108},{"source":108,"target":14},{"source":16,"target":0},{"source":16,"target":14},{"source":16,"target":109},{"source":109,"target":14},{"source":17,"target":0},{"source":17,"target":14},{"source":17,"target":110},{"source":110,"target":14}],"multigraph":true} |
false | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="insurance_process" nsURI="insurance_process" nsPrefix="insurance_process">
<eClassifiers xsi:type="ecore:EClass" name="Root">
<eAnnotations source="om=insurance_meta_process"/>
<eAnnotations source="lm">
<details key="no.hvl.multecore.examples.bicycle2019.supp.languages" value=""/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="__metamodels" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" defaultValueLiteral=""/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="__supplementaries" upperBound="-1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" defaultValueLiteral=""/>
<eStructuralFeatures xsi:type="ecore:EReference" name="__contains" upperBound="-1"
eType="#//EClass" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EClass">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="__name" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" defaultValueLiteral=""/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="__relationNames" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" defaultValueLiteral=""/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="__potency" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" defaultValueLiteral="1-1-*"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="__parentNodes" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" defaultValueLiteral=""/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="__isAbstract" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean" defaultValueLiteral="false"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="__attributeNames" upperBound="-1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" defaultValueLiteral=""/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="__supplementaryNodes" upperBound="-1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" defaultValueLiteral=""/>
<eStructuralFeatures xsi:type="ecore:EReference" name="EReference" upperBound="-1"
eType="#//EClass"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ManagerRole" eSuperTypes="#//EClass">
<eAnnotations source="type=Role@2"/>
<eAnnotations source="suptypes"/>
<eAnnotations source="potency=1-1-*"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="executes" upperBound="-1"
eType="#//ReviewClaimTask">
<eAnnotations source="type=executes@2"/>
<eAnnotations source="potency=1-1-*"/>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ClaimArtifact" eSuperTypes="#//EClass">
<eAnnotations source="type=IArtifact"/>
<eAnnotations source="suptypes"/>
<eAnnotations source="potency=1-1-*"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="BenBoss" eSuperTypes="#//EClass">
<eAnnotations source="type=Actor@2"/>
<eAnnotations source="suptypes"/>
<eAnnotations source="potency=1-1-*"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="creates" upperBound="-1"
eType="#//AssessClaimTask">
<eAnnotations source="type=creates@2"/>
<eAnnotations source="potency=1-1-*"/>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ClaimHandlingManagerRole" eSuperTypes="#//EClass">
<eAnnotations source="type=Role@2"/>
<eAnnotations source="suptypes"/>
<eAnnotations source="potency=1-1-*"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="executes" upperBound="-1"
eType="#//AuthorizePaymentTask">
<eAnnotations source="type=executes@2"/>
<eAnnotations source="potency=1-1-*"/>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ClaimHandling" eSuperTypes="#//EClass">
<eAnnotations source="type=Process@2"/>
<eAnnotations source="suptypes"/>
<eAnnotations source="potency=1-1-*"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="c_ac" upperBound="-1" eType="#//AssessClaimTask">
<eAnnotations source="type=contains@2"/>
<eAnnotations source="potency=1-1-*"/>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="c_rc" upperBound="-1" eType="#//ReceiveClaimTask">
<eAnnotations source="type=contains@2"/>
<eAnnotations source="potency=1-1-*"/>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="c_ap" upperBound="-1" eType="#//AuthorizePaymentTask">
<eAnnotations source="type=contains@2"/>
<eAnnotations source="potency=1-1-*"/>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="c_pp" upperBound="-1" eType="#//PayPremiumTask">
<eAnnotations source="type=contains@2"/>
<eAnnotations source="potency=1-1-*"/>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="PayPremiumTask" eSuperTypes="#//EClass">
<eAnnotations source="type=Task@2"/>
<eAnnotations source="suptypes"/>
<eAnnotations source="potency=1-1-*"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ClaimPaymentDecisionArtifact" eSuperTypes="#//EClass">
<eAnnotations source="type=IArtifact"/>
<eAnnotations source="suptypes"/>
<eAnnotations source="potency=1-1-*"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ReceiveClaimTask" eSuperTypes="#//EClass">
<eAnnotations source="type=Task@2"/>
<eAnnotations source="suptypes"/>
<eAnnotations source="potency=1-1-*"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="SeniorManagerRole" eSuperTypes="#//ManagerRole">
<eAnnotations source="type=SeniorRole@2"/>
<eAnnotations source="suptypes"/>
<eAnnotations source="potency=1-1-*"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="FinancialOfficerRole" eSuperTypes="#//EClass">
<eAnnotations source="type=Role@2"/>
<eAnnotations source="suptypes"/>
<eAnnotations source="potency=1-1-*"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="executes" upperBound="-1"
eType="#//AuthorizePaymentTask">
<eAnnotations source="type=executes@2"/>
<eAnnotations source="potency=1-1-*"/>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="AuthorizePaymentTask" eSuperTypes="#//EClass">
<eAnnotations source="type=Task@2"/>
<eAnnotations source="suptypes"/>
<eAnnotations source="potency=1-1-*"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ProjectLeaderRole" eSuperTypes="#//EClass">
<eAnnotations source="type=Role@2"/>
<eAnnotations source="suptypes"/>
<eAnnotations source="potency=1-1-*"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="AssessClaimTask" eSuperTypes="#//EClass">
<eAnnotations source="type=Task@2"/>
<eAnnotations source="suptypes"/>
<eAnnotations source="potency=1-1-*"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="produces" upperBound="-1"
eType="#//ClaimPaymentDecisionArtifact">
<eAnnotations source="type=produces@2"/>
<eAnnotations source="potency=1-1-*"/>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="uses" upperBound="-1" eType="#//ClaimArtifact">
<eAnnotations source="type=uses@2"/>
<eAnnotations source="potency=1-1-*"/>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ReviewClaimTask" eSuperTypes="#//EClass">
<eAnnotations source="type=Task@2"/>
<eAnnotations source="suptypes"/>
<eAnnotations source="potency=1-1-*"/>
</eClassifiers>
</ecore:EPackage>
| github:ecore:/data/alejandrort/no.hvl.multecore.examples.process2019/no.hvl.multecore.examples.bicycle2019.main/models/insurance_process.ecore | ecore | insurance_process
Root
__metamodels
__supplementaries
__contains
EClass
__name
__relationNames
__potency
1-1-*
__parentNodes
__isAbstract
false
__attributeNames
__supplementaryNodes
EReference
ManagerRole
executes
ClaimArtifact
BenBoss
creates
ClaimHandlingManagerRole
executes
ClaimHandling
c_ac
c_rc
c_ap
c_pp
PayPremiumTask
ClaimPaymentDecisionArtifact
ReceiveClaimTask
SeniorManagerRole
FinancialOfficerRole
executes
AuthorizePaymentTask
ProjectLeaderRole
AssessClaimTask
produces
uses
ReviewClaimTask | null | {"directed":true,"nodes":[{"nsPrefix":"insurance_process","nsURI":"insurance_process","name":"insurance_process","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Root","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EClass","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ManagerRole","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ClaimArtifact","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BenBoss","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ClaimHandlingManagerRole","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ClaimHandling","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PayPremiumTask","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ClaimPaymentDecisionArtifact","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ReceiveClaimTask","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SeniorManagerRole","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FinancialOfficerRole","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AuthorizePaymentTask","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ProjectLeaderRole","instanceClass":null,"abstract":false,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AssessClaimTask","instanceClass":null,"abstract":false,"id":15,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ReviewClaimTask","instanceClass":null,"abstract":false,"id":16,"interface":false,"eClass":"EClass"},{"ordered":true,"upperBound":1,"defaultValue":"","volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"","unsettable":false,"transient":false,"unique":true,"name":"__metamodels","changeable":true,"lowerBound":1,"iD":false,"id":17,"derived":false},{"ordered":true,"upperBound":-1,"defaultValue":"","volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":"","unsettable":false,"transient":false,"unique":true,"name":"__supplementaries","changeable":true,"lowerBound":0,"iD":false,"id":18,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"__contains","changeable":true,"resolveProxies":true,"lowerBound":0,"id":19,"derived":false},{"id":20,"eClass":"EGenericType"},{"id":21,"eClass":"EGenericType"},{"id":22,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":"","volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"","unsettable":false,"transient":false,"unique":true,"name":"__name","changeable":true,"lowerBound":1,"iD":false,"id":23,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":"","volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"","unsettable":false,"transient":false,"unique":true,"name":"__relationNames","changeable":true,"lowerBound":1,"iD":false,"id":24,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":"1-1-*","volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"1-1-*","unsettable":false,"transient":false,"unique":true,"name":"__potency","changeable":true,"lowerBound":1,"iD":false,"id":25,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":"","volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"","unsettable":false,"transient":false,"unique":true,"name":"__parentNodes","changeable":true,"lowerBound":1,"iD":false,"id":26,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"false","unsettable":false,"transient":false,"unique":true,"name":"__isAbstract","changeable":true,"lowerBound":1,"iD":false,"id":27,"derived":false},{"ordered":true,"upperBound":-1,"defaultValue":"","volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":"","unsettable":false,"transient":false,"unique":true,"name":"__attributeNames","changeable":true,"lowerBound":0,"iD":false,"id":28,"derived":false},{"ordered":true,"upperBound":-1,"defaultValue":"","volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":"","unsettable":false,"transient":false,"unique":true,"name":"__supplementaryNodes","changeable":true,"lowerBound":0,"iD":false,"id":29,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"EReference","changeable":true,"resolveProxies":true,"lowerBound":0,"id":30,"derived":false},{"id":31,"eClass":"EGenericType"},{"id":32,"eClass":"EGenericType"},{"id":33,"eClass":"EGenericType"},{"id":34,"eClass":"EGenericType"},{"id":35,"eClass":"EGenericType"},{"id":36,"eClass":"EGenericType"},{"id":37,"eClass":"EGenericType"},{"id":38,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"executes","changeable":true,"resolveProxies":true,"lowerBound":0,"id":39,"derived":false},{"id":40,"eClass":"EGenericType"},{"id":41,"eClass":"EGenericType"},{"id":42,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"creates","changeable":true,"resolveProxies":true,"lowerBound":0,"id":43,"derived":false},{"id":44,"eClass":"EGenericType"},{"id":45,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"executes","changeable":true,"resolveProxies":true,"lowerBound":0,"id":46,"derived":false},{"id":47,"eClass":"EGenericType"},{"id":48,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"c_ac","changeable":true,"resolveProxies":true,"lowerBound":0,"id":49,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"c_rc","changeable":true,"resolveProxies":true,"lowerBound":0,"id":50,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"c_ap","changeable":true,"resolveProxies":true,"lowerBound":0,"id":51,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"c_pp","changeable":true,"resolveProxies":true,"lowerBound":0,"id":52,"derived":false},{"id":53,"eClass":"EGenericType"},{"id":54,"eClass":"EGenericType"},{"id":55,"eClass":"EGenericType"},{"id":56,"eClass":"EGenericType"},{"id":57,"eClass":"EGenericType"},{"id":58,"eClass":"EGenericType"},{"id":59,"eClass":"EGenericType"},{"id":60,"eClass":"EGenericType"},{"id":61,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"executes","changeable":true,"resolveProxies":true,"lowerBound":0,"id":62,"derived":false},{"id":63,"eClass":"EGenericType"},{"id":64,"eClass":"EGenericType"},{"id":65,"eClass":"EGenericType"},{"id":66,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"produces","changeable":true,"resolveProxies":true,"lowerBound":0,"id":67,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"uses","changeable":true,"resolveProxies":true,"lowerBound":0,"id":68,"derived":false},{"id":69,"eClass":"EGenericType"},{"id":70,"eClass":"EGenericType"},{"id":71,"eClass":"EGenericType"},{"id":72,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":0,"target":8},{"source":0,"target":9},{"source":0,"target":10},{"source":0,"target":11},{"source":0,"target":12},{"source":0,"target":13},{"source":0,"target":14},{"source":0,"target":15},{"source":0,"target":16},{"source":1,"target":0},{"source":1,"target":17},{"source":1,"target":18},{"source":1,"target":19},{"source":17,"target":20},{"source":17,"target":1},{"source":18,"target":21},{"source":18,"target":1},{"source":19,"target":2},{"source":19,"target":22},{"source":19,"target":1},{"source":22,"target":2},{"source":2,"target":0},{"source":2,"target":23},{"source":2,"target":24},{"source":2,"target":25},{"source":2,"target":26},{"source":2,"target":27},{"source":2,"target":28},{"source":2,"target":29},{"source":2,"target":30},{"source":23,"target":31},{"source":23,"target":2},{"source":24,"target":32},{"source":24,"target":2},{"source":25,"target":33},{"source":25,"target":2},{"source":26,"target":34},{"source":26,"target":2},{"source":27,"target":35},{"source":27,"target":2},{"source":28,"target":36},{"source":28,"target":2},{"source":29,"target":37},{"source":29,"target":2},{"source":30,"target":2},{"source":30,"target":38},{"source":30,"target":2},{"source":38,"target":2},{"source":3,"target":0},{"source":3,"target":2},{"source":3,"target":39},{"source":3,"target":40},{"source":39,"target":16},{"source":39,"target":41},{"source":39,"target":3},{"source":41,"target":16},{"source":40,"target":2},{"source":4,"target":0},{"source":4,"target":2},{"source":4,"target":42},{"source":42,"target":2},{"source":5,"target":0},{"source":5,"target":2},{"source":5,"target":43},{"source":5,"target":44},{"source":43,"target":15},{"source":43,"target":45},{"source":43,"target":5},{"source":45,"target":15},{"source":44,"target":2},{"source":6,"target":0},{"source":6,"target":2},{"source":6,"target":46},{"source":6,"target":47},{"source":46,"target":13},{"source":46,"target":48},{"source":46,"target":6},{"source":48,"target":13},{"source":47,"target":2},{"source":7,"target":0},{"source":7,"target":2},{"source":7,"target":49},{"source":7,"target":50},{"source":7,"target":51},{"source":7,"target":52},{"source":7,"target":53},{"source":49,"target":15},{"source":49,"target":54},{"source":49,"target":7},{"source":54,"target":15},{"source":50,"target":10},{"source":50,"target":55},{"source":50,"target":7},{"source":55,"target":10},{"source":51,"target":13},{"source":51,"target":56},{"source":51,"target":7},{"source":56,"target":13},{"source":52,"target":8},{"source":52,"target":57},{"source":52,"target":7},{"source":57,"target":8},{"source":53,"target":2},{"source":8,"target":0},{"source":8,"target":2},{"source":8,"target":58},{"source":58,"target":2},{"source":9,"target":0},{"source":9,"target":2},{"source":9,"target":59},{"source":59,"target":2},{"source":10,"target":0},{"source":10,"target":2},{"source":10,"target":60},{"source":60,"target":2},{"source":11,"target":0},{"source":11,"target":3},{"source":11,"target":61},{"source":61,"target":3},{"source":12,"target":0},{"source":12,"target":2},{"source":12,"target":62},{"source":12,"target":63},{"source":62,"target":13},{"source":62,"target":64},{"source":62,"target":12},{"source":64,"target":13},{"source":63,"target":2},{"source":13,"target":0},{"source":13,"target":2},{"source":13,"target":65},{"source":65,"target":2},{"source":14,"target":0},{"source":14,"target":2},{"source":14,"target":66},{"source":66,"target":2},{"source":15,"target":0},{"source":15,"target":2},{"source":15,"target":67},{"source":15,"target":68},{"source":15,"target":69},{"source":67,"target":9},{"source":67,"target":70},{"source":67,"target":15},{"source":70,"target":9},{"source":68,"target":4},{"source":68,"target":71},{"source":68,"target":15},{"source":71,"target":4},{"source":69,"target":2},{"source":16,"target":0},{"source":16,"target":2},{"source":16,"target":72},{"source":72,"target":2}],"multigraph":true} |
true | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="UML2" nsURI="http:///UML2.ecore" nsPrefix="UML2">
<eClassifiers xsi:type="ecore:EEnum" name="AggregationKind">
<eLiterals name="composite" value="1" literal="composite"/>
<eLiterals name="none" value="2" literal="none"/>
<eLiterals name="shared" value="3" literal="shared"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="VisibilityKind">
<eLiterals name="package" value="1" literal="package"/>
<eLiterals name="private" value="2" literal="private"/>
<eLiterals name="protected" value="3" literal="protected"/>
<eLiterals name="public" value="4" literal="public"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="ParameterDirectionKind">
<eLiterals name="in" value="1" literal="in"/>
<eLiterals name="inout" value="2" literal="inout"/>
<eLiterals name="out" value="3" literal="out"/>
<eLiterals name="return" value="4" literal="return"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="VariableAction" eSuperTypes="#//Action"/>
<eClassifiers xsi:type="ecore:EClass" name="InitialNode" eSuperTypes="#//ControlNode"/>
<eClassifiers xsi:type="ecore:EClass" name="AnyTrigger" eSuperTypes="#//MessageTrigger"/>
<eClassifiers xsi:type="ecore:EClass" name="LiteralInteger" eSuperTypes="#//LiteralSpecification"/>
<eClassifiers xsi:type="ecore:EClass" name="Substitution" eSuperTypes="#//Realization"/>
<eClassifiers xsi:type="ecore:EClass" name="LinkAction" eSuperTypes="#//Action"/>
<eClassifiers xsi:type="ecore:EClass" name="ActivityPartition" eSuperTypes="#//NamedElement #//ActivityGroup"/>
<eClassifiers xsi:type="ecore:EClass" name="RemoveVariableValueAction" eSuperTypes="#//WriteVariableAction"/>
<eClassifiers xsi:type="ecore:EClass" name="ClearStructuralFeatureAction" eSuperTypes="#//StructuralFeatureAction"/>
<eClassifiers xsi:type="ecore:EClass" name="ExtensionEnd" eSuperTypes="#//Property"/>
<eClassifiers xsi:type="ecore:EClass" name="TimeExpression" eSuperTypes="#//ValueSpecification"/>
<eClassifiers xsi:type="ecore:EClass" name="Pseudostate" eSuperTypes="#//Vertex"/>
<eClassifiers xsi:type="ecore:EClass" name="InterruptibleActivityRegion" eSuperTypes="#//ActivityGroup"/>
<eClassifiers xsi:type="ecore:EClass" name="InteractionFragment" eSuperTypes="#//NamedElement"/>
<eClassifiers xsi:type="ecore:EClass" name="InformationItem" eSuperTypes="#//Classifier"/>
<eClassifiers xsi:type="ecore:EClass" name="ReadSelfAction" eSuperTypes="#//Action">
<eStructuralFeatures xsi:type="ecore:EReference" name="result" lowerBound="1"
eType="#//OutputPin" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="TimeTrigger" eSuperTypes="#//Trigger"/>
<eClassifiers xsi:type="ecore:EClass" name="Manifestation" eSuperTypes="#//Abstraction"/>
<eClassifiers xsi:type="ecore:EClass" name="ConnectableElement" eSuperTypes="#//NamedElement #//ParameterableElement"/>
<eClassifiers xsi:type="ecore:EClass" name="SignalTrigger" eSuperTypes="#//MessageTrigger"/>
<eClassifiers xsi:type="ecore:EClass" name="AcceptCallAction" eSuperTypes="#//AcceptEventAction"/>
<eClassifiers xsi:type="ecore:EClass" name="CallBehaviorAction" eSuperTypes="#//CallAction"/>
<eClassifiers xsi:type="ecore:EClass" name="DurationConstraint" eSuperTypes="#//IntervalConstraint"/>
<eClassifiers xsi:type="ecore:EClass" name="CreateLinkObjectAction" eSuperTypes="#//CreateLinkAction"/>
<eClassifiers xsi:type="ecore:EClass" name="RaiseExceptionAction" eSuperTypes="#//Action"/>
<eClassifiers xsi:type="ecore:EClass" name="ClassifierTemplateParameter" eSuperTypes="#//TemplateParameter"/>
<eClassifiers xsi:type="ecore:EClass" name="BehavioralFeature" eSuperTypes="#//Namespace #//Feature"/>
<eClassifiers xsi:type="ecore:EClass" name="CombinedFragment" eSuperTypes="#//InteractionFragment"/>
<eClassifiers xsi:type="ecore:EClass" name="Behavior" eSuperTypes="#//Class">
<eStructuralFeatures xsi:type="ecore:EReference" name="specification" eType="#//BehavioralFeature"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="ownedParameterSet" upperBound="-1"
eType="#//ParameterSet" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ProtocolConformance" eSuperTypes="#//DirectedRelationship"/>
<eClassifiers xsi:type="ecore:EClass" name="TemplateParameter" eSuperTypes="#//Element"/>
<eClassifiers xsi:type="ecore:EClass" name="InformationFlow" eSuperTypes="#//PackageableElement #//DirectedRelationship"/>
<eClassifiers xsi:type="ecore:EClass" name="ProfileApplication" eSuperTypes="#//PackageImport"/>
<eClassifiers xsi:type="ecore:EClass" name="StructuredActivityNode" eSuperTypes="#//Action #//Namespace #//ActivityGroup"/>
<eClassifiers xsi:type="ecore:EClass" name="LiteralBoolean" eSuperTypes="#//LiteralSpecification"/>
<eClassifiers xsi:type="ecore:EClass" name="ValueSpecification" eSuperTypes="#//TypedElement #//ParameterableElement"/>
<eClassifiers xsi:type="ecore:EClass" name="LiteralString" eSuperTypes="#//LiteralSpecification"/>
<eClassifiers xsi:type="ecore:EClass" name="Implementation" eSuperTypes="#//Realization"/>
<eClassifiers xsi:type="ecore:EClass" name="AssociationClass" eSuperTypes="#//Class #//Association"/>
<eClassifiers xsi:type="ecore:EClass" name="StructuredClassifier" eSuperTypes="#//Classifier"/>
<eClassifiers xsi:type="ecore:EClass" name="Stereotype" eSuperTypes="#//Class"/>
<eClassifiers xsi:type="ecore:EClass" name="OutputPin" eSuperTypes="#//Pin"/>
<eClassifiers xsi:type="ecore:EClass" name="ReadExtentAction" eSuperTypes="#//Action"/>
<eClassifiers xsi:type="ecore:EClass" name="ConnectionPointReference" eSuperTypes="#//Vertex"/>
<eClassifiers xsi:type="ecore:EClass" name="DirectedRelationship" eSuperTypes="#//Relationship"/>
<eClassifiers xsi:type="ecore:EClass" name="Region" eSuperTypes="#//Namespace #//RedefinableElement"/>
<eClassifiers xsi:type="ecore:EClass" name="Interaction" eSuperTypes="#//Behavior #//InteractionFragment"/>
<eClassifiers xsi:type="ecore:EClass" name="ForkNode" eSuperTypes="#//ControlNode"/>
<eClassifiers xsi:type="ecore:EClass" name="ReadLinkObjectEndAction" eSuperTypes="#//Action"/>
<eClassifiers xsi:type="ecore:EClass" name="ConditionalNode" eSuperTypes="#//StructuredActivityNode"/>
<eClassifiers xsi:type="ecore:EClass" name="DeployedArtifact" eSuperTypes="#//NamedElement"/>
<eClassifiers xsi:type="ecore:EClass" name="SendObjectAction" eSuperTypes="#//InvocationAction"/>
<eClassifiers xsi:type="ecore:EClass" name="InvocationAction" eSuperTypes="#//Action"/>
<eClassifiers xsi:type="ecore:EClass" name="TimeObservationAction" eSuperTypes="#//WriteStructuralFeatureAction"/>
<eClassifiers xsi:type="ecore:EClass" name="Relationship" eSuperTypes="#//Element"/>
<eClassifiers xsi:type="ecore:EClass" name="DeploymentTarget" eSuperTypes="#//NamedElement"/>
<eClassifiers xsi:type="ecore:EClass" name="Class" eSuperTypes="#//BehavioredClassifier #//EncapsulatedClassifier">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isActive" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="nestedClassifier" upperBound="-1"
eType="#//Classifier" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="ownedReception" upperBound="-1"
eType="#//Reception" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="InputPin" eSuperTypes="#//Pin"/>
<eClassifiers xsi:type="ecore:EClass" name="DurationObservationAction" eSuperTypes="#//WriteStructuralFeatureAction"/>
<eClassifiers xsi:type="ecore:EClass" name="Property" eSuperTypes="#//StructuralFeature #//ConnectableElement #//DeploymentTarget">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isComposite" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isDerived" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isDerivedUnion" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="aggregation" eType="#//AggregationKind"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="subsettedProperty" upperBound="-1"
eType="#//Property"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="association" eType="#//Association"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="qualifier" upperBound="-1"
eType="#//Property" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EventOccurrence" eSuperTypes="#//InteractionFragment #//MessageEnd"/>
<eClassifiers xsi:type="ecore:EClass" name="ReclassifyObjectAction" eSuperTypes="#//Action"/>
<eClassifiers xsi:type="ecore:EClass" name="Stop" eSuperTypes="#//EventOccurrence"/>
<eClassifiers xsi:type="ecore:EClass" name="TemplateParameterSubstitution" eSuperTypes="#//Element"/>
<eClassifiers xsi:type="ecore:EClass" name="Operation" eSuperTypes="#//BehavioralFeature #//TypedElement #//MultiplicityElement #//ParameterableElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isQuery" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="ownedParameter" upperBound="-1"
eType="#//Parameter" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="bodyCondition" eType="#//Constraint"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Constraint" eSuperTypes="#//PackageableElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="constrainedElement" upperBound="-1"
eType="#//Element"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Deployment" eSuperTypes="#//Dependency"/>
<eClassifiers xsi:type="ecore:EClass" name="Device" eSuperTypes="#//Node"/>
<eClassifiers xsi:type="ecore:EClass" name="EnumerationLiteral" eSuperTypes="#//InstanceSpecification"/>
<eClassifiers xsi:type="ecore:EClass" name="CentralBufferNode" eSuperTypes="#//ObjectNode"/>
<eClassifiers xsi:type="ecore:EClass" name="ReplyAction" eSuperTypes="#//Action"/>
<eClassifiers xsi:type="ecore:EClass" name="Type" eSuperTypes="#//PackageableElement"/>
<eClassifiers xsi:type="ecore:EClass" name="BroadcastSignalAction" eSuperTypes="#//InvocationAction"/>
<eClassifiers xsi:type="ecore:EClass" name="Extension" eSuperTypes="#//Association"/>
<eClassifiers xsi:type="ecore:EClass" name="GeneralizationSet" eSuperTypes="#//PackageableElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="generalization" upperBound="-1"
eType="#//Generalization"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="LiteralNull" eSuperTypes="#//LiteralSpecification"/>
<eClassifiers xsi:type="ecore:EClass" name="Continuation" eSuperTypes="#//InteractionFragment"/>
<eClassifiers xsi:type="ecore:EClass" name="Gate" eSuperTypes="#//MessageEnd"/>
<eClassifiers xsi:type="ecore:EClass" name="ParameterableClassifier" eSuperTypes="#//Classifier"/>
<eClassifiers xsi:type="ecore:EClass" name="Enumeration" eSuperTypes="#//DataType"/>
<eClassifiers xsi:type="ecore:EClass" name="Feature" eSuperTypes="#//RedefinableElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isStatic" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="featuringClassifier" upperBound="-1"
eType="#//Classifier"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Parameter" eSuperTypes="#//ConnectableElement #//TypedElement #//MultiplicityElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="direction" eType="#//ParameterDirectionKind"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="TemplateBinding" eSuperTypes="#//DirectedRelationship"/>
<eClassifiers xsi:type="ecore:EClass" name="InteractionOccurrence" eSuperTypes="#//InteractionFragment"/>
<eClassifiers xsi:type="ecore:EClass" name="MultiplicityElement" eSuperTypes="#//Element">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isOrdered" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isUnique" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="lower" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="upper" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ObjectFlow" eSuperTypes="#//ActivityEdge"/>
<eClassifiers xsi:type="ecore:EClass" name="ApplyFunctionAction" eSuperTypes="#//Action"/>
<eClassifiers xsi:type="ecore:EClass" name="InstanceValue" eSuperTypes="#//ValueSpecification"/>
<eClassifiers xsi:type="ecore:EClass" name="Trigger" eSuperTypes="#//NamedElement"/>
<eClassifiers xsi:type="ecore:EClass" name="Slot" eSuperTypes="#//Element">
<eStructuralFeatures xsi:type="ecore:EReference" name="definingFeature" lowerBound="1"
eType="#//StructuralFeature"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="DestroyLinkAction" eSuperTypes="#//WriteLinkAction"/>
<eClassifiers xsi:type="ecore:EClass" name="Lifeline" eSuperTypes="#//NamedElement"/>
<eClassifiers xsi:type="ecore:EClass" name="ActivityNode" eSuperTypes="#//RedefinableElement"/>
<eClassifiers xsi:type="ecore:EClass" name="ConnectableElementTemplateParameter"
eSuperTypes="#//TemplateParameter"/>
<eClassifiers xsi:type="ecore:EClass" name="BehavioredClassifier" eSuperTypes="#//Classifier">
<eStructuralFeatures xsi:type="ecore:EReference" name="ownedBehavior" upperBound="-1"
eType="#//Behavior" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="classifierBehavior" eType="#//Behavior"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="MessageEnd" eSuperTypes="#//NamedElement"/>
<eClassifiers xsi:type="ecore:EClass" name="JoinNode" eSuperTypes="#//ControlNode"/>
<eClassifiers xsi:type="ecore:EClass" name="ElementImport" eSuperTypes="#//DirectedRelationship">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="visibility" eType="#//VisibilityKind"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="importedElement" lowerBound="1"
eType="#//PackageableElement"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Profile" eSuperTypes="#//Package"/>
<eClassifiers xsi:type="ecore:EClass" name="Dependency" eSuperTypes="#//PackageableElement #//DirectedRelationship"/>
<eClassifiers xsi:type="ecore:EClass" name="Clause" eSuperTypes="#//Element"/>
<eClassifiers xsi:type="ecore:EClass" name="FlowFinalNode" eSuperTypes="#//FinalNode"/>
<eClassifiers xsi:type="ecore:EClass" name="ExpansionRegion" eSuperTypes="#//StructuredActivityNode"/>
<eClassifiers xsi:type="ecore:EClass" name="StructuralFeatureAction" eSuperTypes="#//Action">
<eStructuralFeatures xsi:type="ecore:EReference" name="structuralFeature" lowerBound="1"
eType="#//StructuralFeature"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CreateLinkAction" eSuperTypes="#//WriteLinkAction"/>
<eClassifiers xsi:type="ecore:EClass" name="DataType" eSuperTypes="#//Classifier"/>
<eClassifiers xsi:type="ecore:EClass" name="ExecutionEnvironment" eSuperTypes="#//Node"/>
<eClassifiers xsi:type="ecore:EClass" name="Element">
<eStructuralFeatures xsi:type="ecore:EReference" name="owner" eType="#//Element"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="StateMachine" eSuperTypes="#//Behavior"/>
<eClassifiers xsi:type="ecore:EClass" name="InteractionOperand" eSuperTypes="#//Namespace #//InteractionFragment"/>
<eClassifiers xsi:type="ecore:EClass" name="TemplateSignature" eSuperTypes="#//Element"/>
<eClassifiers xsi:type="ecore:EClass" name="ParameterSet" eSuperTypes="#//NamedElement"/>
<eClassifiers xsi:type="ecore:EClass" name="RedefinableTemplateSignature" eSuperTypes="#//RedefinableElement #//TemplateSignature"/>
<eClassifiers xsi:type="ecore:EClass" name="Include" eSuperTypes="#//NamedElement #//DirectedRelationship"/>
<eClassifiers xsi:type="ecore:EClass" name="ReadLinkAction" eSuperTypes="#//LinkAction"/>
<eClassifiers xsi:type="ecore:EClass" name="CreateObjectAction" eSuperTypes="#//Action">
<eStructuralFeatures xsi:type="ecore:EReference" name="classifier" lowerBound="1"
eType="#//Classifier"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="result" lowerBound="1"
eType="#//OutputPin" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ReadIsClassifiedObjectAction" eSuperTypes="#//Action"/>
<eClassifiers xsi:type="ecore:EClass" name="ProtocolStateMachine" eSuperTypes="#//StateMachine"/>
<eClassifiers xsi:type="ecore:EClass" name="AcceptEventAction" eSuperTypes="#//Action"/>
<eClassifiers xsi:type="ecore:EClass" name="SendSignalAction" eSuperTypes="#//InvocationAction"/>
<eClassifiers xsi:type="ecore:EClass" name="StructuralFeature" eSuperTypes="#//Feature #//TypedElement #//MultiplicityElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isReadOnly" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Port" eSuperTypes="#//Property"/>
<eClassifiers xsi:type="ecore:EClass" name="PackageImport" eSuperTypes="#//DirectedRelationship">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="visibility" eType="#//VisibilityKind"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Usage" eSuperTypes="#//Dependency"/>
<eClassifiers xsi:type="ecore:EClass" name="ParameterableElement" eSuperTypes="#//Element"/>
<eClassifiers xsi:type="ecore:EClass" name="QualifierValue" eSuperTypes="#//Element">
<eStructuralFeatures xsi:type="ecore:EReference" name="qualifier" lowerBound="1"
eType="#//Property"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ReadVariableAction" eSuperTypes="#//VariableAction"/>
<eClassifiers xsi:type="ecore:EClass" name="ExecutableNode" eSuperTypes="#//ActivityNode"/>
<eClassifiers xsi:type="ecore:EClass" name="Comment" eSuperTypes="#//TemplateableElement"/>
<eClassifiers xsi:type="ecore:EClass" name="WriteVariableAction" eSuperTypes="#//VariableAction"/>
<eClassifiers xsi:type="ecore:EClass" name="LoopNode" eSuperTypes="#//StructuredActivityNode"/>
<eClassifiers xsi:type="ecore:EClass" name="DurationInterval" eSuperTypes="#//Interval"/>
<eClassifiers xsi:type="ecore:EClass" name="Collaboration" eSuperTypes="#//BehavioredClassifier #//StructuredClassifier"/>
<eClassifiers xsi:type="ecore:EClass" name="ConnectorEnd" eSuperTypes="#//MultiplicityElement"/>
<eClassifiers xsi:type="ecore:EClass" name="Abstraction" eSuperTypes="#//Dependency"/>
<eClassifiers xsi:type="ecore:EClass" name="Artifact" eSuperTypes="#//Classifier #//DeployedArtifact"/>
<eClassifiers xsi:type="ecore:EClass" name="LinkEndCreationData" eSuperTypes="#//LinkEndData"/>
<eClassifiers xsi:type="ecore:EClass" name="ReadStructuralFeatureAction" eSuperTypes="#//StructuralFeatureAction"/>
<eClassifiers xsi:type="ecore:EClass" name="IntervalConstraint" eSuperTypes="#//Constraint"/>
<eClassifiers xsi:type="ecore:EClass" name="ExecutionOccurrence" eSuperTypes="#//InteractionFragment"/>
<eClassifiers xsi:type="ecore:EClass" name="NamedElement" eSuperTypes="#//TemplateableElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="visibility" eType="#//VisibilityKind"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="TemplateableElement" eSuperTypes="#//Element"/>
<eClassifiers xsi:type="ecore:EClass" name="ObjectNode" eSuperTypes="#//ActivityNode #//TypedElement"/>
<eClassifiers xsi:type="ecore:EClass" name="RedefinableElement" eSuperTypes="#//NamedElement"/>
<eClassifiers xsi:type="ecore:EClass" name="FinalNode" eSuperTypes="#//ControlNode"/>
<eClassifiers xsi:type="ecore:EClass" name="Duration" eSuperTypes="#//ValueSpecification"/>
<eClassifiers xsi:type="ecore:EClass" name="ClearAssociationAction" eSuperTypes="#//Action"/>
<eClassifiers xsi:type="ecore:EClass" name="PackageMerge" eSuperTypes="#//DirectedRelationship"/>
<eClassifiers xsi:type="ecore:EClass" name="Realization" eSuperTypes="#//Abstraction"/>
<eClassifiers xsi:type="ecore:EClass" name="MergeNode" eSuperTypes="#//ControlNode"/>
<eClassifiers xsi:type="ecore:EClass" name="PrimitiveType" eSuperTypes="#//DataType"/>
<eClassifiers xsi:type="ecore:EClass" name="Model" eSuperTypes="#//Package"/>
<eClassifiers xsi:type="ecore:EClass" name="Pin" eSuperTypes="#//ObjectNode #//MultiplicityElement"/>
<eClassifiers xsi:type="ecore:EClass" name="Action" eSuperTypes="#//ExecutableNode">
<eStructuralFeatures xsi:type="ecore:EReference" name="context_" eType="#//Classifier"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="InteractionConstraint" eSuperTypes="#//Constraint"/>
<eClassifiers xsi:type="ecore:EClass" name="ActivityParameterNode" eSuperTypes="#//ObjectNode"/>
<eClassifiers xsi:type="ecore:EClass" name="ExpansionNode" eSuperTypes="#//ObjectNode"/>
<eClassifiers xsi:type="ecore:EClass" name="Generalization" eSuperTypes="#//DirectedRelationship">
<eStructuralFeatures xsi:type="ecore:EReference" name="general" lowerBound="1"
eType="#//Classifier"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Vertex" eSuperTypes="#//NamedElement"/>
<eClassifiers xsi:type="ecore:EClass" name="CommunicationPath" eSuperTypes="#//Association"/>
<eClassifiers xsi:type="ecore:EClass" name="Namespace" eSuperTypes="#//NamedElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="member" upperBound="-1"
eType="#//NamedElement"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ExtensionPoint" eSuperTypes="#//RedefinableElement"/>
<eClassifiers xsi:type="ecore:EClass" name="CollaborationOccurrence" eSuperTypes="#//NamedElement"/>
<eClassifiers xsi:type="ecore:EClass" name="CallAction" eSuperTypes="#//InvocationAction"/>
<eClassifiers xsi:type="ecore:EClass" name="ControlNode" eSuperTypes="#//ActivityNode"/>
<eClassifiers xsi:type="ecore:EClass" name="WriteLinkAction" eSuperTypes="#//LinkAction"/>
<eClassifiers xsi:type="ecore:EClass" name="AddVariableValueAction" eSuperTypes="#//WriteVariableAction"/>
<eClassifiers xsi:type="ecore:EClass" name="FinalState" eSuperTypes="#//State"/>
<eClassifiers xsi:type="ecore:EClass" name="OperationTemplateParameter" eSuperTypes="#//TemplateParameter"/>
<eClassifiers xsi:type="ecore:EClass" name="Interval" eSuperTypes="#//ValueSpecification"/>
<eClassifiers xsi:type="ecore:EClass" name="TestIdentityAction" eSuperTypes="#//Action">
<eStructuralFeatures xsi:type="ecore:EReference" name="first" lowerBound="1" eType="#//InputPin"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="second" lowerBound="1"
eType="#//InputPin" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Node" eSuperTypes="#//Class #//DeploymentTarget"/>
<eClassifiers xsi:type="ecore:EClass" name="Package" eSuperTypes="#//Namespace #//PackageableElement"/>
<eClassifiers xsi:type="ecore:EClass" name="Connector" eSuperTypes="#//Feature"/>
<eClassifiers xsi:type="ecore:EClass" name="LiteralSpecification" eSuperTypes="#//ValueSpecification"/>
<eClassifiers xsi:type="ecore:EClass" name="RemoveStructuralFeatureValueAction"
eSuperTypes="#//WriteStructuralFeatureAction"/>
<eClassifiers xsi:type="ecore:EClass" name="EncapsulatedClassifier" eSuperTypes="#//StructuredClassifier"/>
<eClassifiers xsi:type="ecore:EClass" name="GeneralOrdering" eSuperTypes="#//NamedElement"/>
<eClassifiers xsi:type="ecore:EClass" name="DataStoreNode" eSuperTypes="#//CentralBufferNode"/>
<eClassifiers xsi:type="ecore:EClass" name="StringExpression" eSuperTypes="#//TemplateableElement"/>
<eClassifiers xsi:type="ecore:EClass" name="State" eSuperTypes="#//Namespace #//RedefinableElement #//Vertex"/>
<eClassifiers xsi:type="ecore:EClass" name="ControlFlow" eSuperTypes="#//ActivityEdge"/>
<eClassifiers xsi:type="ecore:EClass" name="LiteralUnlimitedNatural" eSuperTypes="#//LiteralSpecification"/>
<eClassifiers xsi:type="ecore:EClass" name="MessageTrigger" eSuperTypes="#//Trigger"/>
<eClassifiers xsi:type="ecore:EClass" name="UseCase" eSuperTypes="#//BehavioredClassifier"/>
<eClassifiers xsi:type="ecore:EClass" name="TimeInterval" eSuperTypes="#//Interval"/>
<eClassifiers xsi:type="ecore:EClass" name="PrimitiveFunction" eSuperTypes="#//PackageableElement"/>
<eClassifiers xsi:type="ecore:EClass" name="ActivityEdge" eSuperTypes="#//RedefinableElement"/>
<eClassifiers xsi:type="ecore:EClass" name="ValuePin" eSuperTypes="#//InputPin"/>
<eClassifiers xsi:type="ecore:EClass" name="Expression" eSuperTypes="#//OpaqueExpression"/>
<eClassifiers xsi:type="ecore:EClass" name="ChangeTrigger" eSuperTypes="#//Trigger"/>
<eClassifiers xsi:type="ecore:EClass" name="Variable" eSuperTypes="#//ConnectableElement #//TypedElement #//MultiplicityElement"/>
<eClassifiers xsi:type="ecore:EClass" name="Permission" eSuperTypes="#//Dependency"/>
<eClassifiers xsi:type="ecore:EClass" name="InstanceSpecification" eSuperTypes="#//PackageableElement #//DeploymentTarget #//DeployedArtifact">
<eStructuralFeatures xsi:type="ecore:EReference" name="slot" upperBound="-1" eType="#//Slot"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="classifier" upperBound="-1"
eType="#//Classifier"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Signal" eSuperTypes="#//Classifier"/>
<eClassifiers xsi:type="ecore:EClass" name="ExceptionHandler" eSuperTypes="#//Element"/>
<eClassifiers xsi:type="ecore:EClass" name="Association" eSuperTypes="#//Classifier #//Relationship">
<eStructuralFeatures xsi:type="ecore:EReference" name="ownedEnd" upperBound="-1"
eType="#//Property" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="memberEnd" lowerBound="2"
upperBound="-1" eType="#//Property"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CallOperationAction" eSuperTypes="#//CallAction"/>
<eClassifiers xsi:type="ecore:EClass" name="ClearVariableAction" eSuperTypes="#//VariableAction"/>
<eClassifiers xsi:type="ecore:EClass" name="Classifier" eSuperTypes="#//Namespace #//Type #//RedefinableElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isAbstract" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="feature" upperBound="-1"
eType="#//Feature"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="inheritedMember" upperBound="-1"
eType="#//NamedElement"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="generalization" upperBound="-1"
eType="#//Generalization" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="StartOwnedBehaviorAction" eSuperTypes="#//Action"/>
<eClassifiers xsi:type="ecore:EClass" name="TypedElement" eSuperTypes="#//NamedElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="type" eType="#//Type"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Component" eSuperTypes="#//Class"/>
<eClassifiers xsi:type="ecore:EClass" name="Message" eSuperTypes="#//NamedElement"/>
<eClassifiers xsi:type="ecore:EClass" name="DestroyObjectAction" eSuperTypes="#//Action">
<eStructuralFeatures xsi:type="ecore:EReference" name="target" lowerBound="1"
eType="#//InputPin" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="PackageableElement" eSuperTypes="#//NamedElement #//ParameterableElement"/>
<eClassifiers xsi:type="ecore:EClass" name="ActivityGroup" eSuperTypes="#//Element"/>
<eClassifiers xsi:type="ecore:EClass" name="StateInvariant" eSuperTypes="#//InteractionFragment"/>
<eClassifiers xsi:type="ecore:EClass" name="ProtocolTransition" eSuperTypes="#//Transition"/>
<eClassifiers xsi:type="ecore:EClass" name="WriteStructuralFeatureAction" eSuperTypes="#//StructuralFeatureAction">
<eStructuralFeatures xsi:type="ecore:EReference" name="value" lowerBound="1" eType="#//InputPin"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Activity" eSuperTypes="#//Behavior"/>
<eClassifiers xsi:type="ecore:EClass" name="ActivityFinalNode" eSuperTypes="#//FinalNode"/>
<eClassifiers xsi:type="ecore:EClass" name="Extend" eSuperTypes="#//NamedElement #//DirectedRelationship"/>
<eClassifiers xsi:type="ecore:EClass" name="DecisionNode" eSuperTypes="#//ControlNode"/>
<eClassifiers xsi:type="ecore:EClass" name="TemplateableClassifier" eSuperTypes="#//Classifier"/>
<eClassifiers xsi:type="ecore:EClass" name="DeploymentSpecification" eSuperTypes="#//Artifact"/>
<eClassifiers xsi:type="ecore:EClass" name="CallTrigger" eSuperTypes="#//MessageTrigger"/>
<eClassifiers xsi:type="ecore:EClass" name="OpaqueExpression" eSuperTypes="#//ValueSpecification">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="bodies" upperBound="-1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="language" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="behavior" eType="#//Behavior"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="LinkEndData" eSuperTypes="#//Element">
<eStructuralFeatures xsi:type="ecore:EReference" name="value" eType="#//InputPin"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="end" lowerBound="1" eType="#//Property"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="qualifier" upperBound="-1"
eType="#//QualifierValue" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Transition" eSuperTypes="#//RedefinableElement"/>
<eClassifiers xsi:type="ecore:EClass" name="Reception" eSuperTypes="#//BehavioralFeature"/>
<eClassifiers xsi:type="ecore:EClass" name="ReadLinkObjectEndQualifierAction" eSuperTypes="#//Action"/>
<eClassifiers xsi:type="ecore:EClass" name="AddStructuralFeatureValueAction" eSuperTypes="#//WriteStructuralFeatureAction"/>
<eClassifiers xsi:type="ecore:EClass" name="TimeConstraint" eSuperTypes="#//IntervalConstraint"/>
<eClassifiers xsi:type="ecore:EClass" name="Actor" eSuperTypes="#//Classifier"/>
<eClassifiers xsi:type="ecore:EClass" name="PartDecomposition" eSuperTypes="#//InteractionOccurrence"/>
<eClassifiers xsi:type="ecore:EClass" name="Interface" eSuperTypes="#//Classifier"/>
</ecore:EPackage>
| github:ecore:/data/sunwuliang/SlicingProject2.0/ClassModelSlicing/slices/SlicedUML2InsDataSet2.ecore | ecore | UML2
AggregationKind
composite
composite
none
none
shared
shared
VisibilityKind
package
package
private
private
protected
protected
public
public
ParameterDirectionKind
in
in
inout
inout
out
out
return
return
VariableAction
InitialNode
AnyTrigger
LiteralInteger
Substitution
LinkAction
ActivityPartition
RemoveVariableValueAction
ClearStructuralFeatureAction
ExtensionEnd
TimeExpression
Pseudostate
InterruptibleActivityRegion
InteractionFragment
InformationItem
ReadSelfAction
result
TimeTrigger
Manifestation
ConnectableElement
SignalTrigger
AcceptCallAction
CallBehaviorAction
DurationConstraint
CreateLinkObjectAction
RaiseExceptionAction
ClassifierTemplateParameter
BehavioralFeature
CombinedFragment
Behavior
specification
ownedParameterSet
ProtocolConformance
TemplateParameter
InformationFlow
ProfileApplication
StructuredActivityNode
LiteralBoolean
ValueSpecification
LiteralString
Implementation
AssociationClass
StructuredClassifier
Stereotype
OutputPin
ReadExtentAction
ConnectionPointReference
DirectedRelationship
Region
Interaction
ForkNode
ReadLinkObjectEndAction
ConditionalNode
DeployedArtifact
SendObjectAction
InvocationAction
TimeObservationAction
Relationship
DeploymentTarget
Class
isActive
nestedClassifier
ownedReception
InputPin
DurationObservationAction
Property
isComposite
isDerived
isDerivedUnion
aggregation
subsettedProperty
association
qualifier
EventOccurrence
ReclassifyObjectAction
Stop
TemplateParameterSubstitution
Operation
isQuery
ownedParameter
bodyCondition
Constraint
constrainedElement
Deployment
Device
EnumerationLiteral
CentralBufferNode
ReplyAction
Type
BroadcastSignalAction
Extension
GeneralizationSet
generalization
LiteralNull
Continuation
Gate
ParameterableClassifier
Enumeration
Feature
isStatic
featuringClassifier
Parameter
direction
TemplateBinding
InteractionOccurrence
MultiplicityElement
isOrdered
isUnique
lower
upper
ObjectFlow
ApplyFunctionAction
InstanceValue
Trigger
Slot
definingFeature
DestroyLinkAction
Lifeline
ActivityNode
ConnectableElementTemplateParameter
BehavioredClassifier
ownedBehavior
classifierBehavior
MessageEnd
JoinNode
ElementImport
visibility
importedElement
Profile
Dependency
Clause
FlowFinalNode
ExpansionRegion
StructuralFeatureAction
structuralFeature
CreateLinkAction
DataType
ExecutionEnvironment
Element
owner
StateMachine
InteractionOperand
TemplateSignature
ParameterSet
RedefinableTemplateSignature
Include
ReadLinkAction
CreateObjectAction
classifier
result
ReadIsClassifiedObjectAction
ProtocolStateMachine
AcceptEventAction
SendSignalAction
StructuralFeature
isReadOnly
Port
PackageImport
visibility
Usage
ParameterableElement
QualifierValue
qualifier
ReadVariableAction
ExecutableNode
Comment
WriteVariableAction
LoopNode
DurationInterval
Collaboration
ConnectorEnd
Abstraction
Artifact
LinkEndCreationData
ReadStructuralFeatureAction
IntervalConstraint
ExecutionOccurrence
NamedElement
name
visibility
TemplateableElement
ObjectNode
RedefinableElement
FinalNode
Duration
ClearAssociationAction
PackageMerge
Realization
MergeNode
PrimitiveType
Model
Pin
Action
context_
InteractionConstraint
ActivityParameterNode
ExpansionNode
Generalization
general
Vertex
CommunicationPath
Namespace
member
ExtensionPoint
CollaborationOccurrence
CallAction
ControlNode
WriteLinkAction
AddVariableValueAction
FinalState
OperationTemplateParameter
Interval
TestIdentityAction
first
second
Node
Package
Connector
LiteralSpecification
RemoveStructuralFeatureValueAction
EncapsulatedClassifier
GeneralOrdering
DataStoreNode
StringExpression
State
ControlFlow
LiteralUnlimitedNatural
MessageTrigger
UseCase
TimeInterval
PrimitiveFunction
ActivityEdge
ValuePin
Expression
ChangeTrigger
Variable
Permission
InstanceSpecification
slot
classifier
Signal
ExceptionHandler
Association
ownedEnd
memberEnd
CallOperationAction
ClearVariableAction
Classifier
isAbstract
feature
inheritedMember
generalization
StartOwnedBehaviorAction
TypedElement
type
Component
Message
DestroyObjectAction
target
PackageableElement
ActivityGroup
StateInvariant
ProtocolTransition
WriteStructuralFeatureAction
value
Activity
ActivityFinalNode
Extend
DecisionNode
TemplateableClassifier
DeploymentSpecification
CallTrigger
OpaqueExpression
bodies
language
behavior
LinkEndData
value
end
qualifier
Transition
Reception
ReadLinkObjectEndQualifierAction
AddStructuralFeatureValueAction
TimeConstraint
Actor
PartDecomposition
Interface | null | {"directed":true,"nodes":[{"nsPrefix":"UML2","nsURI":"http:///UML2.ecore","name":"UML2","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"instanceClassName":null,"name":"AggregationKind","instanceClass":null,"id":1,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"VisibilityKind","instanceClass":null,"id":2,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"ParameterDirectionKind","instanceClass":null,"id":3,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"VariableAction","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InitialNode","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AnyTrigger","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LiteralInteger","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Substitution","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LinkAction","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ActivityPartition","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RemoveVariableValueAction","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ClearStructuralFeatureAction","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExtensionEnd","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TimeExpression","instanceClass":null,"abstract":false,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Pseudostate","instanceClass":null,"abstract":false,"id":15,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InterruptibleActivityRegion","instanceClass":null,"abstract":false,"id":16,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InteractionFragment","instanceClass":null,"abstract":false,"id":17,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InformationItem","instanceClass":null,"abstract":false,"id":18,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ReadSelfAction","instanceClass":null,"abstract":false,"id":19,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TimeTrigger","instanceClass":null,"abstract":false,"id":20,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Manifestation","instanceClass":null,"abstract":false,"id":21,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ConnectableElement","instanceClass":null,"abstract":false,"id":22,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SignalTrigger","instanceClass":null,"abstract":false,"id":23,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AcceptCallAction","instanceClass":null,"abstract":false,"id":24,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CallBehaviorAction","instanceClass":null,"abstract":false,"id":25,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DurationConstraint","instanceClass":null,"abstract":false,"id":26,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CreateLinkObjectAction","instanceClass":null,"abstract":false,"id":27,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RaiseExceptionAction","instanceClass":null,"abstract":false,"id":28,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ClassifierTemplateParameter","instanceClass":null,"abstract":false,"id":29,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BehavioralFeature","instanceClass":null,"abstract":false,"id":30,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CombinedFragment","instanceClass":null,"abstract":false,"id":31,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Behavior","instanceClass":null,"abstract":false,"id":32,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ProtocolConformance","instanceClass":null,"abstract":false,"id":33,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TemplateParameter","instanceClass":null,"abstract":false,"id":34,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InformationFlow","instanceClass":null,"abstract":false,"id":35,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ProfileApplication","instanceClass":null,"abstract":false,"id":36,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StructuredActivityNode","instanceClass":null,"abstract":false,"id":37,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LiteralBoolean","instanceClass":null,"abstract":false,"id":38,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ValueSpecification","instanceClass":null,"abstract":false,"id":39,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LiteralString","instanceClass":null,"abstract":false,"id":40,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Implementation","instanceClass":null,"abstract":false,"id":41,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AssociationClass","instanceClass":null,"abstract":false,"id":42,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StructuredClassifier","instanceClass":null,"abstract":false,"id":43,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Stereotype","instanceClass":null,"abstract":false,"id":44,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OutputPin","instanceClass":null,"abstract":false,"id":45,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ReadExtentAction","instanceClass":null,"abstract":false,"id":46,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ConnectionPointReference","instanceClass":null,"abstract":false,"id":47,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DirectedRelationship","instanceClass":null,"abstract":false,"id":48,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Region","instanceClass":null,"abstract":false,"id":49,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Interaction","instanceClass":null,"abstract":false,"id":50,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ForkNode","instanceClass":null,"abstract":false,"id":51,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ReadLinkObjectEndAction","instanceClass":null,"abstract":false,"id":52,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ConditionalNode","instanceClass":null,"abstract":false,"id":53,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DeployedArtifact","instanceClass":null,"abstract":false,"id":54,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SendObjectAction","instanceClass":null,"abstract":false,"id":55,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InvocationAction","instanceClass":null,"abstract":false,"id":56,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TimeObservationAction","instanceClass":null,"abstract":false,"id":57,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Relationship","instanceClass":null,"abstract":false,"id":58,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DeploymentTarget","instanceClass":null,"abstract":false,"id":59,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Class","instanceClass":null,"abstract":false,"id":60,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InputPin","instanceClass":null,"abstract":false,"id":61,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DurationObservationAction","instanceClass":null,"abstract":false,"id":62,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Property","instanceClass":null,"abstract":false,"id":63,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EventOccurrence","instanceClass":null,"abstract":false,"id":64,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ReclassifyObjectAction","instanceClass":null,"abstract":false,"id":65,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Stop","instanceClass":null,"abstract":false,"id":66,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TemplateParameterSubstitution","instanceClass":null,"abstract":false,"id":67,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Operation","instanceClass":null,"abstract":false,"id":68,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Constraint","instanceClass":null,"abstract":false,"id":69,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Deployment","instanceClass":null,"abstract":false,"id":70,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Device","instanceClass":null,"abstract":false,"id":71,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EnumerationLiteral","instanceClass":null,"abstract":false,"id":72,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CentralBufferNode","instanceClass":null,"abstract":false,"id":73,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ReplyAction","instanceClass":null,"abstract":false,"id":74,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Type","instanceClass":null,"abstract":false,"id":75,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BroadcastSignalAction","instanceClass":null,"abstract":false,"id":76,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Extension","instanceClass":null,"abstract":false,"id":77,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"GeneralizationSet","instanceClass":null,"abstract":false,"id":78,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LiteralNull","instanceClass":null,"abstract":false,"id":79,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Continuation","instanceClass":null,"abstract":false,"id":80,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Gate","instanceClass":null,"abstract":false,"id":81,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ParameterableClassifier","instanceClass":null,"abstract":false,"id":82,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Enumeration","instanceClass":null,"abstract":false,"id":83,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Feature","instanceClass":null,"abstract":false,"id":84,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Parameter","instanceClass":null,"abstract":false,"id":85,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TemplateBinding","instanceClass":null,"abstract":false,"id":86,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InteractionOccurrence","instanceClass":null,"abstract":false,"id":87,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MultiplicityElement","instanceClass":null,"abstract":false,"id":88,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ObjectFlow","instanceClass":null,"abstract":false,"id":89,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ApplyFunctionAction","instanceClass":null,"abstract":false,"id":90,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InstanceValue","instanceClass":null,"abstract":false,"id":91,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Trigger","instanceClass":null,"abstract":false,"id":92,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Slot","instanceClass":null,"abstract":false,"id":93,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DestroyLinkAction","instanceClass":null,"abstract":false,"id":94,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Lifeline","instanceClass":null,"abstract":false,"id":95,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ActivityNode","instanceClass":null,"abstract":false,"id":96,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ConnectableElementTemplateParameter","instanceClass":null,"abstract":false,"id":97,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BehavioredClassifier","instanceClass":null,"abstract":false,"id":98,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MessageEnd","instanceClass":null,"abstract":false,"id":99,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"JoinNode","instanceClass":null,"abstract":false,"id":100,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ElementImport","instanceClass":null,"abstract":false,"id":101,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Profile","instanceClass":null,"abstract":false,"id":102,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Dependency","instanceClass":null,"abstract":false,"id":103,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Clause","instanceClass":null,"abstract":false,"id":104,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FlowFinalNode","instanceClass":null,"abstract":false,"id":105,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExpansionRegion","instanceClass":null,"abstract":false,"id":106,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StructuralFeatureAction","instanceClass":null,"abstract":false,"id":107,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CreateLinkAction","instanceClass":null,"abstract":false,"id":108,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DataType","instanceClass":null,"abstract":false,"id":109,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExecutionEnvironment","instanceClass":null,"abstract":false,"id":110,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Element","instanceClass":null,"abstract":false,"id":111,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StateMachine","instanceClass":null,"abstract":false,"id":112,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InteractionOperand","instanceClass":null,"abstract":false,"id":113,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TemplateSignature","instanceClass":null,"abstract":false,"id":114,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ParameterSet","instanceClass":null,"abstract":false,"id":115,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RedefinableTemplateSignature","instanceClass":null,"abstract":false,"id":116,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Include","instanceClass":null,"abstract":false,"id":117,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ReadLinkAction","instanceClass":null,"abstract":false,"id":118,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CreateObjectAction","instanceClass":null,"abstract":false,"id":119,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ReadIsClassifiedObjectAction","instanceClass":null,"abstract":false,"id":120,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ProtocolStateMachine","instanceClass":null,"abstract":false,"id":121,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AcceptEventAction","instanceClass":null,"abstract":false,"id":122,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SendSignalAction","instanceClass":null,"abstract":false,"id":123,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StructuralFeature","instanceClass":null,"abstract":false,"id":124,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Port","instanceClass":null,"abstract":false,"id":125,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PackageImport","instanceClass":null,"abstract":false,"id":126,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Usage","instanceClass":null,"abstract":false,"id":127,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ParameterableElement","instanceClass":null,"abstract":false,"id":128,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"QualifierValue","instanceClass":null,"abstract":false,"id":129,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ReadVariableAction","instanceClass":null,"abstract":false,"id":130,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExecutableNode","instanceClass":null,"abstract":false,"id":131,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Comment","instanceClass":null,"abstract":false,"id":132,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"WriteVariableAction","instanceClass":null,"abstract":false,"id":133,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LoopNode","instanceClass":null,"abstract":false,"id":134,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DurationInterval","instanceClass":null,"abstract":false,"id":135,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Collaboration","instanceClass":null,"abstract":false,"id":136,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ConnectorEnd","instanceClass":null,"abstract":false,"id":137,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Abstraction","instanceClass":null,"abstract":false,"id":138,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Artifact","instanceClass":null,"abstract":false,"id":139,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LinkEndCreationData","instanceClass":null,"abstract":false,"id":140,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ReadStructuralFeatureAction","instanceClass":null,"abstract":false,"id":141,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IntervalConstraint","instanceClass":null,"abstract":false,"id":142,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExecutionOccurrence","instanceClass":null,"abstract":false,"id":143,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NamedElement","instanceClass":null,"abstract":false,"id":144,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TemplateableElement","instanceClass":null,"abstract":false,"id":145,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ObjectNode","instanceClass":null,"abstract":false,"id":146,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RedefinableElement","instanceClass":null,"abstract":false,"id":147,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FinalNode","instanceClass":null,"abstract":false,"id":148,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Duration","instanceClass":null,"abstract":false,"id":149,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ClearAssociationAction","instanceClass":null,"abstract":false,"id":150,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PackageMerge","instanceClass":null,"abstract":false,"id":151,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Realization","instanceClass":null,"abstract":false,"id":152,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MergeNode","instanceClass":null,"abstract":false,"id":153,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PrimitiveType","instanceClass":null,"abstract":false,"id":154,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Model","instanceClass":null,"abstract":false,"id":155,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Pin","instanceClass":null,"abstract":false,"id":156,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Action","instanceClass":null,"abstract":false,"id":157,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InteractionConstraint","instanceClass":null,"abstract":false,"id":158,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ActivityParameterNode","instanceClass":null,"abstract":false,"id":159,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExpansionNode","instanceClass":null,"abstract":false,"id":160,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Generalization","instanceClass":null,"abstract":false,"id":161,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Vertex","instanceClass":null,"abstract":false,"id":162,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CommunicationPath","instanceClass":null,"abstract":false,"id":163,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Namespace","instanceClass":null,"abstract":false,"id":164,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExtensionPoint","instanceClass":null,"abstract":false,"id":165,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CollaborationOccurrence","instanceClass":null,"abstract":false,"id":166,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CallAction","instanceClass":null,"abstract":false,"id":167,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ControlNode","instanceClass":null,"abstract":false,"id":168,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"WriteLinkAction","instanceClass":null,"abstract":false,"id":169,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AddVariableValueAction","instanceClass":null,"abstract":false,"id":170,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FinalState","instanceClass":null,"abstract":false,"id":171,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OperationTemplateParameter","instanceClass":null,"abstract":false,"id":172,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Interval","instanceClass":null,"abstract":false,"id":173,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TestIdentityAction","instanceClass":null,"abstract":false,"id":174,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Node","instanceClass":null,"abstract":false,"id":175,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Package","instanceClass":null,"abstract":false,"id":176,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Connector","instanceClass":null,"abstract":false,"id":177,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LiteralSpecification","instanceClass":null,"abstract":false,"id":178,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RemoveStructuralFeatureValueAction","instanceClass":null,"abstract":false,"id":179,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EncapsulatedClassifier","instanceClass":null,"abstract":false,"id":180,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"GeneralOrdering","instanceClass":null,"abstract":false,"id":181,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DataStoreNode","instanceClass":null,"abstract":false,"id":182,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StringExpression","instanceClass":null,"abstract":false,"id":183,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"State","instanceClass":null,"abstract":false,"id":184,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ControlFlow","instanceClass":null,"abstract":false,"id":185,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LiteralUnlimitedNatural","instanceClass":null,"abstract":false,"id":186,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MessageTrigger","instanceClass":null,"abstract":false,"id":187,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"UseCase","instanceClass":null,"abstract":false,"id":188,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TimeInterval","instanceClass":null,"abstract":false,"id":189,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PrimitiveFunction","instanceClass":null,"abstract":false,"id":190,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ActivityEdge","instanceClass":null,"abstract":false,"id":191,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ValuePin","instanceClass":null,"abstract":false,"id":192,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Expression","instanceClass":null,"abstract":false,"id":193,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ChangeTrigger","instanceClass":null,"abstract":false,"id":194,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Variable","instanceClass":null,"abstract":false,"id":195,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Permission","instanceClass":null,"abstract":false,"id":196,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InstanceSpecification","instanceClass":null,"abstract":false,"id":197,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Signal","instanceClass":null,"abstract":false,"id":198,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExceptionHandler","instanceClass":null,"abstract":false,"id":199,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Association","instanceClass":null,"abstract":false,"id":200,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CallOperationAction","instanceClass":null,"abstract":false,"id":201,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ClearVariableAction","instanceClass":null,"abstract":false,"id":202,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Classifier","instanceClass":null,"abstract":false,"id":203,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StartOwnedBehaviorAction","instanceClass":null,"abstract":false,"id":204,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TypedElement","instanceClass":null,"abstract":false,"id":205,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Component","instanceClass":null,"abstract":false,"id":206,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Message","instanceClass":null,"abstract":false,"id":207,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DestroyObjectAction","instanceClass":null,"abstract":false,"id":208,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PackageableElement","instanceClass":null,"abstract":false,"id":209,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ActivityGroup","instanceClass":null,"abstract":false,"id":210,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StateInvariant","instanceClass":null,"abstract":false,"id":211,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ProtocolTransition","instanceClass":null,"abstract":false,"id":212,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"WriteStructuralFeatureAction","instanceClass":null,"abstract":false,"id":213,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Activity","instanceClass":null,"abstract":false,"id":214,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ActivityFinalNode","instanceClass":null,"abstract":false,"id":215,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Extend","instanceClass":null,"abstract":false,"id":216,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DecisionNode","instanceClass":null,"abstract":false,"id":217,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TemplateableClassifier","instanceClass":null,"abstract":false,"id":218,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DeploymentSpecification","instanceClass":null,"abstract":false,"id":219,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CallTrigger","instanceClass":null,"abstract":false,"id":220,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OpaqueExpression","instanceClass":null,"abstract":false,"id":221,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LinkEndData","instanceClass":null,"abstract":false,"id":222,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Transition","instanceClass":null,"abstract":false,"id":223,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Reception","instanceClass":null,"abstract":false,"id":224,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ReadLinkObjectEndQualifierAction","instanceClass":null,"abstract":false,"id":225,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AddStructuralFeatureValueAction","instanceClass":null,"abstract":false,"id":226,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TimeConstraint","instanceClass":null,"abstract":false,"id":227,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Actor","instanceClass":null,"abstract":false,"id":228,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PartDecomposition","instanceClass":null,"abstract":false,"id":229,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Interface","instanceClass":null,"abstract":false,"id":230,"interface":false,"eClass":"EClass"},{"name":"composite","id":231,"value":1,"literal":"composite","eClass":"EEnumLiteral"},{"name":"none","id":232,"value":2,"literal":"none","eClass":"EEnumLiteral"},{"name":"shared","id":233,"value":3,"literal":"shared","eClass":"EEnumLiteral"},{"name":"package","id":234,"value":1,"literal":"package","eClass":"EEnumLiteral"},{"name":"private","id":235,"value":2,"literal":"private","eClass":"EEnumLiteral"},{"name":"protected","id":236,"value":3,"literal":"protected","eClass":"EEnumLiteral"},{"name":"public","id":237,"value":4,"literal":"public","eClass":"EEnumLiteral"},{"name":"in","id":238,"value":1,"literal":"in","eClass":"EEnumLiteral"},{"name":"inout","id":239,"value":2,"literal":"inout","eClass":"EEnumLiteral"},{"name":"out","id":240,"value":3,"literal":"out","eClass":"EEnumLiteral"},{"name":"return","id":241,"value":4,"literal":"return","eClass":"EEnumLiteral"},{"id":242,"eClass":"EGenericType"},{"id":243,"eClass":"EGenericType"},{"id":244,"eClass":"EGenericType"},{"id":245,"eClass":"EGenericType"},{"id":246,"eClass":"EGenericType"},{"id":247,"eClass":"EGenericType"},{"id":248,"eClass":"EGenericType"},{"id":249,"eClass":"EGenericType"},{"id":250,"eClass":"EGenericType"},{"id":251,"eClass":"EGenericType"},{"id":252,"eClass":"EGenericType"},{"id":253,"eClass":"EGenericType"},{"id":254,"eClass":"EGenericType"},{"id":255,"eClass":"EGenericType"},{"id":256,"eClass":"EGenericType"},{"id":257,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"result","changeable":true,"resolveProxies":true,"lowerBound":1,"id":258,"derived":false},{"id":259,"eClass":"EGenericType"},{"id":260,"eClass":"EGenericType"},{"id":261,"eClass":"EGenericType"},{"id":262,"eClass":"EGenericType"},{"id":263,"eClass":"EGenericType"},{"id":264,"eClass":"EGenericType"},{"id":265,"eClass":"EGenericType"},{"id":266,"eClass":"EGenericType"},{"id":267,"eClass":"EGenericType"},{"id":268,"eClass":"EGenericType"},{"id":269,"eClass":"EGenericType"},{"id":270,"eClass":"EGenericType"},{"id":271,"eClass":"EGenericType"},{"id":272,"eClass":"EGenericType"},{"id":273,"eClass":"EGenericType"},{"id":274,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"specification","changeable":true,"resolveProxies":true,"lowerBound":0,"id":275,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"ownedParameterSet","changeable":true,"resolveProxies":true,"lowerBound":0,"id":276,"derived":false},{"id":277,"eClass":"EGenericType"},{"id":278,"eClass":"EGenericType"},{"id":279,"eClass":"EGenericType"},{"id":280,"eClass":"EGenericType"},{"id":281,"eClass":"EGenericType"},{"id":282,"eClass":"EGenericType"},{"id":283,"eClass":"EGenericType"},{"id":284,"eClass":"EGenericType"},{"id":285,"eClass":"EGenericType"},{"id":286,"eClass":"EGenericType"},{"id":287,"eClass":"EGenericType"},{"id":288,"eClass":"EGenericType"},{"id":289,"eClass":"EGenericType"},{"id":290,"eClass":"EGenericType"},{"id":291,"eClass":"EGenericType"},{"id":292,"eClass":"EGenericType"},{"id":293,"eClass":"EGenericType"},{"id":294,"eClass":"EGenericType"},{"id":295,"eClass":"EGenericType"},{"id":296,"eClass":"EGenericType"},{"id":297,"eClass":"EGenericType"},{"id":298,"eClass":"EGenericType"},{"id":299,"eClass":"EGenericType"},{"id":300,"eClass":"EGenericType"},{"id":301,"eClass":"EGenericType"},{"id":302,"eClass":"EGenericType"},{"id":303,"eClass":"EGenericType"},{"id":304,"eClass":"EGenericType"},{"id":305,"eClass":"EGenericType"},{"id":306,"eClass":"EGenericType"},{"id":307,"eClass":"EGenericType"},{"id":308,"eClass":"EGenericType"},{"id":309,"eClass":"EGenericType"},{"id":310,"eClass":"EGenericType"},{"id":311,"eClass":"EGenericType"},{"id":312,"eClass":"EGenericType"},{"id":313,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isActive","changeable":true,"lowerBound":0,"iD":false,"id":314,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"nestedClassifier","changeable":true,"resolveProxies":true,"lowerBound":0,"id":315,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"ownedReception","changeable":true,"resolveProxies":true,"lowerBound":0,"id":316,"derived":false},{"id":317,"eClass":"EGenericType"},{"id":318,"eClass":"EGenericType"},{"id":319,"eClass":"EGenericType"},{"id":320,"eClass":"EGenericType"},{"id":321,"eClass":"EGenericType"},{"id":322,"eClass":"EGenericType"},{"id":323,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isComposite","changeable":true,"lowerBound":0,"iD":false,"id":324,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isDerived","changeable":true,"lowerBound":0,"iD":false,"id":325,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isDerivedUnion","changeable":true,"lowerBound":0,"iD":false,"id":326,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"aggregation","changeable":true,"lowerBound":0,"iD":false,"id":327,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"subsettedProperty","changeable":true,"resolveProxies":true,"lowerBound":0,"id":328,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"association","changeable":true,"resolveProxies":true,"lowerBound":0,"id":329,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"qualifier","changeable":true,"resolveProxies":true,"lowerBound":0,"id":330,"derived":false},{"id":331,"eClass":"EGenericType"},{"id":332,"eClass":"EGenericType"},{"id":333,"eClass":"EGenericType"},{"id":334,"eClass":"EGenericType"},{"id":335,"eClass":"EGenericType"},{"id":336,"eClass":"EGenericType"},{"id":337,"eClass":"EGenericType"},{"id":338,"eClass":"EGenericType"},{"id":339,"eClass":"EGenericType"},{"id":340,"eClass":"EGenericType"},{"id":341,"eClass":"EGenericType"},{"id":342,"eClass":"EGenericType"},{"id":343,"eClass":"EGenericType"},{"id":344,"eClass":"EGenericType"},{"id":345,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isQuery","changeable":true,"lowerBound":0,"iD":false,"id":346,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"ownedParameter","changeable":true,"resolveProxies":true,"lowerBound":0,"id":347,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"bodyCondition","changeable":true,"resolveProxies":true,"lowerBound":0,"id":348,"derived":false},{"id":349,"eClass":"EGenericType"},{"id":350,"eClass":"EGenericType"},{"id":351,"eClass":"EGenericType"},{"id":352,"eClass":"EGenericType"},{"id":353,"eClass":"EGenericType"},{"id":354,"eClass":"EGenericType"},{"id":355,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"constrainedElement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":356,"derived":false},{"id":357,"eClass":"EGenericType"},{"id":358,"eClass":"EGenericType"},{"id":359,"eClass":"EGenericType"},{"id":360,"eClass":"EGenericType"},{"id":361,"eClass":"EGenericType"},{"id":362,"eClass":"EGenericType"},{"id":363,"eClass":"EGenericType"},{"id":364,"eClass":"EGenericType"},{"id":365,"eClass":"EGenericType"},{"id":366,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"generalization","changeable":true,"resolveProxies":true,"lowerBound":0,"id":367,"derived":false},{"id":368,"eClass":"EGenericType"},{"id":369,"eClass":"EGenericType"},{"id":370,"eClass":"EGenericType"},{"id":371,"eClass":"EGenericType"},{"id":372,"eClass":"EGenericType"},{"id":373,"eClass":"EGenericType"},{"id":374,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isStatic","changeable":true,"lowerBound":0,"iD":false,"id":375,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"featuringClassifier","changeable":true,"resolveProxies":true,"lowerBound":0,"id":376,"derived":false},{"id":377,"eClass":"EGenericType"},{"id":378,"eClass":"EGenericType"},{"id":379,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"direction","changeable":true,"lowerBound":0,"iD":false,"id":380,"derived":false},{"id":381,"eClass":"EGenericType"},{"id":382,"eClass":"EGenericType"},{"id":383,"eClass":"EGenericType"},{"id":384,"eClass":"EGenericType"},{"id":385,"eClass":"EGenericType"},{"id":386,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isOrdered","changeable":true,"lowerBound":0,"iD":false,"id":387,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isUnique","changeable":true,"lowerBound":0,"iD":false,"id":388,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"lower","changeable":true,"lowerBound":0,"iD":false,"id":389,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"upper","changeable":true,"lowerBound":0,"iD":false,"id":390,"derived":false},{"id":391,"eClass":"EGenericType"},{"id":392,"eClass":"EGenericType"},{"id":393,"eClass":"EGenericType"},{"id":394,"eClass":"EGenericType"},{"id":395,"eClass":"EGenericType"},{"id":396,"eClass":"EGenericType"},{"id":397,"eClass":"EGenericType"},{"id":398,"eClass":"EGenericType"},{"id":399,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"definingFeature","changeable":true,"resolveProxies":true,"lowerBound":1,"id":400,"derived":false},{"id":401,"eClass":"EGenericType"},{"id":402,"eClass":"EGenericType"},{"id":403,"eClass":"EGenericType"},{"id":404,"eClass":"EGenericType"},{"id":405,"eClass":"EGenericType"},{"id":406,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"ownedBehavior","changeable":true,"resolveProxies":true,"lowerBound":0,"id":407,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"classifierBehavior","changeable":true,"resolveProxies":true,"lowerBound":0,"id":408,"derived":false},{"id":409,"eClass":"EGenericType"},{"id":410,"eClass":"EGenericType"},{"id":411,"eClass":"EGenericType"},{"id":412,"eClass":"EGenericType"},{"id":413,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"visibility","changeable":true,"lowerBound":0,"iD":false,"id":414,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"importedElement","changeable":true,"resolveProxies":true,"lowerBound":1,"id":415,"derived":false},{"id":416,"eClass":"EGenericType"},{"id":417,"eClass":"EGenericType"},{"id":418,"eClass":"EGenericType"},{"id":419,"eClass":"EGenericType"},{"id":420,"eClass":"EGenericType"},{"id":421,"eClass":"EGenericType"},{"id":422,"eClass":"EGenericType"},{"id":423,"eClass":"EGenericType"},{"id":424,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"structuralFeature","changeable":true,"resolveProxies":true,"lowerBound":1,"id":425,"derived":false},{"id":426,"eClass":"EGenericType"},{"id":427,"eClass":"EGenericType"},{"id":428,"eClass":"EGenericType"},{"id":429,"eClass":"EGenericType"},{"id":430,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"owner","changeable":true,"resolveProxies":true,"lowerBound":0,"id":431,"derived":false},{"id":432,"eClass":"EGenericType"},{"id":433,"eClass":"EGenericType"},{"id":434,"eClass":"EGenericType"},{"id":435,"eClass":"EGenericType"},{"id":436,"eClass":"EGenericType"},{"id":437,"eClass":"EGenericType"},{"id":438,"eClass":"EGenericType"},{"id":439,"eClass":"EGenericType"},{"id":440,"eClass":"EGenericType"},{"id":441,"eClass":"EGenericType"},{"id":442,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"classifier","changeable":true,"resolveProxies":true,"lowerBound":1,"id":443,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"result","changeable":true,"resolveProxies":true,"lowerBound":1,"id":444,"derived":false},{"id":445,"eClass":"EGenericType"},{"id":446,"eClass":"EGenericType"},{"id":447,"eClass":"EGenericType"},{"id":448,"eClass":"EGenericType"},{"id":449,"eClass":"EGenericType"},{"id":450,"eClass":"EGenericType"},{"id":451,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isReadOnly","changeable":true,"lowerBound":0,"iD":false,"id":452,"derived":false},{"id":453,"eClass":"EGenericType"},{"id":454,"eClass":"EGenericType"},{"id":455,"eClass":"EGenericType"},{"id":456,"eClass":"EGenericType"},{"id":457,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"visibility","changeable":true,"lowerBound":0,"iD":false,"id":458,"derived":false},{"id":459,"eClass":"EGenericType"},{"id":460,"eClass":"EGenericType"},{"id":461,"eClass":"EGenericType"},{"id":462,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"qualifier","changeable":true,"resolveProxies":true,"lowerBound":1,"id":463,"derived":false},{"id":464,"eClass":"EGenericType"},{"id":465,"eClass":"EGenericType"},{"id":466,"eClass":"EGenericType"},{"id":467,"eClass":"EGenericType"},{"id":468,"eClass":"EGenericType"},{"id":469,"eClass":"EGenericType"},{"id":470,"eClass":"EGenericType"},{"id":471,"eClass":"EGenericType"},{"id":472,"eClass":"EGenericType"},{"id":473,"eClass":"EGenericType"},{"id":474,"eClass":"EGenericType"},{"id":475,"eClass":"EGenericType"},{"id":476,"eClass":"EGenericType"},{"id":477,"eClass":"EGenericType"},{"id":478,"eClass":"EGenericType"},{"id":479,"eClass":"EGenericType"},{"id":480,"eClass":"EGenericType"},{"id":481,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":482,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"visibility","changeable":true,"lowerBound":0,"iD":false,"id":483,"derived":false},{"id":484,"eClass":"EGenericType"},{"id":485,"eClass":"EGenericType"},{"id":486,"eClass":"EGenericType"},{"id":487,"eClass":"EGenericType"},{"id":488,"eClass":"EGenericType"},{"id":489,"eClass":"EGenericType"},{"id":490,"eClass":"EGenericType"},{"id":491,"eClass":"EGenericType"},{"id":492,"eClass":"EGenericType"},{"id":493,"eClass":"EGenericType"},{"id":494,"eClass":"EGenericType"},{"id":495,"eClass":"EGenericType"},{"id":496,"eClass":"EGenericType"},{"id":497,"eClass":"EGenericType"},{"id":498,"eClass":"EGenericType"},{"id":499,"eClass":"EGenericType"},{"id":500,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"context_","changeable":true,"resolveProxies":true,"lowerBound":0,"id":501,"derived":false},{"id":502,"eClass":"EGenericType"},{"id":503,"eClass":"EGenericType"},{"id":504,"eClass":"EGenericType"},{"id":505,"eClass":"EGenericType"},{"id":506,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"general","changeable":true,"resolveProxies":true,"lowerBound":1,"id":507,"derived":false},{"id":508,"eClass":"EGenericType"},{"id":509,"eClass":"EGenericType"},{"id":510,"eClass":"EGenericType"},{"id":511,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"member","changeable":true,"resolveProxies":true,"lowerBound":0,"id":512,"derived":false},{"id":513,"eClass":"EGenericType"},{"id":514,"eClass":"EGenericType"},{"id":515,"eClass":"EGenericType"},{"id":516,"eClass":"EGenericType"},{"id":517,"eClass":"EGenericType"},{"id":518,"eClass":"EGenericType"},{"id":519,"eClass":"EGenericType"},{"id":520,"eClass":"EGenericType"},{"id":521,"eClass":"EGenericType"},{"id":522,"eClass":"EGenericType"},{"id":523,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"first","changeable":true,"resolveProxies":true,"lowerBound":1,"id":524,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"second","changeable":true,"resolveProxies":true,"lowerBound":1,"id":525,"derived":false},{"id":526,"eClass":"EGenericType"},{"id":527,"eClass":"EGenericType"},{"id":528,"eClass":"EGenericType"},{"id":529,"eClass":"EGenericType"},{"id":530,"eClass":"EGenericType"},{"id":531,"eClass":"EGenericType"},{"id":532,"eClass":"EGenericType"},{"id":533,"eClass":"EGenericType"},{"id":534,"eClass":"EGenericType"},{"id":535,"eClass":"EGenericType"},{"id":536,"eClass":"EGenericType"},{"id":537,"eClass":"EGenericType"},{"id":538,"eClass":"EGenericType"},{"id":539,"eClass":"EGenericType"},{"id":540,"eClass":"EGenericType"},{"id":541,"eClass":"EGenericType"},{"id":542,"eClass":"EGenericType"},{"id":543,"eClass":"EGenericType"},{"id":544,"eClass":"EGenericType"},{"id":545,"eClass":"EGenericType"},{"id":546,"eClass":"EGenericType"},{"id":547,"eClass":"EGenericType"},{"id":548,"eClass":"EGenericType"},{"id":549,"eClass":"EGenericType"},{"id":550,"eClass":"EGenericType"},{"id":551,"eClass":"EGenericType"},{"id":552,"eClass":"EGenericType"},{"id":553,"eClass":"EGenericType"},{"id":554,"eClass":"EGenericType"},{"id":555,"eClass":"EGenericType"},{"id":556,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"slot","changeable":true,"resolveProxies":true,"lowerBound":0,"id":557,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"classifier","changeable":true,"resolveProxies":true,"lowerBound":0,"id":558,"derived":false},{"id":559,"eClass":"EGenericType"},{"id":560,"eClass":"EGenericType"},{"id":561,"eClass":"EGenericType"},{"id":562,"eClass":"EGenericType"},{"id":563,"eClass":"EGenericType"},{"id":564,"eClass":"EGenericType"},{"id":565,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"ownedEnd","changeable":true,"resolveProxies":true,"lowerBound":0,"id":566,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"memberEnd","changeable":true,"resolveProxies":true,"lowerBound":2,"id":567,"derived":false},{"id":568,"eClass":"EGenericType"},{"id":569,"eClass":"EGenericType"},{"id":570,"eClass":"EGenericType"},{"id":571,"eClass":"EGenericType"},{"id":572,"eClass":"EGenericType"},{"id":573,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isAbstract","changeable":true,"lowerBound":0,"iD":false,"id":574,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"feature","changeable":true,"resolveProxies":true,"lowerBound":0,"id":575,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"inheritedMember","changeable":true,"resolveProxies":true,"lowerBound":0,"id":576,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"generalization","changeable":true,"resolveProxies":true,"lowerBound":0,"id":577,"derived":false},{"id":578,"eClass":"EGenericType"},{"id":579,"eClass":"EGenericType"},{"id":580,"eClass":"EGenericType"},{"id":581,"eClass":"EGenericType"},{"id":582,"eClass":"EGenericType"},{"id":583,"eClass":"EGenericType"},{"id":584,"eClass":"EGenericType"},{"id":585,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"resolveProxies":true,"lowerBound":0,"id":586,"derived":false},{"id":587,"eClass":"EGenericType"},{"id":588,"eClass":"EGenericType"},{"id":589,"eClass":"EGenericType"},{"id":590,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"target","changeable":true,"resolveProxies":true,"lowerBound":1,"id":591,"derived":false},{"id":592,"eClass":"EGenericType"},{"id":593,"eClass":"EGenericType"},{"id":594,"eClass":"EGenericType"},{"id":595,"eClass":"EGenericType"},{"id":596,"eClass":"EGenericType"},{"id":597,"eClass":"EGenericType"},{"id":598,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"resolveProxies":true,"lowerBound":1,"id":599,"derived":false},{"id":600,"eClass":"EGenericType"},{"id":601,"eClass":"EGenericType"},{"id":602,"eClass":"EGenericType"},{"id":603,"eClass":"EGenericType"},{"id":604,"eClass":"EGenericType"},{"id":605,"eClass":"EGenericType"},{"id":606,"eClass":"EGenericType"},{"id":607,"eClass":"EGenericType"},{"id":608,"eClass":"EGenericType"},{"id":609,"eClass":"EGenericType"},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"bodies","changeable":true,"lowerBound":0,"iD":false,"id":610,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"language","changeable":true,"lowerBound":0,"iD":false,"id":611,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"behavior","changeable":true,"resolveProxies":true,"lowerBound":0,"id":612,"derived":false},{"id":613,"eClass":"EGenericType"},{"id":614,"eClass":"EGenericType"},{"id":615,"eClass":"EGenericType"},{"id":616,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"resolveProxies":true,"lowerBound":0,"id":617,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"end","changeable":true,"resolveProxies":true,"lowerBound":1,"id":618,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"qualifier","changeable":true,"resolveProxies":true,"lowerBound":0,"id":619,"derived":false},{"id":620,"eClass":"EGenericType"},{"id":621,"eClass":"EGenericType"},{"id":622,"eClass":"EGenericType"},{"id":623,"eClass":"EGenericType"},{"id":624,"eClass":"EGenericType"},{"id":625,"eClass":"EGenericType"},{"id":626,"eClass":"EGenericType"},{"id":627,"eClass":"EGenericType"},{"id":628,"eClass":"EGenericType"},{"id":629,"eClass":"EGenericType"},{"id":630,"eClass":"EGenericType"},{"id":631,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":0,"target":8},{"source":0,"target":9},{"source":0,"target":10},{"source":0,"target":11},{"source":0,"target":12},{"source":0,"target":13},{"source":0,"target":14},{"source":0,"target":15},{"source":0,"target":16},{"source":0,"target":17},{"source":0,"target":18},{"source":0,"target":19},{"source":0,"target":20},{"source":0,"target":21},{"source":0,"target":22},{"source":0,"target":23},{"source":0,"target":24},{"source":0,"target":25},{"source":0,"target":26},{"source":0,"target":27},{"source":0,"target":28},{"source":0,"target":29},{"source":0,"target":30},{"source":0,"target":31},{"source":0,"target":32},{"source":0,"target":33},{"source":0,"target":34},{"source":0,"target":35},{"source":0,"target":36},{"source":0,"target":37},{"source":0,"target":38},{"source":0,"target":39},{"source":0,"target":40},{"source":0,"target":41},{"source":0,"target":42},{"source":0,"target":43},{"source":0,"target":44},{"source":0,"target":45},{"source":0,"target":46},{"source":0,"target":47},{"source":0,"target":48},{"source":0,"target":49},{"source":0,"target":50},{"source":0,"target":51},{"source":0,"target":52},{"source":0,"target":53},{"source":0,"target":54},{"source":0,"target":55},{"source":0,"target":56},{"source":0,"target":57},{"source":0,"target":58},{"source":0,"target":59},{"source":0,"target":60},{"source":0,"target":61},{"source":0,"target":62},{"source":0,"target":63},{"source":0,"target":64},{"source":0,"target":65},{"source":0,"target":66},{"source":0,"target":67},{"source":0,"target":68},{"source":0,"target":69},{"source":0,"target":70},{"source":0,"target":71},{"source":0,"target":72},{"source":0,"target":73},{"source":0,"target":74},{"source":0,"target":75},{"source":0,"target":76},{"source":0,"target":77},{"source":0,"target":78},{"source":0,"target":79},{"source":0,"target":80},{"source":0,"target":81},{"source":0,"target":82},{"source":0,"target":83},{"source":0,"target":84},{"source":0,"target":85},{"source":0,"target":86},{"source":0,"target":87},{"source":0,"target":88},{"source":0,"target":89},{"source":0,"target":90},{"source":0,"target":91},{"source":0,"target":92},{"source":0,"target":93},{"source":0,"target":94},{"source":0,"target":95},{"source":0,"target":96},{"source":0,"target":97},{"source":0,"target":98},{"source":0,"target":99},{"source":0,"target":100},{"source":0,"target":101},{"source":0,"target":102},{"source":0,"target":103},{"source":0,"target":104},{"source":0,"target":105},{"source":0,"target":106},{"source":0,"target":107},{"source":0,"target":108},{"source":0,"target":109},{"source":0,"target":110},{"source":0,"target":111},{"source":0,"target":112},{"source":0,"target":113},{"source":0,"target":114},{"source":0,"target":115},{"source":0,"target":116},{"source":0,"target":117},{"source":0,"target":118},{"source":0,"target":119},{"source":0,"target":120},{"source":0,"target":121},{"source":0,"target":122},{"source":0,"target":123},{"source":0,"target":124},{"source":0,"target":125},{"source":0,"target":126},{"source":0,"target":127},{"source":0,"target":128},{"source":0,"target":129},{"source":0,"target":130},{"source":0,"target":131},{"source":0,"target":132},{"source":0,"target":133},{"source":0,"target":134},{"source":0,"target":135},{"source":0,"target":136},{"source":0,"target":137},{"source":0,"target":138},{"source":0,"target":139},{"source":0,"target":140},{"source":0,"target":141},{"source":0,"target":142},{"source":0,"target":143},{"source":0,"target":144},{"source":0,"target":145},{"source":0,"target":146},{"source":0,"target":147},{"source":0,"target":148},{"source":0,"target":149},{"source":0,"target":150},{"source":0,"target":151},{"source":0,"target":152},{"source":0,"target":153},{"source":0,"target":154},{"source":0,"target":155},{"source":0,"target":156},{"source":0,"target":157},{"source":0,"target":158},{"source":0,"target":159},{"source":0,"target":160},{"source":0,"target":161},{"source":0,"target":162},{"source":0,"target":163},{"source":0,"target":164},{"source":0,"target":165},{"source":0,"target":166},{"source":0,"target":167},{"source":0,"target":168},{"source":0,"target":169},{"source":0,"target":170},{"source":0,"target":171},{"source":0,"target":172},{"source":0,"target":173},{"source":0,"target":174},{"source":0,"target":175},{"source":0,"target":176},{"source":0,"target":177},{"source":0,"target":178},{"source":0,"target":179},{"source":0,"target":180},{"source":0,"target":181},{"source":0,"target":182},{"source":0,"target":183},{"source":0,"target":184},{"source":0,"target":185},{"source":0,"target":186},{"source":0,"target":187},{"source":0,"target":188},{"source":0,"target":189},{"source":0,"target":190},{"source":0,"target":191},{"source":0,"target":192},{"source":0,"target":193},{"source":0,"target":194},{"source":0,"target":195},{"source":0,"target":196},{"source":0,"target":197},{"source":0,"target":198},{"source":0,"target":199},{"source":0,"target":200},{"source":0,"target":201},{"source":0,"target":202},{"source":0,"target":203},{"source":0,"target":204},{"source":0,"target":205},{"source":0,"target":206},{"source":0,"target":207},{"source":0,"target":208},{"source":0,"target":209},{"source":0,"target":210},{"source":0,"target":211},{"source":0,"target":212},{"source":0,"target":213},{"source":0,"target":214},{"source":0,"target":215},{"source":0,"target":216},{"source":0,"target":217},{"source":0,"target":218},{"source":0,"target":219},{"source":0,"target":220},{"source":0,"target":221},{"source":0,"target":222},{"source":0,"target":223},{"source":0,"target":224},{"source":0,"target":225},{"source":0,"target":226},{"source":0,"target":227},{"source":0,"target":228},{"source":0,"target":229},{"source":0,"target":230},{"source":1,"target":0},{"source":1,"target":231},{"source":1,"target":232},{"source":1,"target":233},{"source":231,"target":1},{"source":232,"target":1},{"source":233,"target":1},{"source":2,"target":0},{"source":2,"target":234},{"source":2,"target":235},{"source":2,"target":236},{"source":2,"target":237},{"source":234,"target":2},{"source":235,"target":2},{"source":236,"target":2},{"source":237,"target":2},{"source":3,"target":0},{"source":3,"target":238},{"source":3,"target":239},{"source":3,"target":240},{"source":3,"target":241},{"source":238,"target":3},{"source":239,"target":3},{"source":240,"target":3},{"source":241,"target":3},{"source":4,"target":0},{"source":4,"target":157},{"source":4,"target":242},{"source":242,"target":157},{"source":5,"target":0},{"source":5,"target":168},{"source":5,"target":243},{"source":243,"target":168},{"source":6,"target":0},{"source":6,"target":187},{"source":6,"target":244},{"source":244,"target":187},{"source":7,"target":0},{"source":7,"target":178},{"source":7,"target":245},{"source":245,"target":178},{"source":8,"target":0},{"source":8,"target":152},{"source":8,"target":246},{"source":246,"target":152},{"source":9,"target":0},{"source":9,"target":157},{"source":9,"target":247},{"source":247,"target":157},{"source":10,"target":0},{"source":10,"target":144},{"source":10,"target":210},{"source":10,"target":248},{"source":10,"target":249},{"source":248,"target":144},{"source":249,"target":210},{"source":11,"target":0},{"source":11,"target":133},{"source":11,"target":250},{"source":250,"target":133},{"source":12,"target":0},{"source":12,"target":107},{"source":12,"target":251},{"source":251,"target":107},{"source":13,"target":0},{"source":13,"target":63},{"source":13,"target":252},{"source":252,"target":63},{"source":14,"target":0},{"source":14,"target":39},{"source":14,"target":253},{"source":253,"target":39},{"source":15,"target":0},{"source":15,"target":162},{"source":15,"target":254},{"source":254,"target":162},{"source":16,"target":0},{"source":16,"target":210},{"source":16,"target":255},{"source":255,"target":210},{"source":17,"target":0},{"source":17,"target":144},{"source":17,"target":256},{"source":256,"target":144},{"source":18,"target":0},{"source":18,"target":203},{"source":18,"target":257},{"source":257,"target":203},{"source":19,"target":0},{"source":19,"target":157},{"source":19,"target":258},{"source":19,"target":259},{"source":258,"target":45},{"source":258,"target":260},{"source":258,"target":19},{"source":260,"target":45},{"source":259,"target":157},{"source":20,"target":0},{"source":20,"target":92},{"source":20,"target":261},{"source":261,"target":92},{"source":21,"target":0},{"source":21,"target":138},{"source":21,"target":262},{"source":262,"target":138},{"source":22,"target":0},{"source":22,"target":144},{"source":22,"target":128},{"source":22,"target":263},{"source":22,"target":264},{"source":263,"target":144},{"source":264,"target":128},{"source":23,"target":0},{"source":23,"target":187},{"source":23,"target":265},{"source":265,"target":187},{"source":24,"target":0},{"source":24,"target":122},{"source":24,"target":266},{"source":266,"target":122},{"source":25,"target":0},{"source":25,"target":167},{"source":25,"target":267},{"source":267,"target":167},{"source":26,"target":0},{"source":26,"target":142},{"source":26,"target":268},{"source":268,"target":142},{"source":27,"target":0},{"source":27,"target":108},{"source":27,"target":269},{"source":269,"target":108},{"source":28,"target":0},{"source":28,"target":157},{"source":28,"target":270},{"source":270,"target":157},{"source":29,"target":0},{"source":29,"target":34},{"source":29,"target":271},{"source":271,"target":34},{"source":30,"target":0},{"source":30,"target":164},{"source":30,"target":84},{"source":30,"target":272},{"source":30,"target":273},{"source":272,"target":164},{"source":273,"target":84},{"source":31,"target":0},{"source":31,"target":17},{"source":31,"target":274},{"source":274,"target":17},{"source":32,"target":0},{"source":32,"target":60},{"source":32,"target":275},{"source":32,"target":276},{"source":32,"target":277},{"source":275,"target":30},{"source":275,"target":278},{"source":275,"target":32},{"source":278,"target":30},{"source":276,"target":115},{"source":276,"target":279},{"source":276,"target":32},{"source":279,"target":115},{"source":277,"target":60},{"source":33,"target":0},{"source":33,"target":48},{"source":33,"target":280},{"source":280,"target":48},{"source":34,"target":0},{"source":34,"target":111},{"source":34,"target":281},{"source":281,"target":111},{"source":35,"target":0},{"source":35,"target":209},{"source":35,"target":48},{"source":35,"target":282},{"source":35,"target":283},{"source":282,"target":209},{"source":283,"target":48},{"source":36,"target":0},{"source":36,"target":126},{"source":36,"target":284},{"source":284,"target":126},{"source":37,"target":0},{"source":37,"target":157},{"source":37,"target":164},{"source":37,"target":210},{"source":37,"target":285},{"source":37,"target":286},{"source":37,"target":287},{"source":285,"target":157},{"source":286,"target":164},{"source":287,"target":210},{"source":38,"target":0},{"source":38,"target":178},{"source":38,"target":288},{"source":288,"target":178},{"source":39,"target":0},{"source":39,"target":205},{"source":39,"target":128},{"source":39,"target":289},{"source":39,"target":290},{"source":289,"target":205},{"source":290,"target":128},{"source":40,"target":0},{"source":40,"target":178},{"source":40,"target":291},{"source":291,"target":178},{"source":41,"target":0},{"source":41,"target":152},{"source":41,"target":292},{"source":292,"target":152},{"source":42,"target":0},{"source":42,"target":60},{"source":42,"target":200},{"source":42,"target":293},{"source":42,"target":294},{"source":293,"target":60},{"source":294,"target":200},{"source":43,"target":0},{"source":43,"target":203},{"source":43,"target":295},{"source":295,"target":203},{"source":44,"target":0},{"source":44,"target":60},{"source":44,"target":296},{"source":296,"target":60},{"source":45,"target":0},{"source":45,"target":156},{"source":45,"target":297},{"source":297,"target":156},{"source":46,"target":0},{"source":46,"target":157},{"source":46,"target":298},{"source":298,"target":157},{"source":47,"target":0},{"source":47,"target":162},{"source":47,"target":299},{"source":299,"target":162},{"source":48,"target":0},{"source":48,"target":58},{"source":48,"target":300},{"source":300,"target":58},{"source":49,"target":0},{"source":49,"target":164},{"source":49,"target":147},{"source":49,"target":301},{"source":49,"target":302},{"source":301,"target":164},{"source":302,"target":147},{"source":50,"target":0},{"source":50,"target":32},{"source":50,"target":17},{"source":50,"target":303},{"source":50,"target":304},{"source":303,"target":32},{"source":304,"target":17},{"source":51,"target":0},{"source":51,"target":168},{"source":51,"target":305},{"source":305,"target":168},{"source":52,"target":0},{"source":52,"target":157},{"source":52,"target":306},{"source":306,"target":157},{"source":53,"target":0},{"source":53,"target":37},{"source":53,"target":307},{"source":307,"target":37},{"source":54,"target":0},{"source":54,"target":144},{"source":54,"target":308},{"source":308,"target":144},{"source":55,"target":0},{"source":55,"target":56},{"source":55,"target":309},{"source":309,"target":56},{"source":56,"target":0},{"source":56,"target":157},{"source":56,"target":310},{"source":310,"target":157},{"source":57,"target":0},{"source":57,"target":213},{"source":57,"target":311},{"source":311,"target":213},{"source":58,"target":0},{"source":58,"target":111},{"source":58,"target":312},{"source":312,"target":111},{"source":59,"target":0},{"source":59,"target":144},{"source":59,"target":313},{"source":313,"target":144},{"source":60,"target":0},{"source":60,"target":98},{"source":60,"target":180},{"source":60,"target":314},{"source":60,"target":315},{"source":60,"target":316},{"source":60,"target":317},{"source":60,"target":318},{"source":314,"target":319},{"source":314,"target":60},{"source":315,"target":203},{"source":315,"target":320},{"source":315,"target":60},{"source":320,"target":203},{"source":316,"target":224},{"source":316,"target":321},{"source":316,"target":60},{"source":321,"target":224},{"source":317,"target":98},{"source":318,"target":180},{"source":61,"target":0},{"source":61,"target":156},{"source":61,"target":322},{"source":322,"target":156},{"source":62,"target":0},{"source":62,"target":213},{"source":62,"target":323},{"source":323,"target":213},{"source":63,"target":0},{"source":63,"target":124},{"source":63,"target":22},{"source":63,"target":59},{"source":63,"target":324},{"source":63,"target":325},{"source":63,"target":326},{"source":63,"target":327},{"source":63,"target":328},{"source":63,"target":329},{"source":63,"target":330},{"source":63,"target":331},{"source":63,"target":332},{"source":63,"target":333},{"source":324,"target":334},{"source":324,"target":63},{"source":325,"target":335},{"source":325,"target":63},{"source":326,"target":336},{"source":326,"target":63},{"source":327,"target":1},{"source":327,"target":337},{"source":327,"target":63},{"source":337,"target":1},{"source":328,"target":63},{"source":328,"target":338},{"source":328,"target":63},{"source":338,"target":63},{"source":329,"target":200},{"source":329,"target":339},{"source":329,"target":63},{"source":339,"target":200},{"source":330,"target":63},{"source":330,"target":340},{"source":330,"target":63},{"source":340,"target":63},{"source":331,"target":124},{"source":332,"target":22},{"source":333,"target":59},{"source":64,"target":0},{"source":64,"target":17},{"source":64,"target":99},{"source":64,"target":341},{"source":64,"target":342},{"source":341,"target":17},{"source":342,"target":99},{"source":65,"target":0},{"source":65,"target":157},{"source":65,"target":343},{"source":343,"target":157},{"source":66,"target":0},{"source":66,"target":64},{"source":66,"target":344},{"source":344,"target":64},{"source":67,"target":0},{"source":67,"target":111},{"source":67,"target":345},{"source":345,"target":111},{"source":68,"target":0},{"source":68,"target":30},{"source":68,"target":205},{"source":68,"target":88},{"source":68,"target":128},{"source":68,"target":346},{"source":68,"target":347},{"source":68,"target":348},{"source":68,"target":349},{"source":68,"target":350},{"source":68,"target":351},{"source":68,"target":352},{"source":346,"target":353},{"source":346,"target":68},{"source":347,"target":85},{"source":347,"target":354},{"source":347,"target":68},{"source":354,"target":85},{"source":348,"target":69},{"source":348,"target":355},{"source":348,"target":68},{"source":355,"target":69},{"source":349,"target":30},{"source":350,"target":205},{"source":351,"target":88},{"source":352,"target":128},{"source":69,"target":0},{"source":69,"target":209},{"source":69,"target":356},{"source":69,"target":357},{"source":356,"target":111},{"source":356,"target":358},{"source":356,"target":69},{"source":358,"target":111},{"source":357,"target":209},{"source":70,"target":0},{"source":70,"target":103},{"source":70,"target":359},{"source":359,"target":103},{"source":71,"target":0},{"source":71,"target":175},{"source":71,"target":360},{"source":360,"target":175},{"source":72,"target":0},{"source":72,"target":197},{"source":72,"target":361},{"source":361,"target":197},{"source":73,"target":0},{"source":73,"target":146},{"source":73,"target":362},{"source":362,"target":146},{"source":74,"target":0},{"source":74,"target":157},{"source":74,"target":363},{"source":363,"target":157},{"source":75,"target":0},{"source":75,"target":209},{"source":75,"target":364},{"source":364,"target":209},{"source":76,"target":0},{"source":76,"target":56},{"source":76,"target":365},{"source":365,"target":56},{"source":77,"target":0},{"source":77,"target":200},{"source":77,"target":366},{"source":366,"target":200},{"source":78,"target":0},{"source":78,"target":209},{"source":78,"target":367},{"source":78,"target":368},{"source":367,"target":161},{"source":367,"target":369},{"source":367,"target":78},{"source":369,"target":161},{"source":368,"target":209},{"source":79,"target":0},{"source":79,"target":178},{"source":79,"target":370},{"source":370,"target":178},{"source":80,"target":0},{"source":80,"target":17},{"source":80,"target":371},{"source":371,"target":17},{"source":81,"target":0},{"source":81,"target":99},{"source":81,"target":372},{"source":372,"target":99},{"source":82,"target":0},{"source":82,"target":203},{"source":82,"target":373},{"source":373,"target":203},{"source":83,"target":0},{"source":83,"target":109},{"source":83,"target":374},{"source":374,"target":109},{"source":84,"target":0},{"source":84,"target":147},{"source":84,"target":375},{"source":84,"target":376},{"source":84,"target":377},{"source":375,"target":378},{"source":375,"target":84},{"source":376,"target":203},{"source":376,"target":379},{"source":376,"target":84},{"source":379,"target":203},{"source":377,"target":147},{"source":85,"target":0},{"source":85,"target":22},{"source":85,"target":205},{"source":85,"target":88},{"source":85,"target":380},{"source":85,"target":381},{"source":85,"target":382},{"source":85,"target":383},{"source":380,"target":3},{"source":380,"target":384},{"source":380,"target":85},{"source":384,"target":3},{"source":381,"target":22},{"source":382,"target":205},{"source":383,"target":88},{"source":86,"target":0},{"source":86,"target":48},{"source":86,"target":385},{"source":385,"target":48},{"source":87,"target":0},{"source":87,"target":17},{"source":87,"target":386},{"source":386,"target":17},{"source":88,"target":0},{"source":88,"target":111},{"source":88,"target":387},{"source":88,"target":388},{"source":88,"target":389},{"source":88,"target":390},{"source":88,"target":391},{"source":387,"target":392},{"source":387,"target":88},{"source":388,"target":393},{"source":388,"target":88},{"source":389,"target":394},{"source":389,"target":88},{"source":390,"target":395},{"source":390,"target":88},{"source":391,"target":111},{"source":89,"target":0},{"source":89,"target":191},{"source":89,"target":396},{"source":396,"target":191},{"source":90,"target":0},{"source":90,"target":157},{"source":90,"target":397},{"source":397,"target":157},{"source":91,"target":0},{"source":91,"target":39},{"source":91,"target":398},{"source":398,"target":39},{"source":92,"target":0},{"source":92,"target":144},{"source":92,"target":399},{"source":399,"target":144},{"source":93,"target":0},{"source":93,"target":111},{"source":93,"target":400},{"source":93,"target":401},{"source":400,"target":124},{"source":400,"target":402},{"source":400,"target":93},{"source":402,"target":124},{"source":401,"target":111},{"source":94,"target":0},{"source":94,"target":169},{"source":94,"target":403},{"source":403,"target":169},{"source":95,"target":0},{"source":95,"target":144},{"source":95,"target":404},{"source":404,"target":144},{"source":96,"target":0},{"source":96,"target":147},{"source":96,"target":405},{"source":405,"target":147},{"source":97,"target":0},{"source":97,"target":34},{"source":97,"target":406},{"source":406,"target":34},{"source":98,"target":0},{"source":98,"target":203},{"source":98,"target":407},{"source":98,"target":408},{"source":98,"target":409},{"source":407,"target":32},{"source":407,"target":410},{"source":407,"target":98},{"source":410,"target":32},{"source":408,"target":32},{"source":408,"target":411},{"source":408,"target":98},{"source":411,"target":32},{"source":409,"target":203},{"source":99,"target":0},{"source":99,"target":144},{"source":99,"target":412},{"source":412,"target":144},{"source":100,"target":0},{"source":100,"target":168},{"source":100,"target":413},{"source":413,"target":168},{"source":101,"target":0},{"source":101,"target":48},{"source":101,"target":414},{"source":101,"target":415},{"source":101,"target":416},{"source":414,"target":2},{"source":414,"target":417},{"source":414,"target":101},{"source":417,"target":2},{"source":415,"target":209},{"source":415,"target":418},{"source":415,"target":101},{"source":418,"target":209},{"source":416,"target":48},{"source":102,"target":0},{"source":102,"target":176},{"source":102,"target":419},{"source":419,"target":176},{"source":103,"target":0},{"source":103,"target":209},{"source":103,"target":48},{"source":103,"target":420},{"source":103,"target":421},{"source":420,"target":209},{"source":421,"target":48},{"source":104,"target":0},{"source":104,"target":111},{"source":104,"target":422},{"source":422,"target":111},{"source":105,"target":0},{"source":105,"target":148},{"source":105,"target":423},{"source":423,"target":148},{"source":106,"target":0},{"source":106,"target":37},{"source":106,"target":424},{"source":424,"target":37},{"source":107,"target":0},{"source":107,"target":157},{"source":107,"target":425},{"source":107,"target":426},{"source":425,"target":124},{"source":425,"target":427},{"source":425,"target":107},{"source":427,"target":124},{"source":426,"target":157},{"source":108,"target":0},{"source":108,"target":169},{"source":108,"target":428},{"source":428,"target":169},{"source":109,"target":0},{"source":109,"target":203},{"source":109,"target":429},{"source":429,"target":203},{"source":110,"target":0},{"source":110,"target":175},{"source":110,"target":430},{"source":430,"target":175},{"source":111,"target":0},{"source":111,"target":431},{"source":431,"target":111},{"source":431,"target":432},{"source":431,"target":111},{"source":432,"target":111},{"source":112,"target":0},{"source":112,"target":32},{"source":112,"target":433},{"source":433,"target":32},{"source":113,"target":0},{"source":113,"target":164},{"source":113,"target":17},{"source":113,"target":434},{"source":113,"target":435},{"source":434,"target":164},{"source":435,"target":17},{"source":114,"target":0},{"source":114,"target":111},{"source":114,"target":436},{"source":436,"target":111},{"source":115,"target":0},{"source":115,"target":144},{"source":115,"target":437},{"source":437,"target":144},{"source":116,"target":0},{"source":116,"target":147},{"source":116,"target":114},{"source":116,"target":438},{"source":116,"target":439},{"source":438,"target":147},{"source":439,"target":114},{"source":117,"target":0},{"source":117,"target":144},{"source":117,"target":48},{"source":117,"target":440},{"source":117,"target":441},{"source":440,"target":144},{"source":441,"target":48},{"source":118,"target":0},{"source":118,"target":9},{"source":118,"target":442},{"source":442,"target":9},{"source":119,"target":0},{"source":119,"target":157},{"source":119,"target":443},{"source":119,"target":444},{"source":119,"target":445},{"source":443,"target":203},{"source":443,"target":446},{"source":443,"target":119},{"source":446,"target":203},{"source":444,"target":45},{"source":444,"target":447},{"source":444,"target":119},{"source":447,"target":45},{"source":445,"target":157},{"source":120,"target":0},{"source":120,"target":157},{"source":120,"target":448},{"source":448,"target":157},{"source":121,"target":0},{"source":121,"target":112},{"source":121,"target":449},{"source":449,"target":112},{"source":122,"target":0},{"source":122,"target":157},{"source":122,"target":450},{"source":450,"target":157},{"source":123,"target":0},{"source":123,"target":56},{"source":123,"target":451},{"source":451,"target":56},{"source":124,"target":0},{"source":124,"target":84},{"source":124,"target":205},{"source":124,"target":88},{"source":124,"target":452},{"source":124,"target":453},{"source":124,"target":454},{"source":124,"target":455},{"source":452,"target":456},{"source":452,"target":124},{"source":453,"target":84},{"source":454,"target":205},{"source":455,"target":88},{"source":125,"target":0},{"source":125,"target":63},{"source":125,"target":457},{"source":457,"target":63},{"source":126,"target":0},{"source":126,"target":48},{"source":126,"target":458},{"source":126,"target":459},{"source":458,"target":2},{"source":458,"target":460},{"source":458,"target":126},{"source":460,"target":2},{"source":459,"target":48},{"source":127,"target":0},{"source":127,"target":103},{"source":127,"target":461},{"source":461,"target":103},{"source":128,"target":0},{"source":128,"target":111},{"source":128,"target":462},{"source":462,"target":111},{"source":129,"target":0},{"source":129,"target":111},{"source":129,"target":463},{"source":129,"target":464},{"source":463,"target":63},{"source":463,"target":465},{"source":463,"target":129},{"source":465,"target":63},{"source":464,"target":111},{"source":130,"target":0},{"source":130,"target":4},{"source":130,"target":466},{"source":466,"target":4},{"source":131,"target":0},{"source":131,"target":96},{"source":131,"target":467},{"source":467,"target":96},{"source":132,"target":0},{"source":132,"target":145},{"source":132,"target":468},{"source":468,"target":145},{"source":133,"target":0},{"source":133,"target":4},{"source":133,"target":469},{"source":469,"target":4},{"source":134,"target":0},{"source":134,"target":37},{"source":134,"target":470},{"source":470,"target":37},{"source":135,"target":0},{"source":135,"target":173},{"source":135,"target":471},{"source":471,"target":173},{"source":136,"target":0},{"source":136,"target":98},{"source":136,"target":43},{"source":136,"target":472},{"source":136,"target":473},{"source":472,"target":98},{"source":473,"target":43},{"source":137,"target":0},{"source":137,"target":88},{"source":137,"target":474},{"source":474,"target":88},{"source":138,"target":0},{"source":138,"target":103},{"source":138,"target":475},{"source":475,"target":103},{"source":139,"target":0},{"source":139,"target":203},{"source":139,"target":54},{"source":139,"target":476},{"source":139,"target":477},{"source":476,"target":203},{"source":477,"target":54},{"source":140,"target":0},{"source":140,"target":222},{"source":140,"target":478},{"source":478,"target":222},{"source":141,"target":0},{"source":141,"target":107},{"source":141,"target":479},{"source":479,"target":107},{"source":142,"target":0},{"source":142,"target":69},{"source":142,"target":480},{"source":480,"target":69},{"source":143,"target":0},{"source":143,"target":17},{"source":143,"target":481},{"source":481,"target":17},{"source":144,"target":0},{"source":144,"target":145},{"source":144,"target":482},{"source":144,"target":483},{"source":144,"target":484},{"source":482,"target":485},{"source":482,"target":144},{"source":483,"target":2},{"source":483,"target":486},{"source":483,"target":144},{"source":486,"target":2},{"source":484,"target":145},{"source":145,"target":0},{"source":145,"target":111},{"source":145,"target":487},{"source":487,"target":111},{"source":146,"target":0},{"source":146,"target":96},{"source":146,"target":205},{"source":146,"target":488},{"source":146,"target":489},{"source":488,"target":96},{"source":489,"target":205},{"source":147,"target":0},{"source":147,"target":144},{"source":147,"target":490},{"source":490,"target":144},{"source":148,"target":0},{"source":148,"target":168},{"source":148,"target":491},{"source":491,"target":168},{"source":149,"target":0},{"source":149,"target":39},{"source":149,"target":492},{"source":492,"target":39},{"source":150,"target":0},{"source":150,"target":157},{"source":150,"target":493},{"source":493,"target":157},{"source":151,"target":0},{"source":151,"target":48},{"source":151,"target":494},{"source":494,"target":48},{"source":152,"target":0},{"source":152,"target":138},{"source":152,"target":495},{"source":495,"target":138},{"source":153,"target":0},{"source":153,"target":168},{"source":153,"target":496},{"source":496,"target":168},{"source":154,"target":0},{"source":154,"target":109},{"source":154,"target":497},{"source":497,"target":109},{"source":155,"target":0},{"source":155,"target":176},{"source":155,"target":498},{"source":498,"target":176},{"source":156,"target":0},{"source":156,"target":146},{"source":156,"target":88},{"source":156,"target":499},{"source":156,"target":500},{"source":499,"target":146},{"source":500,"target":88},{"source":157,"target":0},{"source":157,"target":131},{"source":157,"target":501},{"source":157,"target":502},{"source":501,"target":203},{"source":501,"target":503},{"source":501,"target":157},{"source":503,"target":203},{"source":502,"target":131},{"source":158,"target":0},{"source":158,"target":69},{"source":158,"target":504},{"source":504,"target":69},{"source":159,"target":0},{"source":159,"target":146},{"source":159,"target":505},{"source":505,"target":146},{"source":160,"target":0},{"source":160,"target":146},{"source":160,"target":506},{"source":506,"target":146},{"source":161,"target":0},{"source":161,"target":48},{"source":161,"target":507},{"source":161,"target":508},{"source":507,"target":203},{"source":507,"target":509},{"source":507,"target":161},{"source":509,"target":203},{"source":508,"target":48},{"source":162,"target":0},{"source":162,"target":144},{"source":162,"target":510},{"source":510,"target":144},{"source":163,"target":0},{"source":163,"target":200},{"source":163,"target":511},{"source":511,"target":200},{"source":164,"target":0},{"source":164,"target":144},{"source":164,"target":512},{"source":164,"target":513},{"source":512,"target":144},{"source":512,"target":514},{"source":512,"target":164},{"source":514,"target":144},{"source":513,"target":144},{"source":165,"target":0},{"source":165,"target":147},{"source":165,"target":515},{"source":515,"target":147},{"source":166,"target":0},{"source":166,"target":144},{"source":166,"target":516},{"source":516,"target":144},{"source":167,"target":0},{"source":167,"target":56},{"source":167,"target":517},{"source":517,"target":56},{"source":168,"target":0},{"source":168,"target":96},{"source":168,"target":518},{"source":518,"target":96},{"source":169,"target":0},{"source":169,"target":9},{"source":169,"target":519},{"source":519,"target":9},{"source":170,"target":0},{"source":170,"target":133},{"source":170,"target":520},{"source":520,"target":133},{"source":171,"target":0},{"source":171,"target":184},{"source":171,"target":521},{"source":521,"target":184},{"source":172,"target":0},{"source":172,"target":34},{"source":172,"target":522},{"source":522,"target":34},{"source":173,"target":0},{"source":173,"target":39},{"source":173,"target":523},{"source":523,"target":39},{"source":174,"target":0},{"source":174,"target":157},{"source":174,"target":524},{"source":174,"target":525},{"source":174,"target":526},{"source":524,"target":61},{"source":524,"target":527},{"source":524,"target":174},{"source":527,"target":61},{"source":525,"target":61},{"source":525,"target":528},{"source":525,"target":174},{"source":528,"target":61},{"source":526,"target":157},{"source":175,"target":0},{"source":175,"target":60},{"source":175,"target":59},{"source":175,"target":529},{"source":175,"target":530},{"source":529,"target":60},{"source":530,"target":59},{"source":176,"target":0},{"source":176,"target":164},{"source":176,"target":209},{"source":176,"target":531},{"source":176,"target":532},{"source":531,"target":164},{"source":532,"target":209},{"source":177,"target":0},{"source":177,"target":84},{"source":177,"target":533},{"source":533,"target":84},{"source":178,"target":0},{"source":178,"target":39},{"source":178,"target":534},{"source":534,"target":39},{"source":179,"target":0},{"source":179,"target":213},{"source":179,"target":535},{"source":535,"target":213},{"source":180,"target":0},{"source":180,"target":43},{"source":180,"target":536},{"source":536,"target":43},{"source":181,"target":0},{"source":181,"target":144},{"source":181,"target":537},{"source":537,"target":144},{"source":182,"target":0},{"source":182,"target":73},{"source":182,"target":538},{"source":538,"target":73},{"source":183,"target":0},{"source":183,"target":145},{"source":183,"target":539},{"source":539,"target":145},{"source":184,"target":0},{"source":184,"target":164},{"source":184,"target":147},{"source":184,"target":162},{"source":184,"target":540},{"source":184,"target":541},{"source":184,"target":542},{"source":540,"target":164},{"source":541,"target":147},{"source":542,"target":162},{"source":185,"target":0},{"source":185,"target":191},{"source":185,"target":543},{"source":543,"target":191},{"source":186,"target":0},{"source":186,"target":178},{"source":186,"target":544},{"source":544,"target":178},{"source":187,"target":0},{"source":187,"target":92},{"source":187,"target":545},{"source":545,"target":92},{"source":188,"target":0},{"source":188,"target":98},{"source":188,"target":546},{"source":546,"target":98},{"source":189,"target":0},{"source":189,"target":173},{"source":189,"target":547},{"source":547,"target":173},{"source":190,"target":0},{"source":190,"target":209},{"source":190,"target":548},{"source":548,"target":209},{"source":191,"target":0},{"source":191,"target":147},{"source":191,"target":549},{"source":549,"target":147},{"source":192,"target":0},{"source":192,"target":61},{"source":192,"target":550},{"source":550,"target":61},{"source":193,"target":0},{"source":193,"target":221},{"source":193,"target":551},{"source":551,"target":221},{"source":194,"target":0},{"source":194,"target":92},{"source":194,"target":552},{"source":552,"target":92},{"source":195,"target":0},{"source":195,"target":22},{"source":195,"target":205},{"source":195,"target":88},{"source":195,"target":553},{"source":195,"target":554},{"source":195,"target":555},{"source":553,"target":22},{"source":554,"target":205},{"source":555,"target":88},{"source":196,"target":0},{"source":196,"target":103},{"source":196,"target":556},{"source":556,"target":103},{"source":197,"target":0},{"source":197,"target":209},{"source":197,"target":59},{"source":197,"target":54},{"source":197,"target":557},{"source":197,"target":558},{"source":197,"target":559},{"source":197,"target":560},{"source":197,"target":561},{"source":557,"target":93},{"source":557,"target":562},{"source":557,"target":197},{"source":562,"target":93},{"source":558,"target":203},{"source":558,"target":563},{"source":558,"target":197},{"source":563,"target":203},{"source":559,"target":209},{"source":560,"target":59},{"source":561,"target":54},{"source":198,"target":0},{"source":198,"target":203},{"source":198,"target":564},{"source":564,"target":203},{"source":199,"target":0},{"source":199,"target":111},{"source":199,"target":565},{"source":565,"target":111},{"source":200,"target":0},{"source":200,"target":203},{"source":200,"target":58},{"source":200,"target":566},{"source":200,"target":567},{"source":200,"target":568},{"source":200,"target":569},{"source":566,"target":63},{"source":566,"target":570},{"source":566,"target":200},{"source":570,"target":63},{"source":567,"target":63},{"source":567,"target":571},{"source":567,"target":200},{"source":571,"target":63},{"source":568,"target":203},{"source":569,"target":58},{"source":201,"target":0},{"source":201,"target":167},{"source":201,"target":572},{"source":572,"target":167},{"source":202,"target":0},{"source":202,"target":4},{"source":202,"target":573},{"source":573,"target":4},{"source":203,"target":0},{"source":203,"target":164},{"source":203,"target":75},{"source":203,"target":147},{"source":203,"target":574},{"source":203,"target":575},{"source":203,"target":576},{"source":203,"target":577},{"source":203,"target":578},{"source":203,"target":579},{"source":203,"target":580},{"source":574,"target":581},{"source":574,"target":203},{"source":575,"target":84},{"source":575,"target":582},{"source":575,"target":203},{"source":582,"target":84},{"source":576,"target":144},{"source":576,"target":583},{"source":576,"target":203},{"source":583,"target":144},{"source":577,"target":161},{"source":577,"target":584},{"source":577,"target":203},{"source":584,"target":161},{"source":578,"target":164},{"source":579,"target":75},{"source":580,"target":147},{"source":204,"target":0},{"source":204,"target":157},{"source":204,"target":585},{"source":585,"target":157},{"source":205,"target":0},{"source":205,"target":144},{"source":205,"target":586},{"source":205,"target":587},{"source":586,"target":75},{"source":586,"target":588},{"source":586,"target":205},{"source":588,"target":75},{"source":587,"target":144},{"source":206,"target":0},{"source":206,"target":60},{"source":206,"target":589},{"source":589,"target":60},{"source":207,"target":0},{"source":207,"target":144},{"source":207,"target":590},{"source":590,"target":144},{"source":208,"target":0},{"source":208,"target":157},{"source":208,"target":591},{"source":208,"target":592},{"source":591,"target":61},{"source":591,"target":593},{"source":591,"target":208},{"source":593,"target":61},{"source":592,"target":157},{"source":209,"target":0},{"source":209,"target":144},{"source":209,"target":128},{"source":209,"target":594},{"source":209,"target":595},{"source":594,"target":144},{"source":595,"target":128},{"source":210,"target":0},{"source":210,"target":111},{"source":210,"target":596},{"source":596,"target":111},{"source":211,"target":0},{"source":211,"target":17},{"source":211,"target":597},{"source":597,"target":17},{"source":212,"target":0},{"source":212,"target":223},{"source":212,"target":598},{"source":598,"target":223},{"source":213,"target":0},{"source":213,"target":107},{"source":213,"target":599},{"source":213,"target":600},{"source":599,"target":61},{"source":599,"target":601},{"source":599,"target":213},{"source":601,"target":61},{"source":600,"target":107},{"source":214,"target":0},{"source":214,"target":32},{"source":214,"target":602},{"source":602,"target":32},{"source":215,"target":0},{"source":215,"target":148},{"source":215,"target":603},{"source":603,"target":148},{"source":216,"target":0},{"source":216,"target":144},{"source":216,"target":48},{"source":216,"target":604},{"source":216,"target":605},{"source":604,"target":144},{"source":605,"target":48},{"source":217,"target":0},{"source":217,"target":168},{"source":217,"target":606},{"source":606,"target":168},{"source":218,"target":0},{"source":218,"target":203},{"source":218,"target":607},{"source":607,"target":203},{"source":219,"target":0},{"source":219,"target":139},{"source":219,"target":608},{"source":608,"target":139},{"source":220,"target":0},{"source":220,"target":187},{"source":220,"target":609},{"source":609,"target":187},{"source":221,"target":0},{"source":221,"target":39},{"source":221,"target":610},{"source":221,"target":611},{"source":221,"target":612},{"source":221,"target":613},{"source":610,"target":614},{"source":610,"target":221},{"source":611,"target":615},{"source":611,"target":221},{"source":612,"target":32},{"source":612,"target":616},{"source":612,"target":221},{"source":616,"target":32},{"source":613,"target":39},{"source":222,"target":0},{"source":222,"target":111},{"source":222,"target":617},{"source":222,"target":618},{"source":222,"target":619},{"source":222,"target":620},{"source":617,"target":61},{"source":617,"target":621},{"source":617,"target":222},{"source":621,"target":61},{"source":618,"target":63},{"source":618,"target":622},{"source":618,"target":222},{"source":622,"target":63},{"source":619,"target":129},{"source":619,"target":623},{"source":619,"target":222},{"source":623,"target":129},{"source":620,"target":111},{"source":223,"target":0},{"source":223,"target":147},{"source":223,"target":624},{"source":624,"target":147},{"source":224,"target":0},{"source":224,"target":30},{"source":224,"target":625},{"source":625,"target":30},{"source":225,"target":0},{"source":225,"target":157},{"source":225,"target":626},{"source":626,"target":157},{"source":226,"target":0},{"source":226,"target":213},{"source":226,"target":627},{"source":627,"target":213},{"source":227,"target":0},{"source":227,"target":142},{"source":227,"target":628},{"source":628,"target":142},{"source":228,"target":0},{"source":228,"target":203},{"source":228,"target":629},{"source":629,"target":203},{"source":229,"target":0},{"source":229,"target":87},{"source":229,"target":630},{"source":630,"target":87},{"source":230,"target":0},{"source":230,"target":203},{"source":230,"target":631},{"source":631,"target":203}],"multigraph":true} |
true | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0"
xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="webpage"
nsURI="http://webpage/1.0" nsPrefix="webpage">
<eClassifiers xsi:type="ecore:EClass" name="Web">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="This class represents a complete web representation. "/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="keywords" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="description" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="title" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="pages" upperBound="-1"
eType="#//Webpage" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Webpage">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="keywords" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="title" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="description" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="categories" upperBound="-1"
eType="#//Category" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Category">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="articles" upperBound="-1"
eType="#//Article" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Article">
<eOperations name="toString" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="body" value="if (eIsProxy()) return super.toString();
		StringBuffer result = new StringBuffer(super.toString());
		result.append("Article: ");
		result.append(name);
		return result.toString();"/>
</eAnnotations>
</eOperations>
<eOperations name="test" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="body" value="return 42 + input;
"/>
</eAnnotations>
<eParameters name="input" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
</eOperations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="created" eType="#//calendar"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="calendar" instanceClassName="java.util.Calendar"/>
</ecore:EPackage>
| github:ecore:/data/vogellacompany/codeexamples-java/de.vogella.xpand.htmlconvert/src/metamodel/webpage.ecore | ecore | webpage
Web
keywords
description
name
title
pages
Webpage
keywords
name
title
description
categories
Category
name
articles
Article
toString
test
input
name
created
calendar
java.util.Calendar
java.util.Calendar | null | {"directed":true,"nodes":[{"nsPrefix":"webpage","nsURI":"http://webpage/1.0","name":"webpage","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Web","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Webpage","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Category","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Article","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":"java.util.Calendar","defaultValue":null,"instanceClassName":"java.util.Calendar","name":"calendar","instanceClass":"java.util.Calendar","id":5,"serializable":true,"eClass":"EDataType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"keywords","changeable":true,"lowerBound":0,"iD":false,"id":6,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"description","changeable":true,"lowerBound":0,"iD":false,"id":7,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":8,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"title","changeable":true,"lowerBound":0,"iD":false,"id":9,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"pages","changeable":true,"resolveProxies":true,"lowerBound":0,"id":10,"derived":false},{"id":11,"eClass":"EGenericType"},{"id":12,"eClass":"EGenericType"},{"id":13,"eClass":"EGenericType"},{"id":14,"eClass":"EGenericType"},{"id":15,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"keywords","changeable":true,"lowerBound":0,"iD":false,"id":16,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":17,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"title","changeable":true,"lowerBound":0,"iD":false,"id":18,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"description","changeable":true,"lowerBound":0,"iD":false,"id":19,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"categories","changeable":true,"resolveProxies":true,"lowerBound":0,"id":20,"derived":false},{"id":21,"eClass":"EGenericType"},{"id":22,"eClass":"EGenericType"},{"id":23,"eClass":"EGenericType"},{"id":24,"eClass":"EGenericType"},{"id":25,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":26,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"articles","changeable":true,"resolveProxies":true,"lowerBound":0,"id":27,"derived":false},{"id":28,"eClass":"EGenericType"},{"id":29,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"toString","lowerBound":0,"id":30,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"test","lowerBound":0,"id":31,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":32,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"created","changeable":true,"lowerBound":0,"iD":false,"id":33,"derived":false},{"id":34,"eClass":"EGenericType"},{"id":35,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"input","lowerBound":0,"id":36,"many":false,"required":false,"eClass":"EParameter"},{"id":37,"eClass":"EGenericType"},{"id":38,"eClass":"EGenericType"},{"id":39,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":1,"target":0},{"source":1,"target":6},{"source":1,"target":7},{"source":1,"target":8},{"source":1,"target":9},{"source":1,"target":10},{"source":6,"target":11},{"source":6,"target":1},{"source":7,"target":12},{"source":7,"target":1},{"source":8,"target":13},{"source":8,"target":1},{"source":9,"target":14},{"source":9,"target":1},{"source":10,"target":2},{"source":10,"target":15},{"source":10,"target":1},{"source":15,"target":2},{"source":2,"target":0},{"source":2,"target":16},{"source":2,"target":17},{"source":2,"target":18},{"source":2,"target":19},{"source":2,"target":20},{"source":16,"target":21},{"source":16,"target":2},{"source":17,"target":22},{"source":17,"target":2},{"source":18,"target":23},{"source":18,"target":2},{"source":19,"target":24},{"source":19,"target":2},{"source":20,"target":3},{"source":20,"target":25},{"source":20,"target":2},{"source":25,"target":3},{"source":3,"target":0},{"source":3,"target":26},{"source":3,"target":27},{"source":26,"target":28},{"source":26,"target":3},{"source":27,"target":4},{"source":27,"target":29},{"source":27,"target":3},{"source":29,"target":4},{"source":4,"target":0},{"source":4,"target":30},{"source":4,"target":31},{"source":4,"target":32},{"source":4,"target":33},{"source":30,"target":34},{"source":30,"target":4},{"source":31,"target":35},{"source":31,"target":4},{"source":31,"target":36},{"source":36,"target":37},{"source":36,"target":31},{"source":32,"target":38},{"source":32,"target":4},{"source":33,"target":5},{"source":33,"target":39},{"source":33,"target":4},{"source":39,"target":5},{"source":5,"target":0}],"multigraph":true} |
false | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="artifact" nsURI="http://tura.org/2016/v2/artifact" nsPrefix="tura.artifact">
<eClassifiers xsi:type="ecore:EClass" name="ArtifactGroup">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="uid" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
iD="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="artifacts" upperBound="-1"
eType="#//Artifact" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="TechLeaf">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="uid" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
iD="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="hints" upperBound="-1"
eType="#//GenerationHint" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="configVariables" upperBound="-1"
eType="#//ConfigVariable" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="configHashes" upperBound="-1"
eType="#//ConfigHash" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="techLeafs" upperBound="-1"
eType="#//TechLeaf" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Artifact">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="uid" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
iD="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="description" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="configVariables" upperBound="-1"
eType="#//ConfigVariableWithNickName" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="configHashes" upperBound="-1"
eType="#//ConfigHashWithNickName" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="modelQuery" upperBound="-1"
eType="#//ModelQuery" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="technologies" upperBound="-1"
eType="#//Technology" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="hints" upperBound="-1"
eType="#//GenerationHintWithNickName" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="template" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="GenerationHintWithNickName">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="uid" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
iD="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="hint" eType="#//GenerationHint"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ConfigVariableWithNickName">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="uid" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
iD="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="var" eType="#//ConfigVariable"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ConfigHashWithNickName">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="uid" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
iD="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="hash" eType="#//ConfigHash"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="GenerationHint">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="uid" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
iD="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ConfigVariable">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="uid" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
iD="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ConfigHash">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="uid" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
iD="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ModelQuery">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="uid" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
iD="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="query" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="parameters" upperBound="-1"
eType="#//QueryParameter" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="QueryParameter">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="uid" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
iD="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Technology">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="uid" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
iD="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="options" lowerBound="1"
upperBound="-1" eType="#//Option" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Option">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="uid" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
iD="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="value" eType="#//TechLeaf"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Categorized">
<eStructuralFeatures xsi:type="ecore:EReference" name="classifiers" upperBound="-1"
eType="#//Classifier" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Classifier">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="uid" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
iD="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="hint" eType="#//GenerationHint"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="details" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
</ecore:EPackage>
| github:ecore:/data/isakovarseniy/tura/sirius/plugins/org.tura.metamodel/model/artifact.ecore | ecore | artifact
ArtifactGroup
uid
name
artifacts
TechLeaf
uid
name
hints
configVariables
configHashes
techLeafs
Artifact
uid
name
description
configVariables
configHashes
modelQuery
technologies
hints
template
GenerationHintWithNickName
uid
name
hint
ConfigVariableWithNickName
uid
name
var
ConfigHashWithNickName
uid
name
hash
GenerationHint
uid
name
ConfigVariable
uid
name
ConfigHash
uid
name
ModelQuery
uid
name
query
parameters
QueryParameter
uid
name
Technology
uid
name
options
Option
uid
value
Categorized
classifiers
Classifier
uid
hint
details | null | {"directed":true,"nodes":[{"nsPrefix":"tura.artifact","nsURI":"http://tura.org/2016/v2/artifact","name":"artifact","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ArtifactGroup","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TechLeaf","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Artifact","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"GenerationHintWithNickName","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ConfigVariableWithNickName","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ConfigHashWithNickName","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"GenerationHint","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ConfigVariable","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ConfigHash","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ModelQuery","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"QueryParameter","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Technology","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Option","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Categorized","instanceClass":null,"abstract":false,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Classifier","instanceClass":null,"abstract":false,"id":15,"interface":false,"eClass":"EClass"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"uid","changeable":true,"lowerBound":0,"iD":true,"id":16,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":17,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"artifacts","changeable":true,"resolveProxies":true,"lowerBound":0,"id":18,"derived":false},{"id":19,"eClass":"EGenericType"},{"id":20,"eClass":"EGenericType"},{"id":21,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"uid","changeable":true,"lowerBound":0,"iD":true,"id":22,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":23,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"hints","changeable":true,"resolveProxies":true,"lowerBound":0,"id":24,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"configVariables","changeable":true,"resolveProxies":true,"lowerBound":0,"id":25,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"configHashes","changeable":true,"resolveProxies":true,"lowerBound":0,"id":26,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"techLeafs","changeable":true,"resolveProxies":true,"lowerBound":0,"id":27,"derived":false},{"id":28,"eClass":"EGenericType"},{"id":29,"eClass":"EGenericType"},{"id":30,"eClass":"EGenericType"},{"id":31,"eClass":"EGenericType"},{"id":32,"eClass":"EGenericType"},{"id":33,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"uid","changeable":true,"lowerBound":0,"iD":true,"id":34,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":35,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"description","changeable":true,"lowerBound":0,"iD":false,"id":36,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"configVariables","changeable":true,"resolveProxies":true,"lowerBound":0,"id":37,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"configHashes","changeable":true,"resolveProxies":true,"lowerBound":0,"id":38,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"modelQuery","changeable":true,"resolveProxies":true,"lowerBound":0,"id":39,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"technologies","changeable":true,"resolveProxies":true,"lowerBound":0,"id":40,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"hints","changeable":true,"resolveProxies":true,"lowerBound":0,"id":41,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"template","changeable":true,"lowerBound":0,"iD":false,"id":42,"derived":false},{"id":43,"eClass":"EGenericType"},{"id":44,"eClass":"EGenericType"},{"id":45,"eClass":"EGenericType"},{"id":46,"eClass":"EGenericType"},{"id":47,"eClass":"EGenericType"},{"id":48,"eClass":"EGenericType"},{"id":49,"eClass":"EGenericType"},{"id":50,"eClass":"EGenericType"},{"id":51,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"uid","changeable":true,"lowerBound":0,"iD":true,"id":52,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":53,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"hint","changeable":true,"resolveProxies":true,"lowerBound":0,"id":54,"derived":false},{"id":55,"eClass":"EGenericType"},{"id":56,"eClass":"EGenericType"},{"id":57,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"uid","changeable":true,"lowerBound":0,"iD":true,"id":58,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":59,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"var","changeable":true,"resolveProxies":true,"lowerBound":0,"id":60,"derived":false},{"id":61,"eClass":"EGenericType"},{"id":62,"eClass":"EGenericType"},{"id":63,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"uid","changeable":true,"lowerBound":0,"iD":true,"id":64,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":65,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"hash","changeable":true,"resolveProxies":true,"lowerBound":0,"id":66,"derived":false},{"id":67,"eClass":"EGenericType"},{"id":68,"eClass":"EGenericType"},{"id":69,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"uid","changeable":true,"lowerBound":0,"iD":true,"id":70,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":71,"derived":false},{"id":72,"eClass":"EGenericType"},{"id":73,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"uid","changeable":true,"lowerBound":0,"iD":true,"id":74,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":75,"derived":false},{"id":76,"eClass":"EGenericType"},{"id":77,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"uid","changeable":true,"lowerBound":0,"iD":true,"id":78,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":79,"derived":false},{"id":80,"eClass":"EGenericType"},{"id":81,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"uid","changeable":true,"lowerBound":0,"iD":true,"id":82,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":83,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"query","changeable":true,"lowerBound":0,"iD":false,"id":84,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"parameters","changeable":true,"resolveProxies":true,"lowerBound":0,"id":85,"derived":false},{"id":86,"eClass":"EGenericType"},{"id":87,"eClass":"EGenericType"},{"id":88,"eClass":"EGenericType"},{"id":89,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"uid","changeable":true,"lowerBound":0,"iD":true,"id":90,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":91,"derived":false},{"id":92,"eClass":"EGenericType"},{"id":93,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"uid","changeable":true,"lowerBound":0,"iD":true,"id":94,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":95,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"options","changeable":true,"resolveProxies":true,"lowerBound":1,"id":96,"derived":false},{"id":97,"eClass":"EGenericType"},{"id":98,"eClass":"EGenericType"},{"id":99,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"uid","changeable":true,"lowerBound":0,"iD":true,"id":100,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"resolveProxies":true,"lowerBound":0,"id":101,"derived":false},{"id":102,"eClass":"EGenericType"},{"id":103,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"classifiers","changeable":true,"resolveProxies":true,"lowerBound":0,"id":104,"derived":false},{"id":105,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"uid","changeable":true,"lowerBound":0,"iD":true,"id":106,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"hint","changeable":true,"resolveProxies":true,"lowerBound":0,"id":107,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"details","changeable":true,"lowerBound":0,"iD":false,"id":108,"derived":false},{"id":109,"eClass":"EGenericType"},{"id":110,"eClass":"EGenericType"},{"id":111,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":0,"target":8},{"source":0,"target":9},{"source":0,"target":10},{"source":0,"target":11},{"source":0,"target":12},{"source":0,"target":13},{"source":0,"target":14},{"source":0,"target":15},{"source":1,"target":0},{"source":1,"target":16},{"source":1,"target":17},{"source":1,"target":18},{"source":16,"target":19},{"source":16,"target":1},{"source":17,"target":20},{"source":17,"target":1},{"source":18,"target":3},{"source":18,"target":21},{"source":18,"target":1},{"source":21,"target":3},{"source":2,"target":0},{"source":2,"target":22},{"source":2,"target":23},{"source":2,"target":24},{"source":2,"target":25},{"source":2,"target":26},{"source":2,"target":27},{"source":22,"target":28},{"source":22,"target":2},{"source":23,"target":29},{"source":23,"target":2},{"source":24,"target":7},{"source":24,"target":30},{"source":24,"target":2},{"source":30,"target":7},{"source":25,"target":8},{"source":25,"target":31},{"source":25,"target":2},{"source":31,"target":8},{"source":26,"target":9},{"source":26,"target":32},{"source":26,"target":2},{"source":32,"target":9},{"source":27,"target":2},{"source":27,"target":33},{"source":27,"target":2},{"source":33,"target":2},{"source":3,"target":0},{"source":3,"target":34},{"source":3,"target":35},{"source":3,"target":36},{"source":3,"target":37},{"source":3,"target":38},{"source":3,"target":39},{"source":3,"target":40},{"source":3,"target":41},{"source":3,"target":42},{"source":34,"target":43},{"source":34,"target":3},{"source":35,"target":44},{"source":35,"target":3},{"source":36,"target":45},{"source":36,"target":3},{"source":37,"target":5},{"source":37,"target":46},{"source":37,"target":3},{"source":46,"target":5},{"source":38,"target":6},{"source":38,"target":47},{"source":38,"target":3},{"source":47,"target":6},{"source":39,"target":10},{"source":39,"target":48},{"source":39,"target":3},{"source":48,"target":10},{"source":40,"target":12},{"source":40,"target":49},{"source":40,"target":3},{"source":49,"target":12},{"source":41,"target":4},{"source":41,"target":50},{"source":41,"target":3},{"source":50,"target":4},{"source":42,"target":51},{"source":42,"target":3},{"source":4,"target":0},{"source":4,"target":52},{"source":4,"target":53},{"source":4,"target":54},{"source":52,"target":55},{"source":52,"target":4},{"source":53,"target":56},{"source":53,"target":4},{"source":54,"target":7},{"source":54,"target":57},{"source":54,"target":4},{"source":57,"target":7},{"source":5,"target":0},{"source":5,"target":58},{"source":5,"target":59},{"source":5,"target":60},{"source":58,"target":61},{"source":58,"target":5},{"source":59,"target":62},{"source":59,"target":5},{"source":60,"target":8},{"source":60,"target":63},{"source":60,"target":5},{"source":63,"target":8},{"source":6,"target":0},{"source":6,"target":64},{"source":6,"target":65},{"source":6,"target":66},{"source":64,"target":67},{"source":64,"target":6},{"source":65,"target":68},{"source":65,"target":6},{"source":66,"target":9},{"source":66,"target":69},{"source":66,"target":6},{"source":69,"target":9},{"source":7,"target":0},{"source":7,"target":70},{"source":7,"target":71},{"source":70,"target":72},{"source":70,"target":7},{"source":71,"target":73},{"source":71,"target":7},{"source":8,"target":0},{"source":8,"target":74},{"source":8,"target":75},{"source":74,"target":76},{"source":74,"target":8},{"source":75,"target":77},{"source":75,"target":8},{"source":9,"target":0},{"source":9,"target":78},{"source":9,"target":79},{"source":78,"target":80},{"source":78,"target":9},{"source":79,"target":81},{"source":79,"target":9},{"source":10,"target":0},{"source":10,"target":82},{"source":10,"target":83},{"source":10,"target":84},{"source":10,"target":85},{"source":82,"target":86},{"source":82,"target":10},{"source":83,"target":87},{"source":83,"target":10},{"source":84,"target":88},{"source":84,"target":10},{"source":85,"target":11},{"source":85,"target":89},{"source":85,"target":10},{"source":89,"target":11},{"source":11,"target":0},{"source":11,"target":90},{"source":11,"target":91},{"source":90,"target":92},{"source":90,"target":11},{"source":91,"target":93},{"source":91,"target":11},{"source":12,"target":0},{"source":12,"target":94},{"source":12,"target":95},{"source":12,"target":96},{"source":94,"target":97},{"source":94,"target":12},{"source":95,"target":98},{"source":95,"target":12},{"source":96,"target":13},{"source":96,"target":99},{"source":96,"target":12},{"source":99,"target":13},{"source":13,"target":0},{"source":13,"target":100},{"source":13,"target":101},{"source":100,"target":102},{"source":100,"target":13},{"source":101,"target":2},{"source":101,"target":103},{"source":101,"target":13},{"source":103,"target":2},{"source":14,"target":0},{"source":14,"target":104},{"source":104,"target":15},{"source":104,"target":105},{"source":104,"target":14},{"source":105,"target":15},{"source":15,"target":0},{"source":15,"target":106},{"source":15,"target":107},{"source":15,"target":108},{"source":106,"target":109},{"source":106,"target":15},{"source":107,"target":7},{"source":107,"target":110},{"source":107,"target":15},{"source":110,"target":7},{"source":108,"target":111},{"source":108,"target":15}],"multigraph":true} |
false | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0"
xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="domainmodel"
nsURI="http://www.example.xtext/Domainmodel" nsPrefix="domainmodel">
<eClassifiers xsi:type="ecore:EClass" name="DomainModel">
<eStructuralFeatures xsi:type="ecore:EReference" name="elements" upperBound="-1"
eType="#//AbstractElement" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="AbstractElement"/>
<eClassifiers xsi:type="ecore:EClass" name="Import" eSuperTypes="#//AbstractElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="importedNamespace" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="PackageDeclaration" eSuperTypes="#//AbstractElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="elements" upperBound="-1"
eType="#//AbstractElement" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Type" eSuperTypes="#//AbstractElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="DataType" eSuperTypes="#//Type"/>
<eClassifiers xsi:type="ecore:EClass" name="Entity" eSuperTypes="#//Type">
<eStructuralFeatures xsi:type="ecore:EReference" name="superType" eType="#//Entity"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="features" upperBound="-1"
eType="#//Feature" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Feature" eSuperTypes="#//TypedElement"/>
<eClassifiers xsi:type="ecore:EClass" name="StructuralFeature" eSuperTypes="#//Feature"/>
<eClassifiers xsi:type="ecore:EClass" name="Attribute" eSuperTypes="#//StructuralFeature"/>
<eClassifiers xsi:type="ecore:EClass" name="Reference" eSuperTypes="#//StructuralFeature">
<eStructuralFeatures xsi:type="ecore:EReference" name="opposite" eType="#//Reference"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Operation" eSuperTypes="#//Feature">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="visibility" eType="#//Visibility"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="params" upperBound="-1"
eType="#//Parameter" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Parameter" eSuperTypes="#//TypedElement"/>
<eClassifiers xsi:type="ecore:EClass" name="TypedElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="type" eType="#//TypeRef"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="TypeRef">
<eStructuralFeatures xsi:type="ecore:EReference" name="referenced" eType="#//Type"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="multi" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="Visibility">
<eLiterals name="public" literal="public"/>
<eLiterals name="private" value="1" literal="private"/>
<eLiterals name="protected" value="2" literal="protected"/>
</eClassifiers>
</ecore:EPackage>
| github:ecore:/data/LolloCorte/bpel-xtext/org.eclipse.xtext.example.domainmodel/src-gen/org/eclipse/xtext/example/Domainmodel.ecore | ecore | domainmodel
DomainModel
elements
AbstractElement
Import
importedNamespace
PackageDeclaration
name
elements
Type
name
DataType
Entity
superType
features
Feature
StructuralFeature
Attribute
Reference
opposite
Operation
visibility
params
Parameter
TypedElement
name
type
TypeRef
referenced
multi
Visibility
public
public
private
private
protected
protected | null | {"directed":true,"nodes":[{"nsPrefix":"domainmodel","nsURI":"http://www.example.xtext/Domainmodel","name":"domainmodel","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DomainModel","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AbstractElement","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Import","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PackageDeclaration","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Type","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DataType","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Entity","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Feature","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StructuralFeature","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Attribute","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Reference","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Operation","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Parameter","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TypedElement","instanceClass":null,"abstract":false,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TypeRef","instanceClass":null,"abstract":false,"id":15,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"Visibility","instanceClass":null,"id":16,"serializable":true,"eClass":"EEnum"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"elements","changeable":true,"resolveProxies":true,"lowerBound":0,"id":17,"derived":false},{"id":18,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"importedNamespace","changeable":true,"lowerBound":0,"iD":false,"id":19,"derived":false},{"id":20,"eClass":"EGenericType"},{"id":21,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":22,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"elements","changeable":true,"resolveProxies":true,"lowerBound":0,"id":23,"derived":false},{"id":24,"eClass":"EGenericType"},{"id":25,"eClass":"EGenericType"},{"id":26,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":27,"derived":false},{"id":28,"eClass":"EGenericType"},{"id":29,"eClass":"EGenericType"},{"id":30,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"superType","changeable":true,"resolveProxies":true,"lowerBound":0,"id":31,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"features","changeable":true,"resolveProxies":true,"lowerBound":0,"id":32,"derived":false},{"id":33,"eClass":"EGenericType"},{"id":34,"eClass":"EGenericType"},{"id":35,"eClass":"EGenericType"},{"id":36,"eClass":"EGenericType"},{"id":37,"eClass":"EGenericType"},{"id":38,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"opposite","changeable":true,"resolveProxies":true,"lowerBound":0,"id":39,"derived":false},{"id":40,"eClass":"EGenericType"},{"id":41,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"visibility","changeable":true,"lowerBound":0,"iD":false,"id":42,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"params","changeable":true,"resolveProxies":true,"lowerBound":0,"id":43,"derived":false},{"id":44,"eClass":"EGenericType"},{"id":45,"eClass":"EGenericType"},{"id":46,"eClass":"EGenericType"},{"id":47,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":48,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"resolveProxies":true,"lowerBound":0,"id":49,"derived":false},{"id":50,"eClass":"EGenericType"},{"id":51,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"referenced","changeable":true,"resolveProxies":true,"lowerBound":0,"id":52,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"multi","changeable":true,"lowerBound":0,"iD":false,"id":53,"derived":false},{"id":54,"eClass":"EGenericType"},{"id":55,"eClass":"EGenericType"},{"name":"public","id":56,"value":0,"literal":"public","eClass":"EEnumLiteral"},{"name":"private","id":57,"value":1,"literal":"private","eClass":"EEnumLiteral"},{"name":"protected","id":58,"value":2,"literal":"protected","eClass":"EEnumLiteral"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":0,"target":8},{"source":0,"target":9},{"source":0,"target":10},{"source":0,"target":11},{"source":0,"target":12},{"source":0,"target":13},{"source":0,"target":14},{"source":0,"target":15},{"source":0,"target":16},{"source":1,"target":0},{"source":1,"target":17},{"source":17,"target":2},{"source":17,"target":18},{"source":17,"target":1},{"source":18,"target":2},{"source":2,"target":0},{"source":3,"target":0},{"source":3,"target":2},{"source":3,"target":19},{"source":3,"target":20},{"source":19,"target":21},{"source":19,"target":3},{"source":20,"target":2},{"source":4,"target":0},{"source":4,"target":2},{"source":4,"target":22},{"source":4,"target":23},{"source":4,"target":24},{"source":22,"target":25},{"source":22,"target":4},{"source":23,"target":2},{"source":23,"target":26},{"source":23,"target":4},{"source":26,"target":2},{"source":24,"target":2},{"source":5,"target":0},{"source":5,"target":2},{"source":5,"target":27},{"source":5,"target":28},{"source":27,"target":29},{"source":27,"target":5},{"source":28,"target":2},{"source":6,"target":0},{"source":6,"target":5},{"source":6,"target":30},{"source":30,"target":5},{"source":7,"target":0},{"source":7,"target":5},{"source":7,"target":31},{"source":7,"target":32},{"source":7,"target":33},{"source":31,"target":7},{"source":31,"target":34},{"source":31,"target":7},{"source":34,"target":7},{"source":32,"target":8},{"source":32,"target":35},{"source":32,"target":7},{"source":35,"target":8},{"source":33,"target":5},{"source":8,"target":0},{"source":8,"target":14},{"source":8,"target":36},{"source":36,"target":14},{"source":9,"target":0},{"source":9,"target":8},{"source":9,"target":37},{"source":37,"target":8},{"source":10,"target":0},{"source":10,"target":9},{"source":10,"target":38},{"source":38,"target":9},{"source":11,"target":0},{"source":11,"target":9},{"source":11,"target":39},{"source":11,"target":40},{"source":39,"target":11},{"source":39,"target":41},{"source":39,"target":11},{"source":41,"target":11},{"source":40,"target":9},{"source":12,"target":0},{"source":12,"target":8},{"source":12,"target":42},{"source":12,"target":43},{"source":12,"target":44},{"source":42,"target":16},{"source":42,"target":45},{"source":42,"target":12},{"source":45,"target":16},{"source":43,"target":13},{"source":43,"target":46},{"source":43,"target":12},{"source":46,"target":13},{"source":44,"target":8},{"source":13,"target":0},{"source":13,"target":14},{"source":13,"target":47},{"source":47,"target":14},{"source":14,"target":0},{"source":14,"target":48},{"source":14,"target":49},{"source":48,"target":50},{"source":48,"target":14},{"source":49,"target":15},{"source":49,"target":51},{"source":49,"target":14},{"source":51,"target":15},{"source":15,"target":0},{"source":15,"target":52},{"source":15,"target":53},{"source":52,"target":5},{"source":52,"target":54},{"source":52,"target":15},{"source":54,"target":5},{"source":53,"target":55},{"source":53,"target":15},{"source":16,"target":0},{"source":16,"target":56},{"source":16,"target":57},{"source":16,"target":58},{"source":56,"target":16},{"source":57,"target":16},{"source":58,"target":16}],"multigraph":true} |
false | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="_1" nsURI="http://scap.nist.gov/schema/reporting-core/1.1" nsPrefix="_1">
<eAnnotations>
<details key="appinfo" value="
 <schema>Reporting Core</schema>
 <author>David Waltermire, Adam Halbardier, John Wunder</author>
 <version>1.1.0</version>
 <date>2011-06-02</date>
 "/>
</eAnnotations>
<eClassifiers xsi:type="ecore:EClass" name="RelationshipsContainerType">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="relationships-container-type"/>
<details key="kind" value="elementOnly"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="relationships" eType="#//RelationshipsType"
containment="true" resolveProxies="false">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="Contains a collection of relationship elements."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="relationships"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="RelationshipsType">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="relationships_._type"/>
<details key="kind" value="elementOnly"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="relationship" lowerBound="1"
upperBound="-1" eType="#//RelationshipType" containment="true" resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="relationship"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="RelationshipType">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The relationship-type encapsulates a complete relationship from a subject to one or more
 objects. It is the responsibility of the XML Schema adopting this type to implement the necessary
 id/idref instances to ensure that @subject and ref refer to valid elements."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="relationship-type"/>
<details key="kind" value="elementOnly"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="ref" unique="false" lowerBound="1"
upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//NCName">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="Must contain the ID of the object of the relationship being established. The
 implementing XML Schema of relationship-type SHOULD implement the necessary id/idref constructs
 to ensure a valid reference is constructed."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="ref"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="scope" eType="#//ScopeType"
defaultValueLiteral="inclusive" unsettable="true">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="Indicates how multiple <ref> elements should be interpreted in this
 relationship. If "inclusive" is specified, then the relationship being defined is between the
 subject and the collection of objects indicated by the <ref> elements (i.e. the
 relationship is not necessarily relevant for any one particular object being referenced, but for the
 collection of objects referenced). If "exclusive" is specified, then the relationship being defined
 is between the content payload and each object individually (i.e. this is the same as specifying
 multiple relationship elements, each with the same @type and subject)."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="scope"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="subject" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//NCName">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="Must contain the ID of the subject of the relationship being established. The
 implementing XML Schema of relationship-type SHOULD implement the necessary id/idref constructs to
 ensure a valid reference is constructed."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="subject"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="type" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//QName">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="Specifies the type of relationship (predicate) being defined between the subject and
 the object of the relationship. The value is a QName that should reference a term in a controlled
 vocabulary which is understood by both the producing and consuming parties."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="type"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="anyAttribute" unique="false"
upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFeatureMapEntry">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="A placeholder so that content creators can add attributes as
 desired."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attributeWildcard"/>
<details key="wildcards" value="##other"/>
<details key="name" value=":4"/>
<details key="processing" value="strict"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="ScopeType">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="scope_._type"/>
</eAnnotations>
<eLiterals name="inclusive"/>
<eLiterals name="exclusive" value="1"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="ScopeTypeObject" instanceClassName="org.eclipse.emf.common.util.Enumerator">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="scope_._type:Object"/>
<details key="baseType" value="scope_._type"/>
</eAnnotations>
</eClassifiers>
</ecore:EPackage>
| github:ecore:/data/threadedblue/arf2emf/model/_12.ecore | ecore | _1
RelationshipsContainerType
relationships
RelationshipsType
relationship
RelationshipType
ref
scope
inclusive
subject
type
anyAttribute
ScopeType
inclusive
inclusive
exclusive
exclusive
ScopeTypeObject
org.eclipse.emf.common.util.Enumerator
org.eclipse.emf.common.util.Enumerator | null | {"directed":true,"nodes":[{"nsPrefix":"_1","nsURI":"http://scap.nist.gov/schema/reporting-core/1.1","name":"_1","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RelationshipsContainerType","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RelationshipsType","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RelationshipType","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"ScopeType","instanceClass":null,"id":4,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":"org.eclipse.emf.common.util.Enumerator","defaultValue":null,"instanceClassName":"org.eclipse.emf.common.util.Enumerator","name":"ScopeTypeObject","instanceClass":"org.eclipse.emf.common.util.Enumerator","id":5,"serializable":true,"eClass":"EDataType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"relationships","changeable":true,"resolveProxies":false,"lowerBound":0,"id":6,"derived":false},{"id":7,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"relationship","changeable":true,"resolveProxies":false,"lowerBound":1,"id":8,"derived":false},{"id":9,"eClass":"EGenericType"},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"ref","changeable":true,"lowerBound":1,"iD":false,"id":10,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"inclusive","unsettable":true,"transient":false,"unique":true,"name":"scope","changeable":true,"lowerBound":0,"iD":false,"id":11,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"subject","changeable":true,"lowerBound":1,"iD":false,"id":12,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"lowerBound":1,"iD":false,"id":13,"derived":false},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"anyAttribute","changeable":true,"lowerBound":0,"iD":false,"id":14,"derived":false},{"id":15,"eClass":"EGenericType"},{"id":16,"eClass":"EGenericType"},{"id":17,"eClass":"EGenericType"},{"id":18,"eClass":"EGenericType"},{"id":19,"eClass":"EGenericType"},{"name":"inclusive","id":20,"value":0,"literal":"inclusive","eClass":"EEnumLiteral"},{"name":"exclusive","id":21,"value":1,"literal":"exclusive","eClass":"EEnumLiteral"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":1,"target":0},{"source":1,"target":6},{"source":6,"target":2},{"source":6,"target":7},{"source":6,"target":1},{"source":7,"target":2},{"source":2,"target":0},{"source":2,"target":8},{"source":8,"target":3},{"source":8,"target":9},{"source":8,"target":2},{"source":9,"target":3},{"source":3,"target":0},{"source":3,"target":10},{"source":3,"target":11},{"source":3,"target":12},{"source":3,"target":13},{"source":3,"target":14},{"source":10,"target":15},{"source":10,"target":3},{"source":11,"target":4},{"source":11,"target":16},{"source":11,"target":3},{"source":16,"target":4},{"source":12,"target":17},{"source":12,"target":3},{"source":13,"target":18},{"source":13,"target":3},{"source":14,"target":19},{"source":14,"target":3},{"source":4,"target":0},{"source":4,"target":20},{"source":4,"target":21},{"source":20,"target":4},{"source":21,"target":4},{"source":5,"target":0}],"multigraph":true} |
true | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="UML2" nsURI="http:///UML2.ecore" nsPrefix="UML2">
<eClassifiers xsi:type="ecore:EEnum" name="AggregationKind">
<eLiterals name="composite" value="1" literal="composite"/>
<eLiterals name="none" value="2" literal="none"/>
<eLiterals name="shared" value="3" literal="shared"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="VisibilityKind">
<eLiterals name="package" value="1" literal="package"/>
<eLiterals name="private" value="2" literal="private"/>
<eLiterals name="protected" value="3" literal="protected"/>
<eLiterals name="public" value="4" literal="public"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="ParameterDirectionKind">
<eLiterals name="in" value="1" literal="in"/>
<eLiterals name="inout" value="2" literal="inout"/>
<eLiterals name="out" value="3" literal="out"/>
<eLiterals name="return" value="4" literal="return"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ProtocolConformance" eSuperTypes="#//DirectedRelationship"/>
<eClassifiers xsi:type="ecore:EClass" name="ActivityNode" eSuperTypes="#//RedefinableElement"/>
<eClassifiers xsi:type="ecore:EClass" name="Vertex" eSuperTypes="#//NamedElement"/>
<eClassifiers xsi:type="ecore:EClass" name="CreateObjectAction" eSuperTypes="#//Action">
<eStructuralFeatures xsi:type="ecore:EReference" name="classifier" lowerBound="1"
eType="#//Classifier"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="result" lowerBound="1"
eType="#//OutputPin" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="LiteralNull" eSuperTypes="#//LiteralSpecification"/>
<eClassifiers xsi:type="ecore:EClass" name="DataStoreNode" eSuperTypes="#//CentralBufferNode"/>
<eClassifiers xsi:type="ecore:EClass" name="ActivityEdge" eSuperTypes="#//RedefinableElement"/>
<eClassifiers xsi:type="ecore:EClass" name="ConditionalNode" eSuperTypes="#//StructuredActivityNode"/>
<eClassifiers xsi:type="ecore:EClass" name="Element">
<eStructuralFeatures xsi:type="ecore:EReference" name="owner" eType="#//Element"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="StructuralFeatureAction" eSuperTypes="#//Action">
<eStructuralFeatures xsi:type="ecore:EReference" name="structuralFeature" lowerBound="1"
eType="#//StructuralFeature"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="TimeConstraint" eSuperTypes="#//IntervalConstraint"/>
<eClassifiers xsi:type="ecore:EClass" name="Abstraction" eSuperTypes="#//Dependency"/>
<eClassifiers xsi:type="ecore:EClass" name="CentralBufferNode" eSuperTypes="#//ObjectNode"/>
<eClassifiers xsi:type="ecore:EClass" name="ObjectFlow" eSuperTypes="#//ActivityEdge"/>
<eClassifiers xsi:type="ecore:EClass" name="ParameterSet" eSuperTypes="#//NamedElement"/>
<eClassifiers xsi:type="ecore:EClass" name="TemplateParameter" eSuperTypes="#//Element"/>
<eClassifiers xsi:type="ecore:EClass" name="PackageMerge" eSuperTypes="#//DirectedRelationship"/>
<eClassifiers xsi:type="ecore:EClass" name="Deployment" eSuperTypes="#//Dependency"/>
<eClassifiers xsi:type="ecore:EClass" name="RedefinableTemplateSignature" eSuperTypes="#//RedefinableElement #//TemplateSignature"/>
<eClassifiers xsi:type="ecore:EClass" name="Message" eSuperTypes="#//NamedElement"/>
<eClassifiers xsi:type="ecore:EClass" name="ForkNode" eSuperTypes="#//ControlNode"/>
<eClassifiers xsi:type="ecore:EClass" name="ClassifierTemplateParameter" eSuperTypes="#//TemplateParameter"/>
<eClassifiers xsi:type="ecore:EClass" name="Port" eSuperTypes="#//Property"/>
<eClassifiers xsi:type="ecore:EClass" name="InvocationAction" eSuperTypes="#//Action"/>
<eClassifiers xsi:type="ecore:EClass" name="FlowFinalNode" eSuperTypes="#//FinalNode"/>
<eClassifiers xsi:type="ecore:EClass" name="StructuralFeature" eSuperTypes="#//Feature #//TypedElement #//MultiplicityElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isReadOnly" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CollaborationOccurrence" eSuperTypes="#//NamedElement"/>
<eClassifiers xsi:type="ecore:EClass" name="Interface" eSuperTypes="#//Classifier"/>
<eClassifiers xsi:type="ecore:EClass" name="LiteralInteger" eSuperTypes="#//LiteralSpecification"/>
<eClassifiers xsi:type="ecore:EClass" name="LoopNode" eSuperTypes="#//StructuredActivityNode"/>
<eClassifiers xsi:type="ecore:EClass" name="Lifeline" eSuperTypes="#//NamedElement"/>
<eClassifiers xsi:type="ecore:EClass" name="SendObjectAction" eSuperTypes="#//InvocationAction"/>
<eClassifiers xsi:type="ecore:EClass" name="BehavioralFeature" eSuperTypes="#//Namespace #//Feature"/>
<eClassifiers xsi:type="ecore:EClass" name="TimeInterval" eSuperTypes="#//Interval"/>
<eClassifiers xsi:type="ecore:EClass" name="RemoveStructuralFeatureValueAction"
eSuperTypes="#//WriteStructuralFeatureAction"/>
<eClassifiers xsi:type="ecore:EClass" name="OperationTemplateParameter" eSuperTypes="#//TemplateParameter"/>
<eClassifiers xsi:type="ecore:EClass" name="Connector" eSuperTypes="#//Feature"/>
<eClassifiers xsi:type="ecore:EClass" name="StateInvariant" eSuperTypes="#//InteractionFragment"/>
<eClassifiers xsi:type="ecore:EClass" name="AddVariableValueAction" eSuperTypes="#//WriteVariableAction"/>
<eClassifiers xsi:type="ecore:EClass" name="CallBehaviorAction" eSuperTypes="#//CallAction"/>
<eClassifiers xsi:type="ecore:EClass" name="ExtensionEnd" eSuperTypes="#//Property"/>
<eClassifiers xsi:type="ecore:EClass" name="BroadcastSignalAction" eSuperTypes="#//InvocationAction"/>
<eClassifiers xsi:type="ecore:EClass" name="CommunicationPath" eSuperTypes="#//Association"/>
<eClassifiers xsi:type="ecore:EClass" name="WriteLinkAction" eSuperTypes="#//LinkAction"/>
<eClassifiers xsi:type="ecore:EClass" name="Extend" eSuperTypes="#//NamedElement #//DirectedRelationship"/>
<eClassifiers xsi:type="ecore:EClass" name="AcceptEventAction" eSuperTypes="#//Action"/>
<eClassifiers xsi:type="ecore:EClass" name="CreateLinkObjectAction" eSuperTypes="#//CreateLinkAction"/>
<eClassifiers xsi:type="ecore:EClass" name="LiteralBoolean" eSuperTypes="#//LiteralSpecification"/>
<eClassifiers xsi:type="ecore:EClass" name="DestroyLinkAction" eSuperTypes="#//WriteLinkAction"/>
<eClassifiers xsi:type="ecore:EClass" name="StartOwnedBehaviorAction" eSuperTypes="#//Action"/>
<eClassifiers xsi:type="ecore:EClass" name="Continuation" eSuperTypes="#//InteractionFragment"/>
<eClassifiers xsi:type="ecore:EClass" name="ReplyAction" eSuperTypes="#//Action"/>
<eClassifiers xsi:type="ecore:EClass" name="ValueSpecification" eSuperTypes="#//TypedElement #//ParameterableElement"/>
<eClassifiers xsi:type="ecore:EClass" name="InteractionOperand" eSuperTypes="#//Namespace #//InteractionFragment"/>
<eClassifiers xsi:type="ecore:EClass" name="Package" eSuperTypes="#//Namespace #//PackageableElement"/>
<eClassifiers xsi:type="ecore:EClass" name="MessageEnd" eSuperTypes="#//NamedElement"/>
<eClassifiers xsi:type="ecore:EClass" name="PrimitiveFunction" eSuperTypes="#//PackageableElement"/>
<eClassifiers xsi:type="ecore:EClass" name="CallAction" eSuperTypes="#//InvocationAction"/>
<eClassifiers xsi:type="ecore:EClass" name="Manifestation" eSuperTypes="#//Abstraction"/>
<eClassifiers xsi:type="ecore:EClass" name="BehavioredClassifier" eSuperTypes="#//Classifier">
<eStructuralFeatures xsi:type="ecore:EReference" name="ownedBehavior" upperBound="-1"
eType="#//Behavior" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="classifierBehavior" eType="#//Behavior"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="WriteVariableAction" eSuperTypes="#//VariableAction"/>
<eClassifiers xsi:type="ecore:EClass" name="ReadExtentAction" eSuperTypes="#//Action"/>
<eClassifiers xsi:type="ecore:EClass" name="Property" eSuperTypes="#//StructuralFeature #//ConnectableElement #//DeploymentTarget">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isComposite" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isDerived" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isDerivedUnion" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="aggregation" eType="#//AggregationKind"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="subsettedProperty" upperBound="-1"
eType="#//Property"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="association" eType="#//Association"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="qualifier" upperBound="-1"
eType="#//Property" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ReadSelfAction" eSuperTypes="#//Action">
<eStructuralFeatures xsi:type="ecore:EReference" name="result" lowerBound="1"
eType="#//OutputPin" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EventOccurrence" eSuperTypes="#//InteractionFragment #//MessageEnd"/>
<eClassifiers xsi:type="ecore:EClass" name="TimeObservationAction" eSuperTypes="#//WriteStructuralFeatureAction"/>
<eClassifiers xsi:type="ecore:EClass" name="InteractionFragment" eSuperTypes="#//NamedElement"/>
<eClassifiers xsi:type="ecore:EClass" name="StringExpression" eSuperTypes="#//TemplateableElement"/>
<eClassifiers xsi:type="ecore:EClass" name="PackageableElement" eSuperTypes="#//NamedElement #//ParameterableElement"/>
<eClassifiers xsi:type="ecore:EClass" name="TypedElement" eSuperTypes="#//NamedElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="type" eType="#//Type"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="OutputPin" eSuperTypes="#//Pin"/>
<eClassifiers xsi:type="ecore:EClass" name="GeneralOrdering" eSuperTypes="#//NamedElement"/>
<eClassifiers xsi:type="ecore:EClass" name="DecisionNode" eSuperTypes="#//ControlNode"/>
<eClassifiers xsi:type="ecore:EClass" name="InputPin" eSuperTypes="#//Pin"/>
<eClassifiers xsi:type="ecore:EClass" name="AddStructuralFeatureValueAction" eSuperTypes="#//WriteStructuralFeatureAction"/>
<eClassifiers xsi:type="ecore:EClass" name="Generalization" eSuperTypes="#//DirectedRelationship">
<eStructuralFeatures xsi:type="ecore:EReference" name="general" lowerBound="1"
eType="#//Classifier"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ClearVariableAction" eSuperTypes="#//VariableAction"/>
<eClassifiers xsi:type="ecore:EClass" name="Class" eSuperTypes="#//BehavioredClassifier #//EncapsulatedClassifier">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isActive" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="nestedClassifier" upperBound="-1"
eType="#//Classifier" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="ownedReception" upperBound="-1"
eType="#//Reception" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Artifact" eSuperTypes="#//Classifier #//DeployedArtifact"/>
<eClassifiers xsi:type="ecore:EClass" name="EncapsulatedClassifier" eSuperTypes="#//StructuredClassifier"/>
<eClassifiers xsi:type="ecore:EClass" name="RemoveVariableValueAction" eSuperTypes="#//WriteVariableAction"/>
<eClassifiers xsi:type="ecore:EClass" name="ExpansionRegion" eSuperTypes="#//StructuredActivityNode"/>
<eClassifiers xsi:type="ecore:EClass" name="StructuredClassifier" eSuperTypes="#//Classifier"/>
<eClassifiers xsi:type="ecore:EClass" name="Extension" eSuperTypes="#//Association"/>
<eClassifiers xsi:type="ecore:EClass" name="Component" eSuperTypes="#//Class"/>
<eClassifiers xsi:type="ecore:EClass" name="MessageTrigger" eSuperTypes="#//Trigger"/>
<eClassifiers xsi:type="ecore:EClass" name="DeploymentSpecification" eSuperTypes="#//Artifact"/>
<eClassifiers xsi:type="ecore:EClass" name="Variable" eSuperTypes="#//ConnectableElement #//TypedElement #//MultiplicityElement"/>
<eClassifiers xsi:type="ecore:EClass" name="LinkEndData" eSuperTypes="#//Element">
<eStructuralFeatures xsi:type="ecore:EReference" name="value" eType="#//InputPin"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="end" lowerBound="1" eType="#//Property"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="qualifier" upperBound="-1"
eType="#//QualifierValue" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="QualifierValue" eSuperTypes="#//Element">
<eStructuralFeatures xsi:type="ecore:EReference" name="qualifier" lowerBound="1"
eType="#//Property"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Interval" eSuperTypes="#//ValueSpecification"/>
<eClassifiers xsi:type="ecore:EClass" name="Pin" eSuperTypes="#//ObjectNode #//MultiplicityElement"/>
<eClassifiers xsi:type="ecore:EClass" name="Node" eSuperTypes="#//Class #//DeploymentTarget"/>
<eClassifiers xsi:type="ecore:EClass" name="PartDecomposition" eSuperTypes="#//InteractionOccurrence"/>
<eClassifiers xsi:type="ecore:EClass" name="Model" eSuperTypes="#//Package"/>
<eClassifiers xsi:type="ecore:EClass" name="CombinedFragment" eSuperTypes="#//InteractionFragment"/>
<eClassifiers xsi:type="ecore:EClass" name="SignalTrigger" eSuperTypes="#//MessageTrigger"/>
<eClassifiers xsi:type="ecore:EClass" name="InteractionConstraint" eSuperTypes="#//Constraint"/>
<eClassifiers xsi:type="ecore:EClass" name="EnumerationLiteral" eSuperTypes="#//InstanceSpecification"/>
<eClassifiers xsi:type="ecore:EClass" name="DurationConstraint" eSuperTypes="#//IntervalConstraint"/>
<eClassifiers xsi:type="ecore:EClass" name="Usage" eSuperTypes="#//Dependency"/>
<eClassifiers xsi:type="ecore:EClass" name="Profile" eSuperTypes="#//Package"/>
<eClassifiers xsi:type="ecore:EClass" name="TemplateableClassifier" eSuperTypes="#//Classifier"/>
<eClassifiers xsi:type="ecore:EClass" name="PackageImport" eSuperTypes="#//DirectedRelationship">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="visibility" eType="#//VisibilityKind"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="OpaqueExpression" eSuperTypes="#//ValueSpecification">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="bodies" upperBound="-1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="language" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="behavior" eType="#//Behavior"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Gate" eSuperTypes="#//MessageEnd"/>
<eClassifiers xsi:type="ecore:EClass" name="Duration" eSuperTypes="#//ValueSpecification"/>
<eClassifiers xsi:type="ecore:EClass" name="ReclassifyObjectAction" eSuperTypes="#//Action"/>
<eClassifiers xsi:type="ecore:EClass" name="Substitution" eSuperTypes="#//Realization"/>
<eClassifiers xsi:type="ecore:EClass" name="CreateLinkAction" eSuperTypes="#//WriteLinkAction"/>
<eClassifiers xsi:type="ecore:EClass" name="Operation" eSuperTypes="#//BehavioralFeature #//TypedElement #//MultiplicityElement #//ParameterableElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isQuery" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="ownedParameter" upperBound="-1"
eType="#//Parameter" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="bodyCondition" eType="#//Constraint"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ClearStructuralFeatureAction" eSuperTypes="#//StructuralFeatureAction"/>
<eClassifiers xsi:type="ecore:EClass" name="LinkEndCreationData" eSuperTypes="#//LinkEndData"/>
<eClassifiers xsi:type="ecore:EClass" name="TestIdentityAction" eSuperTypes="#//Action">
<eStructuralFeatures xsi:type="ecore:EReference" name="first" lowerBound="1" eType="#//InputPin"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="second" lowerBound="1"
eType="#//InputPin" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ExecutionOccurrence" eSuperTypes="#//InteractionFragment"/>
<eClassifiers xsi:type="ecore:EClass" name="Realization" eSuperTypes="#//Abstraction"/>
<eClassifiers xsi:type="ecore:EClass" name="TemplateSignature" eSuperTypes="#//Element"/>
<eClassifiers xsi:type="ecore:EClass" name="TimeExpression" eSuperTypes="#//ValueSpecification"/>
<eClassifiers xsi:type="ecore:EClass" name="ExtensionPoint" eSuperTypes="#//RedefinableElement"/>
<eClassifiers xsi:type="ecore:EClass" name="LiteralUnlimitedNatural" eSuperTypes="#//LiteralSpecification"/>
<eClassifiers xsi:type="ecore:EClass" name="Collaboration" eSuperTypes="#//BehavioredClassifier #//StructuredClassifier"/>
<eClassifiers xsi:type="ecore:EClass" name="ProtocolStateMachine" eSuperTypes="#//StateMachine"/>
<eClassifiers xsi:type="ecore:EClass" name="ExpansionNode" eSuperTypes="#//ObjectNode"/>
<eClassifiers xsi:type="ecore:EClass" name="InformationFlow" eSuperTypes="#//PackageableElement #//DirectedRelationship"/>
<eClassifiers xsi:type="ecore:EClass" name="CallOperationAction" eSuperTypes="#//CallAction"/>
<eClassifiers xsi:type="ecore:EClass" name="ParameterableClassifier" eSuperTypes="#//Classifier"/>
<eClassifiers xsi:type="ecore:EClass" name="ApplyFunctionAction" eSuperTypes="#//Action"/>
<eClassifiers xsi:type="ecore:EClass" name="LiteralString" eSuperTypes="#//LiteralSpecification"/>
<eClassifiers xsi:type="ecore:EClass" name="Transition" eSuperTypes="#//RedefinableElement"/>
<eClassifiers xsi:type="ecore:EClass" name="Feature" eSuperTypes="#//RedefinableElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isStatic" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="featuringClassifier" upperBound="-1"
eType="#//Classifier"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="StructuredActivityNode" eSuperTypes="#//Action #//Namespace #//ActivityGroup"/>
<eClassifiers xsi:type="ecore:EClass" name="IntervalConstraint" eSuperTypes="#//Constraint"/>
<eClassifiers xsi:type="ecore:EClass" name="Signal" eSuperTypes="#//Classifier"/>
<eClassifiers xsi:type="ecore:EClass" name="ConnectionPointReference" eSuperTypes="#//Vertex"/>
<eClassifiers xsi:type="ecore:EClass" name="ValuePin" eSuperTypes="#//InputPin"/>
<eClassifiers xsi:type="ecore:EClass" name="DurationInterval" eSuperTypes="#//Interval"/>
<eClassifiers xsi:type="ecore:EClass" name="ReadLinkAction" eSuperTypes="#//LinkAction"/>
<eClassifiers xsi:type="ecore:EClass" name="ReadIsClassifiedObjectAction" eSuperTypes="#//Action"/>
<eClassifiers xsi:type="ecore:EClass" name="VariableAction" eSuperTypes="#//Action"/>
<eClassifiers xsi:type="ecore:EClass" name="RaiseExceptionAction" eSuperTypes="#//Action"/>
<eClassifiers xsi:type="ecore:EClass" name="InstanceValue" eSuperTypes="#//ValueSpecification"/>
<eClassifiers xsi:type="ecore:EClass" name="TimeTrigger" eSuperTypes="#//Trigger"/>
<eClassifiers xsi:type="ecore:EClass" name="Association" eSuperTypes="#//Classifier #//Relationship">
<eStructuralFeatures xsi:type="ecore:EReference" name="ownedEnd" upperBound="-1"
eType="#//Property" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="memberEnd" lowerBound="2"
upperBound="-1" eType="#//Property"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="FinalState" eSuperTypes="#//State"/>
<eClassifiers xsi:type="ecore:EClass" name="Stop" eSuperTypes="#//EventOccurrence"/>
<eClassifiers xsi:type="ecore:EClass" name="DeploymentTarget" eSuperTypes="#//NamedElement"/>
<eClassifiers xsi:type="ecore:EClass" name="AcceptCallAction" eSuperTypes="#//AcceptEventAction"/>
<eClassifiers xsi:type="ecore:EClass" name="LinkAction" eSuperTypes="#//Action"/>
<eClassifiers xsi:type="ecore:EClass" name="Behavior" eSuperTypes="#//Class">
<eStructuralFeatures xsi:type="ecore:EReference" name="specification" eType="#//BehavioralFeature"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="ownedParameterSet" upperBound="-1"
eType="#//ParameterSet" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="DirectedRelationship" eSuperTypes="#//Relationship"/>
<eClassifiers xsi:type="ecore:EClass" name="SendSignalAction" eSuperTypes="#//InvocationAction"/>
<eClassifiers xsi:type="ecore:EClass" name="Clause" eSuperTypes="#//Element"/>
<eClassifiers xsi:type="ecore:EClass" name="FinalNode" eSuperTypes="#//ControlNode"/>
<eClassifiers xsi:type="ecore:EClass" name="Dependency" eSuperTypes="#//PackageableElement #//DirectedRelationship"/>
<eClassifiers xsi:type="ecore:EClass" name="ControlNode" eSuperTypes="#//ActivityNode"/>
<eClassifiers xsi:type="ecore:EClass" name="Expression" eSuperTypes="#//OpaqueExpression"/>
<eClassifiers xsi:type="ecore:EClass" name="Action" eSuperTypes="#//ExecutableNode">
<eStructuralFeatures xsi:type="ecore:EReference" name="context_" eType="#//Classifier"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ReadLinkObjectEndQualifierAction" eSuperTypes="#//Action"/>
<eClassifiers xsi:type="ecore:EClass" name="JoinNode" eSuperTypes="#//ControlNode"/>
<eClassifiers xsi:type="ecore:EClass" name="Relationship" eSuperTypes="#//Element"/>
<eClassifiers xsi:type="ecore:EClass" name="Parameter" eSuperTypes="#//ConnectableElement #//TypedElement #//MultiplicityElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="direction" eType="#//ParameterDirectionKind"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Include" eSuperTypes="#//NamedElement #//DirectedRelationship"/>
<eClassifiers xsi:type="ecore:EClass" name="NamedElement" eSuperTypes="#//TemplateableElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="visibility" eType="#//VisibilityKind"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Activity" eSuperTypes="#//Behavior"/>
<eClassifiers xsi:type="ecore:EClass" name="ElementImport" eSuperTypes="#//DirectedRelationship">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="visibility" eType="#//VisibilityKind"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="importedElement" lowerBound="1"
eType="#//PackageableElement"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="TemplateBinding" eSuperTypes="#//DirectedRelationship"/>
<eClassifiers xsi:type="ecore:EClass" name="CallTrigger" eSuperTypes="#//MessageTrigger"/>
<eClassifiers xsi:type="ecore:EClass" name="InformationItem" eSuperTypes="#//Classifier"/>
<eClassifiers xsi:type="ecore:EClass" name="ExecutableNode" eSuperTypes="#//ActivityNode"/>
<eClassifiers xsi:type="ecore:EClass" name="Reception" eSuperTypes="#//BehavioralFeature"/>
<eClassifiers xsi:type="ecore:EClass" name="ConnectableElementTemplateParameter"
eSuperTypes="#//TemplateParameter"/>
<eClassifiers xsi:type="ecore:EClass" name="Interaction" eSuperTypes="#//Behavior #//InteractionFragment"/>
<eClassifiers xsi:type="ecore:EClass" name="GeneralizationSet" eSuperTypes="#//PackageableElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="generalization" upperBound="-1"
eType="#//Generalization"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="InteractionOccurrence" eSuperTypes="#//InteractionFragment"/>
<eClassifiers xsi:type="ecore:EClass" name="MultiplicityElement" eSuperTypes="#//Element">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isOrdered" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isUnique" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="lower" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="upper" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="MergeNode" eSuperTypes="#//ControlNode"/>
<eClassifiers xsi:type="ecore:EClass" name="WriteStructuralFeatureAction" eSuperTypes="#//StructuralFeatureAction">
<eStructuralFeatures xsi:type="ecore:EReference" name="value" lowerBound="1" eType="#//InputPin"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="TemplateParameterSubstitution" eSuperTypes="#//Element"/>
<eClassifiers xsi:type="ecore:EClass" name="ActivityParameterNode" eSuperTypes="#//ObjectNode"/>
<eClassifiers xsi:type="ecore:EClass" name="Type" eSuperTypes="#//PackageableElement"/>
<eClassifiers xsi:type="ecore:EClass" name="ActivityGroup" eSuperTypes="#//Element"/>
<eClassifiers xsi:type="ecore:EClass" name="Actor" eSuperTypes="#//Classifier"/>
<eClassifiers xsi:type="ecore:EClass" name="Constraint" eSuperTypes="#//PackageableElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="constrainedElement" upperBound="-1"
eType="#//Element"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="AnyTrigger" eSuperTypes="#//MessageTrigger"/>
<eClassifiers xsi:type="ecore:EClass" name="DataType" eSuperTypes="#//Classifier"/>
<eClassifiers xsi:type="ecore:EClass" name="Slot" eSuperTypes="#//Element">
<eStructuralFeatures xsi:type="ecore:EReference" name="definingFeature" lowerBound="1"
eType="#//StructuralFeature"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ReadLinkObjectEndAction" eSuperTypes="#//Action"/>
<eClassifiers xsi:type="ecore:EClass" name="DeployedArtifact" eSuperTypes="#//NamedElement"/>
<eClassifiers xsi:type="ecore:EClass" name="Device" eSuperTypes="#//Node"/>
<eClassifiers xsi:type="ecore:EClass" name="ChangeTrigger" eSuperTypes="#//Trigger"/>
<eClassifiers xsi:type="ecore:EClass" name="State" eSuperTypes="#//Namespace #//RedefinableElement #//Vertex"/>
<eClassifiers xsi:type="ecore:EClass" name="ParameterableElement" eSuperTypes="#//Element"/>
<eClassifiers xsi:type="ecore:EClass" name="Namespace" eSuperTypes="#//NamedElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="member" upperBound="-1"
eType="#//NamedElement"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="TemplateableElement" eSuperTypes="#//Element"/>
<eClassifiers xsi:type="ecore:EClass" name="InstanceSpecification" eSuperTypes="#//PackageableElement #//DeploymentTarget #//DeployedArtifact">
<eStructuralFeatures xsi:type="ecore:EReference" name="slot" upperBound="-1" eType="#//Slot"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="classifier" upperBound="-1"
eType="#//Classifier"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Enumeration" eSuperTypes="#//DataType"/>
<eClassifiers xsi:type="ecore:EClass" name="Stereotype" eSuperTypes="#//Class"/>
<eClassifiers xsi:type="ecore:EClass" name="PrimitiveType" eSuperTypes="#//DataType"/>
<eClassifiers xsi:type="ecore:EClass" name="ReadVariableAction" eSuperTypes="#//VariableAction"/>
<eClassifiers xsi:type="ecore:EClass" name="ConnectableElement" eSuperTypes="#//NamedElement #//ParameterableElement"/>
<eClassifiers xsi:type="ecore:EClass" name="Comment" eSuperTypes="#//TemplateableElement"/>
<eClassifiers xsi:type="ecore:EClass" name="ProfileApplication" eSuperTypes="#//PackageImport"/>
<eClassifiers xsi:type="ecore:EClass" name="DurationObservationAction" eSuperTypes="#//WriteStructuralFeatureAction"/>
<eClassifiers xsi:type="ecore:EClass" name="ReadStructuralFeatureAction" eSuperTypes="#//StructuralFeatureAction"/>
<eClassifiers xsi:type="ecore:EClass" name="ExecutionEnvironment" eSuperTypes="#//Node"/>
<eClassifiers xsi:type="ecore:EClass" name="Implementation" eSuperTypes="#//Realization"/>
<eClassifiers xsi:type="ecore:EClass" name="Classifier" eSuperTypes="#//Namespace #//Type #//RedefinableElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isAbstract" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="feature" upperBound="-1"
eType="#//Feature"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="inheritedMember" upperBound="-1"
eType="#//NamedElement"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="generalization" upperBound="-1"
eType="#//Generalization" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ClearAssociationAction" eSuperTypes="#//Action"/>
<eClassifiers xsi:type="ecore:EClass" name="ProtocolTransition" eSuperTypes="#//Transition"/>
<eClassifiers xsi:type="ecore:EClass" name="ControlFlow" eSuperTypes="#//ActivityEdge"/>
<eClassifiers xsi:type="ecore:EClass" name="Region" eSuperTypes="#//Namespace #//RedefinableElement"/>
<eClassifiers xsi:type="ecore:EClass" name="DestroyObjectAction" eSuperTypes="#//Action">
<eStructuralFeatures xsi:type="ecore:EReference" name="target" lowerBound="1"
eType="#//InputPin" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="LiteralSpecification" eSuperTypes="#//ValueSpecification"/>
<eClassifiers xsi:type="ecore:EClass" name="StateMachine" eSuperTypes="#//Behavior"/>
<eClassifiers xsi:type="ecore:EClass" name="UseCase" eSuperTypes="#//BehavioredClassifier"/>
<eClassifiers xsi:type="ecore:EClass" name="Trigger" eSuperTypes="#//NamedElement"/>
<eClassifiers xsi:type="ecore:EClass" name="ExceptionHandler" eSuperTypes="#//Element"/>
<eClassifiers xsi:type="ecore:EClass" name="RedefinableElement" eSuperTypes="#//NamedElement"/>
<eClassifiers xsi:type="ecore:EClass" name="InitialNode" eSuperTypes="#//ControlNode"/>
<eClassifiers xsi:type="ecore:EClass" name="Permission" eSuperTypes="#//Dependency"/>
<eClassifiers xsi:type="ecore:EClass" name="InterruptibleActivityRegion" eSuperTypes="#//ActivityGroup"/>
<eClassifiers xsi:type="ecore:EClass" name="ActivityPartition" eSuperTypes="#//NamedElement #//ActivityGroup"/>
<eClassifiers xsi:type="ecore:EClass" name="AssociationClass" eSuperTypes="#//Class #//Association"/>
<eClassifiers xsi:type="ecore:EClass" name="ActivityFinalNode" eSuperTypes="#//FinalNode"/>
<eClassifiers xsi:type="ecore:EClass" name="ConnectorEnd" eSuperTypes="#//MultiplicityElement"/>
<eClassifiers xsi:type="ecore:EClass" name="Pseudostate" eSuperTypes="#//Vertex"/>
<eClassifiers xsi:type="ecore:EClass" name="ObjectNode" eSuperTypes="#//ActivityNode #//TypedElement"/>
</ecore:EPackage>
| github:ecore:/data/sunwuliang/SlicingProject2.0/ClassModelSlicing/slices/SlicedUML2InsDataSet1.ecore | ecore | UML2
AggregationKind
composite
composite
none
none
shared
shared
VisibilityKind
package
package
private
private
protected
protected
public
public
ParameterDirectionKind
in
in
inout
inout
out
out
return
return
ProtocolConformance
ActivityNode
Vertex
CreateObjectAction
classifier
result
LiteralNull
DataStoreNode
ActivityEdge
ConditionalNode
Element
owner
StructuralFeatureAction
structuralFeature
TimeConstraint
Abstraction
CentralBufferNode
ObjectFlow
ParameterSet
TemplateParameter
PackageMerge
Deployment
RedefinableTemplateSignature
Message
ForkNode
ClassifierTemplateParameter
Port
InvocationAction
FlowFinalNode
StructuralFeature
isReadOnly
CollaborationOccurrence
Interface
LiteralInteger
LoopNode
Lifeline
SendObjectAction
BehavioralFeature
TimeInterval
RemoveStructuralFeatureValueAction
OperationTemplateParameter
Connector
StateInvariant
AddVariableValueAction
CallBehaviorAction
ExtensionEnd
BroadcastSignalAction
CommunicationPath
WriteLinkAction
Extend
AcceptEventAction
CreateLinkObjectAction
LiteralBoolean
DestroyLinkAction
StartOwnedBehaviorAction
Continuation
ReplyAction
ValueSpecification
InteractionOperand
Package
MessageEnd
PrimitiveFunction
CallAction
Manifestation
BehavioredClassifier
ownedBehavior
classifierBehavior
WriteVariableAction
ReadExtentAction
Property
isComposite
isDerived
isDerivedUnion
aggregation
subsettedProperty
association
qualifier
ReadSelfAction
result
EventOccurrence
TimeObservationAction
InteractionFragment
StringExpression
PackageableElement
TypedElement
type
OutputPin
GeneralOrdering
DecisionNode
InputPin
AddStructuralFeatureValueAction
Generalization
general
ClearVariableAction
Class
isActive
nestedClassifier
ownedReception
Artifact
EncapsulatedClassifier
RemoveVariableValueAction
ExpansionRegion
StructuredClassifier
Extension
Component
MessageTrigger
DeploymentSpecification
Variable
LinkEndData
value
end
qualifier
QualifierValue
qualifier
Interval
Pin
Node
PartDecomposition
Model
CombinedFragment
SignalTrigger
InteractionConstraint
EnumerationLiteral
DurationConstraint
Usage
Profile
TemplateableClassifier
PackageImport
visibility
OpaqueExpression
bodies
language
behavior
Gate
Duration
ReclassifyObjectAction
Substitution
CreateLinkAction
Operation
isQuery
ownedParameter
bodyCondition
ClearStructuralFeatureAction
LinkEndCreationData
TestIdentityAction
first
second
ExecutionOccurrence
Realization
TemplateSignature
TimeExpression
ExtensionPoint
LiteralUnlimitedNatural
Collaboration
ProtocolStateMachine
ExpansionNode
InformationFlow
CallOperationAction
ParameterableClassifier
ApplyFunctionAction
LiteralString
Transition
Feature
isStatic
featuringClassifier
StructuredActivityNode
IntervalConstraint
Signal
ConnectionPointReference
ValuePin
DurationInterval
ReadLinkAction
ReadIsClassifiedObjectAction
VariableAction
RaiseExceptionAction
InstanceValue
TimeTrigger
Association
ownedEnd
memberEnd
FinalState
Stop
DeploymentTarget
AcceptCallAction
LinkAction
Behavior
specification
ownedParameterSet
DirectedRelationship
SendSignalAction
Clause
FinalNode
Dependency
ControlNode
Expression
Action
context_
ReadLinkObjectEndQualifierAction
JoinNode
Relationship
Parameter
direction
Include
NamedElement
name
visibility
Activity
ElementImport
visibility
importedElement
TemplateBinding
CallTrigger
InformationItem
ExecutableNode
Reception
ConnectableElementTemplateParameter
Interaction
GeneralizationSet
generalization
InteractionOccurrence
MultiplicityElement
isOrdered
isUnique
lower
upper
MergeNode
WriteStructuralFeatureAction
value
TemplateParameterSubstitution
ActivityParameterNode
Type
ActivityGroup
Actor
Constraint
constrainedElement
AnyTrigger
DataType
Slot
definingFeature
ReadLinkObjectEndAction
DeployedArtifact
Device
ChangeTrigger
State
ParameterableElement
Namespace
member
TemplateableElement
InstanceSpecification
slot
classifier
Enumeration
Stereotype
PrimitiveType
ReadVariableAction
ConnectableElement
Comment
ProfileApplication
DurationObservationAction
ReadStructuralFeatureAction
ExecutionEnvironment
Implementation
Classifier
isAbstract
feature
inheritedMember
generalization
ClearAssociationAction
ProtocolTransition
ControlFlow
Region
DestroyObjectAction
target
LiteralSpecification
StateMachine
UseCase
Trigger
ExceptionHandler
RedefinableElement
InitialNode
Permission
InterruptibleActivityRegion
ActivityPartition
AssociationClass
ActivityFinalNode
ConnectorEnd
Pseudostate
ObjectNode | null | {"directed":true,"nodes":[{"nsPrefix":"UML2","nsURI":"http:///UML2.ecore","name":"UML2","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"instanceClassName":null,"name":"AggregationKind","instanceClass":null,"id":1,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"VisibilityKind","instanceClass":null,"id":2,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"ParameterDirectionKind","instanceClass":null,"id":3,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ProtocolConformance","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ActivityNode","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Vertex","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CreateObjectAction","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LiteralNull","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DataStoreNode","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ActivityEdge","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ConditionalNode","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Element","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StructuralFeatureAction","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TimeConstraint","instanceClass":null,"abstract":false,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Abstraction","instanceClass":null,"abstract":false,"id":15,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CentralBufferNode","instanceClass":null,"abstract":false,"id":16,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ObjectFlow","instanceClass":null,"abstract":false,"id":17,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ParameterSet","instanceClass":null,"abstract":false,"id":18,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TemplateParameter","instanceClass":null,"abstract":false,"id":19,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PackageMerge","instanceClass":null,"abstract":false,"id":20,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Deployment","instanceClass":null,"abstract":false,"id":21,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RedefinableTemplateSignature","instanceClass":null,"abstract":false,"id":22,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Message","instanceClass":null,"abstract":false,"id":23,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ForkNode","instanceClass":null,"abstract":false,"id":24,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ClassifierTemplateParameter","instanceClass":null,"abstract":false,"id":25,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Port","instanceClass":null,"abstract":false,"id":26,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InvocationAction","instanceClass":null,"abstract":false,"id":27,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FlowFinalNode","instanceClass":null,"abstract":false,"id":28,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StructuralFeature","instanceClass":null,"abstract":false,"id":29,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CollaborationOccurrence","instanceClass":null,"abstract":false,"id":30,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Interface","instanceClass":null,"abstract":false,"id":31,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LiteralInteger","instanceClass":null,"abstract":false,"id":32,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LoopNode","instanceClass":null,"abstract":false,"id":33,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Lifeline","instanceClass":null,"abstract":false,"id":34,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SendObjectAction","instanceClass":null,"abstract":false,"id":35,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BehavioralFeature","instanceClass":null,"abstract":false,"id":36,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TimeInterval","instanceClass":null,"abstract":false,"id":37,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RemoveStructuralFeatureValueAction","instanceClass":null,"abstract":false,"id":38,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OperationTemplateParameter","instanceClass":null,"abstract":false,"id":39,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Connector","instanceClass":null,"abstract":false,"id":40,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StateInvariant","instanceClass":null,"abstract":false,"id":41,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AddVariableValueAction","instanceClass":null,"abstract":false,"id":42,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CallBehaviorAction","instanceClass":null,"abstract":false,"id":43,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExtensionEnd","instanceClass":null,"abstract":false,"id":44,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BroadcastSignalAction","instanceClass":null,"abstract":false,"id":45,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CommunicationPath","instanceClass":null,"abstract":false,"id":46,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"WriteLinkAction","instanceClass":null,"abstract":false,"id":47,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Extend","instanceClass":null,"abstract":false,"id":48,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AcceptEventAction","instanceClass":null,"abstract":false,"id":49,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CreateLinkObjectAction","instanceClass":null,"abstract":false,"id":50,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LiteralBoolean","instanceClass":null,"abstract":false,"id":51,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DestroyLinkAction","instanceClass":null,"abstract":false,"id":52,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StartOwnedBehaviorAction","instanceClass":null,"abstract":false,"id":53,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Continuation","instanceClass":null,"abstract":false,"id":54,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ReplyAction","instanceClass":null,"abstract":false,"id":55,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ValueSpecification","instanceClass":null,"abstract":false,"id":56,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InteractionOperand","instanceClass":null,"abstract":false,"id":57,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Package","instanceClass":null,"abstract":false,"id":58,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MessageEnd","instanceClass":null,"abstract":false,"id":59,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PrimitiveFunction","instanceClass":null,"abstract":false,"id":60,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CallAction","instanceClass":null,"abstract":false,"id":61,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Manifestation","instanceClass":null,"abstract":false,"id":62,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BehavioredClassifier","instanceClass":null,"abstract":false,"id":63,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"WriteVariableAction","instanceClass":null,"abstract":false,"id":64,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ReadExtentAction","instanceClass":null,"abstract":false,"id":65,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Property","instanceClass":null,"abstract":false,"id":66,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ReadSelfAction","instanceClass":null,"abstract":false,"id":67,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EventOccurrence","instanceClass":null,"abstract":false,"id":68,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TimeObservationAction","instanceClass":null,"abstract":false,"id":69,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InteractionFragment","instanceClass":null,"abstract":false,"id":70,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StringExpression","instanceClass":null,"abstract":false,"id":71,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PackageableElement","instanceClass":null,"abstract":false,"id":72,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TypedElement","instanceClass":null,"abstract":false,"id":73,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OutputPin","instanceClass":null,"abstract":false,"id":74,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"GeneralOrdering","instanceClass":null,"abstract":false,"id":75,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DecisionNode","instanceClass":null,"abstract":false,"id":76,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InputPin","instanceClass":null,"abstract":false,"id":77,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AddStructuralFeatureValueAction","instanceClass":null,"abstract":false,"id":78,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Generalization","instanceClass":null,"abstract":false,"id":79,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ClearVariableAction","instanceClass":null,"abstract":false,"id":80,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Class","instanceClass":null,"abstract":false,"id":81,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Artifact","instanceClass":null,"abstract":false,"id":82,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EncapsulatedClassifier","instanceClass":null,"abstract":false,"id":83,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RemoveVariableValueAction","instanceClass":null,"abstract":false,"id":84,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExpansionRegion","instanceClass":null,"abstract":false,"id":85,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StructuredClassifier","instanceClass":null,"abstract":false,"id":86,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Extension","instanceClass":null,"abstract":false,"id":87,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Component","instanceClass":null,"abstract":false,"id":88,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MessageTrigger","instanceClass":null,"abstract":false,"id":89,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DeploymentSpecification","instanceClass":null,"abstract":false,"id":90,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Variable","instanceClass":null,"abstract":false,"id":91,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LinkEndData","instanceClass":null,"abstract":false,"id":92,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"QualifierValue","instanceClass":null,"abstract":false,"id":93,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Interval","instanceClass":null,"abstract":false,"id":94,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Pin","instanceClass":null,"abstract":false,"id":95,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Node","instanceClass":null,"abstract":false,"id":96,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PartDecomposition","instanceClass":null,"abstract":false,"id":97,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Model","instanceClass":null,"abstract":false,"id":98,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CombinedFragment","instanceClass":null,"abstract":false,"id":99,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SignalTrigger","instanceClass":null,"abstract":false,"id":100,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InteractionConstraint","instanceClass":null,"abstract":false,"id":101,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EnumerationLiteral","instanceClass":null,"abstract":false,"id":102,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DurationConstraint","instanceClass":null,"abstract":false,"id":103,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Usage","instanceClass":null,"abstract":false,"id":104,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Profile","instanceClass":null,"abstract":false,"id":105,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TemplateableClassifier","instanceClass":null,"abstract":false,"id":106,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PackageImport","instanceClass":null,"abstract":false,"id":107,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OpaqueExpression","instanceClass":null,"abstract":false,"id":108,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Gate","instanceClass":null,"abstract":false,"id":109,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Duration","instanceClass":null,"abstract":false,"id":110,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ReclassifyObjectAction","instanceClass":null,"abstract":false,"id":111,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Substitution","instanceClass":null,"abstract":false,"id":112,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CreateLinkAction","instanceClass":null,"abstract":false,"id":113,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Operation","instanceClass":null,"abstract":false,"id":114,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ClearStructuralFeatureAction","instanceClass":null,"abstract":false,"id":115,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LinkEndCreationData","instanceClass":null,"abstract":false,"id":116,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TestIdentityAction","instanceClass":null,"abstract":false,"id":117,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExecutionOccurrence","instanceClass":null,"abstract":false,"id":118,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Realization","instanceClass":null,"abstract":false,"id":119,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TemplateSignature","instanceClass":null,"abstract":false,"id":120,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TimeExpression","instanceClass":null,"abstract":false,"id":121,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExtensionPoint","instanceClass":null,"abstract":false,"id":122,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LiteralUnlimitedNatural","instanceClass":null,"abstract":false,"id":123,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Collaboration","instanceClass":null,"abstract":false,"id":124,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ProtocolStateMachine","instanceClass":null,"abstract":false,"id":125,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExpansionNode","instanceClass":null,"abstract":false,"id":126,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InformationFlow","instanceClass":null,"abstract":false,"id":127,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CallOperationAction","instanceClass":null,"abstract":false,"id":128,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ParameterableClassifier","instanceClass":null,"abstract":false,"id":129,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ApplyFunctionAction","instanceClass":null,"abstract":false,"id":130,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LiteralString","instanceClass":null,"abstract":false,"id":131,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Transition","instanceClass":null,"abstract":false,"id":132,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Feature","instanceClass":null,"abstract":false,"id":133,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StructuredActivityNode","instanceClass":null,"abstract":false,"id":134,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IntervalConstraint","instanceClass":null,"abstract":false,"id":135,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Signal","instanceClass":null,"abstract":false,"id":136,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ConnectionPointReference","instanceClass":null,"abstract":false,"id":137,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ValuePin","instanceClass":null,"abstract":false,"id":138,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DurationInterval","instanceClass":null,"abstract":false,"id":139,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ReadLinkAction","instanceClass":null,"abstract":false,"id":140,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ReadIsClassifiedObjectAction","instanceClass":null,"abstract":false,"id":141,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"VariableAction","instanceClass":null,"abstract":false,"id":142,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RaiseExceptionAction","instanceClass":null,"abstract":false,"id":143,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InstanceValue","instanceClass":null,"abstract":false,"id":144,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TimeTrigger","instanceClass":null,"abstract":false,"id":145,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Association","instanceClass":null,"abstract":false,"id":146,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FinalState","instanceClass":null,"abstract":false,"id":147,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Stop","instanceClass":null,"abstract":false,"id":148,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DeploymentTarget","instanceClass":null,"abstract":false,"id":149,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AcceptCallAction","instanceClass":null,"abstract":false,"id":150,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LinkAction","instanceClass":null,"abstract":false,"id":151,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Behavior","instanceClass":null,"abstract":false,"id":152,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DirectedRelationship","instanceClass":null,"abstract":false,"id":153,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SendSignalAction","instanceClass":null,"abstract":false,"id":154,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Clause","instanceClass":null,"abstract":false,"id":155,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FinalNode","instanceClass":null,"abstract":false,"id":156,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Dependency","instanceClass":null,"abstract":false,"id":157,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ControlNode","instanceClass":null,"abstract":false,"id":158,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Expression","instanceClass":null,"abstract":false,"id":159,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Action","instanceClass":null,"abstract":false,"id":160,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ReadLinkObjectEndQualifierAction","instanceClass":null,"abstract":false,"id":161,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"JoinNode","instanceClass":null,"abstract":false,"id":162,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Relationship","instanceClass":null,"abstract":false,"id":163,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Parameter","instanceClass":null,"abstract":false,"id":164,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Include","instanceClass":null,"abstract":false,"id":165,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NamedElement","instanceClass":null,"abstract":false,"id":166,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Activity","instanceClass":null,"abstract":false,"id":167,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ElementImport","instanceClass":null,"abstract":false,"id":168,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TemplateBinding","instanceClass":null,"abstract":false,"id":169,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CallTrigger","instanceClass":null,"abstract":false,"id":170,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InformationItem","instanceClass":null,"abstract":false,"id":171,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExecutableNode","instanceClass":null,"abstract":false,"id":172,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Reception","instanceClass":null,"abstract":false,"id":173,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ConnectableElementTemplateParameter","instanceClass":null,"abstract":false,"id":174,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Interaction","instanceClass":null,"abstract":false,"id":175,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"GeneralizationSet","instanceClass":null,"abstract":false,"id":176,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InteractionOccurrence","instanceClass":null,"abstract":false,"id":177,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MultiplicityElement","instanceClass":null,"abstract":false,"id":178,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MergeNode","instanceClass":null,"abstract":false,"id":179,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"WriteStructuralFeatureAction","instanceClass":null,"abstract":false,"id":180,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TemplateParameterSubstitution","instanceClass":null,"abstract":false,"id":181,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ActivityParameterNode","instanceClass":null,"abstract":false,"id":182,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Type","instanceClass":null,"abstract":false,"id":183,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ActivityGroup","instanceClass":null,"abstract":false,"id":184,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Actor","instanceClass":null,"abstract":false,"id":185,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Constraint","instanceClass":null,"abstract":false,"id":186,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AnyTrigger","instanceClass":null,"abstract":false,"id":187,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DataType","instanceClass":null,"abstract":false,"id":188,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Slot","instanceClass":null,"abstract":false,"id":189,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ReadLinkObjectEndAction","instanceClass":null,"abstract":false,"id":190,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DeployedArtifact","instanceClass":null,"abstract":false,"id":191,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Device","instanceClass":null,"abstract":false,"id":192,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ChangeTrigger","instanceClass":null,"abstract":false,"id":193,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"State","instanceClass":null,"abstract":false,"id":194,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ParameterableElement","instanceClass":null,"abstract":false,"id":195,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Namespace","instanceClass":null,"abstract":false,"id":196,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TemplateableElement","instanceClass":null,"abstract":false,"id":197,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InstanceSpecification","instanceClass":null,"abstract":false,"id":198,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Enumeration","instanceClass":null,"abstract":false,"id":199,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Stereotype","instanceClass":null,"abstract":false,"id":200,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PrimitiveType","instanceClass":null,"abstract":false,"id":201,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ReadVariableAction","instanceClass":null,"abstract":false,"id":202,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ConnectableElement","instanceClass":null,"abstract":false,"id":203,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Comment","instanceClass":null,"abstract":false,"id":204,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ProfileApplication","instanceClass":null,"abstract":false,"id":205,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DurationObservationAction","instanceClass":null,"abstract":false,"id":206,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ReadStructuralFeatureAction","instanceClass":null,"abstract":false,"id":207,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExecutionEnvironment","instanceClass":null,"abstract":false,"id":208,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Implementation","instanceClass":null,"abstract":false,"id":209,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Classifier","instanceClass":null,"abstract":false,"id":210,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ClearAssociationAction","instanceClass":null,"abstract":false,"id":211,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ProtocolTransition","instanceClass":null,"abstract":false,"id":212,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ControlFlow","instanceClass":null,"abstract":false,"id":213,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Region","instanceClass":null,"abstract":false,"id":214,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DestroyObjectAction","instanceClass":null,"abstract":false,"id":215,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LiteralSpecification","instanceClass":null,"abstract":false,"id":216,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StateMachine","instanceClass":null,"abstract":false,"id":217,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"UseCase","instanceClass":null,"abstract":false,"id":218,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Trigger","instanceClass":null,"abstract":false,"id":219,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExceptionHandler","instanceClass":null,"abstract":false,"id":220,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RedefinableElement","instanceClass":null,"abstract":false,"id":221,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InitialNode","instanceClass":null,"abstract":false,"id":222,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Permission","instanceClass":null,"abstract":false,"id":223,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InterruptibleActivityRegion","instanceClass":null,"abstract":false,"id":224,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ActivityPartition","instanceClass":null,"abstract":false,"id":225,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AssociationClass","instanceClass":null,"abstract":false,"id":226,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ActivityFinalNode","instanceClass":null,"abstract":false,"id":227,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ConnectorEnd","instanceClass":null,"abstract":false,"id":228,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Pseudostate","instanceClass":null,"abstract":false,"id":229,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ObjectNode","instanceClass":null,"abstract":false,"id":230,"interface":false,"eClass":"EClass"},{"name":"composite","id":231,"value":1,"literal":"composite","eClass":"EEnumLiteral"},{"name":"none","id":232,"value":2,"literal":"none","eClass":"EEnumLiteral"},{"name":"shared","id":233,"value":3,"literal":"shared","eClass":"EEnumLiteral"},{"name":"package","id":234,"value":1,"literal":"package","eClass":"EEnumLiteral"},{"name":"private","id":235,"value":2,"literal":"private","eClass":"EEnumLiteral"},{"name":"protected","id":236,"value":3,"literal":"protected","eClass":"EEnumLiteral"},{"name":"public","id":237,"value":4,"literal":"public","eClass":"EEnumLiteral"},{"name":"in","id":238,"value":1,"literal":"in","eClass":"EEnumLiteral"},{"name":"inout","id":239,"value":2,"literal":"inout","eClass":"EEnumLiteral"},{"name":"out","id":240,"value":3,"literal":"out","eClass":"EEnumLiteral"},{"name":"return","id":241,"value":4,"literal":"return","eClass":"EEnumLiteral"},{"id":242,"eClass":"EGenericType"},{"id":243,"eClass":"EGenericType"},{"id":244,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"classifier","changeable":true,"resolveProxies":true,"lowerBound":1,"id":245,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"result","changeable":true,"resolveProxies":true,"lowerBound":1,"id":246,"derived":false},{"id":247,"eClass":"EGenericType"},{"id":248,"eClass":"EGenericType"},{"id":249,"eClass":"EGenericType"},{"id":250,"eClass":"EGenericType"},{"id":251,"eClass":"EGenericType"},{"id":252,"eClass":"EGenericType"},{"id":253,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"owner","changeable":true,"resolveProxies":true,"lowerBound":0,"id":254,"derived":false},{"id":255,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"structuralFeature","changeable":true,"resolveProxies":true,"lowerBound":1,"id":256,"derived":false},{"id":257,"eClass":"EGenericType"},{"id":258,"eClass":"EGenericType"},{"id":259,"eClass":"EGenericType"},{"id":260,"eClass":"EGenericType"},{"id":261,"eClass":"EGenericType"},{"id":262,"eClass":"EGenericType"},{"id":263,"eClass":"EGenericType"},{"id":264,"eClass":"EGenericType"},{"id":265,"eClass":"EGenericType"},{"id":266,"eClass":"EGenericType"},{"id":267,"eClass":"EGenericType"},{"id":268,"eClass":"EGenericType"},{"id":269,"eClass":"EGenericType"},{"id":270,"eClass":"EGenericType"},{"id":271,"eClass":"EGenericType"},{"id":272,"eClass":"EGenericType"},{"id":273,"eClass":"EGenericType"},{"id":274,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isReadOnly","changeable":true,"lowerBound":0,"iD":false,"id":275,"derived":false},{"id":276,"eClass":"EGenericType"},{"id":277,"eClass":"EGenericType"},{"id":278,"eClass":"EGenericType"},{"id":279,"eClass":"EGenericType"},{"id":280,"eClass":"EGenericType"},{"id":281,"eClass":"EGenericType"},{"id":282,"eClass":"EGenericType"},{"id":283,"eClass":"EGenericType"},{"id":284,"eClass":"EGenericType"},{"id":285,"eClass":"EGenericType"},{"id":286,"eClass":"EGenericType"},{"id":287,"eClass":"EGenericType"},{"id":288,"eClass":"EGenericType"},{"id":289,"eClass":"EGenericType"},{"id":290,"eClass":"EGenericType"},{"id":291,"eClass":"EGenericType"},{"id":292,"eClass":"EGenericType"},{"id":293,"eClass":"EGenericType"},{"id":294,"eClass":"EGenericType"},{"id":295,"eClass":"EGenericType"},{"id":296,"eClass":"EGenericType"},{"id":297,"eClass":"EGenericType"},{"id":298,"eClass":"EGenericType"},{"id":299,"eClass":"EGenericType"},{"id":300,"eClass":"EGenericType"},{"id":301,"eClass":"EGenericType"},{"id":302,"eClass":"EGenericType"},{"id":303,"eClass":"EGenericType"},{"id":304,"eClass":"EGenericType"},{"id":305,"eClass":"EGenericType"},{"id":306,"eClass":"EGenericType"},{"id":307,"eClass":"EGenericType"},{"id":308,"eClass":"EGenericType"},{"id":309,"eClass":"EGenericType"},{"id":310,"eClass":"EGenericType"},{"id":311,"eClass":"EGenericType"},{"id":312,"eClass":"EGenericType"},{"id":313,"eClass":"EGenericType"},{"id":314,"eClass":"EGenericType"},{"id":315,"eClass":"EGenericType"},{"id":316,"eClass":"EGenericType"},{"id":317,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"ownedBehavior","changeable":true,"resolveProxies":true,"lowerBound":0,"id":318,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"classifierBehavior","changeable":true,"resolveProxies":true,"lowerBound":0,"id":319,"derived":false},{"id":320,"eClass":"EGenericType"},{"id":321,"eClass":"EGenericType"},{"id":322,"eClass":"EGenericType"},{"id":323,"eClass":"EGenericType"},{"id":324,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isComposite","changeable":true,"lowerBound":0,"iD":false,"id":325,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isDerived","changeable":true,"lowerBound":0,"iD":false,"id":326,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isDerivedUnion","changeable":true,"lowerBound":0,"iD":false,"id":327,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"aggregation","changeable":true,"lowerBound":0,"iD":false,"id":328,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"subsettedProperty","changeable":true,"resolveProxies":true,"lowerBound":0,"id":329,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"association","changeable":true,"resolveProxies":true,"lowerBound":0,"id":330,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"qualifier","changeable":true,"resolveProxies":true,"lowerBound":0,"id":331,"derived":false},{"id":332,"eClass":"EGenericType"},{"id":333,"eClass":"EGenericType"},{"id":334,"eClass":"EGenericType"},{"id":335,"eClass":"EGenericType"},{"id":336,"eClass":"EGenericType"},{"id":337,"eClass":"EGenericType"},{"id":338,"eClass":"EGenericType"},{"id":339,"eClass":"EGenericType"},{"id":340,"eClass":"EGenericType"},{"id":341,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"result","changeable":true,"resolveProxies":true,"lowerBound":1,"id":342,"derived":false},{"id":343,"eClass":"EGenericType"},{"id":344,"eClass":"EGenericType"},{"id":345,"eClass":"EGenericType"},{"id":346,"eClass":"EGenericType"},{"id":347,"eClass":"EGenericType"},{"id":348,"eClass":"EGenericType"},{"id":349,"eClass":"EGenericType"},{"id":350,"eClass":"EGenericType"},{"id":351,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"resolveProxies":true,"lowerBound":0,"id":352,"derived":false},{"id":353,"eClass":"EGenericType"},{"id":354,"eClass":"EGenericType"},{"id":355,"eClass":"EGenericType"},{"id":356,"eClass":"EGenericType"},{"id":357,"eClass":"EGenericType"},{"id":358,"eClass":"EGenericType"},{"id":359,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"general","changeable":true,"resolveProxies":true,"lowerBound":1,"id":360,"derived":false},{"id":361,"eClass":"EGenericType"},{"id":362,"eClass":"EGenericType"},{"id":363,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isActive","changeable":true,"lowerBound":0,"iD":false,"id":364,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"nestedClassifier","changeable":true,"resolveProxies":true,"lowerBound":0,"id":365,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"ownedReception","changeable":true,"resolveProxies":true,"lowerBound":0,"id":366,"derived":false},{"id":367,"eClass":"EGenericType"},{"id":368,"eClass":"EGenericType"},{"id":369,"eClass":"EGenericType"},{"id":370,"eClass":"EGenericType"},{"id":371,"eClass":"EGenericType"},{"id":372,"eClass":"EGenericType"},{"id":373,"eClass":"EGenericType"},{"id":374,"eClass":"EGenericType"},{"id":375,"eClass":"EGenericType"},{"id":376,"eClass":"EGenericType"},{"id":377,"eClass":"EGenericType"},{"id":378,"eClass":"EGenericType"},{"id":379,"eClass":"EGenericType"},{"id":380,"eClass":"EGenericType"},{"id":381,"eClass":"EGenericType"},{"id":382,"eClass":"EGenericType"},{"id":383,"eClass":"EGenericType"},{"id":384,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"resolveProxies":true,"lowerBound":0,"id":385,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"end","changeable":true,"resolveProxies":true,"lowerBound":1,"id":386,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"qualifier","changeable":true,"resolveProxies":true,"lowerBound":0,"id":387,"derived":false},{"id":388,"eClass":"EGenericType"},{"id":389,"eClass":"EGenericType"},{"id":390,"eClass":"EGenericType"},{"id":391,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"qualifier","changeable":true,"resolveProxies":true,"lowerBound":1,"id":392,"derived":false},{"id":393,"eClass":"EGenericType"},{"id":394,"eClass":"EGenericType"},{"id":395,"eClass":"EGenericType"},{"id":396,"eClass":"EGenericType"},{"id":397,"eClass":"EGenericType"},{"id":398,"eClass":"EGenericType"},{"id":399,"eClass":"EGenericType"},{"id":400,"eClass":"EGenericType"},{"id":401,"eClass":"EGenericType"},{"id":402,"eClass":"EGenericType"},{"id":403,"eClass":"EGenericType"},{"id":404,"eClass":"EGenericType"},{"id":405,"eClass":"EGenericType"},{"id":406,"eClass":"EGenericType"},{"id":407,"eClass":"EGenericType"},{"id":408,"eClass":"EGenericType"},{"id":409,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"visibility","changeable":true,"lowerBound":0,"iD":false,"id":410,"derived":false},{"id":411,"eClass":"EGenericType"},{"id":412,"eClass":"EGenericType"},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"bodies","changeable":true,"lowerBound":0,"iD":false,"id":413,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"language","changeable":true,"lowerBound":0,"iD":false,"id":414,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"behavior","changeable":true,"resolveProxies":true,"lowerBound":0,"id":415,"derived":false},{"id":416,"eClass":"EGenericType"},{"id":417,"eClass":"EGenericType"},{"id":418,"eClass":"EGenericType"},{"id":419,"eClass":"EGenericType"},{"id":420,"eClass":"EGenericType"},{"id":421,"eClass":"EGenericType"},{"id":422,"eClass":"EGenericType"},{"id":423,"eClass":"EGenericType"},{"id":424,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isQuery","changeable":true,"lowerBound":0,"iD":false,"id":425,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"ownedParameter","changeable":true,"resolveProxies":true,"lowerBound":0,"id":426,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"bodyCondition","changeable":true,"resolveProxies":true,"lowerBound":0,"id":427,"derived":false},{"id":428,"eClass":"EGenericType"},{"id":429,"eClass":"EGenericType"},{"id":430,"eClass":"EGenericType"},{"id":431,"eClass":"EGenericType"},{"id":432,"eClass":"EGenericType"},{"id":433,"eClass":"EGenericType"},{"id":434,"eClass":"EGenericType"},{"id":435,"eClass":"EGenericType"},{"id":436,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"first","changeable":true,"resolveProxies":true,"lowerBound":1,"id":437,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"second","changeable":true,"resolveProxies":true,"lowerBound":1,"id":438,"derived":false},{"id":439,"eClass":"EGenericType"},{"id":440,"eClass":"EGenericType"},{"id":441,"eClass":"EGenericType"},{"id":442,"eClass":"EGenericType"},{"id":443,"eClass":"EGenericType"},{"id":444,"eClass":"EGenericType"},{"id":445,"eClass":"EGenericType"},{"id":446,"eClass":"EGenericType"},{"id":447,"eClass":"EGenericType"},{"id":448,"eClass":"EGenericType"},{"id":449,"eClass":"EGenericType"},{"id":450,"eClass":"EGenericType"},{"id":451,"eClass":"EGenericType"},{"id":452,"eClass":"EGenericType"},{"id":453,"eClass":"EGenericType"},{"id":454,"eClass":"EGenericType"},{"id":455,"eClass":"EGenericType"},{"id":456,"eClass":"EGenericType"},{"id":457,"eClass":"EGenericType"},{"id":458,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isStatic","changeable":true,"lowerBound":0,"iD":false,"id":459,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"featuringClassifier","changeable":true,"resolveProxies":true,"lowerBound":0,"id":460,"derived":false},{"id":461,"eClass":"EGenericType"},{"id":462,"eClass":"EGenericType"},{"id":463,"eClass":"EGenericType"},{"id":464,"eClass":"EGenericType"},{"id":465,"eClass":"EGenericType"},{"id":466,"eClass":"EGenericType"},{"id":467,"eClass":"EGenericType"},{"id":468,"eClass":"EGenericType"},{"id":469,"eClass":"EGenericType"},{"id":470,"eClass":"EGenericType"},{"id":471,"eClass":"EGenericType"},{"id":472,"eClass":"EGenericType"},{"id":473,"eClass":"EGenericType"},{"id":474,"eClass":"EGenericType"},{"id":475,"eClass":"EGenericType"},{"id":476,"eClass":"EGenericType"},{"id":477,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"ownedEnd","changeable":true,"resolveProxies":true,"lowerBound":0,"id":478,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"memberEnd","changeable":true,"resolveProxies":true,"lowerBound":2,"id":479,"derived":false},{"id":480,"eClass":"EGenericType"},{"id":481,"eClass":"EGenericType"},{"id":482,"eClass":"EGenericType"},{"id":483,"eClass":"EGenericType"},{"id":484,"eClass":"EGenericType"},{"id":485,"eClass":"EGenericType"},{"id":486,"eClass":"EGenericType"},{"id":487,"eClass":"EGenericType"},{"id":488,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"specification","changeable":true,"resolveProxies":true,"lowerBound":0,"id":489,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"ownedParameterSet","changeable":true,"resolveProxies":true,"lowerBound":0,"id":490,"derived":false},{"id":491,"eClass":"EGenericType"},{"id":492,"eClass":"EGenericType"},{"id":493,"eClass":"EGenericType"},{"id":494,"eClass":"EGenericType"},{"id":495,"eClass":"EGenericType"},{"id":496,"eClass":"EGenericType"},{"id":497,"eClass":"EGenericType"},{"id":498,"eClass":"EGenericType"},{"id":499,"eClass":"EGenericType"},{"id":500,"eClass":"EGenericType"},{"id":501,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"context_","changeable":true,"resolveProxies":true,"lowerBound":0,"id":502,"derived":false},{"id":503,"eClass":"EGenericType"},{"id":504,"eClass":"EGenericType"},{"id":505,"eClass":"EGenericType"},{"id":506,"eClass":"EGenericType"},{"id":507,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"direction","changeable":true,"lowerBound":0,"iD":false,"id":508,"derived":false},{"id":509,"eClass":"EGenericType"},{"id":510,"eClass":"EGenericType"},{"id":511,"eClass":"EGenericType"},{"id":512,"eClass":"EGenericType"},{"id":513,"eClass":"EGenericType"},{"id":514,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":515,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"visibility","changeable":true,"lowerBound":0,"iD":false,"id":516,"derived":false},{"id":517,"eClass":"EGenericType"},{"id":518,"eClass":"EGenericType"},{"id":519,"eClass":"EGenericType"},{"id":520,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"visibility","changeable":true,"lowerBound":0,"iD":false,"id":521,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"importedElement","changeable":true,"resolveProxies":true,"lowerBound":1,"id":522,"derived":false},{"id":523,"eClass":"EGenericType"},{"id":524,"eClass":"EGenericType"},{"id":525,"eClass":"EGenericType"},{"id":526,"eClass":"EGenericType"},{"id":527,"eClass":"EGenericType"},{"id":528,"eClass":"EGenericType"},{"id":529,"eClass":"EGenericType"},{"id":530,"eClass":"EGenericType"},{"id":531,"eClass":"EGenericType"},{"id":532,"eClass":"EGenericType"},{"id":533,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"generalization","changeable":true,"resolveProxies":true,"lowerBound":0,"id":534,"derived":false},{"id":535,"eClass":"EGenericType"},{"id":536,"eClass":"EGenericType"},{"id":537,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isOrdered","changeable":true,"lowerBound":0,"iD":false,"id":538,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isUnique","changeable":true,"lowerBound":0,"iD":false,"id":539,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"lower","changeable":true,"lowerBound":0,"iD":false,"id":540,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"upper","changeable":true,"lowerBound":0,"iD":false,"id":541,"derived":false},{"id":542,"eClass":"EGenericType"},{"id":543,"eClass":"EGenericType"},{"id":544,"eClass":"EGenericType"},{"id":545,"eClass":"EGenericType"},{"id":546,"eClass":"EGenericType"},{"id":547,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"resolveProxies":true,"lowerBound":1,"id":548,"derived":false},{"id":549,"eClass":"EGenericType"},{"id":550,"eClass":"EGenericType"},{"id":551,"eClass":"EGenericType"},{"id":552,"eClass":"EGenericType"},{"id":553,"eClass":"EGenericType"},{"id":554,"eClass":"EGenericType"},{"id":555,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"constrainedElement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":556,"derived":false},{"id":557,"eClass":"EGenericType"},{"id":558,"eClass":"EGenericType"},{"id":559,"eClass":"EGenericType"},{"id":560,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"definingFeature","changeable":true,"resolveProxies":true,"lowerBound":1,"id":561,"derived":false},{"id":562,"eClass":"EGenericType"},{"id":563,"eClass":"EGenericType"},{"id":564,"eClass":"EGenericType"},{"id":565,"eClass":"EGenericType"},{"id":566,"eClass":"EGenericType"},{"id":567,"eClass":"EGenericType"},{"id":568,"eClass":"EGenericType"},{"id":569,"eClass":"EGenericType"},{"id":570,"eClass":"EGenericType"},{"id":571,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"member","changeable":true,"resolveProxies":true,"lowerBound":0,"id":572,"derived":false},{"id":573,"eClass":"EGenericType"},{"id":574,"eClass":"EGenericType"},{"id":575,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"slot","changeable":true,"resolveProxies":true,"lowerBound":0,"id":576,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"classifier","changeable":true,"resolveProxies":true,"lowerBound":0,"id":577,"derived":false},{"id":578,"eClass":"EGenericType"},{"id":579,"eClass":"EGenericType"},{"id":580,"eClass":"EGenericType"},{"id":581,"eClass":"EGenericType"},{"id":582,"eClass":"EGenericType"},{"id":583,"eClass":"EGenericType"},{"id":584,"eClass":"EGenericType"},{"id":585,"eClass":"EGenericType"},{"id":586,"eClass":"EGenericType"},{"id":587,"eClass":"EGenericType"},{"id":588,"eClass":"EGenericType"},{"id":589,"eClass":"EGenericType"},{"id":590,"eClass":"EGenericType"},{"id":591,"eClass":"EGenericType"},{"id":592,"eClass":"EGenericType"},{"id":593,"eClass":"EGenericType"},{"id":594,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isAbstract","changeable":true,"lowerBound":0,"iD":false,"id":595,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"feature","changeable":true,"resolveProxies":true,"lowerBound":0,"id":596,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"inheritedMember","changeable":true,"resolveProxies":true,"lowerBound":0,"id":597,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"generalization","changeable":true,"resolveProxies":true,"lowerBound":0,"id":598,"derived":false},{"id":599,"eClass":"EGenericType"},{"id":600,"eClass":"EGenericType"},{"id":601,"eClass":"EGenericType"},{"id":602,"eClass":"EGenericType"},{"id":603,"eClass":"EGenericType"},{"id":604,"eClass":"EGenericType"},{"id":605,"eClass":"EGenericType"},{"id":606,"eClass":"EGenericType"},{"id":607,"eClass":"EGenericType"},{"id":608,"eClass":"EGenericType"},{"id":609,"eClass":"EGenericType"},{"id":610,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"target","changeable":true,"resolveProxies":true,"lowerBound":1,"id":611,"derived":false},{"id":612,"eClass":"EGenericType"},{"id":613,"eClass":"EGenericType"},{"id":614,"eClass":"EGenericType"},{"id":615,"eClass":"EGenericType"},{"id":616,"eClass":"EGenericType"},{"id":617,"eClass":"EGenericType"},{"id":618,"eClass":"EGenericType"},{"id":619,"eClass":"EGenericType"},{"id":620,"eClass":"EGenericType"},{"id":621,"eClass":"EGenericType"},{"id":622,"eClass":"EGenericType"},{"id":623,"eClass":"EGenericType"},{"id":624,"eClass":"EGenericType"},{"id":625,"eClass":"EGenericType"},{"id":626,"eClass":"EGenericType"},{"id":627,"eClass":"EGenericType"},{"id":628,"eClass":"EGenericType"},{"id":629,"eClass":"EGenericType"},{"id":630,"eClass":"EGenericType"},{"id":631,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":0,"target":8},{"source":0,"target":9},{"source":0,"target":10},{"source":0,"target":11},{"source":0,"target":12},{"source":0,"target":13},{"source":0,"target":14},{"source":0,"target":15},{"source":0,"target":16},{"source":0,"target":17},{"source":0,"target":18},{"source":0,"target":19},{"source":0,"target":20},{"source":0,"target":21},{"source":0,"target":22},{"source":0,"target":23},{"source":0,"target":24},{"source":0,"target":25},{"source":0,"target":26},{"source":0,"target":27},{"source":0,"target":28},{"source":0,"target":29},{"source":0,"target":30},{"source":0,"target":31},{"source":0,"target":32},{"source":0,"target":33},{"source":0,"target":34},{"source":0,"target":35},{"source":0,"target":36},{"source":0,"target":37},{"source":0,"target":38},{"source":0,"target":39},{"source":0,"target":40},{"source":0,"target":41},{"source":0,"target":42},{"source":0,"target":43},{"source":0,"target":44},{"source":0,"target":45},{"source":0,"target":46},{"source":0,"target":47},{"source":0,"target":48},{"source":0,"target":49},{"source":0,"target":50},{"source":0,"target":51},{"source":0,"target":52},{"source":0,"target":53},{"source":0,"target":54},{"source":0,"target":55},{"source":0,"target":56},{"source":0,"target":57},{"source":0,"target":58},{"source":0,"target":59},{"source":0,"target":60},{"source":0,"target":61},{"source":0,"target":62},{"source":0,"target":63},{"source":0,"target":64},{"source":0,"target":65},{"source":0,"target":66},{"source":0,"target":67},{"source":0,"target":68},{"source":0,"target":69},{"source":0,"target":70},{"source":0,"target":71},{"source":0,"target":72},{"source":0,"target":73},{"source":0,"target":74},{"source":0,"target":75},{"source":0,"target":76},{"source":0,"target":77},{"source":0,"target":78},{"source":0,"target":79},{"source":0,"target":80},{"source":0,"target":81},{"source":0,"target":82},{"source":0,"target":83},{"source":0,"target":84},{"source":0,"target":85},{"source":0,"target":86},{"source":0,"target":87},{"source":0,"target":88},{"source":0,"target":89},{"source":0,"target":90},{"source":0,"target":91},{"source":0,"target":92},{"source":0,"target":93},{"source":0,"target":94},{"source":0,"target":95},{"source":0,"target":96},{"source":0,"target":97},{"source":0,"target":98},{"source":0,"target":99},{"source":0,"target":100},{"source":0,"target":101},{"source":0,"target":102},{"source":0,"target":103},{"source":0,"target":104},{"source":0,"target":105},{"source":0,"target":106},{"source":0,"target":107},{"source":0,"target":108},{"source":0,"target":109},{"source":0,"target":110},{"source":0,"target":111},{"source":0,"target":112},{"source":0,"target":113},{"source":0,"target":114},{"source":0,"target":115},{"source":0,"target":116},{"source":0,"target":117},{"source":0,"target":118},{"source":0,"target":119},{"source":0,"target":120},{"source":0,"target":121},{"source":0,"target":122},{"source":0,"target":123},{"source":0,"target":124},{"source":0,"target":125},{"source":0,"target":126},{"source":0,"target":127},{"source":0,"target":128},{"source":0,"target":129},{"source":0,"target":130},{"source":0,"target":131},{"source":0,"target":132},{"source":0,"target":133},{"source":0,"target":134},{"source":0,"target":135},{"source":0,"target":136},{"source":0,"target":137},{"source":0,"target":138},{"source":0,"target":139},{"source":0,"target":140},{"source":0,"target":141},{"source":0,"target":142},{"source":0,"target":143},{"source":0,"target":144},{"source":0,"target":145},{"source":0,"target":146},{"source":0,"target":147},{"source":0,"target":148},{"source":0,"target":149},{"source":0,"target":150},{"source":0,"target":151},{"source":0,"target":152},{"source":0,"target":153},{"source":0,"target":154},{"source":0,"target":155},{"source":0,"target":156},{"source":0,"target":157},{"source":0,"target":158},{"source":0,"target":159},{"source":0,"target":160},{"source":0,"target":161},{"source":0,"target":162},{"source":0,"target":163},{"source":0,"target":164},{"source":0,"target":165},{"source":0,"target":166},{"source":0,"target":167},{"source":0,"target":168},{"source":0,"target":169},{"source":0,"target":170},{"source":0,"target":171},{"source":0,"target":172},{"source":0,"target":173},{"source":0,"target":174},{"source":0,"target":175},{"source":0,"target":176},{"source":0,"target":177},{"source":0,"target":178},{"source":0,"target":179},{"source":0,"target":180},{"source":0,"target":181},{"source":0,"target":182},{"source":0,"target":183},{"source":0,"target":184},{"source":0,"target":185},{"source":0,"target":186},{"source":0,"target":187},{"source":0,"target":188},{"source":0,"target":189},{"source":0,"target":190},{"source":0,"target":191},{"source":0,"target":192},{"source":0,"target":193},{"source":0,"target":194},{"source":0,"target":195},{"source":0,"target":196},{"source":0,"target":197},{"source":0,"target":198},{"source":0,"target":199},{"source":0,"target":200},{"source":0,"target":201},{"source":0,"target":202},{"source":0,"target":203},{"source":0,"target":204},{"source":0,"target":205},{"source":0,"target":206},{"source":0,"target":207},{"source":0,"target":208},{"source":0,"target":209},{"source":0,"target":210},{"source":0,"target":211},{"source":0,"target":212},{"source":0,"target":213},{"source":0,"target":214},{"source":0,"target":215},{"source":0,"target":216},{"source":0,"target":217},{"source":0,"target":218},{"source":0,"target":219},{"source":0,"target":220},{"source":0,"target":221},{"source":0,"target":222},{"source":0,"target":223},{"source":0,"target":224},{"source":0,"target":225},{"source":0,"target":226},{"source":0,"target":227},{"source":0,"target":228},{"source":0,"target":229},{"source":0,"target":230},{"source":1,"target":0},{"source":1,"target":231},{"source":1,"target":232},{"source":1,"target":233},{"source":231,"target":1},{"source":232,"target":1},{"source":233,"target":1},{"source":2,"target":0},{"source":2,"target":234},{"source":2,"target":235},{"source":2,"target":236},{"source":2,"target":237},{"source":234,"target":2},{"source":235,"target":2},{"source":236,"target":2},{"source":237,"target":2},{"source":3,"target":0},{"source":3,"target":238},{"source":3,"target":239},{"source":3,"target":240},{"source":3,"target":241},{"source":238,"target":3},{"source":239,"target":3},{"source":240,"target":3},{"source":241,"target":3},{"source":4,"target":0},{"source":4,"target":153},{"source":4,"target":242},{"source":242,"target":153},{"source":5,"target":0},{"source":5,"target":221},{"source":5,"target":243},{"source":243,"target":221},{"source":6,"target":0},{"source":6,"target":166},{"source":6,"target":244},{"source":244,"target":166},{"source":7,"target":0},{"source":7,"target":160},{"source":7,"target":245},{"source":7,"target":246},{"source":7,"target":247},{"source":245,"target":210},{"source":245,"target":248},{"source":245,"target":7},{"source":248,"target":210},{"source":246,"target":74},{"source":246,"target":249},{"source":246,"target":7},{"source":249,"target":74},{"source":247,"target":160},{"source":8,"target":0},{"source":8,"target":216},{"source":8,"target":250},{"source":250,"target":216},{"source":9,"target":0},{"source":9,"target":16},{"source":9,"target":251},{"source":251,"target":16},{"source":10,"target":0},{"source":10,"target":221},{"source":10,"target":252},{"source":252,"target":221},{"source":11,"target":0},{"source":11,"target":134},{"source":11,"target":253},{"source":253,"target":134},{"source":12,"target":0},{"source":12,"target":254},{"source":254,"target":12},{"source":254,"target":255},{"source":254,"target":12},{"source":255,"target":12},{"source":13,"target":0},{"source":13,"target":160},{"source":13,"target":256},{"source":13,"target":257},{"source":256,"target":29},{"source":256,"target":258},{"source":256,"target":13},{"source":258,"target":29},{"source":257,"target":160},{"source":14,"target":0},{"source":14,"target":135},{"source":14,"target":259},{"source":259,"target":135},{"source":15,"target":0},{"source":15,"target":157},{"source":15,"target":260},{"source":260,"target":157},{"source":16,"target":0},{"source":16,"target":230},{"source":16,"target":261},{"source":261,"target":230},{"source":17,"target":0},{"source":17,"target":10},{"source":17,"target":262},{"source":262,"target":10},{"source":18,"target":0},{"source":18,"target":166},{"source":18,"target":263},{"source":263,"target":166},{"source":19,"target":0},{"source":19,"target":12},{"source":19,"target":264},{"source":264,"target":12},{"source":20,"target":0},{"source":20,"target":153},{"source":20,"target":265},{"source":265,"target":153},{"source":21,"target":0},{"source":21,"target":157},{"source":21,"target":266},{"source":266,"target":157},{"source":22,"target":0},{"source":22,"target":221},{"source":22,"target":120},{"source":22,"target":267},{"source":22,"target":268},{"source":267,"target":221},{"source":268,"target":120},{"source":23,"target":0},{"source":23,"target":166},{"source":23,"target":269},{"source":269,"target":166},{"source":24,"target":0},{"source":24,"target":158},{"source":24,"target":270},{"source":270,"target":158},{"source":25,"target":0},{"source":25,"target":19},{"source":25,"target":271},{"source":271,"target":19},{"source":26,"target":0},{"source":26,"target":66},{"source":26,"target":272},{"source":272,"target":66},{"source":27,"target":0},{"source":27,"target":160},{"source":27,"target":273},{"source":273,"target":160},{"source":28,"target":0},{"source":28,"target":156},{"source":28,"target":274},{"source":274,"target":156},{"source":29,"target":0},{"source":29,"target":133},{"source":29,"target":73},{"source":29,"target":178},{"source":29,"target":275},{"source":29,"target":276},{"source":29,"target":277},{"source":29,"target":278},{"source":275,"target":279},{"source":275,"target":29},{"source":276,"target":133},{"source":277,"target":73},{"source":278,"target":178},{"source":30,"target":0},{"source":30,"target":166},{"source":30,"target":280},{"source":280,"target":166},{"source":31,"target":0},{"source":31,"target":210},{"source":31,"target":281},{"source":281,"target":210},{"source":32,"target":0},{"source":32,"target":216},{"source":32,"target":282},{"source":282,"target":216},{"source":33,"target":0},{"source":33,"target":134},{"source":33,"target":283},{"source":283,"target":134},{"source":34,"target":0},{"source":34,"target":166},{"source":34,"target":284},{"source":284,"target":166},{"source":35,"target":0},{"source":35,"target":27},{"source":35,"target":285},{"source":285,"target":27},{"source":36,"target":0},{"source":36,"target":196},{"source":36,"target":133},{"source":36,"target":286},{"source":36,"target":287},{"source":286,"target":196},{"source":287,"target":133},{"source":37,"target":0},{"source":37,"target":94},{"source":37,"target":288},{"source":288,"target":94},{"source":38,"target":0},{"source":38,"target":180},{"source":38,"target":289},{"source":289,"target":180},{"source":39,"target":0},{"source":39,"target":19},{"source":39,"target":290},{"source":290,"target":19},{"source":40,"target":0},{"source":40,"target":133},{"source":40,"target":291},{"source":291,"target":133},{"source":41,"target":0},{"source":41,"target":70},{"source":41,"target":292},{"source":292,"target":70},{"source":42,"target":0},{"source":42,"target":64},{"source":42,"target":293},{"source":293,"target":64},{"source":43,"target":0},{"source":43,"target":61},{"source":43,"target":294},{"source":294,"target":61},{"source":44,"target":0},{"source":44,"target":66},{"source":44,"target":295},{"source":295,"target":66},{"source":45,"target":0},{"source":45,"target":27},{"source":45,"target":296},{"source":296,"target":27},{"source":46,"target":0},{"source":46,"target":146},{"source":46,"target":297},{"source":297,"target":146},{"source":47,"target":0},{"source":47,"target":151},{"source":47,"target":298},{"source":298,"target":151},{"source":48,"target":0},{"source":48,"target":166},{"source":48,"target":153},{"source":48,"target":299},{"source":48,"target":300},{"source":299,"target":166},{"source":300,"target":153},{"source":49,"target":0},{"source":49,"target":160},{"source":49,"target":301},{"source":301,"target":160},{"source":50,"target":0},{"source":50,"target":113},{"source":50,"target":302},{"source":302,"target":113},{"source":51,"target":0},{"source":51,"target":216},{"source":51,"target":303},{"source":303,"target":216},{"source":52,"target":0},{"source":52,"target":47},{"source":52,"target":304},{"source":304,"target":47},{"source":53,"target":0},{"source":53,"target":160},{"source":53,"target":305},{"source":305,"target":160},{"source":54,"target":0},{"source":54,"target":70},{"source":54,"target":306},{"source":306,"target":70},{"source":55,"target":0},{"source":55,"target":160},{"source":55,"target":307},{"source":307,"target":160},{"source":56,"target":0},{"source":56,"target":73},{"source":56,"target":195},{"source":56,"target":308},{"source":56,"target":309},{"source":308,"target":73},{"source":309,"target":195},{"source":57,"target":0},{"source":57,"target":196},{"source":57,"target":70},{"source":57,"target":310},{"source":57,"target":311},{"source":310,"target":196},{"source":311,"target":70},{"source":58,"target":0},{"source":58,"target":196},{"source":58,"target":72},{"source":58,"target":312},{"source":58,"target":313},{"source":312,"target":196},{"source":313,"target":72},{"source":59,"target":0},{"source":59,"target":166},{"source":59,"target":314},{"source":314,"target":166},{"source":60,"target":0},{"source":60,"target":72},{"source":60,"target":315},{"source":315,"target":72},{"source":61,"target":0},{"source":61,"target":27},{"source":61,"target":316},{"source":316,"target":27},{"source":62,"target":0},{"source":62,"target":15},{"source":62,"target":317},{"source":317,"target":15},{"source":63,"target":0},{"source":63,"target":210},{"source":63,"target":318},{"source":63,"target":319},{"source":63,"target":320},{"source":318,"target":152},{"source":318,"target":321},{"source":318,"target":63},{"source":321,"target":152},{"source":319,"target":152},{"source":319,"target":322},{"source":319,"target":63},{"source":322,"target":152},{"source":320,"target":210},{"source":64,"target":0},{"source":64,"target":142},{"source":64,"target":323},{"source":323,"target":142},{"source":65,"target":0},{"source":65,"target":160},{"source":65,"target":324},{"source":324,"target":160},{"source":66,"target":0},{"source":66,"target":29},{"source":66,"target":203},{"source":66,"target":149},{"source":66,"target":325},{"source":66,"target":326},{"source":66,"target":327},{"source":66,"target":328},{"source":66,"target":329},{"source":66,"target":330},{"source":66,"target":331},{"source":66,"target":332},{"source":66,"target":333},{"source":66,"target":334},{"source":325,"target":335},{"source":325,"target":66},{"source":326,"target":336},{"source":326,"target":66},{"source":327,"target":337},{"source":327,"target":66},{"source":328,"target":1},{"source":328,"target":338},{"source":328,"target":66},{"source":338,"target":1},{"source":329,"target":66},{"source":329,"target":339},{"source":329,"target":66},{"source":339,"target":66},{"source":330,"target":146},{"source":330,"target":340},{"source":330,"target":66},{"source":340,"target":146},{"source":331,"target":66},{"source":331,"target":341},{"source":331,"target":66},{"source":341,"target":66},{"source":332,"target":29},{"source":333,"target":203},{"source":334,"target":149},{"source":67,"target":0},{"source":67,"target":160},{"source":67,"target":342},{"source":67,"target":343},{"source":342,"target":74},{"source":342,"target":344},{"source":342,"target":67},{"source":344,"target":74},{"source":343,"target":160},{"source":68,"target":0},{"source":68,"target":70},{"source":68,"target":59},{"source":68,"target":345},{"source":68,"target":346},{"source":345,"target":70},{"source":346,"target":59},{"source":69,"target":0},{"source":69,"target":180},{"source":69,"target":347},{"source":347,"target":180},{"source":70,"target":0},{"source":70,"target":166},{"source":70,"target":348},{"source":348,"target":166},{"source":71,"target":0},{"source":71,"target":197},{"source":71,"target":349},{"source":349,"target":197},{"source":72,"target":0},{"source":72,"target":166},{"source":72,"target":195},{"source":72,"target":350},{"source":72,"target":351},{"source":350,"target":166},{"source":351,"target":195},{"source":73,"target":0},{"source":73,"target":166},{"source":73,"target":352},{"source":73,"target":353},{"source":352,"target":183},{"source":352,"target":354},{"source":352,"target":73},{"source":354,"target":183},{"source":353,"target":166},{"source":74,"target":0},{"source":74,"target":95},{"source":74,"target":355},{"source":355,"target":95},{"source":75,"target":0},{"source":75,"target":166},{"source":75,"target":356},{"source":356,"target":166},{"source":76,"target":0},{"source":76,"target":158},{"source":76,"target":357},{"source":357,"target":158},{"source":77,"target":0},{"source":77,"target":95},{"source":77,"target":358},{"source":358,"target":95},{"source":78,"target":0},{"source":78,"target":180},{"source":78,"target":359},{"source":359,"target":180},{"source":79,"target":0},{"source":79,"target":153},{"source":79,"target":360},{"source":79,"target":361},{"source":360,"target":210},{"source":360,"target":362},{"source":360,"target":79},{"source":362,"target":210},{"source":361,"target":153},{"source":80,"target":0},{"source":80,"target":142},{"source":80,"target":363},{"source":363,"target":142},{"source":81,"target":0},{"source":81,"target":63},{"source":81,"target":83},{"source":81,"target":364},{"source":81,"target":365},{"source":81,"target":366},{"source":81,"target":367},{"source":81,"target":368},{"source":364,"target":369},{"source":364,"target":81},{"source":365,"target":210},{"source":365,"target":370},{"source":365,"target":81},{"source":370,"target":210},{"source":366,"target":173},{"source":366,"target":371},{"source":366,"target":81},{"source":371,"target":173},{"source":367,"target":63},{"source":368,"target":83},{"source":82,"target":0},{"source":82,"target":210},{"source":82,"target":191},{"source":82,"target":372},{"source":82,"target":373},{"source":372,"target":210},{"source":373,"target":191},{"source":83,"target":0},{"source":83,"target":86},{"source":83,"target":374},{"source":374,"target":86},{"source":84,"target":0},{"source":84,"target":64},{"source":84,"target":375},{"source":375,"target":64},{"source":85,"target":0},{"source":85,"target":134},{"source":85,"target":376},{"source":376,"target":134},{"source":86,"target":0},{"source":86,"target":210},{"source":86,"target":377},{"source":377,"target":210},{"source":87,"target":0},{"source":87,"target":146},{"source":87,"target":378},{"source":378,"target":146},{"source":88,"target":0},{"source":88,"target":81},{"source":88,"target":379},{"source":379,"target":81},{"source":89,"target":0},{"source":89,"target":219},{"source":89,"target":380},{"source":380,"target":219},{"source":90,"target":0},{"source":90,"target":82},{"source":90,"target":381},{"source":381,"target":82},{"source":91,"target":0},{"source":91,"target":203},{"source":91,"target":73},{"source":91,"target":178},{"source":91,"target":382},{"source":91,"target":383},{"source":91,"target":384},{"source":382,"target":203},{"source":383,"target":73},{"source":384,"target":178},{"source":92,"target":0},{"source":92,"target":12},{"source":92,"target":385},{"source":92,"target":386},{"source":92,"target":387},{"source":92,"target":388},{"source":385,"target":77},{"source":385,"target":389},{"source":385,"target":92},{"source":389,"target":77},{"source":386,"target":66},{"source":386,"target":390},{"source":386,"target":92},{"source":390,"target":66},{"source":387,"target":93},{"source":387,"target":391},{"source":387,"target":92},{"source":391,"target":93},{"source":388,"target":12},{"source":93,"target":0},{"source":93,"target":12},{"source":93,"target":392},{"source":93,"target":393},{"source":392,"target":66},{"source":392,"target":394},{"source":392,"target":93},{"source":394,"target":66},{"source":393,"target":12},{"source":94,"target":0},{"source":94,"target":56},{"source":94,"target":395},{"source":395,"target":56},{"source":95,"target":0},{"source":95,"target":230},{"source":95,"target":178},{"source":95,"target":396},{"source":95,"target":397},{"source":396,"target":230},{"source":397,"target":178},{"source":96,"target":0},{"source":96,"target":81},{"source":96,"target":149},{"source":96,"target":398},{"source":96,"target":399},{"source":398,"target":81},{"source":399,"target":149},{"source":97,"target":0},{"source":97,"target":177},{"source":97,"target":400},{"source":400,"target":177},{"source":98,"target":0},{"source":98,"target":58},{"source":98,"target":401},{"source":401,"target":58},{"source":99,"target":0},{"source":99,"target":70},{"source":99,"target":402},{"source":402,"target":70},{"source":100,"target":0},{"source":100,"target":89},{"source":100,"target":403},{"source":403,"target":89},{"source":101,"target":0},{"source":101,"target":186},{"source":101,"target":404},{"source":404,"target":186},{"source":102,"target":0},{"source":102,"target":198},{"source":102,"target":405},{"source":405,"target":198},{"source":103,"target":0},{"source":103,"target":135},{"source":103,"target":406},{"source":406,"target":135},{"source":104,"target":0},{"source":104,"target":157},{"source":104,"target":407},{"source":407,"target":157},{"source":105,"target":0},{"source":105,"target":58},{"source":105,"target":408},{"source":408,"target":58},{"source":106,"target":0},{"source":106,"target":210},{"source":106,"target":409},{"source":409,"target":210},{"source":107,"target":0},{"source":107,"target":153},{"source":107,"target":410},{"source":107,"target":411},{"source":410,"target":2},{"source":410,"target":412},{"source":410,"target":107},{"source":412,"target":2},{"source":411,"target":153},{"source":108,"target":0},{"source":108,"target":56},{"source":108,"target":413},{"source":108,"target":414},{"source":108,"target":415},{"source":108,"target":416},{"source":413,"target":417},{"source":413,"target":108},{"source":414,"target":418},{"source":414,"target":108},{"source":415,"target":152},{"source":415,"target":419},{"source":415,"target":108},{"source":419,"target":152},{"source":416,"target":56},{"source":109,"target":0},{"source":109,"target":59},{"source":109,"target":420},{"source":420,"target":59},{"source":110,"target":0},{"source":110,"target":56},{"source":110,"target":421},{"source":421,"target":56},{"source":111,"target":0},{"source":111,"target":160},{"source":111,"target":422},{"source":422,"target":160},{"source":112,"target":0},{"source":112,"target":119},{"source":112,"target":423},{"source":423,"target":119},{"source":113,"target":0},{"source":113,"target":47},{"source":113,"target":424},{"source":424,"target":47},{"source":114,"target":0},{"source":114,"target":36},{"source":114,"target":73},{"source":114,"target":178},{"source":114,"target":195},{"source":114,"target":425},{"source":114,"target":426},{"source":114,"target":427},{"source":114,"target":428},{"source":114,"target":429},{"source":114,"target":430},{"source":114,"target":431},{"source":425,"target":432},{"source":425,"target":114},{"source":426,"target":164},{"source":426,"target":433},{"source":426,"target":114},{"source":433,"target":164},{"source":427,"target":186},{"source":427,"target":434},{"source":427,"target":114},{"source":434,"target":186},{"source":428,"target":36},{"source":429,"target":73},{"source":430,"target":178},{"source":431,"target":195},{"source":115,"target":0},{"source":115,"target":13},{"source":115,"target":435},{"source":435,"target":13},{"source":116,"target":0},{"source":116,"target":92},{"source":116,"target":436},{"source":436,"target":92},{"source":117,"target":0},{"source":117,"target":160},{"source":117,"target":437},{"source":117,"target":438},{"source":117,"target":439},{"source":437,"target":77},{"source":437,"target":440},{"source":437,"target":117},{"source":440,"target":77},{"source":438,"target":77},{"source":438,"target":441},{"source":438,"target":117},{"source":441,"target":77},{"source":439,"target":160},{"source":118,"target":0},{"source":118,"target":70},{"source":118,"target":442},{"source":442,"target":70},{"source":119,"target":0},{"source":119,"target":15},{"source":119,"target":443},{"source":443,"target":15},{"source":120,"target":0},{"source":120,"target":12},{"source":120,"target":444},{"source":444,"target":12},{"source":121,"target":0},{"source":121,"target":56},{"source":121,"target":445},{"source":445,"target":56},{"source":122,"target":0},{"source":122,"target":221},{"source":122,"target":446},{"source":446,"target":221},{"source":123,"target":0},{"source":123,"target":216},{"source":123,"target":447},{"source":447,"target":216},{"source":124,"target":0},{"source":124,"target":63},{"source":124,"target":86},{"source":124,"target":448},{"source":124,"target":449},{"source":448,"target":63},{"source":449,"target":86},{"source":125,"target":0},{"source":125,"target":217},{"source":125,"target":450},{"source":450,"target":217},{"source":126,"target":0},{"source":126,"target":230},{"source":126,"target":451},{"source":451,"target":230},{"source":127,"target":0},{"source":127,"target":72},{"source":127,"target":153},{"source":127,"target":452},{"source":127,"target":453},{"source":452,"target":72},{"source":453,"target":153},{"source":128,"target":0},{"source":128,"target":61},{"source":128,"target":454},{"source":454,"target":61},{"source":129,"target":0},{"source":129,"target":210},{"source":129,"target":455},{"source":455,"target":210},{"source":130,"target":0},{"source":130,"target":160},{"source":130,"target":456},{"source":456,"target":160},{"source":131,"target":0},{"source":131,"target":216},{"source":131,"target":457},{"source":457,"target":216},{"source":132,"target":0},{"source":132,"target":221},{"source":132,"target":458},{"source":458,"target":221},{"source":133,"target":0},{"source":133,"target":221},{"source":133,"target":459},{"source":133,"target":460},{"source":133,"target":461},{"source":459,"target":462},{"source":459,"target":133},{"source":460,"target":210},{"source":460,"target":463},{"source":460,"target":133},{"source":463,"target":210},{"source":461,"target":221},{"source":134,"target":0},{"source":134,"target":160},{"source":134,"target":196},{"source":134,"target":184},{"source":134,"target":464},{"source":134,"target":465},{"source":134,"target":466},{"source":464,"target":160},{"source":465,"target":196},{"source":466,"target":184},{"source":135,"target":0},{"source":135,"target":186},{"source":135,"target":467},{"source":467,"target":186},{"source":136,"target":0},{"source":136,"target":210},{"source":136,"target":468},{"source":468,"target":210},{"source":137,"target":0},{"source":137,"target":6},{"source":137,"target":469},{"source":469,"target":6},{"source":138,"target":0},{"source":138,"target":77},{"source":138,"target":470},{"source":470,"target":77},{"source":139,"target":0},{"source":139,"target":94},{"source":139,"target":471},{"source":471,"target":94},{"source":140,"target":0},{"source":140,"target":151},{"source":140,"target":472},{"source":472,"target":151},{"source":141,"target":0},{"source":141,"target":160},{"source":141,"target":473},{"source":473,"target":160},{"source":142,"target":0},{"source":142,"target":160},{"source":142,"target":474},{"source":474,"target":160},{"source":143,"target":0},{"source":143,"target":160},{"source":143,"target":475},{"source":475,"target":160},{"source":144,"target":0},{"source":144,"target":56},{"source":144,"target":476},{"source":476,"target":56},{"source":145,"target":0},{"source":145,"target":219},{"source":145,"target":477},{"source":477,"target":219},{"source":146,"target":0},{"source":146,"target":210},{"source":146,"target":163},{"source":146,"target":478},{"source":146,"target":479},{"source":146,"target":480},{"source":146,"target":481},{"source":478,"target":66},{"source":478,"target":482},{"source":478,"target":146},{"source":482,"target":66},{"source":479,"target":66},{"source":479,"target":483},{"source":479,"target":146},{"source":483,"target":66},{"source":480,"target":210},{"source":481,"target":163},{"source":147,"target":0},{"source":147,"target":194},{"source":147,"target":484},{"source":484,"target":194},{"source":148,"target":0},{"source":148,"target":68},{"source":148,"target":485},{"source":485,"target":68},{"source":149,"target":0},{"source":149,"target":166},{"source":149,"target":486},{"source":486,"target":166},{"source":150,"target":0},{"source":150,"target":49},{"source":150,"target":487},{"source":487,"target":49},{"source":151,"target":0},{"source":151,"target":160},{"source":151,"target":488},{"source":488,"target":160},{"source":152,"target":0},{"source":152,"target":81},{"source":152,"target":489},{"source":152,"target":490},{"source":152,"target":491},{"source":489,"target":36},{"source":489,"target":492},{"source":489,"target":152},{"source":492,"target":36},{"source":490,"target":18},{"source":490,"target":493},{"source":490,"target":152},{"source":493,"target":18},{"source":491,"target":81},{"source":153,"target":0},{"source":153,"target":163},{"source":153,"target":494},{"source":494,"target":163},{"source":154,"target":0},{"source":154,"target":27},{"source":154,"target":495},{"source":495,"target":27},{"source":155,"target":0},{"source":155,"target":12},{"source":155,"target":496},{"source":496,"target":12},{"source":156,"target":0},{"source":156,"target":158},{"source":156,"target":497},{"source":497,"target":158},{"source":157,"target":0},{"source":157,"target":72},{"source":157,"target":153},{"source":157,"target":498},{"source":157,"target":499},{"source":498,"target":72},{"source":499,"target":153},{"source":158,"target":0},{"source":158,"target":5},{"source":158,"target":500},{"source":500,"target":5},{"source":159,"target":0},{"source":159,"target":108},{"source":159,"target":501},{"source":501,"target":108},{"source":160,"target":0},{"source":160,"target":172},{"source":160,"target":502},{"source":160,"target":503},{"source":502,"target":210},{"source":502,"target":504},{"source":502,"target":160},{"source":504,"target":210},{"source":503,"target":172},{"source":161,"target":0},{"source":161,"target":160},{"source":161,"target":505},{"source":505,"target":160},{"source":162,"target":0},{"source":162,"target":158},{"source":162,"target":506},{"source":506,"target":158},{"source":163,"target":0},{"source":163,"target":12},{"source":163,"target":507},{"source":507,"target":12},{"source":164,"target":0},{"source":164,"target":203},{"source":164,"target":73},{"source":164,"target":178},{"source":164,"target":508},{"source":164,"target":509},{"source":164,"target":510},{"source":164,"target":511},{"source":508,"target":3},{"source":508,"target":512},{"source":508,"target":164},{"source":512,"target":3},{"source":509,"target":203},{"source":510,"target":73},{"source":511,"target":178},{"source":165,"target":0},{"source":165,"target":166},{"source":165,"target":153},{"source":165,"target":513},{"source":165,"target":514},{"source":513,"target":166},{"source":514,"target":153},{"source":166,"target":0},{"source":166,"target":197},{"source":166,"target":515},{"source":166,"target":516},{"source":166,"target":517},{"source":515,"target":518},{"source":515,"target":166},{"source":516,"target":2},{"source":516,"target":519},{"source":516,"target":166},{"source":519,"target":2},{"source":517,"target":197},{"source":167,"target":0},{"source":167,"target":152},{"source":167,"target":520},{"source":520,"target":152},{"source":168,"target":0},{"source":168,"target":153},{"source":168,"target":521},{"source":168,"target":522},{"source":168,"target":523},{"source":521,"target":2},{"source":521,"target":524},{"source":521,"target":168},{"source":524,"target":2},{"source":522,"target":72},{"source":522,"target":525},{"source":522,"target":168},{"source":525,"target":72},{"source":523,"target":153},{"source":169,"target":0},{"source":169,"target":153},{"source":169,"target":526},{"source":526,"target":153},{"source":170,"target":0},{"source":170,"target":89},{"source":170,"target":527},{"source":527,"target":89},{"source":171,"target":0},{"source":171,"target":210},{"source":171,"target":528},{"source":528,"target":210},{"source":172,"target":0},{"source":172,"target":5},{"source":172,"target":529},{"source":529,"target":5},{"source":173,"target":0},{"source":173,"target":36},{"source":173,"target":530},{"source":530,"target":36},{"source":174,"target":0},{"source":174,"target":19},{"source":174,"target":531},{"source":531,"target":19},{"source":175,"target":0},{"source":175,"target":152},{"source":175,"target":70},{"source":175,"target":532},{"source":175,"target":533},{"source":532,"target":152},{"source":533,"target":70},{"source":176,"target":0},{"source":176,"target":72},{"source":176,"target":534},{"source":176,"target":535},{"source":534,"target":79},{"source":534,"target":536},{"source":534,"target":176},{"source":536,"target":79},{"source":535,"target":72},{"source":177,"target":0},{"source":177,"target":70},{"source":177,"target":537},{"source":537,"target":70},{"source":178,"target":0},{"source":178,"target":12},{"source":178,"target":538},{"source":178,"target":539},{"source":178,"target":540},{"source":178,"target":541},{"source":178,"target":542},{"source":538,"target":543},{"source":538,"target":178},{"source":539,"target":544},{"source":539,"target":178},{"source":540,"target":545},{"source":540,"target":178},{"source":541,"target":546},{"source":541,"target":178},{"source":542,"target":12},{"source":179,"target":0},{"source":179,"target":158},{"source":179,"target":547},{"source":547,"target":158},{"source":180,"target":0},{"source":180,"target":13},{"source":180,"target":548},{"source":180,"target":549},{"source":548,"target":77},{"source":548,"target":550},{"source":548,"target":180},{"source":550,"target":77},{"source":549,"target":13},{"source":181,"target":0},{"source":181,"target":12},{"source":181,"target":551},{"source":551,"target":12},{"source":182,"target":0},{"source":182,"target":230},{"source":182,"target":552},{"source":552,"target":230},{"source":183,"target":0},{"source":183,"target":72},{"source":183,"target":553},{"source":553,"target":72},{"source":184,"target":0},{"source":184,"target":12},{"source":184,"target":554},{"source":554,"target":12},{"source":185,"target":0},{"source":185,"target":210},{"source":185,"target":555},{"source":555,"target":210},{"source":186,"target":0},{"source":186,"target":72},{"source":186,"target":556},{"source":186,"target":557},{"source":556,"target":12},{"source":556,"target":558},{"source":556,"target":186},{"source":558,"target":12},{"source":557,"target":72},{"source":187,"target":0},{"source":187,"target":89},{"source":187,"target":559},{"source":559,"target":89},{"source":188,"target":0},{"source":188,"target":210},{"source":188,"target":560},{"source":560,"target":210},{"source":189,"target":0},{"source":189,"target":12},{"source":189,"target":561},{"source":189,"target":562},{"source":561,"target":29},{"source":561,"target":563},{"source":561,"target":189},{"source":563,"target":29},{"source":562,"target":12},{"source":190,"target":0},{"source":190,"target":160},{"source":190,"target":564},{"source":564,"target":160},{"source":191,"target":0},{"source":191,"target":166},{"source":191,"target":565},{"source":565,"target":166},{"source":192,"target":0},{"source":192,"target":96},{"source":192,"target":566},{"source":566,"target":96},{"source":193,"target":0},{"source":193,"target":219},{"source":193,"target":567},{"source":567,"target":219},{"source":194,"target":0},{"source":194,"target":196},{"source":194,"target":221},{"source":194,"target":6},{"source":194,"target":568},{"source":194,"target":569},{"source":194,"target":570},{"source":568,"target":196},{"source":569,"target":221},{"source":570,"target":6},{"source":195,"target":0},{"source":195,"target":12},{"source":195,"target":571},{"source":571,"target":12},{"source":196,"target":0},{"source":196,"target":166},{"source":196,"target":572},{"source":196,"target":573},{"source":572,"target":166},{"source":572,"target":574},{"source":572,"target":196},{"source":574,"target":166},{"source":573,"target":166},{"source":197,"target":0},{"source":197,"target":12},{"source":197,"target":575},{"source":575,"target":12},{"source":198,"target":0},{"source":198,"target":72},{"source":198,"target":149},{"source":198,"target":191},{"source":198,"target":576},{"source":198,"target":577},{"source":198,"target":578},{"source":198,"target":579},{"source":198,"target":580},{"source":576,"target":189},{"source":576,"target":581},{"source":576,"target":198},{"source":581,"target":189},{"source":577,"target":210},{"source":577,"target":582},{"source":577,"target":198},{"source":582,"target":210},{"source":578,"target":72},{"source":579,"target":149},{"source":580,"target":191},{"source":199,"target":0},{"source":199,"target":188},{"source":199,"target":583},{"source":583,"target":188},{"source":200,"target":0},{"source":200,"target":81},{"source":200,"target":584},{"source":584,"target":81},{"source":201,"target":0},{"source":201,"target":188},{"source":201,"target":585},{"source":585,"target":188},{"source":202,"target":0},{"source":202,"target":142},{"source":202,"target":586},{"source":586,"target":142},{"source":203,"target":0},{"source":203,"target":166},{"source":203,"target":195},{"source":203,"target":587},{"source":203,"target":588},{"source":587,"target":166},{"source":588,"target":195},{"source":204,"target":0},{"source":204,"target":197},{"source":204,"target":589},{"source":589,"target":197},{"source":205,"target":0},{"source":205,"target":107},{"source":205,"target":590},{"source":590,"target":107},{"source":206,"target":0},{"source":206,"target":180},{"source":206,"target":591},{"source":591,"target":180},{"source":207,"target":0},{"source":207,"target":13},{"source":207,"target":592},{"source":592,"target":13},{"source":208,"target":0},{"source":208,"target":96},{"source":208,"target":593},{"source":593,"target":96},{"source":209,"target":0},{"source":209,"target":119},{"source":209,"target":594},{"source":594,"target":119},{"source":210,"target":0},{"source":210,"target":196},{"source":210,"target":183},{"source":210,"target":221},{"source":210,"target":595},{"source":210,"target":596},{"source":210,"target":597},{"source":210,"target":598},{"source":210,"target":599},{"source":210,"target":600},{"source":210,"target":601},{"source":595,"target":602},{"source":595,"target":210},{"source":596,"target":133},{"source":596,"target":603},{"source":596,"target":210},{"source":603,"target":133},{"source":597,"target":166},{"source":597,"target":604},{"source":597,"target":210},{"source":604,"target":166},{"source":598,"target":79},{"source":598,"target":605},{"source":598,"target":210},{"source":605,"target":79},{"source":599,"target":196},{"source":600,"target":183},{"source":601,"target":221},{"source":211,"target":0},{"source":211,"target":160},{"source":211,"target":606},{"source":606,"target":160},{"source":212,"target":0},{"source":212,"target":132},{"source":212,"target":607},{"source":607,"target":132},{"source":213,"target":0},{"source":213,"target":10},{"source":213,"target":608},{"source":608,"target":10},{"source":214,"target":0},{"source":214,"target":196},{"source":214,"target":221},{"source":214,"target":609},{"source":214,"target":610},{"source":609,"target":196},{"source":610,"target":221},{"source":215,"target":0},{"source":215,"target":160},{"source":215,"target":611},{"source":215,"target":612},{"source":611,"target":77},{"source":611,"target":613},{"source":611,"target":215},{"source":613,"target":77},{"source":612,"target":160},{"source":216,"target":0},{"source":216,"target":56},{"source":216,"target":614},{"source":614,"target":56},{"source":217,"target":0},{"source":217,"target":152},{"source":217,"target":615},{"source":615,"target":152},{"source":218,"target":0},{"source":218,"target":63},{"source":218,"target":616},{"source":616,"target":63},{"source":219,"target":0},{"source":219,"target":166},{"source":219,"target":617},{"source":617,"target":166},{"source":220,"target":0},{"source":220,"target":12},{"source":220,"target":618},{"source":618,"target":12},{"source":221,"target":0},{"source":221,"target":166},{"source":221,"target":619},{"source":619,"target":166},{"source":222,"target":0},{"source":222,"target":158},{"source":222,"target":620},{"source":620,"target":158},{"source":223,"target":0},{"source":223,"target":157},{"source":223,"target":621},{"source":621,"target":157},{"source":224,"target":0},{"source":224,"target":184},{"source":224,"target":622},{"source":622,"target":184},{"source":225,"target":0},{"source":225,"target":166},{"source":225,"target":184},{"source":225,"target":623},{"source":225,"target":624},{"source":623,"target":166},{"source":624,"target":184},{"source":226,"target":0},{"source":226,"target":81},{"source":226,"target":146},{"source":226,"target":625},{"source":226,"target":626},{"source":625,"target":81},{"source":626,"target":146},{"source":227,"target":0},{"source":227,"target":156},{"source":227,"target":627},{"source":627,"target":156},{"source":228,"target":0},{"source":228,"target":178},{"source":228,"target":628},{"source":628,"target":178},{"source":229,"target":0},{"source":229,"target":6},{"source":229,"target":629},{"source":629,"target":6},{"source":230,"target":0},{"source":230,"target":5},{"source":230,"target":73},{"source":230,"target":630},{"source":230,"target":631},{"source":630,"target":5},{"source":631,"target":73}],"multigraph":true} |
false | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="CFG" nsURI="http://com/cs/tu/findrefactor" nsPrefix="com.cs.tu.findrefactor">
<eClassifiers xsi:type="ecore:EClass" name="MControlFlowGraph">
<eStructuralFeatures xsi:type="ecore:EReference" name="nodes" upperBound="-1"
eType="#//AbstractNode" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" ordered="false" unique="false"
lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="localVar" upperBound="-1"
eType="#//Var" containment="true" eOpposite="#//Var/method"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="AbstractNode" abstract="true">
<eStructuralFeatures xsi:type="ecore:EReference" name="fromNode" ordered="false"
upperBound="-1" eType="#//AbstractNode" eOpposite="#//AbstractNode/toNode"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="toNode" ordered="false"
eType="#//AbstractNode" eOpposite="#//AbstractNode/fromNode"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" ordered="false" unique="false"
lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="var" upperBound="-1" eType="#//Var"
containment="true" eOpposite="#//Var/nodes"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="dataFlow" upperBound="-1"
eType="#//AbstractNode"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="dUse" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="params" upperBound="-1"
eType="#//Node" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Node" eSuperTypes="#//AbstractNode"/>
<eClassifiers xsi:type="ecore:EClass" name="ConditionalNode" eSuperTypes="#//AbstractNode">
<eStructuralFeatures xsi:type="ecore:EReference" name="trueConditionNode" ordered="false"
lowerBound="1" eType="#//Node" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="falseConditionNode" ordered="false"
lowerBound="1" eType="#//Node" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="IterativeNode" eSuperTypes="#//AbstractNode">
<eStructuralFeatures xsi:type="ecore:EReference" name="trueConditionNode" ordered="false"
lowerBound="1" eType="#//Node"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="falseConditionNode" ordered="false"
lowerBound="1" eType="#//Node"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="nodes" upperBound="-1"
eType="#//AbstractNode" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Var">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="method" eType="#//MControlFlowGraph"
eOpposite="#//MControlFlowGraph/localVar"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="nodes" upperBound="-1"
eType="#//AbstractNode" eOpposite="#//AbstractNode/var"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Param" eSuperTypes="#//Var"/>
</ecore:EPackage>
| github:ecore:/data/sentery/ModelTransformation/com.cs.tu.FindRefactor/Metamodels/CFG.ecore | ecore | CFG
MControlFlowGraph
nodes
name
localVar
AbstractNode
fromNode
toNode
name
var
dataFlow
dUse
params
Node
ConditionalNode
trueConditionNode
falseConditionNode
IterativeNode
trueConditionNode
falseConditionNode
nodes
Var
name
method
nodes
Param | null | {"directed":true,"nodes":[{"nsPrefix":"com.cs.tu.findrefactor","nsURI":"http://com/cs/tu/findrefactor","name":"CFG","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MControlFlowGraph","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AbstractNode","instanceClass":null,"abstract":true,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Node","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ConditionalNode","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IterativeNode","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Var","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Param","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"nodes","changeable":true,"resolveProxies":true,"lowerBound":0,"id":8,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":9,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"localVar","changeable":true,"resolveProxies":true,"lowerBound":0,"id":10,"derived":false},{"id":11,"eClass":"EGenericType"},{"id":12,"eClass":"EGenericType"},{"id":13,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"method","changeable":true,"resolveProxies":true,"lowerBound":0,"id":14,"derived":false},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"fromNode","changeable":true,"resolveProxies":true,"lowerBound":0,"id":15,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"toNode","changeable":true,"resolveProxies":true,"lowerBound":0,"id":16,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":17,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"var","changeable":true,"resolveProxies":true,"lowerBound":0,"id":18,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"dataFlow","changeable":true,"resolveProxies":true,"lowerBound":0,"id":19,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"dUse","changeable":true,"lowerBound":0,"iD":false,"id":20,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"params","changeable":true,"resolveProxies":true,"lowerBound":0,"id":21,"derived":false},{"id":22,"eClass":"EGenericType"},{"id":23,"eClass":"EGenericType"},{"id":24,"eClass":"EGenericType"},{"id":25,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"nodes","changeable":true,"resolveProxies":true,"lowerBound":0,"id":26,"derived":false},{"id":27,"eClass":"EGenericType"},{"id":28,"eClass":"EGenericType"},{"id":29,"eClass":"EGenericType"},{"id":30,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"trueConditionNode","changeable":true,"resolveProxies":true,"lowerBound":1,"id":31,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"falseConditionNode","changeable":true,"resolveProxies":true,"lowerBound":1,"id":32,"derived":false},{"id":33,"eClass":"EGenericType"},{"id":34,"eClass":"EGenericType"},{"id":35,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"trueConditionNode","changeable":true,"resolveProxies":true,"lowerBound":1,"id":36,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"falseConditionNode","changeable":true,"resolveProxies":true,"lowerBound":1,"id":37,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"nodes","changeable":true,"resolveProxies":true,"lowerBound":0,"id":38,"derived":false},{"id":39,"eClass":"EGenericType"},{"id":40,"eClass":"EGenericType"},{"id":41,"eClass":"EGenericType"},{"id":42,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":43,"derived":false},{"id":44,"eClass":"EGenericType"},{"id":45,"eClass":"EGenericType"},{"id":46,"eClass":"EGenericType"},{"id":47,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":1,"target":0},{"source":1,"target":8},{"source":1,"target":9},{"source":1,"target":10},{"source":8,"target":2},{"source":8,"target":11},{"source":8,"target":1},{"source":11,"target":2},{"source":9,"target":12},{"source":9,"target":1},{"source":10,"target":6},{"source":10,"target":13},{"source":10,"target":1},{"source":10,"target":14},{"source":13,"target":6},{"source":2,"target":0},{"source":2,"target":15},{"source":2,"target":16},{"source":2,"target":17},{"source":2,"target":18},{"source":2,"target":19},{"source":2,"target":20},{"source":2,"target":21},{"source":15,"target":2},{"source":15,"target":22},{"source":15,"target":2},{"source":15,"target":16},{"source":22,"target":2},{"source":16,"target":2},{"source":16,"target":23},{"source":16,"target":2},{"source":16,"target":15},{"source":23,"target":2},{"source":17,"target":24},{"source":17,"target":2},{"source":18,"target":6},{"source":18,"target":25},{"source":18,"target":2},{"source":18,"target":26},{"source":25,"target":6},{"source":19,"target":2},{"source":19,"target":27},{"source":19,"target":2},{"source":27,"target":2},{"source":20,"target":28},{"source":20,"target":2},{"source":21,"target":3},{"source":21,"target":29},{"source":21,"target":2},{"source":29,"target":3},{"source":3,"target":0},{"source":3,"target":2},{"source":3,"target":30},{"source":30,"target":2},{"source":4,"target":0},{"source":4,"target":2},{"source":4,"target":31},{"source":4,"target":32},{"source":4,"target":33},{"source":31,"target":3},{"source":31,"target":34},{"source":31,"target":4},{"source":34,"target":3},{"source":32,"target":3},{"source":32,"target":35},{"source":32,"target":4},{"source":35,"target":3},{"source":33,"target":2},{"source":5,"target":0},{"source":5,"target":2},{"source":5,"target":36},{"source":5,"target":37},{"source":5,"target":38},{"source":5,"target":39},{"source":36,"target":3},{"source":36,"target":40},{"source":36,"target":5},{"source":40,"target":3},{"source":37,"target":3},{"source":37,"target":41},{"source":37,"target":5},{"source":41,"target":3},{"source":38,"target":2},{"source":38,"target":42},{"source":38,"target":5},{"source":42,"target":2},{"source":39,"target":2},{"source":6,"target":0},{"source":6,"target":43},{"source":6,"target":14},{"source":6,"target":26},{"source":43,"target":44},{"source":43,"target":6},{"source":14,"target":1},{"source":14,"target":45},{"source":14,"target":6},{"source":14,"target":10},{"source":45,"target":1},{"source":26,"target":2},{"source":26,"target":46},{"source":26,"target":6},{"source":26,"target":18},{"source":46,"target":2},{"source":7,"target":0},{"source":7,"target":6},{"source":7,"target":47},{"source":47,"target":6}],"multigraph":true} |
false | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0"
xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="tsl"
nsURI="http://www.informatik.hu-berlin.de/sam/meta-tools/tef/tsl" nsPrefix="tsl">
<eClassifiers xsi:type="ecore:EClass" name="Syntax">
<eOperations name="getRccSyntax" lowerBound="1" eType="#//RccSyntax" eExceptions="#//TslException"/>
<eOperations name="getRulesForNonTerminal" upperBound="-1" eType="#//Rule" eExceptions="#//TslException">
<eParameters name="nonTerminal" lowerBound="1" eType="#//NonTerminal"/>
</eOperations>
<eOperations name="getRuleForRccRule" lowerBound="1" eType="#//Rule" eExceptions="#//TslException">
<eParameters name="rccRule" lowerBound="1" eType="#//RccRule"/>
</eOperations>
<eOperations name="check">
<eParameters name="context" lowerBound="1" eType="#//IModelCreatingContext"/>
</eOperations>
<eOperations name="getRulesForUsedNonTerminal" upperBound="-1" eType="#//Rule"
eExceptions="#//TslException">
<eParameters name="nonTerminal" lowerBound="1" eType="#//NonTerminal"/>
</eOperations>
<eOperations name="replaceExtendedRules">
<eParameters name="context" lowerBound="1" eType="#//IModelCreatingContext"/>
</eOperations>
<eOperations name="reduceSyntax" eExceptions="#//TslException">
<eParameters name="rootElementType" lowerBound="1" eType="ecore:EClass platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EClass"/>
</eOperations>
<eStructuralFeatures xsi:type="ecore:EReference" name="rules" upperBound="-1"
eType="#//Rule" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="start" lowerBound="1" eType="#//NonTerminal"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="pattern" upperBound="-1"
eType="#//Pattern" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="metaModelPlatformURI" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Rule" abstract="true">
<eOperations name="getRCCRule" lowerBound="1" eType="#//RccRule"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="lhs" lowerBound="1" eType="#//NonTerminal"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="valueBinding" eType="#//ValueBinding"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="priority" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="SimpleRule" eSuperTypes="#//Rule">
<eStructuralFeatures xsi:type="ecore:EReference" name="rhs" upperBound="-1" eType="#//Symbol"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Symbol" abstract="true">
<eOperations name="getRCCSymbol" lowerBound="1" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="propertyBinding" eType="#//PropertyBinding"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="actionBinding" eType="#//ActionBinding"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="NonTerminal" eSuperTypes="#//Symbol">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" lowerBound="1" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Terminal" abstract="true" eSuperTypes="#//Symbol"/>
<eClassifiers xsi:type="ecore:EClass" name="FixTerminal" eSuperTypes="#//Terminal">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="terminal" lowerBound="1"
eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="PatternTerminal" eSuperTypes="#//Terminal">
<eStructuralFeatures xsi:type="ecore:EReference" name="pattern" lowerBound="1"
eType="#//Pattern"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="WhiteSpace" eSuperTypes="#//Terminal">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="role" lowerBound="1" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Pattern">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="rccSymbol" lowerBound="1"
eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Binding">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="bindingId" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ValueBinding" abstract="true" eSuperTypes="#//Binding"/>
<eClassifiers xsi:type="ecore:EClass" name="ElementBinding" eSuperTypes="#//ValueBinding">
<eStructuralFeatures xsi:type="ecore:EReference" name="metaclass" lowerBound="1"
eType="ecore:EClass platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EClass"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ElementReferenceBinding" eSuperTypes="#//ElementBinding"/>
<eClassifiers xsi:type="ecore:EClass" name="PrimitiveBinding" eSuperTypes="#//ValueBinding"/>
<eClassifiers xsi:type="ecore:EClass" name="ConstantBinding" eSuperTypes="#//ValueBinding">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" lowerBound="1" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"
defaultValueLiteral="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="type" lowerBound="1" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="PropertyBinding" abstract="true" eSuperTypes="#//Binding">
<eStructuralFeatures xsi:type="ecore:EReference" name="property" lowerBound="1"
eType="ecore:EClass platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EStructuralFeature"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="default" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CompositeBinding" eSuperTypes="#//PropertyBinding"/>
<eClassifiers xsi:type="ecore:EClass" name="ReferenceBinding" eSuperTypes="#//PropertyBinding"/>
<eClassifiers xsi:type="ecore:EDataType" name="RccSyntax" instanceClassName="hub.sam.tef.rcc.syntax.Syntax"
serializable="false"/>
<eClassifiers xsi:type="ecore:EDataType" name="RccRule" instanceClassName="hub.sam.tef.rcc.syntax.Rule"
serializable="false"/>
<eClassifiers xsi:type="ecore:EDataType" name="IModelCreatingContext" instanceClassName="hub.sam.tef.modelcreating.IModelCreatingContext"/>
<eClassifiers xsi:type="ecore:EDataType" name="TslException" instanceClassName="hub.sam.tef.tsl.TslException"/>
<eClassifiers xsi:type="ecore:EClass" name="ActionBinding" eSuperTypes="#//Binding">
<eStructuralFeatures xsi:type="ecore:EReference" name="statements" upperBound="-1"
eType="#//Statement" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Statement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="methodName" lowerBound="1"
eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="methodParameters" upperBound="-1"
eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt"/>
</eClassifiers>
</ecore:EPackage>
| github:ecore:/data/BackupTheBerlios/tef-svn/tags/2008-09-05_release_1.0.6/hub.sam.tef/resources/models/tsl.ecore | ecore | tsl
Syntax
getRccSyntax
getRulesForNonTerminal
nonTerminal
getRuleForRccRule
rccRule
check
context
getRulesForUsedNonTerminal
nonTerminal
replaceExtendedRules
context
reduceSyntax
rootElementType
rules
start
pattern
metaModelPlatformURI
Rule
getRCCRule
lhs
valueBinding
priority
SimpleRule
rhs
Symbol
getRCCSymbol
propertyBinding
actionBinding
NonTerminal
name
Terminal
FixTerminal
terminal
PatternTerminal
pattern
WhiteSpace
role
Pattern
rccSymbol
Binding
bindingId
ValueBinding
ElementBinding
metaclass
ElementReferenceBinding
PrimitiveBinding
ConstantBinding
value
true
type
PropertyBinding
property
default
CompositeBinding
ReferenceBinding
RccSyntax
hub.sam.tef.rcc.syntax.Syntax
hub.sam.tef.rcc.syntax.Syntax
RccRule
hub.sam.tef.rcc.syntax.Rule
hub.sam.tef.rcc.syntax.Rule
IModelCreatingContext
hub.sam.tef.modelcreating.IModelCreatingContext
hub.sam.tef.modelcreating.IModelCreatingContext
TslException
hub.sam.tef.tsl.TslException
hub.sam.tef.tsl.TslException
ActionBinding
statements
Statement
methodName
methodParameters | null | {"directed":true,"nodes":[{"nsPrefix":"tsl","nsURI":"http://www.informatik.hu-berlin.de/sam/meta-tools/tef/tsl","name":"tsl","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Syntax","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Rule","instanceClass":null,"abstract":true,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SimpleRule","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Symbol","instanceClass":null,"abstract":true,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NonTerminal","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Terminal","instanceClass":null,"abstract":true,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FixTerminal","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PatternTerminal","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"WhiteSpace","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Pattern","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Binding","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ValueBinding","instanceClass":null,"abstract":true,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ElementBinding","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ElementReferenceBinding","instanceClass":null,"abstract":false,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PrimitiveBinding","instanceClass":null,"abstract":false,"id":15,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ConstantBinding","instanceClass":null,"abstract":false,"id":16,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PropertyBinding","instanceClass":null,"abstract":true,"id":17,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CompositeBinding","instanceClass":null,"abstract":false,"id":18,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ReferenceBinding","instanceClass":null,"abstract":false,"id":19,"interface":false,"eClass":"EClass"},{"instanceTypeName":"hub.sam.tef.rcc.syntax.Syntax","defaultValue":null,"instanceClassName":"hub.sam.tef.rcc.syntax.Syntax","name":"RccSyntax","instanceClass":null,"id":20,"serializable":false,"eClass":"EDataType"},{"instanceTypeName":"hub.sam.tef.rcc.syntax.Rule","defaultValue":null,"instanceClassName":"hub.sam.tef.rcc.syntax.Rule","name":"RccRule","instanceClass":null,"id":21,"serializable":false,"eClass":"EDataType"},{"instanceTypeName":"hub.sam.tef.modelcreating.IModelCreatingContext","defaultValue":null,"instanceClassName":"hub.sam.tef.modelcreating.IModelCreatingContext","name":"IModelCreatingContext","instanceClass":null,"id":22,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"hub.sam.tef.tsl.TslException","defaultValue":null,"instanceClassName":"hub.sam.tef.tsl.TslException","name":"TslException","instanceClass":null,"id":23,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ActionBinding","instanceClass":null,"abstract":false,"id":24,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Statement","instanceClass":null,"abstract":false,"id":25,"interface":false,"eClass":"EClass"},{"ordered":true,"upperBound":1,"unique":true,"name":"getRccSyntax","lowerBound":1,"id":26,"many":false,"required":true,"eClass":"EOperation"},{"ordered":true,"upperBound":-1,"unique":true,"name":"getRulesForNonTerminal","lowerBound":0,"id":27,"many":true,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getRuleForRccRule","lowerBound":1,"id":28,"many":false,"required":true,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"check","lowerBound":0,"id":29,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":-1,"unique":true,"name":"getRulesForUsedNonTerminal","lowerBound":0,"id":30,"many":true,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"replaceExtendedRules","lowerBound":0,"id":31,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"reduceSyntax","lowerBound":0,"id":32,"many":false,"required":false,"eClass":"EOperation"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"rules","changeable":true,"resolveProxies":true,"lowerBound":0,"id":33,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"start","changeable":true,"resolveProxies":true,"lowerBound":1,"id":34,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"pattern","changeable":true,"resolveProxies":true,"lowerBound":0,"id":35,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"metaModelPlatformURI","changeable":true,"lowerBound":0,"iD":false,"id":36,"derived":false},{"id":37,"eClass":"EGenericType"},{"id":38,"eClass":"EGenericType"},{"id":39,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"nonTerminal","lowerBound":1,"id":40,"many":false,"required":true,"eClass":"EParameter"},{"id":41,"eClass":"EGenericType"},{"id":42,"eClass":"EGenericType"},{"id":43,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"rccRule","lowerBound":1,"id":44,"many":false,"required":true,"eClass":"EParameter"},{"id":45,"eClass":"EGenericType"},{"id":46,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"context","lowerBound":1,"id":47,"many":false,"required":true,"eClass":"EParameter"},{"id":48,"eClass":"EGenericType"},{"id":49,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"nonTerminal","lowerBound":1,"id":50,"many":false,"required":true,"eClass":"EParameter"},{"id":51,"eClass":"EGenericType"},{"id":52,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"context","lowerBound":1,"id":53,"many":false,"required":true,"eClass":"EParameter"},{"id":54,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"rootElementType","lowerBound":1,"id":55,"many":false,"required":true,"eClass":"EParameter"},{"id":56,"eClass":"EGenericType"},{"id":57,"eClass":"EGenericType"},{"id":58,"eClass":"EGenericType"},{"id":59,"eClass":"EGenericType"},{"id":60,"eClass":"EGenericType"},{"id":61,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"getRCCRule","lowerBound":1,"id":62,"many":false,"required":true,"eClass":"EOperation"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"lhs","changeable":true,"resolveProxies":true,"lowerBound":1,"id":63,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"valueBinding","changeable":true,"resolveProxies":true,"lowerBound":0,"id":64,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"priority","changeable":true,"lowerBound":0,"iD":false,"id":65,"derived":false},{"id":66,"eClass":"EGenericType"},{"id":67,"eClass":"EGenericType"},{"id":68,"eClass":"EGenericType"},{"id":69,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"rhs","changeable":true,"resolveProxies":true,"lowerBound":0,"id":70,"derived":false},{"id":71,"eClass":"EGenericType"},{"id":72,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"getRCCSymbol","lowerBound":1,"id":73,"many":false,"required":true,"eClass":"EOperation"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"propertyBinding","changeable":true,"resolveProxies":true,"lowerBound":0,"id":74,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"actionBinding","changeable":true,"resolveProxies":true,"lowerBound":0,"id":75,"derived":false},{"id":76,"eClass":"EGenericType"},{"id":77,"eClass":"EGenericType"},{"id":78,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":79,"derived":false},{"id":80,"eClass":"EGenericType"},{"id":81,"eClass":"EGenericType"},{"id":82,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"terminal","changeable":true,"lowerBound":1,"iD":false,"id":83,"derived":false},{"id":84,"eClass":"EGenericType"},{"id":85,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"pattern","changeable":true,"resolveProxies":true,"lowerBound":1,"id":86,"derived":false},{"id":87,"eClass":"EGenericType"},{"id":88,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"role","changeable":true,"lowerBound":1,"iD":false,"id":89,"derived":false},{"id":90,"eClass":"EGenericType"},{"id":91,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"rccSymbol","changeable":true,"lowerBound":1,"iD":false,"id":92,"derived":false},{"id":93,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"bindingId","changeable":true,"lowerBound":0,"iD":false,"id":94,"derived":false},{"id":95,"eClass":"EGenericType"},{"id":96,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"metaclass","changeable":true,"resolveProxies":true,"lowerBound":1,"id":97,"derived":false},{"id":98,"eClass":"EGenericType"},{"id":99,"eClass":"EGenericType"},{"id":100,"eClass":"EGenericType"},{"id":101,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"true","unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":1,"iD":false,"id":102,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"lowerBound":1,"iD":false,"id":103,"derived":false},{"id":104,"eClass":"EGenericType"},{"id":105,"eClass":"EGenericType"},{"id":106,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"property","changeable":true,"resolveProxies":true,"lowerBound":1,"id":107,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"default","changeable":true,"lowerBound":0,"iD":false,"id":108,"derived":false},{"id":109,"eClass":"EGenericType"},{"id":110,"eClass":"EGenericType"},{"id":111,"eClass":"EGenericType"},{"id":112,"eClass":"EGenericType"},{"id":113,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"statements","changeable":true,"resolveProxies":true,"lowerBound":0,"id":114,"derived":false},{"id":115,"eClass":"EGenericType"},{"id":116,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"methodName","changeable":true,"lowerBound":1,"iD":false,"id":117,"derived":false},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"methodParameters","changeable":true,"lowerBound":0,"iD":false,"id":118,"derived":false},{"id":119,"eClass":"EGenericType"},{"id":120,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":0,"target":8},{"source":0,"target":9},{"source":0,"target":10},{"source":0,"target":11},{"source":0,"target":12},{"source":0,"target":13},{"source":0,"target":14},{"source":0,"target":15},{"source":0,"target":16},{"source":0,"target":17},{"source":0,"target":18},{"source":0,"target":19},{"source":0,"target":20},{"source":0,"target":21},{"source":0,"target":22},{"source":0,"target":23},{"source":0,"target":24},{"source":0,"target":25},{"source":1,"target":0},{"source":1,"target":26},{"source":1,"target":27},{"source":1,"target":28},{"source":1,"target":29},{"source":1,"target":30},{"source":1,"target":31},{"source":1,"target":32},{"source":1,"target":33},{"source":1,"target":34},{"source":1,"target":35},{"source":1,"target":36},{"source":26,"target":20},{"source":26,"target":37},{"source":26,"target":1},{"source":26,"target":23},{"source":26,"target":38},{"source":37,"target":20},{"source":38,"target":23},{"source":27,"target":2},{"source":27,"target":39},{"source":27,"target":1},{"source":27,"target":40},{"source":27,"target":23},{"source":27,"target":41},{"source":39,"target":2},{"source":40,"target":5},{"source":40,"target":42},{"source":40,"target":27},{"source":42,"target":5},{"source":41,"target":23},{"source":28,"target":2},{"source":28,"target":43},{"source":28,"target":1},{"source":28,"target":44},{"source":28,"target":23},{"source":28,"target":45},{"source":43,"target":2},{"source":44,"target":21},{"source":44,"target":46},{"source":44,"target":28},{"source":46,"target":21},{"source":45,"target":23},{"source":29,"target":1},{"source":29,"target":47},{"source":47,"target":22},{"source":47,"target":48},{"source":47,"target":29},{"source":48,"target":22},{"source":30,"target":2},{"source":30,"target":49},{"source":30,"target":1},{"source":30,"target":50},{"source":30,"target":23},{"source":30,"target":51},{"source":49,"target":2},{"source":50,"target":5},{"source":50,"target":52},{"source":50,"target":30},{"source":52,"target":5},{"source":51,"target":23},{"source":31,"target":1},{"source":31,"target":53},{"source":53,"target":22},{"source":53,"target":54},{"source":53,"target":31},{"source":54,"target":22},{"source":32,"target":1},{"source":32,"target":55},{"source":32,"target":23},{"source":32,"target":56},{"source":55,"target":57},{"source":55,"target":32},{"source":56,"target":23},{"source":33,"target":2},{"source":33,"target":58},{"source":33,"target":1},{"source":58,"target":2},{"source":34,"target":5},{"source":34,"target":59},{"source":34,"target":1},{"source":59,"target":5},{"source":35,"target":10},{"source":35,"target":60},{"source":35,"target":1},{"source":60,"target":10},{"source":36,"target":61},{"source":36,"target":1},{"source":2,"target":0},{"source":2,"target":62},{"source":2,"target":63},{"source":2,"target":64},{"source":2,"target":65},{"source":62,"target":21},{"source":62,"target":66},{"source":62,"target":2},{"source":66,"target":21},{"source":63,"target":5},{"source":63,"target":67},{"source":63,"target":2},{"source":67,"target":5},{"source":64,"target":12},{"source":64,"target":68},{"source":64,"target":2},{"source":68,"target":12},{"source":65,"target":69},{"source":65,"target":2},{"source":3,"target":0},{"source":3,"target":2},{"source":3,"target":70},{"source":3,"target":71},{"source":70,"target":4},{"source":70,"target":72},{"source":70,"target":3},{"source":72,"target":4},{"source":71,"target":2},{"source":4,"target":0},{"source":4,"target":73},{"source":4,"target":74},{"source":4,"target":75},{"source":73,"target":76},{"source":73,"target":4},{"source":74,"target":17},{"source":74,"target":77},{"source":74,"target":4},{"source":77,"target":17},{"source":75,"target":24},{"source":75,"target":78},{"source":75,"target":4},{"source":78,"target":24},{"source":5,"target":0},{"source":5,"target":4},{"source":5,"target":79},{"source":5,"target":80},{"source":79,"target":81},{"source":79,"target":5},{"source":80,"target":4},{"source":6,"target":0},{"source":6,"target":4},{"source":6,"target":82},{"source":82,"target":4},{"source":7,"target":0},{"source":7,"target":6},{"source":7,"target":83},{"source":7,"target":84},{"source":83,"target":85},{"source":83,"target":7},{"source":84,"target":6},{"source":8,"target":0},{"source":8,"target":6},{"source":8,"target":86},{"source":8,"target":87},{"source":86,"target":10},{"source":86,"target":88},{"source":86,"target":8},{"source":88,"target":10},{"source":87,"target":6},{"source":9,"target":0},{"source":9,"target":6},{"source":9,"target":89},{"source":9,"target":90},{"source":89,"target":91},{"source":89,"target":9},{"source":90,"target":6},{"source":10,"target":0},{"source":10,"target":92},{"source":92,"target":93},{"source":92,"target":10},{"source":11,"target":0},{"source":11,"target":94},{"source":94,"target":95},{"source":94,"target":11},{"source":12,"target":0},{"source":12,"target":11},{"source":12,"target":96},{"source":96,"target":11},{"source":13,"target":0},{"source":13,"target":12},{"source":13,"target":97},{"source":13,"target":98},{"source":97,"target":99},{"source":97,"target":13},{"source":98,"target":12},{"source":14,"target":0},{"source":14,"target":13},{"source":14,"target":100},{"source":100,"target":13},{"source":15,"target":0},{"source":15,"target":12},{"source":15,"target":101},{"source":101,"target":12},{"source":16,"target":0},{"source":16,"target":12},{"source":16,"target":102},{"source":16,"target":103},{"source":16,"target":104},{"source":102,"target":105},{"source":102,"target":16},{"source":103,"target":106},{"source":103,"target":16},{"source":104,"target":12},{"source":17,"target":0},{"source":17,"target":11},{"source":17,"target":107},{"source":17,"target":108},{"source":17,"target":109},{"source":107,"target":110},{"source":107,"target":17},{"source":108,"target":111},{"source":108,"target":17},{"source":109,"target":11},{"source":18,"target":0},{"source":18,"target":17},{"source":18,"target":112},{"source":112,"target":17},{"source":19,"target":0},{"source":19,"target":17},{"source":19,"target":113},{"source":113,"target":17},{"source":20,"target":0},{"source":21,"target":0},{"source":22,"target":0},{"source":23,"target":0},{"source":24,"target":0},{"source":24,"target":11},{"source":24,"target":114},{"source":24,"target":115},{"source":114,"target":25},{"source":114,"target":116},{"source":114,"target":24},{"source":116,"target":25},{"source":115,"target":11},{"source":25,"target":0},{"source":25,"target":117},{"source":25,"target":118},{"source":117,"target":119},{"source":117,"target":25},{"source":118,"target":120},{"source":118,"target":25}],"multigraph":true} |
true | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="api" nsURI="http://eclipse.org/component-api" nsPrefix="api">
<eClassifiers xsi:type="ecore:EClass" name="ApiTypes">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="api-types"/>
<details key="kind" value="elementOnly"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="package" lowerBound="1"
upperBound="-1" eType="#//Package" containment="true" resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="package"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ClassApi">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="class-api"/>
<details key="kind" value="elementOnly"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="methodApi" lowerBound="1"
upperBound="-1" eType="#//MethodApi" containment="true" resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="method-api"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="fieldApi" lowerBound="1"
upperBound="-1" eType="#//FieldApi" containment="true" resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="field-api"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="implement" unique="false"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//Boolean"
defaultValueLiteral="true" unsettable="true">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="implement"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="instantiate" unique="false"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//Boolean"
defaultValueLiteral="true" unsettable="true">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="instantiate"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" unique="false" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="name"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="reference" unique="false"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//Boolean"
defaultValueLiteral="true" unsettable="true">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="reference"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="subclass" unique="false"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//Boolean"
defaultValueLiteral="true" unsettable="true">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="subclass"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ComponentApiType">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="component-api_._type"/>
<details key="kind" value="elementOnly"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="internalApis" lowerBound="1"
eType="#//ApiTypes" containment="true" resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="internal-apis"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="externalApis" lowerBound="1"
eType="#//ApiTypes" containment="true" resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="external-apis"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" unique="false" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="
						The component name; e.g. "Eclipse Platform
						Generic Workbench"; note that this name is used
						to refer to the component and distinguish it
						from other components (but otherwise has no
						official status in Eclipse ontology)
					"/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="name"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="version" unique="false"
lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="version"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="DocumentRoot">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value=""/>
<details key="kind" value="mixed"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="mixed" unique="false" upperBound="-1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFeatureMapEntry">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="elementWildcard"/>
<details key="name" value=":mixed"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="xMLNSPrefixMap" unique="false"
upperBound="-1" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EStringToStringMapEntry"
transient="true" resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="xmlns:prefix"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="xSISchemaLocation" unique="false"
upperBound="-1" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EStringToStringMapEntry"
transient="true" resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="xsi:schemaLocation"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="componentApi" upperBound="-2"
eType="#//ComponentApiType" volatile="true" transient="true" derived="true"
containment="true" resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="component-api"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="FieldApi">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="field-api"/>
<details key="kind" value="empty"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="final" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//Boolean"
unsettable="true">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="final"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" unique="false" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="name"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="static" unique="false"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//Boolean"
unsettable="true">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="static"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="transient" unique="false"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//Boolean"
unsettable="true">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="transient"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="type" unique="false" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="type"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="visibility" unique="false"
lowerBound="1" eType="#//Visibility" defaultValueLiteral="public" unsettable="true">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="visibility"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="volatile" unique="false"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//Boolean"
unsettable="true">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="volatile"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="ListOfTypes" instanceClassName="java.util.List">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="list-of-types"/>
<details key="itemType" value="http://www.eclipse.org/emf/2003/XMLType#string"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="MethodApi">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="method-api"/>
<details key="kind" value="empty"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="abstract" unique="false"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//Boolean"
unsettable="true">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="abstract"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="exceptionType" unique="false"
eType="#//ListOfTypes">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="exception-type"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="final" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//Boolean"
unsettable="true">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="final"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="inputType" unique="false"
eType="#//ListOfTypes">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="input-type"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" unique="false" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="name"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="native" unique="false"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//Boolean"
unsettable="true">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="native"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="returnType" unique="false"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="return-type"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="static" unique="false"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//Boolean"
unsettable="true">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="static"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="strict" unique="false"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//Boolean"
unsettable="true">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="strict"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="synchronized" unique="false"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//Boolean"
unsettable="true">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="synchronized"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="visibility" unique="false"
lowerBound="1" eType="#//Visibility" defaultValueLiteral="public" unsettable="true">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="visibility"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Package">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="package"/>
<details key="kind" value="elementOnly"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="classApi" lowerBound="1"
upperBound="-1" eType="#//ClassApi" containment="true" resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="class-api"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" unique="false" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="name"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="Visibility">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="visibility"/>
</eAnnotations>
<eLiterals name="public"/>
<eLiterals name="protected" value="1"/>
<eLiterals name="private" value="2"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="VisibilityObject" instanceClassName="org.eclipse.emf.common.util.AbstractEnumerator">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="visibility:Object"/>
<details key="baseType" value="visibility"/>
</eAnnotations>
</eClassifiers>
</ecore:EPackage>
| github:ecore:/data/MagMar94/ParmorelExperimentResults/Experiments/Experiment-distance-impact/original-distance/RelaxationCloseDistance/15_org.eclipse.component.api.ecore | ecore | api
ApiTypes
package
ClassApi
methodApi
fieldApi
implement
true
instantiate
true
name
reference
true
subclass
true
ComponentApiType
internalApis
externalApis
name
version
DocumentRoot
mixed
xMLNSPrefixMap
xSISchemaLocation
componentApi
FieldApi
final
name
static
transient
type
visibility
public
volatile
ListOfTypes
java.util.List
java.util.List
MethodApi
abstract
exceptionType
final
inputType
name
native
returnType
static
strict
synchronized
visibility
public
Package
classApi
name
Visibility
public
public
protected
protected
private
private
VisibilityObject
org.eclipse.emf.common.util.AbstractEnumerator
org.eclipse.emf.common.util.AbstractEnumerator | null | {"directed":true,"nodes":[{"nsPrefix":"api","nsURI":"http://eclipse.org/component-api","name":"api","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ApiTypes","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ClassApi","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ComponentApiType","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DocumentRoot","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FieldApi","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":"java.util.List","defaultValue":null,"instanceClassName":"java.util.List","name":"ListOfTypes","instanceClass":"java.util.List","id":6,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MethodApi","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Package","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"Visibility","instanceClass":null,"id":9,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":"org.eclipse.emf.common.util.AbstractEnumerator","defaultValue":null,"instanceClassName":"org.eclipse.emf.common.util.AbstractEnumerator","name":"VisibilityObject","instanceClass":"org.eclipse.emf.common.util.AbstractEnumerator","id":10,"serializable":true,"eClass":"EDataType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"package","changeable":true,"resolveProxies":false,"lowerBound":1,"id":11,"derived":false},{"id":12,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"methodApi","changeable":true,"resolveProxies":false,"lowerBound":1,"id":13,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"fieldApi","changeable":true,"resolveProxies":false,"lowerBound":1,"id":14,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":true,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"true","unsettable":true,"transient":false,"unique":false,"name":"implement","changeable":true,"lowerBound":0,"iD":false,"id":15,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":true,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"true","unsettable":true,"transient":false,"unique":false,"name":"instantiate","changeable":true,"lowerBound":0,"iD":false,"id":16,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":17,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":true,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"true","unsettable":true,"transient":false,"unique":false,"name":"reference","changeable":true,"lowerBound":0,"iD":false,"id":18,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":true,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"true","unsettable":true,"transient":false,"unique":false,"name":"subclass","changeable":true,"lowerBound":0,"iD":false,"id":19,"derived":false},{"id":20,"eClass":"EGenericType"},{"id":21,"eClass":"EGenericType"},{"id":22,"eClass":"EGenericType"},{"id":23,"eClass":"EGenericType"},{"id":24,"eClass":"EGenericType"},{"id":25,"eClass":"EGenericType"},{"id":26,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"internalApis","changeable":true,"resolveProxies":false,"lowerBound":1,"id":27,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"externalApis","changeable":true,"resolveProxies":false,"lowerBound":1,"id":28,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":29,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"version","changeable":true,"lowerBound":1,"iD":false,"id":30,"derived":false},{"id":31,"eClass":"EGenericType"},{"id":32,"eClass":"EGenericType"},{"id":33,"eClass":"EGenericType"},{"id":34,"eClass":"EGenericType"},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"mixed","changeable":true,"lowerBound":0,"iD":false,"id":35,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":false,"name":"xMLNSPrefixMap","changeable":true,"resolveProxies":false,"lowerBound":0,"id":36,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":false,"name":"xSISchemaLocation","changeable":true,"resolveProxies":false,"lowerBound":0,"id":37,"derived":false},{"container":false,"ordered":true,"upperBound":-2,"defaultValue":null,"volatile":true,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":true,"unique":true,"name":"componentApi","changeable":true,"resolveProxies":false,"lowerBound":0,"id":38,"derived":true},{"id":39,"eClass":"EGenericType"},{"id":40,"eClass":"EGenericType"},{"id":41,"eClass":"EGenericType"},{"id":42,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":false,"name":"final","changeable":true,"lowerBound":0,"iD":false,"id":43,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":44,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":false,"name":"static","changeable":true,"lowerBound":0,"iD":false,"id":45,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":false,"name":"transient","changeable":true,"lowerBound":0,"iD":false,"id":46,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"type","changeable":true,"lowerBound":1,"iD":false,"id":47,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"public","unsettable":true,"transient":false,"unique":false,"name":"visibility","changeable":true,"lowerBound":1,"iD":false,"id":48,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":false,"name":"volatile","changeable":true,"lowerBound":0,"iD":false,"id":49,"derived":false},{"id":50,"eClass":"EGenericType"},{"id":51,"eClass":"EGenericType"},{"id":52,"eClass":"EGenericType"},{"id":53,"eClass":"EGenericType"},{"id":54,"eClass":"EGenericType"},{"id":55,"eClass":"EGenericType"},{"id":56,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":false,"name":"abstract","changeable":true,"lowerBound":0,"iD":false,"id":57,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"exceptionType","changeable":true,"lowerBound":0,"iD":false,"id":58,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":false,"name":"final","changeable":true,"lowerBound":0,"iD":false,"id":59,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"inputType","changeable":true,"lowerBound":0,"iD":false,"id":60,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":61,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":false,"name":"native","changeable":true,"lowerBound":0,"iD":false,"id":62,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"returnType","changeable":true,"lowerBound":0,"iD":false,"id":63,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":false,"name":"static","changeable":true,"lowerBound":0,"iD":false,"id":64,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":false,"name":"strict","changeable":true,"lowerBound":0,"iD":false,"id":65,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":false,"name":"synchronized","changeable":true,"lowerBound":0,"iD":false,"id":66,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"public","unsettable":true,"transient":false,"unique":false,"name":"visibility","changeable":true,"lowerBound":1,"iD":false,"id":67,"derived":false},{"id":68,"eClass":"EGenericType"},{"id":69,"eClass":"EGenericType"},{"id":70,"eClass":"EGenericType"},{"id":71,"eClass":"EGenericType"},{"id":72,"eClass":"EGenericType"},{"id":73,"eClass":"EGenericType"},{"id":74,"eClass":"EGenericType"},{"id":75,"eClass":"EGenericType"},{"id":76,"eClass":"EGenericType"},{"id":77,"eClass":"EGenericType"},{"id":78,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"classApi","changeable":true,"resolveProxies":false,"lowerBound":1,"id":79,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":80,"derived":false},{"id":81,"eClass":"EGenericType"},{"id":82,"eClass":"EGenericType"},{"name":"public","id":83,"value":0,"literal":"public","eClass":"EEnumLiteral"},{"name":"protected","id":84,"value":1,"literal":"protected","eClass":"EEnumLiteral"},{"name":"private","id":85,"value":2,"literal":"private","eClass":"EEnumLiteral"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":0,"target":8},{"source":0,"target":9},{"source":0,"target":10},{"source":1,"target":0},{"source":1,"target":11},{"source":11,"target":8},{"source":11,"target":12},{"source":11,"target":1},{"source":12,"target":8},{"source":2,"target":0},{"source":2,"target":13},{"source":2,"target":14},{"source":2,"target":15},{"source":2,"target":16},{"source":2,"target":17},{"source":2,"target":18},{"source":2,"target":19},{"source":13,"target":7},{"source":13,"target":20},{"source":13,"target":2},{"source":20,"target":7},{"source":14,"target":5},{"source":14,"target":21},{"source":14,"target":2},{"source":21,"target":5},{"source":15,"target":22},{"source":15,"target":2},{"source":16,"target":23},{"source":16,"target":2},{"source":17,"target":24},{"source":17,"target":2},{"source":18,"target":25},{"source":18,"target":2},{"source":19,"target":26},{"source":19,"target":2},{"source":3,"target":0},{"source":3,"target":27},{"source":3,"target":28},{"source":3,"target":29},{"source":3,"target":30},{"source":27,"target":1},{"source":27,"target":31},{"source":27,"target":3},{"source":31,"target":1},{"source":28,"target":1},{"source":28,"target":32},{"source":28,"target":3},{"source":32,"target":1},{"source":29,"target":33},{"source":29,"target":3},{"source":30,"target":34},{"source":30,"target":3},{"source":4,"target":0},{"source":4,"target":35},{"source":4,"target":36},{"source":4,"target":37},{"source":4,"target":38},{"source":35,"target":39},{"source":35,"target":4},{"source":36,"target":40},{"source":36,"target":4},{"source":37,"target":41},{"source":37,"target":4},{"source":38,"target":3},{"source":38,"target":42},{"source":38,"target":4},{"source":42,"target":3},{"source":5,"target":0},{"source":5,"target":43},{"source":5,"target":44},{"source":5,"target":45},{"source":5,"target":46},{"source":5,"target":47},{"source":5,"target":48},{"source":5,"target":49},{"source":43,"target":50},{"source":43,"target":5},{"source":44,"target":51},{"source":44,"target":5},{"source":45,"target":52},{"source":45,"target":5},{"source":46,"target":53},{"source":46,"target":5},{"source":47,"target":54},{"source":47,"target":5},{"source":48,"target":9},{"source":48,"target":55},{"source":48,"target":5},{"source":55,"target":9},{"source":49,"target":56},{"source":49,"target":5},{"source":6,"target":0},{"source":7,"target":0},{"source":7,"target":57},{"source":7,"target":58},{"source":7,"target":59},{"source":7,"target":60},{"source":7,"target":61},{"source":7,"target":62},{"source":7,"target":63},{"source":7,"target":64},{"source":7,"target":65},{"source":7,"target":66},{"source":7,"target":67},{"source":57,"target":68},{"source":57,"target":7},{"source":58,"target":6},{"source":58,"target":69},{"source":58,"target":7},{"source":69,"target":6},{"source":59,"target":70},{"source":59,"target":7},{"source":60,"target":6},{"source":60,"target":71},{"source":60,"target":7},{"source":71,"target":6},{"source":61,"target":72},{"source":61,"target":7},{"source":62,"target":73},{"source":62,"target":7},{"source":63,"target":74},{"source":63,"target":7},{"source":64,"target":75},{"source":64,"target":7},{"source":65,"target":76},{"source":65,"target":7},{"source":66,"target":77},{"source":66,"target":7},{"source":67,"target":9},{"source":67,"target":78},{"source":67,"target":7},{"source":78,"target":9},{"source":8,"target":0},{"source":8,"target":79},{"source":8,"target":80},{"source":79,"target":2},{"source":79,"target":81},{"source":79,"target":8},{"source":81,"target":2},{"source":80,"target":82},{"source":80,"target":8},{"source":9,"target":0},{"source":9,"target":83},{"source":9,"target":84},{"source":9,"target":85},{"source":83,"target":9},{"source":84,"target":9},{"source":85,"target":9},{"source":10,"target":0}],"multigraph":true} |
false | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="UML2" nsURI="http:///UML2.ecore" nsPrefix="UML2">
<eClassifiers xsi:type="ecore:EEnum" name="AggregationKind">
<eLiterals name="composite" value="1" literal="composite"/>
<eLiterals name="none" value="2" literal="none"/>
<eLiterals name="shared" value="3" literal="shared"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="ParameterDirectionKind">
<eLiterals name="in" value="1" literal="in"/>
<eLiterals name="inout" value="2" literal="inout"/>
<eLiterals name="out" value="3" literal="out"/>
<eLiterals name="return" value="4" literal="return"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="VisibilityKind">
<eLiterals name="package" value="1" literal="package"/>
<eLiterals name="private" value="2" literal="private"/>
<eLiterals name="protected" value="3" literal="protected"/>
<eLiterals name="public" value="4" literal="public"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="State" eSuperTypes="#//Namespace #//RedefinableElement #//Vertex"/>
<eClassifiers xsi:type="ecore:EClass" name="Stop" eSuperTypes="#//EventOccurrence"/>
<eClassifiers xsi:type="ecore:EClass" name="ExecutionOccurrence" eSuperTypes="#//InteractionFragment"/>
<eClassifiers xsi:type="ecore:EClass" name="UseCase" eSuperTypes="#//BehavioredClassifier"/>
<eClassifiers xsi:type="ecore:EClass" name="ControlNode" eSuperTypes="#//ActivityNode"/>
<eClassifiers xsi:type="ecore:EClass" name="CallBehaviorAction" eSuperTypes="#//CallAction"/>
<eClassifiers xsi:type="ecore:EClass" name="ObjectFlow" eSuperTypes="#//ActivityEdge"/>
<eClassifiers xsi:type="ecore:EClass" name="GeneralizationSet" eSuperTypes="#//PackageableElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="generalization" upperBound="-1"
eType="#//Generalization"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="InteractionFragment" eSuperTypes="#//NamedElement"/>
<eClassifiers xsi:type="ecore:EClass" name="ConditionalNode" eSuperTypes="#//StructuredActivityNode"/>
<eClassifiers xsi:type="ecore:EClass" name="ValuePin" eSuperTypes="#//InputPin"/>
<eClassifiers xsi:type="ecore:EClass" name="InteractionOperand" eSuperTypes="#//Namespace #//InteractionFragment"/>
<eClassifiers xsi:type="ecore:EClass" name="Trigger" eSuperTypes="#//NamedElement"/>
<eClassifiers xsi:type="ecore:EClass" name="AddStructuralFeatureValueAction" eSuperTypes="#//WriteStructuralFeatureAction"/>
<eClassifiers xsi:type="ecore:EClass" name="ParameterSet" eSuperTypes="#//NamedElement"/>
<eClassifiers xsi:type="ecore:EClass" name="TemplateBinding" eSuperTypes="#//DirectedRelationship"/>
<eClassifiers xsi:type="ecore:EClass" name="Parameter" eSuperTypes="#//ConnectableElement #//TypedElement #//MultiplicityElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="direction" eType="#//ParameterDirectionKind"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="AnyTrigger" eSuperTypes="#//MessageTrigger"/>
<eClassifiers xsi:type="ecore:EClass" name="ParameterableClassifier" eSuperTypes="#//Classifier"/>
<eClassifiers xsi:type="ecore:EClass" name="StructuredClassifier" eSuperTypes="#//Classifier"/>
<eClassifiers xsi:type="ecore:EClass" name="Property" eSuperTypes="#//StructuralFeature #//ConnectableElement #//DeploymentTarget">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isComposite" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isDerived" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isDerivedUnion" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="aggregation" eType="#//AggregationKind"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="subsettedProperty" upperBound="-1"
eType="#//Property"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="association" eType="#//Association"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="qualifier" upperBound="-1"
eType="#//Property" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Pseudostate" eSuperTypes="#//Vertex"/>
<eClassifiers xsi:type="ecore:EClass" name="FlowFinalNode" eSuperTypes="#//FinalNode"/>
<eClassifiers xsi:type="ecore:EClass" name="TemplateSignature" eSuperTypes="#//Element"/>
<eClassifiers xsi:type="ecore:EClass" name="ParameterableElement" eSuperTypes="#//Element"/>
<eClassifiers xsi:type="ecore:EClass" name="FinalNode" eSuperTypes="#//ControlNode"/>
<eClassifiers xsi:type="ecore:EClass" name="DeploymentSpecification" eSuperTypes="#//Artifact"/>
<eClassifiers xsi:type="ecore:EClass" name="DecisionNode" eSuperTypes="#//ControlNode"/>
<eClassifiers xsi:type="ecore:EClass" name="PackageableElement" eSuperTypes="#//NamedElement #//ParameterableElement"/>
<eClassifiers xsi:type="ecore:EClass" name="ActivityPartition" eSuperTypes="#//NamedElement #//ActivityGroup"/>
<eClassifiers xsi:type="ecore:EClass" name="NamedElement" eSuperTypes="#//TemplateableElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="visibility" eType="#//VisibilityKind"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ControlFlow" eSuperTypes="#//ActivityEdge"/>
<eClassifiers xsi:type="ecore:EClass" name="Pin" eSuperTypes="#//ObjectNode #//MultiplicityElement"/>
<eClassifiers xsi:type="ecore:EClass" name="MessageEnd" eSuperTypes="#//NamedElement"/>
<eClassifiers xsi:type="ecore:EClass" name="Profile" eSuperTypes="#//Package"/>
<eClassifiers xsi:type="ecore:EClass" name="DeploymentTarget" eSuperTypes="#//NamedElement"/>
<eClassifiers xsi:type="ecore:EClass" name="Duration" eSuperTypes="#//ValueSpecification"/>
<eClassifiers xsi:type="ecore:EClass" name="WriteVariableAction" eSuperTypes="#//VariableAction"/>
<eClassifiers xsi:type="ecore:EClass" name="MessageTrigger" eSuperTypes="#//Trigger"/>
<eClassifiers xsi:type="ecore:EClass" name="ReclassifyObjectAction" eSuperTypes="#//Action"/>
<eClassifiers xsi:type="ecore:EClass" name="ConnectorEnd" eSuperTypes="#//MultiplicityElement"/>
<eClassifiers xsi:type="ecore:EClass" name="JoinNode" eSuperTypes="#//ControlNode"/>
<eClassifiers xsi:type="ecore:EClass" name="GeneralOrdering" eSuperTypes="#//NamedElement"/>
<eClassifiers xsi:type="ecore:EClass" name="Reception" eSuperTypes="#//BehavioralFeature"/>
<eClassifiers xsi:type="ecore:EClass" name="ClassifierTemplateParameter" eSuperTypes="#//TemplateParameter"/>
<eClassifiers xsi:type="ecore:EClass" name="DirectedRelationship" eSuperTypes="#//Relationship"/>
<eClassifiers xsi:type="ecore:EClass" name="ObjectNode" eSuperTypes="#//ActivityNode #//TypedElement"/>
<eClassifiers xsi:type="ecore:EClass" name="DeployedArtifact" eSuperTypes="#//NamedElement"/>
<eClassifiers xsi:type="ecore:EClass" name="BehavioredClassifier" eSuperTypes="#//Classifier">
<eStructuralFeatures xsi:type="ecore:EReference" name="ownedBehavior" upperBound="-1"
eType="#//Behavior" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="classifierBehavior" eType="#//Behavior"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Variable" eSuperTypes="#//ConnectableElement #//TypedElement #//MultiplicityElement"/>
<eClassifiers xsi:type="ecore:EClass" name="Gate" eSuperTypes="#//MessageEnd"/>
<eClassifiers xsi:type="ecore:EClass" name="Signal" eSuperTypes="#//Classifier"/>
<eClassifiers xsi:type="ecore:EClass" name="Realization" eSuperTypes="#//Abstraction"/>
<eClassifiers xsi:type="ecore:EClass" name="Vertex" eSuperTypes="#//NamedElement"/>
<eClassifiers xsi:type="ecore:EClass" name="ProtocolConformance" eSuperTypes="#//DirectedRelationship"/>
<eClassifiers xsi:type="ecore:EClass" name="PrimitiveFunction" eSuperTypes="#//PackageableElement"/>
<eClassifiers xsi:type="ecore:EClass" name="ForkNode" eSuperTypes="#//ControlNode"/>
<eClassifiers xsi:type="ecore:EClass" name="Connector" eSuperTypes="#//Feature"/>
<eClassifiers xsi:type="ecore:EClass" name="ClearAssociationAction" eSuperTypes="#//Action"/>
<eClassifiers xsi:type="ecore:EClass" name="BehavioralFeature" eSuperTypes="#//Namespace #//Feature"/>
<eClassifiers xsi:type="ecore:EClass" name="CentralBufferNode" eSuperTypes="#//ObjectNode"/>
<eClassifiers xsi:type="ecore:EClass" name="StringExpression" eSuperTypes="#//TemplateableElement"/>
<eClassifiers xsi:type="ecore:EClass" name="ReadStructuralFeatureAction" eSuperTypes="#//StructuralFeatureAction"/>
<eClassifiers xsi:type="ecore:EClass" name="QualifierValue" eSuperTypes="#//Element">
<eStructuralFeatures xsi:type="ecore:EReference" name="qualifier" lowerBound="1"
eType="#//Property"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Continuation" eSuperTypes="#//InteractionFragment"/>
<eClassifiers xsi:type="ecore:EClass" name="StateInvariant" eSuperTypes="#//InteractionFragment"/>
<eClassifiers xsi:type="ecore:EClass" name="Extension" eSuperTypes="#//Association"/>
<eClassifiers xsi:type="ecore:EClass" name="Node" eSuperTypes="#//Class #//DeploymentTarget"/>
<eClassifiers xsi:type="ecore:EClass" name="EncapsulatedClassifier" eSuperTypes="#//StructuredClassifier"/>
<eClassifiers xsi:type="ecore:EClass" name="TestIdentityAction" eSuperTypes="#//Action">
<eStructuralFeatures xsi:type="ecore:EReference" name="first" lowerBound="1" eType="#//InputPin"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="second" lowerBound="1"
eType="#//InputPin" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CallAction" eSuperTypes="#//InvocationAction"/>
<eClassifiers xsi:type="ecore:EClass" name="StructuredActivityNode" eSuperTypes="#//Action #//Namespace #//ActivityGroup"/>
<eClassifiers xsi:type="ecore:EClass" name="SendSignalAction" eSuperTypes="#//InvocationAction"/>
<eClassifiers xsi:type="ecore:EClass" name="LinkAction" eSuperTypes="#//Action"/>
<eClassifiers xsi:type="ecore:EClass" name="ReadLinkObjectEndQualifierAction" eSuperTypes="#//Action"/>
<eClassifiers xsi:type="ecore:EClass" name="LinkEndData" eSuperTypes="#//Element">
<eStructuralFeatures xsi:type="ecore:EReference" name="value" eType="#//InputPin"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="end" lowerBound="1" eType="#//Property"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="qualifier" upperBound="-1"
eType="#//QualifierValue" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ReadExtentAction" eSuperTypes="#//Action"/>
<eClassifiers xsi:type="ecore:EClass" name="ExecutionEnvironment" eSuperTypes="#//Node"/>
<eClassifiers xsi:type="ecore:EClass" name="AssociationClass" eSuperTypes="#//Class #//Association"/>
<eClassifiers xsi:type="ecore:EClass" name="TimeExpression" eSuperTypes="#//ValueSpecification"/>
<eClassifiers xsi:type="ecore:EClass" name="WriteLinkAction" eSuperTypes="#//LinkAction"/>
<eClassifiers xsi:type="ecore:EClass" name="WriteStructuralFeatureAction" eSuperTypes="#//StructuralFeatureAction">
<eStructuralFeatures xsi:type="ecore:EReference" name="value" lowerBound="1" eType="#//InputPin"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Include" eSuperTypes="#//NamedElement #//DirectedRelationship"/>
<eClassifiers xsi:type="ecore:EClass" name="InitialNode" eSuperTypes="#//ControlNode"/>
<eClassifiers xsi:type="ecore:EClass" name="Transition" eSuperTypes="#//RedefinableElement"/>
<eClassifiers xsi:type="ecore:EClass" name="ExpansionRegion" eSuperTypes="#//StructuredActivityNode"/>
<eClassifiers xsi:type="ecore:EClass" name="Actor" eSuperTypes="#//Classifier"/>
<eClassifiers xsi:type="ecore:EClass" name="Comment" eSuperTypes="#//TemplateableElement"/>
<eClassifiers xsi:type="ecore:EClass" name="TypedElement" eSuperTypes="#//NamedElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="type" eType="#//Type"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Type" eSuperTypes="#//PackageableElement"/>
<eClassifiers xsi:type="ecore:EClass" name="AddVariableValueAction" eSuperTypes="#//WriteVariableAction"/>
<eClassifiers xsi:type="ecore:EClass" name="Interface" eSuperTypes="#//Classifier"/>
<eClassifiers xsi:type="ecore:EClass" name="DurationConstraint" eSuperTypes="#//IntervalConstraint"/>
<eClassifiers xsi:type="ecore:EClass" name="ExpansionNode" eSuperTypes="#//ObjectNode"/>
<eClassifiers xsi:type="ecore:EClass" name="Generalization" eSuperTypes="#//DirectedRelationship">
<eStructuralFeatures xsi:type="ecore:EReference" name="general" lowerBound="1"
eType="#//Classifier"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="PackageImport" eSuperTypes="#//DirectedRelationship">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="visibility" eType="#//VisibilityKind"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="DataType" eSuperTypes="#//Classifier"/>
<eClassifiers xsi:type="ecore:EClass" name="RedefinableTemplateSignature" eSuperTypes="#//RedefinableElement #//TemplateSignature"/>
<eClassifiers xsi:type="ecore:EClass" name="Operation" eSuperTypes="#//BehavioralFeature #//TypedElement #//MultiplicityElement #//ParameterableElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isQuery" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="ownedParameter" upperBound="-1"
eType="#//Parameter" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="bodyCondition" eType="#//Constraint"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="VariableAction" eSuperTypes="#//Action"/>
<eClassifiers xsi:type="ecore:EClass" name="ExecutableNode" eSuperTypes="#//ActivityNode"/>
<eClassifiers xsi:type="ecore:EClass" name="ReadVariableAction" eSuperTypes="#//VariableAction"/>
<eClassifiers xsi:type="ecore:EClass" name="InterruptibleActivityRegion" eSuperTypes="#//ActivityGroup"/>
<eClassifiers xsi:type="ecore:EClass" name="ActivityNode" eSuperTypes="#//RedefinableElement"/>
<eClassifiers xsi:type="ecore:EClass" name="ValueSpecification" eSuperTypes="#//TypedElement #//ParameterableElement"/>
<eClassifiers xsi:type="ecore:EClass" name="ReplyAction" eSuperTypes="#//Action"/>
<eClassifiers xsi:type="ecore:EClass" name="TimeConstraint" eSuperTypes="#//IntervalConstraint"/>
<eClassifiers xsi:type="ecore:EClass" name="LiteralUnlimitedNatural" eSuperTypes="#//LiteralSpecification"/>
<eClassifiers xsi:type="ecore:EClass" name="Abstraction" eSuperTypes="#//Dependency"/>
<eClassifiers xsi:type="ecore:EClass" name="Implementation" eSuperTypes="#//Realization"/>
<eClassifiers xsi:type="ecore:EClass" name="InformationFlow" eSuperTypes="#//PackageableElement #//DirectedRelationship"/>
<eClassifiers xsi:type="ecore:EClass" name="Port" eSuperTypes="#//Property"/>
<eClassifiers xsi:type="ecore:EClass" name="OperationTemplateParameter" eSuperTypes="#//TemplateParameter"/>
<eClassifiers xsi:type="ecore:EClass" name="AcceptEventAction" eSuperTypes="#//Action"/>
<eClassifiers xsi:type="ecore:EClass" name="Deployment" eSuperTypes="#//Dependency"/>
<eClassifiers xsi:type="ecore:EClass" name="InputPin" eSuperTypes="#//Pin"/>
<eClassifiers xsi:type="ecore:EClass" name="CreateLinkAction" eSuperTypes="#//WriteLinkAction"/>
<eClassifiers xsi:type="ecore:EClass" name="ProtocolTransition" eSuperTypes="#//Transition"/>
<eClassifiers xsi:type="ecore:EClass" name="FinalState" eSuperTypes="#//State"/>
<eClassifiers xsi:type="ecore:EClass" name="DestroyObjectAction" eSuperTypes="#//Action">
<eStructuralFeatures xsi:type="ecore:EReference" name="target" lowerBound="1"
eType="#//InputPin" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Association" eSuperTypes="#//Classifier #//Relationship">
<eStructuralFeatures xsi:type="ecore:EReference" name="ownedEnd" upperBound="-1"
eType="#//Property" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="memberEnd" lowerBound="2"
upperBound="-1" eType="#//Property"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CallTrigger" eSuperTypes="#//MessageTrigger"/>
<eClassifiers xsi:type="ecore:EClass" name="Extend" eSuperTypes="#//NamedElement #//DirectedRelationship"/>
<eClassifiers xsi:type="ecore:EClass" name="ProfileApplication" eSuperTypes="#//PackageImport"/>
<eClassifiers xsi:type="ecore:EClass" name="Stereotype" eSuperTypes="#//Class"/>
<eClassifiers xsi:type="ecore:EClass" name="PackageMerge" eSuperTypes="#//DirectedRelationship"/>
<eClassifiers xsi:type="ecore:EClass" name="OpaqueExpression" eSuperTypes="#//ValueSpecification">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="bodies" upperBound="-1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="language" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="behavior" eType="#//Behavior"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="InstanceValue" eSuperTypes="#//ValueSpecification"/>
<eClassifiers xsi:type="ecore:EClass" name="EventOccurrence" eSuperTypes="#//InteractionFragment #//MessageEnd"/>
<eClassifiers xsi:type="ecore:EClass" name="PrimitiveType" eSuperTypes="#//DataType"/>
<eClassifiers xsi:type="ecore:EClass" name="LinkEndCreationData" eSuperTypes="#//LinkEndData"/>
<eClassifiers xsi:type="ecore:EClass" name="StartOwnedBehaviorAction" eSuperTypes="#//Action"/>
<eClassifiers xsi:type="ecore:EClass" name="ExtensionPoint" eSuperTypes="#//RedefinableElement"/>
<eClassifiers xsi:type="ecore:EClass" name="Component" eSuperTypes="#//Class"/>
<eClassifiers xsi:type="ecore:EClass" name="ConnectableElementTemplateParameter"
eSuperTypes="#//TemplateParameter"/>
<eClassifiers xsi:type="ecore:EClass" name="TemplateParameterSubstitution" eSuperTypes="#//Element"/>
<eClassifiers xsi:type="ecore:EClass" name="Region" eSuperTypes="#//Namespace #//RedefinableElement"/>
<eClassifiers xsi:type="ecore:EClass" name="InstanceSpecification" eSuperTypes="#//PackageableElement #//DeploymentTarget #//DeployedArtifact">
<eStructuralFeatures xsi:type="ecore:EReference" name="slot" upperBound="-1" eType="#//Slot"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="classifier" upperBound="-1"
eType="#//Classifier"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Dependency" eSuperTypes="#//PackageableElement #//DirectedRelationship"/>
<eClassifiers xsi:type="ecore:EClass" name="ApplyFunctionAction" eSuperTypes="#//Action"/>
<eClassifiers xsi:type="ecore:EClass" name="ActivityParameterNode" eSuperTypes="#//ObjectNode"/>
<eClassifiers xsi:type="ecore:EClass" name="ExtensionEnd" eSuperTypes="#//Property"/>
<eClassifiers xsi:type="ecore:EClass" name="TemplateParameter" eSuperTypes="#//Element"/>
<eClassifiers xsi:type="ecore:EClass" name="SignalTrigger" eSuperTypes="#//MessageTrigger"/>
<eClassifiers xsi:type="ecore:EClass" name="DurationObservationAction" eSuperTypes="#//WriteStructuralFeatureAction"/>
<eClassifiers xsi:type="ecore:EClass" name="ConnectionPointReference" eSuperTypes="#//Vertex"/>
<eClassifiers xsi:type="ecore:EClass" name="ReadLinkAction" eSuperTypes="#//LinkAction"/>
<eClassifiers xsi:type="ecore:EClass" name="Manifestation" eSuperTypes="#//Abstraction"/>
<eClassifiers xsi:type="ecore:EClass" name="Substitution" eSuperTypes="#//Realization"/>
<eClassifiers xsi:type="ecore:EClass" name="TemplateableClassifier" eSuperTypes="#//Classifier"/>
<eClassifiers xsi:type="ecore:EClass" name="Slot" eSuperTypes="#//Element">
<eStructuralFeatures xsi:type="ecore:EReference" name="definingFeature" lowerBound="1"
eType="#//StructuralFeature"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ReadSelfAction" eSuperTypes="#//Action">
<eStructuralFeatures xsi:type="ecore:EReference" name="result" lowerBound="1"
eType="#//OutputPin" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="RaiseExceptionAction" eSuperTypes="#//Action"/>
<eClassifiers xsi:type="ecore:EClass" name="ReadLinkObjectEndAction" eSuperTypes="#//Action"/>
<eClassifiers xsi:type="ecore:EClass" name="Behavior" eSuperTypes="#//Class">
<eStructuralFeatures xsi:type="ecore:EReference" name="specification" eType="#//BehavioralFeature"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="ownedParameterSet" upperBound="-1"
eType="#//ParameterSet" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Model" eSuperTypes="#//Package"/>
<eClassifiers xsi:type="ecore:EClass" name="LiteralBoolean" eSuperTypes="#//LiteralSpecification"/>
<eClassifiers xsi:type="ecore:EClass" name="DurationInterval" eSuperTypes="#//Interval"/>
<eClassifiers xsi:type="ecore:EClass" name="EnumerationLiteral" eSuperTypes="#//InstanceSpecification"/>
<eClassifiers xsi:type="ecore:EClass" name="ReadIsClassifiedObjectAction" eSuperTypes="#//Action"/>
<eClassifiers xsi:type="ecore:EClass" name="Element">
<eStructuralFeatures xsi:type="ecore:EReference" name="owner" eType="#//Element"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="AcceptCallAction" eSuperTypes="#//AcceptEventAction"/>
<eClassifiers xsi:type="ecore:EClass" name="ActivityEdge" eSuperTypes="#//RedefinableElement"/>
<eClassifiers xsi:type="ecore:EClass" name="StateMachine" eSuperTypes="#//Behavior"/>
<eClassifiers xsi:type="ecore:EClass" name="RemoveStructuralFeatureValueAction"
eSuperTypes="#//WriteStructuralFeatureAction"/>
<eClassifiers xsi:type="ecore:EClass" name="CreateObjectAction" eSuperTypes="#//Action">
<eStructuralFeatures xsi:type="ecore:EReference" name="classifier" lowerBound="1"
eType="#//Classifier"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="result" lowerBound="1"
eType="#//OutputPin" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ExceptionHandler" eSuperTypes="#//Element"/>
<eClassifiers xsi:type="ecore:EClass" name="LoopNode" eSuperTypes="#//StructuredActivityNode"/>
<eClassifiers xsi:type="ecore:EClass" name="ClearStructuralFeatureAction" eSuperTypes="#//StructuralFeatureAction"/>
<eClassifiers xsi:type="ecore:EClass" name="ActivityGroup" eSuperTypes="#//Element"/>
<eClassifiers xsi:type="ecore:EClass" name="CombinedFragment" eSuperTypes="#//InteractionFragment"/>
<eClassifiers xsi:type="ecore:EClass" name="DataStoreNode" eSuperTypes="#//CentralBufferNode"/>
<eClassifiers xsi:type="ecore:EClass" name="MergeNode" eSuperTypes="#//ControlNode"/>
<eClassifiers xsi:type="ecore:EClass" name="IntervalConstraint" eSuperTypes="#//Constraint"/>
<eClassifiers xsi:type="ecore:EClass" name="InteractionOccurrence" eSuperTypes="#//InteractionFragment"/>
<eClassifiers xsi:type="ecore:EClass" name="ClearVariableAction" eSuperTypes="#//VariableAction"/>
<eClassifiers xsi:type="ecore:EClass" name="LiteralInteger" eSuperTypes="#//LiteralSpecification"/>
<eClassifiers xsi:type="ecore:EClass" name="Expression" eSuperTypes="#//OpaqueExpression"/>
<eClassifiers xsi:type="ecore:EClass" name="InvocationAction" eSuperTypes="#//Action"/>
<eClassifiers xsi:type="ecore:EClass" name="Activity" eSuperTypes="#//Behavior"/>
<eClassifiers xsi:type="ecore:EClass" name="TimeObservationAction" eSuperTypes="#//WriteStructuralFeatureAction"/>
<eClassifiers xsi:type="ecore:EClass" name="Relationship" eSuperTypes="#//Element"/>
<eClassifiers xsi:type="ecore:EClass" name="SendObjectAction" eSuperTypes="#//InvocationAction"/>
<eClassifiers xsi:type="ecore:EClass" name="Constraint" eSuperTypes="#//PackageableElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="constrainedElement" upperBound="-1"
eType="#//Element"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CommunicationPath" eSuperTypes="#//Association"/>
<eClassifiers xsi:type="ecore:EClass" name="RemoveVariableValueAction" eSuperTypes="#//WriteVariableAction"/>
<eClassifiers xsi:type="ecore:EClass" name="Device" eSuperTypes="#//Node"/>
<eClassifiers xsi:type="ecore:EClass" name="DestroyLinkAction" eSuperTypes="#//WriteLinkAction"/>
<eClassifiers xsi:type="ecore:EClass" name="Enumeration" eSuperTypes="#//DataType"/>
<eClassifiers xsi:type="ecore:EClass" name="CollaborationOccurrence" eSuperTypes="#//NamedElement"/>
<eClassifiers xsi:type="ecore:EClass" name="Clause" eSuperTypes="#//Element"/>
<eClassifiers xsi:type="ecore:EClass" name="Permission" eSuperTypes="#//Dependency"/>
<eClassifiers xsi:type="ecore:EClass" name="Lifeline" eSuperTypes="#//NamedElement"/>
<eClassifiers xsi:type="ecore:EClass" name="ActivityFinalNode" eSuperTypes="#//FinalNode"/>
<eClassifiers xsi:type="ecore:EClass" name="Artifact" eSuperTypes="#//Classifier #//DeployedArtifact"/>
<eClassifiers xsi:type="ecore:EClass" name="Feature" eSuperTypes="#//RedefinableElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isStatic" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="featuringClassifier" upperBound="-1"
eType="#//Classifier"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="LiteralNull" eSuperTypes="#//LiteralSpecification"/>
<eClassifiers xsi:type="ecore:EClass" name="TimeTrigger" eSuperTypes="#//Trigger"/>
<eClassifiers xsi:type="ecore:EClass" name="Usage" eSuperTypes="#//Dependency"/>
<eClassifiers xsi:type="ecore:EClass" name="TimeInterval" eSuperTypes="#//Interval"/>
<eClassifiers xsi:type="ecore:EClass" name="InteractionConstraint" eSuperTypes="#//Constraint"/>
<eClassifiers xsi:type="ecore:EClass" name="Collaboration" eSuperTypes="#//BehavioredClassifier #//StructuredClassifier"/>
<eClassifiers xsi:type="ecore:EClass" name="MultiplicityElement" eSuperTypes="#//Element">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isOrdered" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isUnique" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="lower" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="upper" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="TemplateableElement" eSuperTypes="#//Element"/>
<eClassifiers xsi:type="ecore:EClass" name="StructuralFeature" eSuperTypes="#//Feature #//TypedElement #//MultiplicityElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isReadOnly" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="PartDecomposition" eSuperTypes="#//InteractionOccurrence"/>
<eClassifiers xsi:type="ecore:EClass" name="OutputPin" eSuperTypes="#//Pin"/>
<eClassifiers xsi:type="ecore:EClass" name="LiteralString" eSuperTypes="#//LiteralSpecification"/>
<eClassifiers xsi:type="ecore:EClass" name="Interval" eSuperTypes="#//ValueSpecification"/>
<eClassifiers xsi:type="ecore:EClass" name="ConnectableElement" eSuperTypes="#//NamedElement #//ParameterableElement"/>
<eClassifiers xsi:type="ecore:EClass" name="ChangeTrigger" eSuperTypes="#//Trigger"/>
<eClassifiers xsi:type="ecore:EClass" name="Namespace" eSuperTypes="#//NamedElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="member" upperBound="-1"
eType="#//NamedElement"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Classifier" eSuperTypes="#//Namespace #//Type #//RedefinableElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isAbstract" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="feature" upperBound="-1"
eType="#//Feature"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="inheritedMember" upperBound="-1"
eType="#//NamedElement"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="generalization" upperBound="-1"
eType="#//Generalization" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CallOperationAction" eSuperTypes="#//CallAction"/>
<eClassifiers xsi:type="ecore:EClass" name="Message" eSuperTypes="#//NamedElement"/>
<eClassifiers xsi:type="ecore:EClass" name="ProtocolStateMachine" eSuperTypes="#//StateMachine"/>
<eClassifiers xsi:type="ecore:EClass" name="BroadcastSignalAction" eSuperTypes="#//InvocationAction"/>
<eClassifiers xsi:type="ecore:EClass" name="Class" eSuperTypes="#//BehavioredClassifier #//EncapsulatedClassifier">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isActive" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="nestedClassifier" upperBound="-1"
eType="#//Classifier" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="ownedReception" upperBound="-1"
eType="#//Reception" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Package" eSuperTypes="#//Namespace #//PackageableElement"/>
<eClassifiers xsi:type="ecore:EClass" name="Action" eSuperTypes="#//ExecutableNode">
<eStructuralFeatures xsi:type="ecore:EReference" name="context_" eType="#//Classifier"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="LiteralSpecification" eSuperTypes="#//ValueSpecification"/>
<eClassifiers xsi:type="ecore:EClass" name="InformationItem" eSuperTypes="#//Classifier"/>
<eClassifiers xsi:type="ecore:EClass" name="RedefinableElement" eSuperTypes="#//NamedElement"/>
<eClassifiers xsi:type="ecore:EClass" name="ElementImport" eSuperTypes="#//DirectedRelationship">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="visibility" eType="#//VisibilityKind"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="importedElement" lowerBound="1"
eType="#//PackageableElement"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="StructuralFeatureAction" eSuperTypes="#//Action">
<eStructuralFeatures xsi:type="ecore:EReference" name="structuralFeature" lowerBound="1"
eType="#//StructuralFeature"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CreateLinkObjectAction" eSuperTypes="#//CreateLinkAction"/>
<eClassifiers xsi:type="ecore:EClass" name="Interaction" eSuperTypes="#//Behavior #//InteractionFragment"/>
</ecore:EPackage>
| github:ecore:/data/sunwuliang/SlicingProject2.0/ClassModelSlicing/slices/SlicedUML2InsDataSet3.ecore | ecore | UML2
AggregationKind
composite
composite
none
none
shared
shared
ParameterDirectionKind
in
in
inout
inout
out
out
return
return
VisibilityKind
package
package
private
private
protected
protected
public
public
State
Stop
ExecutionOccurrence
UseCase
ControlNode
CallBehaviorAction
ObjectFlow
GeneralizationSet
generalization
InteractionFragment
ConditionalNode
ValuePin
InteractionOperand
Trigger
AddStructuralFeatureValueAction
ParameterSet
TemplateBinding
Parameter
direction
AnyTrigger
ParameterableClassifier
StructuredClassifier
Property
isComposite
isDerived
isDerivedUnion
aggregation
subsettedProperty
association
qualifier
Pseudostate
FlowFinalNode
TemplateSignature
ParameterableElement
FinalNode
DeploymentSpecification
DecisionNode
PackageableElement
ActivityPartition
NamedElement
name
visibility
ControlFlow
Pin
MessageEnd
Profile
DeploymentTarget
Duration
WriteVariableAction
MessageTrigger
ReclassifyObjectAction
ConnectorEnd
JoinNode
GeneralOrdering
Reception
ClassifierTemplateParameter
DirectedRelationship
ObjectNode
DeployedArtifact
BehavioredClassifier
ownedBehavior
classifierBehavior
Variable
Gate
Signal
Realization
Vertex
ProtocolConformance
PrimitiveFunction
ForkNode
Connector
ClearAssociationAction
BehavioralFeature
CentralBufferNode
StringExpression
ReadStructuralFeatureAction
QualifierValue
qualifier
Continuation
StateInvariant
Extension
Node
EncapsulatedClassifier
TestIdentityAction
first
second
CallAction
StructuredActivityNode
SendSignalAction
LinkAction
ReadLinkObjectEndQualifierAction
LinkEndData
value
end
qualifier
ReadExtentAction
ExecutionEnvironment
AssociationClass
TimeExpression
WriteLinkAction
WriteStructuralFeatureAction
value
Include
InitialNode
Transition
ExpansionRegion
Actor
Comment
TypedElement
type
Type
AddVariableValueAction
Interface
DurationConstraint
ExpansionNode
Generalization
general
PackageImport
visibility
DataType
RedefinableTemplateSignature
Operation
isQuery
ownedParameter
bodyCondition
VariableAction
ExecutableNode
ReadVariableAction
InterruptibleActivityRegion
ActivityNode
ValueSpecification
ReplyAction
TimeConstraint
LiteralUnlimitedNatural
Abstraction
Implementation
InformationFlow
Port
OperationTemplateParameter
AcceptEventAction
Deployment
InputPin
CreateLinkAction
ProtocolTransition
FinalState
DestroyObjectAction
target
Association
ownedEnd
memberEnd
CallTrigger
Extend
ProfileApplication
Stereotype
PackageMerge
OpaqueExpression
bodies
language
behavior
InstanceValue
EventOccurrence
PrimitiveType
LinkEndCreationData
StartOwnedBehaviorAction
ExtensionPoint
Component
ConnectableElementTemplateParameter
TemplateParameterSubstitution
Region
InstanceSpecification
slot
classifier
Dependency
ApplyFunctionAction
ActivityParameterNode
ExtensionEnd
TemplateParameter
SignalTrigger
DurationObservationAction
ConnectionPointReference
ReadLinkAction
Manifestation
Substitution
TemplateableClassifier
Slot
definingFeature
ReadSelfAction
result
RaiseExceptionAction
ReadLinkObjectEndAction
Behavior
specification
ownedParameterSet
Model
LiteralBoolean
DurationInterval
EnumerationLiteral
ReadIsClassifiedObjectAction
Element
owner
AcceptCallAction
ActivityEdge
StateMachine
RemoveStructuralFeatureValueAction
CreateObjectAction
classifier
result
ExceptionHandler
LoopNode
ClearStructuralFeatureAction
ActivityGroup
CombinedFragment
DataStoreNode
MergeNode
IntervalConstraint
InteractionOccurrence
ClearVariableAction
LiteralInteger
Expression
InvocationAction
Activity
TimeObservationAction
Relationship
SendObjectAction
Constraint
constrainedElement
CommunicationPath
RemoveVariableValueAction
Device
DestroyLinkAction
Enumeration
CollaborationOccurrence
Clause
Permission
Lifeline
ActivityFinalNode
Artifact
Feature
isStatic
featuringClassifier
LiteralNull
TimeTrigger
Usage
TimeInterval
InteractionConstraint
Collaboration
MultiplicityElement
isOrdered
isUnique
lower
upper
TemplateableElement
StructuralFeature
isReadOnly
PartDecomposition
OutputPin
LiteralString
Interval
ConnectableElement
ChangeTrigger
Namespace
member
Classifier
isAbstract
feature
inheritedMember
generalization
CallOperationAction
Message
ProtocolStateMachine
BroadcastSignalAction
Class
isActive
nestedClassifier
ownedReception
Package
Action
context_
LiteralSpecification
InformationItem
RedefinableElement
ElementImport
visibility
importedElement
StructuralFeatureAction
structuralFeature
CreateLinkObjectAction
Interaction | null | {"directed":true,"nodes":[{"nsPrefix":"UML2","nsURI":"http:///UML2.ecore","name":"UML2","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"instanceClassName":null,"name":"AggregationKind","instanceClass":null,"id":1,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"ParameterDirectionKind","instanceClass":null,"id":2,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"VisibilityKind","instanceClass":null,"id":3,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"State","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Stop","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExecutionOccurrence","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"UseCase","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ControlNode","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CallBehaviorAction","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ObjectFlow","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"GeneralizationSet","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InteractionFragment","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ConditionalNode","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ValuePin","instanceClass":null,"abstract":false,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InteractionOperand","instanceClass":null,"abstract":false,"id":15,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Trigger","instanceClass":null,"abstract":false,"id":16,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AddStructuralFeatureValueAction","instanceClass":null,"abstract":false,"id":17,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ParameterSet","instanceClass":null,"abstract":false,"id":18,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TemplateBinding","instanceClass":null,"abstract":false,"id":19,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Parameter","instanceClass":null,"abstract":false,"id":20,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AnyTrigger","instanceClass":null,"abstract":false,"id":21,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ParameterableClassifier","instanceClass":null,"abstract":false,"id":22,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StructuredClassifier","instanceClass":null,"abstract":false,"id":23,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Property","instanceClass":null,"abstract":false,"id":24,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Pseudostate","instanceClass":null,"abstract":false,"id":25,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FlowFinalNode","instanceClass":null,"abstract":false,"id":26,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TemplateSignature","instanceClass":null,"abstract":false,"id":27,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ParameterableElement","instanceClass":null,"abstract":false,"id":28,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FinalNode","instanceClass":null,"abstract":false,"id":29,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DeploymentSpecification","instanceClass":null,"abstract":false,"id":30,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DecisionNode","instanceClass":null,"abstract":false,"id":31,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PackageableElement","instanceClass":null,"abstract":false,"id":32,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ActivityPartition","instanceClass":null,"abstract":false,"id":33,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NamedElement","instanceClass":null,"abstract":false,"id":34,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ControlFlow","instanceClass":null,"abstract":false,"id":35,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Pin","instanceClass":null,"abstract":false,"id":36,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MessageEnd","instanceClass":null,"abstract":false,"id":37,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Profile","instanceClass":null,"abstract":false,"id":38,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DeploymentTarget","instanceClass":null,"abstract":false,"id":39,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Duration","instanceClass":null,"abstract":false,"id":40,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"WriteVariableAction","instanceClass":null,"abstract":false,"id":41,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MessageTrigger","instanceClass":null,"abstract":false,"id":42,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ReclassifyObjectAction","instanceClass":null,"abstract":false,"id":43,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ConnectorEnd","instanceClass":null,"abstract":false,"id":44,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"JoinNode","instanceClass":null,"abstract":false,"id":45,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"GeneralOrdering","instanceClass":null,"abstract":false,"id":46,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Reception","instanceClass":null,"abstract":false,"id":47,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ClassifierTemplateParameter","instanceClass":null,"abstract":false,"id":48,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DirectedRelationship","instanceClass":null,"abstract":false,"id":49,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ObjectNode","instanceClass":null,"abstract":false,"id":50,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DeployedArtifact","instanceClass":null,"abstract":false,"id":51,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BehavioredClassifier","instanceClass":null,"abstract":false,"id":52,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Variable","instanceClass":null,"abstract":false,"id":53,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Gate","instanceClass":null,"abstract":false,"id":54,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Signal","instanceClass":null,"abstract":false,"id":55,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Realization","instanceClass":null,"abstract":false,"id":56,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Vertex","instanceClass":null,"abstract":false,"id":57,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ProtocolConformance","instanceClass":null,"abstract":false,"id":58,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PrimitiveFunction","instanceClass":null,"abstract":false,"id":59,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ForkNode","instanceClass":null,"abstract":false,"id":60,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Connector","instanceClass":null,"abstract":false,"id":61,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ClearAssociationAction","instanceClass":null,"abstract":false,"id":62,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BehavioralFeature","instanceClass":null,"abstract":false,"id":63,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CentralBufferNode","instanceClass":null,"abstract":false,"id":64,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StringExpression","instanceClass":null,"abstract":false,"id":65,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ReadStructuralFeatureAction","instanceClass":null,"abstract":false,"id":66,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"QualifierValue","instanceClass":null,"abstract":false,"id":67,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Continuation","instanceClass":null,"abstract":false,"id":68,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StateInvariant","instanceClass":null,"abstract":false,"id":69,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Extension","instanceClass":null,"abstract":false,"id":70,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Node","instanceClass":null,"abstract":false,"id":71,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EncapsulatedClassifier","instanceClass":null,"abstract":false,"id":72,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TestIdentityAction","instanceClass":null,"abstract":false,"id":73,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CallAction","instanceClass":null,"abstract":false,"id":74,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StructuredActivityNode","instanceClass":null,"abstract":false,"id":75,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SendSignalAction","instanceClass":null,"abstract":false,"id":76,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LinkAction","instanceClass":null,"abstract":false,"id":77,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ReadLinkObjectEndQualifierAction","instanceClass":null,"abstract":false,"id":78,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LinkEndData","instanceClass":null,"abstract":false,"id":79,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ReadExtentAction","instanceClass":null,"abstract":false,"id":80,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExecutionEnvironment","instanceClass":null,"abstract":false,"id":81,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AssociationClass","instanceClass":null,"abstract":false,"id":82,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TimeExpression","instanceClass":null,"abstract":false,"id":83,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"WriteLinkAction","instanceClass":null,"abstract":false,"id":84,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"WriteStructuralFeatureAction","instanceClass":null,"abstract":false,"id":85,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Include","instanceClass":null,"abstract":false,"id":86,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InitialNode","instanceClass":null,"abstract":false,"id":87,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Transition","instanceClass":null,"abstract":false,"id":88,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExpansionRegion","instanceClass":null,"abstract":false,"id":89,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Actor","instanceClass":null,"abstract":false,"id":90,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Comment","instanceClass":null,"abstract":false,"id":91,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TypedElement","instanceClass":null,"abstract":false,"id":92,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Type","instanceClass":null,"abstract":false,"id":93,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AddVariableValueAction","instanceClass":null,"abstract":false,"id":94,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Interface","instanceClass":null,"abstract":false,"id":95,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DurationConstraint","instanceClass":null,"abstract":false,"id":96,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExpansionNode","instanceClass":null,"abstract":false,"id":97,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Generalization","instanceClass":null,"abstract":false,"id":98,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PackageImport","instanceClass":null,"abstract":false,"id":99,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DataType","instanceClass":null,"abstract":false,"id":100,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RedefinableTemplateSignature","instanceClass":null,"abstract":false,"id":101,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Operation","instanceClass":null,"abstract":false,"id":102,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"VariableAction","instanceClass":null,"abstract":false,"id":103,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExecutableNode","instanceClass":null,"abstract":false,"id":104,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ReadVariableAction","instanceClass":null,"abstract":false,"id":105,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InterruptibleActivityRegion","instanceClass":null,"abstract":false,"id":106,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ActivityNode","instanceClass":null,"abstract":false,"id":107,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ValueSpecification","instanceClass":null,"abstract":false,"id":108,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ReplyAction","instanceClass":null,"abstract":false,"id":109,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TimeConstraint","instanceClass":null,"abstract":false,"id":110,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LiteralUnlimitedNatural","instanceClass":null,"abstract":false,"id":111,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Abstraction","instanceClass":null,"abstract":false,"id":112,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Implementation","instanceClass":null,"abstract":false,"id":113,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InformationFlow","instanceClass":null,"abstract":false,"id":114,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Port","instanceClass":null,"abstract":false,"id":115,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OperationTemplateParameter","instanceClass":null,"abstract":false,"id":116,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AcceptEventAction","instanceClass":null,"abstract":false,"id":117,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Deployment","instanceClass":null,"abstract":false,"id":118,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InputPin","instanceClass":null,"abstract":false,"id":119,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CreateLinkAction","instanceClass":null,"abstract":false,"id":120,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ProtocolTransition","instanceClass":null,"abstract":false,"id":121,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FinalState","instanceClass":null,"abstract":false,"id":122,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DestroyObjectAction","instanceClass":null,"abstract":false,"id":123,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Association","instanceClass":null,"abstract":false,"id":124,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CallTrigger","instanceClass":null,"abstract":false,"id":125,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Extend","instanceClass":null,"abstract":false,"id":126,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ProfileApplication","instanceClass":null,"abstract":false,"id":127,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Stereotype","instanceClass":null,"abstract":false,"id":128,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PackageMerge","instanceClass":null,"abstract":false,"id":129,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OpaqueExpression","instanceClass":null,"abstract":false,"id":130,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InstanceValue","instanceClass":null,"abstract":false,"id":131,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EventOccurrence","instanceClass":null,"abstract":false,"id":132,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PrimitiveType","instanceClass":null,"abstract":false,"id":133,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LinkEndCreationData","instanceClass":null,"abstract":false,"id":134,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StartOwnedBehaviorAction","instanceClass":null,"abstract":false,"id":135,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExtensionPoint","instanceClass":null,"abstract":false,"id":136,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Component","instanceClass":null,"abstract":false,"id":137,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ConnectableElementTemplateParameter","instanceClass":null,"abstract":false,"id":138,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TemplateParameterSubstitution","instanceClass":null,"abstract":false,"id":139,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Region","instanceClass":null,"abstract":false,"id":140,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InstanceSpecification","instanceClass":null,"abstract":false,"id":141,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Dependency","instanceClass":null,"abstract":false,"id":142,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ApplyFunctionAction","instanceClass":null,"abstract":false,"id":143,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ActivityParameterNode","instanceClass":null,"abstract":false,"id":144,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExtensionEnd","instanceClass":null,"abstract":false,"id":145,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TemplateParameter","instanceClass":null,"abstract":false,"id":146,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SignalTrigger","instanceClass":null,"abstract":false,"id":147,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DurationObservationAction","instanceClass":null,"abstract":false,"id":148,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ConnectionPointReference","instanceClass":null,"abstract":false,"id":149,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ReadLinkAction","instanceClass":null,"abstract":false,"id":150,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Manifestation","instanceClass":null,"abstract":false,"id":151,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Substitution","instanceClass":null,"abstract":false,"id":152,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TemplateableClassifier","instanceClass":null,"abstract":false,"id":153,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Slot","instanceClass":null,"abstract":false,"id":154,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ReadSelfAction","instanceClass":null,"abstract":false,"id":155,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RaiseExceptionAction","instanceClass":null,"abstract":false,"id":156,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ReadLinkObjectEndAction","instanceClass":null,"abstract":false,"id":157,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Behavior","instanceClass":null,"abstract":false,"id":158,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Model","instanceClass":null,"abstract":false,"id":159,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LiteralBoolean","instanceClass":null,"abstract":false,"id":160,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DurationInterval","instanceClass":null,"abstract":false,"id":161,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EnumerationLiteral","instanceClass":null,"abstract":false,"id":162,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ReadIsClassifiedObjectAction","instanceClass":null,"abstract":false,"id":163,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Element","instanceClass":null,"abstract":false,"id":164,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AcceptCallAction","instanceClass":null,"abstract":false,"id":165,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ActivityEdge","instanceClass":null,"abstract":false,"id":166,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StateMachine","instanceClass":null,"abstract":false,"id":167,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RemoveStructuralFeatureValueAction","instanceClass":null,"abstract":false,"id":168,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CreateObjectAction","instanceClass":null,"abstract":false,"id":169,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExceptionHandler","instanceClass":null,"abstract":false,"id":170,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LoopNode","instanceClass":null,"abstract":false,"id":171,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ClearStructuralFeatureAction","instanceClass":null,"abstract":false,"id":172,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ActivityGroup","instanceClass":null,"abstract":false,"id":173,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CombinedFragment","instanceClass":null,"abstract":false,"id":174,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DataStoreNode","instanceClass":null,"abstract":false,"id":175,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MergeNode","instanceClass":null,"abstract":false,"id":176,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IntervalConstraint","instanceClass":null,"abstract":false,"id":177,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InteractionOccurrence","instanceClass":null,"abstract":false,"id":178,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ClearVariableAction","instanceClass":null,"abstract":false,"id":179,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LiteralInteger","instanceClass":null,"abstract":false,"id":180,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Expression","instanceClass":null,"abstract":false,"id":181,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InvocationAction","instanceClass":null,"abstract":false,"id":182,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Activity","instanceClass":null,"abstract":false,"id":183,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TimeObservationAction","instanceClass":null,"abstract":false,"id":184,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Relationship","instanceClass":null,"abstract":false,"id":185,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SendObjectAction","instanceClass":null,"abstract":false,"id":186,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Constraint","instanceClass":null,"abstract":false,"id":187,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CommunicationPath","instanceClass":null,"abstract":false,"id":188,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RemoveVariableValueAction","instanceClass":null,"abstract":false,"id":189,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Device","instanceClass":null,"abstract":false,"id":190,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DestroyLinkAction","instanceClass":null,"abstract":false,"id":191,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Enumeration","instanceClass":null,"abstract":false,"id":192,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CollaborationOccurrence","instanceClass":null,"abstract":false,"id":193,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Clause","instanceClass":null,"abstract":false,"id":194,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Permission","instanceClass":null,"abstract":false,"id":195,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Lifeline","instanceClass":null,"abstract":false,"id":196,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ActivityFinalNode","instanceClass":null,"abstract":false,"id":197,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Artifact","instanceClass":null,"abstract":false,"id":198,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Feature","instanceClass":null,"abstract":false,"id":199,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LiteralNull","instanceClass":null,"abstract":false,"id":200,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TimeTrigger","instanceClass":null,"abstract":false,"id":201,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Usage","instanceClass":null,"abstract":false,"id":202,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TimeInterval","instanceClass":null,"abstract":false,"id":203,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InteractionConstraint","instanceClass":null,"abstract":false,"id":204,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Collaboration","instanceClass":null,"abstract":false,"id":205,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MultiplicityElement","instanceClass":null,"abstract":false,"id":206,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TemplateableElement","instanceClass":null,"abstract":false,"id":207,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StructuralFeature","instanceClass":null,"abstract":false,"id":208,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PartDecomposition","instanceClass":null,"abstract":false,"id":209,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OutputPin","instanceClass":null,"abstract":false,"id":210,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LiteralString","instanceClass":null,"abstract":false,"id":211,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Interval","instanceClass":null,"abstract":false,"id":212,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ConnectableElement","instanceClass":null,"abstract":false,"id":213,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ChangeTrigger","instanceClass":null,"abstract":false,"id":214,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Namespace","instanceClass":null,"abstract":false,"id":215,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Classifier","instanceClass":null,"abstract":false,"id":216,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CallOperationAction","instanceClass":null,"abstract":false,"id":217,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Message","instanceClass":null,"abstract":false,"id":218,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ProtocolStateMachine","instanceClass":null,"abstract":false,"id":219,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BroadcastSignalAction","instanceClass":null,"abstract":false,"id":220,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Class","instanceClass":null,"abstract":false,"id":221,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Package","instanceClass":null,"abstract":false,"id":222,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Action","instanceClass":null,"abstract":false,"id":223,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LiteralSpecification","instanceClass":null,"abstract":false,"id":224,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InformationItem","instanceClass":null,"abstract":false,"id":225,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RedefinableElement","instanceClass":null,"abstract":false,"id":226,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ElementImport","instanceClass":null,"abstract":false,"id":227,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StructuralFeatureAction","instanceClass":null,"abstract":false,"id":228,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CreateLinkObjectAction","instanceClass":null,"abstract":false,"id":229,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Interaction","instanceClass":null,"abstract":false,"id":230,"interface":false,"eClass":"EClass"},{"name":"composite","id":231,"value":1,"literal":"composite","eClass":"EEnumLiteral"},{"name":"none","id":232,"value":2,"literal":"none","eClass":"EEnumLiteral"},{"name":"shared","id":233,"value":3,"literal":"shared","eClass":"EEnumLiteral"},{"name":"in","id":234,"value":1,"literal":"in","eClass":"EEnumLiteral"},{"name":"inout","id":235,"value":2,"literal":"inout","eClass":"EEnumLiteral"},{"name":"out","id":236,"value":3,"literal":"out","eClass":"EEnumLiteral"},{"name":"return","id":237,"value":4,"literal":"return","eClass":"EEnumLiteral"},{"name":"package","id":238,"value":1,"literal":"package","eClass":"EEnumLiteral"},{"name":"private","id":239,"value":2,"literal":"private","eClass":"EEnumLiteral"},{"name":"protected","id":240,"value":3,"literal":"protected","eClass":"EEnumLiteral"},{"name":"public","id":241,"value":4,"literal":"public","eClass":"EEnumLiteral"},{"id":242,"eClass":"EGenericType"},{"id":243,"eClass":"EGenericType"},{"id":244,"eClass":"EGenericType"},{"id":245,"eClass":"EGenericType"},{"id":246,"eClass":"EGenericType"},{"id":247,"eClass":"EGenericType"},{"id":248,"eClass":"EGenericType"},{"id":249,"eClass":"EGenericType"},{"id":250,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"generalization","changeable":true,"resolveProxies":true,"lowerBound":0,"id":251,"derived":false},{"id":252,"eClass":"EGenericType"},{"id":253,"eClass":"EGenericType"},{"id":254,"eClass":"EGenericType"},{"id":255,"eClass":"EGenericType"},{"id":256,"eClass":"EGenericType"},{"id":257,"eClass":"EGenericType"},{"id":258,"eClass":"EGenericType"},{"id":259,"eClass":"EGenericType"},{"id":260,"eClass":"EGenericType"},{"id":261,"eClass":"EGenericType"},{"id":262,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"direction","changeable":true,"lowerBound":0,"iD":false,"id":263,"derived":false},{"id":264,"eClass":"EGenericType"},{"id":265,"eClass":"EGenericType"},{"id":266,"eClass":"EGenericType"},{"id":267,"eClass":"EGenericType"},{"id":268,"eClass":"EGenericType"},{"id":269,"eClass":"EGenericType"},{"id":270,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isComposite","changeable":true,"lowerBound":0,"iD":false,"id":271,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isDerived","changeable":true,"lowerBound":0,"iD":false,"id":272,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isDerivedUnion","changeable":true,"lowerBound":0,"iD":false,"id":273,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"aggregation","changeable":true,"lowerBound":0,"iD":false,"id":274,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"subsettedProperty","changeable":true,"resolveProxies":true,"lowerBound":0,"id":275,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"association","changeable":true,"resolveProxies":true,"lowerBound":0,"id":276,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"qualifier","changeable":true,"resolveProxies":true,"lowerBound":0,"id":277,"derived":false},{"id":278,"eClass":"EGenericType"},{"id":279,"eClass":"EGenericType"},{"id":280,"eClass":"EGenericType"},{"id":281,"eClass":"EGenericType"},{"id":282,"eClass":"EGenericType"},{"id":283,"eClass":"EGenericType"},{"id":284,"eClass":"EGenericType"},{"id":285,"eClass":"EGenericType"},{"id":286,"eClass":"EGenericType"},{"id":287,"eClass":"EGenericType"},{"id":288,"eClass":"EGenericType"},{"id":289,"eClass":"EGenericType"},{"id":290,"eClass":"EGenericType"},{"id":291,"eClass":"EGenericType"},{"id":292,"eClass":"EGenericType"},{"id":293,"eClass":"EGenericType"},{"id":294,"eClass":"EGenericType"},{"id":295,"eClass":"EGenericType"},{"id":296,"eClass":"EGenericType"},{"id":297,"eClass":"EGenericType"},{"id":298,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":299,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"visibility","changeable":true,"lowerBound":0,"iD":false,"id":300,"derived":false},{"id":301,"eClass":"EGenericType"},{"id":302,"eClass":"EGenericType"},{"id":303,"eClass":"EGenericType"},{"id":304,"eClass":"EGenericType"},{"id":305,"eClass":"EGenericType"},{"id":306,"eClass":"EGenericType"},{"id":307,"eClass":"EGenericType"},{"id":308,"eClass":"EGenericType"},{"id":309,"eClass":"EGenericType"},{"id":310,"eClass":"EGenericType"},{"id":311,"eClass":"EGenericType"},{"id":312,"eClass":"EGenericType"},{"id":313,"eClass":"EGenericType"},{"id":314,"eClass":"EGenericType"},{"id":315,"eClass":"EGenericType"},{"id":316,"eClass":"EGenericType"},{"id":317,"eClass":"EGenericType"},{"id":318,"eClass":"EGenericType"},{"id":319,"eClass":"EGenericType"},{"id":320,"eClass":"EGenericType"},{"id":321,"eClass":"EGenericType"},{"id":322,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"ownedBehavior","changeable":true,"resolveProxies":true,"lowerBound":0,"id":323,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"classifierBehavior","changeable":true,"resolveProxies":true,"lowerBound":0,"id":324,"derived":false},{"id":325,"eClass":"EGenericType"},{"id":326,"eClass":"EGenericType"},{"id":327,"eClass":"EGenericType"},{"id":328,"eClass":"EGenericType"},{"id":329,"eClass":"EGenericType"},{"id":330,"eClass":"EGenericType"},{"id":331,"eClass":"EGenericType"},{"id":332,"eClass":"EGenericType"},{"id":333,"eClass":"EGenericType"},{"id":334,"eClass":"EGenericType"},{"id":335,"eClass":"EGenericType"},{"id":336,"eClass":"EGenericType"},{"id":337,"eClass":"EGenericType"},{"id":338,"eClass":"EGenericType"},{"id":339,"eClass":"EGenericType"},{"id":340,"eClass":"EGenericType"},{"id":341,"eClass":"EGenericType"},{"id":342,"eClass":"EGenericType"},{"id":343,"eClass":"EGenericType"},{"id":344,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"qualifier","changeable":true,"resolveProxies":true,"lowerBound":1,"id":345,"derived":false},{"id":346,"eClass":"EGenericType"},{"id":347,"eClass":"EGenericType"},{"id":348,"eClass":"EGenericType"},{"id":349,"eClass":"EGenericType"},{"id":350,"eClass":"EGenericType"},{"id":351,"eClass":"EGenericType"},{"id":352,"eClass":"EGenericType"},{"id":353,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"first","changeable":true,"resolveProxies":true,"lowerBound":1,"id":354,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"second","changeable":true,"resolveProxies":true,"lowerBound":1,"id":355,"derived":false},{"id":356,"eClass":"EGenericType"},{"id":357,"eClass":"EGenericType"},{"id":358,"eClass":"EGenericType"},{"id":359,"eClass":"EGenericType"},{"id":360,"eClass":"EGenericType"},{"id":361,"eClass":"EGenericType"},{"id":362,"eClass":"EGenericType"},{"id":363,"eClass":"EGenericType"},{"id":364,"eClass":"EGenericType"},{"id":365,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"resolveProxies":true,"lowerBound":0,"id":366,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"end","changeable":true,"resolveProxies":true,"lowerBound":1,"id":367,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"qualifier","changeable":true,"resolveProxies":true,"lowerBound":0,"id":368,"derived":false},{"id":369,"eClass":"EGenericType"},{"id":370,"eClass":"EGenericType"},{"id":371,"eClass":"EGenericType"},{"id":372,"eClass":"EGenericType"},{"id":373,"eClass":"EGenericType"},{"id":374,"eClass":"EGenericType"},{"id":375,"eClass":"EGenericType"},{"id":376,"eClass":"EGenericType"},{"id":377,"eClass":"EGenericType"},{"id":378,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"resolveProxies":true,"lowerBound":1,"id":379,"derived":false},{"id":380,"eClass":"EGenericType"},{"id":381,"eClass":"EGenericType"},{"id":382,"eClass":"EGenericType"},{"id":383,"eClass":"EGenericType"},{"id":384,"eClass":"EGenericType"},{"id":385,"eClass":"EGenericType"},{"id":386,"eClass":"EGenericType"},{"id":387,"eClass":"EGenericType"},{"id":388,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"resolveProxies":true,"lowerBound":0,"id":389,"derived":false},{"id":390,"eClass":"EGenericType"},{"id":391,"eClass":"EGenericType"},{"id":392,"eClass":"EGenericType"},{"id":393,"eClass":"EGenericType"},{"id":394,"eClass":"EGenericType"},{"id":395,"eClass":"EGenericType"},{"id":396,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"general","changeable":true,"resolveProxies":true,"lowerBound":1,"id":397,"derived":false},{"id":398,"eClass":"EGenericType"},{"id":399,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"visibility","changeable":true,"lowerBound":0,"iD":false,"id":400,"derived":false},{"id":401,"eClass":"EGenericType"},{"id":402,"eClass":"EGenericType"},{"id":403,"eClass":"EGenericType"},{"id":404,"eClass":"EGenericType"},{"id":405,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isQuery","changeable":true,"lowerBound":0,"iD":false,"id":406,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"ownedParameter","changeable":true,"resolveProxies":true,"lowerBound":0,"id":407,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"bodyCondition","changeable":true,"resolveProxies":true,"lowerBound":0,"id":408,"derived":false},{"id":409,"eClass":"EGenericType"},{"id":410,"eClass":"EGenericType"},{"id":411,"eClass":"EGenericType"},{"id":412,"eClass":"EGenericType"},{"id":413,"eClass":"EGenericType"},{"id":414,"eClass":"EGenericType"},{"id":415,"eClass":"EGenericType"},{"id":416,"eClass":"EGenericType"},{"id":417,"eClass":"EGenericType"},{"id":418,"eClass":"EGenericType"},{"id":419,"eClass":"EGenericType"},{"id":420,"eClass":"EGenericType"},{"id":421,"eClass":"EGenericType"},{"id":422,"eClass":"EGenericType"},{"id":423,"eClass":"EGenericType"},{"id":424,"eClass":"EGenericType"},{"id":425,"eClass":"EGenericType"},{"id":426,"eClass":"EGenericType"},{"id":427,"eClass":"EGenericType"},{"id":428,"eClass":"EGenericType"},{"id":429,"eClass":"EGenericType"},{"id":430,"eClass":"EGenericType"},{"id":431,"eClass":"EGenericType"},{"id":432,"eClass":"EGenericType"},{"id":433,"eClass":"EGenericType"},{"id":434,"eClass":"EGenericType"},{"id":435,"eClass":"EGenericType"},{"id":436,"eClass":"EGenericType"},{"id":437,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"target","changeable":true,"resolveProxies":true,"lowerBound":1,"id":438,"derived":false},{"id":439,"eClass":"EGenericType"},{"id":440,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"ownedEnd","changeable":true,"resolveProxies":true,"lowerBound":0,"id":441,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"memberEnd","changeable":true,"resolveProxies":true,"lowerBound":2,"id":442,"derived":false},{"id":443,"eClass":"EGenericType"},{"id":444,"eClass":"EGenericType"},{"id":445,"eClass":"EGenericType"},{"id":446,"eClass":"EGenericType"},{"id":447,"eClass":"EGenericType"},{"id":448,"eClass":"EGenericType"},{"id":449,"eClass":"EGenericType"},{"id":450,"eClass":"EGenericType"},{"id":451,"eClass":"EGenericType"},{"id":452,"eClass":"EGenericType"},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"bodies","changeable":true,"lowerBound":0,"iD":false,"id":453,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"language","changeable":true,"lowerBound":0,"iD":false,"id":454,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"behavior","changeable":true,"resolveProxies":true,"lowerBound":0,"id":455,"derived":false},{"id":456,"eClass":"EGenericType"},{"id":457,"eClass":"EGenericType"},{"id":458,"eClass":"EGenericType"},{"id":459,"eClass":"EGenericType"},{"id":460,"eClass":"EGenericType"},{"id":461,"eClass":"EGenericType"},{"id":462,"eClass":"EGenericType"},{"id":463,"eClass":"EGenericType"},{"id":464,"eClass":"EGenericType"},{"id":465,"eClass":"EGenericType"},{"id":466,"eClass":"EGenericType"},{"id":467,"eClass":"EGenericType"},{"id":468,"eClass":"EGenericType"},{"id":469,"eClass":"EGenericType"},{"id":470,"eClass":"EGenericType"},{"id":471,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"slot","changeable":true,"resolveProxies":true,"lowerBound":0,"id":472,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"classifier","changeable":true,"resolveProxies":true,"lowerBound":0,"id":473,"derived":false},{"id":474,"eClass":"EGenericType"},{"id":475,"eClass":"EGenericType"},{"id":476,"eClass":"EGenericType"},{"id":477,"eClass":"EGenericType"},{"id":478,"eClass":"EGenericType"},{"id":479,"eClass":"EGenericType"},{"id":480,"eClass":"EGenericType"},{"id":481,"eClass":"EGenericType"},{"id":482,"eClass":"EGenericType"},{"id":483,"eClass":"EGenericType"},{"id":484,"eClass":"EGenericType"},{"id":485,"eClass":"EGenericType"},{"id":486,"eClass":"EGenericType"},{"id":487,"eClass":"EGenericType"},{"id":488,"eClass":"EGenericType"},{"id":489,"eClass":"EGenericType"},{"id":490,"eClass":"EGenericType"},{"id":491,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"definingFeature","changeable":true,"resolveProxies":true,"lowerBound":1,"id":492,"derived":false},{"id":493,"eClass":"EGenericType"},{"id":494,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"result","changeable":true,"resolveProxies":true,"lowerBound":1,"id":495,"derived":false},{"id":496,"eClass":"EGenericType"},{"id":497,"eClass":"EGenericType"},{"id":498,"eClass":"EGenericType"},{"id":499,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"specification","changeable":true,"resolveProxies":true,"lowerBound":0,"id":500,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"ownedParameterSet","changeable":true,"resolveProxies":true,"lowerBound":0,"id":501,"derived":false},{"id":502,"eClass":"EGenericType"},{"id":503,"eClass":"EGenericType"},{"id":504,"eClass":"EGenericType"},{"id":505,"eClass":"EGenericType"},{"id":506,"eClass":"EGenericType"},{"id":507,"eClass":"EGenericType"},{"id":508,"eClass":"EGenericType"},{"id":509,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"owner","changeable":true,"resolveProxies":true,"lowerBound":0,"id":510,"derived":false},{"id":511,"eClass":"EGenericType"},{"id":512,"eClass":"EGenericType"},{"id":513,"eClass":"EGenericType"},{"id":514,"eClass":"EGenericType"},{"id":515,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"classifier","changeable":true,"resolveProxies":true,"lowerBound":1,"id":516,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"result","changeable":true,"resolveProxies":true,"lowerBound":1,"id":517,"derived":false},{"id":518,"eClass":"EGenericType"},{"id":519,"eClass":"EGenericType"},{"id":520,"eClass":"EGenericType"},{"id":521,"eClass":"EGenericType"},{"id":522,"eClass":"EGenericType"},{"id":523,"eClass":"EGenericType"},{"id":524,"eClass":"EGenericType"},{"id":525,"eClass":"EGenericType"},{"id":526,"eClass":"EGenericType"},{"id":527,"eClass":"EGenericType"},{"id":528,"eClass":"EGenericType"},{"id":529,"eClass":"EGenericType"},{"id":530,"eClass":"EGenericType"},{"id":531,"eClass":"EGenericType"},{"id":532,"eClass":"EGenericType"},{"id":533,"eClass":"EGenericType"},{"id":534,"eClass":"EGenericType"},{"id":535,"eClass":"EGenericType"},{"id":536,"eClass":"EGenericType"},{"id":537,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"constrainedElement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":538,"derived":false},{"id":539,"eClass":"EGenericType"},{"id":540,"eClass":"EGenericType"},{"id":541,"eClass":"EGenericType"},{"id":542,"eClass":"EGenericType"},{"id":543,"eClass":"EGenericType"},{"id":544,"eClass":"EGenericType"},{"id":545,"eClass":"EGenericType"},{"id":546,"eClass":"EGenericType"},{"id":547,"eClass":"EGenericType"},{"id":548,"eClass":"EGenericType"},{"id":549,"eClass":"EGenericType"},{"id":550,"eClass":"EGenericType"},{"id":551,"eClass":"EGenericType"},{"id":552,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isStatic","changeable":true,"lowerBound":0,"iD":false,"id":553,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"featuringClassifier","changeable":true,"resolveProxies":true,"lowerBound":0,"id":554,"derived":false},{"id":555,"eClass":"EGenericType"},{"id":556,"eClass":"EGenericType"},{"id":557,"eClass":"EGenericType"},{"id":558,"eClass":"EGenericType"},{"id":559,"eClass":"EGenericType"},{"id":560,"eClass":"EGenericType"},{"id":561,"eClass":"EGenericType"},{"id":562,"eClass":"EGenericType"},{"id":563,"eClass":"EGenericType"},{"id":564,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isOrdered","changeable":true,"lowerBound":0,"iD":false,"id":565,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isUnique","changeable":true,"lowerBound":0,"iD":false,"id":566,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"lower","changeable":true,"lowerBound":0,"iD":false,"id":567,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"upper","changeable":true,"lowerBound":0,"iD":false,"id":568,"derived":false},{"id":569,"eClass":"EGenericType"},{"id":570,"eClass":"EGenericType"},{"id":571,"eClass":"EGenericType"},{"id":572,"eClass":"EGenericType"},{"id":573,"eClass":"EGenericType"},{"id":574,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isReadOnly","changeable":true,"lowerBound":0,"iD":false,"id":575,"derived":false},{"id":576,"eClass":"EGenericType"},{"id":577,"eClass":"EGenericType"},{"id":578,"eClass":"EGenericType"},{"id":579,"eClass":"EGenericType"},{"id":580,"eClass":"EGenericType"},{"id":581,"eClass":"EGenericType"},{"id":582,"eClass":"EGenericType"},{"id":583,"eClass":"EGenericType"},{"id":584,"eClass":"EGenericType"},{"id":585,"eClass":"EGenericType"},{"id":586,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"member","changeable":true,"resolveProxies":true,"lowerBound":0,"id":587,"derived":false},{"id":588,"eClass":"EGenericType"},{"id":589,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isAbstract","changeable":true,"lowerBound":0,"iD":false,"id":590,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"feature","changeable":true,"resolveProxies":true,"lowerBound":0,"id":591,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"inheritedMember","changeable":true,"resolveProxies":true,"lowerBound":0,"id":592,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"generalization","changeable":true,"resolveProxies":true,"lowerBound":0,"id":593,"derived":false},{"id":594,"eClass":"EGenericType"},{"id":595,"eClass":"EGenericType"},{"id":596,"eClass":"EGenericType"},{"id":597,"eClass":"EGenericType"},{"id":598,"eClass":"EGenericType"},{"id":599,"eClass":"EGenericType"},{"id":600,"eClass":"EGenericType"},{"id":601,"eClass":"EGenericType"},{"id":602,"eClass":"EGenericType"},{"id":603,"eClass":"EGenericType"},{"id":604,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isActive","changeable":true,"lowerBound":0,"iD":false,"id":605,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"nestedClassifier","changeable":true,"resolveProxies":true,"lowerBound":0,"id":606,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"ownedReception","changeable":true,"resolveProxies":true,"lowerBound":0,"id":607,"derived":false},{"id":608,"eClass":"EGenericType"},{"id":609,"eClass":"EGenericType"},{"id":610,"eClass":"EGenericType"},{"id":611,"eClass":"EGenericType"},{"id":612,"eClass":"EGenericType"},{"id":613,"eClass":"EGenericType"},{"id":614,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"context_","changeable":true,"resolveProxies":true,"lowerBound":0,"id":615,"derived":false},{"id":616,"eClass":"EGenericType"},{"id":617,"eClass":"EGenericType"},{"id":618,"eClass":"EGenericType"},{"id":619,"eClass":"EGenericType"},{"id":620,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"visibility","changeable":true,"lowerBound":0,"iD":false,"id":621,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"importedElement","changeable":true,"resolveProxies":true,"lowerBound":1,"id":622,"derived":false},{"id":623,"eClass":"EGenericType"},{"id":624,"eClass":"EGenericType"},{"id":625,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"structuralFeature","changeable":true,"resolveProxies":true,"lowerBound":1,"id":626,"derived":false},{"id":627,"eClass":"EGenericType"},{"id":628,"eClass":"EGenericType"},{"id":629,"eClass":"EGenericType"},{"id":630,"eClass":"EGenericType"},{"id":631,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":0,"target":8},{"source":0,"target":9},{"source":0,"target":10},{"source":0,"target":11},{"source":0,"target":12},{"source":0,"target":13},{"source":0,"target":14},{"source":0,"target":15},{"source":0,"target":16},{"source":0,"target":17},{"source":0,"target":18},{"source":0,"target":19},{"source":0,"target":20},{"source":0,"target":21},{"source":0,"target":22},{"source":0,"target":23},{"source":0,"target":24},{"source":0,"target":25},{"source":0,"target":26},{"source":0,"target":27},{"source":0,"target":28},{"source":0,"target":29},{"source":0,"target":30},{"source":0,"target":31},{"source":0,"target":32},{"source":0,"target":33},{"source":0,"target":34},{"source":0,"target":35},{"source":0,"target":36},{"source":0,"target":37},{"source":0,"target":38},{"source":0,"target":39},{"source":0,"target":40},{"source":0,"target":41},{"source":0,"target":42},{"source":0,"target":43},{"source":0,"target":44},{"source":0,"target":45},{"source":0,"target":46},{"source":0,"target":47},{"source":0,"target":48},{"source":0,"target":49},{"source":0,"target":50},{"source":0,"target":51},{"source":0,"target":52},{"source":0,"target":53},{"source":0,"target":54},{"source":0,"target":55},{"source":0,"target":56},{"source":0,"target":57},{"source":0,"target":58},{"source":0,"target":59},{"source":0,"target":60},{"source":0,"target":61},{"source":0,"target":62},{"source":0,"target":63},{"source":0,"target":64},{"source":0,"target":65},{"source":0,"target":66},{"source":0,"target":67},{"source":0,"target":68},{"source":0,"target":69},{"source":0,"target":70},{"source":0,"target":71},{"source":0,"target":72},{"source":0,"target":73},{"source":0,"target":74},{"source":0,"target":75},{"source":0,"target":76},{"source":0,"target":77},{"source":0,"target":78},{"source":0,"target":79},{"source":0,"target":80},{"source":0,"target":81},{"source":0,"target":82},{"source":0,"target":83},{"source":0,"target":84},{"source":0,"target":85},{"source":0,"target":86},{"source":0,"target":87},{"source":0,"target":88},{"source":0,"target":89},{"source":0,"target":90},{"source":0,"target":91},{"source":0,"target":92},{"source":0,"target":93},{"source":0,"target":94},{"source":0,"target":95},{"source":0,"target":96},{"source":0,"target":97},{"source":0,"target":98},{"source":0,"target":99},{"source":0,"target":100},{"source":0,"target":101},{"source":0,"target":102},{"source":0,"target":103},{"source":0,"target":104},{"source":0,"target":105},{"source":0,"target":106},{"source":0,"target":107},{"source":0,"target":108},{"source":0,"target":109},{"source":0,"target":110},{"source":0,"target":111},{"source":0,"target":112},{"source":0,"target":113},{"source":0,"target":114},{"source":0,"target":115},{"source":0,"target":116},{"source":0,"target":117},{"source":0,"target":118},{"source":0,"target":119},{"source":0,"target":120},{"source":0,"target":121},{"source":0,"target":122},{"source":0,"target":123},{"source":0,"target":124},{"source":0,"target":125},{"source":0,"target":126},{"source":0,"target":127},{"source":0,"target":128},{"source":0,"target":129},{"source":0,"target":130},{"source":0,"target":131},{"source":0,"target":132},{"source":0,"target":133},{"source":0,"target":134},{"source":0,"target":135},{"source":0,"target":136},{"source":0,"target":137},{"source":0,"target":138},{"source":0,"target":139},{"source":0,"target":140},{"source":0,"target":141},{"source":0,"target":142},{"source":0,"target":143},{"source":0,"target":144},{"source":0,"target":145},{"source":0,"target":146},{"source":0,"target":147},{"source":0,"target":148},{"source":0,"target":149},{"source":0,"target":150},{"source":0,"target":151},{"source":0,"target":152},{"source":0,"target":153},{"source":0,"target":154},{"source":0,"target":155},{"source":0,"target":156},{"source":0,"target":157},{"source":0,"target":158},{"source":0,"target":159},{"source":0,"target":160},{"source":0,"target":161},{"source":0,"target":162},{"source":0,"target":163},{"source":0,"target":164},{"source":0,"target":165},{"source":0,"target":166},{"source":0,"target":167},{"source":0,"target":168},{"source":0,"target":169},{"source":0,"target":170},{"source":0,"target":171},{"source":0,"target":172},{"source":0,"target":173},{"source":0,"target":174},{"source":0,"target":175},{"source":0,"target":176},{"source":0,"target":177},{"source":0,"target":178},{"source":0,"target":179},{"source":0,"target":180},{"source":0,"target":181},{"source":0,"target":182},{"source":0,"target":183},{"source":0,"target":184},{"source":0,"target":185},{"source":0,"target":186},{"source":0,"target":187},{"source":0,"target":188},{"source":0,"target":189},{"source":0,"target":190},{"source":0,"target":191},{"source":0,"target":192},{"source":0,"target":193},{"source":0,"target":194},{"source":0,"target":195},{"source":0,"target":196},{"source":0,"target":197},{"source":0,"target":198},{"source":0,"target":199},{"source":0,"target":200},{"source":0,"target":201},{"source":0,"target":202},{"source":0,"target":203},{"source":0,"target":204},{"source":0,"target":205},{"source":0,"target":206},{"source":0,"target":207},{"source":0,"target":208},{"source":0,"target":209},{"source":0,"target":210},{"source":0,"target":211},{"source":0,"target":212},{"source":0,"target":213},{"source":0,"target":214},{"source":0,"target":215},{"source":0,"target":216},{"source":0,"target":217},{"source":0,"target":218},{"source":0,"target":219},{"source":0,"target":220},{"source":0,"target":221},{"source":0,"target":222},{"source":0,"target":223},{"source":0,"target":224},{"source":0,"target":225},{"source":0,"target":226},{"source":0,"target":227},{"source":0,"target":228},{"source":0,"target":229},{"source":0,"target":230},{"source":1,"target":0},{"source":1,"target":231},{"source":1,"target":232},{"source":1,"target":233},{"source":231,"target":1},{"source":232,"target":1},{"source":233,"target":1},{"source":2,"target":0},{"source":2,"target":234},{"source":2,"target":235},{"source":2,"target":236},{"source":2,"target":237},{"source":234,"target":2},{"source":235,"target":2},{"source":236,"target":2},{"source":237,"target":2},{"source":3,"target":0},{"source":3,"target":238},{"source":3,"target":239},{"source":3,"target":240},{"source":3,"target":241},{"source":238,"target":3},{"source":239,"target":3},{"source":240,"target":3},{"source":241,"target":3},{"source":4,"target":0},{"source":4,"target":215},{"source":4,"target":226},{"source":4,"target":57},{"source":4,"target":242},{"source":4,"target":243},{"source":4,"target":244},{"source":242,"target":215},{"source":243,"target":226},{"source":244,"target":57},{"source":5,"target":0},{"source":5,"target":132},{"source":5,"target":245},{"source":245,"target":132},{"source":6,"target":0},{"source":6,"target":12},{"source":6,"target":246},{"source":246,"target":12},{"source":7,"target":0},{"source":7,"target":52},{"source":7,"target":247},{"source":247,"target":52},{"source":8,"target":0},{"source":8,"target":107},{"source":8,"target":248},{"source":248,"target":107},{"source":9,"target":0},{"source":9,"target":74},{"source":9,"target":249},{"source":249,"target":74},{"source":10,"target":0},{"source":10,"target":166},{"source":10,"target":250},{"source":250,"target":166},{"source":11,"target":0},{"source":11,"target":32},{"source":11,"target":251},{"source":11,"target":252},{"source":251,"target":98},{"source":251,"target":253},{"source":251,"target":11},{"source":253,"target":98},{"source":252,"target":32},{"source":12,"target":0},{"source":12,"target":34},{"source":12,"target":254},{"source":254,"target":34},{"source":13,"target":0},{"source":13,"target":75},{"source":13,"target":255},{"source":255,"target":75},{"source":14,"target":0},{"source":14,"target":119},{"source":14,"target":256},{"source":256,"target":119},{"source":15,"target":0},{"source":15,"target":215},{"source":15,"target":12},{"source":15,"target":257},{"source":15,"target":258},{"source":257,"target":215},{"source":258,"target":12},{"source":16,"target":0},{"source":16,"target":34},{"source":16,"target":259},{"source":259,"target":34},{"source":17,"target":0},{"source":17,"target":85},{"source":17,"target":260},{"source":260,"target":85},{"source":18,"target":0},{"source":18,"target":34},{"source":18,"target":261},{"source":261,"target":34},{"source":19,"target":0},{"source":19,"target":49},{"source":19,"target":262},{"source":262,"target":49},{"source":20,"target":0},{"source":20,"target":213},{"source":20,"target":92},{"source":20,"target":206},{"source":20,"target":263},{"source":20,"target":264},{"source":20,"target":265},{"source":20,"target":266},{"source":263,"target":2},{"source":263,"target":267},{"source":263,"target":20},{"source":267,"target":2},{"source":264,"target":213},{"source":265,"target":92},{"source":266,"target":206},{"source":21,"target":0},{"source":21,"target":42},{"source":21,"target":268},{"source":268,"target":42},{"source":22,"target":0},{"source":22,"target":216},{"source":22,"target":269},{"source":269,"target":216},{"source":23,"target":0},{"source":23,"target":216},{"source":23,"target":270},{"source":270,"target":216},{"source":24,"target":0},{"source":24,"target":208},{"source":24,"target":213},{"source":24,"target":39},{"source":24,"target":271},{"source":24,"target":272},{"source":24,"target":273},{"source":24,"target":274},{"source":24,"target":275},{"source":24,"target":276},{"source":24,"target":277},{"source":24,"target":278},{"source":24,"target":279},{"source":24,"target":280},{"source":271,"target":281},{"source":271,"target":24},{"source":272,"target":282},{"source":272,"target":24},{"source":273,"target":283},{"source":273,"target":24},{"source":274,"target":1},{"source":274,"target":284},{"source":274,"target":24},{"source":284,"target":1},{"source":275,"target":24},{"source":275,"target":285},{"source":275,"target":24},{"source":285,"target":24},{"source":276,"target":124},{"source":276,"target":286},{"source":276,"target":24},{"source":286,"target":124},{"source":277,"target":24},{"source":277,"target":287},{"source":277,"target":24},{"source":287,"target":24},{"source":278,"target":208},{"source":279,"target":213},{"source":280,"target":39},{"source":25,"target":0},{"source":25,"target":57},{"source":25,"target":288},{"source":288,"target":57},{"source":26,"target":0},{"source":26,"target":29},{"source":26,"target":289},{"source":289,"target":29},{"source":27,"target":0},{"source":27,"target":164},{"source":27,"target":290},{"source":290,"target":164},{"source":28,"target":0},{"source":28,"target":164},{"source":28,"target":291},{"source":291,"target":164},{"source":29,"target":0},{"source":29,"target":8},{"source":29,"target":292},{"source":292,"target":8},{"source":30,"target":0},{"source":30,"target":198},{"source":30,"target":293},{"source":293,"target":198},{"source":31,"target":0},{"source":31,"target":8},{"source":31,"target":294},{"source":294,"target":8},{"source":32,"target":0},{"source":32,"target":34},{"source":32,"target":28},{"source":32,"target":295},{"source":32,"target":296},{"source":295,"target":34},{"source":296,"target":28},{"source":33,"target":0},{"source":33,"target":34},{"source":33,"target":173},{"source":33,"target":297},{"source":33,"target":298},{"source":297,"target":34},{"source":298,"target":173},{"source":34,"target":0},{"source":34,"target":207},{"source":34,"target":299},{"source":34,"target":300},{"source":34,"target":301},{"source":299,"target":302},{"source":299,"target":34},{"source":300,"target":3},{"source":300,"target":303},{"source":300,"target":34},{"source":303,"target":3},{"source":301,"target":207},{"source":35,"target":0},{"source":35,"target":166},{"source":35,"target":304},{"source":304,"target":166},{"source":36,"target":0},{"source":36,"target":50},{"source":36,"target":206},{"source":36,"target":305},{"source":36,"target":306},{"source":305,"target":50},{"source":306,"target":206},{"source":37,"target":0},{"source":37,"target":34},{"source":37,"target":307},{"source":307,"target":34},{"source":38,"target":0},{"source":38,"target":222},{"source":38,"target":308},{"source":308,"target":222},{"source":39,"target":0},{"source":39,"target":34},{"source":39,"target":309},{"source":309,"target":34},{"source":40,"target":0},{"source":40,"target":108},{"source":40,"target":310},{"source":310,"target":108},{"source":41,"target":0},{"source":41,"target":103},{"source":41,"target":311},{"source":311,"target":103},{"source":42,"target":0},{"source":42,"target":16},{"source":42,"target":312},{"source":312,"target":16},{"source":43,"target":0},{"source":43,"target":223},{"source":43,"target":313},{"source":313,"target":223},{"source":44,"target":0},{"source":44,"target":206},{"source":44,"target":314},{"source":314,"target":206},{"source":45,"target":0},{"source":45,"target":8},{"source":45,"target":315},{"source":315,"target":8},{"source":46,"target":0},{"source":46,"target":34},{"source":46,"target":316},{"source":316,"target":34},{"source":47,"target":0},{"source":47,"target":63},{"source":47,"target":317},{"source":317,"target":63},{"source":48,"target":0},{"source":48,"target":146},{"source":48,"target":318},{"source":318,"target":146},{"source":49,"target":0},{"source":49,"target":185},{"source":49,"target":319},{"source":319,"target":185},{"source":50,"target":0},{"source":50,"target":107},{"source":50,"target":92},{"source":50,"target":320},{"source":50,"target":321},{"source":320,"target":107},{"source":321,"target":92},{"source":51,"target":0},{"source":51,"target":34},{"source":51,"target":322},{"source":322,"target":34},{"source":52,"target":0},{"source":52,"target":216},{"source":52,"target":323},{"source":52,"target":324},{"source":52,"target":325},{"source":323,"target":158},{"source":323,"target":326},{"source":323,"target":52},{"source":326,"target":158},{"source":324,"target":158},{"source":324,"target":327},{"source":324,"target":52},{"source":327,"target":158},{"source":325,"target":216},{"source":53,"target":0},{"source":53,"target":213},{"source":53,"target":92},{"source":53,"target":206},{"source":53,"target":328},{"source":53,"target":329},{"source":53,"target":330},{"source":328,"target":213},{"source":329,"target":92},{"source":330,"target":206},{"source":54,"target":0},{"source":54,"target":37},{"source":54,"target":331},{"source":331,"target":37},{"source":55,"target":0},{"source":55,"target":216},{"source":55,"target":332},{"source":332,"target":216},{"source":56,"target":0},{"source":56,"target":112},{"source":56,"target":333},{"source":333,"target":112},{"source":57,"target":0},{"source":57,"target":34},{"source":57,"target":334},{"source":334,"target":34},{"source":58,"target":0},{"source":58,"target":49},{"source":58,"target":335},{"source":335,"target":49},{"source":59,"target":0},{"source":59,"target":32},{"source":59,"target":336},{"source":336,"target":32},{"source":60,"target":0},{"source":60,"target":8},{"source":60,"target":337},{"source":337,"target":8},{"source":61,"target":0},{"source":61,"target":199},{"source":61,"target":338},{"source":338,"target":199},{"source":62,"target":0},{"source":62,"target":223},{"source":62,"target":339},{"source":339,"target":223},{"source":63,"target":0},{"source":63,"target":215},{"source":63,"target":199},{"source":63,"target":340},{"source":63,"target":341},{"source":340,"target":215},{"source":341,"target":199},{"source":64,"target":0},{"source":64,"target":50},{"source":64,"target":342},{"source":342,"target":50},{"source":65,"target":0},{"source":65,"target":207},{"source":65,"target":343},{"source":343,"target":207},{"source":66,"target":0},{"source":66,"target":228},{"source":66,"target":344},{"source":344,"target":228},{"source":67,"target":0},{"source":67,"target":164},{"source":67,"target":345},{"source":67,"target":346},{"source":345,"target":24},{"source":345,"target":347},{"source":345,"target":67},{"source":347,"target":24},{"source":346,"target":164},{"source":68,"target":0},{"source":68,"target":12},{"source":68,"target":348},{"source":348,"target":12},{"source":69,"target":0},{"source":69,"target":12},{"source":69,"target":349},{"source":349,"target":12},{"source":70,"target":0},{"source":70,"target":124},{"source":70,"target":350},{"source":350,"target":124},{"source":71,"target":0},{"source":71,"target":221},{"source":71,"target":39},{"source":71,"target":351},{"source":71,"target":352},{"source":351,"target":221},{"source":352,"target":39},{"source":72,"target":0},{"source":72,"target":23},{"source":72,"target":353},{"source":353,"target":23},{"source":73,"target":0},{"source":73,"target":223},{"source":73,"target":354},{"source":73,"target":355},{"source":73,"target":356},{"source":354,"target":119},{"source":354,"target":357},{"source":354,"target":73},{"source":357,"target":119},{"source":355,"target":119},{"source":355,"target":358},{"source":355,"target":73},{"source":358,"target":119},{"source":356,"target":223},{"source":74,"target":0},{"source":74,"target":182},{"source":74,"target":359},{"source":359,"target":182},{"source":75,"target":0},{"source":75,"target":223},{"source":75,"target":215},{"source":75,"target":173},{"source":75,"target":360},{"source":75,"target":361},{"source":75,"target":362},{"source":360,"target":223},{"source":361,"target":215},{"source":362,"target":173},{"source":76,"target":0},{"source":76,"target":182},{"source":76,"target":363},{"source":363,"target":182},{"source":77,"target":0},{"source":77,"target":223},{"source":77,"target":364},{"source":364,"target":223},{"source":78,"target":0},{"source":78,"target":223},{"source":78,"target":365},{"source":365,"target":223},{"source":79,"target":0},{"source":79,"target":164},{"source":79,"target":366},{"source":79,"target":367},{"source":79,"target":368},{"source":79,"target":369},{"source":366,"target":119},{"source":366,"target":370},{"source":366,"target":79},{"source":370,"target":119},{"source":367,"target":24},{"source":367,"target":371},{"source":367,"target":79},{"source":371,"target":24},{"source":368,"target":67},{"source":368,"target":372},{"source":368,"target":79},{"source":372,"target":67},{"source":369,"target":164},{"source":80,"target":0},{"source":80,"target":223},{"source":80,"target":373},{"source":373,"target":223},{"source":81,"target":0},{"source":81,"target":71},{"source":81,"target":374},{"source":374,"target":71},{"source":82,"target":0},{"source":82,"target":221},{"source":82,"target":124},{"source":82,"target":375},{"source":82,"target":376},{"source":375,"target":221},{"source":376,"target":124},{"source":83,"target":0},{"source":83,"target":108},{"source":83,"target":377},{"source":377,"target":108},{"source":84,"target":0},{"source":84,"target":77},{"source":84,"target":378},{"source":378,"target":77},{"source":85,"target":0},{"source":85,"target":228},{"source":85,"target":379},{"source":85,"target":380},{"source":379,"target":119},{"source":379,"target":381},{"source":379,"target":85},{"source":381,"target":119},{"source":380,"target":228},{"source":86,"target":0},{"source":86,"target":34},{"source":86,"target":49},{"source":86,"target":382},{"source":86,"target":383},{"source":382,"target":34},{"source":383,"target":49},{"source":87,"target":0},{"source":87,"target":8},{"source":87,"target":384},{"source":384,"target":8},{"source":88,"target":0},{"source":88,"target":226},{"source":88,"target":385},{"source":385,"target":226},{"source":89,"target":0},{"source":89,"target":75},{"source":89,"target":386},{"source":386,"target":75},{"source":90,"target":0},{"source":90,"target":216},{"source":90,"target":387},{"source":387,"target":216},{"source":91,"target":0},{"source":91,"target":207},{"source":91,"target":388},{"source":388,"target":207},{"source":92,"target":0},{"source":92,"target":34},{"source":92,"target":389},{"source":92,"target":390},{"source":389,"target":93},{"source":389,"target":391},{"source":389,"target":92},{"source":391,"target":93},{"source":390,"target":34},{"source":93,"target":0},{"source":93,"target":32},{"source":93,"target":392},{"source":392,"target":32},{"source":94,"target":0},{"source":94,"target":41},{"source":94,"target":393},{"source":393,"target":41},{"source":95,"target":0},{"source":95,"target":216},{"source":95,"target":394},{"source":394,"target":216},{"source":96,"target":0},{"source":96,"target":177},{"source":96,"target":395},{"source":395,"target":177},{"source":97,"target":0},{"source":97,"target":50},{"source":97,"target":396},{"source":396,"target":50},{"source":98,"target":0},{"source":98,"target":49},{"source":98,"target":397},{"source":98,"target":398},{"source":397,"target":216},{"source":397,"target":399},{"source":397,"target":98},{"source":399,"target":216},{"source":398,"target":49},{"source":99,"target":0},{"source":99,"target":49},{"source":99,"target":400},{"source":99,"target":401},{"source":400,"target":3},{"source":400,"target":402},{"source":400,"target":99},{"source":402,"target":3},{"source":401,"target":49},{"source":100,"target":0},{"source":100,"target":216},{"source":100,"target":403},{"source":403,"target":216},{"source":101,"target":0},{"source":101,"target":226},{"source":101,"target":27},{"source":101,"target":404},{"source":101,"target":405},{"source":404,"target":226},{"source":405,"target":27},{"source":102,"target":0},{"source":102,"target":63},{"source":102,"target":92},{"source":102,"target":206},{"source":102,"target":28},{"source":102,"target":406},{"source":102,"target":407},{"source":102,"target":408},{"source":102,"target":409},{"source":102,"target":410},{"source":102,"target":411},{"source":102,"target":412},{"source":406,"target":413},{"source":406,"target":102},{"source":407,"target":20},{"source":407,"target":414},{"source":407,"target":102},{"source":414,"target":20},{"source":408,"target":187},{"source":408,"target":415},{"source":408,"target":102},{"source":415,"target":187},{"source":409,"target":63},{"source":410,"target":92},{"source":411,"target":206},{"source":412,"target":28},{"source":103,"target":0},{"source":103,"target":223},{"source":103,"target":416},{"source":416,"target":223},{"source":104,"target":0},{"source":104,"target":107},{"source":104,"target":417},{"source":417,"target":107},{"source":105,"target":0},{"source":105,"target":103},{"source":105,"target":418},{"source":418,"target":103},{"source":106,"target":0},{"source":106,"target":173},{"source":106,"target":419},{"source":419,"target":173},{"source":107,"target":0},{"source":107,"target":226},{"source":107,"target":420},{"source":420,"target":226},{"source":108,"target":0},{"source":108,"target":92},{"source":108,"target":28},{"source":108,"target":421},{"source":108,"target":422},{"source":421,"target":92},{"source":422,"target":28},{"source":109,"target":0},{"source":109,"target":223},{"source":109,"target":423},{"source":423,"target":223},{"source":110,"target":0},{"source":110,"target":177},{"source":110,"target":424},{"source":424,"target":177},{"source":111,"target":0},{"source":111,"target":224},{"source":111,"target":425},{"source":425,"target":224},{"source":112,"target":0},{"source":112,"target":142},{"source":112,"target":426},{"source":426,"target":142},{"source":113,"target":0},{"source":113,"target":56},{"source":113,"target":427},{"source":427,"target":56},{"source":114,"target":0},{"source":114,"target":32},{"source":114,"target":49},{"source":114,"target":428},{"source":114,"target":429},{"source":428,"target":32},{"source":429,"target":49},{"source":115,"target":0},{"source":115,"target":24},{"source":115,"target":430},{"source":430,"target":24},{"source":116,"target":0},{"source":116,"target":146},{"source":116,"target":431},{"source":431,"target":146},{"source":117,"target":0},{"source":117,"target":223},{"source":117,"target":432},{"source":432,"target":223},{"source":118,"target":0},{"source":118,"target":142},{"source":118,"target":433},{"source":433,"target":142},{"source":119,"target":0},{"source":119,"target":36},{"source":119,"target":434},{"source":434,"target":36},{"source":120,"target":0},{"source":120,"target":84},{"source":120,"target":435},{"source":435,"target":84},{"source":121,"target":0},{"source":121,"target":88},{"source":121,"target":436},{"source":436,"target":88},{"source":122,"target":0},{"source":122,"target":4},{"source":122,"target":437},{"source":437,"target":4},{"source":123,"target":0},{"source":123,"target":223},{"source":123,"target":438},{"source":123,"target":439},{"source":438,"target":119},{"source":438,"target":440},{"source":438,"target":123},{"source":440,"target":119},{"source":439,"target":223},{"source":124,"target":0},{"source":124,"target":216},{"source":124,"target":185},{"source":124,"target":441},{"source":124,"target":442},{"source":124,"target":443},{"source":124,"target":444},{"source":441,"target":24},{"source":441,"target":445},{"source":441,"target":124},{"source":445,"target":24},{"source":442,"target":24},{"source":442,"target":446},{"source":442,"target":124},{"source":446,"target":24},{"source":443,"target":216},{"source":444,"target":185},{"source":125,"target":0},{"source":125,"target":42},{"source":125,"target":447},{"source":447,"target":42},{"source":126,"target":0},{"source":126,"target":34},{"source":126,"target":49},{"source":126,"target":448},{"source":126,"target":449},{"source":448,"target":34},{"source":449,"target":49},{"source":127,"target":0},{"source":127,"target":99},{"source":127,"target":450},{"source":450,"target":99},{"source":128,"target":0},{"source":128,"target":221},{"source":128,"target":451},{"source":451,"target":221},{"source":129,"target":0},{"source":129,"target":49},{"source":129,"target":452},{"source":452,"target":49},{"source":130,"target":0},{"source":130,"target":108},{"source":130,"target":453},{"source":130,"target":454},{"source":130,"target":455},{"source":130,"target":456},{"source":453,"target":457},{"source":453,"target":130},{"source":454,"target":458},{"source":454,"target":130},{"source":455,"target":158},{"source":455,"target":459},{"source":455,"target":130},{"source":459,"target":158},{"source":456,"target":108},{"source":131,"target":0},{"source":131,"target":108},{"source":131,"target":460},{"source":460,"target":108},{"source":132,"target":0},{"source":132,"target":12},{"source":132,"target":37},{"source":132,"target":461},{"source":132,"target":462},{"source":461,"target":12},{"source":462,"target":37},{"source":133,"target":0},{"source":133,"target":100},{"source":133,"target":463},{"source":463,"target":100},{"source":134,"target":0},{"source":134,"target":79},{"source":134,"target":464},{"source":464,"target":79},{"source":135,"target":0},{"source":135,"target":223},{"source":135,"target":465},{"source":465,"target":223},{"source":136,"target":0},{"source":136,"target":226},{"source":136,"target":466},{"source":466,"target":226},{"source":137,"target":0},{"source":137,"target":221},{"source":137,"target":467},{"source":467,"target":221},{"source":138,"target":0},{"source":138,"target":146},{"source":138,"target":468},{"source":468,"target":146},{"source":139,"target":0},{"source":139,"target":164},{"source":139,"target":469},{"source":469,"target":164},{"source":140,"target":0},{"source":140,"target":215},{"source":140,"target":226},{"source":140,"target":470},{"source":140,"target":471},{"source":470,"target":215},{"source":471,"target":226},{"source":141,"target":0},{"source":141,"target":32},{"source":141,"target":39},{"source":141,"target":51},{"source":141,"target":472},{"source":141,"target":473},{"source":141,"target":474},{"source":141,"target":475},{"source":141,"target":476},{"source":472,"target":154},{"source":472,"target":477},{"source":472,"target":141},{"source":477,"target":154},{"source":473,"target":216},{"source":473,"target":478},{"source":473,"target":141},{"source":478,"target":216},{"source":474,"target":32},{"source":475,"target":39},{"source":476,"target":51},{"source":142,"target":0},{"source":142,"target":32},{"source":142,"target":49},{"source":142,"target":479},{"source":142,"target":480},{"source":479,"target":32},{"source":480,"target":49},{"source":143,"target":0},{"source":143,"target":223},{"source":143,"target":481},{"source":481,"target":223},{"source":144,"target":0},{"source":144,"target":50},{"source":144,"target":482},{"source":482,"target":50},{"source":145,"target":0},{"source":145,"target":24},{"source":145,"target":483},{"source":483,"target":24},{"source":146,"target":0},{"source":146,"target":164},{"source":146,"target":484},{"source":484,"target":164},{"source":147,"target":0},{"source":147,"target":42},{"source":147,"target":485},{"source":485,"target":42},{"source":148,"target":0},{"source":148,"target":85},{"source":148,"target":486},{"source":486,"target":85},{"source":149,"target":0},{"source":149,"target":57},{"source":149,"target":487},{"source":487,"target":57},{"source":150,"target":0},{"source":150,"target":77},{"source":150,"target":488},{"source":488,"target":77},{"source":151,"target":0},{"source":151,"target":112},{"source":151,"target":489},{"source":489,"target":112},{"source":152,"target":0},{"source":152,"target":56},{"source":152,"target":490},{"source":490,"target":56},{"source":153,"target":0},{"source":153,"target":216},{"source":153,"target":491},{"source":491,"target":216},{"source":154,"target":0},{"source":154,"target":164},{"source":154,"target":492},{"source":154,"target":493},{"source":492,"target":208},{"source":492,"target":494},{"source":492,"target":154},{"source":494,"target":208},{"source":493,"target":164},{"source":155,"target":0},{"source":155,"target":223},{"source":155,"target":495},{"source":155,"target":496},{"source":495,"target":210},{"source":495,"target":497},{"source":495,"target":155},{"source":497,"target":210},{"source":496,"target":223},{"source":156,"target":0},{"source":156,"target":223},{"source":156,"target":498},{"source":498,"target":223},{"source":157,"target":0},{"source":157,"target":223},{"source":157,"target":499},{"source":499,"target":223},{"source":158,"target":0},{"source":158,"target":221},{"source":158,"target":500},{"source":158,"target":501},{"source":158,"target":502},{"source":500,"target":63},{"source":500,"target":503},{"source":500,"target":158},{"source":503,"target":63},{"source":501,"target":18},{"source":501,"target":504},{"source":501,"target":158},{"source":504,"target":18},{"source":502,"target":221},{"source":159,"target":0},{"source":159,"target":222},{"source":159,"target":505},{"source":505,"target":222},{"source":160,"target":0},{"source":160,"target":224},{"source":160,"target":506},{"source":506,"target":224},{"source":161,"target":0},{"source":161,"target":212},{"source":161,"target":507},{"source":507,"target":212},{"source":162,"target":0},{"source":162,"target":141},{"source":162,"target":508},{"source":508,"target":141},{"source":163,"target":0},{"source":163,"target":223},{"source":163,"target":509},{"source":509,"target":223},{"source":164,"target":0},{"source":164,"target":510},{"source":510,"target":164},{"source":510,"target":511},{"source":510,"target":164},{"source":511,"target":164},{"source":165,"target":0},{"source":165,"target":117},{"source":165,"target":512},{"source":512,"target":117},{"source":166,"target":0},{"source":166,"target":226},{"source":166,"target":513},{"source":513,"target":226},{"source":167,"target":0},{"source":167,"target":158},{"source":167,"target":514},{"source":514,"target":158},{"source":168,"target":0},{"source":168,"target":85},{"source":168,"target":515},{"source":515,"target":85},{"source":169,"target":0},{"source":169,"target":223},{"source":169,"target":516},{"source":169,"target":517},{"source":169,"target":518},{"source":516,"target":216},{"source":516,"target":519},{"source":516,"target":169},{"source":519,"target":216},{"source":517,"target":210},{"source":517,"target":520},{"source":517,"target":169},{"source":520,"target":210},{"source":518,"target":223},{"source":170,"target":0},{"source":170,"target":164},{"source":170,"target":521},{"source":521,"target":164},{"source":171,"target":0},{"source":171,"target":75},{"source":171,"target":522},{"source":522,"target":75},{"source":172,"target":0},{"source":172,"target":228},{"source":172,"target":523},{"source":523,"target":228},{"source":173,"target":0},{"source":173,"target":164},{"source":173,"target":524},{"source":524,"target":164},{"source":174,"target":0},{"source":174,"target":12},{"source":174,"target":525},{"source":525,"target":12},{"source":175,"target":0},{"source":175,"target":64},{"source":175,"target":526},{"source":526,"target":64},{"source":176,"target":0},{"source":176,"target":8},{"source":176,"target":527},{"source":527,"target":8},{"source":177,"target":0},{"source":177,"target":187},{"source":177,"target":528},{"source":528,"target":187},{"source":178,"target":0},{"source":178,"target":12},{"source":178,"target":529},{"source":529,"target":12},{"source":179,"target":0},{"source":179,"target":103},{"source":179,"target":530},{"source":530,"target":103},{"source":180,"target":0},{"source":180,"target":224},{"source":180,"target":531},{"source":531,"target":224},{"source":181,"target":0},{"source":181,"target":130},{"source":181,"target":532},{"source":532,"target":130},{"source":182,"target":0},{"source":182,"target":223},{"source":182,"target":533},{"source":533,"target":223},{"source":183,"target":0},{"source":183,"target":158},{"source":183,"target":534},{"source":534,"target":158},{"source":184,"target":0},{"source":184,"target":85},{"source":184,"target":535},{"source":535,"target":85},{"source":185,"target":0},{"source":185,"target":164},{"source":185,"target":536},{"source":536,"target":164},{"source":186,"target":0},{"source":186,"target":182},{"source":186,"target":537},{"source":537,"target":182},{"source":187,"target":0},{"source":187,"target":32},{"source":187,"target":538},{"source":187,"target":539},{"source":538,"target":164},{"source":538,"target":540},{"source":538,"target":187},{"source":540,"target":164},{"source":539,"target":32},{"source":188,"target":0},{"source":188,"target":124},{"source":188,"target":541},{"source":541,"target":124},{"source":189,"target":0},{"source":189,"target":41},{"source":189,"target":542},{"source":542,"target":41},{"source":190,"target":0},{"source":190,"target":71},{"source":190,"target":543},{"source":543,"target":71},{"source":191,"target":0},{"source":191,"target":84},{"source":191,"target":544},{"source":544,"target":84},{"source":192,"target":0},{"source":192,"target":100},{"source":192,"target":545},{"source":545,"target":100},{"source":193,"target":0},{"source":193,"target":34},{"source":193,"target":546},{"source":546,"target":34},{"source":194,"target":0},{"source":194,"target":164},{"source":194,"target":547},{"source":547,"target":164},{"source":195,"target":0},{"source":195,"target":142},{"source":195,"target":548},{"source":548,"target":142},{"source":196,"target":0},{"source":196,"target":34},{"source":196,"target":549},{"source":549,"target":34},{"source":197,"target":0},{"source":197,"target":29},{"source":197,"target":550},{"source":550,"target":29},{"source":198,"target":0},{"source":198,"target":216},{"source":198,"target":51},{"source":198,"target":551},{"source":198,"target":552},{"source":551,"target":216},{"source":552,"target":51},{"source":199,"target":0},{"source":199,"target":226},{"source":199,"target":553},{"source":199,"target":554},{"source":199,"target":555},{"source":553,"target":556},{"source":553,"target":199},{"source":554,"target":216},{"source":554,"target":557},{"source":554,"target":199},{"source":557,"target":216},{"source":555,"target":226},{"source":200,"target":0},{"source":200,"target":224},{"source":200,"target":558},{"source":558,"target":224},{"source":201,"target":0},{"source":201,"target":16},{"source":201,"target":559},{"source":559,"target":16},{"source":202,"target":0},{"source":202,"target":142},{"source":202,"target":560},{"source":560,"target":142},{"source":203,"target":0},{"source":203,"target":212},{"source":203,"target":561},{"source":561,"target":212},{"source":204,"target":0},{"source":204,"target":187},{"source":204,"target":562},{"source":562,"target":187},{"source":205,"target":0},{"source":205,"target":52},{"source":205,"target":23},{"source":205,"target":563},{"source":205,"target":564},{"source":563,"target":52},{"source":564,"target":23},{"source":206,"target":0},{"source":206,"target":164},{"source":206,"target":565},{"source":206,"target":566},{"source":206,"target":567},{"source":206,"target":568},{"source":206,"target":569},{"source":565,"target":570},{"source":565,"target":206},{"source":566,"target":571},{"source":566,"target":206},{"source":567,"target":572},{"source":567,"target":206},{"source":568,"target":573},{"source":568,"target":206},{"source":569,"target":164},{"source":207,"target":0},{"source":207,"target":164},{"source":207,"target":574},{"source":574,"target":164},{"source":208,"target":0},{"source":208,"target":199},{"source":208,"target":92},{"source":208,"target":206},{"source":208,"target":575},{"source":208,"target":576},{"source":208,"target":577},{"source":208,"target":578},{"source":575,"target":579},{"source":575,"target":208},{"source":576,"target":199},{"source":577,"target":92},{"source":578,"target":206},{"source":209,"target":0},{"source":209,"target":178},{"source":209,"target":580},{"source":580,"target":178},{"source":210,"target":0},{"source":210,"target":36},{"source":210,"target":581},{"source":581,"target":36},{"source":211,"target":0},{"source":211,"target":224},{"source":211,"target":582},{"source":582,"target":224},{"source":212,"target":0},{"source":212,"target":108},{"source":212,"target":583},{"source":583,"target":108},{"source":213,"target":0},{"source":213,"target":34},{"source":213,"target":28},{"source":213,"target":584},{"source":213,"target":585},{"source":584,"target":34},{"source":585,"target":28},{"source":214,"target":0},{"source":214,"target":16},{"source":214,"target":586},{"source":586,"target":16},{"source":215,"target":0},{"source":215,"target":34},{"source":215,"target":587},{"source":215,"target":588},{"source":587,"target":34},{"source":587,"target":589},{"source":587,"target":215},{"source":589,"target":34},{"source":588,"target":34},{"source":216,"target":0},{"source":216,"target":215},{"source":216,"target":93},{"source":216,"target":226},{"source":216,"target":590},{"source":216,"target":591},{"source":216,"target":592},{"source":216,"target":593},{"source":216,"target":594},{"source":216,"target":595},{"source":216,"target":596},{"source":590,"target":597},{"source":590,"target":216},{"source":591,"target":199},{"source":591,"target":598},{"source":591,"target":216},{"source":598,"target":199},{"source":592,"target":34},{"source":592,"target":599},{"source":592,"target":216},{"source":599,"target":34},{"source":593,"target":98},{"source":593,"target":600},{"source":593,"target":216},{"source":600,"target":98},{"source":594,"target":215},{"source":595,"target":93},{"source":596,"target":226},{"source":217,"target":0},{"source":217,"target":74},{"source":217,"target":601},{"source":601,"target":74},{"source":218,"target":0},{"source":218,"target":34},{"source":218,"target":602},{"source":602,"target":34},{"source":219,"target":0},{"source":219,"target":167},{"source":219,"target":603},{"source":603,"target":167},{"source":220,"target":0},{"source":220,"target":182},{"source":220,"target":604},{"source":604,"target":182},{"source":221,"target":0},{"source":221,"target":52},{"source":221,"target":72},{"source":221,"target":605},{"source":221,"target":606},{"source":221,"target":607},{"source":221,"target":608},{"source":221,"target":609},{"source":605,"target":610},{"source":605,"target":221},{"source":606,"target":216},{"source":606,"target":611},{"source":606,"target":221},{"source":611,"target":216},{"source":607,"target":47},{"source":607,"target":612},{"source":607,"target":221},{"source":612,"target":47},{"source":608,"target":52},{"source":609,"target":72},{"source":222,"target":0},{"source":222,"target":215},{"source":222,"target":32},{"source":222,"target":613},{"source":222,"target":614},{"source":613,"target":215},{"source":614,"target":32},{"source":223,"target":0},{"source":223,"target":104},{"source":223,"target":615},{"source":223,"target":616},{"source":615,"target":216},{"source":615,"target":617},{"source":615,"target":223},{"source":617,"target":216},{"source":616,"target":104},{"source":224,"target":0},{"source":224,"target":108},{"source":224,"target":618},{"source":618,"target":108},{"source":225,"target":0},{"source":225,"target":216},{"source":225,"target":619},{"source":619,"target":216},{"source":226,"target":0},{"source":226,"target":34},{"source":226,"target":620},{"source":620,"target":34},{"source":227,"target":0},{"source":227,"target":49},{"source":227,"target":621},{"source":227,"target":622},{"source":227,"target":623},{"source":621,"target":3},{"source":621,"target":624},{"source":621,"target":227},{"source":624,"target":3},{"source":622,"target":32},{"source":622,"target":625},{"source":622,"target":227},{"source":625,"target":32},{"source":623,"target":49},{"source":228,"target":0},{"source":228,"target":223},{"source":228,"target":626},{"source":228,"target":627},{"source":626,"target":208},{"source":626,"target":628},{"source":626,"target":228},{"source":628,"target":208},{"source":627,"target":223},{"source":229,"target":0},{"source":229,"target":120},{"source":229,"target":629},{"source":629,"target":120},{"source":230,"target":0},{"source":230,"target":158},{"source":230,"target":12},{"source":230,"target":630},{"source":230,"target":631},{"source":630,"target":158},{"source":631,"target":12}],"multigraph":true} |
true | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="handleLinkRemoval2, handleLinkRemoval2" nsURI="http://cpapackage/handleLinkRemoval2/handleLinkRemoval2/change-use-attr-conflict"
nsPrefix="CPAPackage">
<eClassifiers xsi:type="ecore:EClass" name="1:Topology">
<eStructuralFeatures xsi:type="ecore:EReference" name="topologyLinks" eType="#//2%3ALink"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="topologyLinks" eType="#//8%3ALink"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="2:Link">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="id = r1_linkId" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="linkTarget" eType="#//3%3ANode"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="linkTopology" eType="#//1%3ATopology"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="linkSource" eType="#//7%3ANode"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="3:Node">
<eStructuralFeatures xsi:type="ecore:EReference" name="nodeIncomingLinks" eType="#//4%3A%23Link%23"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="nodeIncomingLinks" eType="#//2%3ALink"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="nodeIncomingLinks" eType="#//8%3ALink"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="4:#Link#">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="weight = r1_w32_r2_w32"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="state = -1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="linkSource" eType="#//5%3ANode"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="linkTarget" eType="#//3%3ANode"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="5:Node">
<eStructuralFeatures xsi:type="ecore:EReference" name="nodeOutgoingLinks" eType="#//6%3ALink"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="nodeOutgoingLinks" eType="#//4%3A%23Link%23"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="6:Link">
<eStructuralFeatures xsi:type="ecore:EReference" name="linkTarget" eType="#//7%3ANode"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="linkSource" eType="#//5%3ANode"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="7:Node">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isSelf = true" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="nodeOutgoingLinks" eType="#//2%3ALink"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="nodeIncomingLinks" eType="#//6%3ALink"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="nodeOutgoingLinks" eType="#//8%3ALink"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="8:Link">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="id = r2_linkId" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="linkTarget" eType="#//3%3ANode"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="linkTopology" eType="#//1%3ATopology"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="linkSource" eType="#//7%3ANode"/>
</eClassifiers>
</ecore:EPackage>
| github:ecore:/data/Echtzeitsysteme/models2018-distributedtc/src/org.cobolt.tccpa/resources/henshinAnalysisResults/2018.04.26-124402/handleLinkRemoval2_AND_handleLinkRemoval2/(04) change-use-attr-conflict/minimal-model.ecore | ecore | handleLinkRemoval2, handleLinkRemoval2
1:Topology
topologyLinks
topologyLinks
2:Link
id = r1_linkId
linkTarget
linkTopology
linkSource
3:Node
nodeIncomingLinks
nodeIncomingLinks
nodeIncomingLinks
4:#Link#
weight = r1_w32_r2_w32
state = -1
linkSource
linkTarget
5:Node
nodeOutgoingLinks
nodeOutgoingLinks
6:Link
linkTarget
linkSource
7:Node
isSelf = true
nodeOutgoingLinks
nodeIncomingLinks
nodeOutgoingLinks
8:Link
id = r2_linkId
linkTarget
linkTopology
linkSource | null | {"directed":true,"nodes":[{"nsPrefix":"CPAPackage","nsURI":"http://cpapackage/handleLinkRemoval2/handleLinkRemoval2/change-use-attr-conflict","name":"handleLinkRemoval2, handleLinkRemoval2","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"1:Topology","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"2:Link","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"3:Node","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"4:#Link#","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"5:Node","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"6:Link","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"7:Node","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"8:Link","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"topologyLinks","changeable":true,"resolveProxies":true,"lowerBound":0,"id":9,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"topologyLinks","changeable":true,"resolveProxies":true,"lowerBound":0,"id":10,"derived":false},{"id":11,"eClass":"EGenericType"},{"id":12,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"id = r1_linkId","changeable":true,"lowerBound":0,"iD":false,"id":13,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"linkTarget","changeable":true,"resolveProxies":true,"lowerBound":0,"id":14,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"linkTopology","changeable":true,"resolveProxies":true,"lowerBound":0,"id":15,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"linkSource","changeable":true,"resolveProxies":true,"lowerBound":0,"id":16,"derived":false},{"id":17,"eClass":"EGenericType"},{"id":18,"eClass":"EGenericType"},{"id":19,"eClass":"EGenericType"},{"id":20,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"nodeIncomingLinks","changeable":true,"resolveProxies":true,"lowerBound":0,"id":21,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"nodeIncomingLinks","changeable":true,"resolveProxies":true,"lowerBound":0,"id":22,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"nodeIncomingLinks","changeable":true,"resolveProxies":true,"lowerBound":0,"id":23,"derived":false},{"id":24,"eClass":"EGenericType"},{"id":25,"eClass":"EGenericType"},{"id":26,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"weight = r1_w32_r2_w32","changeable":true,"lowerBound":0,"iD":false,"id":27,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"state = -1","changeable":true,"lowerBound":0,"iD":false,"id":28,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"linkSource","changeable":true,"resolveProxies":true,"lowerBound":0,"id":29,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"linkTarget","changeable":true,"resolveProxies":true,"lowerBound":0,"id":30,"derived":false},{"id":31,"eClass":"EGenericType"},{"id":32,"eClass":"EGenericType"},{"id":33,"eClass":"EGenericType"},{"id":34,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"nodeOutgoingLinks","changeable":true,"resolveProxies":true,"lowerBound":0,"id":35,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"nodeOutgoingLinks","changeable":true,"resolveProxies":true,"lowerBound":0,"id":36,"derived":false},{"id":37,"eClass":"EGenericType"},{"id":38,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"linkTarget","changeable":true,"resolveProxies":true,"lowerBound":0,"id":39,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"linkSource","changeable":true,"resolveProxies":true,"lowerBound":0,"id":40,"derived":false},{"id":41,"eClass":"EGenericType"},{"id":42,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isSelf = true","changeable":true,"lowerBound":0,"iD":false,"id":43,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"nodeOutgoingLinks","changeable":true,"resolveProxies":true,"lowerBound":0,"id":44,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"nodeIncomingLinks","changeable":true,"resolveProxies":true,"lowerBound":0,"id":45,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"nodeOutgoingLinks","changeable":true,"resolveProxies":true,"lowerBound":0,"id":46,"derived":false},{"id":47,"eClass":"EGenericType"},{"id":48,"eClass":"EGenericType"},{"id":49,"eClass":"EGenericType"},{"id":50,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"id = r2_linkId","changeable":true,"lowerBound":0,"iD":false,"id":51,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"linkTarget","changeable":true,"resolveProxies":true,"lowerBound":0,"id":52,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"linkTopology","changeable":true,"resolveProxies":true,"lowerBound":0,"id":53,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"linkSource","changeable":true,"resolveProxies":true,"lowerBound":0,"id":54,"derived":false},{"id":55,"eClass":"EGenericType"},{"id":56,"eClass":"EGenericType"},{"id":57,"eClass":"EGenericType"},{"id":58,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":0,"target":8},{"source":1,"target":0},{"source":1,"target":9},{"source":1,"target":10},{"source":9,"target":2},{"source":9,"target":11},{"source":9,"target":1},{"source":11,"target":2},{"source":10,"target":8},{"source":10,"target":12},{"source":10,"target":1},{"source":12,"target":8},{"source":2,"target":0},{"source":2,"target":13},{"source":2,"target":14},{"source":2,"target":15},{"source":2,"target":16},{"source":13,"target":17},{"source":13,"target":2},{"source":14,"target":3},{"source":14,"target":18},{"source":14,"target":2},{"source":18,"target":3},{"source":15,"target":1},{"source":15,"target":19},{"source":15,"target":2},{"source":19,"target":1},{"source":16,"target":7},{"source":16,"target":20},{"source":16,"target":2},{"source":20,"target":7},{"source":3,"target":0},{"source":3,"target":21},{"source":3,"target":22},{"source":3,"target":23},{"source":21,"target":4},{"source":21,"target":24},{"source":21,"target":3},{"source":24,"target":4},{"source":22,"target":2},{"source":22,"target":25},{"source":22,"target":3},{"source":25,"target":2},{"source":23,"target":8},{"source":23,"target":26},{"source":23,"target":3},{"source":26,"target":8},{"source":4,"target":0},{"source":4,"target":27},{"source":4,"target":28},{"source":4,"target":29},{"source":4,"target":30},{"source":27,"target":31},{"source":27,"target":4},{"source":28,"target":32},{"source":28,"target":4},{"source":29,"target":5},{"source":29,"target":33},{"source":29,"target":4},{"source":33,"target":5},{"source":30,"target":3},{"source":30,"target":34},{"source":30,"target":4},{"source":34,"target":3},{"source":5,"target":0},{"source":5,"target":35},{"source":5,"target":36},{"source":35,"target":6},{"source":35,"target":37},{"source":35,"target":5},{"source":37,"target":6},{"source":36,"target":4},{"source":36,"target":38},{"source":36,"target":5},{"source":38,"target":4},{"source":6,"target":0},{"source":6,"target":39},{"source":6,"target":40},{"source":39,"target":7},{"source":39,"target":41},{"source":39,"target":6},{"source":41,"target":7},{"source":40,"target":5},{"source":40,"target":42},{"source":40,"target":6},{"source":42,"target":5},{"source":7,"target":0},{"source":7,"target":43},{"source":7,"target":44},{"source":7,"target":45},{"source":7,"target":46},{"source":43,"target":47},{"source":43,"target":7},{"source":44,"target":2},{"source":44,"target":48},{"source":44,"target":7},{"source":48,"target":2},{"source":45,"target":6},{"source":45,"target":49},{"source":45,"target":7},{"source":49,"target":6},{"source":46,"target":8},{"source":46,"target":50},{"source":46,"target":7},{"source":50,"target":8},{"source":8,"target":0},{"source":8,"target":51},{"source":8,"target":52},{"source":8,"target":53},{"source":8,"target":54},{"source":51,"target":55},{"source":51,"target":8},{"source":52,"target":3},{"source":52,"target":56},{"source":52,"target":8},{"source":56,"target":3},{"source":53,"target":1},{"source":53,"target":57},{"source":53,"target":8},{"source":57,"target":1},{"source":54,"target":7},{"source":54,"target":58},{"source":54,"target":8},{"source":58,"target":7}],"multigraph":true} |
true | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="rad"
nsURI="htpp://napoleondynamite.preston" nsPrefix="napoleon">
<eClassifiers xsi:type="ecore:EClass" name="Posao">
<eReferences name="se_sastoji_od" eType="#//Posao" transient="false" unique="true" lowerBound="0" upperBound="-1" containment="true" eOpposite="#//Posao/opposite_se_sastoji_od" ordered ="false">
</eReferences>
<eReferences name="opposite_se_sastoji_od" eType="#//Posao" transient="true" unique="true" lowerBound="0" upperBound="1" eOpposite="#//Posao/se_sastoji_od" ordered ="false">
</eReferences>
<eReferences name="opposite_radi_na" eType="#//Angazovani" transient="false" unique="true" lowerBound="0" upperBound="1" eOpposite="#//Angazovani/radi_na" ordered ="false">
</eReferences>
<eReferences name="opposite_nadgleda" eType="#//Fakultet" transient="false" unique="true" lowerBound="0" upperBound="1" eOpposite="#//Fakultet/nadgleda" ordered ="false">
</eReferences>
<eAttributes name="naziv" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" transient="false" unique="true">
</eAttributes>
<eAttributes name="pocetak" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDate" transient="false" unique="true">
</eAttributes>
<eAttributes name="kraj" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDate" transient="false" unique="true">
</eAttributes>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Angazovani" abstract="true">
<eReferences name="radi_na" eType="#//Posao" transient="false" unique="true" lowerBound="0" upperBound="-1" eOpposite="#//Posao/opposite_radi_na" ordered ="false">
</eReferences>
<eAttributes name="ime" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" transient="false" unique="true">
</eAttributes>
<eAttributes name="prezime" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" transient="false" unique="true">
</eAttributes>
<eAttributes name="uloga" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" transient="false" unique="true">
</eAttributes>
<eAttributes name="pol" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EChar" transient="false" unique="true">
</eAttributes>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="VisokoObrazovan" eSuperTypes="#//Angazovani">
<eAttributes name="naziv_skole" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" transient="false" unique="true">
</eAttributes>
<eAttributes name="stepen" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt" transient="false" unique="true">
</eAttributes>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Fizikalac" eSuperTypes="#//Angazovani">
<eAttributes name="osiguran?" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean" transient="false" unique="true" defaultValueLiteral="true">
</eAttributes>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Fakultet" eSuperTypes="#//VisokoObrazovan">
<eReferences name="nadgleda" eType="#//Posao" transient="false" unique="true" lowerBound="0" upperBound="1" eOpposite="#//Posao/opposite_nadgleda" ordered ="false">
</eReferences>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="VisaSkola" eSuperTypes="#//VisokoObrazovan">
</eClassifiers>
</ecore:EPackage> | github:ecore:/data/MagMar94/ParmorelRunnable/differentSelectionMethodsOriginals/rad.ecore | ecore | rad
Posao
se_sastoji_od
opposite_se_sastoji_od
opposite_radi_na
opposite_nadgleda
naziv
pocetak
kraj
Angazovani
radi_na
ime
prezime
uloga
pol
VisokoObrazovan
naziv_skole
stepen
Fizikalac
osiguran?
true
Fakultet
nadgleda
VisaSkola | null | {"directed":true,"nodes":[{"nsPrefix":"napoleon","nsURI":"htpp://napoleondynamite.preston","name":"rad","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Posao","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Angazovani","instanceClass":null,"abstract":true,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"VisokoObrazovan","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Fizikalac","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Fakultet","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"VisaSkola","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"se_sastoji_od","changeable":true,"resolveProxies":true,"lowerBound":0,"id":7,"derived":false},{"container":true,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"opposite_se_sastoji_od","changeable":true,"resolveProxies":true,"lowerBound":0,"id":8,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"opposite_radi_na","changeable":true,"resolveProxies":true,"lowerBound":0,"id":9,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"opposite_nadgleda","changeable":true,"resolveProxies":true,"lowerBound":0,"id":10,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"naziv","changeable":true,"lowerBound":0,"iD":false,"id":11,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"pocetak","changeable":true,"lowerBound":0,"iD":false,"id":12,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"kraj","changeable":true,"lowerBound":0,"iD":false,"id":13,"derived":false},{"id":14,"eClass":"EGenericType"},{"id":15,"eClass":"EGenericType"},{"id":16,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"radi_na","changeable":true,"resolveProxies":true,"lowerBound":0,"id":17,"derived":false},{"id":18,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"nadgleda","changeable":true,"resolveProxies":true,"lowerBound":0,"id":19,"derived":false},{"id":20,"eClass":"EGenericType"},{"id":21,"eClass":"EGenericType"},{"id":22,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"ime","changeable":true,"lowerBound":0,"iD":false,"id":23,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"prezime","changeable":true,"lowerBound":0,"iD":false,"id":24,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"uloga","changeable":true,"lowerBound":0,"iD":false,"id":25,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":"\u0000","volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"pol","changeable":true,"lowerBound":0,"iD":false,"id":26,"derived":false},{"id":27,"eClass":"EGenericType"},{"id":28,"eClass":"EGenericType"},{"id":29,"eClass":"EGenericType"},{"id":30,"eClass":"EGenericType"},{"id":31,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"naziv_skole","changeable":true,"lowerBound":0,"iD":false,"id":32,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"stepen","changeable":true,"lowerBound":0,"iD":false,"id":33,"derived":false},{"id":34,"eClass":"EGenericType"},{"id":35,"eClass":"EGenericType"},{"id":36,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":true,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"true","unsettable":false,"transient":false,"unique":true,"name":"osiguran?","changeable":true,"lowerBound":0,"iD":false,"id":37,"derived":false},{"id":38,"eClass":"EGenericType"},{"id":39,"eClass":"EGenericType"},{"id":40,"eClass":"EGenericType"},{"id":41,"eClass":"EGenericType"},{"id":42,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":1,"target":0},{"source":1,"target":7},{"source":1,"target":8},{"source":1,"target":9},{"source":1,"target":10},{"source":1,"target":11},{"source":1,"target":12},{"source":1,"target":13},{"source":7,"target":1},{"source":7,"target":14},{"source":7,"target":1},{"source":7,"target":8},{"source":14,"target":1},{"source":8,"target":1},{"source":8,"target":15},{"source":8,"target":1},{"source":8,"target":7},{"source":15,"target":1},{"source":9,"target":2},{"source":9,"target":16},{"source":9,"target":1},{"source":9,"target":17},{"source":16,"target":2},{"source":10,"target":5},{"source":10,"target":18},{"source":10,"target":1},{"source":10,"target":19},{"source":18,"target":5},{"source":11,"target":20},{"source":11,"target":1},{"source":12,"target":21},{"source":12,"target":1},{"source":13,"target":22},{"source":13,"target":1},{"source":2,"target":0},{"source":2,"target":17},{"source":2,"target":23},{"source":2,"target":24},{"source":2,"target":25},{"source":2,"target":26},{"source":17,"target":1},{"source":17,"target":27},{"source":17,"target":2},{"source":17,"target":9},{"source":27,"target":1},{"source":23,"target":28},{"source":23,"target":2},{"source":24,"target":29},{"source":24,"target":2},{"source":25,"target":30},{"source":25,"target":2},{"source":26,"target":31},{"source":26,"target":2},{"source":3,"target":0},{"source":3,"target":2},{"source":3,"target":32},{"source":3,"target":33},{"source":3,"target":34},{"source":32,"target":35},{"source":32,"target":3},{"source":33,"target":36},{"source":33,"target":3},{"source":34,"target":2},{"source":4,"target":0},{"source":4,"target":2},{"source":4,"target":37},{"source":4,"target":38},{"source":37,"target":39},{"source":37,"target":4},{"source":38,"target":2},{"source":5,"target":0},{"source":5,"target":3},{"source":5,"target":19},{"source":5,"target":40},{"source":19,"target":1},{"source":19,"target":41},{"source":19,"target":5},{"source":19,"target":10},{"source":41,"target":1},{"source":40,"target":3},{"source":6,"target":0},{"source":6,"target":3},{"source":6,"target":42},{"source":42,"target":3}],"multigraph":true} |
false | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="mapper" nsURI="http://www.bestsolution.at/objc/mapper/Mapper"
nsPrefix="mapper">
<eClassifiers xsi:type="ecore:EClass" name="PackageDeclaration">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="native" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="javaPackage" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="imports" upperBound="-1"
eType="#//Import" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="types" upperBound="-1"
eType="#//Type" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Import">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="importedNamespace" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Type">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="TypeRef">
<eStructuralFeatures xsi:type="ecore:EReference" name="type" eType="#//Type"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="genericType" eType="#//TypeRef"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="builtin" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Protocol" eSuperTypes="#//Type">
<eStructuralFeatures xsi:type="ecore:EReference" name="doc" eType="#//Docu" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="deprecated" eType="#//Version"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="since" eType="#//Version"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="messages" upperBound="-1"
eType="#//Message" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Message">
<eStructuralFeatures xsi:type="ecore:EReference" name="doc" eType="#//Docu" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="deprecated" eType="#//Version"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="returnValue" eType="#//TypeRef"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="elements" upperBound="-1"
eType="#//MessageElement" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="since" eType="#//Version"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="javaName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="MessageElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="type" eType="#//TypeRef"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="variable" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Class" eSuperTypes="#//Type">
<eStructuralFeatures xsi:type="ecore:EReference" name="doc" eType="#//Docu" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="deprecated" eType="#//Version"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="since" eType="#//Version"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="parent" eType="#//Class"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="protocols" unique="false"
upperBound="-1" eType="#//Protocol"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="initializerMessages" upperBound="-1"
eType="#//Message" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="properties" upperBound="-1"
eType="#//Property" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="messages" upperBound="-1"
eType="#//Message" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Version">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="sinceMajor" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="sinceMinor" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Property">
<eStructuralFeatures xsi:type="ecore:EReference" name="doc" eType="#//Docu" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="deprecated" eType="#//Version"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="attributes" upperBound="-1"
eType="#//PropertyAttribute" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="type" eType="#//TypeRef"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="since" eType="#//Version"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="PropertyAttribute">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Enum" eSuperTypes="#//Type">
<eStructuralFeatures xsi:type="ecore:EReference" name="elements" upperBound="-1"
eType="#//EnumElement" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EnumElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="TypeDef" eSuperTypes="#//Type">
<eStructuralFeatures xsi:type="ecore:EReference" name="doc" eType="#//Docu" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="struct" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="attributes" upperBound="-1"
eType="#//TypeStructAttribute" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="block" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="typeRef" eType="#//TypeRef"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="TypeStructAttribute">
<eStructuralFeatures xsi:type="ecore:EReference" name="typeRef" eType="#//TypeRef"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Docu">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="content" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
</ecore:EPackage>
| github:ecore:/data/tomsontom/objcgenerator/bundles/at.bestsolution.objc.mapper/src-gen/at/bestsolution/objc/mapper/Mapper.ecore | ecore | mapper
PackageDeclaration
native
name
javaPackage
imports
types
Import
importedNamespace
Type
name
TypeRef
type
genericType
builtin
Protocol
doc
deprecated
since
messages
Message
doc
deprecated
returnValue
elements
since
javaName
MessageElement
name
type
variable
Class
doc
deprecated
since
parent
protocols
initializerMessages
properties
messages
Version
sinceMajor
sinceMinor
Property
doc
deprecated
attributes
type
name
since
PropertyAttribute
name
value
Enum
elements
EnumElement
name
value
TypeDef
doc
struct
attributes
block
typeRef
TypeStructAttribute
typeRef
name
Docu
content | null | {"directed":true,"nodes":[{"nsPrefix":"mapper","nsURI":"http://www.bestsolution.at/objc/mapper/Mapper","name":"mapper","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PackageDeclaration","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Import","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Type","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TypeRef","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Protocol","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Message","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MessageElement","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Class","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Version","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Property","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PropertyAttribute","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Enum","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EnumElement","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TypeDef","instanceClass":null,"abstract":false,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TypeStructAttribute","instanceClass":null,"abstract":false,"id":15,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Docu","instanceClass":null,"abstract":false,"id":16,"interface":false,"eClass":"EClass"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"native","changeable":true,"lowerBound":0,"iD":false,"id":17,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":18,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"javaPackage","changeable":true,"lowerBound":0,"iD":false,"id":19,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"imports","changeable":true,"resolveProxies":true,"lowerBound":0,"id":20,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"types","changeable":true,"resolveProxies":true,"lowerBound":0,"id":21,"derived":false},{"id":22,"eClass":"EGenericType"},{"id":23,"eClass":"EGenericType"},{"id":24,"eClass":"EGenericType"},{"id":25,"eClass":"EGenericType"},{"id":26,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"importedNamespace","changeable":true,"lowerBound":0,"iD":false,"id":27,"derived":false},{"id":28,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":29,"derived":false},{"id":30,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"resolveProxies":true,"lowerBound":0,"id":31,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"genericType","changeable":true,"resolveProxies":true,"lowerBound":0,"id":32,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"builtin","changeable":true,"lowerBound":0,"iD":false,"id":33,"derived":false},{"id":34,"eClass":"EGenericType"},{"id":35,"eClass":"EGenericType"},{"id":36,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"doc","changeable":true,"resolveProxies":true,"lowerBound":0,"id":37,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"deprecated","changeable":true,"resolveProxies":true,"lowerBound":0,"id":38,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"since","changeable":true,"resolveProxies":true,"lowerBound":0,"id":39,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"messages","changeable":true,"resolveProxies":true,"lowerBound":0,"id":40,"derived":false},{"id":41,"eClass":"EGenericType"},{"id":42,"eClass":"EGenericType"},{"id":43,"eClass":"EGenericType"},{"id":44,"eClass":"EGenericType"},{"id":45,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"doc","changeable":true,"resolveProxies":true,"lowerBound":0,"id":46,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"deprecated","changeable":true,"resolveProxies":true,"lowerBound":0,"id":47,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"returnValue","changeable":true,"resolveProxies":true,"lowerBound":0,"id":48,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"elements","changeable":true,"resolveProxies":true,"lowerBound":0,"id":49,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"since","changeable":true,"resolveProxies":true,"lowerBound":0,"id":50,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"javaName","changeable":true,"lowerBound":0,"iD":false,"id":51,"derived":false},{"id":52,"eClass":"EGenericType"},{"id":53,"eClass":"EGenericType"},{"id":54,"eClass":"EGenericType"},{"id":55,"eClass":"EGenericType"},{"id":56,"eClass":"EGenericType"},{"id":57,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":58,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"resolveProxies":true,"lowerBound":0,"id":59,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"variable","changeable":true,"lowerBound":0,"iD":false,"id":60,"derived":false},{"id":61,"eClass":"EGenericType"},{"id":62,"eClass":"EGenericType"},{"id":63,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"doc","changeable":true,"resolveProxies":true,"lowerBound":0,"id":64,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"deprecated","changeable":true,"resolveProxies":true,"lowerBound":0,"id":65,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"since","changeable":true,"resolveProxies":true,"lowerBound":0,"id":66,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"parent","changeable":true,"resolveProxies":true,"lowerBound":0,"id":67,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":false,"name":"protocols","changeable":true,"resolveProxies":true,"lowerBound":0,"id":68,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"initializerMessages","changeable":true,"resolveProxies":true,"lowerBound":0,"id":69,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"properties","changeable":true,"resolveProxies":true,"lowerBound":0,"id":70,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"messages","changeable":true,"resolveProxies":true,"lowerBound":0,"id":71,"derived":false},{"id":72,"eClass":"EGenericType"},{"id":73,"eClass":"EGenericType"},{"id":74,"eClass":"EGenericType"},{"id":75,"eClass":"EGenericType"},{"id":76,"eClass":"EGenericType"},{"id":77,"eClass":"EGenericType"},{"id":78,"eClass":"EGenericType"},{"id":79,"eClass":"EGenericType"},{"id":80,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"sinceMajor","changeable":true,"lowerBound":0,"iD":false,"id":81,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"sinceMinor","changeable":true,"lowerBound":0,"iD":false,"id":82,"derived":false},{"id":83,"eClass":"EGenericType"},{"id":84,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"doc","changeable":true,"resolveProxies":true,"lowerBound":0,"id":85,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"deprecated","changeable":true,"resolveProxies":true,"lowerBound":0,"id":86,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"attributes","changeable":true,"resolveProxies":true,"lowerBound":0,"id":87,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"resolveProxies":true,"lowerBound":0,"id":88,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":89,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"since","changeable":true,"resolveProxies":true,"lowerBound":0,"id":90,"derived":false},{"id":91,"eClass":"EGenericType"},{"id":92,"eClass":"EGenericType"},{"id":93,"eClass":"EGenericType"},{"id":94,"eClass":"EGenericType"},{"id":95,"eClass":"EGenericType"},{"id":96,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":97,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":0,"iD":false,"id":98,"derived":false},{"id":99,"eClass":"EGenericType"},{"id":100,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"elements","changeable":true,"resolveProxies":true,"lowerBound":0,"id":101,"derived":false},{"id":102,"eClass":"EGenericType"},{"id":103,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":104,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":0,"iD":false,"id":105,"derived":false},{"id":106,"eClass":"EGenericType"},{"id":107,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"doc","changeable":true,"resolveProxies":true,"lowerBound":0,"id":108,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"struct","changeable":true,"lowerBound":0,"iD":false,"id":109,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"attributes","changeable":true,"resolveProxies":true,"lowerBound":0,"id":110,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"block","changeable":true,"lowerBound":0,"iD":false,"id":111,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"typeRef","changeable":true,"resolveProxies":true,"lowerBound":0,"id":112,"derived":false},{"id":113,"eClass":"EGenericType"},{"id":114,"eClass":"EGenericType"},{"id":115,"eClass":"EGenericType"},{"id":116,"eClass":"EGenericType"},{"id":117,"eClass":"EGenericType"},{"id":118,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"typeRef","changeable":true,"resolveProxies":true,"lowerBound":0,"id":119,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":120,"derived":false},{"id":121,"eClass":"EGenericType"},{"id":122,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"content","changeable":true,"lowerBound":0,"iD":false,"id":123,"derived":false},{"id":124,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":0,"target":8},{"source":0,"target":9},{"source":0,"target":10},{"source":0,"target":11},{"source":0,"target":12},{"source":0,"target":13},{"source":0,"target":14},{"source":0,"target":15},{"source":0,"target":16},{"source":1,"target":0},{"source":1,"target":17},{"source":1,"target":18},{"source":1,"target":19},{"source":1,"target":20},{"source":1,"target":21},{"source":17,"target":22},{"source":17,"target":1},{"source":18,"target":23},{"source":18,"target":1},{"source":19,"target":24},{"source":19,"target":1},{"source":20,"target":2},{"source":20,"target":25},{"source":20,"target":1},{"source":25,"target":2},{"source":21,"target":3},{"source":21,"target":26},{"source":21,"target":1},{"source":26,"target":3},{"source":2,"target":0},{"source":2,"target":27},{"source":27,"target":28},{"source":27,"target":2},{"source":3,"target":0},{"source":3,"target":29},{"source":29,"target":30},{"source":29,"target":3},{"source":4,"target":0},{"source":4,"target":31},{"source":4,"target":32},{"source":4,"target":33},{"source":31,"target":3},{"source":31,"target":34},{"source":31,"target":4},{"source":34,"target":3},{"source":32,"target":4},{"source":32,"target":35},{"source":32,"target":4},{"source":35,"target":4},{"source":33,"target":36},{"source":33,"target":4},{"source":5,"target":0},{"source":5,"target":3},{"source":5,"target":37},{"source":5,"target":38},{"source":5,"target":39},{"source":5,"target":40},{"source":5,"target":41},{"source":37,"target":16},{"source":37,"target":42},{"source":37,"target":5},{"source":42,"target":16},{"source":38,"target":9},{"source":38,"target":43},{"source":38,"target":5},{"source":43,"target":9},{"source":39,"target":9},{"source":39,"target":44},{"source":39,"target":5},{"source":44,"target":9},{"source":40,"target":6},{"source":40,"target":45},{"source":40,"target":5},{"source":45,"target":6},{"source":41,"target":3},{"source":6,"target":0},{"source":6,"target":46},{"source":6,"target":47},{"source":6,"target":48},{"source":6,"target":49},{"source":6,"target":50},{"source":6,"target":51},{"source":46,"target":16},{"source":46,"target":52},{"source":46,"target":6},{"source":52,"target":16},{"source":47,"target":9},{"source":47,"target":53},{"source":47,"target":6},{"source":53,"target":9},{"source":48,"target":4},{"source":48,"target":54},{"source":48,"target":6},{"source":54,"target":4},{"source":49,"target":7},{"source":49,"target":55},{"source":49,"target":6},{"source":55,"target":7},{"source":50,"target":9},{"source":50,"target":56},{"source":50,"target":6},{"source":56,"target":9},{"source":51,"target":57},{"source":51,"target":6},{"source":7,"target":0},{"source":7,"target":58},{"source":7,"target":59},{"source":7,"target":60},{"source":58,"target":61},{"source":58,"target":7},{"source":59,"target":4},{"source":59,"target":62},{"source":59,"target":7},{"source":62,"target":4},{"source":60,"target":63},{"source":60,"target":7},{"source":8,"target":0},{"source":8,"target":3},{"source":8,"target":64},{"source":8,"target":65},{"source":8,"target":66},{"source":8,"target":67},{"source":8,"target":68},{"source":8,"target":69},{"source":8,"target":70},{"source":8,"target":71},{"source":8,"target":72},{"source":64,"target":16},{"source":64,"target":73},{"source":64,"target":8},{"source":73,"target":16},{"source":65,"target":9},{"source":65,"target":74},{"source":65,"target":8},{"source":74,"target":9},{"source":66,"target":9},{"source":66,"target":75},{"source":66,"target":8},{"source":75,"target":9},{"source":67,"target":8},{"source":67,"target":76},{"source":67,"target":8},{"source":76,"target":8},{"source":68,"target":5},{"source":68,"target":77},{"source":68,"target":8},{"source":77,"target":5},{"source":69,"target":6},{"source":69,"target":78},{"source":69,"target":8},{"source":78,"target":6},{"source":70,"target":10},{"source":70,"target":79},{"source":70,"target":8},{"source":79,"target":10},{"source":71,"target":6},{"source":71,"target":80},{"source":71,"target":8},{"source":80,"target":6},{"source":72,"target":3},{"source":9,"target":0},{"source":9,"target":81},{"source":9,"target":82},{"source":81,"target":83},{"source":81,"target":9},{"source":82,"target":84},{"source":82,"target":9},{"source":10,"target":0},{"source":10,"target":85},{"source":10,"target":86},{"source":10,"target":87},{"source":10,"target":88},{"source":10,"target":89},{"source":10,"target":90},{"source":85,"target":16},{"source":85,"target":91},{"source":85,"target":10},{"source":91,"target":16},{"source":86,"target":9},{"source":86,"target":92},{"source":86,"target":10},{"source":92,"target":9},{"source":87,"target":11},{"source":87,"target":93},{"source":87,"target":10},{"source":93,"target":11},{"source":88,"target":4},{"source":88,"target":94},{"source":88,"target":10},{"source":94,"target":4},{"source":89,"target":95},{"source":89,"target":10},{"source":90,"target":9},{"source":90,"target":96},{"source":90,"target":10},{"source":96,"target":9},{"source":11,"target":0},{"source":11,"target":97},{"source":11,"target":98},{"source":97,"target":99},{"source":97,"target":11},{"source":98,"target":100},{"source":98,"target":11},{"source":12,"target":0},{"source":12,"target":3},{"source":12,"target":101},{"source":12,"target":102},{"source":101,"target":13},{"source":101,"target":103},{"source":101,"target":12},{"source":103,"target":13},{"source":102,"target":3},{"source":13,"target":0},{"source":13,"target":104},{"source":13,"target":105},{"source":104,"target":106},{"source":104,"target":13},{"source":105,"target":107},{"source":105,"target":13},{"source":14,"target":0},{"source":14,"target":3},{"source":14,"target":108},{"source":14,"target":109},{"source":14,"target":110},{"source":14,"target":111},{"source":14,"target":112},{"source":14,"target":113},{"source":108,"target":16},{"source":108,"target":114},{"source":108,"target":14},{"source":114,"target":16},{"source":109,"target":115},{"source":109,"target":14},{"source":110,"target":15},{"source":110,"target":116},{"source":110,"target":14},{"source":116,"target":15},{"source":111,"target":117},{"source":111,"target":14},{"source":112,"target":4},{"source":112,"target":118},{"source":112,"target":14},{"source":118,"target":4},{"source":113,"target":3},{"source":15,"target":0},{"source":15,"target":119},{"source":15,"target":120},{"source":119,"target":4},{"source":119,"target":121},{"source":119,"target":15},{"source":121,"target":4},{"source":120,"target":122},{"source":120,"target":15},{"source":16,"target":0},{"source":16,"target":123},{"source":123,"target":124},{"source":123,"target":16}],"multigraph":true} |
true | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="UML2" nsURI="http:///UML2.ecore" nsPrefix="UML2">
<eClassifiers xsi:type="ecore:EEnum" name="VisibilityKind">
<eLiterals name="package" value="1" literal="package"/>
<eLiterals name="private" value="2" literal="private"/>
<eLiterals name="protected" value="3" literal="protected"/>
<eLiterals name="public" value="4" literal="public"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="ParameterDirectionKind">
<eLiterals name="in" value="1" literal="in"/>
<eLiterals name="inout" value="2" literal="inout"/>
<eLiterals name="out" value="3" literal="out"/>
<eLiterals name="return" value="4" literal="return"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="AggregationKind">
<eLiterals name="composite" value="1" literal="composite"/>
<eLiterals name="none" value="2" literal="none"/>
<eLiterals name="shared" value="3" literal="shared"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="StartOwnedBehaviorAction" eSuperTypes="#//Action"/>
<eClassifiers xsi:type="ecore:EClass" name="AcceptCallAction" eSuperTypes="#//AcceptEventAction"/>
<eClassifiers xsi:type="ecore:EClass" name="Element">
<eStructuralFeatures xsi:type="ecore:EReference" name="owner" eType="#//Element"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Abstraction" eSuperTypes="#//Dependency"/>
<eClassifiers xsi:type="ecore:EClass" name="Interaction" eSuperTypes="#//Behavior #//InteractionFragment"/>
<eClassifiers xsi:type="ecore:EClass" name="TimeExpression" eSuperTypes="#//ValueSpecification"/>
<eClassifiers xsi:type="ecore:EClass" name="DirectedRelationship" eSuperTypes="#//Relationship"/>
<eClassifiers xsi:type="ecore:EClass" name="ActivityEdge" eSuperTypes="#//RedefinableElement"/>
<eClassifiers xsi:type="ecore:EClass" name="Component" eSuperTypes="#//Class"/>
<eClassifiers xsi:type="ecore:EClass" name="ReclassifyObjectAction" eSuperTypes="#//Action"/>
<eClassifiers xsi:type="ecore:EClass" name="LiteralString" eSuperTypes="#//LiteralSpecification"/>
<eClassifiers xsi:type="ecore:EClass" name="ExtensionEnd" eSuperTypes="#//Property"/>
<eClassifiers xsi:type="ecore:EClass" name="CreateObjectAction" eSuperTypes="#//Action">
<eStructuralFeatures xsi:type="ecore:EReference" name="classifier" lowerBound="1"
eType="#//Classifier"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="result" lowerBound="1"
eType="#//OutputPin" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="StructuredActivityNode" eSuperTypes="#//Action #//Namespace #//ActivityGroup"/>
<eClassifiers xsi:type="ecore:EClass" name="ActivityNode" eSuperTypes="#//RedefinableElement"/>
<eClassifiers xsi:type="ecore:EClass" name="TimeConstraint" eSuperTypes="#//IntervalConstraint"/>
<eClassifiers xsi:type="ecore:EClass" name="Deployment" eSuperTypes="#//Dependency"/>
<eClassifiers xsi:type="ecore:EClass" name="ElementImport" eSuperTypes="#//DirectedRelationship">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="visibility" eType="#//VisibilityKind"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="importedElement" lowerBound="1"
eType="#//PackageableElement"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="LiteralUnlimitedNatural" eSuperTypes="#//LiteralSpecification"/>
<eClassifiers xsi:type="ecore:EClass" name="InteractionConstraint" eSuperTypes="#//Constraint"/>
<eClassifiers xsi:type="ecore:EClass" name="CommunicationPath" eSuperTypes="#//Association"/>
<eClassifiers xsi:type="ecore:EClass" name="ProtocolConformance" eSuperTypes="#//DirectedRelationship"/>
<eClassifiers xsi:type="ecore:EClass" name="InstanceSpecification" eSuperTypes="#//PackageableElement #//DeploymentTarget #//DeployedArtifact">
<eStructuralFeatures xsi:type="ecore:EReference" name="slot" upperBound="-1" eType="#//Slot"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="classifier" upperBound="-1"
eType="#//Classifier"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ReadLinkObjectEndQualifierAction" eSuperTypes="#//Action"/>
<eClassifiers xsi:type="ecore:EClass" name="ClearAssociationAction" eSuperTypes="#//Action"/>
<eClassifiers xsi:type="ecore:EClass" name="CallAction" eSuperTypes="#//InvocationAction"/>
<eClassifiers xsi:type="ecore:EClass" name="StructuredClassifier" eSuperTypes="#//Classifier"/>
<eClassifiers xsi:type="ecore:EClass" name="CallTrigger" eSuperTypes="#//MessageTrigger"/>
<eClassifiers xsi:type="ecore:EClass" name="TemplateParameterSubstitution" eSuperTypes="#//Element"/>
<eClassifiers xsi:type="ecore:EClass" name="NamedElement" eSuperTypes="#//TemplateableElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="visibility" eType="#//VisibilityKind"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ConditionalNode" eSuperTypes="#//StructuredActivityNode"/>
<eClassifiers xsi:type="ecore:EClass" name="Connector" eSuperTypes="#//Feature"/>
<eClassifiers xsi:type="ecore:EClass" name="Artifact" eSuperTypes="#//Classifier #//DeployedArtifact"/>
<eClassifiers xsi:type="ecore:EClass" name="ProfileApplication" eSuperTypes="#//PackageImport"/>
<eClassifiers xsi:type="ecore:EClass" name="RaiseExceptionAction" eSuperTypes="#//Action"/>
<eClassifiers xsi:type="ecore:EClass" name="LinkEndCreationData" eSuperTypes="#//LinkEndData"/>
<eClassifiers xsi:type="ecore:EClass" name="Include" eSuperTypes="#//NamedElement #//DirectedRelationship"/>
<eClassifiers xsi:type="ecore:EClass" name="InterruptibleActivityRegion" eSuperTypes="#//ActivityGroup"/>
<eClassifiers xsi:type="ecore:EClass" name="MessageEnd" eSuperTypes="#//NamedElement"/>
<eClassifiers xsi:type="ecore:EClass" name="ExecutionOccurrence" eSuperTypes="#//InteractionFragment"/>
<eClassifiers xsi:type="ecore:EClass" name="StateMachine" eSuperTypes="#//Behavior"/>
<eClassifiers xsi:type="ecore:EClass" name="CreateLinkAction" eSuperTypes="#//WriteLinkAction"/>
<eClassifiers xsi:type="ecore:EClass" name="PackageMerge" eSuperTypes="#//DirectedRelationship"/>
<eClassifiers xsi:type="ecore:EClass" name="ApplyFunctionAction" eSuperTypes="#//Action"/>
<eClassifiers xsi:type="ecore:EClass" name="DeployedArtifact" eSuperTypes="#//NamedElement"/>
<eClassifiers xsi:type="ecore:EClass" name="AcceptEventAction" eSuperTypes="#//Action"/>
<eClassifiers xsi:type="ecore:EClass" name="DataStoreNode" eSuperTypes="#//CentralBufferNode"/>
<eClassifiers xsi:type="ecore:EClass" name="Implementation" eSuperTypes="#//Realization"/>
<eClassifiers xsi:type="ecore:EClass" name="Duration" eSuperTypes="#//ValueSpecification"/>
<eClassifiers xsi:type="ecore:EClass" name="QualifierValue" eSuperTypes="#//Element">
<eStructuralFeatures xsi:type="ecore:EReference" name="qualifier" lowerBound="1"
eType="#//Property"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Substitution" eSuperTypes="#//Realization"/>
<eClassifiers xsi:type="ecore:EClass" name="ReadIsClassifiedObjectAction" eSuperTypes="#//Action"/>
<eClassifiers xsi:type="ecore:EClass" name="DurationInterval" eSuperTypes="#//Interval"/>
<eClassifiers xsi:type="ecore:EClass" name="BehavioredClassifier" eSuperTypes="#//Classifier">
<eStructuralFeatures xsi:type="ecore:EReference" name="ownedBehavior" upperBound="-1"
eType="#//Behavior" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="classifierBehavior" eType="#//Behavior"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Generalization" eSuperTypes="#//DirectedRelationship">
<eStructuralFeatures xsi:type="ecore:EReference" name="general" lowerBound="1"
eType="#//Classifier"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="SendSignalAction" eSuperTypes="#//InvocationAction"/>
<eClassifiers xsi:type="ecore:EClass" name="ObjectNode" eSuperTypes="#//ActivityNode #//TypedElement"/>
<eClassifiers xsi:type="ecore:EClass" name="Variable" eSuperTypes="#//ConnectableElement #//TypedElement #//MultiplicityElement"/>
<eClassifiers xsi:type="ecore:EClass" name="Action" eSuperTypes="#//ExecutableNode">
<eStructuralFeatures xsi:type="ecore:EReference" name="context_" eType="#//Classifier"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Activity" eSuperTypes="#//Behavior"/>
<eClassifiers xsi:type="ecore:EClass" name="ReadVariableAction" eSuperTypes="#//VariableAction"/>
<eClassifiers xsi:type="ecore:EClass" name="CentralBufferNode" eSuperTypes="#//ObjectNode"/>
<eClassifiers xsi:type="ecore:EClass" name="LiteralInteger" eSuperTypes="#//LiteralSpecification"/>
<eClassifiers xsi:type="ecore:EClass" name="Interface" eSuperTypes="#//Classifier"/>
<eClassifiers xsi:type="ecore:EClass" name="Node" eSuperTypes="#//Class #//DeploymentTarget"/>
<eClassifiers xsi:type="ecore:EClass" name="PrimitiveType" eSuperTypes="#//DataType"/>
<eClassifiers xsi:type="ecore:EClass" name="ExtensionPoint" eSuperTypes="#//RedefinableElement"/>
<eClassifiers xsi:type="ecore:EClass" name="FlowFinalNode" eSuperTypes="#//FinalNode"/>
<eClassifiers xsi:type="ecore:EClass" name="Continuation" eSuperTypes="#//InteractionFragment"/>
<eClassifiers xsi:type="ecore:EClass" name="RedefinableTemplateSignature" eSuperTypes="#//RedefinableElement #//TemplateSignature"/>
<eClassifiers xsi:type="ecore:EClass" name="Lifeline" eSuperTypes="#//NamedElement"/>
<eClassifiers xsi:type="ecore:EClass" name="EventOccurrence" eSuperTypes="#//InteractionFragment #//MessageEnd"/>
<eClassifiers xsi:type="ecore:EClass" name="DataType" eSuperTypes="#//Classifier"/>
<eClassifiers xsi:type="ecore:EClass" name="Extension" eSuperTypes="#//Association"/>
<eClassifiers xsi:type="ecore:EClass" name="Stereotype" eSuperTypes="#//Class"/>
<eClassifiers xsi:type="ecore:EClass" name="ValuePin" eSuperTypes="#//InputPin"/>
<eClassifiers xsi:type="ecore:EClass" name="Extend" eSuperTypes="#//NamedElement #//DirectedRelationship"/>
<eClassifiers xsi:type="ecore:EClass" name="ReadLinkAction" eSuperTypes="#//LinkAction"/>
<eClassifiers xsi:type="ecore:EClass" name="Class" eSuperTypes="#//BehavioredClassifier #//EncapsulatedClassifier">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isActive" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="nestedClassifier" upperBound="-1"
eType="#//Classifier" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="ownedReception" upperBound="-1"
eType="#//Reception" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ExecutableNode" eSuperTypes="#//ActivityNode"/>
<eClassifiers xsi:type="ecore:EClass" name="ActivityFinalNode" eSuperTypes="#//FinalNode"/>
<eClassifiers xsi:type="ecore:EClass" name="StringExpression" eSuperTypes="#//TemplateableElement"/>
<eClassifiers xsi:type="ecore:EClass" name="MessageTrigger" eSuperTypes="#//Trigger"/>
<eClassifiers xsi:type="ecore:EClass" name="State" eSuperTypes="#//Namespace #//RedefinableElement #//Vertex"/>
<eClassifiers xsi:type="ecore:EClass" name="Comment" eSuperTypes="#//TemplateableElement"/>
<eClassifiers xsi:type="ecore:EClass" name="Trigger" eSuperTypes="#//NamedElement"/>
<eClassifiers xsi:type="ecore:EClass" name="CreateLinkObjectAction" eSuperTypes="#//CreateLinkAction"/>
<eClassifiers xsi:type="ecore:EClass" name="ReplyAction" eSuperTypes="#//Action"/>
<eClassifiers xsi:type="ecore:EClass" name="ClearStructuralFeatureAction" eSuperTypes="#//StructuralFeatureAction"/>
<eClassifiers xsi:type="ecore:EClass" name="Operation" eSuperTypes="#//BehavioralFeature #//TypedElement #//MultiplicityElement #//ParameterableElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isQuery" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="ownedParameter" upperBound="-1"
eType="#//Parameter" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="bodyCondition" eType="#//Constraint"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Association" eSuperTypes="#//Classifier #//Relationship">
<eStructuralFeatures xsi:type="ecore:EReference" name="ownedEnd" upperBound="-1"
eType="#//Property" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="memberEnd" lowerBound="2"
upperBound="-1" eType="#//Property"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Relationship" eSuperTypes="#//Element"/>
<eClassifiers xsi:type="ecore:EClass" name="Gate" eSuperTypes="#//MessageEnd"/>
<eClassifiers xsi:type="ecore:EClass" name="Pseudostate" eSuperTypes="#//Vertex"/>
<eClassifiers xsi:type="ecore:EClass" name="StructuralFeatureAction" eSuperTypes="#//Action">
<eStructuralFeatures xsi:type="ecore:EReference" name="structuralFeature" lowerBound="1"
eType="#//StructuralFeature"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="StateInvariant" eSuperTypes="#//InteractionFragment"/>
<eClassifiers xsi:type="ecore:EClass" name="Expression" eSuperTypes="#//OpaqueExpression"/>
<eClassifiers xsi:type="ecore:EClass" name="DeploymentTarget" eSuperTypes="#//NamedElement"/>
<eClassifiers xsi:type="ecore:EClass" name="Package" eSuperTypes="#//Namespace #//PackageableElement"/>
<eClassifiers xsi:type="ecore:EClass" name="Model" eSuperTypes="#//Package"/>
<eClassifiers xsi:type="ecore:EClass" name="GeneralizationSet" eSuperTypes="#//PackageableElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="generalization" upperBound="-1"
eType="#//Generalization"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ActivityParameterNode" eSuperTypes="#//ObjectNode"/>
<eClassifiers xsi:type="ecore:EClass" name="LiteralNull" eSuperTypes="#//LiteralSpecification"/>
<eClassifiers xsi:type="ecore:EClass" name="Pin" eSuperTypes="#//ObjectNode #//MultiplicityElement"/>
<eClassifiers xsi:type="ecore:EClass" name="Constraint" eSuperTypes="#//PackageableElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="constrainedElement" upperBound="-1"
eType="#//Element"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Stop" eSuperTypes="#//EventOccurrence"/>
<eClassifiers xsi:type="ecore:EClass" name="Slot" eSuperTypes="#//Element">
<eStructuralFeatures xsi:type="ecore:EReference" name="definingFeature" lowerBound="1"
eType="#//StructuralFeature"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ValueSpecification" eSuperTypes="#//TypedElement #//ParameterableElement"/>
<eClassifiers xsi:type="ecore:EClass" name="MultiplicityElement" eSuperTypes="#//Element">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isOrdered" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isUnique" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="lower" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="upper" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="AddStructuralFeatureValueAction" eSuperTypes="#//WriteStructuralFeatureAction"/>
<eClassifiers xsi:type="ecore:EClass" name="MergeNode" eSuperTypes="#//ControlNode"/>
<eClassifiers xsi:type="ecore:EClass" name="TypedElement" eSuperTypes="#//NamedElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="type" eType="#//Type"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="WriteLinkAction" eSuperTypes="#//LinkAction"/>
<eClassifiers xsi:type="ecore:EClass" name="Property" eSuperTypes="#//StructuralFeature #//ConnectableElement #//DeploymentTarget">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isComposite" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isDerived" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isDerivedUnion" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="aggregation" eType="#//AggregationKind"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="subsettedProperty" upperBound="-1"
eType="#//Property"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="association" eType="#//Association"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="qualifier" upperBound="-1"
eType="#//Property" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ConnectorEnd" eSuperTypes="#//MultiplicityElement"/>
<eClassifiers xsi:type="ecore:EClass" name="Profile" eSuperTypes="#//Package"/>
<eClassifiers xsi:type="ecore:EClass" name="WriteVariableAction" eSuperTypes="#//VariableAction"/>
<eClassifiers xsi:type="ecore:EClass" name="SignalTrigger" eSuperTypes="#//MessageTrigger"/>
<eClassifiers xsi:type="ecore:EClass" name="DecisionNode" eSuperTypes="#//ControlNode"/>
<eClassifiers xsi:type="ecore:EClass" name="ReadSelfAction" eSuperTypes="#//Action">
<eStructuralFeatures xsi:type="ecore:EReference" name="result" lowerBound="1"
eType="#//OutputPin" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="TemplateBinding" eSuperTypes="#//DirectedRelationship"/>
<eClassifiers xsi:type="ecore:EClass" name="TemplateableClassifier" eSuperTypes="#//Classifier"/>
<eClassifiers xsi:type="ecore:EClass" name="IntervalConstraint" eSuperTypes="#//Constraint"/>
<eClassifiers xsi:type="ecore:EClass" name="AssociationClass" eSuperTypes="#//Class #//Association"/>
<eClassifiers xsi:type="ecore:EClass" name="TemplateableElement" eSuperTypes="#//Element"/>
<eClassifiers xsi:type="ecore:EClass" name="TimeObservationAction" eSuperTypes="#//WriteStructuralFeatureAction"/>
<eClassifiers xsi:type="ecore:EClass" name="Behavior" eSuperTypes="#//Class">
<eStructuralFeatures xsi:type="ecore:EReference" name="specification" eType="#//BehavioralFeature"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="ownedParameterSet" upperBound="-1"
eType="#//ParameterSet" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ParameterableElement" eSuperTypes="#//Element"/>
<eClassifiers xsi:type="ecore:EClass" name="ConnectableElement" eSuperTypes="#//NamedElement #//ParameterableElement"/>
<eClassifiers xsi:type="ecore:EClass" name="AnyTrigger" eSuperTypes="#//MessageTrigger"/>
<eClassifiers xsi:type="ecore:EClass" name="FinalNode" eSuperTypes="#//ControlNode"/>
<eClassifiers xsi:type="ecore:EClass" name="Transition" eSuperTypes="#//RedefinableElement"/>
<eClassifiers xsi:type="ecore:EClass" name="InstanceValue" eSuperTypes="#//ValueSpecification"/>
<eClassifiers xsi:type="ecore:EClass" name="ConnectableElementTemplateParameter"
eSuperTypes="#//TemplateParameter"/>
<eClassifiers xsi:type="ecore:EClass" name="CallOperationAction" eSuperTypes="#//CallAction"/>
<eClassifiers xsi:type="ecore:EClass" name="DestroyObjectAction" eSuperTypes="#//Action">
<eStructuralFeatures xsi:type="ecore:EReference" name="target" lowerBound="1"
eType="#//InputPin" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="TimeInterval" eSuperTypes="#//Interval"/>
<eClassifiers xsi:type="ecore:EClass" name="ActivityGroup" eSuperTypes="#//Element"/>
<eClassifiers xsi:type="ecore:EClass" name="InformationFlow" eSuperTypes="#//PackageableElement #//DirectedRelationship"/>
<eClassifiers xsi:type="ecore:EClass" name="ExpansionRegion" eSuperTypes="#//StructuredActivityNode"/>
<eClassifiers xsi:type="ecore:EClass" name="Signal" eSuperTypes="#//Classifier"/>
<eClassifiers xsi:type="ecore:EClass" name="TimeTrigger" eSuperTypes="#//Trigger"/>
<eClassifiers xsi:type="ecore:EClass" name="ChangeTrigger" eSuperTypes="#//Trigger"/>
<eClassifiers xsi:type="ecore:EClass" name="Actor" eSuperTypes="#//Classifier"/>
<eClassifiers xsi:type="ecore:EClass" name="InitialNode" eSuperTypes="#//ControlNode"/>
<eClassifiers xsi:type="ecore:EClass" name="Namespace" eSuperTypes="#//NamedElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="member" upperBound="-1"
eType="#//NamedElement"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="InteractionFragment" eSuperTypes="#//NamedElement"/>
<eClassifiers xsi:type="ecore:EClass" name="OpaqueExpression" eSuperTypes="#//ValueSpecification">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="bodies" upperBound="-1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="language" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="behavior" eType="#//Behavior"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ClassifierTemplateParameter" eSuperTypes="#//TemplateParameter"/>
<eClassifiers xsi:type="ecore:EClass" name="Enumeration" eSuperTypes="#//DataType"/>
<eClassifiers xsi:type="ecore:EClass" name="ProtocolStateMachine" eSuperTypes="#//StateMachine"/>
<eClassifiers xsi:type="ecore:EClass" name="WriteStructuralFeatureAction" eSuperTypes="#//StructuralFeatureAction">
<eStructuralFeatures xsi:type="ecore:EReference" name="value" lowerBound="1" eType="#//InputPin"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ReadStructuralFeatureAction" eSuperTypes="#//StructuralFeatureAction"/>
<eClassifiers xsi:type="ecore:EClass" name="Region" eSuperTypes="#//Namespace #//RedefinableElement"/>
<eClassifiers xsi:type="ecore:EClass" name="ControlNode" eSuperTypes="#//ActivityNode"/>
<eClassifiers xsi:type="ecore:EClass" name="RedefinableElement" eSuperTypes="#//NamedElement"/>
<eClassifiers xsi:type="ecore:EClass" name="ParameterSet" eSuperTypes="#//NamedElement"/>
<eClassifiers xsi:type="ecore:EClass" name="LiteralBoolean" eSuperTypes="#//LiteralSpecification"/>
<eClassifiers xsi:type="ecore:EClass" name="DeploymentSpecification" eSuperTypes="#//Artifact"/>
<eClassifiers xsi:type="ecore:EClass" name="BroadcastSignalAction" eSuperTypes="#//InvocationAction"/>
<eClassifiers xsi:type="ecore:EClass" name="TestIdentityAction" eSuperTypes="#//Action">
<eStructuralFeatures xsi:type="ecore:EReference" name="first" lowerBound="1" eType="#//InputPin"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="second" lowerBound="1"
eType="#//InputPin" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="InputPin" eSuperTypes="#//Pin"/>
<eClassifiers xsi:type="ecore:EClass" name="ProtocolTransition" eSuperTypes="#//Transition"/>
<eClassifiers xsi:type="ecore:EClass" name="Vertex" eSuperTypes="#//NamedElement"/>
<eClassifiers xsi:type="ecore:EClass" name="Permission" eSuperTypes="#//Dependency"/>
<eClassifiers xsi:type="ecore:EClass" name="Type" eSuperTypes="#//PackageableElement"/>
<eClassifiers xsi:type="ecore:EClass" name="BehavioralFeature" eSuperTypes="#//Namespace #//Feature"/>
<eClassifiers xsi:type="ecore:EClass" name="ExecutionEnvironment" eSuperTypes="#//Node"/>
<eClassifiers xsi:type="ecore:EClass" name="Feature" eSuperTypes="#//RedefinableElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isStatic" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="featuringClassifier" upperBound="-1"
eType="#//Classifier"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="OperationTemplateParameter" eSuperTypes="#//TemplateParameter"/>
<eClassifiers xsi:type="ecore:EClass" name="DurationObservationAction" eSuperTypes="#//WriteStructuralFeatureAction"/>
<eClassifiers xsi:type="ecore:EClass" name="AddVariableValueAction" eSuperTypes="#//WriteVariableAction"/>
<eClassifiers xsi:type="ecore:EClass" name="RemoveVariableValueAction" eSuperTypes="#//WriteVariableAction"/>
<eClassifiers xsi:type="ecore:EClass" name="Message" eSuperTypes="#//NamedElement"/>
<eClassifiers xsi:type="ecore:EClass" name="PackageImport" eSuperTypes="#//DirectedRelationship">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="visibility" eType="#//VisibilityKind"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Interval" eSuperTypes="#//ValueSpecification"/>
<eClassifiers xsi:type="ecore:EClass" name="ActivityPartition" eSuperTypes="#//NamedElement #//ActivityGroup"/>
<eClassifiers xsi:type="ecore:EClass" name="CollaborationOccurrence" eSuperTypes="#//NamedElement"/>
<eClassifiers xsi:type="ecore:EClass" name="DurationConstraint" eSuperTypes="#//IntervalConstraint"/>
<eClassifiers xsi:type="ecore:EClass" name="StructuralFeature" eSuperTypes="#//Feature #//TypedElement #//MultiplicityElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isReadOnly" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="GeneralOrdering" eSuperTypes="#//NamedElement"/>
<eClassifiers xsi:type="ecore:EClass" name="InteractionOperand" eSuperTypes="#//Namespace #//InteractionFragment"/>
<eClassifiers xsi:type="ecore:EClass" name="Clause" eSuperTypes="#//Element"/>
<eClassifiers xsi:type="ecore:EClass" name="RemoveStructuralFeatureValueAction"
eSuperTypes="#//WriteStructuralFeatureAction"/>
<eClassifiers xsi:type="ecore:EClass" name="Device" eSuperTypes="#//Node"/>
<eClassifiers xsi:type="ecore:EClass" name="FinalState" eSuperTypes="#//State"/>
<eClassifiers xsi:type="ecore:EClass" name="InteractionOccurrence" eSuperTypes="#//InteractionFragment"/>
<eClassifiers xsi:type="ecore:EClass" name="EncapsulatedClassifier" eSuperTypes="#//StructuredClassifier"/>
<eClassifiers xsi:type="ecore:EClass" name="ExpansionNode" eSuperTypes="#//ObjectNode"/>
<eClassifiers xsi:type="ecore:EClass" name="TemplateSignature" eSuperTypes="#//Element"/>
<eClassifiers xsi:type="ecore:EClass" name="ControlFlow" eSuperTypes="#//ActivityEdge"/>
<eClassifiers xsi:type="ecore:EClass" name="PackageableElement" eSuperTypes="#//NamedElement #//ParameterableElement"/>
<eClassifiers xsi:type="ecore:EClass" name="PrimitiveFunction" eSuperTypes="#//PackageableElement"/>
<eClassifiers xsi:type="ecore:EClass" name="LinkEndData" eSuperTypes="#//Element">
<eStructuralFeatures xsi:type="ecore:EReference" name="value" eType="#//InputPin"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="end" lowerBound="1" eType="#//Property"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="qualifier" upperBound="-1"
eType="#//QualifierValue" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="SendObjectAction" eSuperTypes="#//InvocationAction"/>
<eClassifiers xsi:type="ecore:EClass" name="ObjectFlow" eSuperTypes="#//ActivityEdge"/>
<eClassifiers xsi:type="ecore:EClass" name="InvocationAction" eSuperTypes="#//Action"/>
<eClassifiers xsi:type="ecore:EClass" name="Manifestation" eSuperTypes="#//Abstraction"/>
<eClassifiers xsi:type="ecore:EClass" name="Usage" eSuperTypes="#//Dependency"/>
<eClassifiers xsi:type="ecore:EClass" name="JoinNode" eSuperTypes="#//ControlNode"/>
<eClassifiers xsi:type="ecore:EClass" name="ConnectionPointReference" eSuperTypes="#//Vertex"/>
<eClassifiers xsi:type="ecore:EClass" name="DestroyLinkAction" eSuperTypes="#//WriteLinkAction"/>
<eClassifiers xsi:type="ecore:EClass" name="Collaboration" eSuperTypes="#//BehavioredClassifier #//StructuredClassifier"/>
<eClassifiers xsi:type="ecore:EClass" name="Reception" eSuperTypes="#//BehavioralFeature"/>
<eClassifiers xsi:type="ecore:EClass" name="ExceptionHandler" eSuperTypes="#//Element"/>
<eClassifiers xsi:type="ecore:EClass" name="EnumerationLiteral" eSuperTypes="#//InstanceSpecification"/>
<eClassifiers xsi:type="ecore:EClass" name="UseCase" eSuperTypes="#//BehavioredClassifier"/>
<eClassifiers xsi:type="ecore:EClass" name="Classifier" eSuperTypes="#//Namespace #//Type #//RedefinableElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isAbstract" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="feature" upperBound="-1"
eType="#//Feature"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="inheritedMember" upperBound="-1"
eType="#//NamedElement"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="generalization" upperBound="-1"
eType="#//Generalization" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Realization" eSuperTypes="#//Abstraction"/>
<eClassifiers xsi:type="ecore:EClass" name="ClearVariableAction" eSuperTypes="#//VariableAction"/>
<eClassifiers xsi:type="ecore:EClass" name="ForkNode" eSuperTypes="#//ControlNode"/>
<eClassifiers xsi:type="ecore:EClass" name="Parameter" eSuperTypes="#//ConnectableElement #//TypedElement #//MultiplicityElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="direction" eType="#//ParameterDirectionKind"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="LoopNode" eSuperTypes="#//StructuredActivityNode"/>
<eClassifiers xsi:type="ecore:EClass" name="TemplateParameter" eSuperTypes="#//Element"/>
<eClassifiers xsi:type="ecore:EClass" name="ReadExtentAction" eSuperTypes="#//Action"/>
<eClassifiers xsi:type="ecore:EClass" name="LiteralSpecification" eSuperTypes="#//ValueSpecification"/>
<eClassifiers xsi:type="ecore:EClass" name="InformationItem" eSuperTypes="#//Classifier"/>
<eClassifiers xsi:type="ecore:EClass" name="Dependency" eSuperTypes="#//PackageableElement #//DirectedRelationship"/>
<eClassifiers xsi:type="ecore:EClass" name="PartDecomposition" eSuperTypes="#//InteractionOccurrence"/>
<eClassifiers xsi:type="ecore:EClass" name="CallBehaviorAction" eSuperTypes="#//CallAction"/>
<eClassifiers xsi:type="ecore:EClass" name="VariableAction" eSuperTypes="#//Action"/>
<eClassifiers xsi:type="ecore:EClass" name="ParameterableClassifier" eSuperTypes="#//Classifier"/>
<eClassifiers xsi:type="ecore:EClass" name="CombinedFragment" eSuperTypes="#//InteractionFragment"/>
<eClassifiers xsi:type="ecore:EClass" name="OutputPin" eSuperTypes="#//Pin"/>
<eClassifiers xsi:type="ecore:EClass" name="ReadLinkObjectEndAction" eSuperTypes="#//Action"/>
<eClassifiers xsi:type="ecore:EClass" name="LinkAction" eSuperTypes="#//Action"/>
<eClassifiers xsi:type="ecore:EClass" name="Port" eSuperTypes="#//Property"/>
</ecore:EPackage>
| github:ecore:/data/sunwuliang/SlicingProject1.0/slices/SlicedUML2InsDataSet1.ecore | ecore | UML2
VisibilityKind
package
package
private
private
protected
protected
public
public
ParameterDirectionKind
in
in
inout
inout
out
out
return
return
AggregationKind
composite
composite
none
none
shared
shared
StartOwnedBehaviorAction
AcceptCallAction
Element
owner
Abstraction
Interaction
TimeExpression
DirectedRelationship
ActivityEdge
Component
ReclassifyObjectAction
LiteralString
ExtensionEnd
CreateObjectAction
classifier
result
StructuredActivityNode
ActivityNode
TimeConstraint
Deployment
ElementImport
visibility
importedElement
LiteralUnlimitedNatural
InteractionConstraint
CommunicationPath
ProtocolConformance
InstanceSpecification
slot
classifier
ReadLinkObjectEndQualifierAction
ClearAssociationAction
CallAction
StructuredClassifier
CallTrigger
TemplateParameterSubstitution
NamedElement
name
visibility
ConditionalNode
Connector
Artifact
ProfileApplication
RaiseExceptionAction
LinkEndCreationData
Include
InterruptibleActivityRegion
MessageEnd
ExecutionOccurrence
StateMachine
CreateLinkAction
PackageMerge
ApplyFunctionAction
DeployedArtifact
AcceptEventAction
DataStoreNode
Implementation
Duration
QualifierValue
qualifier
Substitution
ReadIsClassifiedObjectAction
DurationInterval
BehavioredClassifier
ownedBehavior
classifierBehavior
Generalization
general
SendSignalAction
ObjectNode
Variable
Action
context_
Activity
ReadVariableAction
CentralBufferNode
LiteralInteger
Interface
Node
PrimitiveType
ExtensionPoint
FlowFinalNode
Continuation
RedefinableTemplateSignature
Lifeline
EventOccurrence
DataType
Extension
Stereotype
ValuePin
Extend
ReadLinkAction
Class
isActive
nestedClassifier
ownedReception
ExecutableNode
ActivityFinalNode
StringExpression
MessageTrigger
State
Comment
Trigger
CreateLinkObjectAction
ReplyAction
ClearStructuralFeatureAction
Operation
isQuery
ownedParameter
bodyCondition
Association
ownedEnd
memberEnd
Relationship
Gate
Pseudostate
StructuralFeatureAction
structuralFeature
StateInvariant
Expression
DeploymentTarget
Package
Model
GeneralizationSet
generalization
ActivityParameterNode
LiteralNull
Pin
Constraint
constrainedElement
Stop
Slot
definingFeature
ValueSpecification
MultiplicityElement
isOrdered
isUnique
lower
upper
AddStructuralFeatureValueAction
MergeNode
TypedElement
type
WriteLinkAction
Property
isComposite
isDerived
isDerivedUnion
aggregation
subsettedProperty
association
qualifier
ConnectorEnd
Profile
WriteVariableAction
SignalTrigger
DecisionNode
ReadSelfAction
result
TemplateBinding
TemplateableClassifier
IntervalConstraint
AssociationClass
TemplateableElement
TimeObservationAction
Behavior
specification
ownedParameterSet
ParameterableElement
ConnectableElement
AnyTrigger
FinalNode
Transition
InstanceValue
ConnectableElementTemplateParameter
CallOperationAction
DestroyObjectAction
target
TimeInterval
ActivityGroup
InformationFlow
ExpansionRegion
Signal
TimeTrigger
ChangeTrigger
Actor
InitialNode
Namespace
member
InteractionFragment
OpaqueExpression
bodies
language
behavior
ClassifierTemplateParameter
Enumeration
ProtocolStateMachine
WriteStructuralFeatureAction
value
ReadStructuralFeatureAction
Region
ControlNode
RedefinableElement
ParameterSet
LiteralBoolean
DeploymentSpecification
BroadcastSignalAction
TestIdentityAction
first
second
InputPin
ProtocolTransition
Vertex
Permission
Type
BehavioralFeature
ExecutionEnvironment
Feature
isStatic
featuringClassifier
OperationTemplateParameter
DurationObservationAction
AddVariableValueAction
RemoveVariableValueAction
Message
PackageImport
visibility
Interval
ActivityPartition
CollaborationOccurrence
DurationConstraint
StructuralFeature
isReadOnly
GeneralOrdering
InteractionOperand
Clause
RemoveStructuralFeatureValueAction
Device
FinalState
InteractionOccurrence
EncapsulatedClassifier
ExpansionNode
TemplateSignature
ControlFlow
PackageableElement
PrimitiveFunction
LinkEndData
value
end
qualifier
SendObjectAction
ObjectFlow
InvocationAction
Manifestation
Usage
JoinNode
ConnectionPointReference
DestroyLinkAction
Collaboration
Reception
ExceptionHandler
EnumerationLiteral
UseCase
Classifier
isAbstract
feature
inheritedMember
generalization
Realization
ClearVariableAction
ForkNode
Parameter
direction
LoopNode
TemplateParameter
ReadExtentAction
LiteralSpecification
InformationItem
Dependency
PartDecomposition
CallBehaviorAction
VariableAction
ParameterableClassifier
CombinedFragment
OutputPin
ReadLinkObjectEndAction
LinkAction
Port | null | {"directed":true,"nodes":[{"nsPrefix":"UML2","nsURI":"http:///UML2.ecore","name":"UML2","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"instanceClassName":null,"name":"VisibilityKind","instanceClass":null,"id":1,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"ParameterDirectionKind","instanceClass":null,"id":2,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"AggregationKind","instanceClass":null,"id":3,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StartOwnedBehaviorAction","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AcceptCallAction","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Element","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Abstraction","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Interaction","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TimeExpression","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DirectedRelationship","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ActivityEdge","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Component","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ReclassifyObjectAction","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LiteralString","instanceClass":null,"abstract":false,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExtensionEnd","instanceClass":null,"abstract":false,"id":15,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CreateObjectAction","instanceClass":null,"abstract":false,"id":16,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StructuredActivityNode","instanceClass":null,"abstract":false,"id":17,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ActivityNode","instanceClass":null,"abstract":false,"id":18,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TimeConstraint","instanceClass":null,"abstract":false,"id":19,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Deployment","instanceClass":null,"abstract":false,"id":20,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ElementImport","instanceClass":null,"abstract":false,"id":21,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LiteralUnlimitedNatural","instanceClass":null,"abstract":false,"id":22,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InteractionConstraint","instanceClass":null,"abstract":false,"id":23,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CommunicationPath","instanceClass":null,"abstract":false,"id":24,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ProtocolConformance","instanceClass":null,"abstract":false,"id":25,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InstanceSpecification","instanceClass":null,"abstract":false,"id":26,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ReadLinkObjectEndQualifierAction","instanceClass":null,"abstract":false,"id":27,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ClearAssociationAction","instanceClass":null,"abstract":false,"id":28,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CallAction","instanceClass":null,"abstract":false,"id":29,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StructuredClassifier","instanceClass":null,"abstract":false,"id":30,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CallTrigger","instanceClass":null,"abstract":false,"id":31,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TemplateParameterSubstitution","instanceClass":null,"abstract":false,"id":32,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NamedElement","instanceClass":null,"abstract":false,"id":33,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ConditionalNode","instanceClass":null,"abstract":false,"id":34,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Connector","instanceClass":null,"abstract":false,"id":35,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Artifact","instanceClass":null,"abstract":false,"id":36,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ProfileApplication","instanceClass":null,"abstract":false,"id":37,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RaiseExceptionAction","instanceClass":null,"abstract":false,"id":38,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LinkEndCreationData","instanceClass":null,"abstract":false,"id":39,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Include","instanceClass":null,"abstract":false,"id":40,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InterruptibleActivityRegion","instanceClass":null,"abstract":false,"id":41,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MessageEnd","instanceClass":null,"abstract":false,"id":42,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExecutionOccurrence","instanceClass":null,"abstract":false,"id":43,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StateMachine","instanceClass":null,"abstract":false,"id":44,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CreateLinkAction","instanceClass":null,"abstract":false,"id":45,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PackageMerge","instanceClass":null,"abstract":false,"id":46,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ApplyFunctionAction","instanceClass":null,"abstract":false,"id":47,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DeployedArtifact","instanceClass":null,"abstract":false,"id":48,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AcceptEventAction","instanceClass":null,"abstract":false,"id":49,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DataStoreNode","instanceClass":null,"abstract":false,"id":50,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Implementation","instanceClass":null,"abstract":false,"id":51,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Duration","instanceClass":null,"abstract":false,"id":52,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"QualifierValue","instanceClass":null,"abstract":false,"id":53,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Substitution","instanceClass":null,"abstract":false,"id":54,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ReadIsClassifiedObjectAction","instanceClass":null,"abstract":false,"id":55,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DurationInterval","instanceClass":null,"abstract":false,"id":56,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BehavioredClassifier","instanceClass":null,"abstract":false,"id":57,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Generalization","instanceClass":null,"abstract":false,"id":58,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SendSignalAction","instanceClass":null,"abstract":false,"id":59,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ObjectNode","instanceClass":null,"abstract":false,"id":60,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Variable","instanceClass":null,"abstract":false,"id":61,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Action","instanceClass":null,"abstract":false,"id":62,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Activity","instanceClass":null,"abstract":false,"id":63,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ReadVariableAction","instanceClass":null,"abstract":false,"id":64,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CentralBufferNode","instanceClass":null,"abstract":false,"id":65,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LiteralInteger","instanceClass":null,"abstract":false,"id":66,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Interface","instanceClass":null,"abstract":false,"id":67,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Node","instanceClass":null,"abstract":false,"id":68,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PrimitiveType","instanceClass":null,"abstract":false,"id":69,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExtensionPoint","instanceClass":null,"abstract":false,"id":70,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FlowFinalNode","instanceClass":null,"abstract":false,"id":71,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Continuation","instanceClass":null,"abstract":false,"id":72,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RedefinableTemplateSignature","instanceClass":null,"abstract":false,"id":73,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Lifeline","instanceClass":null,"abstract":false,"id":74,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EventOccurrence","instanceClass":null,"abstract":false,"id":75,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DataType","instanceClass":null,"abstract":false,"id":76,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Extension","instanceClass":null,"abstract":false,"id":77,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Stereotype","instanceClass":null,"abstract":false,"id":78,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ValuePin","instanceClass":null,"abstract":false,"id":79,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Extend","instanceClass":null,"abstract":false,"id":80,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ReadLinkAction","instanceClass":null,"abstract":false,"id":81,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Class","instanceClass":null,"abstract":false,"id":82,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExecutableNode","instanceClass":null,"abstract":false,"id":83,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ActivityFinalNode","instanceClass":null,"abstract":false,"id":84,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StringExpression","instanceClass":null,"abstract":false,"id":85,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MessageTrigger","instanceClass":null,"abstract":false,"id":86,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"State","instanceClass":null,"abstract":false,"id":87,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Comment","instanceClass":null,"abstract":false,"id":88,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Trigger","instanceClass":null,"abstract":false,"id":89,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CreateLinkObjectAction","instanceClass":null,"abstract":false,"id":90,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ReplyAction","instanceClass":null,"abstract":false,"id":91,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ClearStructuralFeatureAction","instanceClass":null,"abstract":false,"id":92,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Operation","instanceClass":null,"abstract":false,"id":93,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Association","instanceClass":null,"abstract":false,"id":94,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Relationship","instanceClass":null,"abstract":false,"id":95,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Gate","instanceClass":null,"abstract":false,"id":96,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Pseudostate","instanceClass":null,"abstract":false,"id":97,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StructuralFeatureAction","instanceClass":null,"abstract":false,"id":98,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StateInvariant","instanceClass":null,"abstract":false,"id":99,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Expression","instanceClass":null,"abstract":false,"id":100,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DeploymentTarget","instanceClass":null,"abstract":false,"id":101,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Package","instanceClass":null,"abstract":false,"id":102,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Model","instanceClass":null,"abstract":false,"id":103,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"GeneralizationSet","instanceClass":null,"abstract":false,"id":104,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ActivityParameterNode","instanceClass":null,"abstract":false,"id":105,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LiteralNull","instanceClass":null,"abstract":false,"id":106,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Pin","instanceClass":null,"abstract":false,"id":107,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Constraint","instanceClass":null,"abstract":false,"id":108,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Stop","instanceClass":null,"abstract":false,"id":109,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Slot","instanceClass":null,"abstract":false,"id":110,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ValueSpecification","instanceClass":null,"abstract":false,"id":111,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MultiplicityElement","instanceClass":null,"abstract":false,"id":112,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AddStructuralFeatureValueAction","instanceClass":null,"abstract":false,"id":113,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MergeNode","instanceClass":null,"abstract":false,"id":114,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TypedElement","instanceClass":null,"abstract":false,"id":115,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"WriteLinkAction","instanceClass":null,"abstract":false,"id":116,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Property","instanceClass":null,"abstract":false,"id":117,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ConnectorEnd","instanceClass":null,"abstract":false,"id":118,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Profile","instanceClass":null,"abstract":false,"id":119,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"WriteVariableAction","instanceClass":null,"abstract":false,"id":120,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SignalTrigger","instanceClass":null,"abstract":false,"id":121,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DecisionNode","instanceClass":null,"abstract":false,"id":122,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ReadSelfAction","instanceClass":null,"abstract":false,"id":123,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TemplateBinding","instanceClass":null,"abstract":false,"id":124,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TemplateableClassifier","instanceClass":null,"abstract":false,"id":125,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IntervalConstraint","instanceClass":null,"abstract":false,"id":126,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AssociationClass","instanceClass":null,"abstract":false,"id":127,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TemplateableElement","instanceClass":null,"abstract":false,"id":128,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TimeObservationAction","instanceClass":null,"abstract":false,"id":129,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Behavior","instanceClass":null,"abstract":false,"id":130,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ParameterableElement","instanceClass":null,"abstract":false,"id":131,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ConnectableElement","instanceClass":null,"abstract":false,"id":132,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AnyTrigger","instanceClass":null,"abstract":false,"id":133,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FinalNode","instanceClass":null,"abstract":false,"id":134,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Transition","instanceClass":null,"abstract":false,"id":135,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InstanceValue","instanceClass":null,"abstract":false,"id":136,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ConnectableElementTemplateParameter","instanceClass":null,"abstract":false,"id":137,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CallOperationAction","instanceClass":null,"abstract":false,"id":138,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DestroyObjectAction","instanceClass":null,"abstract":false,"id":139,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TimeInterval","instanceClass":null,"abstract":false,"id":140,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ActivityGroup","instanceClass":null,"abstract":false,"id":141,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InformationFlow","instanceClass":null,"abstract":false,"id":142,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExpansionRegion","instanceClass":null,"abstract":false,"id":143,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Signal","instanceClass":null,"abstract":false,"id":144,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TimeTrigger","instanceClass":null,"abstract":false,"id":145,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ChangeTrigger","instanceClass":null,"abstract":false,"id":146,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Actor","instanceClass":null,"abstract":false,"id":147,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InitialNode","instanceClass":null,"abstract":false,"id":148,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Namespace","instanceClass":null,"abstract":false,"id":149,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InteractionFragment","instanceClass":null,"abstract":false,"id":150,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OpaqueExpression","instanceClass":null,"abstract":false,"id":151,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ClassifierTemplateParameter","instanceClass":null,"abstract":false,"id":152,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Enumeration","instanceClass":null,"abstract":false,"id":153,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ProtocolStateMachine","instanceClass":null,"abstract":false,"id":154,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"WriteStructuralFeatureAction","instanceClass":null,"abstract":false,"id":155,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ReadStructuralFeatureAction","instanceClass":null,"abstract":false,"id":156,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Region","instanceClass":null,"abstract":false,"id":157,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ControlNode","instanceClass":null,"abstract":false,"id":158,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RedefinableElement","instanceClass":null,"abstract":false,"id":159,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ParameterSet","instanceClass":null,"abstract":false,"id":160,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LiteralBoolean","instanceClass":null,"abstract":false,"id":161,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DeploymentSpecification","instanceClass":null,"abstract":false,"id":162,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BroadcastSignalAction","instanceClass":null,"abstract":false,"id":163,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TestIdentityAction","instanceClass":null,"abstract":false,"id":164,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InputPin","instanceClass":null,"abstract":false,"id":165,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ProtocolTransition","instanceClass":null,"abstract":false,"id":166,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Vertex","instanceClass":null,"abstract":false,"id":167,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Permission","instanceClass":null,"abstract":false,"id":168,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Type","instanceClass":null,"abstract":false,"id":169,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BehavioralFeature","instanceClass":null,"abstract":false,"id":170,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExecutionEnvironment","instanceClass":null,"abstract":false,"id":171,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Feature","instanceClass":null,"abstract":false,"id":172,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OperationTemplateParameter","instanceClass":null,"abstract":false,"id":173,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DurationObservationAction","instanceClass":null,"abstract":false,"id":174,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AddVariableValueAction","instanceClass":null,"abstract":false,"id":175,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RemoveVariableValueAction","instanceClass":null,"abstract":false,"id":176,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Message","instanceClass":null,"abstract":false,"id":177,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PackageImport","instanceClass":null,"abstract":false,"id":178,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Interval","instanceClass":null,"abstract":false,"id":179,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ActivityPartition","instanceClass":null,"abstract":false,"id":180,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CollaborationOccurrence","instanceClass":null,"abstract":false,"id":181,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DurationConstraint","instanceClass":null,"abstract":false,"id":182,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StructuralFeature","instanceClass":null,"abstract":false,"id":183,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"GeneralOrdering","instanceClass":null,"abstract":false,"id":184,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InteractionOperand","instanceClass":null,"abstract":false,"id":185,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Clause","instanceClass":null,"abstract":false,"id":186,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RemoveStructuralFeatureValueAction","instanceClass":null,"abstract":false,"id":187,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Device","instanceClass":null,"abstract":false,"id":188,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FinalState","instanceClass":null,"abstract":false,"id":189,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InteractionOccurrence","instanceClass":null,"abstract":false,"id":190,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EncapsulatedClassifier","instanceClass":null,"abstract":false,"id":191,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExpansionNode","instanceClass":null,"abstract":false,"id":192,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TemplateSignature","instanceClass":null,"abstract":false,"id":193,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ControlFlow","instanceClass":null,"abstract":false,"id":194,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PackageableElement","instanceClass":null,"abstract":false,"id":195,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PrimitiveFunction","instanceClass":null,"abstract":false,"id":196,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LinkEndData","instanceClass":null,"abstract":false,"id":197,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SendObjectAction","instanceClass":null,"abstract":false,"id":198,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ObjectFlow","instanceClass":null,"abstract":false,"id":199,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InvocationAction","instanceClass":null,"abstract":false,"id":200,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Manifestation","instanceClass":null,"abstract":false,"id":201,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Usage","instanceClass":null,"abstract":false,"id":202,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"JoinNode","instanceClass":null,"abstract":false,"id":203,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ConnectionPointReference","instanceClass":null,"abstract":false,"id":204,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DestroyLinkAction","instanceClass":null,"abstract":false,"id":205,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Collaboration","instanceClass":null,"abstract":false,"id":206,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Reception","instanceClass":null,"abstract":false,"id":207,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExceptionHandler","instanceClass":null,"abstract":false,"id":208,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EnumerationLiteral","instanceClass":null,"abstract":false,"id":209,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"UseCase","instanceClass":null,"abstract":false,"id":210,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Classifier","instanceClass":null,"abstract":false,"id":211,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Realization","instanceClass":null,"abstract":false,"id":212,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ClearVariableAction","instanceClass":null,"abstract":false,"id":213,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ForkNode","instanceClass":null,"abstract":false,"id":214,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Parameter","instanceClass":null,"abstract":false,"id":215,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LoopNode","instanceClass":null,"abstract":false,"id":216,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TemplateParameter","instanceClass":null,"abstract":false,"id":217,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ReadExtentAction","instanceClass":null,"abstract":false,"id":218,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LiteralSpecification","instanceClass":null,"abstract":false,"id":219,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InformationItem","instanceClass":null,"abstract":false,"id":220,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Dependency","instanceClass":null,"abstract":false,"id":221,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PartDecomposition","instanceClass":null,"abstract":false,"id":222,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CallBehaviorAction","instanceClass":null,"abstract":false,"id":223,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"VariableAction","instanceClass":null,"abstract":false,"id":224,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ParameterableClassifier","instanceClass":null,"abstract":false,"id":225,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CombinedFragment","instanceClass":null,"abstract":false,"id":226,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OutputPin","instanceClass":null,"abstract":false,"id":227,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ReadLinkObjectEndAction","instanceClass":null,"abstract":false,"id":228,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LinkAction","instanceClass":null,"abstract":false,"id":229,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Port","instanceClass":null,"abstract":false,"id":230,"interface":false,"eClass":"EClass"},{"name":"package","id":231,"value":1,"literal":"package","eClass":"EEnumLiteral"},{"name":"private","id":232,"value":2,"literal":"private","eClass":"EEnumLiteral"},{"name":"protected","id":233,"value":3,"literal":"protected","eClass":"EEnumLiteral"},{"name":"public","id":234,"value":4,"literal":"public","eClass":"EEnumLiteral"},{"name":"in","id":235,"value":1,"literal":"in","eClass":"EEnumLiteral"},{"name":"inout","id":236,"value":2,"literal":"inout","eClass":"EEnumLiteral"},{"name":"out","id":237,"value":3,"literal":"out","eClass":"EEnumLiteral"},{"name":"return","id":238,"value":4,"literal":"return","eClass":"EEnumLiteral"},{"name":"composite","id":239,"value":1,"literal":"composite","eClass":"EEnumLiteral"},{"name":"none","id":240,"value":2,"literal":"none","eClass":"EEnumLiteral"},{"name":"shared","id":241,"value":3,"literal":"shared","eClass":"EEnumLiteral"},{"id":242,"eClass":"EGenericType"},{"id":243,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"owner","changeable":true,"resolveProxies":true,"lowerBound":0,"id":244,"derived":false},{"id":245,"eClass":"EGenericType"},{"id":246,"eClass":"EGenericType"},{"id":247,"eClass":"EGenericType"},{"id":248,"eClass":"EGenericType"},{"id":249,"eClass":"EGenericType"},{"id":250,"eClass":"EGenericType"},{"id":251,"eClass":"EGenericType"},{"id":252,"eClass":"EGenericType"},{"id":253,"eClass":"EGenericType"},{"id":254,"eClass":"EGenericType"},{"id":255,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"classifier","changeable":true,"resolveProxies":true,"lowerBound":1,"id":256,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"result","changeable":true,"resolveProxies":true,"lowerBound":1,"id":257,"derived":false},{"id":258,"eClass":"EGenericType"},{"id":259,"eClass":"EGenericType"},{"id":260,"eClass":"EGenericType"},{"id":261,"eClass":"EGenericType"},{"id":262,"eClass":"EGenericType"},{"id":263,"eClass":"EGenericType"},{"id":264,"eClass":"EGenericType"},{"id":265,"eClass":"EGenericType"},{"id":266,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"visibility","changeable":true,"lowerBound":0,"iD":false,"id":267,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"importedElement","changeable":true,"resolveProxies":true,"lowerBound":1,"id":268,"derived":false},{"id":269,"eClass":"EGenericType"},{"id":270,"eClass":"EGenericType"},{"id":271,"eClass":"EGenericType"},{"id":272,"eClass":"EGenericType"},{"id":273,"eClass":"EGenericType"},{"id":274,"eClass":"EGenericType"},{"id":275,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"slot","changeable":true,"resolveProxies":true,"lowerBound":0,"id":276,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"classifier","changeable":true,"resolveProxies":true,"lowerBound":0,"id":277,"derived":false},{"id":278,"eClass":"EGenericType"},{"id":279,"eClass":"EGenericType"},{"id":280,"eClass":"EGenericType"},{"id":281,"eClass":"EGenericType"},{"id":282,"eClass":"EGenericType"},{"id":283,"eClass":"EGenericType"},{"id":284,"eClass":"EGenericType"},{"id":285,"eClass":"EGenericType"},{"id":286,"eClass":"EGenericType"},{"id":287,"eClass":"EGenericType"},{"id":288,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":289,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"visibility","changeable":true,"lowerBound":0,"iD":false,"id":290,"derived":false},{"id":291,"eClass":"EGenericType"},{"id":292,"eClass":"EGenericType"},{"id":293,"eClass":"EGenericType"},{"id":294,"eClass":"EGenericType"},{"id":295,"eClass":"EGenericType"},{"id":296,"eClass":"EGenericType"},{"id":297,"eClass":"EGenericType"},{"id":298,"eClass":"EGenericType"},{"id":299,"eClass":"EGenericType"},{"id":300,"eClass":"EGenericType"},{"id":301,"eClass":"EGenericType"},{"id":302,"eClass":"EGenericType"},{"id":303,"eClass":"EGenericType"},{"id":304,"eClass":"EGenericType"},{"id":305,"eClass":"EGenericType"},{"id":306,"eClass":"EGenericType"},{"id":307,"eClass":"EGenericType"},{"id":308,"eClass":"EGenericType"},{"id":309,"eClass":"EGenericType"},{"id":310,"eClass":"EGenericType"},{"id":311,"eClass":"EGenericType"},{"id":312,"eClass":"EGenericType"},{"id":313,"eClass":"EGenericType"},{"id":314,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"qualifier","changeable":true,"resolveProxies":true,"lowerBound":1,"id":315,"derived":false},{"id":316,"eClass":"EGenericType"},{"id":317,"eClass":"EGenericType"},{"id":318,"eClass":"EGenericType"},{"id":319,"eClass":"EGenericType"},{"id":320,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"ownedBehavior","changeable":true,"resolveProxies":true,"lowerBound":0,"id":321,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"classifierBehavior","changeable":true,"resolveProxies":true,"lowerBound":0,"id":322,"derived":false},{"id":323,"eClass":"EGenericType"},{"id":324,"eClass":"EGenericType"},{"id":325,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"general","changeable":true,"resolveProxies":true,"lowerBound":1,"id":326,"derived":false},{"id":327,"eClass":"EGenericType"},{"id":328,"eClass":"EGenericType"},{"id":329,"eClass":"EGenericType"},{"id":330,"eClass":"EGenericType"},{"id":331,"eClass":"EGenericType"},{"id":332,"eClass":"EGenericType"},{"id":333,"eClass":"EGenericType"},{"id":334,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"context_","changeable":true,"resolveProxies":true,"lowerBound":0,"id":335,"derived":false},{"id":336,"eClass":"EGenericType"},{"id":337,"eClass":"EGenericType"},{"id":338,"eClass":"EGenericType"},{"id":339,"eClass":"EGenericType"},{"id":340,"eClass":"EGenericType"},{"id":341,"eClass":"EGenericType"},{"id":342,"eClass":"EGenericType"},{"id":343,"eClass":"EGenericType"},{"id":344,"eClass":"EGenericType"},{"id":345,"eClass":"EGenericType"},{"id":346,"eClass":"EGenericType"},{"id":347,"eClass":"EGenericType"},{"id":348,"eClass":"EGenericType"},{"id":349,"eClass":"EGenericType"},{"id":350,"eClass":"EGenericType"},{"id":351,"eClass":"EGenericType"},{"id":352,"eClass":"EGenericType"},{"id":353,"eClass":"EGenericType"},{"id":354,"eClass":"EGenericType"},{"id":355,"eClass":"EGenericType"},{"id":356,"eClass":"EGenericType"},{"id":357,"eClass":"EGenericType"},{"id":358,"eClass":"EGenericType"},{"id":359,"eClass":"EGenericType"},{"id":360,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isActive","changeable":true,"lowerBound":0,"iD":false,"id":361,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"nestedClassifier","changeable":true,"resolveProxies":true,"lowerBound":0,"id":362,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"ownedReception","changeable":true,"resolveProxies":true,"lowerBound":0,"id":363,"derived":false},{"id":364,"eClass":"EGenericType"},{"id":365,"eClass":"EGenericType"},{"id":366,"eClass":"EGenericType"},{"id":367,"eClass":"EGenericType"},{"id":368,"eClass":"EGenericType"},{"id":369,"eClass":"EGenericType"},{"id":370,"eClass":"EGenericType"},{"id":371,"eClass":"EGenericType"},{"id":372,"eClass":"EGenericType"},{"id":373,"eClass":"EGenericType"},{"id":374,"eClass":"EGenericType"},{"id":375,"eClass":"EGenericType"},{"id":376,"eClass":"EGenericType"},{"id":377,"eClass":"EGenericType"},{"id":378,"eClass":"EGenericType"},{"id":379,"eClass":"EGenericType"},{"id":380,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isQuery","changeable":true,"lowerBound":0,"iD":false,"id":381,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"ownedParameter","changeable":true,"resolveProxies":true,"lowerBound":0,"id":382,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"bodyCondition","changeable":true,"resolveProxies":true,"lowerBound":0,"id":383,"derived":false},{"id":384,"eClass":"EGenericType"},{"id":385,"eClass":"EGenericType"},{"id":386,"eClass":"EGenericType"},{"id":387,"eClass":"EGenericType"},{"id":388,"eClass":"EGenericType"},{"id":389,"eClass":"EGenericType"},{"id":390,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"ownedEnd","changeable":true,"resolveProxies":true,"lowerBound":0,"id":391,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"memberEnd","changeable":true,"resolveProxies":true,"lowerBound":2,"id":392,"derived":false},{"id":393,"eClass":"EGenericType"},{"id":394,"eClass":"EGenericType"},{"id":395,"eClass":"EGenericType"},{"id":396,"eClass":"EGenericType"},{"id":397,"eClass":"EGenericType"},{"id":398,"eClass":"EGenericType"},{"id":399,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"structuralFeature","changeable":true,"resolveProxies":true,"lowerBound":1,"id":400,"derived":false},{"id":401,"eClass":"EGenericType"},{"id":402,"eClass":"EGenericType"},{"id":403,"eClass":"EGenericType"},{"id":404,"eClass":"EGenericType"},{"id":405,"eClass":"EGenericType"},{"id":406,"eClass":"EGenericType"},{"id":407,"eClass":"EGenericType"},{"id":408,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"generalization","changeable":true,"resolveProxies":true,"lowerBound":0,"id":409,"derived":false},{"id":410,"eClass":"EGenericType"},{"id":411,"eClass":"EGenericType"},{"id":412,"eClass":"EGenericType"},{"id":413,"eClass":"EGenericType"},{"id":414,"eClass":"EGenericType"},{"id":415,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"constrainedElement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":416,"derived":false},{"id":417,"eClass":"EGenericType"},{"id":418,"eClass":"EGenericType"},{"id":419,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"definingFeature","changeable":true,"resolveProxies":true,"lowerBound":1,"id":420,"derived":false},{"id":421,"eClass":"EGenericType"},{"id":422,"eClass":"EGenericType"},{"id":423,"eClass":"EGenericType"},{"id":424,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isOrdered","changeable":true,"lowerBound":0,"iD":false,"id":425,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isUnique","changeable":true,"lowerBound":0,"iD":false,"id":426,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"lower","changeable":true,"lowerBound":0,"iD":false,"id":427,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"upper","changeable":true,"lowerBound":0,"iD":false,"id":428,"derived":false},{"id":429,"eClass":"EGenericType"},{"id":430,"eClass":"EGenericType"},{"id":431,"eClass":"EGenericType"},{"id":432,"eClass":"EGenericType"},{"id":433,"eClass":"EGenericType"},{"id":434,"eClass":"EGenericType"},{"id":435,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"resolveProxies":true,"lowerBound":0,"id":436,"derived":false},{"id":437,"eClass":"EGenericType"},{"id":438,"eClass":"EGenericType"},{"id":439,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isComposite","changeable":true,"lowerBound":0,"iD":false,"id":440,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isDerived","changeable":true,"lowerBound":0,"iD":false,"id":441,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isDerivedUnion","changeable":true,"lowerBound":0,"iD":false,"id":442,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"aggregation","changeable":true,"lowerBound":0,"iD":false,"id":443,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"subsettedProperty","changeable":true,"resolveProxies":true,"lowerBound":0,"id":444,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"association","changeable":true,"resolveProxies":true,"lowerBound":0,"id":445,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"qualifier","changeable":true,"resolveProxies":true,"lowerBound":0,"id":446,"derived":false},{"id":447,"eClass":"EGenericType"},{"id":448,"eClass":"EGenericType"},{"id":449,"eClass":"EGenericType"},{"id":450,"eClass":"EGenericType"},{"id":451,"eClass":"EGenericType"},{"id":452,"eClass":"EGenericType"},{"id":453,"eClass":"EGenericType"},{"id":454,"eClass":"EGenericType"},{"id":455,"eClass":"EGenericType"},{"id":456,"eClass":"EGenericType"},{"id":457,"eClass":"EGenericType"},{"id":458,"eClass":"EGenericType"},{"id":459,"eClass":"EGenericType"},{"id":460,"eClass":"EGenericType"},{"id":461,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"result","changeable":true,"resolveProxies":true,"lowerBound":1,"id":462,"derived":false},{"id":463,"eClass":"EGenericType"},{"id":464,"eClass":"EGenericType"},{"id":465,"eClass":"EGenericType"},{"id":466,"eClass":"EGenericType"},{"id":467,"eClass":"EGenericType"},{"id":468,"eClass":"EGenericType"},{"id":469,"eClass":"EGenericType"},{"id":470,"eClass":"EGenericType"},{"id":471,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"specification","changeable":true,"resolveProxies":true,"lowerBound":0,"id":472,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"ownedParameterSet","changeable":true,"resolveProxies":true,"lowerBound":0,"id":473,"derived":false},{"id":474,"eClass":"EGenericType"},{"id":475,"eClass":"EGenericType"},{"id":476,"eClass":"EGenericType"},{"id":477,"eClass":"EGenericType"},{"id":478,"eClass":"EGenericType"},{"id":479,"eClass":"EGenericType"},{"id":480,"eClass":"EGenericType"},{"id":481,"eClass":"EGenericType"},{"id":482,"eClass":"EGenericType"},{"id":483,"eClass":"EGenericType"},{"id":484,"eClass":"EGenericType"},{"id":485,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"target","changeable":true,"resolveProxies":true,"lowerBound":1,"id":486,"derived":false},{"id":487,"eClass":"EGenericType"},{"id":488,"eClass":"EGenericType"},{"id":489,"eClass":"EGenericType"},{"id":490,"eClass":"EGenericType"},{"id":491,"eClass":"EGenericType"},{"id":492,"eClass":"EGenericType"},{"id":493,"eClass":"EGenericType"},{"id":494,"eClass":"EGenericType"},{"id":495,"eClass":"EGenericType"},{"id":496,"eClass":"EGenericType"},{"id":497,"eClass":"EGenericType"},{"id":498,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"member","changeable":true,"resolveProxies":true,"lowerBound":0,"id":499,"derived":false},{"id":500,"eClass":"EGenericType"},{"id":501,"eClass":"EGenericType"},{"id":502,"eClass":"EGenericType"},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"bodies","changeable":true,"lowerBound":0,"iD":false,"id":503,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"language","changeable":true,"lowerBound":0,"iD":false,"id":504,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"behavior","changeable":true,"resolveProxies":true,"lowerBound":0,"id":505,"derived":false},{"id":506,"eClass":"EGenericType"},{"id":507,"eClass":"EGenericType"},{"id":508,"eClass":"EGenericType"},{"id":509,"eClass":"EGenericType"},{"id":510,"eClass":"EGenericType"},{"id":511,"eClass":"EGenericType"},{"id":512,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"resolveProxies":true,"lowerBound":1,"id":513,"derived":false},{"id":514,"eClass":"EGenericType"},{"id":515,"eClass":"EGenericType"},{"id":516,"eClass":"EGenericType"},{"id":517,"eClass":"EGenericType"},{"id":518,"eClass":"EGenericType"},{"id":519,"eClass":"EGenericType"},{"id":520,"eClass":"EGenericType"},{"id":521,"eClass":"EGenericType"},{"id":522,"eClass":"EGenericType"},{"id":523,"eClass":"EGenericType"},{"id":524,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"first","changeable":true,"resolveProxies":true,"lowerBound":1,"id":525,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"second","changeable":true,"resolveProxies":true,"lowerBound":1,"id":526,"derived":false},{"id":527,"eClass":"EGenericType"},{"id":528,"eClass":"EGenericType"},{"id":529,"eClass":"EGenericType"},{"id":530,"eClass":"EGenericType"},{"id":531,"eClass":"EGenericType"},{"id":532,"eClass":"EGenericType"},{"id":533,"eClass":"EGenericType"},{"id":534,"eClass":"EGenericType"},{"id":535,"eClass":"EGenericType"},{"id":536,"eClass":"EGenericType"},{"id":537,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isStatic","changeable":true,"lowerBound":0,"iD":false,"id":538,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"featuringClassifier","changeable":true,"resolveProxies":true,"lowerBound":0,"id":539,"derived":false},{"id":540,"eClass":"EGenericType"},{"id":541,"eClass":"EGenericType"},{"id":542,"eClass":"EGenericType"},{"id":543,"eClass":"EGenericType"},{"id":544,"eClass":"EGenericType"},{"id":545,"eClass":"EGenericType"},{"id":546,"eClass":"EGenericType"},{"id":547,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"visibility","changeable":true,"lowerBound":0,"iD":false,"id":548,"derived":false},{"id":549,"eClass":"EGenericType"},{"id":550,"eClass":"EGenericType"},{"id":551,"eClass":"EGenericType"},{"id":552,"eClass":"EGenericType"},{"id":553,"eClass":"EGenericType"},{"id":554,"eClass":"EGenericType"},{"id":555,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isReadOnly","changeable":true,"lowerBound":0,"iD":false,"id":556,"derived":false},{"id":557,"eClass":"EGenericType"},{"id":558,"eClass":"EGenericType"},{"id":559,"eClass":"EGenericType"},{"id":560,"eClass":"EGenericType"},{"id":561,"eClass":"EGenericType"},{"id":562,"eClass":"EGenericType"},{"id":563,"eClass":"EGenericType"},{"id":564,"eClass":"EGenericType"},{"id":565,"eClass":"EGenericType"},{"id":566,"eClass":"EGenericType"},{"id":567,"eClass":"EGenericType"},{"id":568,"eClass":"EGenericType"},{"id":569,"eClass":"EGenericType"},{"id":570,"eClass":"EGenericType"},{"id":571,"eClass":"EGenericType"},{"id":572,"eClass":"EGenericType"},{"id":573,"eClass":"EGenericType"},{"id":574,"eClass":"EGenericType"},{"id":575,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"resolveProxies":true,"lowerBound":0,"id":576,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"end","changeable":true,"resolveProxies":true,"lowerBound":1,"id":577,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"qualifier","changeable":true,"resolveProxies":true,"lowerBound":0,"id":578,"derived":false},{"id":579,"eClass":"EGenericType"},{"id":580,"eClass":"EGenericType"},{"id":581,"eClass":"EGenericType"},{"id":582,"eClass":"EGenericType"},{"id":583,"eClass":"EGenericType"},{"id":584,"eClass":"EGenericType"},{"id":585,"eClass":"EGenericType"},{"id":586,"eClass":"EGenericType"},{"id":587,"eClass":"EGenericType"},{"id":588,"eClass":"EGenericType"},{"id":589,"eClass":"EGenericType"},{"id":590,"eClass":"EGenericType"},{"id":591,"eClass":"EGenericType"},{"id":592,"eClass":"EGenericType"},{"id":593,"eClass":"EGenericType"},{"id":594,"eClass":"EGenericType"},{"id":595,"eClass":"EGenericType"},{"id":596,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isAbstract","changeable":true,"lowerBound":0,"iD":false,"id":597,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"feature","changeable":true,"resolveProxies":true,"lowerBound":0,"id":598,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"inheritedMember","changeable":true,"resolveProxies":true,"lowerBound":0,"id":599,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"generalization","changeable":true,"resolveProxies":true,"lowerBound":0,"id":600,"derived":false},{"id":601,"eClass":"EGenericType"},{"id":602,"eClass":"EGenericType"},{"id":603,"eClass":"EGenericType"},{"id":604,"eClass":"EGenericType"},{"id":605,"eClass":"EGenericType"},{"id":606,"eClass":"EGenericType"},{"id":607,"eClass":"EGenericType"},{"id":608,"eClass":"EGenericType"},{"id":609,"eClass":"EGenericType"},{"id":610,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"direction","changeable":true,"lowerBound":0,"iD":false,"id":611,"derived":false},{"id":612,"eClass":"EGenericType"},{"id":613,"eClass":"EGenericType"},{"id":614,"eClass":"EGenericType"},{"id":615,"eClass":"EGenericType"},{"id":616,"eClass":"EGenericType"},{"id":617,"eClass":"EGenericType"},{"id":618,"eClass":"EGenericType"},{"id":619,"eClass":"EGenericType"},{"id":620,"eClass":"EGenericType"},{"id":621,"eClass":"EGenericType"},{"id":622,"eClass":"EGenericType"},{"id":623,"eClass":"EGenericType"},{"id":624,"eClass":"EGenericType"},{"id":625,"eClass":"EGenericType"},{"id":626,"eClass":"EGenericType"},{"id":627,"eClass":"EGenericType"},{"id":628,"eClass":"EGenericType"},{"id":629,"eClass":"EGenericType"},{"id":630,"eClass":"EGenericType"},{"id":631,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":0,"target":8},{"source":0,"target":9},{"source":0,"target":10},{"source":0,"target":11},{"source":0,"target":12},{"source":0,"target":13},{"source":0,"target":14},{"source":0,"target":15},{"source":0,"target":16},{"source":0,"target":17},{"source":0,"target":18},{"source":0,"target":19},{"source":0,"target":20},{"source":0,"target":21},{"source":0,"target":22},{"source":0,"target":23},{"source":0,"target":24},{"source":0,"target":25},{"source":0,"target":26},{"source":0,"target":27},{"source":0,"target":28},{"source":0,"target":29},{"source":0,"target":30},{"source":0,"target":31},{"source":0,"target":32},{"source":0,"target":33},{"source":0,"target":34},{"source":0,"target":35},{"source":0,"target":36},{"source":0,"target":37},{"source":0,"target":38},{"source":0,"target":39},{"source":0,"target":40},{"source":0,"target":41},{"source":0,"target":42},{"source":0,"target":43},{"source":0,"target":44},{"source":0,"target":45},{"source":0,"target":46},{"source":0,"target":47},{"source":0,"target":48},{"source":0,"target":49},{"source":0,"target":50},{"source":0,"target":51},{"source":0,"target":52},{"source":0,"target":53},{"source":0,"target":54},{"source":0,"target":55},{"source":0,"target":56},{"source":0,"target":57},{"source":0,"target":58},{"source":0,"target":59},{"source":0,"target":60},{"source":0,"target":61},{"source":0,"target":62},{"source":0,"target":63},{"source":0,"target":64},{"source":0,"target":65},{"source":0,"target":66},{"source":0,"target":67},{"source":0,"target":68},{"source":0,"target":69},{"source":0,"target":70},{"source":0,"target":71},{"source":0,"target":72},{"source":0,"target":73},{"source":0,"target":74},{"source":0,"target":75},{"source":0,"target":76},{"source":0,"target":77},{"source":0,"target":78},{"source":0,"target":79},{"source":0,"target":80},{"source":0,"target":81},{"source":0,"target":82},{"source":0,"target":83},{"source":0,"target":84},{"source":0,"target":85},{"source":0,"target":86},{"source":0,"target":87},{"source":0,"target":88},{"source":0,"target":89},{"source":0,"target":90},{"source":0,"target":91},{"source":0,"target":92},{"source":0,"target":93},{"source":0,"target":94},{"source":0,"target":95},{"source":0,"target":96},{"source":0,"target":97},{"source":0,"target":98},{"source":0,"target":99},{"source":0,"target":100},{"source":0,"target":101},{"source":0,"target":102},{"source":0,"target":103},{"source":0,"target":104},{"source":0,"target":105},{"source":0,"target":106},{"source":0,"target":107},{"source":0,"target":108},{"source":0,"target":109},{"source":0,"target":110},{"source":0,"target":111},{"source":0,"target":112},{"source":0,"target":113},{"source":0,"target":114},{"source":0,"target":115},{"source":0,"target":116},{"source":0,"target":117},{"source":0,"target":118},{"source":0,"target":119},{"source":0,"target":120},{"source":0,"target":121},{"source":0,"target":122},{"source":0,"target":123},{"source":0,"target":124},{"source":0,"target":125},{"source":0,"target":126},{"source":0,"target":127},{"source":0,"target":128},{"source":0,"target":129},{"source":0,"target":130},{"source":0,"target":131},{"source":0,"target":132},{"source":0,"target":133},{"source":0,"target":134},{"source":0,"target":135},{"source":0,"target":136},{"source":0,"target":137},{"source":0,"target":138},{"source":0,"target":139},{"source":0,"target":140},{"source":0,"target":141},{"source":0,"target":142},{"source":0,"target":143},{"source":0,"target":144},{"source":0,"target":145},{"source":0,"target":146},{"source":0,"target":147},{"source":0,"target":148},{"source":0,"target":149},{"source":0,"target":150},{"source":0,"target":151},{"source":0,"target":152},{"source":0,"target":153},{"source":0,"target":154},{"source":0,"target":155},{"source":0,"target":156},{"source":0,"target":157},{"source":0,"target":158},{"source":0,"target":159},{"source":0,"target":160},{"source":0,"target":161},{"source":0,"target":162},{"source":0,"target":163},{"source":0,"target":164},{"source":0,"target":165},{"source":0,"target":166},{"source":0,"target":167},{"source":0,"target":168},{"source":0,"target":169},{"source":0,"target":170},{"source":0,"target":171},{"source":0,"target":172},{"source":0,"target":173},{"source":0,"target":174},{"source":0,"target":175},{"source":0,"target":176},{"source":0,"target":177},{"source":0,"target":178},{"source":0,"target":179},{"source":0,"target":180},{"source":0,"target":181},{"source":0,"target":182},{"source":0,"target":183},{"source":0,"target":184},{"source":0,"target":185},{"source":0,"target":186},{"source":0,"target":187},{"source":0,"target":188},{"source":0,"target":189},{"source":0,"target":190},{"source":0,"target":191},{"source":0,"target":192},{"source":0,"target":193},{"source":0,"target":194},{"source":0,"target":195},{"source":0,"target":196},{"source":0,"target":197},{"source":0,"target":198},{"source":0,"target":199},{"source":0,"target":200},{"source":0,"target":201},{"source":0,"target":202},{"source":0,"target":203},{"source":0,"target":204},{"source":0,"target":205},{"source":0,"target":206},{"source":0,"target":207},{"source":0,"target":208},{"source":0,"target":209},{"source":0,"target":210},{"source":0,"target":211},{"source":0,"target":212},{"source":0,"target":213},{"source":0,"target":214},{"source":0,"target":215},{"source":0,"target":216},{"source":0,"target":217},{"source":0,"target":218},{"source":0,"target":219},{"source":0,"target":220},{"source":0,"target":221},{"source":0,"target":222},{"source":0,"target":223},{"source":0,"target":224},{"source":0,"target":225},{"source":0,"target":226},{"source":0,"target":227},{"source":0,"target":228},{"source":0,"target":229},{"source":0,"target":230},{"source":1,"target":0},{"source":1,"target":231},{"source":1,"target":232},{"source":1,"target":233},{"source":1,"target":234},{"source":231,"target":1},{"source":232,"target":1},{"source":233,"target":1},{"source":234,"target":1},{"source":2,"target":0},{"source":2,"target":235},{"source":2,"target":236},{"source":2,"target":237},{"source":2,"target":238},{"source":235,"target":2},{"source":236,"target":2},{"source":237,"target":2},{"source":238,"target":2},{"source":3,"target":0},{"source":3,"target":239},{"source":3,"target":240},{"source":3,"target":241},{"source":239,"target":3},{"source":240,"target":3},{"source":241,"target":3},{"source":4,"target":0},{"source":4,"target":62},{"source":4,"target":242},{"source":242,"target":62},{"source":5,"target":0},{"source":5,"target":49},{"source":5,"target":243},{"source":243,"target":49},{"source":6,"target":0},{"source":6,"target":244},{"source":244,"target":6},{"source":244,"target":245},{"source":244,"target":6},{"source":245,"target":6},{"source":7,"target":0},{"source":7,"target":221},{"source":7,"target":246},{"source":246,"target":221},{"source":8,"target":0},{"source":8,"target":130},{"source":8,"target":150},{"source":8,"target":247},{"source":8,"target":248},{"source":247,"target":130},{"source":248,"target":150},{"source":9,"target":0},{"source":9,"target":111},{"source":9,"target":249},{"source":249,"target":111},{"source":10,"target":0},{"source":10,"target":95},{"source":10,"target":250},{"source":250,"target":95},{"source":11,"target":0},{"source":11,"target":159},{"source":11,"target":251},{"source":251,"target":159},{"source":12,"target":0},{"source":12,"target":82},{"source":12,"target":252},{"source":252,"target":82},{"source":13,"target":0},{"source":13,"target":62},{"source":13,"target":253},{"source":253,"target":62},{"source":14,"target":0},{"source":14,"target":219},{"source":14,"target":254},{"source":254,"target":219},{"source":15,"target":0},{"source":15,"target":117},{"source":15,"target":255},{"source":255,"target":117},{"source":16,"target":0},{"source":16,"target":62},{"source":16,"target":256},{"source":16,"target":257},{"source":16,"target":258},{"source":256,"target":211},{"source":256,"target":259},{"source":256,"target":16},{"source":259,"target":211},{"source":257,"target":227},{"source":257,"target":260},{"source":257,"target":16},{"source":260,"target":227},{"source":258,"target":62},{"source":17,"target":0},{"source":17,"target":62},{"source":17,"target":149},{"source":17,"target":141},{"source":17,"target":261},{"source":17,"target":262},{"source":17,"target":263},{"source":261,"target":62},{"source":262,"target":149},{"source":263,"target":141},{"source":18,"target":0},{"source":18,"target":159},{"source":18,"target":264},{"source":264,"target":159},{"source":19,"target":0},{"source":19,"target":126},{"source":19,"target":265},{"source":265,"target":126},{"source":20,"target":0},{"source":20,"target":221},{"source":20,"target":266},{"source":266,"target":221},{"source":21,"target":0},{"source":21,"target":10},{"source":21,"target":267},{"source":21,"target":268},{"source":21,"target":269},{"source":267,"target":1},{"source":267,"target":270},{"source":267,"target":21},{"source":270,"target":1},{"source":268,"target":195},{"source":268,"target":271},{"source":268,"target":21},{"source":271,"target":195},{"source":269,"target":10},{"source":22,"target":0},{"source":22,"target":219},{"source":22,"target":272},{"source":272,"target":219},{"source":23,"target":0},{"source":23,"target":108},{"source":23,"target":273},{"source":273,"target":108},{"source":24,"target":0},{"source":24,"target":94},{"source":24,"target":274},{"source":274,"target":94},{"source":25,"target":0},{"source":25,"target":10},{"source":25,"target":275},{"source":275,"target":10},{"source":26,"target":0},{"source":26,"target":195},{"source":26,"target":101},{"source":26,"target":48},{"source":26,"target":276},{"source":26,"target":277},{"source":26,"target":278},{"source":26,"target":279},{"source":26,"target":280},{"source":276,"target":110},{"source":276,"target":281},{"source":276,"target":26},{"source":281,"target":110},{"source":277,"target":211},{"source":277,"target":282},{"source":277,"target":26},{"source":282,"target":211},{"source":278,"target":195},{"source":279,"target":101},{"source":280,"target":48},{"source":27,"target":0},{"source":27,"target":62},{"source":27,"target":283},{"source":283,"target":62},{"source":28,"target":0},{"source":28,"target":62},{"source":28,"target":284},{"source":284,"target":62},{"source":29,"target":0},{"source":29,"target":200},{"source":29,"target":285},{"source":285,"target":200},{"source":30,"target":0},{"source":30,"target":211},{"source":30,"target":286},{"source":286,"target":211},{"source":31,"target":0},{"source":31,"target":86},{"source":31,"target":287},{"source":287,"target":86},{"source":32,"target":0},{"source":32,"target":6},{"source":32,"target":288},{"source":288,"target":6},{"source":33,"target":0},{"source":33,"target":128},{"source":33,"target":289},{"source":33,"target":290},{"source":33,"target":291},{"source":289,"target":292},{"source":289,"target":33},{"source":290,"target":1},{"source":290,"target":293},{"source":290,"target":33},{"source":293,"target":1},{"source":291,"target":128},{"source":34,"target":0},{"source":34,"target":17},{"source":34,"target":294},{"source":294,"target":17},{"source":35,"target":0},{"source":35,"target":172},{"source":35,"target":295},{"source":295,"target":172},{"source":36,"target":0},{"source":36,"target":211},{"source":36,"target":48},{"source":36,"target":296},{"source":36,"target":297},{"source":296,"target":211},{"source":297,"target":48},{"source":37,"target":0},{"source":37,"target":178},{"source":37,"target":298},{"source":298,"target":178},{"source":38,"target":0},{"source":38,"target":62},{"source":38,"target":299},{"source":299,"target":62},{"source":39,"target":0},{"source":39,"target":197},{"source":39,"target":300},{"source":300,"target":197},{"source":40,"target":0},{"source":40,"target":33},{"source":40,"target":10},{"source":40,"target":301},{"source":40,"target":302},{"source":301,"target":33},{"source":302,"target":10},{"source":41,"target":0},{"source":41,"target":141},{"source":41,"target":303},{"source":303,"target":141},{"source":42,"target":0},{"source":42,"target":33},{"source":42,"target":304},{"source":304,"target":33},{"source":43,"target":0},{"source":43,"target":150},{"source":43,"target":305},{"source":305,"target":150},{"source":44,"target":0},{"source":44,"target":130},{"source":44,"target":306},{"source":306,"target":130},{"source":45,"target":0},{"source":45,"target":116},{"source":45,"target":307},{"source":307,"target":116},{"source":46,"target":0},{"source":46,"target":10},{"source":46,"target":308},{"source":308,"target":10},{"source":47,"target":0},{"source":47,"target":62},{"source":47,"target":309},{"source":309,"target":62},{"source":48,"target":0},{"source":48,"target":33},{"source":48,"target":310},{"source":310,"target":33},{"source":49,"target":0},{"source":49,"target":62},{"source":49,"target":311},{"source":311,"target":62},{"source":50,"target":0},{"source":50,"target":65},{"source":50,"target":312},{"source":312,"target":65},{"source":51,"target":0},{"source":51,"target":212},{"source":51,"target":313},{"source":313,"target":212},{"source":52,"target":0},{"source":52,"target":111},{"source":52,"target":314},{"source":314,"target":111},{"source":53,"target":0},{"source":53,"target":6},{"source":53,"target":315},{"source":53,"target":316},{"source":315,"target":117},{"source":315,"target":317},{"source":315,"target":53},{"source":317,"target":117},{"source":316,"target":6},{"source":54,"target":0},{"source":54,"target":212},{"source":54,"target":318},{"source":318,"target":212},{"source":55,"target":0},{"source":55,"target":62},{"source":55,"target":319},{"source":319,"target":62},{"source":56,"target":0},{"source":56,"target":179},{"source":56,"target":320},{"source":320,"target":179},{"source":57,"target":0},{"source":57,"target":211},{"source":57,"target":321},{"source":57,"target":322},{"source":57,"target":323},{"source":321,"target":130},{"source":321,"target":324},{"source":321,"target":57},{"source":324,"target":130},{"source":322,"target":130},{"source":322,"target":325},{"source":322,"target":57},{"source":325,"target":130},{"source":323,"target":211},{"source":58,"target":0},{"source":58,"target":10},{"source":58,"target":326},{"source":58,"target":327},{"source":326,"target":211},{"source":326,"target":328},{"source":326,"target":58},{"source":328,"target":211},{"source":327,"target":10},{"source":59,"target":0},{"source":59,"target":200},{"source":59,"target":329},{"source":329,"target":200},{"source":60,"target":0},{"source":60,"target":18},{"source":60,"target":115},{"source":60,"target":330},{"source":60,"target":331},{"source":330,"target":18},{"source":331,"target":115},{"source":61,"target":0},{"source":61,"target":132},{"source":61,"target":115},{"source":61,"target":112},{"source":61,"target":332},{"source":61,"target":333},{"source":61,"target":334},{"source":332,"target":132},{"source":333,"target":115},{"source":334,"target":112},{"source":62,"target":0},{"source":62,"target":83},{"source":62,"target":335},{"source":62,"target":336},{"source":335,"target":211},{"source":335,"target":337},{"source":335,"target":62},{"source":337,"target":211},{"source":336,"target":83},{"source":63,"target":0},{"source":63,"target":130},{"source":63,"target":338},{"source":338,"target":130},{"source":64,"target":0},{"source":64,"target":224},{"source":64,"target":339},{"source":339,"target":224},{"source":65,"target":0},{"source":65,"target":60},{"source":65,"target":340},{"source":340,"target":60},{"source":66,"target":0},{"source":66,"target":219},{"source":66,"target":341},{"source":341,"target":219},{"source":67,"target":0},{"source":67,"target":211},{"source":67,"target":342},{"source":342,"target":211},{"source":68,"target":0},{"source":68,"target":82},{"source":68,"target":101},{"source":68,"target":343},{"source":68,"target":344},{"source":343,"target":82},{"source":344,"target":101},{"source":69,"target":0},{"source":69,"target":76},{"source":69,"target":345},{"source":345,"target":76},{"source":70,"target":0},{"source":70,"target":159},{"source":70,"target":346},{"source":346,"target":159},{"source":71,"target":0},{"source":71,"target":134},{"source":71,"target":347},{"source":347,"target":134},{"source":72,"target":0},{"source":72,"target":150},{"source":72,"target":348},{"source":348,"target":150},{"source":73,"target":0},{"source":73,"target":159},{"source":73,"target":193},{"source":73,"target":349},{"source":73,"target":350},{"source":349,"target":159},{"source":350,"target":193},{"source":74,"target":0},{"source":74,"target":33},{"source":74,"target":351},{"source":351,"target":33},{"source":75,"target":0},{"source":75,"target":150},{"source":75,"target":42},{"source":75,"target":352},{"source":75,"target":353},{"source":352,"target":150},{"source":353,"target":42},{"source":76,"target":0},{"source":76,"target":211},{"source":76,"target":354},{"source":354,"target":211},{"source":77,"target":0},{"source":77,"target":94},{"source":77,"target":355},{"source":355,"target":94},{"source":78,"target":0},{"source":78,"target":82},{"source":78,"target":356},{"source":356,"target":82},{"source":79,"target":0},{"source":79,"target":165},{"source":79,"target":357},{"source":357,"target":165},{"source":80,"target":0},{"source":80,"target":33},{"source":80,"target":10},{"source":80,"target":358},{"source":80,"target":359},{"source":358,"target":33},{"source":359,"target":10},{"source":81,"target":0},{"source":81,"target":229},{"source":81,"target":360},{"source":360,"target":229},{"source":82,"target":0},{"source":82,"target":57},{"source":82,"target":191},{"source":82,"target":361},{"source":82,"target":362},{"source":82,"target":363},{"source":82,"target":364},{"source":82,"target":365},{"source":361,"target":366},{"source":361,"target":82},{"source":362,"target":211},{"source":362,"target":367},{"source":362,"target":82},{"source":367,"target":211},{"source":363,"target":207},{"source":363,"target":368},{"source":363,"target":82},{"source":368,"target":207},{"source":364,"target":57},{"source":365,"target":191},{"source":83,"target":0},{"source":83,"target":18},{"source":83,"target":369},{"source":369,"target":18},{"source":84,"target":0},{"source":84,"target":134},{"source":84,"target":370},{"source":370,"target":134},{"source":85,"target":0},{"source":85,"target":128},{"source":85,"target":371},{"source":371,"target":128},{"source":86,"target":0},{"source":86,"target":89},{"source":86,"target":372},{"source":372,"target":89},{"source":87,"target":0},{"source":87,"target":149},{"source":87,"target":159},{"source":87,"target":167},{"source":87,"target":373},{"source":87,"target":374},{"source":87,"target":375},{"source":373,"target":149},{"source":374,"target":159},{"source":375,"target":167},{"source":88,"target":0},{"source":88,"target":128},{"source":88,"target":376},{"source":376,"target":128},{"source":89,"target":0},{"source":89,"target":33},{"source":89,"target":377},{"source":377,"target":33},{"source":90,"target":0},{"source":90,"target":45},{"source":90,"target":378},{"source":378,"target":45},{"source":91,"target":0},{"source":91,"target":62},{"source":91,"target":379},{"source":379,"target":62},{"source":92,"target":0},{"source":92,"target":98},{"source":92,"target":380},{"source":380,"target":98},{"source":93,"target":0},{"source":93,"target":170},{"source":93,"target":115},{"source":93,"target":112},{"source":93,"target":131},{"source":93,"target":381},{"source":93,"target":382},{"source":93,"target":383},{"source":93,"target":384},{"source":93,"target":385},{"source":93,"target":386},{"source":93,"target":387},{"source":381,"target":388},{"source":381,"target":93},{"source":382,"target":215},{"source":382,"target":389},{"source":382,"target":93},{"source":389,"target":215},{"source":383,"target":108},{"source":383,"target":390},{"source":383,"target":93},{"source":390,"target":108},{"source":384,"target":170},{"source":385,"target":115},{"source":386,"target":112},{"source":387,"target":131},{"source":94,"target":0},{"source":94,"target":211},{"source":94,"target":95},{"source":94,"target":391},{"source":94,"target":392},{"source":94,"target":393},{"source":94,"target":394},{"source":391,"target":117},{"source":391,"target":395},{"source":391,"target":94},{"source":395,"target":117},{"source":392,"target":117},{"source":392,"target":396},{"source":392,"target":94},{"source":396,"target":117},{"source":393,"target":211},{"source":394,"target":95},{"source":95,"target":0},{"source":95,"target":6},{"source":95,"target":397},{"source":397,"target":6},{"source":96,"target":0},{"source":96,"target":42},{"source":96,"target":398},{"source":398,"target":42},{"source":97,"target":0},{"source":97,"target":167},{"source":97,"target":399},{"source":399,"target":167},{"source":98,"target":0},{"source":98,"target":62},{"source":98,"target":400},{"source":98,"target":401},{"source":400,"target":183},{"source":400,"target":402},{"source":400,"target":98},{"source":402,"target":183},{"source":401,"target":62},{"source":99,"target":0},{"source":99,"target":150},{"source":99,"target":403},{"source":403,"target":150},{"source":100,"target":0},{"source":100,"target":151},{"source":100,"target":404},{"source":404,"target":151},{"source":101,"target":0},{"source":101,"target":33},{"source":101,"target":405},{"source":405,"target":33},{"source":102,"target":0},{"source":102,"target":149},{"source":102,"target":195},{"source":102,"target":406},{"source":102,"target":407},{"source":406,"target":149},{"source":407,"target":195},{"source":103,"target":0},{"source":103,"target":102},{"source":103,"target":408},{"source":408,"target":102},{"source":104,"target":0},{"source":104,"target":195},{"source":104,"target":409},{"source":104,"target":410},{"source":409,"target":58},{"source":409,"target":411},{"source":409,"target":104},{"source":411,"target":58},{"source":410,"target":195},{"source":105,"target":0},{"source":105,"target":60},{"source":105,"target":412},{"source":412,"target":60},{"source":106,"target":0},{"source":106,"target":219},{"source":106,"target":413},{"source":413,"target":219},{"source":107,"target":0},{"source":107,"target":60},{"source":107,"target":112},{"source":107,"target":414},{"source":107,"target":415},{"source":414,"target":60},{"source":415,"target":112},{"source":108,"target":0},{"source":108,"target":195},{"source":108,"target":416},{"source":108,"target":417},{"source":416,"target":6},{"source":416,"target":418},{"source":416,"target":108},{"source":418,"target":6},{"source":417,"target":195},{"source":109,"target":0},{"source":109,"target":75},{"source":109,"target":419},{"source":419,"target":75},{"source":110,"target":0},{"source":110,"target":6},{"source":110,"target":420},{"source":110,"target":421},{"source":420,"target":183},{"source":420,"target":422},{"source":420,"target":110},{"source":422,"target":183},{"source":421,"target":6},{"source":111,"target":0},{"source":111,"target":115},{"source":111,"target":131},{"source":111,"target":423},{"source":111,"target":424},{"source":423,"target":115},{"source":424,"target":131},{"source":112,"target":0},{"source":112,"target":6},{"source":112,"target":425},{"source":112,"target":426},{"source":112,"target":427},{"source":112,"target":428},{"source":112,"target":429},{"source":425,"target":430},{"source":425,"target":112},{"source":426,"target":431},{"source":426,"target":112},{"source":427,"target":432},{"source":427,"target":112},{"source":428,"target":433},{"source":428,"target":112},{"source":429,"target":6},{"source":113,"target":0},{"source":113,"target":155},{"source":113,"target":434},{"source":434,"target":155},{"source":114,"target":0},{"source":114,"target":158},{"source":114,"target":435},{"source":435,"target":158},{"source":115,"target":0},{"source":115,"target":33},{"source":115,"target":436},{"source":115,"target":437},{"source":436,"target":169},{"source":436,"target":438},{"source":436,"target":115},{"source":438,"target":169},{"source":437,"target":33},{"source":116,"target":0},{"source":116,"target":229},{"source":116,"target":439},{"source":439,"target":229},{"source":117,"target":0},{"source":117,"target":183},{"source":117,"target":132},{"source":117,"target":101},{"source":117,"target":440},{"source":117,"target":441},{"source":117,"target":442},{"source":117,"target":443},{"source":117,"target":444},{"source":117,"target":445},{"source":117,"target":446},{"source":117,"target":447},{"source":117,"target":448},{"source":117,"target":449},{"source":440,"target":450},{"source":440,"target":117},{"source":441,"target":451},{"source":441,"target":117},{"source":442,"target":452},{"source":442,"target":117},{"source":443,"target":3},{"source":443,"target":453},{"source":443,"target":117},{"source":453,"target":3},{"source":444,"target":117},{"source":444,"target":454},{"source":444,"target":117},{"source":454,"target":117},{"source":445,"target":94},{"source":445,"target":455},{"source":445,"target":117},{"source":455,"target":94},{"source":446,"target":117},{"source":446,"target":456},{"source":446,"target":117},{"source":456,"target":117},{"source":447,"target":183},{"source":448,"target":132},{"source":449,"target":101},{"source":118,"target":0},{"source":118,"target":112},{"source":118,"target":457},{"source":457,"target":112},{"source":119,"target":0},{"source":119,"target":102},{"source":119,"target":458},{"source":458,"target":102},{"source":120,"target":0},{"source":120,"target":224},{"source":120,"target":459},{"source":459,"target":224},{"source":121,"target":0},{"source":121,"target":86},{"source":121,"target":460},{"source":460,"target":86},{"source":122,"target":0},{"source":122,"target":158},{"source":122,"target":461},{"source":461,"target":158},{"source":123,"target":0},{"source":123,"target":62},{"source":123,"target":462},{"source":123,"target":463},{"source":462,"target":227},{"source":462,"target":464},{"source":462,"target":123},{"source":464,"target":227},{"source":463,"target":62},{"source":124,"target":0},{"source":124,"target":10},{"source":124,"target":465},{"source":465,"target":10},{"source":125,"target":0},{"source":125,"target":211},{"source":125,"target":466},{"source":466,"target":211},{"source":126,"target":0},{"source":126,"target":108},{"source":126,"target":467},{"source":467,"target":108},{"source":127,"target":0},{"source":127,"target":82},{"source":127,"target":94},{"source":127,"target":468},{"source":127,"target":469},{"source":468,"target":82},{"source":469,"target":94},{"source":128,"target":0},{"source":128,"target":6},{"source":128,"target":470},{"source":470,"target":6},{"source":129,"target":0},{"source":129,"target":155},{"source":129,"target":471},{"source":471,"target":155},{"source":130,"target":0},{"source":130,"target":82},{"source":130,"target":472},{"source":130,"target":473},{"source":130,"target":474},{"source":472,"target":170},{"source":472,"target":475},{"source":472,"target":130},{"source":475,"target":170},{"source":473,"target":160},{"source":473,"target":476},{"source":473,"target":130},{"source":476,"target":160},{"source":474,"target":82},{"source":131,"target":0},{"source":131,"target":6},{"source":131,"target":477},{"source":477,"target":6},{"source":132,"target":0},{"source":132,"target":33},{"source":132,"target":131},{"source":132,"target":478},{"source":132,"target":479},{"source":478,"target":33},{"source":479,"target":131},{"source":133,"target":0},{"source":133,"target":86},{"source":133,"target":480},{"source":480,"target":86},{"source":134,"target":0},{"source":134,"target":158},{"source":134,"target":481},{"source":481,"target":158},{"source":135,"target":0},{"source":135,"target":159},{"source":135,"target":482},{"source":482,"target":159},{"source":136,"target":0},{"source":136,"target":111},{"source":136,"target":483},{"source":483,"target":111},{"source":137,"target":0},{"source":137,"target":217},{"source":137,"target":484},{"source":484,"target":217},{"source":138,"target":0},{"source":138,"target":29},{"source":138,"target":485},{"source":485,"target":29},{"source":139,"target":0},{"source":139,"target":62},{"source":139,"target":486},{"source":139,"target":487},{"source":486,"target":165},{"source":486,"target":488},{"source":486,"target":139},{"source":488,"target":165},{"source":487,"target":62},{"source":140,"target":0},{"source":140,"target":179},{"source":140,"target":489},{"source":489,"target":179},{"source":141,"target":0},{"source":141,"target":6},{"source":141,"target":490},{"source":490,"target":6},{"source":142,"target":0},{"source":142,"target":195},{"source":142,"target":10},{"source":142,"target":491},{"source":142,"target":492},{"source":491,"target":195},{"source":492,"target":10},{"source":143,"target":0},{"source":143,"target":17},{"source":143,"target":493},{"source":493,"target":17},{"source":144,"target":0},{"source":144,"target":211},{"source":144,"target":494},{"source":494,"target":211},{"source":145,"target":0},{"source":145,"target":89},{"source":145,"target":495},{"source":495,"target":89},{"source":146,"target":0},{"source":146,"target":89},{"source":146,"target":496},{"source":496,"target":89},{"source":147,"target":0},{"source":147,"target":211},{"source":147,"target":497},{"source":497,"target":211},{"source":148,"target":0},{"source":148,"target":158},{"source":148,"target":498},{"source":498,"target":158},{"source":149,"target":0},{"source":149,"target":33},{"source":149,"target":499},{"source":149,"target":500},{"source":499,"target":33},{"source":499,"target":501},{"source":499,"target":149},{"source":501,"target":33},{"source":500,"target":33},{"source":150,"target":0},{"source":150,"target":33},{"source":150,"target":502},{"source":502,"target":33},{"source":151,"target":0},{"source":151,"target":111},{"source":151,"target":503},{"source":151,"target":504},{"source":151,"target":505},{"source":151,"target":506},{"source":503,"target":507},{"source":503,"target":151},{"source":504,"target":508},{"source":504,"target":151},{"source":505,"target":130},{"source":505,"target":509},{"source":505,"target":151},{"source":509,"target":130},{"source":506,"target":111},{"source":152,"target":0},{"source":152,"target":217},{"source":152,"target":510},{"source":510,"target":217},{"source":153,"target":0},{"source":153,"target":76},{"source":153,"target":511},{"source":511,"target":76},{"source":154,"target":0},{"source":154,"target":44},{"source":154,"target":512},{"source":512,"target":44},{"source":155,"target":0},{"source":155,"target":98},{"source":155,"target":513},{"source":155,"target":514},{"source":513,"target":165},{"source":513,"target":515},{"source":513,"target":155},{"source":515,"target":165},{"source":514,"target":98},{"source":156,"target":0},{"source":156,"target":98},{"source":156,"target":516},{"source":516,"target":98},{"source":157,"target":0},{"source":157,"target":149},{"source":157,"target":159},{"source":157,"target":517},{"source":157,"target":518},{"source":517,"target":149},{"source":518,"target":159},{"source":158,"target":0},{"source":158,"target":18},{"source":158,"target":519},{"source":519,"target":18},{"source":159,"target":0},{"source":159,"target":33},{"source":159,"target":520},{"source":520,"target":33},{"source":160,"target":0},{"source":160,"target":33},{"source":160,"target":521},{"source":521,"target":33},{"source":161,"target":0},{"source":161,"target":219},{"source":161,"target":522},{"source":522,"target":219},{"source":162,"target":0},{"source":162,"target":36},{"source":162,"target":523},{"source":523,"target":36},{"source":163,"target":0},{"source":163,"target":200},{"source":163,"target":524},{"source":524,"target":200},{"source":164,"target":0},{"source":164,"target":62},{"source":164,"target":525},{"source":164,"target":526},{"source":164,"target":527},{"source":525,"target":165},{"source":525,"target":528},{"source":525,"target":164},{"source":528,"target":165},{"source":526,"target":165},{"source":526,"target":529},{"source":526,"target":164},{"source":529,"target":165},{"source":527,"target":62},{"source":165,"target":0},{"source":165,"target":107},{"source":165,"target":530},{"source":530,"target":107},{"source":166,"target":0},{"source":166,"target":135},{"source":166,"target":531},{"source":531,"target":135},{"source":167,"target":0},{"source":167,"target":33},{"source":167,"target":532},{"source":532,"target":33},{"source":168,"target":0},{"source":168,"target":221},{"source":168,"target":533},{"source":533,"target":221},{"source":169,"target":0},{"source":169,"target":195},{"source":169,"target":534},{"source":534,"target":195},{"source":170,"target":0},{"source":170,"target":149},{"source":170,"target":172},{"source":170,"target":535},{"source":170,"target":536},{"source":535,"target":149},{"source":536,"target":172},{"source":171,"target":0},{"source":171,"target":68},{"source":171,"target":537},{"source":537,"target":68},{"source":172,"target":0},{"source":172,"target":159},{"source":172,"target":538},{"source":172,"target":539},{"source":172,"target":540},{"source":538,"target":541},{"source":538,"target":172},{"source":539,"target":211},{"source":539,"target":542},{"source":539,"target":172},{"source":542,"target":211},{"source":540,"target":159},{"source":173,"target":0},{"source":173,"target":217},{"source":173,"target":543},{"source":543,"target":217},{"source":174,"target":0},{"source":174,"target":155},{"source":174,"target":544},{"source":544,"target":155},{"source":175,"target":0},{"source":175,"target":120},{"source":175,"target":545},{"source":545,"target":120},{"source":176,"target":0},{"source":176,"target":120},{"source":176,"target":546},{"source":546,"target":120},{"source":177,"target":0},{"source":177,"target":33},{"source":177,"target":547},{"source":547,"target":33},{"source":178,"target":0},{"source":178,"target":10},{"source":178,"target":548},{"source":178,"target":549},{"source":548,"target":1},{"source":548,"target":550},{"source":548,"target":178},{"source":550,"target":1},{"source":549,"target":10},{"source":179,"target":0},{"source":179,"target":111},{"source":179,"target":551},{"source":551,"target":111},{"source":180,"target":0},{"source":180,"target":33},{"source":180,"target":141},{"source":180,"target":552},{"source":180,"target":553},{"source":552,"target":33},{"source":553,"target":141},{"source":181,"target":0},{"source":181,"target":33},{"source":181,"target":554},{"source":554,"target":33},{"source":182,"target":0},{"source":182,"target":126},{"source":182,"target":555},{"source":555,"target":126},{"source":183,"target":0},{"source":183,"target":172},{"source":183,"target":115},{"source":183,"target":112},{"source":183,"target":556},{"source":183,"target":557},{"source":183,"target":558},{"source":183,"target":559},{"source":556,"target":560},{"source":556,"target":183},{"source":557,"target":172},{"source":558,"target":115},{"source":559,"target":112},{"source":184,"target":0},{"source":184,"target":33},{"source":184,"target":561},{"source":561,"target":33},{"source":185,"target":0},{"source":185,"target":149},{"source":185,"target":150},{"source":185,"target":562},{"source":185,"target":563},{"source":562,"target":149},{"source":563,"target":150},{"source":186,"target":0},{"source":186,"target":6},{"source":186,"target":564},{"source":564,"target":6},{"source":187,"target":0},{"source":187,"target":155},{"source":187,"target":565},{"source":565,"target":155},{"source":188,"target":0},{"source":188,"target":68},{"source":188,"target":566},{"source":566,"target":68},{"source":189,"target":0},{"source":189,"target":87},{"source":189,"target":567},{"source":567,"target":87},{"source":190,"target":0},{"source":190,"target":150},{"source":190,"target":568},{"source":568,"target":150},{"source":191,"target":0},{"source":191,"target":30},{"source":191,"target":569},{"source":569,"target":30},{"source":192,"target":0},{"source":192,"target":60},{"source":192,"target":570},{"source":570,"target":60},{"source":193,"target":0},{"source":193,"target":6},{"source":193,"target":571},{"source":571,"target":6},{"source":194,"target":0},{"source":194,"target":11},{"source":194,"target":572},{"source":572,"target":11},{"source":195,"target":0},{"source":195,"target":33},{"source":195,"target":131},{"source":195,"target":573},{"source":195,"target":574},{"source":573,"target":33},{"source":574,"target":131},{"source":196,"target":0},{"source":196,"target":195},{"source":196,"target":575},{"source":575,"target":195},{"source":197,"target":0},{"source":197,"target":6},{"source":197,"target":576},{"source":197,"target":577},{"source":197,"target":578},{"source":197,"target":579},{"source":576,"target":165},{"source":576,"target":580},{"source":576,"target":197},{"source":580,"target":165},{"source":577,"target":117},{"source":577,"target":581},{"source":577,"target":197},{"source":581,"target":117},{"source":578,"target":53},{"source":578,"target":582},{"source":578,"target":197},{"source":582,"target":53},{"source":579,"target":6},{"source":198,"target":0},{"source":198,"target":200},{"source":198,"target":583},{"source":583,"target":200},{"source":199,"target":0},{"source":199,"target":11},{"source":199,"target":584},{"source":584,"target":11},{"source":200,"target":0},{"source":200,"target":62},{"source":200,"target":585},{"source":585,"target":62},{"source":201,"target":0},{"source":201,"target":7},{"source":201,"target":586},{"source":586,"target":7},{"source":202,"target":0},{"source":202,"target":221},{"source":202,"target":587},{"source":587,"target":221},{"source":203,"target":0},{"source":203,"target":158},{"source":203,"target":588},{"source":588,"target":158},{"source":204,"target":0},{"source":204,"target":167},{"source":204,"target":589},{"source":589,"target":167},{"source":205,"target":0},{"source":205,"target":116},{"source":205,"target":590},{"source":590,"target":116},{"source":206,"target":0},{"source":206,"target":57},{"source":206,"target":30},{"source":206,"target":591},{"source":206,"target":592},{"source":591,"target":57},{"source":592,"target":30},{"source":207,"target":0},{"source":207,"target":170},{"source":207,"target":593},{"source":593,"target":170},{"source":208,"target":0},{"source":208,"target":6},{"source":208,"target":594},{"source":594,"target":6},{"source":209,"target":0},{"source":209,"target":26},{"source":209,"target":595},{"source":595,"target":26},{"source":210,"target":0},{"source":210,"target":57},{"source":210,"target":596},{"source":596,"target":57},{"source":211,"target":0},{"source":211,"target":149},{"source":211,"target":169},{"source":211,"target":159},{"source":211,"target":597},{"source":211,"target":598},{"source":211,"target":599},{"source":211,"target":600},{"source":211,"target":601},{"source":211,"target":602},{"source":211,"target":603},{"source":597,"target":604},{"source":597,"target":211},{"source":598,"target":172},{"source":598,"target":605},{"source":598,"target":211},{"source":605,"target":172},{"source":599,"target":33},{"source":599,"target":606},{"source":599,"target":211},{"source":606,"target":33},{"source":600,"target":58},{"source":600,"target":607},{"source":600,"target":211},{"source":607,"target":58},{"source":601,"target":149},{"source":602,"target":169},{"source":603,"target":159},{"source":212,"target":0},{"source":212,"target":7},{"source":212,"target":608},{"source":608,"target":7},{"source":213,"target":0},{"source":213,"target":224},{"source":213,"target":609},{"source":609,"target":224},{"source":214,"target":0},{"source":214,"target":158},{"source":214,"target":610},{"source":610,"target":158},{"source":215,"target":0},{"source":215,"target":132},{"source":215,"target":115},{"source":215,"target":112},{"source":215,"target":611},{"source":215,"target":612},{"source":215,"target":613},{"source":215,"target":614},{"source":611,"target":2},{"source":611,"target":615},{"source":611,"target":215},{"source":615,"target":2},{"source":612,"target":132},{"source":613,"target":115},{"source":614,"target":112},{"source":216,"target":0},{"source":216,"target":17},{"source":216,"target":616},{"source":616,"target":17},{"source":217,"target":0},{"source":217,"target":6},{"source":217,"target":617},{"source":617,"target":6},{"source":218,"target":0},{"source":218,"target":62},{"source":218,"target":618},{"source":618,"target":62},{"source":219,"target":0},{"source":219,"target":111},{"source":219,"target":619},{"source":619,"target":111},{"source":220,"target":0},{"source":220,"target":211},{"source":220,"target":620},{"source":620,"target":211},{"source":221,"target":0},{"source":221,"target":195},{"source":221,"target":10},{"source":221,"target":621},{"source":221,"target":622},{"source":621,"target":195},{"source":622,"target":10},{"source":222,"target":0},{"source":222,"target":190},{"source":222,"target":623},{"source":623,"target":190},{"source":223,"target":0},{"source":223,"target":29},{"source":223,"target":624},{"source":624,"target":29},{"source":224,"target":0},{"source":224,"target":62},{"source":224,"target":625},{"source":625,"target":62},{"source":225,"target":0},{"source":225,"target":211},{"source":225,"target":626},{"source":626,"target":211},{"source":226,"target":0},{"source":226,"target":150},{"source":226,"target":627},{"source":627,"target":150},{"source":227,"target":0},{"source":227,"target":107},{"source":227,"target":628},{"source":628,"target":107},{"source":228,"target":0},{"source":228,"target":62},{"source":228,"target":629},{"source":629,"target":62},{"source":229,"target":0},{"source":229,"target":62},{"source":229,"target":630},{"source":630,"target":62},{"source":230,"target":0},{"source":230,"target":117},{"source":230,"target":631},{"source":631,"target":117}],"multigraph":true} |
true | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="ejava" nsURI="http://www.emftext.org/language/eJava" nsPrefix="ejava">
<eClassifiers xsi:type="ecore:EClass" name="EPackageWrapper" eSuperTypes="platform:/plugin/org.emftext.language.java/metamodel/java.ecore#//containers/CompilationUnit">
<eStructuralFeatures xsi:type="ecore:EReference" name="ePackage" lowerBound="1"
eType="ecore:EClass platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EPackage"
transient="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="genPackage" lowerBound="1"
eType="ecore:EClass platform:/plugin/org.eclipse.emf.codegen.ecore/model/GenModel.ecore#//GenPackage"
transient="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EClassifierWrapper" abstract="true"
eSuperTypes="platform:/plugin/org.emftext.language.java/metamodel/java.ecore#//classifiers/ConcreteClassifier">
<eStructuralFeatures xsi:type="ecore:EReference" name="eClassifier" lowerBound="1"
eType="ecore:EClass platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EClassifier"
transient="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EClassifierClassWrapper" eSuperTypes="platform:/plugin/org.emftext.language.java/metamodel/java.ecore#//classifiers/Class #//EClassifierWrapper"/>
<eClassifiers xsi:type="ecore:EClass" name="EClassifierInterfaceWrapper" eSuperTypes="platform:/plugin/org.emftext.language.java/metamodel/java.ecore#//classifiers/Interface #//EClassifierWrapper"/>
<eClassifiers xsi:type="ecore:EClass" name="EClassifierEnumerationWrapper" eSuperTypes="platform:/plugin/org.emftext.language.java/metamodel/java.ecore#//classifiers/Enumeration #//EClassifierWrapper"/>
<eClassifiers xsi:type="ecore:EClass" name="EStructuralFeatureWrapper" abstract="true"
eSuperTypes="platform:/plugin/org.emftext.language.java/metamodel/java.ecore#//members/InterfaceMethod">
<eStructuralFeatures xsi:type="ecore:EReference" name="eStructuralFeature" lowerBound="1"
eType="ecore:EClass platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EStructuralFeature"
transient="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EStructuralFeatureGetWrapper" eSuperTypes="#//EStructuralFeatureWrapper"/>
<eClassifiers xsi:type="ecore:EClass" name="EStructuralFeatureSetWrapper" eSuperTypes="#//EStructuralFeatureWrapper"/>
<eClassifiers xsi:type="ecore:EClass" name="EEnumLiteralWrapper" eSuperTypes="platform:/plugin/org.emftext.language.java/metamodel/java.ecore#//members/EnumConstant">
<eStructuralFeatures xsi:type="ecore:EReference" name="eEnumLiteral" lowerBound="1"
eType="ecore:EClass platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EEnumLiteral"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EOperationWrapper" eSuperTypes="platform:/plugin/org.emftext.language.java/metamodel/java.ecore#//members/ClassMethod">
<eStructuralFeatures xsi:type="ecore:EReference" name="eOperation" lowerBound="1"
eType="ecore:EClass platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EOperation"
transient="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EObjectInstantiation" eSuperTypes="platform:/plugin/org.emftext.language.java/metamodel/java.ecore#//instantiations/Instantiation platform:/plugin/org.emftext.language.java/metamodel/java.ecore#//types/TypedElement"/>
</ecore:EPackage>
| github:ecore:/data/MDEGroup/QMM-COMLAN-data/validation-subjects/metamodels/eJava.ecore | ecore | ejava
EPackageWrapper
ePackage
genPackage
EClassifierWrapper
eClassifier
EClassifierClassWrapper
EClassifierInterfaceWrapper
EClassifierEnumerationWrapper
EStructuralFeatureWrapper
eStructuralFeature
EStructuralFeatureGetWrapper
EStructuralFeatureSetWrapper
EEnumLiteralWrapper
eEnumLiteral
EOperationWrapper
eOperation
EObjectInstantiation | null | {"directed":true,"nodes":[{"nsPrefix":"ejava","nsURI":"http://www.emftext.org/language/eJava","name":"ejava","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EPackageWrapper","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EClassifierWrapper","instanceClass":null,"abstract":true,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EClassifierClassWrapper","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EClassifierInterfaceWrapper","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EClassifierEnumerationWrapper","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EStructuralFeatureWrapper","instanceClass":null,"abstract":true,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EStructuralFeatureGetWrapper","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EStructuralFeatureSetWrapper","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EEnumLiteralWrapper","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EOperationWrapper","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EObjectInstantiation","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"ePackage","changeable":true,"resolveProxies":true,"lowerBound":1,"id":12,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"genPackage","changeable":true,"resolveProxies":true,"lowerBound":1,"id":13,"derived":false},{"id":14,"eClass":"EGenericType"},{"id":15,"eClass":"EGenericType"},{"id":16,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"eClassifier","changeable":true,"resolveProxies":true,"lowerBound":1,"id":17,"derived":false},{"id":18,"eClass":"EGenericType"},{"id":19,"eClass":"EGenericType"},{"id":20,"eClass":"EGenericType"},{"id":21,"eClass":"EGenericType"},{"id":22,"eClass":"EGenericType"},{"id":23,"eClass":"EGenericType"},{"id":24,"eClass":"EGenericType"},{"id":25,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"eStructuralFeature","changeable":true,"resolveProxies":true,"lowerBound":1,"id":26,"derived":false},{"id":27,"eClass":"EGenericType"},{"id":28,"eClass":"EGenericType"},{"id":29,"eClass":"EGenericType"},{"id":30,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"eEnumLiteral","changeable":true,"resolveProxies":true,"lowerBound":1,"id":31,"derived":false},{"id":32,"eClass":"EGenericType"},{"id":33,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"eOperation","changeable":true,"resolveProxies":true,"lowerBound":1,"id":34,"derived":false},{"id":35,"eClass":"EGenericType"},{"id":36,"eClass":"EGenericType"},{"id":37,"eClass":"EGenericType"},{"id":38,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":0,"target":8},{"source":0,"target":9},{"source":0,"target":10},{"source":0,"target":11},{"source":1,"target":0},{"source":1,"target":12},{"source":1,"target":13},{"source":1,"target":14},{"source":12,"target":15},{"source":12,"target":1},{"source":13,"target":16},{"source":13,"target":1},{"source":2,"target":0},{"source":2,"target":17},{"source":2,"target":18},{"source":17,"target":19},{"source":17,"target":2},{"source":3,"target":0},{"source":3,"target":2},{"source":3,"target":20},{"source":3,"target":21},{"source":21,"target":2},{"source":4,"target":0},{"source":4,"target":2},{"source":4,"target":22},{"source":4,"target":23},{"source":23,"target":2},{"source":5,"target":0},{"source":5,"target":2},{"source":5,"target":24},{"source":5,"target":25},{"source":25,"target":2},{"source":6,"target":0},{"source":6,"target":26},{"source":6,"target":27},{"source":26,"target":28},{"source":26,"target":6},{"source":7,"target":0},{"source":7,"target":6},{"source":7,"target":29},{"source":29,"target":6},{"source":8,"target":0},{"source":8,"target":6},{"source":8,"target":30},{"source":30,"target":6},{"source":9,"target":0},{"source":9,"target":31},{"source":9,"target":32},{"source":31,"target":33},{"source":31,"target":9},{"source":10,"target":0},{"source":10,"target":34},{"source":10,"target":35},{"source":34,"target":36},{"source":34,"target":10},{"source":11,"target":0},{"source":11,"target":37},{"source":11,"target":38}],"multigraph":true} |
false | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="fasttwr" nsURI="http://www.ndt.sc/editor/fast/Fasttwr" nsPrefix="fasttwr">
<eClassifiers xsi:type="ecore:EClass" name="ModelFasttwr">
<eStructuralFeatures xsi:type="ecore:EReference" name="Head" eType="#//Header"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="sections" upperBound="-1"
eType="#//Section" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="NTwInpSt" eType="#//nNTwInpSt"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="CalcTMode" eType="#//bCalcTMode"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="BldFlDmp1" eType="#//nTwrFADmp1"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="BldFlDmp2" eType="#//nTwrFADmp2"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="BldEdDmp1" eType="#//nTwrSSDmp1"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="BldEdDmp2" eType="#//nTwrSSDmp2"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="FAStTunr1" eType="#//nFAStTunr1"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="FAStTunr2" eType="#//nFAStTunr2"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="SSStTunr1" eType="#//nSSStTunr1"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="SSStTunr2" eType="#//nSSStTunr2"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="AdjTwMa" eType="#//AdjTwMa"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="AdjFASt" eType="#//AdjFASt"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="AdjSSSt" eType="#//AdjSSSt"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="TwrStat" eType="#//aTwrStat"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="TwFAM1Sh2" eType="#//nTwFAM1Sh2"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="TwFAM1Sh3" eType="#//nTwFAM1Sh3"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="TwFAM1Sh4" eType="#//nTwFAM1Sh4"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="TwFAM1Sh5" eType="#//nTwFAM1Sh5"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="TwFAM1Sh6" eType="#//nTwFAM1Sh6"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="TwFAM2Sh2" eType="#//nTwFAM2Sh2"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="TwFAM2Sh3" eType="#//nTwFAM2Sh3"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="TwFAM2Sh4" eType="#//nTwFAM2Sh4"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="TwFAM2Sh5" eType="#//nTwFAM2Sh5"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="TwFAM2Sh6" eType="#//nTwFAM2Sh6"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="TwSSM1Sh2" eType="#//nTwSSM1Sh2"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="TwSSM1Sh3" eType="#//nTwSSM1Sh3"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="TwSSM1Sh4" eType="#//nTwSSM1Sh4"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="TwSSM1Sh5" eType="#//nTwSSM1Sh5"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="TwSSM1Sh6" eType="#//nTwSSM1Sh6"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="TwSSM2Sh2" eType="#//nTwSSM2Sh2"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="TwSSM2Sh3" eType="#//nTwSSM2Sh3"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="TwSSM2Sh4" eType="#//nTwSSM2Sh4"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="TwSSM2Sh5" eType="#//nTwSSM2Sh5"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="TwSSM2Sh6" eType="#//nTwSSM2Sh6"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Header">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Section">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="nNTwInpSt">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="bCalcTMode">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="nTwrFADmp1">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFloat"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="nTwrFADmp2">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFloat"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="nTwrSSDmp1">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFloat"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="nTwrSSDmp2">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFloat"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="nFAStTunr1">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFloat"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="nFAStTunr2">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFloat"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="nSSStTunr1">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFloat"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="nSSStTunr2">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFloat"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="AdjTwMa">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFloat"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="AdjFASt">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFloat"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="AdjSSSt">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFloat"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="nTwFAM1Sh2">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFloat"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="nTwFAM1Sh3">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFloat"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="nTwFAM1Sh4">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFloat"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="nTwFAM1Sh5">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFloat"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="nTwFAM1Sh6">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFloat"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="nTwFAM2Sh2">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFloat"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="nTwFAM2Sh3">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFloat"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="nTwFAM2Sh4">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFloat"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="nTwFAM2Sh5">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFloat"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="nTwFAM2Sh6">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFloat"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="nTwSSM1Sh2">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFloat"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="nTwSSM1Sh3">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFloat"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="nTwSSM1Sh4">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFloat"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="nTwSSM1Sh5">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFloat"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="nTwSSM1Sh6">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFloat"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="nTwSSM2Sh2">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFloat"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="nTwSSM2Sh3">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFloat"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="nTwSSM2Sh4">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFloat"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="nTwSSM2Sh5">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFloat"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="nTwSSM2Sh6">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFloat"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="aTwrStat">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="HtFract" unique="false"
upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFloat"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="TMassDen" unique="false"
upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFloat"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="TwFAStif" unique="false"
upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFloat"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="TwSSStif" unique="false"
upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFloat"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="TwGJStif" unique="false"
upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFloat"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="TwEAStif" unique="false"
upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFloat"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="TwFAIner" unique="false"
upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFloat"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="TwSSIner" unique="false"
upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFloat"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="TwFAcgOf" unique="false"
upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFloat"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="TwSScgOf" unique="false"
upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFloat"/>
</eClassifiers>
</ecore:EPackage>
| github:ecore:/data/cooked/NDT/sc.ndt.editor.fast.twr/src-gen/sc/ndt/editor/fast/Fasttwr.ecore | ecore | fasttwr
ModelFasttwr
Head
sections
NTwInpSt
CalcTMode
BldFlDmp1
BldFlDmp2
BldEdDmp1
BldEdDmp2
FAStTunr1
FAStTunr2
SSStTunr1
SSStTunr2
AdjTwMa
AdjFASt
AdjSSSt
TwrStat
TwFAM1Sh2
TwFAM1Sh3
TwFAM1Sh4
TwFAM1Sh5
TwFAM1Sh6
TwFAM2Sh2
TwFAM2Sh3
TwFAM2Sh4
TwFAM2Sh5
TwFAM2Sh6
TwSSM1Sh2
TwSSM1Sh3
TwSSM1Sh4
TwSSM1Sh5
TwSSM1Sh6
TwSSM2Sh2
TwSSM2Sh3
TwSSM2Sh4
TwSSM2Sh5
TwSSM2Sh6
Header
name
Section
name
nNTwInpSt
value
name
bCalcTMode
value
name
nTwrFADmp1
value
name
nTwrFADmp2
value
name
nTwrSSDmp1
value
name
nTwrSSDmp2
value
name
nFAStTunr1
value
name
nFAStTunr2
value
name
nSSStTunr1
value
name
nSSStTunr2
value
name
AdjTwMa
value
name
AdjFASt
value
name
AdjSSSt
value
name
nTwFAM1Sh2
value
name
nTwFAM1Sh3
value
name
nTwFAM1Sh4
value
name
nTwFAM1Sh5
value
name
nTwFAM1Sh6
value
name
nTwFAM2Sh2
value
name
nTwFAM2Sh3
value
name
nTwFAM2Sh4
value
name
nTwFAM2Sh5
value
name
nTwFAM2Sh6
value
name
nTwSSM1Sh2
value
name
nTwSSM1Sh3
value
name
nTwSSM1Sh4
value
name
nTwSSM1Sh5
value
name
nTwSSM1Sh6
value
name
nTwSSM2Sh2
value
name
nTwSSM2Sh3
value
name
nTwSSM2Sh4
value
name
nTwSSM2Sh5
value
name
nTwSSM2Sh6
value
name
aTwrStat
HtFract
TMassDen
TwFAStif
TwSSStif
TwGJStif
TwEAStif
TwFAIner
TwSSIner
TwFAcgOf
TwSScgOf | null | {"directed":true,"nodes":[{"nsPrefix":"fasttwr","nsURI":"http://www.ndt.sc/editor/fast/Fasttwr","name":"fasttwr","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ModelFasttwr","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Header","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Section","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"nNTwInpSt","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"bCalcTMode","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"nTwrFADmp1","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"nTwrFADmp2","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"nTwrSSDmp1","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"nTwrSSDmp2","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"nFAStTunr1","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"nFAStTunr2","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"nSSStTunr1","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"nSSStTunr2","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AdjTwMa","instanceClass":null,"abstract":false,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AdjFASt","instanceClass":null,"abstract":false,"id":15,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AdjSSSt","instanceClass":null,"abstract":false,"id":16,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"nTwFAM1Sh2","instanceClass":null,"abstract":false,"id":17,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"nTwFAM1Sh3","instanceClass":null,"abstract":false,"id":18,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"nTwFAM1Sh4","instanceClass":null,"abstract":false,"id":19,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"nTwFAM1Sh5","instanceClass":null,"abstract":false,"id":20,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"nTwFAM1Sh6","instanceClass":null,"abstract":false,"id":21,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"nTwFAM2Sh2","instanceClass":null,"abstract":false,"id":22,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"nTwFAM2Sh3","instanceClass":null,"abstract":false,"id":23,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"nTwFAM2Sh4","instanceClass":null,"abstract":false,"id":24,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"nTwFAM2Sh5","instanceClass":null,"abstract":false,"id":25,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"nTwFAM2Sh6","instanceClass":null,"abstract":false,"id":26,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"nTwSSM1Sh2","instanceClass":null,"abstract":false,"id":27,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"nTwSSM1Sh3","instanceClass":null,"abstract":false,"id":28,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"nTwSSM1Sh4","instanceClass":null,"abstract":false,"id":29,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"nTwSSM1Sh5","instanceClass":null,"abstract":false,"id":30,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"nTwSSM1Sh6","instanceClass":null,"abstract":false,"id":31,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"nTwSSM2Sh2","instanceClass":null,"abstract":false,"id":32,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"nTwSSM2Sh3","instanceClass":null,"abstract":false,"id":33,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"nTwSSM2Sh4","instanceClass":null,"abstract":false,"id":34,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"nTwSSM2Sh5","instanceClass":null,"abstract":false,"id":35,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"nTwSSM2Sh6","instanceClass":null,"abstract":false,"id":36,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"aTwrStat","instanceClass":null,"abstract":false,"id":37,"interface":false,"eClass":"EClass"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"Head","changeable":true,"resolveProxies":true,"lowerBound":0,"id":38,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"sections","changeable":true,"resolveProxies":true,"lowerBound":0,"id":39,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"NTwInpSt","changeable":true,"resolveProxies":true,"lowerBound":0,"id":40,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"CalcTMode","changeable":true,"resolveProxies":true,"lowerBound":0,"id":41,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"BldFlDmp1","changeable":true,"resolveProxies":true,"lowerBound":0,"id":42,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"BldFlDmp2","changeable":true,"resolveProxies":true,"lowerBound":0,"id":43,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"BldEdDmp1","changeable":true,"resolveProxies":true,"lowerBound":0,"id":44,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"BldEdDmp2","changeable":true,"resolveProxies":true,"lowerBound":0,"id":45,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"FAStTunr1","changeable":true,"resolveProxies":true,"lowerBound":0,"id":46,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"FAStTunr2","changeable":true,"resolveProxies":true,"lowerBound":0,"id":47,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"SSStTunr1","changeable":true,"resolveProxies":true,"lowerBound":0,"id":48,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"SSStTunr2","changeable":true,"resolveProxies":true,"lowerBound":0,"id":49,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"AdjTwMa","changeable":true,"resolveProxies":true,"lowerBound":0,"id":50,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"AdjFASt","changeable":true,"resolveProxies":true,"lowerBound":0,"id":51,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"AdjSSSt","changeable":true,"resolveProxies":true,"lowerBound":0,"id":52,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"TwrStat","changeable":true,"resolveProxies":true,"lowerBound":0,"id":53,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"TwFAM1Sh2","changeable":true,"resolveProxies":true,"lowerBound":0,"id":54,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"TwFAM1Sh3","changeable":true,"resolveProxies":true,"lowerBound":0,"id":55,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"TwFAM1Sh4","changeable":true,"resolveProxies":true,"lowerBound":0,"id":56,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"TwFAM1Sh5","changeable":true,"resolveProxies":true,"lowerBound":0,"id":57,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"TwFAM1Sh6","changeable":true,"resolveProxies":true,"lowerBound":0,"id":58,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"TwFAM2Sh2","changeable":true,"resolveProxies":true,"lowerBound":0,"id":59,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"TwFAM2Sh3","changeable":true,"resolveProxies":true,"lowerBound":0,"id":60,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"TwFAM2Sh4","changeable":true,"resolveProxies":true,"lowerBound":0,"id":61,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"TwFAM2Sh5","changeable":true,"resolveProxies":true,"lowerBound":0,"id":62,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"TwFAM2Sh6","changeable":true,"resolveProxies":true,"lowerBound":0,"id":63,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"TwSSM1Sh2","changeable":true,"resolveProxies":true,"lowerBound":0,"id":64,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"TwSSM1Sh3","changeable":true,"resolveProxies":true,"lowerBound":0,"id":65,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"TwSSM1Sh4","changeable":true,"resolveProxies":true,"lowerBound":0,"id":66,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"TwSSM1Sh5","changeable":true,"resolveProxies":true,"lowerBound":0,"id":67,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"TwSSM1Sh6","changeable":true,"resolveProxies":true,"lowerBound":0,"id":68,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"TwSSM2Sh2","changeable":true,"resolveProxies":true,"lowerBound":0,"id":69,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"TwSSM2Sh3","changeable":true,"resolveProxies":true,"lowerBound":0,"id":70,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"TwSSM2Sh4","changeable":true,"resolveProxies":true,"lowerBound":0,"id":71,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"TwSSM2Sh5","changeable":true,"resolveProxies":true,"lowerBound":0,"id":72,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"TwSSM2Sh6","changeable":true,"resolveProxies":true,"lowerBound":0,"id":73,"derived":false},{"id":74,"eClass":"EGenericType"},{"id":75,"eClass":"EGenericType"},{"id":76,"eClass":"EGenericType"},{"id":77,"eClass":"EGenericType"},{"id":78,"eClass":"EGenericType"},{"id":79,"eClass":"EGenericType"},{"id":80,"eClass":"EGenericType"},{"id":81,"eClass":"EGenericType"},{"id":82,"eClass":"EGenericType"},{"id":83,"eClass":"EGenericType"},{"id":84,"eClass":"EGenericType"},{"id":85,"eClass":"EGenericType"},{"id":86,"eClass":"EGenericType"},{"id":87,"eClass":"EGenericType"},{"id":88,"eClass":"EGenericType"},{"id":89,"eClass":"EGenericType"},{"id":90,"eClass":"EGenericType"},{"id":91,"eClass":"EGenericType"},{"id":92,"eClass":"EGenericType"},{"id":93,"eClass":"EGenericType"},{"id":94,"eClass":"EGenericType"},{"id":95,"eClass":"EGenericType"},{"id":96,"eClass":"EGenericType"},{"id":97,"eClass":"EGenericType"},{"id":98,"eClass":"EGenericType"},{"id":99,"eClass":"EGenericType"},{"id":100,"eClass":"EGenericType"},{"id":101,"eClass":"EGenericType"},{"id":102,"eClass":"EGenericType"},{"id":103,"eClass":"EGenericType"},{"id":104,"eClass":"EGenericType"},{"id":105,"eClass":"EGenericType"},{"id":106,"eClass":"EGenericType"},{"id":107,"eClass":"EGenericType"},{"id":108,"eClass":"EGenericType"},{"id":109,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":110,"derived":false},{"id":111,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":112,"derived":false},{"id":113,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":0,"iD":false,"id":114,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":115,"derived":false},{"id":116,"eClass":"EGenericType"},{"id":117,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":0,"iD":false,"id":118,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":119,"derived":false},{"id":120,"eClass":"EGenericType"},{"id":121,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":0,"iD":false,"id":122,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":123,"derived":false},{"id":124,"eClass":"EGenericType"},{"id":125,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":0,"iD":false,"id":126,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":127,"derived":false},{"id":128,"eClass":"EGenericType"},{"id":129,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":0,"iD":false,"id":130,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":131,"derived":false},{"id":132,"eClass":"EGenericType"},{"id":133,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":0,"iD":false,"id":134,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":135,"derived":false},{"id":136,"eClass":"EGenericType"},{"id":137,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":0,"iD":false,"id":138,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":139,"derived":false},{"id":140,"eClass":"EGenericType"},{"id":141,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":0,"iD":false,"id":142,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":143,"derived":false},{"id":144,"eClass":"EGenericType"},{"id":145,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":0,"iD":false,"id":146,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":147,"derived":false},{"id":148,"eClass":"EGenericType"},{"id":149,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":0,"iD":false,"id":150,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":151,"derived":false},{"id":152,"eClass":"EGenericType"},{"id":153,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":0,"iD":false,"id":154,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":155,"derived":false},{"id":156,"eClass":"EGenericType"},{"id":157,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":0,"iD":false,"id":158,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":159,"derived":false},{"id":160,"eClass":"EGenericType"},{"id":161,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":0,"iD":false,"id":162,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":163,"derived":false},{"id":164,"eClass":"EGenericType"},{"id":165,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":0,"iD":false,"id":166,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":167,"derived":false},{"id":168,"eClass":"EGenericType"},{"id":169,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":0,"iD":false,"id":170,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":171,"derived":false},{"id":172,"eClass":"EGenericType"},{"id":173,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":0,"iD":false,"id":174,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":175,"derived":false},{"id":176,"eClass":"EGenericType"},{"id":177,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":0,"iD":false,"id":178,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":179,"derived":false},{"id":180,"eClass":"EGenericType"},{"id":181,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":0,"iD":false,"id":182,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":183,"derived":false},{"id":184,"eClass":"EGenericType"},{"id":185,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":0,"iD":false,"id":186,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":187,"derived":false},{"id":188,"eClass":"EGenericType"},{"id":189,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":0,"iD":false,"id":190,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":191,"derived":false},{"id":192,"eClass":"EGenericType"},{"id":193,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":0,"iD":false,"id":194,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":195,"derived":false},{"id":196,"eClass":"EGenericType"},{"id":197,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":0,"iD":false,"id":198,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":199,"derived":false},{"id":200,"eClass":"EGenericType"},{"id":201,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":0,"iD":false,"id":202,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":203,"derived":false},{"id":204,"eClass":"EGenericType"},{"id":205,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":0,"iD":false,"id":206,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":207,"derived":false},{"id":208,"eClass":"EGenericType"},{"id":209,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":0,"iD":false,"id":210,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":211,"derived":false},{"id":212,"eClass":"EGenericType"},{"id":213,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":0,"iD":false,"id":214,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":215,"derived":false},{"id":216,"eClass":"EGenericType"},{"id":217,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":0,"iD":false,"id":218,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":219,"derived":false},{"id":220,"eClass":"EGenericType"},{"id":221,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":0,"iD":false,"id":222,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":223,"derived":false},{"id":224,"eClass":"EGenericType"},{"id":225,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":0,"iD":false,"id":226,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":227,"derived":false},{"id":228,"eClass":"EGenericType"},{"id":229,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":0,"iD":false,"id":230,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":231,"derived":false},{"id":232,"eClass":"EGenericType"},{"id":233,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":0,"iD":false,"id":234,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":235,"derived":false},{"id":236,"eClass":"EGenericType"},{"id":237,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":0,"iD":false,"id":238,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":239,"derived":false},{"id":240,"eClass":"EGenericType"},{"id":241,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":0,"iD":false,"id":242,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":243,"derived":false},{"id":244,"eClass":"EGenericType"},{"id":245,"eClass":"EGenericType"},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"HtFract","changeable":true,"lowerBound":0,"iD":false,"id":246,"derived":false},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"TMassDen","changeable":true,"lowerBound":0,"iD":false,"id":247,"derived":false},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"TwFAStif","changeable":true,"lowerBound":0,"iD":false,"id":248,"derived":false},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"TwSSStif","changeable":true,"lowerBound":0,"iD":false,"id":249,"derived":false},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"TwGJStif","changeable":true,"lowerBound":0,"iD":false,"id":250,"derived":false},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"TwEAStif","changeable":true,"lowerBound":0,"iD":false,"id":251,"derived":false},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"TwFAIner","changeable":true,"lowerBound":0,"iD":false,"id":252,"derived":false},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"TwSSIner","changeable":true,"lowerBound":0,"iD":false,"id":253,"derived":false},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"TwFAcgOf","changeable":true,"lowerBound":0,"iD":false,"id":254,"derived":false},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"TwSScgOf","changeable":true,"lowerBound":0,"iD":false,"id":255,"derived":false},{"id":256,"eClass":"EGenericType"},{"id":257,"eClass":"EGenericType"},{"id":258,"eClass":"EGenericType"},{"id":259,"eClass":"EGenericType"},{"id":260,"eClass":"EGenericType"},{"id":261,"eClass":"EGenericType"},{"id":262,"eClass":"EGenericType"},{"id":263,"eClass":"EGenericType"},{"id":264,"eClass":"EGenericType"},{"id":265,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":0,"target":8},{"source":0,"target":9},{"source":0,"target":10},{"source":0,"target":11},{"source":0,"target":12},{"source":0,"target":13},{"source":0,"target":14},{"source":0,"target":15},{"source":0,"target":16},{"source":0,"target":17},{"source":0,"target":18},{"source":0,"target":19},{"source":0,"target":20},{"source":0,"target":21},{"source":0,"target":22},{"source":0,"target":23},{"source":0,"target":24},{"source":0,"target":25},{"source":0,"target":26},{"source":0,"target":27},{"source":0,"target":28},{"source":0,"target":29},{"source":0,"target":30},{"source":0,"target":31},{"source":0,"target":32},{"source":0,"target":33},{"source":0,"target":34},{"source":0,"target":35},{"source":0,"target":36},{"source":0,"target":37},{"source":1,"target":0},{"source":1,"target":38},{"source":1,"target":39},{"source":1,"target":40},{"source":1,"target":41},{"source":1,"target":42},{"source":1,"target":43},{"source":1,"target":44},{"source":1,"target":45},{"source":1,"target":46},{"source":1,"target":47},{"source":1,"target":48},{"source":1,"target":49},{"source":1,"target":50},{"source":1,"target":51},{"source":1,"target":52},{"source":1,"target":53},{"source":1,"target":54},{"source":1,"target":55},{"source":1,"target":56},{"source":1,"target":57},{"source":1,"target":58},{"source":1,"target":59},{"source":1,"target":60},{"source":1,"target":61},{"source":1,"target":62},{"source":1,"target":63},{"source":1,"target":64},{"source":1,"target":65},{"source":1,"target":66},{"source":1,"target":67},{"source":1,"target":68},{"source":1,"target":69},{"source":1,"target":70},{"source":1,"target":71},{"source":1,"target":72},{"source":1,"target":73},{"source":38,"target":2},{"source":38,"target":74},{"source":38,"target":1},{"source":74,"target":2},{"source":39,"target":3},{"source":39,"target":75},{"source":39,"target":1},{"source":75,"target":3},{"source":40,"target":4},{"source":40,"target":76},{"source":40,"target":1},{"source":76,"target":4},{"source":41,"target":5},{"source":41,"target":77},{"source":41,"target":1},{"source":77,"target":5},{"source":42,"target":6},{"source":42,"target":78},{"source":42,"target":1},{"source":78,"target":6},{"source":43,"target":7},{"source":43,"target":79},{"source":43,"target":1},{"source":79,"target":7},{"source":44,"target":8},{"source":44,"target":80},{"source":44,"target":1},{"source":80,"target":8},{"source":45,"target":9},{"source":45,"target":81},{"source":45,"target":1},{"source":81,"target":9},{"source":46,"target":10},{"source":46,"target":82},{"source":46,"target":1},{"source":82,"target":10},{"source":47,"target":11},{"source":47,"target":83},{"source":47,"target":1},{"source":83,"target":11},{"source":48,"target":12},{"source":48,"target":84},{"source":48,"target":1},{"source":84,"target":12},{"source":49,"target":13},{"source":49,"target":85},{"source":49,"target":1},{"source":85,"target":13},{"source":50,"target":14},{"source":50,"target":86},{"source":50,"target":1},{"source":86,"target":14},{"source":51,"target":15},{"source":51,"target":87},{"source":51,"target":1},{"source":87,"target":15},{"source":52,"target":16},{"source":52,"target":88},{"source":52,"target":1},{"source":88,"target":16},{"source":53,"target":37},{"source":53,"target":89},{"source":53,"target":1},{"source":89,"target":37},{"source":54,"target":17},{"source":54,"target":90},{"source":54,"target":1},{"source":90,"target":17},{"source":55,"target":18},{"source":55,"target":91},{"source":55,"target":1},{"source":91,"target":18},{"source":56,"target":19},{"source":56,"target":92},{"source":56,"target":1},{"source":92,"target":19},{"source":57,"target":20},{"source":57,"target":93},{"source":57,"target":1},{"source":93,"target":20},{"source":58,"target":21},{"source":58,"target":94},{"source":58,"target":1},{"source":94,"target":21},{"source":59,"target":22},{"source":59,"target":95},{"source":59,"target":1},{"source":95,"target":22},{"source":60,"target":23},{"source":60,"target":96},{"source":60,"target":1},{"source":96,"target":23},{"source":61,"target":24},{"source":61,"target":97},{"source":61,"target":1},{"source":97,"target":24},{"source":62,"target":25},{"source":62,"target":98},{"source":62,"target":1},{"source":98,"target":25},{"source":63,"target":26},{"source":63,"target":99},{"source":63,"target":1},{"source":99,"target":26},{"source":64,"target":27},{"source":64,"target":100},{"source":64,"target":1},{"source":100,"target":27},{"source":65,"target":28},{"source":65,"target":101},{"source":65,"target":1},{"source":101,"target":28},{"source":66,"target":29},{"source":66,"target":102},{"source":66,"target":1},{"source":102,"target":29},{"source":67,"target":30},{"source":67,"target":103},{"source":67,"target":1},{"source":103,"target":30},{"source":68,"target":31},{"source":68,"target":104},{"source":68,"target":1},{"source":104,"target":31},{"source":69,"target":32},{"source":69,"target":105},{"source":69,"target":1},{"source":105,"target":32},{"source":70,"target":33},{"source":70,"target":106},{"source":70,"target":1},{"source":106,"target":33},{"source":71,"target":34},{"source":71,"target":107},{"source":71,"target":1},{"source":107,"target":34},{"source":72,"target":35},{"source":72,"target":108},{"source":72,"target":1},{"source":108,"target":35},{"source":73,"target":36},{"source":73,"target":109},{"source":73,"target":1},{"source":109,"target":36},{"source":2,"target":0},{"source":2,"target":110},{"source":110,"target":111},{"source":110,"target":2},{"source":3,"target":0},{"source":3,"target":112},{"source":112,"target":113},{"source":112,"target":3},{"source":4,"target":0},{"source":4,"target":114},{"source":4,"target":115},{"source":114,"target":116},{"source":114,"target":4},{"source":115,"target":117},{"source":115,"target":4},{"source":5,"target":0},{"source":5,"target":118},{"source":5,"target":119},{"source":118,"target":120},{"source":118,"target":5},{"source":119,"target":121},{"source":119,"target":5},{"source":6,"target":0},{"source":6,"target":122},{"source":6,"target":123},{"source":122,"target":124},{"source":122,"target":6},{"source":123,"target":125},{"source":123,"target":6},{"source":7,"target":0},{"source":7,"target":126},{"source":7,"target":127},{"source":126,"target":128},{"source":126,"target":7},{"source":127,"target":129},{"source":127,"target":7},{"source":8,"target":0},{"source":8,"target":130},{"source":8,"target":131},{"source":130,"target":132},{"source":130,"target":8},{"source":131,"target":133},{"source":131,"target":8},{"source":9,"target":0},{"source":9,"target":134},{"source":9,"target":135},{"source":134,"target":136},{"source":134,"target":9},{"source":135,"target":137},{"source":135,"target":9},{"source":10,"target":0},{"source":10,"target":138},{"source":10,"target":139},{"source":138,"target":140},{"source":138,"target":10},{"source":139,"target":141},{"source":139,"target":10},{"source":11,"target":0},{"source":11,"target":142},{"source":11,"target":143},{"source":142,"target":144},{"source":142,"target":11},{"source":143,"target":145},{"source":143,"target":11},{"source":12,"target":0},{"source":12,"target":146},{"source":12,"target":147},{"source":146,"target":148},{"source":146,"target":12},{"source":147,"target":149},{"source":147,"target":12},{"source":13,"target":0},{"source":13,"target":150},{"source":13,"target":151},{"source":150,"target":152},{"source":150,"target":13},{"source":151,"target":153},{"source":151,"target":13},{"source":14,"target":0},{"source":14,"target":154},{"source":14,"target":155},{"source":154,"target":156},{"source":154,"target":14},{"source":155,"target":157},{"source":155,"target":14},{"source":15,"target":0},{"source":15,"target":158},{"source":15,"target":159},{"source":158,"target":160},{"source":158,"target":15},{"source":159,"target":161},{"source":159,"target":15},{"source":16,"target":0},{"source":16,"target":162},{"source":16,"target":163},{"source":162,"target":164},{"source":162,"target":16},{"source":163,"target":165},{"source":163,"target":16},{"source":17,"target":0},{"source":17,"target":166},{"source":17,"target":167},{"source":166,"target":168},{"source":166,"target":17},{"source":167,"target":169},{"source":167,"target":17},{"source":18,"target":0},{"source":18,"target":170},{"source":18,"target":171},{"source":170,"target":172},{"source":170,"target":18},{"source":171,"target":173},{"source":171,"target":18},{"source":19,"target":0},{"source":19,"target":174},{"source":19,"target":175},{"source":174,"target":176},{"source":174,"target":19},{"source":175,"target":177},{"source":175,"target":19},{"source":20,"target":0},{"source":20,"target":178},{"source":20,"target":179},{"source":178,"target":180},{"source":178,"target":20},{"source":179,"target":181},{"source":179,"target":20},{"source":21,"target":0},{"source":21,"target":182},{"source":21,"target":183},{"source":182,"target":184},{"source":182,"target":21},{"source":183,"target":185},{"source":183,"target":21},{"source":22,"target":0},{"source":22,"target":186},{"source":22,"target":187},{"source":186,"target":188},{"source":186,"target":22},{"source":187,"target":189},{"source":187,"target":22},{"source":23,"target":0},{"source":23,"target":190},{"source":23,"target":191},{"source":190,"target":192},{"source":190,"target":23},{"source":191,"target":193},{"source":191,"target":23},{"source":24,"target":0},{"source":24,"target":194},{"source":24,"target":195},{"source":194,"target":196},{"source":194,"target":24},{"source":195,"target":197},{"source":195,"target":24},{"source":25,"target":0},{"source":25,"target":198},{"source":25,"target":199},{"source":198,"target":200},{"source":198,"target":25},{"source":199,"target":201},{"source":199,"target":25},{"source":26,"target":0},{"source":26,"target":202},{"source":26,"target":203},{"source":202,"target":204},{"source":202,"target":26},{"source":203,"target":205},{"source":203,"target":26},{"source":27,"target":0},{"source":27,"target":206},{"source":27,"target":207},{"source":206,"target":208},{"source":206,"target":27},{"source":207,"target":209},{"source":207,"target":27},{"source":28,"target":0},{"source":28,"target":210},{"source":28,"target":211},{"source":210,"target":212},{"source":210,"target":28},{"source":211,"target":213},{"source":211,"target":28},{"source":29,"target":0},{"source":29,"target":214},{"source":29,"target":215},{"source":214,"target":216},{"source":214,"target":29},{"source":215,"target":217},{"source":215,"target":29},{"source":30,"target":0},{"source":30,"target":218},{"source":30,"target":219},{"source":218,"target":220},{"source":218,"target":30},{"source":219,"target":221},{"source":219,"target":30},{"source":31,"target":0},{"source":31,"target":222},{"source":31,"target":223},{"source":222,"target":224},{"source":222,"target":31},{"source":223,"target":225},{"source":223,"target":31},{"source":32,"target":0},{"source":32,"target":226},{"source":32,"target":227},{"source":226,"target":228},{"source":226,"target":32},{"source":227,"target":229},{"source":227,"target":32},{"source":33,"target":0},{"source":33,"target":230},{"source":33,"target":231},{"source":230,"target":232},{"source":230,"target":33},{"source":231,"target":233},{"source":231,"target":33},{"source":34,"target":0},{"source":34,"target":234},{"source":34,"target":235},{"source":234,"target":236},{"source":234,"target":34},{"source":235,"target":237},{"source":235,"target":34},{"source":35,"target":0},{"source":35,"target":238},{"source":35,"target":239},{"source":238,"target":240},{"source":238,"target":35},{"source":239,"target":241},{"source":239,"target":35},{"source":36,"target":0},{"source":36,"target":242},{"source":36,"target":243},{"source":242,"target":244},{"source":242,"target":36},{"source":243,"target":245},{"source":243,"target":36},{"source":37,"target":0},{"source":37,"target":246},{"source":37,"target":247},{"source":37,"target":248},{"source":37,"target":249},{"source":37,"target":250},{"source":37,"target":251},{"source":37,"target":252},{"source":37,"target":253},{"source":37,"target":254},{"source":37,"target":255},{"source":246,"target":256},{"source":246,"target":37},{"source":247,"target":257},{"source":247,"target":37},{"source":248,"target":258},{"source":248,"target":37},{"source":249,"target":259},{"source":249,"target":37},{"source":250,"target":260},{"source":250,"target":37},{"source":251,"target":261},{"source":251,"target":37},{"source":252,"target":262},{"source":252,"target":37},{"source":253,"target":263},{"source":253,"target":37},{"source":254,"target":264},{"source":254,"target":37},{"source":255,"target":265},{"source":255,"target":37}],"multigraph":true} |
true | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="sml" nsURI="http://www.example.org/sml" nsPrefix="sml">
<eClassifiers xsi:type="ecore:EClass" name="SMLModel">
<eStructuralFeatures xsi:type="ecore:EReference" name="elements" upperBound="-1"
eType="#//SituationType" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="contextModel" eType="ecore:EClass ../../br.ufes.inf.nemo.ontouml.refontouml/model/RefOntoUML.ecore#//Model"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="primitiveContextElements"
upperBound="-1" eType="ecore:EClass ../../br.ufes.inf.nemo.ontouml.refontouml/model/RefOntoUML.ecore#//PackageableElement"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="SituationType">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="parameter" upperBound="-1"
eType="#//SituationTypeParameter" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="elements" upperBound="-1"
eType="#//SituationTypeElement" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="SituationTypeBlock" eSuperTypes="#//Node">
<eStructuralFeatures xsi:type="ecore:EReference" name="elements" upperBound="-1"
eType="#//Node" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="SituationTypeElement" abstract="true"/>
<eClassifiers xsi:type="ecore:EClass" name="Node" abstract="true" eSuperTypes="#//SituationTypeElement">
<eOperations name="sourceRelation" ordered="false" upperBound="-1" eType="#//ComparativeRelation">
<eAnnotations source="http://www.eclipse.org/ocl/examples/OCL">
<details key="body" value="ComparativeRelation.allInstances()->select(r | r.source = self)"/>
</eAnnotations>
<eAnnotations source="Comments">
<details key="associations" value="Gets all comparative relations in which the element is source"/>
</eAnnotations>
</eOperations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ExportableNode" abstract="true" eSuperTypes="#//Node">
<eStructuralFeatures xsi:type="ecore:EReference" name="nodeParameter" eType="#//SituationTypeParameter"
eOpposite="#//SituationTypeParameter/nodeReference"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EntityParticipant" eSuperTypes="#//Participant">
<eStructuralFeatures xsi:type="ecore:EReference" name="isOfType" eType="ecore:EClass ../../br.ufes.inf.nemo.ontouml.refontouml/model/RefOntoUML.ecore#//Class"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="RelatorParticipant" eSuperTypes="#//Participant">
<eStructuralFeatures xsi:type="ecore:EReference" name="isOfType" eType="ecore:EClass ../../br.ufes.inf.nemo.ontouml.refontouml/model/RefOntoUML.ecore#//Relator"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="links" upperBound="-1"
eType="#//Link" eOpposite="#//Link/relator"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Link" eSuperTypes="#//SituationTypeElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="isOfType" eType="ecore:EClass ../../br.ufes.inf.nemo.ontouml.refontouml/model/RefOntoUML.ecore#//Mediation"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="entity" lowerBound="1"
eType="#//EntityParticipant"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="relator" lowerBound="1"
eType="#//RelatorParticipant" eOpposite="#//RelatorParticipant/links"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="SituationTypeParameter">
<eStructuralFeatures xsi:type="ecore:EReference" name="nodeReference" lowerBound="1"
eType="#//ExportableNode" eOpposite="#//ExportableNode/nodeParameter"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="AttributeReference" eSuperTypes="#//ExportableNode">
<eStructuralFeatures xsi:type="ecore:EReference" name="entity" lowerBound="1"
eType="#//Participant" eOpposite="#//Participant/reference"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="attribute" eType="ecore:EClass ../../br.ufes.inf.nemo.ontouml.refontouml/model/RefOntoUML.ecore#//Property"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ComparativeRelation" eSuperTypes="#//SituationTypeElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="source" lowerBound="1"
eType="#//Node"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="target" lowerBound="1"
eType="#//Node"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="relation" eType="ecore:EClass ../../br.ufes.inf.nemo.ontouml.refontouml/model/RefOntoUML.ecore#//FormalAssociation"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="parameter" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isNegated" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Literal" eSuperTypes="#//Node">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="dataType" eType="ecore:EClass ../../br.ufes.inf.nemo.ontouml.refontouml/model/RefOntoUML.ecore#//DataType"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Participant" abstract="true" eSuperTypes="#//ExportableNode">
<eStructuralFeatures xsi:type="ecore:EReference" name="reference" upperBound="-1"
eType="#//AttributeReference" eOpposite="#//AttributeReference/entity"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="SituationParticipant" eSuperTypes="#//Participant">
<eStructuralFeatures xsi:type="ecore:EReference" name="situationType" lowerBound="1"
eType="#//SituationType"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="parameter" upperBound="-1"
eType="#//SituationParameterReference" eOpposite="#//SituationParameterReference/situation"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isPast" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="SituationParameterReference" eSuperTypes="#//Node">
<eStructuralFeatures xsi:type="ecore:EReference" name="parameter" lowerBound="1"
eType="#//SituationTypeParameter"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="situation" lowerBound="1"
eType="#//SituationParticipant" eOpposite="#//SituationParticipant/parameter"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ExistsSituation" eSuperTypes="#//SituationParticipant">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isNegated" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Function" eSuperTypes="#//ExportableNode">
<eStructuralFeatures xsi:type="ecore:EReference" name="parameter" upperBound="-1"
eType="#//Parameter" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="function" eType="ecore:EClass ../../br.ufes.inf.nemo.ontouml.refontouml/model/RefOntoUML.ecore#//FormalAssociation"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Parameter">
<eStructuralFeatures xsi:type="ecore:EReference" name="value" lowerBound="1" eType="#//Node"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="parameter" eType="ecore:EClass ../../br.ufes.inf.nemo.ontouml.refontouml/model/RefOntoUML.ecore#//DataType"/>
</eClassifiers>
</ecore:EPackage>
| github:ecore:/data/vmsobral/sml2/br.ufes.inf.sml/model/sml.ecore | ecore | sml
SMLModel
elements
contextModel
primitiveContextElements
SituationType
name
parameter
elements
SituationTypeBlock
elements
SituationTypeElement
Node
sourceRelation
ExportableNode
nodeParameter
EntityParticipant
isOfType
RelatorParticipant
isOfType
links
Link
isOfType
entity
relator
SituationTypeParameter
nodeReference
name
AttributeReference
entity
attribute
ComparativeRelation
source
target
relation
parameter
isNegated
Literal
value
dataType
Participant
reference
SituationParticipant
situationType
parameter
isPast
SituationParameterReference
parameter
situation
ExistsSituation
isNegated
Function
parameter
function
Parameter
value
parameter | null | {"directed":true,"nodes":[{"nsPrefix":"sml","nsURI":"http://www.example.org/sml","name":"sml","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SMLModel","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SituationType","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SituationTypeBlock","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SituationTypeElement","instanceClass":null,"abstract":true,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Node","instanceClass":null,"abstract":true,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExportableNode","instanceClass":null,"abstract":true,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EntityParticipant","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RelatorParticipant","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Link","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SituationTypeParameter","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AttributeReference","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ComparativeRelation","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Literal","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Participant","instanceClass":null,"abstract":true,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SituationParticipant","instanceClass":null,"abstract":false,"id":15,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SituationParameterReference","instanceClass":null,"abstract":false,"id":16,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExistsSituation","instanceClass":null,"abstract":false,"id":17,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Function","instanceClass":null,"abstract":false,"id":18,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Parameter","instanceClass":null,"abstract":false,"id":19,"interface":false,"eClass":"EClass"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"elements","changeable":true,"resolveProxies":true,"lowerBound":0,"id":20,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"contextModel","changeable":true,"resolveProxies":true,"lowerBound":0,"id":21,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"primitiveContextElements","changeable":true,"resolveProxies":true,"lowerBound":0,"id":22,"derived":false},{"id":23,"eClass":"EGenericType"},{"id":24,"eClass":"EGenericType"},{"id":25,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":26,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"parameter","changeable":true,"resolveProxies":true,"lowerBound":0,"id":27,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"elements","changeable":true,"resolveProxies":true,"lowerBound":0,"id":28,"derived":false},{"id":29,"eClass":"EGenericType"},{"id":30,"eClass":"EGenericType"},{"id":31,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"elements","changeable":true,"resolveProxies":true,"lowerBound":0,"id":32,"derived":false},{"id":33,"eClass":"EGenericType"},{"id":34,"eClass":"EGenericType"},{"ordered":false,"upperBound":-1,"unique":true,"name":"sourceRelation","lowerBound":0,"id":35,"many":true,"required":false,"eClass":"EOperation"},{"id":36,"eClass":"EGenericType"},{"id":37,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"nodeParameter","changeable":true,"resolveProxies":true,"lowerBound":0,"id":38,"derived":false},{"id":39,"eClass":"EGenericType"},{"id":40,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"nodeReference","changeable":true,"resolveProxies":true,"lowerBound":1,"id":41,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"isOfType","changeable":true,"resolveProxies":true,"lowerBound":0,"id":42,"derived":false},{"id":43,"eClass":"EGenericType"},{"id":44,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"isOfType","changeable":true,"resolveProxies":true,"lowerBound":0,"id":45,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"links","changeable":true,"resolveProxies":true,"lowerBound":0,"id":46,"derived":false},{"id":47,"eClass":"EGenericType"},{"id":48,"eClass":"EGenericType"},{"id":49,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"relator","changeable":true,"resolveProxies":true,"lowerBound":1,"id":50,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"isOfType","changeable":true,"resolveProxies":true,"lowerBound":0,"id":51,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"entity","changeable":true,"resolveProxies":true,"lowerBound":1,"id":52,"derived":false},{"id":53,"eClass":"EGenericType"},{"id":54,"eClass":"EGenericType"},{"id":55,"eClass":"EGenericType"},{"id":56,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":57,"derived":false},{"id":58,"eClass":"EGenericType"},{"id":59,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"entity","changeable":true,"resolveProxies":true,"lowerBound":1,"id":60,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"attribute","changeable":true,"resolveProxies":true,"lowerBound":0,"id":61,"derived":false},{"id":62,"eClass":"EGenericType"},{"id":63,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"reference","changeable":true,"resolveProxies":true,"lowerBound":0,"id":64,"derived":false},{"id":65,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"source","changeable":true,"resolveProxies":true,"lowerBound":1,"id":66,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"target","changeable":true,"resolveProxies":true,"lowerBound":1,"id":67,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"relation","changeable":true,"resolveProxies":true,"lowerBound":0,"id":68,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"parameter","changeable":true,"lowerBound":0,"iD":false,"id":69,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isNegated","changeable":true,"lowerBound":0,"iD":false,"id":70,"derived":false},{"id":71,"eClass":"EGenericType"},{"id":72,"eClass":"EGenericType"},{"id":73,"eClass":"EGenericType"},{"id":74,"eClass":"EGenericType"},{"id":75,"eClass":"EGenericType"},{"id":76,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":0,"iD":false,"id":77,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"dataType","changeable":true,"resolveProxies":true,"lowerBound":0,"id":78,"derived":false},{"id":79,"eClass":"EGenericType"},{"id":80,"eClass":"EGenericType"},{"id":81,"eClass":"EGenericType"},{"id":82,"eClass":"EGenericType"},{"id":83,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"situationType","changeable":true,"resolveProxies":true,"lowerBound":1,"id":84,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"parameter","changeable":true,"resolveProxies":true,"lowerBound":0,"id":85,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isPast","changeable":true,"lowerBound":0,"iD":false,"id":86,"derived":false},{"id":87,"eClass":"EGenericType"},{"id":88,"eClass":"EGenericType"},{"id":89,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"situation","changeable":true,"resolveProxies":true,"lowerBound":1,"id":90,"derived":false},{"id":91,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"parameter","changeable":true,"resolveProxies":true,"lowerBound":1,"id":92,"derived":false},{"id":93,"eClass":"EGenericType"},{"id":94,"eClass":"EGenericType"},{"id":95,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isNegated","changeable":true,"lowerBound":0,"iD":false,"id":96,"derived":false},{"id":97,"eClass":"EGenericType"},{"id":98,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"parameter","changeable":true,"resolveProxies":true,"lowerBound":0,"id":99,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"function","changeable":true,"resolveProxies":true,"lowerBound":0,"id":100,"derived":false},{"id":101,"eClass":"EGenericType"},{"id":102,"eClass":"EGenericType"},{"id":103,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"resolveProxies":true,"lowerBound":1,"id":104,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"parameter","changeable":true,"resolveProxies":true,"lowerBound":0,"id":105,"derived":false},{"id":106,"eClass":"EGenericType"},{"id":107,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":0,"target":8},{"source":0,"target":9},{"source":0,"target":10},{"source":0,"target":11},{"source":0,"target":12},{"source":0,"target":13},{"source":0,"target":14},{"source":0,"target":15},{"source":0,"target":16},{"source":0,"target":17},{"source":0,"target":18},{"source":0,"target":19},{"source":1,"target":0},{"source":1,"target":20},{"source":1,"target":21},{"source":1,"target":22},{"source":20,"target":2},{"source":20,"target":23},{"source":20,"target":1},{"source":23,"target":2},{"source":21,"target":24},{"source":21,"target":1},{"source":22,"target":25},{"source":22,"target":1},{"source":2,"target":0},{"source":2,"target":26},{"source":2,"target":27},{"source":2,"target":28},{"source":26,"target":29},{"source":26,"target":2},{"source":27,"target":10},{"source":27,"target":30},{"source":27,"target":2},{"source":30,"target":10},{"source":28,"target":4},{"source":28,"target":31},{"source":28,"target":2},{"source":31,"target":4},{"source":3,"target":0},{"source":3,"target":5},{"source":3,"target":32},{"source":3,"target":33},{"source":32,"target":5},{"source":32,"target":34},{"source":32,"target":3},{"source":34,"target":5},{"source":33,"target":5},{"source":4,"target":0},{"source":5,"target":0},{"source":5,"target":4},{"source":5,"target":35},{"source":5,"target":36},{"source":35,"target":12},{"source":35,"target":37},{"source":35,"target":5},{"source":37,"target":12},{"source":36,"target":4},{"source":6,"target":0},{"source":6,"target":5},{"source":6,"target":38},{"source":6,"target":39},{"source":38,"target":10},{"source":38,"target":40},{"source":38,"target":6},{"source":38,"target":41},{"source":40,"target":10},{"source":39,"target":5},{"source":7,"target":0},{"source":7,"target":14},{"source":7,"target":42},{"source":7,"target":43},{"source":42,"target":44},{"source":42,"target":7},{"source":43,"target":14},{"source":8,"target":0},{"source":8,"target":14},{"source":8,"target":45},{"source":8,"target":46},{"source":8,"target":47},{"source":45,"target":48},{"source":45,"target":8},{"source":46,"target":9},{"source":46,"target":49},{"source":46,"target":8},{"source":46,"target":50},{"source":49,"target":9},{"source":47,"target":14},{"source":9,"target":0},{"source":9,"target":4},{"source":9,"target":51},{"source":9,"target":52},{"source":9,"target":50},{"source":9,"target":53},{"source":51,"target":54},{"source":51,"target":9},{"source":52,"target":7},{"source":52,"target":55},{"source":52,"target":9},{"source":55,"target":7},{"source":50,"target":8},{"source":50,"target":56},{"source":50,"target":9},{"source":50,"target":46},{"source":56,"target":8},{"source":53,"target":4},{"source":10,"target":0},{"source":10,"target":41},{"source":10,"target":57},{"source":41,"target":6},{"source":41,"target":58},{"source":41,"target":10},{"source":41,"target":38},{"source":58,"target":6},{"source":57,"target":59},{"source":57,"target":10},{"source":11,"target":0},{"source":11,"target":6},{"source":11,"target":60},{"source":11,"target":61},{"source":11,"target":62},{"source":60,"target":14},{"source":60,"target":63},{"source":60,"target":11},{"source":60,"target":64},{"source":63,"target":14},{"source":61,"target":65},{"source":61,"target":11},{"source":62,"target":6},{"source":12,"target":0},{"source":12,"target":4},{"source":12,"target":66},{"source":12,"target":67},{"source":12,"target":68},{"source":12,"target":69},{"source":12,"target":70},{"source":12,"target":71},{"source":66,"target":5},{"source":66,"target":72},{"source":66,"target":12},{"source":72,"target":5},{"source":67,"target":5},{"source":67,"target":73},{"source":67,"target":12},{"source":73,"target":5},{"source":68,"target":74},{"source":68,"target":12},{"source":69,"target":75},{"source":69,"target":12},{"source":70,"target":76},{"source":70,"target":12},{"source":71,"target":4},{"source":13,"target":0},{"source":13,"target":5},{"source":13,"target":77},{"source":13,"target":78},{"source":13,"target":79},{"source":77,"target":80},{"source":77,"target":13},{"source":78,"target":81},{"source":78,"target":13},{"source":79,"target":5},{"source":14,"target":0},{"source":14,"target":6},{"source":14,"target":64},{"source":14,"target":82},{"source":64,"target":11},{"source":64,"target":83},{"source":64,"target":14},{"source":64,"target":60},{"source":83,"target":11},{"source":82,"target":6},{"source":15,"target":0},{"source":15,"target":14},{"source":15,"target":84},{"source":15,"target":85},{"source":15,"target":86},{"source":15,"target":87},{"source":84,"target":2},{"source":84,"target":88},{"source":84,"target":15},{"source":88,"target":2},{"source":85,"target":16},{"source":85,"target":89},{"source":85,"target":15},{"source":85,"target":90},{"source":89,"target":16},{"source":86,"target":91},{"source":86,"target":15},{"source":87,"target":14},{"source":16,"target":0},{"source":16,"target":5},{"source":16,"target":92},{"source":16,"target":90},{"source":16,"target":93},{"source":92,"target":10},{"source":92,"target":94},{"source":92,"target":16},{"source":94,"target":10},{"source":90,"target":15},{"source":90,"target":95},{"source":90,"target":16},{"source":90,"target":85},{"source":95,"target":15},{"source":93,"target":5},{"source":17,"target":0},{"source":17,"target":15},{"source":17,"target":96},{"source":17,"target":97},{"source":96,"target":98},{"source":96,"target":17},{"source":97,"target":15},{"source":18,"target":0},{"source":18,"target":6},{"source":18,"target":99},{"source":18,"target":100},{"source":18,"target":101},{"source":99,"target":19},{"source":99,"target":102},{"source":99,"target":18},{"source":102,"target":19},{"source":100,"target":103},{"source":100,"target":18},{"source":101,"target":6},{"source":19,"target":0},{"source":19,"target":104},{"source":19,"target":105},{"source":104,"target":5},{"source":104,"target":106},{"source":104,"target":19},{"source":106,"target":5},{"source":105,"target":107},{"source":105,"target":19}],"multigraph":true} |
false | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0"
xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="plSql"
nsURI="http://www.editor.plsql/xtext/PlSql" nsPrefix="plSql">
<eClassifiers xsi:type="ecore:EClass" name="CompilationUnit"/>
<eClassifiers xsi:type="ecore:EClass" name="Procedure" eSuperTypes="#//CompilationUnit #//NameDeclaration">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="schemaName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="parameters" eType="#//ParameterSequence"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="invokerRights" eType="#//ProcedureInvokerRightsClause"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="content" eType="#//ProcedureContent"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Package" eSuperTypes="#//CompilationUnit #//NameDeclaration">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="schemaName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="invokerRights" eType="#//ProcedureInvokerRightsClause"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="items" upperBound="-1"
eType="#//Item" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="endName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ProcedureDeclaration" eSuperTypes="#//Item">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="parameters" eType="#//ParameterSequence"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ProcedureDefinition" eSuperTypes="#//Item #//NameDeclaration">
<eStructuralFeatures xsi:type="ecore:EReference" name="parameters" eType="#//ParameterSequence"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="implementation" eType="#//ProcedureImplementation"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Function" eSuperTypes="#//CompilationUnit #//NameDeclaration">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="schemaName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="parameters" eType="#//ParameterSequence"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="returnType" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="functionClauses" upperBound="-1"
eType="#//FunctionClause" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="content" eType="#//FunctionContent"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ParameterSequence">
<eStructuralFeatures xsi:type="ecore:EReference" name="parameters" upperBound="-1"
eType="#//ParameterDeclaration" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ParameterDeclaration" eSuperTypes="#//NameDeclaration">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="behavior" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="dataType" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="value" eType="#//ParameterValue"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ParameterValue">
<eStructuralFeatures xsi:type="ecore:EReference" name="expression" eType="#//Expression"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ProcedureInvokerRightsClause">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="right" eType="#//InvokerRight"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="FunctionInvokerRightsClause" eSuperTypes="#//FunctionClause">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="right" eType="#//InvokerRight"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="InvokerRight">
<eLiterals name="CURRENT_USER" literal="CURRENT_USER"/>
<eLiterals name="DEFINER" value="1" literal="DEFINER"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Pragma" eSuperTypes="#//Item"/>
<eClassifiers xsi:type="ecore:EClass" name="PragmaRestrictReferences" eSuperTypes="#//Pragma">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="restrictions" unique="false"
upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="PragmaTimestamp" eSuperTypes="#//Pragma">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="timestamp" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ProcedureContent"/>
<eClassifiers xsi:type="ecore:EClass" name="ProcedureImplementation" eSuperTypes="#//ProcedureContent">
<eStructuralFeatures xsi:type="ecore:EReference" name="declareSection" eType="#//DeclareSection"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="body" eType="#//StatementBody"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="FunctionContent"/>
<eClassifiers xsi:type="ecore:EClass" name="FunctionImplementation" eSuperTypes="#//FunctionContent">
<eStructuralFeatures xsi:type="ecore:EReference" name="declareSection" eType="#//DeclareSection"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="body" eType="#//StatementBody"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="FunctionClause"/>
<eClassifiers xsi:type="ecore:EClass" name="DeterministicClause" eSuperTypes="#//FunctionClause"/>
<eClassifiers xsi:type="ecore:EClass" name="ResultCacheClause" eSuperTypes="#//FunctionClause">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="dataSources" unique="false"
upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="PipelinedClause" eSuperTypes="#//FunctionClause"/>
<eClassifiers xsi:type="ecore:EClass" name="StatementBody">
<eStructuralFeatures xsi:type="ecore:EReference" name="statements" upperBound="-1"
eType="#//Statement" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="endName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="DeclareSection">
<eStructuralFeatures xsi:type="ecore:EReference" name="items" upperBound="-1"
eType="#//Item" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Item"/>
<eClassifiers xsi:type="ecore:EClass" name="ItemDeclaration" eSuperTypes="#//Item"/>
<eClassifiers xsi:type="ecore:EClass" name="ExternalProcedureDeclaration" eSuperTypes="#//ProcedureContent"/>
<eClassifiers xsi:type="ecore:EClass" name="VariableDeclaration" eSuperTypes="#//ItemDeclaration #//NameDeclaration">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isConstant" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="dataType" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isNotNull" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="value" eType="#//VariableValue"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="VariableValue">
<eStructuralFeatures xsi:type="ecore:EReference" name="expression" eType="#//Expression"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Expression"/>
<eClassifiers xsi:type="ecore:EClass" name="IntLiteralExpression" eSuperTypes="#//Expression">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="StringLiteralExpression" eSuperTypes="#//Expression">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="BooleanLiteralExpression" eSuperTypes="#//Expression">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="NullLiteralExpression" eSuperTypes="#//Expression"/>
<eClassifiers xsi:type="ecore:EClass" name="VariableRefExpression" eSuperTypes="#//Expression">
<eStructuralFeatures xsi:type="ecore:EReference" name="variable" eType="#//VariableRef"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Statement">
<eStructuralFeatures xsi:type="ecore:EReference" name="labels" upperBound="-1"
eType="#//Label" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Label">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="AssignmentStatement" eSuperTypes="#//Statement">
<eStructuralFeatures xsi:type="ecore:EReference" name="target" eType="#//AssignmentTarget"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="expression" eType="#//Expression"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="AssignmentTarget"/>
<eClassifiers xsi:type="ecore:EClass" name="VariableAssignmentTarget" eSuperTypes="#//AssignmentTarget">
<eStructuralFeatures xsi:type="ecore:EReference" name="variable" eType="#//VariableRef"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="BlockStatement" eSuperTypes="#//Statement">
<eStructuralFeatures xsi:type="ecore:EReference" name="declareSection" eType="#//DeclareSection"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="body" eType="#//StatementBody"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CaseStatement" eSuperTypes="#//Statement">
<eStructuralFeatures xsi:type="ecore:EReference" name="expression" eType="#//Expression"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="whenBranches" upperBound="-1"
eType="#//CaseStatementWhenBranch" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="elseBranch" eType="#//CaseStatementElseBranch"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="endLabel" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CaseStatementWhenBranch">
<eStructuralFeatures xsi:type="ecore:EReference" name="expression" eType="#//Expression"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="statements" upperBound="-1"
eType="#//Statement" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CaseStatementElseBranch">
<eStructuralFeatures xsi:type="ecore:EReference" name="statements" upperBound="-1"
eType="#//Statement" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CloseStatement" eSuperTypes="#//Statement">
<eStructuralFeatures xsi:type="ecore:EReference" name="cursor" eType="#//VariableRef"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ContinueStatement" eSuperTypes="#//Statement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="labelName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="whenExpression" eType="#//Expression"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ExitStatement" eSuperTypes="#//Statement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="labelName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="whenExpression" eType="#//Expression"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="FetchStatement" eSuperTypes="#//Statement">
<eStructuralFeatures xsi:type="ecore:EReference" name="cursor" eType="#//VariableRef"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="intoClause" eType="#//FetchStatementIntoClause"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="FetchStatementIntoClause">
<eStructuralFeatures xsi:type="ecore:EReference" name="targetVariables" upperBound="-1"
eType="#//VariableRef" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="FetchStatementSingleIntoClause" eSuperTypes="#//FetchStatementIntoClause"/>
<eClassifiers xsi:type="ecore:EClass" name="FetchStatementBulkIntoClause" eSuperTypes="#//FetchStatementIntoClause">
<eStructuralFeatures xsi:type="ecore:EReference" name="limitExpression" eType="#//Expression"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="GotoStatement" eSuperTypes="#//Statement">
<eStructuralFeatures xsi:type="ecore:EReference" name="labelName" eType="#//Label"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="IfStatement" eSuperTypes="#//Statement">
<eStructuralFeatures xsi:type="ecore:EReference" name="expression" eType="#//Expression"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="statements" upperBound="-1"
eType="#//Statement" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="elsifBranches" upperBound="-1"
eType="#//IfStatementElsifBranch" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="elseBranch" eType="#//IfStatementElseBranch"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="IfStatementElsifBranch">
<eStructuralFeatures xsi:type="ecore:EReference" name="expression" eType="#//Expression"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="statements" upperBound="-1"
eType="#//Statement" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="IfStatementElseBranch">
<eStructuralFeatures xsi:type="ecore:EReference" name="statements" upperBound="-1"
eType="#//Statement" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="LoopStatement" eSuperTypes="#//Statement">
<eStructuralFeatures xsi:type="ecore:EReference" name="statements" upperBound="-1"
eType="#//Statement" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="endLabel" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="BasicLoopStatement" eSuperTypes="#//LoopStatement"/>
<eClassifiers xsi:type="ecore:EClass" name="WhileLoopStatement" eSuperTypes="#//LoopStatement">
<eStructuralFeatures xsi:type="ecore:EReference" name="expression" eType="#//Expression"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ForLoopStatement" eSuperTypes="#//LoopStatement">
<eStructuralFeatures xsi:type="ecore:EReference" name="indexVariable" eType="#//LoopVariableDeclaration"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="lowerBound" eType="#//Expression"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="upperBound" eType="#//Expression"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ReturnStatement" eSuperTypes="#//Statement">
<eStructuralFeatures xsi:type="ecore:EReference" name="expression" eType="#//Expression"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="NullStatement" eSuperTypes="#//Statement"/>
<eClassifiers xsi:type="ecore:EClass" name="RaiseStatement" eSuperTypes="#//Statement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="exceptionName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="VariableRef">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isHostRef" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="name" eType="#//QualifiedName"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="QualifiedName">
<eStructuralFeatures xsi:type="ecore:EReference" name="names" upperBound="-1"
eType="#//Name" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Name">
<eStructuralFeatures xsi:type="ecore:EReference" name="declaration" eType="#//NameDeclaration"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="LoopVariableDeclaration" eSuperTypes="#//NameDeclaration"/>
<eClassifiers xsi:type="ecore:EClass" name="NameDeclaration">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
</ecore:EPackage>
| github:ecore:/data/blueiceprj/plsql-editor/plsql.editor.xtext/src-gen/plsql/editor/xtext/PlSql.ecore | ecore | plSql
CompilationUnit
Procedure
schemaName
parameters
invokerRights
content
Package
schemaName
invokerRights
items
endName
ProcedureDeclaration
name
parameters
ProcedureDefinition
parameters
implementation
Function
schemaName
parameters
returnType
functionClauses
content
ParameterSequence
parameters
ParameterDeclaration
behavior
dataType
value
ParameterValue
expression
ProcedureInvokerRightsClause
right
FunctionInvokerRightsClause
right
InvokerRight
CURRENT_USER
CURRENT_USER
DEFINER
DEFINER
Pragma
PragmaRestrictReferences
restrictions
PragmaTimestamp
timestamp
ProcedureContent
ProcedureImplementation
declareSection
body
FunctionContent
FunctionImplementation
declareSection
body
FunctionClause
DeterministicClause
ResultCacheClause
dataSources
PipelinedClause
StatementBody
statements
endName
DeclareSection
items
Item
ItemDeclaration
ExternalProcedureDeclaration
VariableDeclaration
isConstant
dataType
isNotNull
value
VariableValue
expression
Expression
IntLiteralExpression
value
StringLiteralExpression
value
BooleanLiteralExpression
value
NullLiteralExpression
VariableRefExpression
variable
Statement
labels
Label
name
AssignmentStatement
target
expression
AssignmentTarget
VariableAssignmentTarget
variable
BlockStatement
declareSection
body
CaseStatement
expression
whenBranches
elseBranch
endLabel
CaseStatementWhenBranch
expression
statements
CaseStatementElseBranch
statements
CloseStatement
cursor
ContinueStatement
labelName
whenExpression
ExitStatement
labelName
whenExpression
FetchStatement
cursor
intoClause
FetchStatementIntoClause
targetVariables
FetchStatementSingleIntoClause
FetchStatementBulkIntoClause
limitExpression
GotoStatement
labelName
IfStatement
expression
statements
elsifBranches
elseBranch
IfStatementElsifBranch
expression
statements
IfStatementElseBranch
statements
LoopStatement
statements
endLabel
BasicLoopStatement
WhileLoopStatement
expression
ForLoopStatement
indexVariable
lowerBound
upperBound
ReturnStatement
expression
NullStatement
RaiseStatement
exceptionName
VariableRef
isHostRef
name
QualifiedName
names
Name
declaration
LoopVariableDeclaration
NameDeclaration
name | null | {"directed":true,"nodes":[{"nsPrefix":"plSql","nsURI":"http://www.editor.plsql/xtext/PlSql","name":"plSql","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CompilationUnit","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Procedure","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Package","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ProcedureDeclaration","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ProcedureDefinition","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Function","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ParameterSequence","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ParameterDeclaration","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ParameterValue","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ProcedureInvokerRightsClause","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FunctionInvokerRightsClause","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"InvokerRight","instanceClass":null,"id":12,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Pragma","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PragmaRestrictReferences","instanceClass":null,"abstract":false,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PragmaTimestamp","instanceClass":null,"abstract":false,"id":15,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ProcedureContent","instanceClass":null,"abstract":false,"id":16,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ProcedureImplementation","instanceClass":null,"abstract":false,"id":17,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FunctionContent","instanceClass":null,"abstract":false,"id":18,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FunctionImplementation","instanceClass":null,"abstract":false,"id":19,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FunctionClause","instanceClass":null,"abstract":false,"id":20,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DeterministicClause","instanceClass":null,"abstract":false,"id":21,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ResultCacheClause","instanceClass":null,"abstract":false,"id":22,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PipelinedClause","instanceClass":null,"abstract":false,"id":23,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StatementBody","instanceClass":null,"abstract":false,"id":24,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DeclareSection","instanceClass":null,"abstract":false,"id":25,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Item","instanceClass":null,"abstract":false,"id":26,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ItemDeclaration","instanceClass":null,"abstract":false,"id":27,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExternalProcedureDeclaration","instanceClass":null,"abstract":false,"id":28,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"VariableDeclaration","instanceClass":null,"abstract":false,"id":29,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"VariableValue","instanceClass":null,"abstract":false,"id":30,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Expression","instanceClass":null,"abstract":false,"id":31,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IntLiteralExpression","instanceClass":null,"abstract":false,"id":32,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StringLiteralExpression","instanceClass":null,"abstract":false,"id":33,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BooleanLiteralExpression","instanceClass":null,"abstract":false,"id":34,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NullLiteralExpression","instanceClass":null,"abstract":false,"id":35,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"VariableRefExpression","instanceClass":null,"abstract":false,"id":36,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Statement","instanceClass":null,"abstract":false,"id":37,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Label","instanceClass":null,"abstract":false,"id":38,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AssignmentStatement","instanceClass":null,"abstract":false,"id":39,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AssignmentTarget","instanceClass":null,"abstract":false,"id":40,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"VariableAssignmentTarget","instanceClass":null,"abstract":false,"id":41,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BlockStatement","instanceClass":null,"abstract":false,"id":42,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CaseStatement","instanceClass":null,"abstract":false,"id":43,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CaseStatementWhenBranch","instanceClass":null,"abstract":false,"id":44,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CaseStatementElseBranch","instanceClass":null,"abstract":false,"id":45,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CloseStatement","instanceClass":null,"abstract":false,"id":46,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ContinueStatement","instanceClass":null,"abstract":false,"id":47,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExitStatement","instanceClass":null,"abstract":false,"id":48,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FetchStatement","instanceClass":null,"abstract":false,"id":49,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FetchStatementIntoClause","instanceClass":null,"abstract":false,"id":50,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FetchStatementSingleIntoClause","instanceClass":null,"abstract":false,"id":51,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FetchStatementBulkIntoClause","instanceClass":null,"abstract":false,"id":52,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"GotoStatement","instanceClass":null,"abstract":false,"id":53,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IfStatement","instanceClass":null,"abstract":false,"id":54,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IfStatementElsifBranch","instanceClass":null,"abstract":false,"id":55,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IfStatementElseBranch","instanceClass":null,"abstract":false,"id":56,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LoopStatement","instanceClass":null,"abstract":false,"id":57,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BasicLoopStatement","instanceClass":null,"abstract":false,"id":58,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"WhileLoopStatement","instanceClass":null,"abstract":false,"id":59,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ForLoopStatement","instanceClass":null,"abstract":false,"id":60,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ReturnStatement","instanceClass":null,"abstract":false,"id":61,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NullStatement","instanceClass":null,"abstract":false,"id":62,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RaiseStatement","instanceClass":null,"abstract":false,"id":63,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"VariableRef","instanceClass":null,"abstract":false,"id":64,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"QualifiedName","instanceClass":null,"abstract":false,"id":65,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Name","instanceClass":null,"abstract":false,"id":66,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LoopVariableDeclaration","instanceClass":null,"abstract":false,"id":67,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NameDeclaration","instanceClass":null,"abstract":false,"id":68,"interface":false,"eClass":"EClass"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"schemaName","changeable":true,"lowerBound":0,"iD":false,"id":69,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"parameters","changeable":true,"resolveProxies":true,"lowerBound":0,"id":70,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"invokerRights","changeable":true,"resolveProxies":true,"lowerBound":0,"id":71,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"content","changeable":true,"resolveProxies":true,"lowerBound":0,"id":72,"derived":false},{"id":73,"eClass":"EGenericType"},{"id":74,"eClass":"EGenericType"},{"id":75,"eClass":"EGenericType"},{"id":76,"eClass":"EGenericType"},{"id":77,"eClass":"EGenericType"},{"id":78,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"schemaName","changeable":true,"lowerBound":0,"iD":false,"id":79,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"invokerRights","changeable":true,"resolveProxies":true,"lowerBound":0,"id":80,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"items","changeable":true,"resolveProxies":true,"lowerBound":0,"id":81,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"endName","changeable":true,"lowerBound":0,"iD":false,"id":82,"derived":false},{"id":83,"eClass":"EGenericType"},{"id":84,"eClass":"EGenericType"},{"id":85,"eClass":"EGenericType"},{"id":86,"eClass":"EGenericType"},{"id":87,"eClass":"EGenericType"},{"id":88,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":89,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"parameters","changeable":true,"resolveProxies":true,"lowerBound":0,"id":90,"derived":false},{"id":91,"eClass":"EGenericType"},{"id":92,"eClass":"EGenericType"},{"id":93,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"parameters","changeable":true,"resolveProxies":true,"lowerBound":0,"id":94,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"implementation","changeable":true,"resolveProxies":true,"lowerBound":0,"id":95,"derived":false},{"id":96,"eClass":"EGenericType"},{"id":97,"eClass":"EGenericType"},{"id":98,"eClass":"EGenericType"},{"id":99,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"schemaName","changeable":true,"lowerBound":0,"iD":false,"id":100,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"parameters","changeable":true,"resolveProxies":true,"lowerBound":0,"id":101,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"returnType","changeable":true,"lowerBound":0,"iD":false,"id":102,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"functionClauses","changeable":true,"resolveProxies":true,"lowerBound":0,"id":103,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"content","changeable":true,"resolveProxies":true,"lowerBound":0,"id":104,"derived":false},{"id":105,"eClass":"EGenericType"},{"id":106,"eClass":"EGenericType"},{"id":107,"eClass":"EGenericType"},{"id":108,"eClass":"EGenericType"},{"id":109,"eClass":"EGenericType"},{"id":110,"eClass":"EGenericType"},{"id":111,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"parameters","changeable":true,"resolveProxies":true,"lowerBound":0,"id":112,"derived":false},{"id":113,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"behavior","changeable":true,"lowerBound":0,"iD":false,"id":114,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"dataType","changeable":true,"lowerBound":0,"iD":false,"id":115,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"resolveProxies":true,"lowerBound":0,"id":116,"derived":false},{"id":117,"eClass":"EGenericType"},{"id":118,"eClass":"EGenericType"},{"id":119,"eClass":"EGenericType"},{"id":120,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"expression","changeable":true,"resolveProxies":true,"lowerBound":0,"id":121,"derived":false},{"id":122,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"right","changeable":true,"lowerBound":0,"iD":false,"id":123,"derived":false},{"id":124,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"right","changeable":true,"lowerBound":0,"iD":false,"id":125,"derived":false},{"id":126,"eClass":"EGenericType"},{"id":127,"eClass":"EGenericType"},{"name":"CURRENT_USER","id":128,"value":0,"literal":"CURRENT_USER","eClass":"EEnumLiteral"},{"name":"DEFINER","id":129,"value":1,"literal":"DEFINER","eClass":"EEnumLiteral"},{"id":130,"eClass":"EGenericType"},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"restrictions","changeable":true,"lowerBound":0,"iD":false,"id":131,"derived":false},{"id":132,"eClass":"EGenericType"},{"id":133,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"timestamp","changeable":true,"lowerBound":0,"iD":false,"id":134,"derived":false},{"id":135,"eClass":"EGenericType"},{"id":136,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"declareSection","changeable":true,"resolveProxies":true,"lowerBound":0,"id":137,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"body","changeable":true,"resolveProxies":true,"lowerBound":0,"id":138,"derived":false},{"id":139,"eClass":"EGenericType"},{"id":140,"eClass":"EGenericType"},{"id":141,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"declareSection","changeable":true,"resolveProxies":true,"lowerBound":0,"id":142,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"body","changeable":true,"resolveProxies":true,"lowerBound":0,"id":143,"derived":false},{"id":144,"eClass":"EGenericType"},{"id":145,"eClass":"EGenericType"},{"id":146,"eClass":"EGenericType"},{"id":147,"eClass":"EGenericType"},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"dataSources","changeable":true,"lowerBound":0,"iD":false,"id":148,"derived":false},{"id":149,"eClass":"EGenericType"},{"id":150,"eClass":"EGenericType"},{"id":151,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"statements","changeable":true,"resolveProxies":true,"lowerBound":0,"id":152,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"endName","changeable":true,"lowerBound":0,"iD":false,"id":153,"derived":false},{"id":154,"eClass":"EGenericType"},{"id":155,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"items","changeable":true,"resolveProxies":true,"lowerBound":0,"id":156,"derived":false},{"id":157,"eClass":"EGenericType"},{"id":158,"eClass":"EGenericType"},{"id":159,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isConstant","changeable":true,"lowerBound":0,"iD":false,"id":160,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"dataType","changeable":true,"lowerBound":0,"iD":false,"id":161,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isNotNull","changeable":true,"lowerBound":0,"iD":false,"id":162,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"resolveProxies":true,"lowerBound":0,"id":163,"derived":false},{"id":164,"eClass":"EGenericType"},{"id":165,"eClass":"EGenericType"},{"id":166,"eClass":"EGenericType"},{"id":167,"eClass":"EGenericType"},{"id":168,"eClass":"EGenericType"},{"id":169,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"expression","changeable":true,"resolveProxies":true,"lowerBound":0,"id":170,"derived":false},{"id":171,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":0,"iD":false,"id":172,"derived":false},{"id":173,"eClass":"EGenericType"},{"id":174,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":0,"iD":false,"id":175,"derived":false},{"id":176,"eClass":"EGenericType"},{"id":177,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":0,"iD":false,"id":178,"derived":false},{"id":179,"eClass":"EGenericType"},{"id":180,"eClass":"EGenericType"},{"id":181,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"variable","changeable":true,"resolveProxies":true,"lowerBound":0,"id":182,"derived":false},{"id":183,"eClass":"EGenericType"},{"id":184,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"labels","changeable":true,"resolveProxies":true,"lowerBound":0,"id":185,"derived":false},{"id":186,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":187,"derived":false},{"id":188,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"target","changeable":true,"resolveProxies":true,"lowerBound":0,"id":189,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"expression","changeable":true,"resolveProxies":true,"lowerBound":0,"id":190,"derived":false},{"id":191,"eClass":"EGenericType"},{"id":192,"eClass":"EGenericType"},{"id":193,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"variable","changeable":true,"resolveProxies":true,"lowerBound":0,"id":194,"derived":false},{"id":195,"eClass":"EGenericType"},{"id":196,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"declareSection","changeable":true,"resolveProxies":true,"lowerBound":0,"id":197,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"body","changeable":true,"resolveProxies":true,"lowerBound":0,"id":198,"derived":false},{"id":199,"eClass":"EGenericType"},{"id":200,"eClass":"EGenericType"},{"id":201,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"expression","changeable":true,"resolveProxies":true,"lowerBound":0,"id":202,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"whenBranches","changeable":true,"resolveProxies":true,"lowerBound":0,"id":203,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"elseBranch","changeable":true,"resolveProxies":true,"lowerBound":0,"id":204,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"endLabel","changeable":true,"lowerBound":0,"iD":false,"id":205,"derived":false},{"id":206,"eClass":"EGenericType"},{"id":207,"eClass":"EGenericType"},{"id":208,"eClass":"EGenericType"},{"id":209,"eClass":"EGenericType"},{"id":210,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"expression","changeable":true,"resolveProxies":true,"lowerBound":0,"id":211,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"statements","changeable":true,"resolveProxies":true,"lowerBound":0,"id":212,"derived":false},{"id":213,"eClass":"EGenericType"},{"id":214,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"statements","changeable":true,"resolveProxies":true,"lowerBound":0,"id":215,"derived":false},{"id":216,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"cursor","changeable":true,"resolveProxies":true,"lowerBound":0,"id":217,"derived":false},{"id":218,"eClass":"EGenericType"},{"id":219,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"labelName","changeable":true,"lowerBound":0,"iD":false,"id":220,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"whenExpression","changeable":true,"resolveProxies":true,"lowerBound":0,"id":221,"derived":false},{"id":222,"eClass":"EGenericType"},{"id":223,"eClass":"EGenericType"},{"id":224,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"labelName","changeable":true,"lowerBound":0,"iD":false,"id":225,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"whenExpression","changeable":true,"resolveProxies":true,"lowerBound":0,"id":226,"derived":false},{"id":227,"eClass":"EGenericType"},{"id":228,"eClass":"EGenericType"},{"id":229,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"cursor","changeable":true,"resolveProxies":true,"lowerBound":0,"id":230,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"intoClause","changeable":true,"resolveProxies":true,"lowerBound":0,"id":231,"derived":false},{"id":232,"eClass":"EGenericType"},{"id":233,"eClass":"EGenericType"},{"id":234,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"targetVariables","changeable":true,"resolveProxies":true,"lowerBound":0,"id":235,"derived":false},{"id":236,"eClass":"EGenericType"},{"id":237,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"limitExpression","changeable":true,"resolveProxies":true,"lowerBound":0,"id":238,"derived":false},{"id":239,"eClass":"EGenericType"},{"id":240,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"labelName","changeable":true,"resolveProxies":true,"lowerBound":0,"id":241,"derived":false},{"id":242,"eClass":"EGenericType"},{"id":243,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"expression","changeable":true,"resolveProxies":true,"lowerBound":0,"id":244,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"statements","changeable":true,"resolveProxies":true,"lowerBound":0,"id":245,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"elsifBranches","changeable":true,"resolveProxies":true,"lowerBound":0,"id":246,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"elseBranch","changeable":true,"resolveProxies":true,"lowerBound":0,"id":247,"derived":false},{"id":248,"eClass":"EGenericType"},{"id":249,"eClass":"EGenericType"},{"id":250,"eClass":"EGenericType"},{"id":251,"eClass":"EGenericType"},{"id":252,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"expression","changeable":true,"resolveProxies":true,"lowerBound":0,"id":253,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"statements","changeable":true,"resolveProxies":true,"lowerBound":0,"id":254,"derived":false},{"id":255,"eClass":"EGenericType"},{"id":256,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"statements","changeable":true,"resolveProxies":true,"lowerBound":0,"id":257,"derived":false},{"id":258,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"statements","changeable":true,"resolveProxies":true,"lowerBound":0,"id":259,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"endLabel","changeable":true,"lowerBound":0,"iD":false,"id":260,"derived":false},{"id":261,"eClass":"EGenericType"},{"id":262,"eClass":"EGenericType"},{"id":263,"eClass":"EGenericType"},{"id":264,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"expression","changeable":true,"resolveProxies":true,"lowerBound":0,"id":265,"derived":false},{"id":266,"eClass":"EGenericType"},{"id":267,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"indexVariable","changeable":true,"resolveProxies":true,"lowerBound":0,"id":268,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"lowerBound","changeable":true,"resolveProxies":true,"lowerBound":0,"id":269,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"upperBound","changeable":true,"resolveProxies":true,"lowerBound":0,"id":270,"derived":false},{"id":271,"eClass":"EGenericType"},{"id":272,"eClass":"EGenericType"},{"id":273,"eClass":"EGenericType"},{"id":274,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"expression","changeable":true,"resolveProxies":true,"lowerBound":0,"id":275,"derived":false},{"id":276,"eClass":"EGenericType"},{"id":277,"eClass":"EGenericType"},{"id":278,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"exceptionName","changeable":true,"lowerBound":0,"iD":false,"id":279,"derived":false},{"id":280,"eClass":"EGenericType"},{"id":281,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isHostRef","changeable":true,"lowerBound":0,"iD":false,"id":282,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"resolveProxies":true,"lowerBound":0,"id":283,"derived":false},{"id":284,"eClass":"EGenericType"},{"id":285,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"names","changeable":true,"resolveProxies":true,"lowerBound":0,"id":286,"derived":false},{"id":287,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"declaration","changeable":true,"resolveProxies":true,"lowerBound":0,"id":288,"derived":false},{"id":289,"eClass":"EGenericType"},{"id":290,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":291,"derived":false},{"id":292,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":0,"target":8},{"source":0,"target":9},{"source":0,"target":10},{"source":0,"target":11},{"source":0,"target":12},{"source":0,"target":13},{"source":0,"target":14},{"source":0,"target":15},{"source":0,"target":16},{"source":0,"target":17},{"source":0,"target":18},{"source":0,"target":19},{"source":0,"target":20},{"source":0,"target":21},{"source":0,"target":22},{"source":0,"target":23},{"source":0,"target":24},{"source":0,"target":25},{"source":0,"target":26},{"source":0,"target":27},{"source":0,"target":28},{"source":0,"target":29},{"source":0,"target":30},{"source":0,"target":31},{"source":0,"target":32},{"source":0,"target":33},{"source":0,"target":34},{"source":0,"target":35},{"source":0,"target":36},{"source":0,"target":37},{"source":0,"target":38},{"source":0,"target":39},{"source":0,"target":40},{"source":0,"target":41},{"source":0,"target":42},{"source":0,"target":43},{"source":0,"target":44},{"source":0,"target":45},{"source":0,"target":46},{"source":0,"target":47},{"source":0,"target":48},{"source":0,"target":49},{"source":0,"target":50},{"source":0,"target":51},{"source":0,"target":52},{"source":0,"target":53},{"source":0,"target":54},{"source":0,"target":55},{"source":0,"target":56},{"source":0,"target":57},{"source":0,"target":58},{"source":0,"target":59},{"source":0,"target":60},{"source":0,"target":61},{"source":0,"target":62},{"source":0,"target":63},{"source":0,"target":64},{"source":0,"target":65},{"source":0,"target":66},{"source":0,"target":67},{"source":0,"target":68},{"source":1,"target":0},{"source":2,"target":0},{"source":2,"target":1},{"source":2,"target":68},{"source":2,"target":69},{"source":2,"target":70},{"source":2,"target":71},{"source":2,"target":72},{"source":2,"target":73},{"source":2,"target":74},{"source":69,"target":75},{"source":69,"target":2},{"source":70,"target":7},{"source":70,"target":76},{"source":70,"target":2},{"source":76,"target":7},{"source":71,"target":10},{"source":71,"target":77},{"source":71,"target":2},{"source":77,"target":10},{"source":72,"target":16},{"source":72,"target":78},{"source":72,"target":2},{"source":78,"target":16},{"source":73,"target":1},{"source":74,"target":68},{"source":3,"target":0},{"source":3,"target":1},{"source":3,"target":68},{"source":3,"target":79},{"source":3,"target":80},{"source":3,"target":81},{"source":3,"target":82},{"source":3,"target":83},{"source":3,"target":84},{"source":79,"target":85},{"source":79,"target":3},{"source":80,"target":10},{"source":80,"target":86},{"source":80,"target":3},{"source":86,"target":10},{"source":81,"target":26},{"source":81,"target":87},{"source":81,"target":3},{"source":87,"target":26},{"source":82,"target":88},{"source":82,"target":3},{"source":83,"target":1},{"source":84,"target":68},{"source":4,"target":0},{"source":4,"target":26},{"source":4,"target":89},{"source":4,"target":90},{"source":4,"target":91},{"source":89,"target":92},{"source":89,"target":4},{"source":90,"target":7},{"source":90,"target":93},{"source":90,"target":4},{"source":93,"target":7},{"source":91,"target":26},{"source":5,"target":0},{"source":5,"target":26},{"source":5,"target":68},{"source":5,"target":94},{"source":5,"target":95},{"source":5,"target":96},{"source":5,"target":97},{"source":94,"target":7},{"source":94,"target":98},{"source":94,"target":5},{"source":98,"target":7},{"source":95,"target":17},{"source":95,"target":99},{"source":95,"target":5},{"source":99,"target":17},{"source":96,"target":26},{"source":97,"target":68},{"source":6,"target":0},{"source":6,"target":1},{"source":6,"target":68},{"source":6,"target":100},{"source":6,"target":101},{"source":6,"target":102},{"source":6,"target":103},{"source":6,"target":104},{"source":6,"target":105},{"source":6,"target":106},{"source":100,"target":107},{"source":100,"target":6},{"source":101,"target":7},{"source":101,"target":108},{"source":101,"target":6},{"source":108,"target":7},{"source":102,"target":109},{"source":102,"target":6},{"source":103,"target":20},{"source":103,"target":110},{"source":103,"target":6},{"source":110,"target":20},{"source":104,"target":18},{"source":104,"target":111},{"source":104,"target":6},{"source":111,"target":18},{"source":105,"target":1},{"source":106,"target":68},{"source":7,"target":0},{"source":7,"target":112},{"source":112,"target":8},{"source":112,"target":113},{"source":112,"target":7},{"source":113,"target":8},{"source":8,"target":0},{"source":8,"target":68},{"source":8,"target":114},{"source":8,"target":115},{"source":8,"target":116},{"source":8,"target":117},{"source":114,"target":118},{"source":114,"target":8},{"source":115,"target":119},{"source":115,"target":8},{"source":116,"target":9},{"source":116,"target":120},{"source":116,"target":8},{"source":120,"target":9},{"source":117,"target":68},{"source":9,"target":0},{"source":9,"target":121},{"source":121,"target":31},{"source":121,"target":122},{"source":121,"target":9},{"source":122,"target":31},{"source":10,"target":0},{"source":10,"target":123},{"source":123,"target":12},{"source":123,"target":124},{"source":123,"target":10},{"source":124,"target":12},{"source":11,"target":0},{"source":11,"target":20},{"source":11,"target":125},{"source":11,"target":126},{"source":125,"target":12},{"source":125,"target":127},{"source":125,"target":11},{"source":127,"target":12},{"source":126,"target":20},{"source":12,"target":0},{"source":12,"target":128},{"source":12,"target":129},{"source":128,"target":12},{"source":129,"target":12},{"source":13,"target":0},{"source":13,"target":26},{"source":13,"target":130},{"source":130,"target":26},{"source":14,"target":0},{"source":14,"target":13},{"source":14,"target":131},{"source":14,"target":132},{"source":131,"target":133},{"source":131,"target":14},{"source":132,"target":13},{"source":15,"target":0},{"source":15,"target":13},{"source":15,"target":134},{"source":15,"target":135},{"source":134,"target":136},{"source":134,"target":15},{"source":135,"target":13},{"source":16,"target":0},{"source":17,"target":0},{"source":17,"target":16},{"source":17,"target":137},{"source":17,"target":138},{"source":17,"target":139},{"source":137,"target":25},{"source":137,"target":140},{"source":137,"target":17},{"source":140,"target":25},{"source":138,"target":24},{"source":138,"target":141},{"source":138,"target":17},{"source":141,"target":24},{"source":139,"target":16},{"source":18,"target":0},{"source":19,"target":0},{"source":19,"target":18},{"source":19,"target":142},{"source":19,"target":143},{"source":19,"target":144},{"source":142,"target":25},{"source":142,"target":145},{"source":142,"target":19},{"source":145,"target":25},{"source":143,"target":24},{"source":143,"target":146},{"source":143,"target":19},{"source":146,"target":24},{"source":144,"target":18},{"source":20,"target":0},{"source":21,"target":0},{"source":21,"target":20},{"source":21,"target":147},{"source":147,"target":20},{"source":22,"target":0},{"source":22,"target":20},{"source":22,"target":148},{"source":22,"target":149},{"source":148,"target":150},{"source":148,"target":22},{"source":149,"target":20},{"source":23,"target":0},{"source":23,"target":20},{"source":23,"target":151},{"source":151,"target":20},{"source":24,"target":0},{"source":24,"target":152},{"source":24,"target":153},{"source":152,"target":37},{"source":152,"target":154},{"source":152,"target":24},{"source":154,"target":37},{"source":153,"target":155},{"source":153,"target":24},{"source":25,"target":0},{"source":25,"target":156},{"source":156,"target":26},{"source":156,"target":157},{"source":156,"target":25},{"source":157,"target":26},{"source":26,"target":0},{"source":27,"target":0},{"source":27,"target":26},{"source":27,"target":158},{"source":158,"target":26},{"source":28,"target":0},{"source":28,"target":16},{"source":28,"target":159},{"source":159,"target":16},{"source":29,"target":0},{"source":29,"target":27},{"source":29,"target":68},{"source":29,"target":160},{"source":29,"target":161},{"source":29,"target":162},{"source":29,"target":163},{"source":29,"target":164},{"source":29,"target":165},{"source":160,"target":166},{"source":160,"target":29},{"source":161,"target":167},{"source":161,"target":29},{"source":162,"target":168},{"source":162,"target":29},{"source":163,"target":30},{"source":163,"target":169},{"source":163,"target":29},{"source":169,"target":30},{"source":164,"target":27},{"source":165,"target":68},{"source":30,"target":0},{"source":30,"target":170},{"source":170,"target":31},{"source":170,"target":171},{"source":170,"target":30},{"source":171,"target":31},{"source":31,"target":0},{"source":32,"target":0},{"source":32,"target":31},{"source":32,"target":172},{"source":32,"target":173},{"source":172,"target":174},{"source":172,"target":32},{"source":173,"target":31},{"source":33,"target":0},{"source":33,"target":31},{"source":33,"target":175},{"source":33,"target":176},{"source":175,"target":177},{"source":175,"target":33},{"source":176,"target":31},{"source":34,"target":0},{"source":34,"target":31},{"source":34,"target":178},{"source":34,"target":179},{"source":178,"target":180},{"source":178,"target":34},{"source":179,"target":31},{"source":35,"target":0},{"source":35,"target":31},{"source":35,"target":181},{"source":181,"target":31},{"source":36,"target":0},{"source":36,"target":31},{"source":36,"target":182},{"source":36,"target":183},{"source":182,"target":64},{"source":182,"target":184},{"source":182,"target":36},{"source":184,"target":64},{"source":183,"target":31},{"source":37,"target":0},{"source":37,"target":185},{"source":185,"target":38},{"source":185,"target":186},{"source":185,"target":37},{"source":186,"target":38},{"source":38,"target":0},{"source":38,"target":187},{"source":187,"target":188},{"source":187,"target":38},{"source":39,"target":0},{"source":39,"target":37},{"source":39,"target":189},{"source":39,"target":190},{"source":39,"target":191},{"source":189,"target":40},{"source":189,"target":192},{"source":189,"target":39},{"source":192,"target":40},{"source":190,"target":31},{"source":190,"target":193},{"source":190,"target":39},{"source":193,"target":31},{"source":191,"target":37},{"source":40,"target":0},{"source":41,"target":0},{"source":41,"target":40},{"source":41,"target":194},{"source":41,"target":195},{"source":194,"target":64},{"source":194,"target":196},{"source":194,"target":41},{"source":196,"target":64},{"source":195,"target":40},{"source":42,"target":0},{"source":42,"target":37},{"source":42,"target":197},{"source":42,"target":198},{"source":42,"target":199},{"source":197,"target":25},{"source":197,"target":200},{"source":197,"target":42},{"source":200,"target":25},{"source":198,"target":24},{"source":198,"target":201},{"source":198,"target":42},{"source":201,"target":24},{"source":199,"target":37},{"source":43,"target":0},{"source":43,"target":37},{"source":43,"target":202},{"source":43,"target":203},{"source":43,"target":204},{"source":43,"target":205},{"source":43,"target":206},{"source":202,"target":31},{"source":202,"target":207},{"source":202,"target":43},{"source":207,"target":31},{"source":203,"target":44},{"source":203,"target":208},{"source":203,"target":43},{"source":208,"target":44},{"source":204,"target":45},{"source":204,"target":209},{"source":204,"target":43},{"source":209,"target":45},{"source":205,"target":210},{"source":205,"target":43},{"source":206,"target":37},{"source":44,"target":0},{"source":44,"target":211},{"source":44,"target":212},{"source":211,"target":31},{"source":211,"target":213},{"source":211,"target":44},{"source":213,"target":31},{"source":212,"target":37},{"source":212,"target":214},{"source":212,"target":44},{"source":214,"target":37},{"source":45,"target":0},{"source":45,"target":215},{"source":215,"target":37},{"source":215,"target":216},{"source":215,"target":45},{"source":216,"target":37},{"source":46,"target":0},{"source":46,"target":37},{"source":46,"target":217},{"source":46,"target":218},{"source":217,"target":64},{"source":217,"target":219},{"source":217,"target":46},{"source":219,"target":64},{"source":218,"target":37},{"source":47,"target":0},{"source":47,"target":37},{"source":47,"target":220},{"source":47,"target":221},{"source":47,"target":222},{"source":220,"target":223},{"source":220,"target":47},{"source":221,"target":31},{"source":221,"target":224},{"source":221,"target":47},{"source":224,"target":31},{"source":222,"target":37},{"source":48,"target":0},{"source":48,"target":37},{"source":48,"target":225},{"source":48,"target":226},{"source":48,"target":227},{"source":225,"target":228},{"source":225,"target":48},{"source":226,"target":31},{"source":226,"target":229},{"source":226,"target":48},{"source":229,"target":31},{"source":227,"target":37},{"source":49,"target":0},{"source":49,"target":37},{"source":49,"target":230},{"source":49,"target":231},{"source":49,"target":232},{"source":230,"target":64},{"source":230,"target":233},{"source":230,"target":49},{"source":233,"target":64},{"source":231,"target":50},{"source":231,"target":234},{"source":231,"target":49},{"source":234,"target":50},{"source":232,"target":37},{"source":50,"target":0},{"source":50,"target":235},{"source":235,"target":64},{"source":235,"target":236},{"source":235,"target":50},{"source":236,"target":64},{"source":51,"target":0},{"source":51,"target":50},{"source":51,"target":237},{"source":237,"target":50},{"source":52,"target":0},{"source":52,"target":50},{"source":52,"target":238},{"source":52,"target":239},{"source":238,"target":31},{"source":238,"target":240},{"source":238,"target":52},{"source":240,"target":31},{"source":239,"target":50},{"source":53,"target":0},{"source":53,"target":37},{"source":53,"target":241},{"source":53,"target":242},{"source":241,"target":38},{"source":241,"target":243},{"source":241,"target":53},{"source":243,"target":38},{"source":242,"target":37},{"source":54,"target":0},{"source":54,"target":37},{"source":54,"target":244},{"source":54,"target":245},{"source":54,"target":246},{"source":54,"target":247},{"source":54,"target":248},{"source":244,"target":31},{"source":244,"target":249},{"source":244,"target":54},{"source":249,"target":31},{"source":245,"target":37},{"source":245,"target":250},{"source":245,"target":54},{"source":250,"target":37},{"source":246,"target":55},{"source":246,"target":251},{"source":246,"target":54},{"source":251,"target":55},{"source":247,"target":56},{"source":247,"target":252},{"source":247,"target":54},{"source":252,"target":56},{"source":248,"target":37},{"source":55,"target":0},{"source":55,"target":253},{"source":55,"target":254},{"source":253,"target":31},{"source":253,"target":255},{"source":253,"target":55},{"source":255,"target":31},{"source":254,"target":37},{"source":254,"target":256},{"source":254,"target":55},{"source":256,"target":37},{"source":56,"target":0},{"source":56,"target":257},{"source":257,"target":37},{"source":257,"target":258},{"source":257,"target":56},{"source":258,"target":37},{"source":57,"target":0},{"source":57,"target":37},{"source":57,"target":259},{"source":57,"target":260},{"source":57,"target":261},{"source":259,"target":37},{"source":259,"target":262},{"source":259,"target":57},{"source":262,"target":37},{"source":260,"target":263},{"source":260,"target":57},{"source":261,"target":37},{"source":58,"target":0},{"source":58,"target":57},{"source":58,"target":264},{"source":264,"target":57},{"source":59,"target":0},{"source":59,"target":57},{"source":59,"target":265},{"source":59,"target":266},{"source":265,"target":31},{"source":265,"target":267},{"source":265,"target":59},{"source":267,"target":31},{"source":266,"target":57},{"source":60,"target":0},{"source":60,"target":57},{"source":60,"target":268},{"source":60,"target":269},{"source":60,"target":270},{"source":60,"target":271},{"source":268,"target":67},{"source":268,"target":272},{"source":268,"target":60},{"source":272,"target":67},{"source":269,"target":31},{"source":269,"target":273},{"source":269,"target":60},{"source":273,"target":31},{"source":270,"target":31},{"source":270,"target":274},{"source":270,"target":60},{"source":274,"target":31},{"source":271,"target":57},{"source":61,"target":0},{"source":61,"target":37},{"source":61,"target":275},{"source":61,"target":276},{"source":275,"target":31},{"source":275,"target":277},{"source":275,"target":61},{"source":277,"target":31},{"source":276,"target":37},{"source":62,"target":0},{"source":62,"target":37},{"source":62,"target":278},{"source":278,"target":37},{"source":63,"target":0},{"source":63,"target":37},{"source":63,"target":279},{"source":63,"target":280},{"source":279,"target":281},{"source":279,"target":63},{"source":280,"target":37},{"source":64,"target":0},{"source":64,"target":282},{"source":64,"target":283},{"source":282,"target":284},{"source":282,"target":64},{"source":283,"target":65},{"source":283,"target":285},{"source":283,"target":64},{"source":285,"target":65},{"source":65,"target":0},{"source":65,"target":286},{"source":286,"target":66},{"source":286,"target":287},{"source":286,"target":65},{"source":287,"target":66},{"source":66,"target":0},{"source":66,"target":288},{"source":288,"target":68},{"source":288,"target":289},{"source":288,"target":66},{"source":289,"target":68},{"source":67,"target":0},{"source":67,"target":68},{"source":67,"target":290},{"source":290,"target":68},{"source":68,"target":0},{"source":68,"target":291},{"source":291,"target":292},{"source":291,"target":68}],"multigraph":true} |
false | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="GUIdancerComponentHierarchy" nsURI="GUIdancerComponentHierarchy"
nsPrefix="GUIdancerComponentHierarchy">
<eClassifiers xsi:type="ecore:EClass" name="placeholder4466281"/>
<eClassifiers xsi:type="ecore:EClass" name="placeholder9014581" eSuperTypes="#//placeholder4466281"/>
<eClassifiers xsi:type="ecore:EClass" name="Application">
<eOperations name="Activate"/>
<eOperations name="placeholder843371"/>
<eOperations name="placeholder5890051"/>
<eOperations name="placeholder4926771"/>
<eOperations name="Pause"/>
<eOperations name="Restart"/>
<eOperations name="placeholder2398051"/>
<eOperations name="placeholder161461"/>
<eOperations name="Wait"/>
<eOperations name="placeholder7751531"/>
<eOperations name="placeholder1164401"/>
<eOperations name="placeholder8100081"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="placeholder7018761"/>
<eClassifiers xsi:type="ecore:EClass" name="placeholder9936591" eSuperTypes="#//placeholder9014581">
<eOperations name="placeholder6704321"/>
<eOperations name="placeholder231581"/>
<eOperations name="placeholder303731"/>
<eOperations name="placeholder8624861"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="List" eSuperTypes="#//placeholder4466281">
<eOperations name="placeholder2892911"/>
<eOperations name="placeholder3906831"/>
<eOperations name="placeholder3187651"/>
<eOperations name="placeholder5713431"/>
<eOperations name="placeholder6579231"/>
<eOperations name="placeholder2094831"/>
<eOperations name="placeholder1658561"/>
<eOperations name="placeholder173751"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Label" eSuperTypes="#//placeholder4466281"/>
<eClassifiers xsi:type="ecore:EClass" name="placeholder8136101">
<eOperations name="placeholder2596671"/>
<eOperations name="placeholder8491761"/>
<eOperations name="placeholder2588751"/>
<eOperations name="placeholder3246851"/>
<eOperations name="placeholder4824191"/>
<eOperations name="placeholder3935141"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Table" eSuperTypes="#//placeholder9014581">
<eOperations name="placeholder6587211"/>
<eOperations name="placeholder1633501"/>
<eOperations name="placeholder4717381"/>
<eOperations name="placeholder9276881"/>
<eOperations name="placeholder3897151"/>
<eOperations name="placeholder7187601"/>
<eOperations name="placeholder2004141"/>
<eOperations name="placeholder1379681"/>
<eOperations name="placeholder7365011"/>
<eOperations name="Move"/>
<eOperations name="placeholder9656171"/>
<eOperations name="placeholder6015571"/>
<eOperations name="placeholder6164961"/>
<eOperations name="placeholder5057131"/>
<eOperations name="placeholder4997551"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Tree">
<eOperations name="placeholder6197161"/>
<eOperations name="placeholder4933241"/>
<eOperations name="placeholder5849991"/>
<eOperations name="placeholder2386941"/>
<eOperations name="placeholder2189001"/>
<eOperations name="placeholder4843321"/>
<eOperations name="placeholder8314201"/>
<eOperations name="placeholder2822031"/>
<eOperations name="Move"/>
<eOperations name="placeholder3914541"/>
<eOperations name="placeholder273601"/>
</eClassifiers>
</ecore:EPackage>
| github:ecore:/data/MagMar94/ParmorelExperimentResults/Experiments/Experimen-compare-preferences/ACMR/bestWeight24/7_GUIdancerComponentHierarchy.ecore | ecore | GUIdancerComponentHierarchy
placeholder4466281
placeholder9014581
Application
Activate
placeholder843371
placeholder5890051
placeholder4926771
Pause
Restart
placeholder2398051
placeholder161461
Wait
placeholder7751531
placeholder1164401
placeholder8100081
placeholder7018761
placeholder9936591
placeholder6704321
placeholder231581
placeholder303731
placeholder8624861
List
placeholder2892911
placeholder3906831
placeholder3187651
placeholder5713431
placeholder6579231
placeholder2094831
placeholder1658561
placeholder173751
Label
placeholder8136101
placeholder2596671
placeholder8491761
placeholder2588751
placeholder3246851
placeholder4824191
placeholder3935141
Table
placeholder6587211
placeholder1633501
placeholder4717381
placeholder9276881
placeholder3897151
placeholder7187601
placeholder2004141
placeholder1379681
placeholder7365011
Move
placeholder9656171
placeholder6015571
placeholder6164961
placeholder5057131
placeholder4997551
Tree
placeholder6197161
placeholder4933241
placeholder5849991
placeholder2386941
placeholder2189001
placeholder4843321
placeholder8314201
placeholder2822031
Move
placeholder3914541
placeholder273601 | null | {"directed":true,"nodes":[{"nsPrefix":"GUIdancerComponentHierarchy","nsURI":"GUIdancerComponentHierarchy","name":"GUIdancerComponentHierarchy","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"placeholder4466281","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"placeholder9014581","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Application","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"placeholder7018761","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"placeholder9936591","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"List","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Label","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"placeholder8136101","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Table","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Tree","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"id":11,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"Activate","lowerBound":0,"id":12,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder843371","lowerBound":0,"id":13,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder5890051","lowerBound":0,"id":14,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder4926771","lowerBound":0,"id":15,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"Pause","lowerBound":0,"id":16,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"Restart","lowerBound":0,"id":17,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder2398051","lowerBound":0,"id":18,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder161461","lowerBound":0,"id":19,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"Wait","lowerBound":0,"id":20,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder7751531","lowerBound":0,"id":21,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder1164401","lowerBound":0,"id":22,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder8100081","lowerBound":0,"id":23,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder6704321","lowerBound":0,"id":24,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder231581","lowerBound":0,"id":25,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder303731","lowerBound":0,"id":26,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder8624861","lowerBound":0,"id":27,"many":false,"required":false,"eClass":"EOperation"},{"id":28,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder2892911","lowerBound":0,"id":29,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder3906831","lowerBound":0,"id":30,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder3187651","lowerBound":0,"id":31,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder5713431","lowerBound":0,"id":32,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder6579231","lowerBound":0,"id":33,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder2094831","lowerBound":0,"id":34,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder1658561","lowerBound":0,"id":35,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder173751","lowerBound":0,"id":36,"many":false,"required":false,"eClass":"EOperation"},{"id":37,"eClass":"EGenericType"},{"id":38,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder2596671","lowerBound":0,"id":39,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder8491761","lowerBound":0,"id":40,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder2588751","lowerBound":0,"id":41,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder3246851","lowerBound":0,"id":42,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder4824191","lowerBound":0,"id":43,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder3935141","lowerBound":0,"id":44,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder6587211","lowerBound":0,"id":45,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder1633501","lowerBound":0,"id":46,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder4717381","lowerBound":0,"id":47,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder9276881","lowerBound":0,"id":48,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder3897151","lowerBound":0,"id":49,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder7187601","lowerBound":0,"id":50,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder2004141","lowerBound":0,"id":51,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder1379681","lowerBound":0,"id":52,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder7365011","lowerBound":0,"id":53,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"Move","lowerBound":0,"id":54,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder9656171","lowerBound":0,"id":55,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder6015571","lowerBound":0,"id":56,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder6164961","lowerBound":0,"id":57,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder5057131","lowerBound":0,"id":58,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder4997551","lowerBound":0,"id":59,"many":false,"required":false,"eClass":"EOperation"},{"id":60,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder6197161","lowerBound":0,"id":61,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder4933241","lowerBound":0,"id":62,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder5849991","lowerBound":0,"id":63,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder2386941","lowerBound":0,"id":64,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder2189001","lowerBound":0,"id":65,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder4843321","lowerBound":0,"id":66,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder8314201","lowerBound":0,"id":67,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder2822031","lowerBound":0,"id":68,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"Move","lowerBound":0,"id":69,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder3914541","lowerBound":0,"id":70,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder273601","lowerBound":0,"id":71,"many":false,"required":false,"eClass":"EOperation"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":0,"target":8},{"source":0,"target":9},{"source":0,"target":10},{"source":1,"target":0},{"source":2,"target":0},{"source":2,"target":1},{"source":2,"target":11},{"source":11,"target":1},{"source":3,"target":0},{"source":3,"target":12},{"source":3,"target":13},{"source":3,"target":14},{"source":3,"target":15},{"source":3,"target":16},{"source":3,"target":17},{"source":3,"target":18},{"source":3,"target":19},{"source":3,"target":20},{"source":3,"target":21},{"source":3,"target":22},{"source":3,"target":23},{"source":12,"target":3},{"source":13,"target":3},{"source":14,"target":3},{"source":15,"target":3},{"source":16,"target":3},{"source":17,"target":3},{"source":18,"target":3},{"source":19,"target":3},{"source":20,"target":3},{"source":21,"target":3},{"source":22,"target":3},{"source":23,"target":3},{"source":4,"target":0},{"source":5,"target":0},{"source":5,"target":2},{"source":5,"target":24},{"source":5,"target":25},{"source":5,"target":26},{"source":5,"target":27},{"source":5,"target":28},{"source":24,"target":5},{"source":25,"target":5},{"source":26,"target":5},{"source":27,"target":5},{"source":28,"target":2},{"source":6,"target":0},{"source":6,"target":1},{"source":6,"target":29},{"source":6,"target":30},{"source":6,"target":31},{"source":6,"target":32},{"source":6,"target":33},{"source":6,"target":34},{"source":6,"target":35},{"source":6,"target":36},{"source":6,"target":37},{"source":29,"target":6},{"source":30,"target":6},{"source":31,"target":6},{"source":32,"target":6},{"source":33,"target":6},{"source":34,"target":6},{"source":35,"target":6},{"source":36,"target":6},{"source":37,"target":1},{"source":7,"target":0},{"source":7,"target":1},{"source":7,"target":38},{"source":38,"target":1},{"source":8,"target":0},{"source":8,"target":39},{"source":8,"target":40},{"source":8,"target":41},{"source":8,"target":42},{"source":8,"target":43},{"source":8,"target":44},{"source":39,"target":8},{"source":40,"target":8},{"source":41,"target":8},{"source":42,"target":8},{"source":43,"target":8},{"source":44,"target":8},{"source":9,"target":0},{"source":9,"target":2},{"source":9,"target":45},{"source":9,"target":46},{"source":9,"target":47},{"source":9,"target":48},{"source":9,"target":49},{"source":9,"target":50},{"source":9,"target":51},{"source":9,"target":52},{"source":9,"target":53},{"source":9,"target":54},{"source":9,"target":55},{"source":9,"target":56},{"source":9,"target":57},{"source":9,"target":58},{"source":9,"target":59},{"source":9,"target":60},{"source":45,"target":9},{"source":46,"target":9},{"source":47,"target":9},{"source":48,"target":9},{"source":49,"target":9},{"source":50,"target":9},{"source":51,"target":9},{"source":52,"target":9},{"source":53,"target":9},{"source":54,"target":9},{"source":55,"target":9},{"source":56,"target":9},{"source":57,"target":9},{"source":58,"target":9},{"source":59,"target":9},{"source":60,"target":2},{"source":10,"target":0},{"source":10,"target":61},{"source":10,"target":62},{"source":10,"target":63},{"source":10,"target":64},{"source":10,"target":65},{"source":10,"target":66},{"source":10,"target":67},{"source":10,"target":68},{"source":10,"target":69},{"source":10,"target":70},{"source":10,"target":71},{"source":61,"target":10},{"source":62,"target":10},{"source":63,"target":10},{"source":64,"target":10},{"source":65,"target":10},{"source":66,"target":10},{"source":67,"target":10},{"source":68,"target":10},{"source":69,"target":10},{"source":70,"target":10},{"source":71,"target":10}],"multigraph":true} |
false | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="api" nsURI="http://eclipse.org/component-api" nsPrefix="api">
<eClassifiers xsi:type="ecore:EClass" name="ApiTypes">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="api-types"/>
<details key="kind" value="elementOnly"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="package" lowerBound="1"
upperBound="-1" eType="#//Package" containment="true" resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="package"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ClassApi">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="class-api"/>
<details key="kind" value="elementOnly"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="methodApi" lowerBound="1"
upperBound="-1" eType="#//MethodApi" containment="true" resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="method-api"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="fieldApi" lowerBound="1"
upperBound="-1" eType="#//FieldApi" containment="true" resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="field-api"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="implement" unique="false"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//Boolean"
defaultValueLiteral="true" unsettable="true">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="implement"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="instantiate" unique="false"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//Boolean"
defaultValueLiteral="true" unsettable="true">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="instantiate"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" unique="false" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="name"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="reference" unique="false"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//Boolean"
defaultValueLiteral="true" unsettable="true">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="reference"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="subclass" unique="false"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//Boolean"
defaultValueLiteral="true" unsettable="true">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="subclass"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ComponentApiType">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="component-api_._type"/>
<details key="kind" value="elementOnly"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="internalApis" lowerBound="1"
eType="#//ApiTypes" containment="true" resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="internal-apis"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="externalApis" lowerBound="1"
eType="#//ApiTypes" containment="true" resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="external-apis"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" unique="false" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="
						The component name; e.g. "Eclipse Platform
						Generic Workbench"; note that this name is used
						to refer to the component and distinguish it
						from other components (but otherwise has no
						official status in Eclipse ontology)
					"/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="name"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="version" unique="false"
lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="version"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="DocumentRoot">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value=""/>
<details key="kind" value="mixed"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="mixed" unique="false" upperBound="-1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFeatureMapEntry">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="elementWildcard"/>
<details key="name" value=":mixed"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="xMLNSPrefixMap" unique="false"
eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EStringToStringMapEntry"
transient="true" containment="true" resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="xmlns:prefix"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="xSISchemaLocation" unique="false"
eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EStringToStringMapEntry"
transient="true" containment="true" resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="xsi:schemaLocation"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="componentApi" upperBound="-2"
eType="#//ComponentApiType" volatile="true" transient="true" derived="true"
containment="true" resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="component-api"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="FieldApi">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="field-api"/>
<details key="kind" value="empty"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="final" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//Boolean"
unsettable="true">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="final"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" unique="false" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="name"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="static" unique="false"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//Boolean"
unsettable="true">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="static"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="transient" unique="false"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//Boolean"
unsettable="true">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="transient"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="type" unique="false" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="type"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="visibility" unique="false"
lowerBound="1" eType="#//Visibility" defaultValueLiteral="public" unsettable="true">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="visibility"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="volatile" unique="false"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//Boolean"
unsettable="true">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="volatile"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="ListOfTypes" instanceClassName="java.util.List">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="list-of-types"/>
<details key="itemType" value="http://www.eclipse.org/emf/2003/XMLType#string"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="MethodApi">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="method-api"/>
<details key="kind" value="empty"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="abstract" unique="false"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//Boolean"
unsettable="true">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="abstract"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="exceptionType" unique="false"
eType="#//ListOfTypes">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="exception-type"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="final" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//Boolean"
unsettable="true">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="final"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="inputType" unique="false"
eType="#//ListOfTypes">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="input-type"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" unique="false" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="name"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="native" unique="false"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//Boolean"
unsettable="true">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="native"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="returnType" unique="false"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="return-type"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="static" unique="false"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//Boolean"
unsettable="true">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="static"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="strict" unique="false"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//Boolean"
unsettable="true">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="strict"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="synchronized" unique="false"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//Boolean"
unsettable="true">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="synchronized"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="visibility" unique="false"
lowerBound="1" eType="#//Visibility" defaultValueLiteral="public" unsettable="true">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="visibility"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Package">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="package"/>
<details key="kind" value="elementOnly"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="classApi" lowerBound="1"
upperBound="-1" eType="#//ClassApi" containment="true" resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="class-api"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" unique="false" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="name"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="Visibility">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="visibility"/>
</eAnnotations>
<eLiterals name="public"/>
<eLiterals name="protected" value="1"/>
<eLiterals name="private" value="2"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="VisibilityObject" instanceClassName="org.eclipse.emf.common.util.AbstractEnumerator">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="visibility:Object"/>
<details key="baseType" value="visibility"/>
</eAnnotations>
</eClassifiers>
</ecore:EPackage>
| github:ecore:/data/MagMar94/ParmorelExperimentResults/Experiments/Experimen-compare-preferences/ACMR/bestWeight4/15_org.eclipse.component.api.ecore | ecore | api
ApiTypes
package
ClassApi
methodApi
fieldApi
implement
true
instantiate
true
name
reference
true
subclass
true
ComponentApiType
internalApis
externalApis
name
version
DocumentRoot
mixed
xMLNSPrefixMap
xSISchemaLocation
componentApi
FieldApi
final
name
static
transient
type
visibility
public
volatile
ListOfTypes
java.util.List
java.util.List
MethodApi
abstract
exceptionType
final
inputType
name
native
returnType
static
strict
synchronized
visibility
public
Package
classApi
name
Visibility
public
public
protected
protected
private
private
VisibilityObject
org.eclipse.emf.common.util.AbstractEnumerator
org.eclipse.emf.common.util.AbstractEnumerator | null | {"directed":true,"nodes":[{"nsPrefix":"api","nsURI":"http://eclipse.org/component-api","name":"api","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ApiTypes","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ClassApi","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ComponentApiType","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DocumentRoot","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FieldApi","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":"java.util.List","defaultValue":null,"instanceClassName":"java.util.List","name":"ListOfTypes","instanceClass":"java.util.List","id":6,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MethodApi","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Package","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"Visibility","instanceClass":null,"id":9,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":"org.eclipse.emf.common.util.AbstractEnumerator","defaultValue":null,"instanceClassName":"org.eclipse.emf.common.util.AbstractEnumerator","name":"VisibilityObject","instanceClass":"org.eclipse.emf.common.util.AbstractEnumerator","id":10,"serializable":true,"eClass":"EDataType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"package","changeable":true,"resolveProxies":false,"lowerBound":1,"id":11,"derived":false},{"id":12,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"methodApi","changeable":true,"resolveProxies":false,"lowerBound":1,"id":13,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"fieldApi","changeable":true,"resolveProxies":false,"lowerBound":1,"id":14,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":true,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"true","unsettable":true,"transient":false,"unique":false,"name":"implement","changeable":true,"lowerBound":0,"iD":false,"id":15,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":true,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"true","unsettable":true,"transient":false,"unique":false,"name":"instantiate","changeable":true,"lowerBound":0,"iD":false,"id":16,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":17,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":true,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"true","unsettable":true,"transient":false,"unique":false,"name":"reference","changeable":true,"lowerBound":0,"iD":false,"id":18,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":true,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"true","unsettable":true,"transient":false,"unique":false,"name":"subclass","changeable":true,"lowerBound":0,"iD":false,"id":19,"derived":false},{"id":20,"eClass":"EGenericType"},{"id":21,"eClass":"EGenericType"},{"id":22,"eClass":"EGenericType"},{"id":23,"eClass":"EGenericType"},{"id":24,"eClass":"EGenericType"},{"id":25,"eClass":"EGenericType"},{"id":26,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"internalApis","changeable":true,"resolveProxies":false,"lowerBound":1,"id":27,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"externalApis","changeable":true,"resolveProxies":false,"lowerBound":1,"id":28,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":29,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"version","changeable":true,"lowerBound":1,"iD":false,"id":30,"derived":false},{"id":31,"eClass":"EGenericType"},{"id":32,"eClass":"EGenericType"},{"id":33,"eClass":"EGenericType"},{"id":34,"eClass":"EGenericType"},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"mixed","changeable":true,"lowerBound":0,"iD":false,"id":35,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":true,"unique":false,"name":"xMLNSPrefixMap","changeable":true,"resolveProxies":false,"lowerBound":0,"id":36,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":true,"unique":false,"name":"xSISchemaLocation","changeable":true,"resolveProxies":false,"lowerBound":0,"id":37,"derived":false},{"container":false,"ordered":true,"upperBound":-2,"defaultValue":null,"volatile":true,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":true,"unique":true,"name":"componentApi","changeable":true,"resolveProxies":false,"lowerBound":0,"id":38,"derived":true},{"id":39,"eClass":"EGenericType"},{"id":40,"eClass":"EGenericType"},{"id":41,"eClass":"EGenericType"},{"id":42,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":false,"name":"final","changeable":true,"lowerBound":0,"iD":false,"id":43,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":44,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":false,"name":"static","changeable":true,"lowerBound":0,"iD":false,"id":45,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":false,"name":"transient","changeable":true,"lowerBound":0,"iD":false,"id":46,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"type","changeable":true,"lowerBound":1,"iD":false,"id":47,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"public","unsettable":true,"transient":false,"unique":false,"name":"visibility","changeable":true,"lowerBound":1,"iD":false,"id":48,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":false,"name":"volatile","changeable":true,"lowerBound":0,"iD":false,"id":49,"derived":false},{"id":50,"eClass":"EGenericType"},{"id":51,"eClass":"EGenericType"},{"id":52,"eClass":"EGenericType"},{"id":53,"eClass":"EGenericType"},{"id":54,"eClass":"EGenericType"},{"id":55,"eClass":"EGenericType"},{"id":56,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":false,"name":"abstract","changeable":true,"lowerBound":0,"iD":false,"id":57,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"exceptionType","changeable":true,"lowerBound":0,"iD":false,"id":58,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":false,"name":"final","changeable":true,"lowerBound":0,"iD":false,"id":59,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"inputType","changeable":true,"lowerBound":0,"iD":false,"id":60,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":61,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":false,"name":"native","changeable":true,"lowerBound":0,"iD":false,"id":62,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"returnType","changeable":true,"lowerBound":0,"iD":false,"id":63,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":false,"name":"static","changeable":true,"lowerBound":0,"iD":false,"id":64,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":false,"name":"strict","changeable":true,"lowerBound":0,"iD":false,"id":65,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":false,"name":"synchronized","changeable":true,"lowerBound":0,"iD":false,"id":66,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"public","unsettable":true,"transient":false,"unique":false,"name":"visibility","changeable":true,"lowerBound":1,"iD":false,"id":67,"derived":false},{"id":68,"eClass":"EGenericType"},{"id":69,"eClass":"EGenericType"},{"id":70,"eClass":"EGenericType"},{"id":71,"eClass":"EGenericType"},{"id":72,"eClass":"EGenericType"},{"id":73,"eClass":"EGenericType"},{"id":74,"eClass":"EGenericType"},{"id":75,"eClass":"EGenericType"},{"id":76,"eClass":"EGenericType"},{"id":77,"eClass":"EGenericType"},{"id":78,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"classApi","changeable":true,"resolveProxies":false,"lowerBound":1,"id":79,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":80,"derived":false},{"id":81,"eClass":"EGenericType"},{"id":82,"eClass":"EGenericType"},{"name":"public","id":83,"value":0,"literal":"public","eClass":"EEnumLiteral"},{"name":"protected","id":84,"value":1,"literal":"protected","eClass":"EEnumLiteral"},{"name":"private","id":85,"value":2,"literal":"private","eClass":"EEnumLiteral"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":0,"target":8},{"source":0,"target":9},{"source":0,"target":10},{"source":1,"target":0},{"source":1,"target":11},{"source":11,"target":8},{"source":11,"target":12},{"source":11,"target":1},{"source":12,"target":8},{"source":2,"target":0},{"source":2,"target":13},{"source":2,"target":14},{"source":2,"target":15},{"source":2,"target":16},{"source":2,"target":17},{"source":2,"target":18},{"source":2,"target":19},{"source":13,"target":7},{"source":13,"target":20},{"source":13,"target":2},{"source":20,"target":7},{"source":14,"target":5},{"source":14,"target":21},{"source":14,"target":2},{"source":21,"target":5},{"source":15,"target":22},{"source":15,"target":2},{"source":16,"target":23},{"source":16,"target":2},{"source":17,"target":24},{"source":17,"target":2},{"source":18,"target":25},{"source":18,"target":2},{"source":19,"target":26},{"source":19,"target":2},{"source":3,"target":0},{"source":3,"target":27},{"source":3,"target":28},{"source":3,"target":29},{"source":3,"target":30},{"source":27,"target":1},{"source":27,"target":31},{"source":27,"target":3},{"source":31,"target":1},{"source":28,"target":1},{"source":28,"target":32},{"source":28,"target":3},{"source":32,"target":1},{"source":29,"target":33},{"source":29,"target":3},{"source":30,"target":34},{"source":30,"target":3},{"source":4,"target":0},{"source":4,"target":35},{"source":4,"target":36},{"source":4,"target":37},{"source":4,"target":38},{"source":35,"target":39},{"source":35,"target":4},{"source":36,"target":40},{"source":36,"target":4},{"source":37,"target":41},{"source":37,"target":4},{"source":38,"target":3},{"source":38,"target":42},{"source":38,"target":4},{"source":42,"target":3},{"source":5,"target":0},{"source":5,"target":43},{"source":5,"target":44},{"source":5,"target":45},{"source":5,"target":46},{"source":5,"target":47},{"source":5,"target":48},{"source":5,"target":49},{"source":43,"target":50},{"source":43,"target":5},{"source":44,"target":51},{"source":44,"target":5},{"source":45,"target":52},{"source":45,"target":5},{"source":46,"target":53},{"source":46,"target":5},{"source":47,"target":54},{"source":47,"target":5},{"source":48,"target":9},{"source":48,"target":55},{"source":48,"target":5},{"source":55,"target":9},{"source":49,"target":56},{"source":49,"target":5},{"source":6,"target":0},{"source":7,"target":0},{"source":7,"target":57},{"source":7,"target":58},{"source":7,"target":59},{"source":7,"target":60},{"source":7,"target":61},{"source":7,"target":62},{"source":7,"target":63},{"source":7,"target":64},{"source":7,"target":65},{"source":7,"target":66},{"source":7,"target":67},{"source":57,"target":68},{"source":57,"target":7},{"source":58,"target":6},{"source":58,"target":69},{"source":58,"target":7},{"source":69,"target":6},{"source":59,"target":70},{"source":59,"target":7},{"source":60,"target":6},{"source":60,"target":71},{"source":60,"target":7},{"source":71,"target":6},{"source":61,"target":72},{"source":61,"target":7},{"source":62,"target":73},{"source":62,"target":7},{"source":63,"target":74},{"source":63,"target":7},{"source":64,"target":75},{"source":64,"target":7},{"source":65,"target":76},{"source":65,"target":7},{"source":66,"target":77},{"source":66,"target":7},{"source":67,"target":9},{"source":67,"target":78},{"source":67,"target":7},{"source":78,"target":9},{"source":8,"target":0},{"source":8,"target":79},{"source":8,"target":80},{"source":79,"target":2},{"source":79,"target":81},{"source":79,"target":8},{"source":81,"target":2},{"source":80,"target":82},{"source":80,"target":8},{"source":9,"target":0},{"source":9,"target":83},{"source":9,"target":84},{"source":9,"target":85},{"source":83,"target":9},{"source":84,"target":9},{"source":85,"target":9},{"source":10,"target":0}],"multigraph":true} |
false | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="webpage" nsURI="http://www.example.org/webpage" nsPrefix="webpage">
<eClassifiers xsi:type="ecore:EClass" name="Web">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="Documentation Terekhov_lv"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="title" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="description" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="keywords" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="pages" upperBound="-1"
eType="#//WebPage" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="WebPage">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="title" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="description" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="category" upperBound="-1"
eType="#//Category" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Category">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="article" upperBound="-1"
eType="#//Article" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Article">
<eOperations name="toString" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="body" value="if (eIsProxy()) return super.toString();

 StringBuffer result = new StringBuffer(super.toString());
 result.append(" (name: ");
 result.append(name);
 result.append(", created: ");
 result.append(created);
 result.append(')');
 return result.toString();"/>
</eAnnotations>
</eOperations>
<eOperations name="test" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="body" value="return 42 + input;"/>
</eAnnotations>
<eParameters name="input" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
</eOperations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="created" eType="#//Calendar"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="Calendar" instanceClassName="java.util.Calendar"/>
</ecore:EPackage>
| github:ecore:/data/maxonchick/sharaga/ivanov/l2/webpage/model/webpage.ecore | ecore | webpage
Web
name
title
description
keywords
pages
WebPage
name
title
description
category
Category
name
article
Article
toString
test
input
name
created
Calendar
java.util.Calendar
java.util.Calendar | null | {"directed":true,"nodes":[{"nsPrefix":"webpage","nsURI":"http://www.example.org/webpage","name":"webpage","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Web","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"WebPage","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Category","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Article","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":"java.util.Calendar","defaultValue":null,"instanceClassName":"java.util.Calendar","name":"Calendar","instanceClass":"java.util.Calendar","id":5,"serializable":true,"eClass":"EDataType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":6,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"title","changeable":true,"lowerBound":0,"iD":false,"id":7,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"description","changeable":true,"lowerBound":0,"iD":false,"id":8,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"keywords","changeable":true,"lowerBound":0,"iD":false,"id":9,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"pages","changeable":true,"resolveProxies":true,"lowerBound":0,"id":10,"derived":false},{"id":11,"eClass":"EGenericType"},{"id":12,"eClass":"EGenericType"},{"id":13,"eClass":"EGenericType"},{"id":14,"eClass":"EGenericType"},{"id":15,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":16,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"title","changeable":true,"lowerBound":0,"iD":false,"id":17,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"description","changeable":true,"lowerBound":0,"iD":false,"id":18,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"category","changeable":true,"resolveProxies":true,"lowerBound":0,"id":19,"derived":false},{"id":20,"eClass":"EGenericType"},{"id":21,"eClass":"EGenericType"},{"id":22,"eClass":"EGenericType"},{"id":23,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":24,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"article","changeable":true,"resolveProxies":true,"lowerBound":0,"id":25,"derived":false},{"id":26,"eClass":"EGenericType"},{"id":27,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"toString","lowerBound":0,"id":28,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"test","lowerBound":0,"id":29,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":30,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"created","changeable":true,"lowerBound":0,"iD":false,"id":31,"derived":false},{"id":32,"eClass":"EGenericType"},{"id":33,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"input","lowerBound":0,"id":34,"many":false,"required":false,"eClass":"EParameter"},{"id":35,"eClass":"EGenericType"},{"id":36,"eClass":"EGenericType"},{"id":37,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":1,"target":0},{"source":1,"target":6},{"source":1,"target":7},{"source":1,"target":8},{"source":1,"target":9},{"source":1,"target":10},{"source":6,"target":11},{"source":6,"target":1},{"source":7,"target":12},{"source":7,"target":1},{"source":8,"target":13},{"source":8,"target":1},{"source":9,"target":14},{"source":9,"target":1},{"source":10,"target":2},{"source":10,"target":15},{"source":10,"target":1},{"source":15,"target":2},{"source":2,"target":0},{"source":2,"target":16},{"source":2,"target":17},{"source":2,"target":18},{"source":2,"target":19},{"source":16,"target":20},{"source":16,"target":2},{"source":17,"target":21},{"source":17,"target":2},{"source":18,"target":22},{"source":18,"target":2},{"source":19,"target":3},{"source":19,"target":23},{"source":19,"target":2},{"source":23,"target":3},{"source":3,"target":0},{"source":3,"target":24},{"source":3,"target":25},{"source":24,"target":26},{"source":24,"target":3},{"source":25,"target":4},{"source":25,"target":27},{"source":25,"target":3},{"source":27,"target":4},{"source":4,"target":0},{"source":4,"target":28},{"source":4,"target":29},{"source":4,"target":30},{"source":4,"target":31},{"source":28,"target":32},{"source":28,"target":4},{"source":29,"target":33},{"source":29,"target":4},{"source":29,"target":34},{"source":34,"target":35},{"source":34,"target":29},{"source":30,"target":36},{"source":30,"target":4},{"source":31,"target":5},{"source":31,"target":37},{"source":31,"target":4},{"source":37,"target":5},{"source":5,"target":0}],"multigraph":true} |
false | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0"
xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="hipadaba"
nsURI="http://www.psi.ch/sics/hipadaba" nsPrefix="hipadaba">
<eClassifiers xsi:type="ecore:EClass" name="Component">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="Component"/>
<details key="kind" value="elementOnly"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="value" eType="#//Value"
containment="true" resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="value"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="property" upperBound="-1"
eType="#//Property" containment="true" resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="property"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="component" upperBound="-1"
eType="#//Component" containment="true" resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="component"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="dataType" eType="#//DataType"
unsettable="true">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="dataType"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="id" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="id"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="DataType">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="DataType"/>
</eAnnotations>
<eLiterals name="int"/>
<eLiterals name="float" value="1"/>
<eLiterals name="text" value="2"/>
<eLiterals name="intar" value="3"/>
<eLiterals name="floatar" value="4"/>
<eLiterals name="intvarar" value="5"/>
<eLiterals name="floatvarar" value="6"/>
<eLiterals name="none" value="7"/>
<eLiterals name="func" value="8"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="DataTypeObject" instanceClassName="org.eclipse.emf.common.util.Enumerator">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="DataType:Object"/>
<details key="baseType" value="DataType"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="DocumentRoot">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value=""/>
<details key="kind" value="mixed"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="mixed" unique="false" upperBound="-1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFeatureMapEntry">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="elementWildcard"/>
<details key="name" value=":mixed"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="xMLNSPrefixMap" upperBound="-1"
eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EStringToStringMapEntry"
transient="true" containment="true" resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="xmlns:prefix"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="xSISchemaLocation" upperBound="-1"
eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EStringToStringMapEntry"
transient="true" containment="true" resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="xsi:schemaLocation"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="sICS" upperBound="-2" eType="#//SICS"
volatile="true" transient="true" derived="true" containment="true" resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="SICS"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Property">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="Property"/>
<details key="kind" value="elementOnly"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" unique="false" lowerBound="1"
upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="value"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="id" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="id"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="SICS">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="SICS"/>
<details key="kind" value="elementOnly"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="component" upperBound="-1"
eType="#//Component" containment="true" resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="component"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="id" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="id"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Value">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="Value"/>
<details key="kind" value="simple"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value=":0"/>
<details key="kind" value="simple"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
</ecore:EPackage>
| github:ecore:/data/Gumtree/gumtree/framework/sics/ch.psi.sics.hipadaba/model/hipadaba.ecore | ecore | hipadaba
Component
value
property
component
dataType
id
DataType
int
int
float
float
text
text
intar
intar
floatar
floatar
intvarar
intvarar
floatvarar
floatvarar
none
none
func
func
DataTypeObject
org.eclipse.emf.common.util.Enumerator
org.eclipse.emf.common.util.Enumerator
DocumentRoot
mixed
xMLNSPrefixMap
xSISchemaLocation
sICS
Property
value
id
SICS
component
id
Value
value | null | {"directed":true,"nodes":[{"nsPrefix":"hipadaba","nsURI":"http://www.psi.ch/sics/hipadaba","name":"hipadaba","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Component","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"DataType","instanceClass":null,"id":2,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":"org.eclipse.emf.common.util.Enumerator","defaultValue":null,"instanceClassName":"org.eclipse.emf.common.util.Enumerator","name":"DataTypeObject","instanceClass":"org.eclipse.emf.common.util.Enumerator","id":3,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DocumentRoot","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Property","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SICS","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Value","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"resolveProxies":false,"lowerBound":0,"id":8,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"property","changeable":true,"resolveProxies":false,"lowerBound":0,"id":9,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"component","changeable":true,"resolveProxies":false,"lowerBound":0,"id":10,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":true,"name":"dataType","changeable":true,"lowerBound":0,"iD":false,"id":11,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"id","changeable":true,"lowerBound":1,"iD":false,"id":12,"derived":false},{"id":13,"eClass":"EGenericType"},{"id":14,"eClass":"EGenericType"},{"id":15,"eClass":"EGenericType"},{"id":16,"eClass":"EGenericType"},{"id":17,"eClass":"EGenericType"},{"name":"int","id":18,"value":0,"literal":"int","eClass":"EEnumLiteral"},{"name":"float","id":19,"value":1,"literal":"float","eClass":"EEnumLiteral"},{"name":"text","id":20,"value":2,"literal":"text","eClass":"EEnumLiteral"},{"name":"intar","id":21,"value":3,"literal":"intar","eClass":"EEnumLiteral"},{"name":"floatar","id":22,"value":4,"literal":"floatar","eClass":"EEnumLiteral"},{"name":"intvarar","id":23,"value":5,"literal":"intvarar","eClass":"EEnumLiteral"},{"name":"floatvarar","id":24,"value":6,"literal":"floatvarar","eClass":"EEnumLiteral"},{"name":"none","id":25,"value":7,"literal":"none","eClass":"EEnumLiteral"},{"name":"func","id":26,"value":8,"literal":"func","eClass":"EEnumLiteral"},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"mixed","changeable":true,"lowerBound":0,"iD":false,"id":27,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":true,"unique":true,"name":"xMLNSPrefixMap","changeable":true,"resolveProxies":false,"lowerBound":0,"id":28,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":true,"unique":true,"name":"xSISchemaLocation","changeable":true,"resolveProxies":false,"lowerBound":0,"id":29,"derived":false},{"container":false,"ordered":true,"upperBound":-2,"defaultValue":null,"volatile":true,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":true,"unique":true,"name":"sICS","changeable":true,"resolveProxies":false,"lowerBound":0,"id":30,"derived":true},{"id":31,"eClass":"EGenericType"},{"id":32,"eClass":"EGenericType"},{"id":33,"eClass":"EGenericType"},{"id":34,"eClass":"EGenericType"},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"value","changeable":true,"lowerBound":1,"iD":false,"id":35,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"id","changeable":true,"lowerBound":0,"iD":false,"id":36,"derived":false},{"id":37,"eClass":"EGenericType"},{"id":38,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"component","changeable":true,"resolveProxies":false,"lowerBound":0,"id":39,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"id","changeable":true,"lowerBound":0,"iD":false,"id":40,"derived":false},{"id":41,"eClass":"EGenericType"},{"id":42,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":0,"iD":false,"id":43,"derived":false},{"id":44,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":1,"target":0},{"source":1,"target":8},{"source":1,"target":9},{"source":1,"target":10},{"source":1,"target":11},{"source":1,"target":12},{"source":8,"target":7},{"source":8,"target":13},{"source":8,"target":1},{"source":13,"target":7},{"source":9,"target":5},{"source":9,"target":14},{"source":9,"target":1},{"source":14,"target":5},{"source":10,"target":1},{"source":10,"target":15},{"source":10,"target":1},{"source":15,"target":1},{"source":11,"target":2},{"source":11,"target":16},{"source":11,"target":1},{"source":16,"target":2},{"source":12,"target":17},{"source":12,"target":1},{"source":2,"target":0},{"source":2,"target":18},{"source":2,"target":19},{"source":2,"target":20},{"source":2,"target":21},{"source":2,"target":22},{"source":2,"target":23},{"source":2,"target":24},{"source":2,"target":25},{"source":2,"target":26},{"source":18,"target":2},{"source":19,"target":2},{"source":20,"target":2},{"source":21,"target":2},{"source":22,"target":2},{"source":23,"target":2},{"source":24,"target":2},{"source":25,"target":2},{"source":26,"target":2},{"source":3,"target":0},{"source":4,"target":0},{"source":4,"target":27},{"source":4,"target":28},{"source":4,"target":29},{"source":4,"target":30},{"source":27,"target":31},{"source":27,"target":4},{"source":28,"target":32},{"source":28,"target":4},{"source":29,"target":33},{"source":29,"target":4},{"source":30,"target":6},{"source":30,"target":34},{"source":30,"target":4},{"source":34,"target":6},{"source":5,"target":0},{"source":5,"target":35},{"source":5,"target":36},{"source":35,"target":37},{"source":35,"target":5},{"source":36,"target":38},{"source":36,"target":5},{"source":6,"target":0},{"source":6,"target":39},{"source":6,"target":40},{"source":39,"target":1},{"source":39,"target":41},{"source":39,"target":6},{"source":41,"target":1},{"source":40,"target":42},{"source":40,"target":6},{"source":7,"target":0},{"source":7,"target":43},{"source":43,"target":44},{"source":43,"target":7}],"multigraph":true} |
true | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="mm" nsURI="http://eclipse.org/graphiti/mm" nsPrefix="mm">
<eClassifiers xsi:type="ecore:EClass" name="Property">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="key" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="PropertyContainer" abstract="true">
<eStructuralFeatures xsi:type="ecore:EReference" name="properties" ordered="false"
upperBound="-1" eType="#//Property" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="GraphicsAlgorithmContainer" abstract="true"
eSuperTypes="#//PropertyContainer"/>
<eClassifiers xsi:type="ecore:EClass" name="StyleContainer" abstract="true">
<eStructuralFeatures xsi:type="ecore:EReference" name="styles" ordered="false"
upperBound="-1" eType="#//algorithms/styles/Style" containment="true" eOpposite="#//algorithms/styles/Style/styleContainer"/>
</eClassifiers>
<eSubpackages name="pictograms" nsURI="http://eclipse.org/graphiti/mm/pictograms"
nsPrefix="pi">
<eClassifiers xsi:type="ecore:EClass" name="Shape" eSuperTypes="#//pictograms/AnchorContainer">
<eStructuralFeatures xsi:type="ecore:EReference" name="container" ordered="false"
unique="false" eType="#//pictograms/ContainerShape" eOpposite="#//pictograms/ContainerShape/children"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ContainerShape" eSuperTypes="#//pictograms/Shape">
<eStructuralFeatures xsi:type="ecore:EReference" name="children" upperBound="-1"
eType="#//pictograms/Shape" containment="true" eOpposite="#//pictograms/Shape/container"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Diagram" eSuperTypes="#//pictograms/ContainerShape #//StyleContainer">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="gridUnit" ordered="false"
unique="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="diagramTypeId" ordered="false"
unique="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="connections" ordered="false"
upperBound="-1" eType="#//pictograms/Connection" containment="true" eOpposite="#//pictograms/Connection/parent"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" ordered="false"
unique="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="snapToGrid" ordered="false"
unique="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="showGuides" ordered="false"
unique="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="suppressedSetVisibility" value="true"/>
<details key="suppressedGetVisibility" value="true"/>
<details key="documentation" value=" @deprecated This attribute simply exists because of compatibility (after 
removing it old diagrams would not be readable any more). It is never 
evaluated, instead the Graphiti framework queries the tool behaviour provider 
if guides shall be shown in a diagram editor.
"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="colors" ordered="false"
upperBound="-1" eType="#//algorithms/styles/Color" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="fonts" ordered="false"
upperBound="-1" eType="#//algorithms/styles/Font" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="pictogramLinks" ordered="false"
upperBound="-1" eType="#//pictograms/PictogramLink"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="verticalGridUnit" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"
defaultValueLiteral="-1"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="version" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
defaultValueLiteral="">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="suppressedSetVisibility" value="true"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="PictogramElement" abstract="true"
eSuperTypes="#//GraphicsAlgorithmContainer">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="visible" ordered="false"
unique="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="graphicsAlgorithm" ordered="false"
unique="false" eType="#//algorithms/GraphicsAlgorithm" containment="true"
eOpposite="#//algorithms/GraphicsAlgorithm/pictogramElement"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="active" ordered="false"
unique="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="link" ordered="false"
unique="false" eType="#//pictograms/PictogramLink" containment="true" eOpposite="#//pictograms/PictogramLink/pictogramElement"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Connection" eSuperTypes="#//pictograms/AnchorContainer">
<eStructuralFeatures xsi:type="ecore:EReference" name="start" ordered="false"
unique="false" lowerBound="1" eType="#//pictograms/Anchor" eOpposite="#//pictograms/Anchor/outgoingConnections"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="end" ordered="false"
unique="false" lowerBound="1" eType="#//pictograms/Anchor" eOpposite="#//pictograms/Anchor/incomingConnections"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="parent" ordered="false"
unique="false" lowerBound="1" eType="#//pictograms/Diagram" eOpposite="#//pictograms/Diagram/connections"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="connectionDecorators"
upperBound="-1" eType="#//pictograms/ConnectionDecorator" containment="true"
eOpposite="#//pictograms/ConnectionDecorator/connection"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Anchor" abstract="true" eSuperTypes="#//pictograms/PictogramElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="parent" ordered="false"
unique="false" lowerBound="1" eType="#//pictograms/AnchorContainer" eOpposite="#//pictograms/AnchorContainer/anchors"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="outgoingConnections"
ordered="false" upperBound="-1" eType="#//pictograms/Connection" eOpposite="#//pictograms/Connection/start"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="incomingConnections"
ordered="false" upperBound="-1" eType="#//pictograms/Connection" eOpposite="#//pictograms/Connection/end"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="referencedGraphicsAlgorithm"
ordered="false" unique="false" eType="#//algorithms/GraphicsAlgorithm"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="AnchorContainer" abstract="true" eSuperTypes="#//pictograms/PictogramElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="anchors" ordered="false"
upperBound="-1" eType="#//pictograms/Anchor" containment="true" eOpposite="#//pictograms/Anchor/parent"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="FixPointAnchor" eSuperTypes="#//pictograms/AdvancedAnchor">
<eStructuralFeatures xsi:type="ecore:EReference" name="location" ordered="false"
unique="false" lowerBound="1" eType="#//algorithms/styles/Point" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="BoxRelativeAnchor" eSuperTypes="#//pictograms/AdvancedAnchor">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="relativeWidth" ordered="false"
unique="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="relativeHeight" ordered="false"
unique="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ChopboxAnchor" eSuperTypes="#//pictograms/Anchor"/>
<eClassifiers xsi:type="ecore:EClass" name="ConnectionDecorator" eSuperTypes="#//pictograms/Shape">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="locationRelative" ordered="false"
unique="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="location" ordered="false"
unique="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="connection" ordered="false"
unique="false" lowerBound="1" eType="#//pictograms/Connection" eOpposite="#//pictograms/Connection/connectionDecorators"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="FreeFormConnection" eSuperTypes="#//pictograms/Connection">
<eStructuralFeatures xsi:type="ecore:EReference" name="bendpoints" upperBound="-1"
eType="#//algorithms/styles/Point" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ManhattanConnection" eSuperTypes="#//pictograms/Connection"/>
<eClassifiers xsi:type="ecore:EClass" name="PictogramLink" eSuperTypes="#//PropertyContainer">
<eStructuralFeatures xsi:type="ecore:EReference" name="pictogramElement" ordered="false"
unique="false" eType="#//pictograms/PictogramElement" eOpposite="#//pictograms/PictogramElement/link"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="businessObjects" upperBound="-1"
eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EObject"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="AdvancedAnchor" abstract="true" eSuperTypes="#//pictograms/Anchor">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="useAnchorLocationAsConnectionEndpoint"
ordered="false" unique="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"
defaultValueLiteral="false"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CurvedConnection" eSuperTypes="#//pictograms/Connection">
<eStructuralFeatures xsi:type="ecore:EReference" name="controlPoints" upperBound="-1"
eType="#//algorithms/styles/PrecisionPoint" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CompositeConnection" eSuperTypes="#//pictograms/Connection">
<eStructuralFeatures xsi:type="ecore:EReference" name="children" upperBound="-1"
eType="#//pictograms/CurvedConnection"/>
</eClassifiers>
</eSubpackages>
<eSubpackages name="algorithms" nsURI="http://eclipse.org/graphiti/mm/algorithms"
nsPrefix="al">
<eClassifiers xsi:type="ecore:EClass" name="GraphicsAlgorithm" abstract="true"
eSuperTypes="#//GraphicsAlgorithmContainer #//algorithms/styles/AbstractStyle">
<eStructuralFeatures xsi:type="ecore:EReference" name="graphicsAlgorithmChildren"
upperBound="-1" eType="#//algorithms/GraphicsAlgorithm" containment="true"
eOpposite="#//algorithms/GraphicsAlgorithm/parentGraphicsAlgorithm"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="parentGraphicsAlgorithm"
ordered="false" unique="false" eType="#//algorithms/GraphicsAlgorithm" eOpposite="#//algorithms/GraphicsAlgorithm/graphicsAlgorithmChildren"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="pictogramElement" ordered="false"
unique="false" eType="#//pictograms/PictogramElement" eOpposite="#//pictograms/PictogramElement/graphicsAlgorithm"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="width" ordered="false"
unique="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="height" ordered="false"
unique="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="x" ordered="false" unique="false"
lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="y" ordered="false" unique="false"
lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="style" ordered="false"
unique="false" eType="#//algorithms/styles/Style"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Polyline" eSuperTypes="#//algorithms/GraphicsAlgorithm">
<eStructuralFeatures xsi:type="ecore:EReference" name="points" upperBound="-1"
eType="#//algorithms/styles/Point" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Ellipse" eSuperTypes="#//algorithms/GraphicsAlgorithm"/>
<eClassifiers xsi:type="ecore:EClass" name="Text" eSuperTypes="#//algorithms/AbstractText"/>
<eClassifiers xsi:type="ecore:EClass" name="Polygon" eSuperTypes="#//algorithms/Polyline"/>
<eClassifiers xsi:type="ecore:EClass" name="Rectangle" eSuperTypes="#//algorithms/GraphicsAlgorithm"/>
<eClassifiers xsi:type="ecore:EClass" name="RoundedRectangle" eSuperTypes="#//algorithms/GraphicsAlgorithm">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="cornerHeight" ordered="false"
unique="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="cornerWidth" ordered="false"
unique="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Image" eSuperTypes="#//algorithms/GraphicsAlgorithm">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="id" ordered="false" unique="false"
lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="stretchH" ordered="false"
unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBooleanObject"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="stretchV" ordered="false"
unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBooleanObject"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="proportional" ordered="false"
unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBooleanObject"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="PlatformGraphicsAlgorithm" eSuperTypes="#//algorithms/GraphicsAlgorithm">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="id" ordered="false" unique="false"
lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="AbstractText" abstract="true" eSuperTypes="#//algorithms/GraphicsAlgorithm">
<eStructuralFeatures xsi:type="ecore:EReference" name="font" ordered="false"
unique="false" eType="#//algorithms/styles/Font"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="horizontalAlignment"
ordered="false" unique="false" eType="#//algorithms/styles/Orientation"
defaultValueLiteral="ALIGNMENT_LEFT"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="verticalAlignment" ordered="false"
unique="false" eType="#//algorithms/styles/Orientation" defaultValueLiteral="ALIGNMENT_CENTER"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="angle" ordered="false"
unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"
defaultValueLiteral="0">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="@deprecated This attribute exists because of compatibility (after
removing old diagrams would not be readable any more). It is replaced
by the new attribute rotation."/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" ordered="false"
unique="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="styleRegions" upperBound="-1"
eType="#//algorithms/styles/TextStyleRegion" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="rotation" ordered="false"
unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDoubleObject"
defaultValueLiteral="0"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="MultiText" eSuperTypes="#//algorithms/AbstractText"/>
<eSubpackages name="styles" nsURI="http://eclipse.org/graphiti/mm/algorithms/styles"
nsPrefix="st">
<eClassifiers xsi:type="ecore:EEnum" name="LineStyle">
<eLiterals name="SOLID"/>
<eLiterals name="DASH" value="1"/>
<eLiterals name="DASHDOT" value="2"/>
<eLiterals name="DASHDOTDOT" value="3"/>
<eLiterals name="DOT" value="4"/>
<eLiterals name="UNSPECIFIED" value="5" literal="UNSPECIFIED"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="Orientation">
<eLiterals name="ALIGNMENT_CENTER"/>
<eLiterals name="ALIGNMENT_LEFT" value="1"/>
<eLiterals name="ALIGNMENT_TOP" value="2"/>
<eLiterals name="ALIGNMENT_RIGHT" value="3"/>
<eLiterals name="ALIGNMENT_BOTTOM" value="4"/>
<eLiterals name="ALIGNMENT_MIDDLE" value="5"/>
<eLiterals name="UNSPECIFIED" value="6" literal="UNSPECIFIED"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="LocationType">
<eLiterals name="LOCATION_TYPE_RELATIVE" value="1"/>
<eLiterals name="LOCATION_TYPE_ABSOLUTE_START" value="2"/>
<eLiterals name="LOCATION_TYPE_ABSOLUTE_END" value="3"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="UnderlineStyle">
<eLiterals name="UNDERLINE_SINGLE"/>
<eLiterals name="UNDERLINE_DOUBLE" value="1"/>
<eLiterals name="UNDERLINE_ERROR" value="2"/>
<eLiterals name="UNDERLINE_SQUIGGLE" value="3"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="RenderingStyle">
<eStructuralFeatures xsi:type="ecore:EReference" name="adaptedGradientColoredAreas"
eType="#//algorithms/styles/AdaptedGradientColoredAreas" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Style" eSuperTypes="#//StyleContainer #//algorithms/styles/AbstractStyle">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="id" ordered="false"
unique="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="description" ordered="false"
unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="font" ordered="false"
unique="false" eType="#//algorithms/styles/Font"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="horizontalAlignment"
ordered="false" unique="false" eType="#//algorithms/styles/Orientation"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="verticalAlignment"
ordered="false" unique="false" eType="#//algorithms/styles/Orientation"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="angle" ordered="false"
unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="@deprecated This attribute exists because of compatibility (after
removing old diagrams would not be readable any more). It is replaced
by the new attribute rotation."/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="stretchH" ordered="false"
unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBooleanObject"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="stretchV" ordered="false"
unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBooleanObject"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="proportional" ordered="false"
unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBooleanObject"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="styleContainer" ordered="false"
unique="false" lowerBound="1" eType="#//StyleContainer" eOpposite="#//StyleContainer/styles"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="rotation" ordered="false"
unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDoubleObject"
defaultValueLiteral="0"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="AbstractStyle" abstract="true">
<eStructuralFeatures xsi:type="ecore:EReference" name="background" ordered="false"
unique="false" eType="#//algorithms/styles/Color"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="foreground" ordered="false"
unique="false" eType="#//algorithms/styles/Color"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="lineWidth" ordered="false"
unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="lineStyle" ordered="false"
unique="false" eType="#//algorithms/styles/LineStyle"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="filled" ordered="false"
unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBooleanObject"
defaultValueLiteral="true" unsettable="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="lineVisible" ordered="false"
unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBooleanObject"
defaultValueLiteral="true" unsettable="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="renderingStyle" ordered="false"
unique="false" eType="#//algorithms/styles/RenderingStyle" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="transparency" ordered="false"
unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDoubleObject"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="GradientColoredLocation">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="locationType" lowerBound="1"
eType="#//algorithms/styles/LocationType"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="locationValue" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="color" lowerBound="1"
eType="#//algorithms/styles/Color" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="GradientColoredArea">
<eStructuralFeatures xsi:type="ecore:EReference" name="start" eType="#//algorithms/styles/GradientColoredLocation"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="end" eType="#//algorithms/styles/GradientColoredLocation"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="GradientColoredAreas">
<eStructuralFeatures xsi:type="ecore:EReference" name="gradientColor" upperBound="-1"
eType="#//algorithms/styles/GradientColoredArea" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="styleAdaption" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="AdaptedGradientColoredAreas">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="definedStyleId" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="adaptedGradientColoredAreas"
upperBound="-1" eType="#//algorithms/styles/GradientColoredAreas" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="gradientType" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Font">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" ordered="false"
unique="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="suppressedSetVisibility" value="true"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="size" ordered="false"
unique="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="suppressedSetVisibility" value="true"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="italic" ordered="false"
unique="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="suppressedSetVisibility" value="true"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="bold" ordered="false"
unique="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="suppressedSetVisibility" value="true"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Point">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="x" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="y" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="before" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="after" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Color">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="red" ordered="false"
unique="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="suppressedSetVisibility" value="true"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="green" ordered="false"
unique="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="suppressedSetVisibility" value="true"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="blue" ordered="false"
unique="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="suppressedSetVisibility" value="true"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="PrecisionPoint">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="x" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="y" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="TextStyle">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="underline" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="underlineStyle" eType="#//algorithms/styles/UnderlineStyle"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="strikeout" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="font" eType="#//algorithms/styles/Font"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="foreground" eType="#//algorithms/styles/Color"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="background" eType="#//algorithms/styles/Color"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="underlineColor" eType="#//algorithms/styles/Color"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="strikeoutColor" eType="#//algorithms/styles/Color"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="TextStyleRegion">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="start" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="end" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="style" eType="#//algorithms/styles/TextStyle"
containment="true"/>
</eClassifiers>
</eSubpackages>
</eSubpackages>
</ecore:EPackage>
| github:ecore:/data/riederm/graphiti_clone/plugins/org.eclipse.graphiti.mm/model/graphiti.ecore | ecore | mm
Property
key
value
PropertyContainer
properties
GraphicsAlgorithmContainer
StyleContainer
styles
pictograms
Shape
container
ContainerShape
children
Diagram
gridUnit
diagramTypeId
connections
name
snapToGrid
showGuides
colors
fonts
pictogramLinks
verticalGridUnit
-1
version
PictogramElement
visible
graphicsAlgorithm
active
link
Connection
start
end
parent
connectionDecorators
Anchor
parent
outgoingConnections
incomingConnections
referencedGraphicsAlgorithm
AnchorContainer
anchors
FixPointAnchor
location
BoxRelativeAnchor
relativeWidth
relativeHeight
ChopboxAnchor
ConnectionDecorator
locationRelative
location
connection
FreeFormConnection
bendpoints
ManhattanConnection
PictogramLink
pictogramElement
businessObjects
AdvancedAnchor
useAnchorLocationAsConnectionEndpoint
false
CurvedConnection
controlPoints
CompositeConnection
children
algorithms
GraphicsAlgorithm
graphicsAlgorithmChildren
parentGraphicsAlgorithm
pictogramElement
width
height
x
y
style
Polyline
points
Ellipse
Text
Polygon
Rectangle
RoundedRectangle
cornerHeight
cornerWidth
Image
id
stretchH
stretchV
proportional
PlatformGraphicsAlgorithm
id
AbstractText
font
horizontalAlignment
ALIGNMENT_LEFT
verticalAlignment
ALIGNMENT_CENTER
angle
0
value
styleRegions
rotation
0
MultiText
styles
LineStyle
SOLID
SOLID
DASH
DASH
DASHDOT
DASHDOT
DASHDOTDOT
DASHDOTDOT
DOT
DOT
UNSPECIFIED
UNSPECIFIED
Orientation
ALIGNMENT_CENTER
ALIGNMENT_CENTER
ALIGNMENT_LEFT
ALIGNMENT_LEFT
ALIGNMENT_TOP
ALIGNMENT_TOP
ALIGNMENT_RIGHT
ALIGNMENT_RIGHT
ALIGNMENT_BOTTOM
ALIGNMENT_BOTTOM
ALIGNMENT_MIDDLE
ALIGNMENT_MIDDLE
UNSPECIFIED
UNSPECIFIED
LocationType
LOCATION_TYPE_RELATIVE
LOCATION_TYPE_RELATIVE
LOCATION_TYPE_ABSOLUTE_START
LOCATION_TYPE_ABSOLUTE_START
LOCATION_TYPE_ABSOLUTE_END
LOCATION_TYPE_ABSOLUTE_END
UnderlineStyle
UNDERLINE_SINGLE
UNDERLINE_SINGLE
UNDERLINE_DOUBLE
UNDERLINE_DOUBLE
UNDERLINE_ERROR
UNDERLINE_ERROR
UNDERLINE_SQUIGGLE
UNDERLINE_SQUIGGLE
RenderingStyle
adaptedGradientColoredAreas
Style
id
description
font
horizontalAlignment
verticalAlignment
angle
stretchH
stretchV
proportional
styleContainer
rotation
0
AbstractStyle
background
foreground
lineWidth
lineStyle
filled
true
lineVisible
true
renderingStyle
transparency
GradientColoredLocation
locationType
locationValue
color
GradientColoredArea
start
end
GradientColoredAreas
gradientColor
styleAdaption
AdaptedGradientColoredAreas
definedStyleId
adaptedGradientColoredAreas
gradientType
Font
name
size
italic
bold
Point
x
y
before
after
Color
red
green
blue
PrecisionPoint
x
y
TextStyle
underline
underlineStyle
strikeout
font
foreground
background
underlineColor
strikeoutColor
TextStyleRegion
start
end
style | null | {"directed":true,"nodes":[{"nsPrefix":"mm","nsURI":"http://eclipse.org/graphiti/mm","name":"mm","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Property","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PropertyContainer","instanceClass":null,"abstract":true,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"GraphicsAlgorithmContainer","instanceClass":null,"abstract":true,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StyleContainer","instanceClass":null,"abstract":true,"id":4,"interface":false,"eClass":"EClass"},{"nsPrefix":"pi","nsURI":"http://eclipse.org/graphiti/mm/pictograms","name":"pictograms","id":5,"eClass":"EPackage"},{"nsPrefix":"al","nsURI":"http://eclipse.org/graphiti/mm/algorithms","name":"algorithms","id":6,"eClass":"EPackage"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"key","changeable":true,"lowerBound":1,"iD":false,"id":7,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":1,"iD":false,"id":8,"derived":false},{"id":9,"eClass":"EGenericType"},{"id":10,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"properties","changeable":true,"resolveProxies":true,"lowerBound":0,"id":11,"derived":false},{"id":12,"eClass":"EGenericType"},{"id":13,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"styles","changeable":true,"resolveProxies":true,"lowerBound":0,"id":14,"derived":false},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Style","instanceClass":null,"abstract":false,"id":15,"interface":false,"eClass":"EClass"},{"id":16,"eClass":"EGenericType"},{"container":true,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":false,"name":"styleContainer","changeable":true,"resolveProxies":true,"lowerBound":1,"id":17,"derived":false},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Shape","instanceClass":null,"abstract":false,"id":18,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ContainerShape","instanceClass":null,"abstract":false,"id":19,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Diagram","instanceClass":null,"abstract":false,"id":20,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PictogramElement","instanceClass":null,"abstract":true,"id":21,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Connection","instanceClass":null,"abstract":false,"id":22,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Anchor","instanceClass":null,"abstract":true,"id":23,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AnchorContainer","instanceClass":null,"abstract":true,"id":24,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FixPointAnchor","instanceClass":null,"abstract":false,"id":25,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BoxRelativeAnchor","instanceClass":null,"abstract":false,"id":26,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ChopboxAnchor","instanceClass":null,"abstract":false,"id":27,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ConnectionDecorator","instanceClass":null,"abstract":false,"id":28,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FreeFormConnection","instanceClass":null,"abstract":false,"id":29,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ManhattanConnection","instanceClass":null,"abstract":false,"id":30,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PictogramLink","instanceClass":null,"abstract":false,"id":31,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AdvancedAnchor","instanceClass":null,"abstract":true,"id":32,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CurvedConnection","instanceClass":null,"abstract":false,"id":33,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CompositeConnection","instanceClass":null,"abstract":false,"id":34,"interface":false,"eClass":"EClass"},{"container":true,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":false,"name":"container","changeable":true,"resolveProxies":true,"lowerBound":0,"id":35,"derived":false},{"id":36,"eClass":"EGenericType"},{"id":37,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"children","changeable":true,"resolveProxies":true,"lowerBound":0,"id":38,"derived":false},{"id":39,"eClass":"EGenericType"},{"id":40,"eClass":"EGenericType"},{"ordered":false,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"gridUnit","changeable":true,"lowerBound":1,"iD":false,"id":41,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"diagramTypeId","changeable":true,"lowerBound":1,"iD":false,"id":42,"derived":false},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"connections","changeable":true,"resolveProxies":true,"lowerBound":0,"id":43,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":44,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"snapToGrid","changeable":true,"lowerBound":1,"iD":false,"id":45,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"showGuides","changeable":true,"lowerBound":1,"iD":false,"id":46,"derived":false},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"colors","changeable":true,"resolveProxies":true,"lowerBound":0,"id":47,"derived":false},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"fonts","changeable":true,"resolveProxies":true,"lowerBound":0,"id":48,"derived":false},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"pictogramLinks","changeable":true,"resolveProxies":true,"lowerBound":0,"id":49,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":-1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"-1","unsettable":false,"transient":false,"unique":true,"name":"verticalGridUnit","changeable":true,"lowerBound":0,"iD":false,"id":50,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":"","volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"","unsettable":false,"transient":false,"unique":true,"name":"version","changeable":true,"lowerBound":0,"iD":false,"id":51,"derived":false},{"id":52,"eClass":"EGenericType"},{"id":53,"eClass":"EGenericType"},{"id":54,"eClass":"EGenericType"},{"id":55,"eClass":"EGenericType"},{"id":56,"eClass":"EGenericType"},{"container":true,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":false,"name":"parent","changeable":true,"resolveProxies":true,"lowerBound":1,"id":57,"derived":false},{"id":58,"eClass":"EGenericType"},{"id":59,"eClass":"EGenericType"},{"id":60,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Color","instanceClass":null,"abstract":false,"id":61,"interface":false,"eClass":"EClass"},{"id":62,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Font","instanceClass":null,"abstract":false,"id":63,"interface":false,"eClass":"EClass"},{"id":64,"eClass":"EGenericType"},{"id":65,"eClass":"EGenericType"},{"id":66,"eClass":"EGenericType"},{"id":67,"eClass":"EGenericType"},{"ordered":false,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"visible","changeable":true,"lowerBound":1,"iD":false,"id":68,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":false,"name":"graphicsAlgorithm","changeable":true,"resolveProxies":true,"lowerBound":0,"id":69,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"active","changeable":true,"lowerBound":1,"iD":false,"id":70,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":false,"name":"link","changeable":true,"resolveProxies":true,"lowerBound":0,"id":71,"derived":false},{"id":72,"eClass":"EGenericType"},{"id":73,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"GraphicsAlgorithm","instanceClass":null,"abstract":true,"id":74,"interface":false,"eClass":"EClass"},{"id":75,"eClass":"EGenericType"},{"container":true,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":false,"name":"pictogramElement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":76,"derived":false},{"id":77,"eClass":"EGenericType"},{"id":78,"eClass":"EGenericType"},{"container":true,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":false,"name":"pictogramElement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":79,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":false,"name":"start","changeable":true,"resolveProxies":true,"lowerBound":1,"id":80,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":false,"name":"end","changeable":true,"resolveProxies":true,"lowerBound":1,"id":81,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"connectionDecorators","changeable":true,"resolveProxies":true,"lowerBound":0,"id":82,"derived":false},{"id":83,"eClass":"EGenericType"},{"id":84,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"outgoingConnections","changeable":true,"resolveProxies":true,"lowerBound":0,"id":85,"derived":false},{"id":86,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"incomingConnections","changeable":true,"resolveProxies":true,"lowerBound":0,"id":87,"derived":false},{"id":88,"eClass":"EGenericType"},{"id":89,"eClass":"EGenericType"},{"container":true,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":false,"name":"connection","changeable":true,"resolveProxies":true,"lowerBound":1,"id":90,"derived":false},{"container":true,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":false,"name":"parent","changeable":true,"resolveProxies":true,"lowerBound":1,"id":91,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":false,"name":"referencedGraphicsAlgorithm","changeable":true,"resolveProxies":true,"lowerBound":0,"id":92,"derived":false},{"id":93,"eClass":"EGenericType"},{"id":94,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"anchors","changeable":true,"resolveProxies":true,"lowerBound":0,"id":95,"derived":false},{"id":96,"eClass":"EGenericType"},{"id":97,"eClass":"EGenericType"},{"id":98,"eClass":"EGenericType"},{"id":99,"eClass":"EGenericType"},{"id":100,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":false,"name":"location","changeable":true,"resolveProxies":true,"lowerBound":1,"id":101,"derived":false},{"id":102,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Point","instanceClass":null,"abstract":false,"id":103,"interface":false,"eClass":"EClass"},{"id":104,"eClass":"EGenericType"},{"ordered":false,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"relativeWidth","changeable":true,"lowerBound":1,"iD":false,"id":105,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"relativeHeight","changeable":true,"lowerBound":1,"iD":false,"id":106,"derived":false},{"id":107,"eClass":"EGenericType"},{"id":108,"eClass":"EGenericType"},{"id":109,"eClass":"EGenericType"},{"id":110,"eClass":"EGenericType"},{"ordered":false,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"locationRelative","changeable":true,"lowerBound":1,"iD":false,"id":111,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"location","changeable":true,"lowerBound":1,"iD":false,"id":112,"derived":false},{"id":113,"eClass":"EGenericType"},{"id":114,"eClass":"EGenericType"},{"id":115,"eClass":"EGenericType"},{"id":116,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"bendpoints","changeable":true,"resolveProxies":true,"lowerBound":0,"id":117,"derived":false},{"id":118,"eClass":"EGenericType"},{"id":119,"eClass":"EGenericType"},{"id":120,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"businessObjects","changeable":true,"resolveProxies":true,"lowerBound":0,"id":121,"derived":false},{"id":122,"eClass":"EGenericType"},{"id":123,"eClass":"EGenericType"},{"id":124,"eClass":"EGenericType"},{"ordered":false,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"false","unsettable":false,"transient":false,"unique":false,"name":"useAnchorLocationAsConnectionEndpoint","changeable":true,"lowerBound":1,"iD":false,"id":125,"derived":false},{"id":126,"eClass":"EGenericType"},{"id":127,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"controlPoints","changeable":true,"resolveProxies":true,"lowerBound":0,"id":128,"derived":false},{"id":129,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PrecisionPoint","instanceClass":null,"abstract":false,"id":130,"interface":false,"eClass":"EClass"},{"id":131,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"children","changeable":true,"resolveProxies":true,"lowerBound":0,"id":132,"derived":false},{"id":133,"eClass":"EGenericType"},{"id":134,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Polyline","instanceClass":null,"abstract":false,"id":135,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Ellipse","instanceClass":null,"abstract":false,"id":136,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Text","instanceClass":null,"abstract":false,"id":137,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Polygon","instanceClass":null,"abstract":false,"id":138,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Rectangle","instanceClass":null,"abstract":false,"id":139,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RoundedRectangle","instanceClass":null,"abstract":false,"id":140,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Image","instanceClass":null,"abstract":false,"id":141,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PlatformGraphicsAlgorithm","instanceClass":null,"abstract":false,"id":142,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AbstractText","instanceClass":null,"abstract":true,"id":143,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MultiText","instanceClass":null,"abstract":false,"id":144,"interface":false,"eClass":"EClass"},{"nsPrefix":"st","nsURI":"http://eclipse.org/graphiti/mm/algorithms/styles","name":"styles","id":145,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AbstractStyle","instanceClass":null,"abstract":true,"id":146,"interface":false,"eClass":"EClass"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"graphicsAlgorithmChildren","changeable":true,"resolveProxies":true,"lowerBound":0,"id":147,"derived":false},{"container":true,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":false,"name":"parentGraphicsAlgorithm","changeable":true,"resolveProxies":true,"lowerBound":0,"id":148,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"width","changeable":true,"lowerBound":1,"iD":false,"id":149,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"height","changeable":true,"lowerBound":1,"iD":false,"id":150,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"x","changeable":true,"lowerBound":1,"iD":false,"id":151,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"y","changeable":true,"lowerBound":1,"iD":false,"id":152,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":false,"name":"style","changeable":true,"resolveProxies":true,"lowerBound":0,"id":153,"derived":false},{"id":154,"eClass":"EGenericType"},{"id":155,"eClass":"EGenericType"},{"id":156,"eClass":"EGenericType"},{"id":157,"eClass":"EGenericType"},{"id":158,"eClass":"EGenericType"},{"id":159,"eClass":"EGenericType"},{"id":160,"eClass":"EGenericType"},{"id":161,"eClass":"EGenericType"},{"id":162,"eClass":"EGenericType"},{"id":163,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"points","changeable":true,"resolveProxies":true,"lowerBound":0,"id":164,"derived":false},{"id":165,"eClass":"EGenericType"},{"id":166,"eClass":"EGenericType"},{"id":167,"eClass":"EGenericType"},{"id":168,"eClass":"EGenericType"},{"id":169,"eClass":"EGenericType"},{"id":170,"eClass":"EGenericType"},{"ordered":false,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"cornerHeight","changeable":true,"lowerBound":1,"iD":false,"id":171,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"cornerWidth","changeable":true,"lowerBound":1,"iD":false,"id":172,"derived":false},{"id":173,"eClass":"EGenericType"},{"id":174,"eClass":"EGenericType"},{"id":175,"eClass":"EGenericType"},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"id","changeable":true,"lowerBound":1,"iD":false,"id":176,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"stretchH","changeable":true,"lowerBound":0,"iD":false,"id":177,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"stretchV","changeable":true,"lowerBound":0,"iD":false,"id":178,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"proportional","changeable":true,"lowerBound":0,"iD":false,"id":179,"derived":false},{"id":180,"eClass":"EGenericType"},{"id":181,"eClass":"EGenericType"},{"id":182,"eClass":"EGenericType"},{"id":183,"eClass":"EGenericType"},{"id":184,"eClass":"EGenericType"},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"id","changeable":true,"lowerBound":1,"iD":false,"id":185,"derived":false},{"id":186,"eClass":"EGenericType"},{"id":187,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":false,"name":"font","changeable":true,"resolveProxies":true,"lowerBound":0,"id":188,"derived":false},{"ordered":false,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"ALIGNMENT_LEFT","unsettable":false,"transient":false,"unique":false,"name":"horizontalAlignment","changeable":true,"lowerBound":0,"iD":false,"id":189,"derived":false},{"ordered":false,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"ALIGNMENT_CENTER","unsettable":false,"transient":false,"unique":false,"name":"verticalAlignment","changeable":true,"lowerBound":0,"iD":false,"id":190,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"0","unsettable":false,"transient":false,"unique":false,"name":"angle","changeable":true,"lowerBound":0,"iD":false,"id":191,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"value","changeable":true,"lowerBound":1,"iD":false,"id":192,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"styleRegions","changeable":true,"resolveProxies":true,"lowerBound":0,"id":193,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"0","unsettable":false,"transient":false,"unique":false,"name":"rotation","changeable":true,"lowerBound":0,"iD":false,"id":194,"derived":false},{"id":195,"eClass":"EGenericType"},{"id":196,"eClass":"EGenericType"},{"instanceTypeName":null,"instanceClassName":null,"name":"Orientation","instanceClass":null,"id":197,"serializable":true,"eClass":"EEnum"},{"id":198,"eClass":"EGenericType"},{"id":199,"eClass":"EGenericType"},{"id":200,"eClass":"EGenericType"},{"id":201,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TextStyleRegion","instanceClass":null,"abstract":false,"id":202,"interface":false,"eClass":"EClass"},{"id":203,"eClass":"EGenericType"},{"id":204,"eClass":"EGenericType"},{"id":205,"eClass":"EGenericType"},{"instanceTypeName":null,"instanceClassName":null,"name":"LineStyle","instanceClass":null,"id":206,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"LocationType","instanceClass":null,"id":207,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"UnderlineStyle","instanceClass":null,"id":208,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RenderingStyle","instanceClass":null,"abstract":false,"id":209,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"GradientColoredLocation","instanceClass":null,"abstract":false,"id":210,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"GradientColoredArea","instanceClass":null,"abstract":false,"id":211,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"GradientColoredAreas","instanceClass":null,"abstract":false,"id":212,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AdaptedGradientColoredAreas","instanceClass":null,"abstract":false,"id":213,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TextStyle","instanceClass":null,"abstract":false,"id":214,"interface":false,"eClass":"EClass"},{"name":"SOLID","id":215,"value":0,"literal":"SOLID","eClass":"EEnumLiteral"},{"name":"DASH","id":216,"value":1,"literal":"DASH","eClass":"EEnumLiteral"},{"name":"DASHDOT","id":217,"value":2,"literal":"DASHDOT","eClass":"EEnumLiteral"},{"name":"DASHDOTDOT","id":218,"value":3,"literal":"DASHDOTDOT","eClass":"EEnumLiteral"},{"name":"DOT","id":219,"value":4,"literal":"DOT","eClass":"EEnumLiteral"},{"name":"UNSPECIFIED","id":220,"value":5,"literal":"UNSPECIFIED","eClass":"EEnumLiteral"},{"name":"ALIGNMENT_CENTER","id":221,"value":0,"literal":"ALIGNMENT_CENTER","eClass":"EEnumLiteral"},{"name":"ALIGNMENT_LEFT","id":222,"value":1,"literal":"ALIGNMENT_LEFT","eClass":"EEnumLiteral"},{"name":"ALIGNMENT_TOP","id":223,"value":2,"literal":"ALIGNMENT_TOP","eClass":"EEnumLiteral"},{"name":"ALIGNMENT_RIGHT","id":224,"value":3,"literal":"ALIGNMENT_RIGHT","eClass":"EEnumLiteral"},{"name":"ALIGNMENT_BOTTOM","id":225,"value":4,"literal":"ALIGNMENT_BOTTOM","eClass":"EEnumLiteral"},{"name":"ALIGNMENT_MIDDLE","id":226,"value":5,"literal":"ALIGNMENT_MIDDLE","eClass":"EEnumLiteral"},{"name":"UNSPECIFIED","id":227,"value":6,"literal":"UNSPECIFIED","eClass":"EEnumLiteral"},{"name":"LOCATION_TYPE_RELATIVE","id":228,"value":1,"literal":"LOCATION_TYPE_RELATIVE","eClass":"EEnumLiteral"},{"name":"LOCATION_TYPE_ABSOLUTE_START","id":229,"value":2,"literal":"LOCATION_TYPE_ABSOLUTE_START","eClass":"EEnumLiteral"},{"name":"LOCATION_TYPE_ABSOLUTE_END","id":230,"value":3,"literal":"LOCATION_TYPE_ABSOLUTE_END","eClass":"EEnumLiteral"},{"name":"UNDERLINE_SINGLE","id":231,"value":0,"literal":"UNDERLINE_SINGLE","eClass":"EEnumLiteral"},{"name":"UNDERLINE_DOUBLE","id":232,"value":1,"literal":"UNDERLINE_DOUBLE","eClass":"EEnumLiteral"},{"name":"UNDERLINE_ERROR","id":233,"value":2,"literal":"UNDERLINE_ERROR","eClass":"EEnumLiteral"},{"name":"UNDERLINE_SQUIGGLE","id":234,"value":3,"literal":"UNDERLINE_SQUIGGLE","eClass":"EEnumLiteral"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"adaptedGradientColoredAreas","changeable":true,"resolveProxies":true,"lowerBound":0,"id":235,"derived":false},{"id":236,"eClass":"EGenericType"},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"id","changeable":true,"lowerBound":1,"iD":false,"id":237,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"description","changeable":true,"lowerBound":0,"iD":false,"id":238,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":false,"name":"font","changeable":true,"resolveProxies":true,"lowerBound":0,"id":239,"derived":false},{"ordered":false,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"horizontalAlignment","changeable":true,"lowerBound":0,"iD":false,"id":240,"derived":false},{"ordered":false,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"verticalAlignment","changeable":true,"lowerBound":0,"iD":false,"id":241,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"angle","changeable":true,"lowerBound":0,"iD":false,"id":242,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"stretchH","changeable":true,"lowerBound":0,"iD":false,"id":243,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"stretchV","changeable":true,"lowerBound":0,"iD":false,"id":244,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"proportional","changeable":true,"lowerBound":0,"iD":false,"id":245,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"0","unsettable":false,"transient":false,"unique":false,"name":"rotation","changeable":true,"lowerBound":0,"iD":false,"id":246,"derived":false},{"id":247,"eClass":"EGenericType"},{"id":248,"eClass":"EGenericType"},{"id":249,"eClass":"EGenericType"},{"id":250,"eClass":"EGenericType"},{"id":251,"eClass":"EGenericType"},{"id":252,"eClass":"EGenericType"},{"id":253,"eClass":"EGenericType"},{"id":254,"eClass":"EGenericType"},{"id":255,"eClass":"EGenericType"},{"id":256,"eClass":"EGenericType"},{"id":257,"eClass":"EGenericType"},{"id":258,"eClass":"EGenericType"},{"id":259,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":false,"name":"background","changeable":true,"resolveProxies":true,"lowerBound":0,"id":260,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":false,"name":"foreground","changeable":true,"resolveProxies":true,"lowerBound":0,"id":261,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"lineWidth","changeable":true,"lowerBound":0,"iD":false,"id":262,"derived":false},{"ordered":false,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"lineStyle","changeable":true,"lowerBound":0,"iD":false,"id":263,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":true,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"true","unsettable":true,"transient":false,"unique":false,"name":"filled","changeable":true,"lowerBound":0,"iD":false,"id":264,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":true,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"true","unsettable":true,"transient":false,"unique":false,"name":"lineVisible","changeable":true,"lowerBound":0,"iD":false,"id":265,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":false,"name":"renderingStyle","changeable":true,"resolveProxies":true,"lowerBound":0,"id":266,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"transparency","changeable":true,"lowerBound":0,"iD":false,"id":267,"derived":false},{"id":268,"eClass":"EGenericType"},{"id":269,"eClass":"EGenericType"},{"id":270,"eClass":"EGenericType"},{"id":271,"eClass":"EGenericType"},{"id":272,"eClass":"EGenericType"},{"id":273,"eClass":"EGenericType"},{"id":274,"eClass":"EGenericType"},{"id":275,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"locationType","changeable":true,"lowerBound":1,"iD":false,"id":276,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"locationValue","changeable":true,"lowerBound":1,"iD":false,"id":277,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"color","changeable":true,"resolveProxies":true,"lowerBound":1,"id":278,"derived":false},{"id":279,"eClass":"EGenericType"},{"id":280,"eClass":"EGenericType"},{"id":281,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"start","changeable":true,"resolveProxies":true,"lowerBound":0,"id":282,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"end","changeable":true,"resolveProxies":true,"lowerBound":0,"id":283,"derived":false},{"id":284,"eClass":"EGenericType"},{"id":285,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"gradientColor","changeable":true,"resolveProxies":true,"lowerBound":0,"id":286,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"styleAdaption","changeable":true,"lowerBound":0,"iD":false,"id":287,"derived":false},{"id":288,"eClass":"EGenericType"},{"id":289,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"definedStyleId","changeable":true,"lowerBound":0,"iD":false,"id":290,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"adaptedGradientColoredAreas","changeable":true,"resolveProxies":true,"lowerBound":0,"id":291,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"gradientType","changeable":true,"lowerBound":0,"iD":false,"id":292,"derived":false},{"id":293,"eClass":"EGenericType"},{"id":294,"eClass":"EGenericType"},{"id":295,"eClass":"EGenericType"},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":296,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"size","changeable":true,"lowerBound":1,"iD":false,"id":297,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"italic","changeable":true,"lowerBound":1,"iD":false,"id":298,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"bold","changeable":true,"lowerBound":1,"iD":false,"id":299,"derived":false},{"id":300,"eClass":"EGenericType"},{"id":301,"eClass":"EGenericType"},{"id":302,"eClass":"EGenericType"},{"id":303,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"x","changeable":true,"lowerBound":1,"iD":false,"id":304,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"y","changeable":true,"lowerBound":1,"iD":false,"id":305,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"before","changeable":true,"lowerBound":1,"iD":false,"id":306,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"after","changeable":true,"lowerBound":1,"iD":false,"id":307,"derived":false},{"id":308,"eClass":"EGenericType"},{"id":309,"eClass":"EGenericType"},{"id":310,"eClass":"EGenericType"},{"id":311,"eClass":"EGenericType"},{"ordered":false,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"red","changeable":true,"lowerBound":1,"iD":false,"id":312,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"green","changeable":true,"lowerBound":1,"iD":false,"id":313,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"blue","changeable":true,"lowerBound":1,"iD":false,"id":314,"derived":false},{"id":315,"eClass":"EGenericType"},{"id":316,"eClass":"EGenericType"},{"id":317,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"x","changeable":true,"lowerBound":1,"iD":false,"id":318,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"y","changeable":true,"lowerBound":1,"iD":false,"id":319,"derived":false},{"id":320,"eClass":"EGenericType"},{"id":321,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"underline","changeable":true,"lowerBound":0,"iD":false,"id":322,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"underlineStyle","changeable":true,"lowerBound":0,"iD":false,"id":323,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"strikeout","changeable":true,"lowerBound":0,"iD":false,"id":324,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"font","changeable":true,"resolveProxies":true,"lowerBound":0,"id":325,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"foreground","changeable":true,"resolveProxies":true,"lowerBound":0,"id":326,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"background","changeable":true,"resolveProxies":true,"lowerBound":0,"id":327,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"underlineColor","changeable":true,"resolveProxies":true,"lowerBound":0,"id":328,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"strikeoutColor","changeable":true,"resolveProxies":true,"lowerBound":0,"id":329,"derived":false},{"id":330,"eClass":"EGenericType"},{"id":331,"eClass":"EGenericType"},{"id":332,"eClass":"EGenericType"},{"id":333,"eClass":"EGenericType"},{"id":334,"eClass":"EGenericType"},{"id":335,"eClass":"EGenericType"},{"id":336,"eClass":"EGenericType"},{"id":337,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"start","changeable":true,"lowerBound":0,"iD":false,"id":338,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"end","changeable":true,"lowerBound":0,"iD":false,"id":339,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"style","changeable":true,"resolveProxies":true,"lowerBound":0,"id":340,"derived":false},{"id":341,"eClass":"EGenericType"},{"id":342,"eClass":"EGenericType"},{"id":343,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":1,"target":0},{"source":1,"target":7},{"source":1,"target":8},{"source":7,"target":9},{"source":7,"target":1},{"source":8,"target":10},{"source":8,"target":1},{"source":2,"target":0},{"source":2,"target":11},{"source":11,"target":1},{"source":11,"target":12},{"source":11,"target":2},{"source":12,"target":1},{"source":3,"target":0},{"source":3,"target":2},{"source":3,"target":13},{"source":13,"target":2},{"source":4,"target":0},{"source":4,"target":14},{"source":14,"target":15},{"source":14,"target":16},{"source":14,"target":4},{"source":14,"target":17},{"source":16,"target":15},{"source":5,"target":18},{"source":5,"target":19},{"source":5,"target":20},{"source":5,"target":21},{"source":5,"target":22},{"source":5,"target":23},{"source":5,"target":24},{"source":5,"target":25},{"source":5,"target":26},{"source":5,"target":27},{"source":5,"target":28},{"source":5,"target":29},{"source":5,"target":30},{"source":5,"target":31},{"source":5,"target":32},{"source":5,"target":33},{"source":5,"target":34},{"source":5,"target":0},{"source":18,"target":5},{"source":18,"target":24},{"source":18,"target":35},{"source":18,"target":36},{"source":35,"target":19},{"source":35,"target":37},{"source":35,"target":18},{"source":35,"target":38},{"source":37,"target":19},{"source":36,"target":24},{"source":19,"target":5},{"source":19,"target":18},{"source":19,"target":38},{"source":19,"target":39},{"source":38,"target":18},{"source":38,"target":40},{"source":38,"target":19},{"source":38,"target":35},{"source":40,"target":18},{"source":39,"target":18},{"source":20,"target":5},{"source":20,"target":19},{"source":20,"target":4},{"source":20,"target":41},{"source":20,"target":42},{"source":20,"target":43},{"source":20,"target":44},{"source":20,"target":45},{"source":20,"target":46},{"source":20,"target":47},{"source":20,"target":48},{"source":20,"target":49},{"source":20,"target":50},{"source":20,"target":51},{"source":20,"target":52},{"source":20,"target":53},{"source":41,"target":54},{"source":41,"target":20},{"source":42,"target":55},{"source":42,"target":20},{"source":43,"target":22},{"source":43,"target":56},{"source":43,"target":20},{"source":43,"target":57},{"source":56,"target":22},{"source":44,"target":58},{"source":44,"target":20},{"source":45,"target":59},{"source":45,"target":20},{"source":46,"target":60},{"source":46,"target":20},{"source":47,"target":61},{"source":47,"target":62},{"source":47,"target":20},{"source":62,"target":61},{"source":48,"target":63},{"source":48,"target":64},{"source":48,"target":20},{"source":64,"target":63},{"source":49,"target":31},{"source":49,"target":65},{"source":49,"target":20},{"source":65,"target":31},{"source":50,"target":66},{"source":50,"target":20},{"source":51,"target":67},{"source":51,"target":20},{"source":52,"target":19},{"source":53,"target":4},{"source":21,"target":5},{"source":21,"target":3},{"source":21,"target":68},{"source":21,"target":69},{"source":21,"target":70},{"source":21,"target":71},{"source":21,"target":72},{"source":68,"target":73},{"source":68,"target":21},{"source":69,"target":74},{"source":69,"target":75},{"source":69,"target":21},{"source":69,"target":76},{"source":75,"target":74},{"source":70,"target":77},{"source":70,"target":21},{"source":71,"target":31},{"source":71,"target":78},{"source":71,"target":21},{"source":71,"target":79},{"source":78,"target":31},{"source":72,"target":3},{"source":22,"target":5},{"source":22,"target":24},{"source":22,"target":80},{"source":22,"target":81},{"source":22,"target":57},{"source":22,"target":82},{"source":22,"target":83},{"source":80,"target":23},{"source":80,"target":84},{"source":80,"target":22},{"source":80,"target":85},{"source":84,"target":23},{"source":81,"target":23},{"source":81,"target":86},{"source":81,"target":22},{"source":81,"target":87},{"source":86,"target":23},{"source":57,"target":20},{"source":57,"target":88},{"source":57,"target":22},{"source":57,"target":43},{"source":88,"target":20},{"source":82,"target":28},{"source":82,"target":89},{"source":82,"target":22},{"source":82,"target":90},{"source":89,"target":28},{"source":83,"target":24},{"source":23,"target":5},{"source":23,"target":21},{"source":23,"target":91},{"source":23,"target":85},{"source":23,"target":87},{"source":23,"target":92},{"source":23,"target":93},{"source":91,"target":24},{"source":91,"target":94},{"source":91,"target":23},{"source":91,"target":95},{"source":94,"target":24},{"source":85,"target":22},{"source":85,"target":96},{"source":85,"target":23},{"source":85,"target":80},{"source":96,"target":22},{"source":87,"target":22},{"source":87,"target":97},{"source":87,"target":23},{"source":87,"target":81},{"source":97,"target":22},{"source":92,"target":74},{"source":92,"target":98},{"source":92,"target":23},{"source":98,"target":74},{"source":93,"target":21},{"source":24,"target":5},{"source":24,"target":21},{"source":24,"target":95},{"source":24,"target":99},{"source":95,"target":23},{"source":95,"target":100},{"source":95,"target":24},{"source":95,"target":91},{"source":100,"target":23},{"source":99,"target":21},{"source":25,"target":5},{"source":25,"target":32},{"source":25,"target":101},{"source":25,"target":102},{"source":101,"target":103},{"source":101,"target":104},{"source":101,"target":25},{"source":104,"target":103},{"source":102,"target":32},{"source":26,"target":5},{"source":26,"target":32},{"source":26,"target":105},{"source":26,"target":106},{"source":26,"target":107},{"source":105,"target":108},{"source":105,"target":26},{"source":106,"target":109},{"source":106,"target":26},{"source":107,"target":32},{"source":27,"target":5},{"source":27,"target":23},{"source":27,"target":110},{"source":110,"target":23},{"source":28,"target":5},{"source":28,"target":18},{"source":28,"target":111},{"source":28,"target":112},{"source":28,"target":90},{"source":28,"target":113},{"source":111,"target":114},{"source":111,"target":28},{"source":112,"target":115},{"source":112,"target":28},{"source":90,"target":22},{"source":90,"target":116},{"source":90,"target":28},{"source":90,"target":82},{"source":116,"target":22},{"source":113,"target":18},{"source":29,"target":5},{"source":29,"target":22},{"source":29,"target":117},{"source":29,"target":118},{"source":117,"target":103},{"source":117,"target":119},{"source":117,"target":29},{"source":119,"target":103},{"source":118,"target":22},{"source":30,"target":5},{"source":30,"target":22},{"source":30,"target":120},{"source":120,"target":22},{"source":31,"target":5},{"source":31,"target":2},{"source":31,"target":79},{"source":31,"target":121},{"source":31,"target":122},{"source":79,"target":21},{"source":79,"target":123},{"source":79,"target":31},{"source":79,"target":71},{"source":123,"target":21},{"source":121,"target":124},{"source":121,"target":31},{"source":122,"target":2},{"source":32,"target":5},{"source":32,"target":23},{"source":32,"target":125},{"source":32,"target":126},{"source":125,"target":127},{"source":125,"target":32},{"source":126,"target":23},{"source":33,"target":5},{"source":33,"target":22},{"source":33,"target":128},{"source":33,"target":129},{"source":128,"target":130},{"source":128,"target":131},{"source":128,"target":33},{"source":131,"target":130},{"source":129,"target":22},{"source":34,"target":5},{"source":34,"target":22},{"source":34,"target":132},{"source":34,"target":133},{"source":132,"target":33},{"source":132,"target":134},{"source":132,"target":34},{"source":134,"target":33},{"source":133,"target":22},{"source":6,"target":74},{"source":6,"target":135},{"source":6,"target":136},{"source":6,"target":137},{"source":6,"target":138},{"source":6,"target":139},{"source":6,"target":140},{"source":6,"target":141},{"source":6,"target":142},{"source":6,"target":143},{"source":6,"target":144},{"source":6,"target":145},{"source":6,"target":0},{"source":74,"target":6},{"source":74,"target":3},{"source":74,"target":146},{"source":74,"target":147},{"source":74,"target":148},{"source":74,"target":76},{"source":74,"target":149},{"source":74,"target":150},{"source":74,"target":151},{"source":74,"target":152},{"source":74,"target":153},{"source":74,"target":154},{"source":74,"target":155},{"source":147,"target":74},{"source":147,"target":156},{"source":147,"target":74},{"source":147,"target":148},{"source":156,"target":74},{"source":148,"target":74},{"source":148,"target":157},{"source":148,"target":74},{"source":148,"target":147},{"source":157,"target":74},{"source":76,"target":21},{"source":76,"target":158},{"source":76,"target":74},{"source":76,"target":69},{"source":158,"target":21},{"source":149,"target":159},{"source":149,"target":74},{"source":150,"target":160},{"source":150,"target":74},{"source":151,"target":161},{"source":151,"target":74},{"source":152,"target":162},{"source":152,"target":74},{"source":153,"target":15},{"source":153,"target":163},{"source":153,"target":74},{"source":163,"target":15},{"source":154,"target":3},{"source":155,"target":146},{"source":135,"target":6},{"source":135,"target":74},{"source":135,"target":164},{"source":135,"target":165},{"source":164,"target":103},{"source":164,"target":166},{"source":164,"target":135},{"source":166,"target":103},{"source":165,"target":74},{"source":136,"target":6},{"source":136,"target":74},{"source":136,"target":167},{"source":167,"target":74},{"source":137,"target":6},{"source":137,"target":143},{"source":137,"target":168},{"source":168,"target":143},{"source":138,"target":6},{"source":138,"target":135},{"source":138,"target":169},{"source":169,"target":135},{"source":139,"target":6},{"source":139,"target":74},{"source":139,"target":170},{"source":170,"target":74},{"source":140,"target":6},{"source":140,"target":74},{"source":140,"target":171},{"source":140,"target":172},{"source":140,"target":173},{"source":171,"target":174},{"source":171,"target":140},{"source":172,"target":175},{"source":172,"target":140},{"source":173,"target":74},{"source":141,"target":6},{"source":141,"target":74},{"source":141,"target":176},{"source":141,"target":177},{"source":141,"target":178},{"source":141,"target":179},{"source":141,"target":180},{"source":176,"target":181},{"source":176,"target":141},{"source":177,"target":182},{"source":177,"target":141},{"source":178,"target":183},{"source":178,"target":141},{"source":179,"target":184},{"source":179,"target":141},{"source":180,"target":74},{"source":142,"target":6},{"source":142,"target":74},{"source":142,"target":185},{"source":142,"target":186},{"source":185,"target":187},{"source":185,"target":142},{"source":186,"target":74},{"source":143,"target":6},{"source":143,"target":74},{"source":143,"target":188},{"source":143,"target":189},{"source":143,"target":190},{"source":143,"target":191},{"source":143,"target":192},{"source":143,"target":193},{"source":143,"target":194},{"source":143,"target":195},{"source":188,"target":63},{"source":188,"target":196},{"source":188,"target":143},{"source":196,"target":63},{"source":189,"target":197},{"source":189,"target":198},{"source":189,"target":143},{"source":198,"target":197},{"source":190,"target":197},{"source":190,"target":199},{"source":190,"target":143},{"source":199,"target":197},{"source":191,"target":200},{"source":191,"target":143},{"source":192,"target":201},{"source":192,"target":143},{"source":193,"target":202},{"source":193,"target":203},{"source":193,"target":143},{"source":203,"target":202},{"source":194,"target":204},{"source":194,"target":143},{"source":195,"target":74},{"source":144,"target":6},{"source":144,"target":143},{"source":144,"target":205},{"source":205,"target":143},{"source":145,"target":206},{"source":145,"target":197},{"source":145,"target":207},{"source":145,"target":208},{"source":145,"target":209},{"source":145,"target":15},{"source":145,"target":146},{"source":145,"target":210},{"source":145,"target":211},{"source":145,"target":212},{"source":145,"target":213},{"source":145,"target":63},{"source":145,"target":103},{"source":145,"target":61},{"source":145,"target":130},{"source":145,"target":214},{"source":145,"target":202},{"source":145,"target":6},{"source":206,"target":145},{"source":206,"target":215},{"source":206,"target":216},{"source":206,"target":217},{"source":206,"target":218},{"source":206,"target":219},{"source":206,"target":220},{"source":215,"target":206},{"source":216,"target":206},{"source":217,"target":206},{"source":218,"target":206},{"source":219,"target":206},{"source":220,"target":206},{"source":197,"target":145},{"source":197,"target":221},{"source":197,"target":222},{"source":197,"target":223},{"source":197,"target":224},{"source":197,"target":225},{"source":197,"target":226},{"source":197,"target":227},{"source":221,"target":197},{"source":222,"target":197},{"source":223,"target":197},{"source":224,"target":197},{"source":225,"target":197},{"source":226,"target":197},{"source":227,"target":197},{"source":207,"target":145},{"source":207,"target":228},{"source":207,"target":229},{"source":207,"target":230},{"source":228,"target":207},{"source":229,"target":207},{"source":230,"target":207},{"source":208,"target":145},{"source":208,"target":231},{"source":208,"target":232},{"source":208,"target":233},{"source":208,"target":234},{"source":231,"target":208},{"source":232,"target":208},{"source":233,"target":208},{"source":234,"target":208},{"source":209,"target":145},{"source":209,"target":235},{"source":235,"target":213},{"source":235,"target":236},{"source":235,"target":209},{"source":236,"target":213},{"source":15,"target":145},{"source":15,"target":4},{"source":15,"target":146},{"source":15,"target":237},{"source":15,"target":238},{"source":15,"target":239},{"source":15,"target":240},{"source":15,"target":241},{"source":15,"target":242},{"source":15,"target":243},{"source":15,"target":244},{"source":15,"target":245},{"source":15,"target":17},{"source":15,"target":246},{"source":15,"target":247},{"source":15,"target":248},{"source":237,"target":249},{"source":237,"target":15},{"source":238,"target":250},{"source":238,"target":15},{"source":239,"target":63},{"source":239,"target":251},{"source":239,"target":15},{"source":251,"target":63},{"source":240,"target":197},{"source":240,"target":252},{"source":240,"target":15},{"source":252,"target":197},{"source":241,"target":197},{"source":241,"target":253},{"source":241,"target":15},{"source":253,"target":197},{"source":242,"target":254},{"source":242,"target":15},{"source":243,"target":255},{"source":243,"target":15},{"source":244,"target":256},{"source":244,"target":15},{"source":245,"target":257},{"source":245,"target":15},{"source":17,"target":4},{"source":17,"target":258},{"source":17,"target":15},{"source":17,"target":14},{"source":258,"target":4},{"source":246,"target":259},{"source":246,"target":15},{"source":247,"target":4},{"source":248,"target":146},{"source":146,"target":145},{"source":146,"target":260},{"source":146,"target":261},{"source":146,"target":262},{"source":146,"target":263},{"source":146,"target":264},{"source":146,"target":265},{"source":146,"target":266},{"source":146,"target":267},{"source":260,"target":61},{"source":260,"target":268},{"source":260,"target":146},{"source":268,"target":61},{"source":261,"target":61},{"source":261,"target":269},{"source":261,"target":146},{"source":269,"target":61},{"source":262,"target":270},{"source":262,"target":146},{"source":263,"target":206},{"source":263,"target":271},{"source":263,"target":146},{"source":271,"target":206},{"source":264,"target":272},{"source":264,"target":146},{"source":265,"target":273},{"source":265,"target":146},{"source":266,"target":209},{"source":266,"target":274},{"source":266,"target":146},{"source":274,"target":209},{"source":267,"target":275},{"source":267,"target":146},{"source":210,"target":145},{"source":210,"target":276},{"source":210,"target":277},{"source":210,"target":278},{"source":276,"target":207},{"source":276,"target":279},{"source":276,"target":210},{"source":279,"target":207},{"source":277,"target":280},{"source":277,"target":210},{"source":278,"target":61},{"source":278,"target":281},{"source":278,"target":210},{"source":281,"target":61},{"source":211,"target":145},{"source":211,"target":282},{"source":211,"target":283},{"source":282,"target":210},{"source":282,"target":284},{"source":282,"target":211},{"source":284,"target":210},{"source":283,"target":210},{"source":283,"target":285},{"source":283,"target":211},{"source":285,"target":210},{"source":212,"target":145},{"source":212,"target":286},{"source":212,"target":287},{"source":286,"target":211},{"source":286,"target":288},{"source":286,"target":212},{"source":288,"target":211},{"source":287,"target":289},{"source":287,"target":212},{"source":213,"target":145},{"source":213,"target":290},{"source":213,"target":291},{"source":213,"target":292},{"source":290,"target":293},{"source":290,"target":213},{"source":291,"target":212},{"source":291,"target":294},{"source":291,"target":213},{"source":294,"target":212},{"source":292,"target":295},{"source":292,"target":213},{"source":63,"target":145},{"source":63,"target":296},{"source":63,"target":297},{"source":63,"target":298},{"source":63,"target":299},{"source":296,"target":300},{"source":296,"target":63},{"source":297,"target":301},{"source":297,"target":63},{"source":298,"target":302},{"source":298,"target":63},{"source":299,"target":303},{"source":299,"target":63},{"source":103,"target":145},{"source":103,"target":304},{"source":103,"target":305},{"source":103,"target":306},{"source":103,"target":307},{"source":304,"target":308},{"source":304,"target":103},{"source":305,"target":309},{"source":305,"target":103},{"source":306,"target":310},{"source":306,"target":103},{"source":307,"target":311},{"source":307,"target":103},{"source":61,"target":145},{"source":61,"target":312},{"source":61,"target":313},{"source":61,"target":314},{"source":312,"target":315},{"source":312,"target":61},{"source":313,"target":316},{"source":313,"target":61},{"source":314,"target":317},{"source":314,"target":61},{"source":130,"target":145},{"source":130,"target":318},{"source":130,"target":319},{"source":318,"target":320},{"source":318,"target":130},{"source":319,"target":321},{"source":319,"target":130},{"source":214,"target":145},{"source":214,"target":322},{"source":214,"target":323},{"source":214,"target":324},{"source":214,"target":325},{"source":214,"target":326},{"source":214,"target":327},{"source":214,"target":328},{"source":214,"target":329},{"source":322,"target":330},{"source":322,"target":214},{"source":323,"target":208},{"source":323,"target":331},{"source":323,"target":214},{"source":331,"target":208},{"source":324,"target":332},{"source":324,"target":214},{"source":325,"target":63},{"source":325,"target":333},{"source":325,"target":214},{"source":333,"target":63},{"source":326,"target":61},{"source":326,"target":334},{"source":326,"target":214},{"source":334,"target":61},{"source":327,"target":61},{"source":327,"target":335},{"source":327,"target":214},{"source":335,"target":61},{"source":328,"target":61},{"source":328,"target":336},{"source":328,"target":214},{"source":336,"target":61},{"source":329,"target":61},{"source":329,"target":337},{"source":329,"target":214},{"source":337,"target":61},{"source":202,"target":145},{"source":202,"target":338},{"source":202,"target":339},{"source":202,"target":340},{"source":338,"target":341},{"source":338,"target":202},{"source":339,"target":342},{"source":339,"target":202},{"source":340,"target":214},{"source":340,"target":343},{"source":340,"target":202},{"source":343,"target":214}],"multigraph":true} |
true | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0"
xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="properties"
nsURI="http://www.eclipse.org/papyrus/properties" nsPrefix="properties">
<eSubpackages name="environment" nsURI="http://www.eclipse.org/papyrus/properties/environment"
nsPrefix="environment">
<eClassifiers xsi:type="ecore:EClass" name="Environment">
<eStructuralFeatures xsi:type="ecore:EReference" name="modelElementFactories"
upperBound="-1" eType="#//environment/ModelElementFactoryDescriptor" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="constraintTypes" upperBound="-1"
eType="#//environment/ConstraintType" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="widgetTypes" upperBound="-1"
eType="#//environment/StandardWidgetType" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="propertyEditorTypes"
upperBound="-1" eType="#//environment/PropertyEditorType" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="compositeWidgetTypes"
upperBound="-1" eType="#//environment/CompositeWidgetType" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="layoutTypes" upperBound="-1"
eType="#//environment/LayoutType" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="namespaces" upperBound="-1"
eType="#//environment/Namespace" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="miscClasses" upperBound="-1"
eType="#//environment/MiscClass" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="PropertyEditorType" eSuperTypes="#//environment/WidgetType">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="type" lowerBound="1"
eType="#//environment/Type"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="multiplicity" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt" defaultValueLiteral="1"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="WidgetType" abstract="true">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="label" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="widgetClass" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="namespace" eType="#//environment/Namespace"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CompositeWidgetType" eSuperTypes="#//environment/WidgetType"/>
<eClassifiers xsi:type="ecore:EClass" name="LayoutType" eSuperTypes="#//environment/WidgetType"/>
<eClassifiers xsi:type="ecore:EClass" name="ConstraintType">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="label" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="constraintClass" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ModelElementFactoryDescriptor">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="factoryClass" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="Type">
<eLiterals name="String"/>
<eLiterals name="Boolean" value="1"/>
<eLiterals name="Integer" value="2"/>
<eLiterals name="Reference" value="3" literal="Reference"/>
<eLiterals name="Enumeration" value="4"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="StandardWidgetType" eSuperTypes="#//environment/WidgetType"/>
<eClassifiers xsi:type="ecore:EClass" name="Namespace">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="prefix" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="MiscClass">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="label" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="class" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="namespace" eType="#//environment/Namespace"/>
</eClassifiers>
</eSubpackages>
<eSubpackages name="contexts" nsURI="http://www.eclipse.org/papyrus/properties/contexts"
nsPrefix="contexts">
<eClassifiers xsi:type="ecore:EClass" name="Context">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="dependencies" ordered="false"
upperBound="-1" eType="#//contexts/Context"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="tabs" upperBound="-1"
eType="#//contexts/Tab" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="views" upperBound="-1"
eType="#//contexts/View" containment="true" eOpposite="#//contexts/View/context"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="dataContexts" upperBound="-1"
eType="#//contexts/DataContextRoot" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="DisplayUnit" abstract="true">
<eStructuralFeatures xsi:type="ecore:EReference" name="constraints" upperBound="-1"
eType="#//contexts/ConstraintDescriptor" containment="true" eOpposite="#//contexts/ConstraintDescriptor/display"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Tab">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="label" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="id" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="category" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="image" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="afterTab" eType="#//contexts/Tab"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="sections" upperBound="-1"
eType="#//contexts/Section" containment="true" eOpposite="#//contexts/Section/tab"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="indented" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"
defaultValueLiteral="false"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="View" eSuperTypes="#//contexts/DisplayUnit">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="sections" upperBound="-1"
eType="#//contexts/Section"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="elementMultiplicity"
lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"
defaultValueLiteral="1"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="context" lowerBound="1"
eType="#//contexts/Context" eOpposite="#//contexts/Context/views"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="automaticContext" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="datacontexts" upperBound="-1"
eType="#//contexts/DataContextElement"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Section" eSuperTypes="#//contexts/DisplayUnit">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="tab" lowerBound="1" eType="#//contexts/Tab"
eOpposite="#//contexts/Tab/sections"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="sectionFile" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="widget" lowerBound="1"
eType="#//ui/CompositeWidget"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="DataContextElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="properties" upperBound="-1"
eType="#//contexts/Property" containment="true" eOpposite="#//contexts/Property/contextElement"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="package" eType="#//contexts/DataContextPackage"
eOpposite="#//contexts/DataContextPackage/elements"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="supertypes" upperBound="-1"
eType="#//contexts/DataContextElement"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Property">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="label" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="type" lowerBound="1"
eType="#//environment/Type"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="contextElement" eType="#//contexts/DataContextElement"
eOpposite="#//contexts/DataContextElement/properties"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="multiplicity" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt" defaultValueLiteral="1"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="description" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="UnknownProperty" eSuperTypes="#//contexts/Property"/>
<eClassifiers xsi:type="ecore:EClass" name="DataContextPackage" eSuperTypes="#//contexts/DataContextElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="elements" upperBound="-1"
eType="#//contexts/DataContextElement" containment="true" eOpposite="#//contexts/DataContextElement/package"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="DataContextRoot" eSuperTypes="#//contexts/DataContextPackage">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="label" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="modelElementFactory"
lowerBound="1" eType="#//environment/ModelElementFactoryDescriptor"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ConstraintDescriptor" abstract="true">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="display" eType="#//contexts/DisplayUnit"
eOpposite="#//contexts/DisplayUnit/constraints"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="overrideable" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"
defaultValueLiteral="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="overriddenConstraints"
upperBound="-1" eType="#//contexts/SimpleConstraint"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="SimpleConstraint" eSuperTypes="#//contexts/ConstraintDescriptor">
<eStructuralFeatures xsi:type="ecore:EReference" name="constraintType" lowerBound="1"
eType="#//environment/ConstraintType"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="properties" upperBound="-1"
eType="#//contexts/ConfigProperty" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CompositeConstraint" eSuperTypes="#//contexts/ConstraintDescriptor">
<eStructuralFeatures xsi:type="ecore:EReference" name="constraints" upperBound="-1"
eType="#//contexts/SimpleConstraint" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ConfigProperty" abstract="true">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ValueProperty" eSuperTypes="#//contexts/ConfigProperty">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ReferenceProperty" eSuperTypes="#//contexts/ConfigProperty">
<eStructuralFeatures xsi:type="ecore:EReference" name="value" lowerBound="1"
eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EObject"/>
</eClassifiers>
</eSubpackages>
<eSubpackages name="ui" nsURI="http://www.eclipse.org/papyrus/properties/ui" nsPrefix="ui">
<eClassifiers xsi:type="ecore:EClass" name="Element"/>
<eClassifiers xsi:type="ecore:EClass" name="UIComponent" abstract="true" eSuperTypes="#//ui/Element">
<eStructuralFeatures xsi:type="ecore:EReference" name="attributes" upperBound="-1"
eType="#//ui/WidgetAttribute" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Widget" abstract="true" eSuperTypes="#//ui/UIComponent"/>
<eClassifiers xsi:type="ecore:EClass" name="StandardWidget" eSuperTypes="#//ui/Widget">
<eStructuralFeatures xsi:type="ecore:EReference" name="widgetType" lowerBound="1"
eType="#//environment/StandardWidgetType"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="PropertyEditor" eSuperTypes="#//ui/Widget">
<eStructuralFeatures xsi:type="ecore:EReference" name="property" lowerBound="1"
eType="#//contexts/Property"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="readOnly" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"
defaultValueLiteral="false"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="widgetType" lowerBound="1"
eType="#//environment/PropertyEditorType"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="unresolvedProperty" eType="#//contexts/UnknownProperty"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="contentProviderClass"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="showLabel" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"
defaultValueLiteral="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="customLabel" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CompositeWidget" eSuperTypes="#//ui/Widget">
<eStructuralFeatures xsi:type="ecore:EReference" name="layout" lowerBound="1"
eType="#//ui/Layout" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="widgets" upperBound="-1"
eType="#//ui/Widget" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="widgetType" lowerBound="1"
eType="#//environment/CompositeWidgetType"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="UnknownComponent" eSuperTypes="#//ui/Widget">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="typeName" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Layout" eSuperTypes="#//ui/UIComponent">
<eStructuralFeatures xsi:type="ecore:EReference" name="layoutType" lowerBound="1"
eType="#//environment/LayoutType"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="WidgetAttribute" abstract="true" eSuperTypes="#//ui/Element">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ValueAttribute" eSuperTypes="#//ui/WidgetAttribute">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ReferenceAttribute" eSuperTypes="#//ui/WidgetAttribute">
<eStructuralFeatures xsi:type="ecore:EReference" name="value" lowerBound="1"
eType="#//ui/UIComponent" containment="true"/>
</eClassifiers>
</eSubpackages>
</ecore:EPackage>
| github:ecore:/data/MDEGroup/QMM-COMLAN-data/validation-subjects/metamodels/Properties.ecore | ecore | properties
environment
Environment
modelElementFactories
constraintTypes
widgetTypes
propertyEditorTypes
compositeWidgetTypes
layoutTypes
namespaces
miscClasses
PropertyEditorType
type
multiplicity
1
WidgetType
label
widgetClass
namespace
CompositeWidgetType
LayoutType
ConstraintType
label
constraintClass
ModelElementFactoryDescriptor
name
factoryClass
Type
String
String
Boolean
Boolean
Integer
Integer
Reference
Reference
Enumeration
Enumeration
StandardWidgetType
Namespace
prefix
name
value
MiscClass
label
class
namespace
contexts
Context
name
dependencies
tabs
views
dataContexts
DisplayUnit
constraints
Tab
label
id
category
image
afterTab
sections
indented
false
View
name
sections
elementMultiplicity
1
context
automaticContext
datacontexts
Section
name
tab
sectionFile
widget
DataContextElement
name
properties
package
supertypes
Property
name
label
type
contextElement
multiplicity
1
description
UnknownProperty
DataContextPackage
elements
DataContextRoot
label
modelElementFactory
ConstraintDescriptor
name
display
overrideable
true
overriddenConstraints
SimpleConstraint
constraintType
properties
CompositeConstraint
constraints
ConfigProperty
name
ValueProperty
value
ReferenceProperty
value
ui
Element
UIComponent
attributes
Widget
StandardWidget
widgetType
PropertyEditor
property
readOnly
false
widgetType
unresolvedProperty
contentProviderClass
showLabel
true
customLabel
CompositeWidget
layout
widgets
widgetType
UnknownComponent
typeName
Layout
layoutType
WidgetAttribute
name
ValueAttribute
value
ReferenceAttribute
value | null | {"directed":true,"nodes":[{"nsPrefix":"properties","nsURI":"http://www.eclipse.org/papyrus/properties","name":"properties","id":0,"eClass":"EPackage"},{"nsPrefix":"environment","nsURI":"http://www.eclipse.org/papyrus/properties/environment","name":"environment","id":1,"eClass":"EPackage"},{"nsPrefix":"contexts","nsURI":"http://www.eclipse.org/papyrus/properties/contexts","name":"contexts","id":2,"eClass":"EPackage"},{"nsPrefix":"ui","nsURI":"http://www.eclipse.org/papyrus/properties/ui","name":"ui","id":3,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Environment","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PropertyEditorType","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"WidgetType","instanceClass":null,"abstract":true,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CompositeWidgetType","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LayoutType","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ConstraintType","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ModelElementFactoryDescriptor","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"Type","instanceClass":null,"id":11,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StandardWidgetType","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Namespace","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MiscClass","instanceClass":null,"abstract":false,"id":14,"interface":false,"eClass":"EClass"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"modelElementFactories","changeable":true,"resolveProxies":true,"lowerBound":0,"id":15,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"constraintTypes","changeable":true,"resolveProxies":true,"lowerBound":0,"id":16,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"widgetTypes","changeable":true,"resolveProxies":true,"lowerBound":0,"id":17,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"propertyEditorTypes","changeable":true,"resolveProxies":true,"lowerBound":0,"id":18,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"compositeWidgetTypes","changeable":true,"resolveProxies":true,"lowerBound":0,"id":19,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"layoutTypes","changeable":true,"resolveProxies":true,"lowerBound":0,"id":20,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"namespaces","changeable":true,"resolveProxies":true,"lowerBound":0,"id":21,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"miscClasses","changeable":true,"resolveProxies":true,"lowerBound":0,"id":22,"derived":false},{"id":23,"eClass":"EGenericType"},{"id":24,"eClass":"EGenericType"},{"id":25,"eClass":"EGenericType"},{"id":26,"eClass":"EGenericType"},{"id":27,"eClass":"EGenericType"},{"id":28,"eClass":"EGenericType"},{"id":29,"eClass":"EGenericType"},{"id":30,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"lowerBound":1,"iD":false,"id":31,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"1","unsettable":false,"transient":false,"unique":true,"name":"multiplicity","changeable":true,"lowerBound":1,"iD":false,"id":32,"derived":false},{"id":33,"eClass":"EGenericType"},{"id":34,"eClass":"EGenericType"},{"id":35,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"label","changeable":true,"lowerBound":1,"iD":false,"id":36,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"widgetClass","changeable":true,"lowerBound":1,"iD":false,"id":37,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"namespace","changeable":true,"resolveProxies":true,"lowerBound":0,"id":38,"derived":false},{"id":39,"eClass":"EGenericType"},{"id":40,"eClass":"EGenericType"},{"id":41,"eClass":"EGenericType"},{"id":42,"eClass":"EGenericType"},{"id":43,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"label","changeable":true,"lowerBound":1,"iD":false,"id":44,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"constraintClass","changeable":true,"lowerBound":1,"iD":false,"id":45,"derived":false},{"id":46,"eClass":"EGenericType"},{"id":47,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":48,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"factoryClass","changeable":true,"lowerBound":1,"iD":false,"id":49,"derived":false},{"id":50,"eClass":"EGenericType"},{"id":51,"eClass":"EGenericType"},{"name":"String","id":52,"value":0,"literal":"String","eClass":"EEnumLiteral"},{"name":"Boolean","id":53,"value":1,"literal":"Boolean","eClass":"EEnumLiteral"},{"name":"Integer","id":54,"value":2,"literal":"Integer","eClass":"EEnumLiteral"},{"name":"Reference","id":55,"value":3,"literal":"Reference","eClass":"EEnumLiteral"},{"name":"Enumeration","id":56,"value":4,"literal":"Enumeration","eClass":"EEnumLiteral"},{"id":57,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"prefix","changeable":true,"lowerBound":0,"iD":false,"id":58,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":59,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":1,"iD":false,"id":60,"derived":false},{"id":61,"eClass":"EGenericType"},{"id":62,"eClass":"EGenericType"},{"id":63,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"label","changeable":true,"lowerBound":0,"iD":false,"id":64,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"class","changeable":true,"lowerBound":1,"iD":false,"id":65,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"namespace","changeable":true,"resolveProxies":true,"lowerBound":0,"id":66,"derived":false},{"id":67,"eClass":"EGenericType"},{"id":68,"eClass":"EGenericType"},{"id":69,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Context","instanceClass":null,"abstract":false,"id":70,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DisplayUnit","instanceClass":null,"abstract":true,"id":71,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Tab","instanceClass":null,"abstract":false,"id":72,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"View","instanceClass":null,"abstract":false,"id":73,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Section","instanceClass":null,"abstract":false,"id":74,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DataContextElement","instanceClass":null,"abstract":false,"id":75,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Property","instanceClass":null,"abstract":false,"id":76,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"UnknownProperty","instanceClass":null,"abstract":false,"id":77,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DataContextPackage","instanceClass":null,"abstract":false,"id":78,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DataContextRoot","instanceClass":null,"abstract":false,"id":79,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ConstraintDescriptor","instanceClass":null,"abstract":true,"id":80,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SimpleConstraint","instanceClass":null,"abstract":false,"id":81,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CompositeConstraint","instanceClass":null,"abstract":false,"id":82,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ConfigProperty","instanceClass":null,"abstract":true,"id":83,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ValueProperty","instanceClass":null,"abstract":false,"id":84,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ReferenceProperty","instanceClass":null,"abstract":false,"id":85,"interface":false,"eClass":"EClass"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":86,"derived":false},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"dependencies","changeable":true,"resolveProxies":true,"lowerBound":0,"id":87,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"tabs","changeable":true,"resolveProxies":true,"lowerBound":0,"id":88,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"views","changeable":true,"resolveProxies":true,"lowerBound":0,"id":89,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"dataContexts","changeable":true,"resolveProxies":true,"lowerBound":0,"id":90,"derived":false},{"id":91,"eClass":"EGenericType"},{"id":92,"eClass":"EGenericType"},{"id":93,"eClass":"EGenericType"},{"id":94,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"context","changeable":true,"resolveProxies":true,"lowerBound":1,"id":95,"derived":false},{"id":96,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"constraints","changeable":true,"resolveProxies":true,"lowerBound":0,"id":97,"derived":false},{"id":98,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"display","changeable":true,"resolveProxies":true,"lowerBound":0,"id":99,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"label","changeable":true,"lowerBound":1,"iD":false,"id":100,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"id","changeable":true,"lowerBound":1,"iD":false,"id":101,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"category","changeable":true,"lowerBound":0,"iD":false,"id":102,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"image","changeable":true,"lowerBound":0,"iD":false,"id":103,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"afterTab","changeable":true,"resolveProxies":true,"lowerBound":0,"id":104,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"sections","changeable":true,"resolveProxies":true,"lowerBound":0,"id":105,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"false","unsettable":false,"transient":false,"unique":true,"name":"indented","changeable":true,"lowerBound":1,"iD":false,"id":106,"derived":false},{"id":107,"eClass":"EGenericType"},{"id":108,"eClass":"EGenericType"},{"id":109,"eClass":"EGenericType"},{"id":110,"eClass":"EGenericType"},{"id":111,"eClass":"EGenericType"},{"id":112,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"tab","changeable":true,"resolveProxies":true,"lowerBound":1,"id":113,"derived":false},{"id":114,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":115,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"sections","changeable":true,"resolveProxies":true,"lowerBound":0,"id":116,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"1","unsettable":false,"transient":false,"unique":true,"name":"elementMultiplicity","changeable":true,"lowerBound":1,"iD":false,"id":117,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"automaticContext","changeable":true,"lowerBound":1,"iD":false,"id":118,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"datacontexts","changeable":true,"resolveProxies":true,"lowerBound":0,"id":119,"derived":false},{"id":120,"eClass":"EGenericType"},{"id":121,"eClass":"EGenericType"},{"id":122,"eClass":"EGenericType"},{"id":123,"eClass":"EGenericType"},{"id":124,"eClass":"EGenericType"},{"id":125,"eClass":"EGenericType"},{"id":126,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":127,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"sectionFile","changeable":true,"lowerBound":1,"iD":false,"id":128,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"widget","changeable":true,"resolveProxies":true,"lowerBound":1,"id":129,"derived":false},{"id":130,"eClass":"EGenericType"},{"id":131,"eClass":"EGenericType"},{"id":132,"eClass":"EGenericType"},{"id":133,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CompositeWidget","instanceClass":null,"abstract":false,"id":134,"interface":false,"eClass":"EClass"},{"id":135,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":136,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"properties","changeable":true,"resolveProxies":true,"lowerBound":0,"id":137,"derived":false},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"package","changeable":true,"resolveProxies":true,"lowerBound":0,"id":138,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"supertypes","changeable":true,"resolveProxies":true,"lowerBound":0,"id":139,"derived":false},{"id":140,"eClass":"EGenericType"},{"id":141,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"contextElement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":142,"derived":false},{"id":143,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"elements","changeable":true,"resolveProxies":true,"lowerBound":0,"id":144,"derived":false},{"id":145,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":146,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"label","changeable":true,"lowerBound":0,"iD":false,"id":147,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"lowerBound":1,"iD":false,"id":148,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"1","unsettable":false,"transient":false,"unique":true,"name":"multiplicity","changeable":true,"lowerBound":1,"iD":false,"id":149,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"description","changeable":true,"lowerBound":0,"iD":false,"id":150,"derived":false},{"id":151,"eClass":"EGenericType"},{"id":152,"eClass":"EGenericType"},{"id":153,"eClass":"EGenericType"},{"id":154,"eClass":"EGenericType"},{"id":155,"eClass":"EGenericType"},{"id":156,"eClass":"EGenericType"},{"id":157,"eClass":"EGenericType"},{"id":158,"eClass":"EGenericType"},{"id":159,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"label","changeable":true,"lowerBound":1,"iD":false,"id":160,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"modelElementFactory","changeable":true,"resolveProxies":true,"lowerBound":1,"id":161,"derived":false},{"id":162,"eClass":"EGenericType"},{"id":163,"eClass":"EGenericType"},{"id":164,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":165,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":true,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"true","unsettable":false,"transient":false,"unique":true,"name":"overrideable","changeable":true,"lowerBound":1,"iD":false,"id":166,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"overriddenConstraints","changeable":true,"resolveProxies":true,"lowerBound":0,"id":167,"derived":false},{"id":168,"eClass":"EGenericType"},{"id":169,"eClass":"EGenericType"},{"id":170,"eClass":"EGenericType"},{"id":171,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"constraintType","changeable":true,"resolveProxies":true,"lowerBound":1,"id":172,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"properties","changeable":true,"resolveProxies":true,"lowerBound":0,"id":173,"derived":false},{"id":174,"eClass":"EGenericType"},{"id":175,"eClass":"EGenericType"},{"id":176,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"constraints","changeable":true,"resolveProxies":true,"lowerBound":0,"id":177,"derived":false},{"id":178,"eClass":"EGenericType"},{"id":179,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":180,"derived":false},{"id":181,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":1,"iD":false,"id":182,"derived":false},{"id":183,"eClass":"EGenericType"},{"id":184,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"resolveProxies":true,"lowerBound":1,"id":185,"derived":false},{"id":186,"eClass":"EGenericType"},{"id":187,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Element","instanceClass":null,"abstract":false,"id":188,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"UIComponent","instanceClass":null,"abstract":true,"id":189,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Widget","instanceClass":null,"abstract":true,"id":190,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StandardWidget","instanceClass":null,"abstract":false,"id":191,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PropertyEditor","instanceClass":null,"abstract":false,"id":192,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"UnknownComponent","instanceClass":null,"abstract":false,"id":193,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Layout","instanceClass":null,"abstract":false,"id":194,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"WidgetAttribute","instanceClass":null,"abstract":true,"id":195,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ValueAttribute","instanceClass":null,"abstract":false,"id":196,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ReferenceAttribute","instanceClass":null,"abstract":false,"id":197,"interface":false,"eClass":"EClass"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"attributes","changeable":true,"resolveProxies":true,"lowerBound":0,"id":198,"derived":false},{"id":199,"eClass":"EGenericType"},{"id":200,"eClass":"EGenericType"},{"id":201,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"widgetType","changeable":true,"resolveProxies":true,"lowerBound":1,"id":202,"derived":false},{"id":203,"eClass":"EGenericType"},{"id":204,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"property","changeable":true,"resolveProxies":true,"lowerBound":1,"id":205,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"false","unsettable":false,"transient":false,"unique":true,"name":"readOnly","changeable":true,"lowerBound":1,"iD":false,"id":206,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"widgetType","changeable":true,"resolveProxies":true,"lowerBound":1,"id":207,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"unresolvedProperty","changeable":true,"resolveProxies":true,"lowerBound":0,"id":208,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"contentProviderClass","changeable":true,"lowerBound":0,"iD":false,"id":209,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":true,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"true","unsettable":false,"transient":false,"unique":true,"name":"showLabel","changeable":true,"lowerBound":1,"iD":false,"id":210,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"customLabel","changeable":true,"lowerBound":0,"iD":false,"id":211,"derived":false},{"id":212,"eClass":"EGenericType"},{"id":213,"eClass":"EGenericType"},{"id":214,"eClass":"EGenericType"},{"id":215,"eClass":"EGenericType"},{"id":216,"eClass":"EGenericType"},{"id":217,"eClass":"EGenericType"},{"id":218,"eClass":"EGenericType"},{"id":219,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"layout","changeable":true,"resolveProxies":true,"lowerBound":1,"id":220,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"widgets","changeable":true,"resolveProxies":true,"lowerBound":0,"id":221,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"widgetType","changeable":true,"resolveProxies":true,"lowerBound":1,"id":222,"derived":false},{"id":223,"eClass":"EGenericType"},{"id":224,"eClass":"EGenericType"},{"id":225,"eClass":"EGenericType"},{"id":226,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"typeName","changeable":true,"lowerBound":1,"iD":false,"id":227,"derived":false},{"id":228,"eClass":"EGenericType"},{"id":229,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"layoutType","changeable":true,"resolveProxies":true,"lowerBound":1,"id":230,"derived":false},{"id":231,"eClass":"EGenericType"},{"id":232,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":233,"derived":false},{"id":234,"eClass":"EGenericType"},{"id":235,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":1,"iD":false,"id":236,"derived":false},{"id":237,"eClass":"EGenericType"},{"id":238,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"resolveProxies":true,"lowerBound":1,"id":239,"derived":false},{"id":240,"eClass":"EGenericType"},{"id":241,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":1,"target":4},{"source":1,"target":5},{"source":1,"target":6},{"source":1,"target":7},{"source":1,"target":8},{"source":1,"target":9},{"source":1,"target":10},{"source":1,"target":11},{"source":1,"target":12},{"source":1,"target":13},{"source":1,"target":14},{"source":1,"target":0},{"source":4,"target":1},{"source":4,"target":15},{"source":4,"target":16},{"source":4,"target":17},{"source":4,"target":18},{"source":4,"target":19},{"source":4,"target":20},{"source":4,"target":21},{"source":4,"target":22},{"source":15,"target":10},{"source":15,"target":23},{"source":15,"target":4},{"source":23,"target":10},{"source":16,"target":9},{"source":16,"target":24},{"source":16,"target":4},{"source":24,"target":9},{"source":17,"target":12},{"source":17,"target":25},{"source":17,"target":4},{"source":25,"target":12},{"source":18,"target":5},{"source":18,"target":26},{"source":18,"target":4},{"source":26,"target":5},{"source":19,"target":7},{"source":19,"target":27},{"source":19,"target":4},{"source":27,"target":7},{"source":20,"target":8},{"source":20,"target":28},{"source":20,"target":4},{"source":28,"target":8},{"source":21,"target":13},{"source":21,"target":29},{"source":21,"target":4},{"source":29,"target":13},{"source":22,"target":14},{"source":22,"target":30},{"source":22,"target":4},{"source":30,"target":14},{"source":5,"target":1},{"source":5,"target":6},{"source":5,"target":31},{"source":5,"target":32},{"source":5,"target":33},{"source":31,"target":11},{"source":31,"target":34},{"source":31,"target":5},{"source":34,"target":11},{"source":32,"target":35},{"source":32,"target":5},{"source":33,"target":6},{"source":6,"target":1},{"source":6,"target":36},{"source":6,"target":37},{"source":6,"target":38},{"source":36,"target":39},{"source":36,"target":6},{"source":37,"target":40},{"source":37,"target":6},{"source":38,"target":13},{"source":38,"target":41},{"source":38,"target":6},{"source":41,"target":13},{"source":7,"target":1},{"source":7,"target":6},{"source":7,"target":42},{"source":42,"target":6},{"source":8,"target":1},{"source":8,"target":6},{"source":8,"target":43},{"source":43,"target":6},{"source":9,"target":1},{"source":9,"target":44},{"source":9,"target":45},{"source":44,"target":46},{"source":44,"target":9},{"source":45,"target":47},{"source":45,"target":9},{"source":10,"target":1},{"source":10,"target":48},{"source":10,"target":49},{"source":48,"target":50},{"source":48,"target":10},{"source":49,"target":51},{"source":49,"target":10},{"source":11,"target":1},{"source":11,"target":52},{"source":11,"target":53},{"source":11,"target":54},{"source":11,"target":55},{"source":11,"target":56},{"source":52,"target":11},{"source":53,"target":11},{"source":54,"target":11},{"source":55,"target":11},{"source":56,"target":11},{"source":12,"target":1},{"source":12,"target":6},{"source":12,"target":57},{"source":57,"target":6},{"source":13,"target":1},{"source":13,"target":58},{"source":13,"target":59},{"source":13,"target":60},{"source":58,"target":61},{"source":58,"target":13},{"source":59,"target":62},{"source":59,"target":13},{"source":60,"target":63},{"source":60,"target":13},{"source":14,"target":1},{"source":14,"target":64},{"source":14,"target":65},{"source":14,"target":66},{"source":64,"target":67},{"source":64,"target":14},{"source":65,"target":68},{"source":65,"target":14},{"source":66,"target":13},{"source":66,"target":69},{"source":66,"target":14},{"source":69,"target":13},{"source":2,"target":70},{"source":2,"target":71},{"source":2,"target":72},{"source":2,"target":73},{"source":2,"target":74},{"source":2,"target":75},{"source":2,"target":76},{"source":2,"target":77},{"source":2,"target":78},{"source":2,"target":79},{"source":2,"target":80},{"source":2,"target":81},{"source":2,"target":82},{"source":2,"target":83},{"source":2,"target":84},{"source":2,"target":85},{"source":2,"target":0},{"source":70,"target":2},{"source":70,"target":86},{"source":70,"target":87},{"source":70,"target":88},{"source":70,"target":89},{"source":70,"target":90},{"source":86,"target":91},{"source":86,"target":70},{"source":87,"target":70},{"source":87,"target":92},{"source":87,"target":70},{"source":92,"target":70},{"source":88,"target":72},{"source":88,"target":93},{"source":88,"target":70},{"source":93,"target":72},{"source":89,"target":73},{"source":89,"target":94},{"source":89,"target":70},{"source":89,"target":95},{"source":94,"target":73},{"source":90,"target":79},{"source":90,"target":96},{"source":90,"target":70},{"source":96,"target":79},{"source":71,"target":2},{"source":71,"target":97},{"source":97,"target":80},{"source":97,"target":98},{"source":97,"target":71},{"source":97,"target":99},{"source":98,"target":80},{"source":72,"target":2},{"source":72,"target":100},{"source":72,"target":101},{"source":72,"target":102},{"source":72,"target":103},{"source":72,"target":104},{"source":72,"target":105},{"source":72,"target":106},{"source":100,"target":107},{"source":100,"target":72},{"source":101,"target":108},{"source":101,"target":72},{"source":102,"target":109},{"source":102,"target":72},{"source":103,"target":110},{"source":103,"target":72},{"source":104,"target":72},{"source":104,"target":111},{"source":104,"target":72},{"source":111,"target":72},{"source":105,"target":74},{"source":105,"target":112},{"source":105,"target":72},{"source":105,"target":113},{"source":112,"target":74},{"source":106,"target":114},{"source":106,"target":72},{"source":73,"target":2},{"source":73,"target":71},{"source":73,"target":115},{"source":73,"target":116},{"source":73,"target":117},{"source":73,"target":95},{"source":73,"target":118},{"source":73,"target":119},{"source":73,"target":120},{"source":115,"target":121},{"source":115,"target":73},{"source":116,"target":74},{"source":116,"target":122},{"source":116,"target":73},{"source":122,"target":74},{"source":117,"target":123},{"source":117,"target":73},{"source":95,"target":70},{"source":95,"target":124},{"source":95,"target":73},{"source":95,"target":89},{"source":124,"target":70},{"source":118,"target":125},{"source":118,"target":73},{"source":119,"target":75},{"source":119,"target":126},{"source":119,"target":73},{"source":126,"target":75},{"source":120,"target":71},{"source":74,"target":2},{"source":74,"target":71},{"source":74,"target":127},{"source":74,"target":113},{"source":74,"target":128},{"source":74,"target":129},{"source":74,"target":130},{"source":127,"target":131},{"source":127,"target":74},{"source":113,"target":72},{"source":113,"target":132},{"source":113,"target":74},{"source":113,"target":105},{"source":132,"target":72},{"source":128,"target":133},{"source":128,"target":74},{"source":129,"target":134},{"source":129,"target":135},{"source":129,"target":74},{"source":135,"target":134},{"source":130,"target":71},{"source":75,"target":2},{"source":75,"target":136},{"source":75,"target":137},{"source":75,"target":138},{"source":75,"target":139},{"source":136,"target":140},{"source":136,"target":75},{"source":137,"target":76},{"source":137,"target":141},{"source":137,"target":75},{"source":137,"target":142},{"source":141,"target":76},{"source":138,"target":78},{"source":138,"target":143},{"source":138,"target":75},{"source":138,"target":144},{"source":143,"target":78},{"source":139,"target":75},{"source":139,"target":145},{"source":139,"target":75},{"source":145,"target":75},{"source":76,"target":2},{"source":76,"target":146},{"source":76,"target":147},{"source":76,"target":148},{"source":76,"target":142},{"source":76,"target":149},{"source":76,"target":150},{"source":146,"target":151},{"source":146,"target":76},{"source":147,"target":152},{"source":147,"target":76},{"source":148,"target":11},{"source":148,"target":153},{"source":148,"target":76},{"source":153,"target":11},{"source":142,"target":75},{"source":142,"target":154},{"source":142,"target":76},{"source":142,"target":137},{"source":154,"target":75},{"source":149,"target":155},{"source":149,"target":76},{"source":150,"target":156},{"source":150,"target":76},{"source":77,"target":2},{"source":77,"target":76},{"source":77,"target":157},{"source":157,"target":76},{"source":78,"target":2},{"source":78,"target":75},{"source":78,"target":144},{"source":78,"target":158},{"source":144,"target":75},{"source":144,"target":159},{"source":144,"target":78},{"source":144,"target":138},{"source":159,"target":75},{"source":158,"target":75},{"source":79,"target":2},{"source":79,"target":78},{"source":79,"target":160},{"source":79,"target":161},{"source":79,"target":162},{"source":160,"target":163},{"source":160,"target":79},{"source":161,"target":10},{"source":161,"target":164},{"source":161,"target":79},{"source":164,"target":10},{"source":162,"target":78},{"source":80,"target":2},{"source":80,"target":165},{"source":80,"target":99},{"source":80,"target":166},{"source":80,"target":167},{"source":165,"target":168},{"source":165,"target":80},{"source":99,"target":71},{"source":99,"target":169},{"source":99,"target":80},{"source":99,"target":97},{"source":169,"target":71},{"source":166,"target":170},{"source":166,"target":80},{"source":167,"target":81},{"source":167,"target":171},{"source":167,"target":80},{"source":171,"target":81},{"source":81,"target":2},{"source":81,"target":80},{"source":81,"target":172},{"source":81,"target":173},{"source":81,"target":174},{"source":172,"target":9},{"source":172,"target":175},{"source":172,"target":81},{"source":175,"target":9},{"source":173,"target":83},{"source":173,"target":176},{"source":173,"target":81},{"source":176,"target":83},{"source":174,"target":80},{"source":82,"target":2},{"source":82,"target":80},{"source":82,"target":177},{"source":82,"target":178},{"source":177,"target":81},{"source":177,"target":179},{"source":177,"target":82},{"source":179,"target":81},{"source":178,"target":80},{"source":83,"target":2},{"source":83,"target":180},{"source":180,"target":181},{"source":180,"target":83},{"source":84,"target":2},{"source":84,"target":83},{"source":84,"target":182},{"source":84,"target":183},{"source":182,"target":184},{"source":182,"target":84},{"source":183,"target":83},{"source":85,"target":2},{"source":85,"target":83},{"source":85,"target":185},{"source":85,"target":186},{"source":185,"target":187},{"source":185,"target":85},{"source":186,"target":83},{"source":3,"target":188},{"source":3,"target":189},{"source":3,"target":190},{"source":3,"target":191},{"source":3,"target":192},{"source":3,"target":134},{"source":3,"target":193},{"source":3,"target":194},{"source":3,"target":195},{"source":3,"target":196},{"source":3,"target":197},{"source":3,"target":0},{"source":188,"target":3},{"source":189,"target":3},{"source":189,"target":188},{"source":189,"target":198},{"source":189,"target":199},{"source":198,"target":195},{"source":198,"target":200},{"source":198,"target":189},{"source":200,"target":195},{"source":199,"target":188},{"source":190,"target":3},{"source":190,"target":189},{"source":190,"target":201},{"source":201,"target":189},{"source":191,"target":3},{"source":191,"target":190},{"source":191,"target":202},{"source":191,"target":203},{"source":202,"target":12},{"source":202,"target":204},{"source":202,"target":191},{"source":204,"target":12},{"source":203,"target":190},{"source":192,"target":3},{"source":192,"target":190},{"source":192,"target":205},{"source":192,"target":206},{"source":192,"target":207},{"source":192,"target":208},{"source":192,"target":209},{"source":192,"target":210},{"source":192,"target":211},{"source":192,"target":212},{"source":205,"target":76},{"source":205,"target":213},{"source":205,"target":192},{"source":213,"target":76},{"source":206,"target":214},{"source":206,"target":192},{"source":207,"target":5},{"source":207,"target":215},{"source":207,"target":192},{"source":215,"target":5},{"source":208,"target":77},{"source":208,"target":216},{"source":208,"target":192},{"source":216,"target":77},{"source":209,"target":217},{"source":209,"target":192},{"source":210,"target":218},{"source":210,"target":192},{"source":211,"target":219},{"source":211,"target":192},{"source":212,"target":190},{"source":134,"target":3},{"source":134,"target":190},{"source":134,"target":220},{"source":134,"target":221},{"source":134,"target":222},{"source":134,"target":223},{"source":220,"target":194},{"source":220,"target":224},{"source":220,"target":134},{"source":224,"target":194},{"source":221,"target":190},{"source":221,"target":225},{"source":221,"target":134},{"source":225,"target":190},{"source":222,"target":7},{"source":222,"target":226},{"source":222,"target":134},{"source":226,"target":7},{"source":223,"target":190},{"source":193,"target":3},{"source":193,"target":190},{"source":193,"target":227},{"source":193,"target":228},{"source":227,"target":229},{"source":227,"target":193},{"source":228,"target":190},{"source":194,"target":3},{"source":194,"target":189},{"source":194,"target":230},{"source":194,"target":231},{"source":230,"target":8},{"source":230,"target":232},{"source":230,"target":194},{"source":232,"target":8},{"source":231,"target":189},{"source":195,"target":3},{"source":195,"target":188},{"source":195,"target":233},{"source":195,"target":234},{"source":233,"target":235},{"source":233,"target":195},{"source":234,"target":188},{"source":196,"target":3},{"source":196,"target":195},{"source":196,"target":236},{"source":196,"target":237},{"source":236,"target":238},{"source":236,"target":196},{"source":237,"target":195},{"source":197,"target":3},{"source":197,"target":195},{"source":197,"target":239},{"source":197,"target":240},{"source":239,"target":189},{"source":239,"target":241},{"source":239,"target":197},{"source":241,"target":189},{"source":240,"target":195}],"multigraph":true} |
false | <?xml version="1.0" encoding="ASCII"?>
<ecore:EPackage xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="fsm" nsURI="http://puzzle.examples.fsm" nsPrefix="fsm">
<eClassifiers xsi:type="ecore:EClass" name="StateMachine" eSuperTypes="#//NamedElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="regions" upperBound="-1"
eType="#//Region" containment="true" eOpposite="#//Region/ownerStateMachine"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Region" eSuperTypes="#//NamedElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="subvertex" upperBound="-1"
eType="#//AbstractState" containment="true" eOpposite="#//AbstractState/ownerRegion"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="transitions" upperBound="-1"
eType="#//Transition" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="ownerStateMachine" eType="#//StateMachine"
eOpposite="#//StateMachine/regions"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="AbstractState" abstract="true" eSuperTypes="#//NamedElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="incoming" upperBound="-1"
eType="#//Transition" eOpposite="#//Transition/target"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="outgoing" upperBound="-1"
eType="#//Transition" eOpposite="#//Transition/source"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="ownerRegion" lowerBound="1"
eType="#//Region" eOpposite="#//Region/subvertex"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="State" eSuperTypes="#//AbstractState"/>
<eClassifiers xsi:type="ecore:EClass" name="Transition" eSuperTypes="#//NamedElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="trigger" eType="#//Trigger"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="target" lowerBound="1"
eType="#//AbstractState" eOpposite="#//AbstractState/incoming"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="source" lowerBound="1"
eType="#//AbstractState" eOpposite="#//AbstractState/outgoing"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="guard" eType="#//Constraint"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Trigger">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="expression" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Pseudostate" abstract="true" eSuperTypes="#//AbstractState"/>
<eClassifiers xsi:type="ecore:EClass" name="InitialState" eSuperTypes="#//Pseudostate"/>
<eClassifiers xsi:type="ecore:EClass" name="FinalState" eSuperTypes="#//State"/>
<eClassifiers xsi:type="ecore:EClass" name="NamedElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Constraint">
<eAnnotations source="Required"/>
<eOperations name="eval" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean">
<eAnnotations source="Required"/>
<eParameters name="context">
<eGenericType eClassifier="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EMap">
<eTypeArguments/>
<eTypeArguments/>
</eGenericType>
</eParameters>
</eOperations>
</eClassifiers>
</ecore:EPackage>
| github:ecore:/data/damenac/puzzle/examples/simple-example/fr.inria.diverse.puzzle.examples.fsm.syntax/models/fsm.ecore | ecore | fsm
StateMachine
regions
Region
subvertex
transitions
ownerStateMachine
AbstractState
incoming
outgoing
ownerRegion
State
Transition
trigger
target
source
guard
Trigger
expression
Pseudostate
InitialState
FinalState
NamedElement
name
Constraint
eval
context | null | {"directed":true,"nodes":[{"nsPrefix":"fsm","nsURI":"http://puzzle.examples.fsm","name":"fsm","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StateMachine","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Region","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AbstractState","instanceClass":null,"abstract":true,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"State","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Transition","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Trigger","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Pseudostate","instanceClass":null,"abstract":true,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InitialState","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FinalState","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NamedElement","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Constraint","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"regions","changeable":true,"resolveProxies":true,"lowerBound":0,"id":12,"derived":false},{"id":13,"eClass":"EGenericType"},{"id":14,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"ownerStateMachine","changeable":true,"resolveProxies":true,"lowerBound":0,"id":15,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"subvertex","changeable":true,"resolveProxies":true,"lowerBound":0,"id":16,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"transitions","changeable":true,"resolveProxies":true,"lowerBound":0,"id":17,"derived":false},{"id":18,"eClass":"EGenericType"},{"id":19,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"ownerRegion","changeable":true,"resolveProxies":true,"lowerBound":1,"id":20,"derived":false},{"id":21,"eClass":"EGenericType"},{"id":22,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"incoming","changeable":true,"resolveProxies":true,"lowerBound":0,"id":23,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"outgoing","changeable":true,"resolveProxies":true,"lowerBound":0,"id":24,"derived":false},{"id":25,"eClass":"EGenericType"},{"id":26,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"target","changeable":true,"resolveProxies":true,"lowerBound":1,"id":27,"derived":false},{"id":28,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"source","changeable":true,"resolveProxies":true,"lowerBound":1,"id":29,"derived":false},{"id":30,"eClass":"EGenericType"},{"id":31,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"trigger","changeable":true,"resolveProxies":true,"lowerBound":0,"id":32,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"guard","changeable":true,"resolveProxies":true,"lowerBound":0,"id":33,"derived":false},{"id":34,"eClass":"EGenericType"},{"id":35,"eClass":"EGenericType"},{"id":36,"eClass":"EGenericType"},{"id":37,"eClass":"EGenericType"},{"id":38,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"expression","changeable":true,"lowerBound":0,"iD":false,"id":39,"derived":false},{"id":40,"eClass":"EGenericType"},{"id":41,"eClass":"EGenericType"},{"id":42,"eClass":"EGenericType"},{"id":43,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":44,"derived":false},{"id":45,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"eval","lowerBound":0,"id":46,"many":false,"required":false,"eClass":"EOperation"},{"id":47,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"context","lowerBound":0,"id":48,"many":false,"required":false,"eClass":"EParameter"},{"id":49,"eClass":"EGenericType"},{"id":50,"eClass":"EGenericType"},{"id":51,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":0,"target":8},{"source":0,"target":9},{"source":0,"target":10},{"source":0,"target":11},{"source":1,"target":0},{"source":1,"target":10},{"source":1,"target":12},{"source":1,"target":13},{"source":12,"target":2},{"source":12,"target":14},{"source":12,"target":1},{"source":12,"target":15},{"source":14,"target":2},{"source":13,"target":10},{"source":2,"target":0},{"source":2,"target":10},{"source":2,"target":16},{"source":2,"target":17},{"source":2,"target":15},{"source":2,"target":18},{"source":16,"target":3},{"source":16,"target":19},{"source":16,"target":2},{"source":16,"target":20},{"source":19,"target":3},{"source":17,"target":5},{"source":17,"target":21},{"source":17,"target":2},{"source":21,"target":5},{"source":15,"target":1},{"source":15,"target":22},{"source":15,"target":2},{"source":15,"target":12},{"source":22,"target":1},{"source":18,"target":10},{"source":3,"target":0},{"source":3,"target":10},{"source":3,"target":23},{"source":3,"target":24},{"source":3,"target":20},{"source":3,"target":25},{"source":23,"target":5},{"source":23,"target":26},{"source":23,"target":3},{"source":23,"target":27},{"source":26,"target":5},{"source":24,"target":5},{"source":24,"target":28},{"source":24,"target":3},{"source":24,"target":29},{"source":28,"target":5},{"source":20,"target":2},{"source":20,"target":30},{"source":20,"target":3},{"source":20,"target":16},{"source":30,"target":2},{"source":25,"target":10},{"source":4,"target":0},{"source":4,"target":3},{"source":4,"target":31},{"source":31,"target":3},{"source":5,"target":0},{"source":5,"target":10},{"source":5,"target":32},{"source":5,"target":27},{"source":5,"target":29},{"source":5,"target":33},{"source":5,"target":34},{"source":32,"target":6},{"source":32,"target":35},{"source":32,"target":5},{"source":35,"target":6},{"source":27,"target":3},{"source":27,"target":36},{"source":27,"target":5},{"source":27,"target":23},{"source":36,"target":3},{"source":29,"target":3},{"source":29,"target":37},{"source":29,"target":5},{"source":29,"target":24},{"source":37,"target":3},{"source":33,"target":11},{"source":33,"target":38},{"source":33,"target":5},{"source":38,"target":11},{"source":34,"target":10},{"source":6,"target":0},{"source":6,"target":39},{"source":39,"target":40},{"source":39,"target":6},{"source":7,"target":0},{"source":7,"target":3},{"source":7,"target":41},{"source":41,"target":3},{"source":8,"target":0},{"source":8,"target":7},{"source":8,"target":42},{"source":42,"target":7},{"source":9,"target":0},{"source":9,"target":4},{"source":9,"target":43},{"source":43,"target":4},{"source":10,"target":0},{"source":10,"target":44},{"source":44,"target":45},{"source":44,"target":10},{"source":11,"target":0},{"source":11,"target":46},{"source":46,"target":47},{"source":46,"target":11},{"source":46,"target":48},{"source":48,"target":49},{"source":48,"target":46},{"source":49,"target":50},{"source":49,"target":51}],"multigraph":true} |
true | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0"
xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="scrm"
nsURI="http://unicase.org/model/scrm" nsPrefix="org.unicase.model.scrm">
<eClassifiers xsi:type="ecore:EClass" name="SCRMModelElement" abstract="true">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
defaultValueLiteral="">
<eAnnotations source="org.eclipse.emf.ecp.editor">
<details key="position" value="left"/>
<details key="priority" value="1"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="description" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString">
<eAnnotations source="org.eclipse.emf.ecp.editor">
<details key="position" value="left"/>
<details key="priority" value="2"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="displayingDiagrams" upperBound="-1"
eType="#//SCRMDiagram" eOpposite="#//SCRMDiagram/elements"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="SCRMDiagram" eSuperTypes="#//SCRMModelElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="elements" upperBound="-1"
eType="#//SCRMModelElement" eOpposite="#//SCRMModelElement/displayingDiagrams"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="gmfdiagram" eType="ecore:EClass platform:/plugin/org.eclipse.gmf.runtime.notation/model/notation.ecore#//Diagram"
transient="true" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="newElements" upperBound="-1"
eType="#//SCRMModelElement" transient="true" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="diagramLayout" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="diagramType" eType="#//DiagramType"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="representedSpace" eType="#//SCRMSpace"
eOpposite="#//SCRMSpace/representingDiagram"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="DiagramType">
<eLiterals name="DefaultDiagram"/>
<eLiterals name="KnowledgeDiagram" value="1" literal=""/>
<eLiterals name="RequirementsDiagram" value="2"/>
<eLiterals name="DataProcessDiagram" value="3" literal="DataProcessDiagram"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="SCRMSpace" abstract="true" interface="true"
eSuperTypes="#//SCRMModelElement">
<eOperations name="getContainedModelElements" upperBound="-1" eType="#//SCRMModelElement"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="representingDiagram" eType="#//SCRMDiagram"
eOpposite="#//SCRMDiagram/representedSpace"/>
</eClassifiers>
<eSubpackages name="knowledge" nsURI="http://unicase.org/model/scrm/knowledge" nsPrefix="org.unicase.model.scrm.knowledge">
<eClassifiers xsi:type="ecore:EClass" name="ScientificKnowledge" abstract="true"
interface="true" eSuperTypes="#//SCRMModelElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="containingKnowledgeSpace"
eType="#//knowledge/KnowledgeSpace" eOpposite="#//knowledge/KnowledgeSpace/containedScientificKnowledge">
<eAnnotations source="org.eclipse.emf.ecp.editor">
<details key="position" value="left"/>
<details key="priority" value="10"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="KnowledgeSpace" eSuperTypes="#//SCRMSpace #//knowledge/ScientificKnowledge">
<eStructuralFeatures xsi:type="ecore:EReference" name="containedScientificKnowledge"
upperBound="-1" eType="#//knowledge/ScientificKnowledge" containment="true"
eOpposite="#//knowledge/ScientificKnowledge/containingKnowledgeSpace">
<eAnnotations source="org.eclipse.emf.ecp.editor">
<details key="position" value="right"/>
<details key="priority" value="10"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ScientificProblem" eSuperTypes="#//knowledge/ScientificKnowledge">
<eStructuralFeatures xsi:type="ecore:EReference" name="representingModel" eType="#//knowledge/MathematicalModel"
eOpposite="#//knowledge/MathematicalModel/representedProblem">
<eAnnotations source="org.eclipse.emf.ecp.editor">
<details key="position" value="left"/>
<details key="priority" value="15"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="solvingMethods" upperBound="-1"
eType="#//knowledge/NumericalMethod" eOpposite="#//knowledge/NumericalMethod/solvedProblem">
<eAnnotations source="org.eclipse.emf.ecp.editor">
<details key="position" value="right"/>
<details key="priority" value="10"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="influencedFeature" eType="#//requirements/Feature"
eOpposite="#//requirements/Feature/influencingProblem">
<eAnnotations source="org.eclipse.emf.ecp.editor">
<details key="position" value="left"/>
<details key="priority" value="20"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="MathematicalModel" eSuperTypes="#//knowledge/ScientificKnowledge">
<eStructuralFeatures xsi:type="ecore:EReference" name="representedProblem" eType="#//knowledge/ScientificProblem"
eOpposite="#//knowledge/ScientificProblem/representingModel">
<eAnnotations source="org.eclipse.emf.ecp.editor">
<details key="position" value="left"/>
<details key="priority" value="15"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="refinements" upperBound="-1"
eType="#//knowledge/MathematicalModel" containment="true" eOpposite="#//knowledge/MathematicalModel/refinedModel">
<eAnnotations source="org.eclipse.emf.ecp.editor">
<details key="position" value="right"/>
<details key="priority" value="5"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="refinedModel" eType="#//knowledge/MathematicalModel"
eOpposite="#//knowledge/MathematicalModel/refinements">
<eAnnotations source="org.eclipse.emf.ecp.editor">
<details key="position" value="left"/>
<details key="priority" value="12"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="numericalMethods" upperBound="-1"
eType="#//knowledge/NumericalMethod" eOpposite="#//knowledge/NumericalMethod/mathematicalModel">
<eAnnotations source="org.eclipse.emf.ecp.editor">
<details key="position" value="right"/>
<details key="priority" value="10"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="dependencies" upperBound="-1"
eType="#//knowledge/Assumption" eOpposite="#//knowledge/Assumption/dependingModel">
<eAnnotations source="org.eclipse.emf.ecp.editor">
<details key="position" value="right"/>
<details key="priority" value="15"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="theory" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString">
<eAnnotations source="org.eclipse.emf.ecp.editor">
<details key="position" value="left"/>
<details key="priority" value="5"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="mathematicalExpression"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString">
<eAnnotations source="org.eclipse.emf.ecp.editor">
<details key="position" value="left"/>
<details key="priority" value="7"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="NumericalMethod" eSuperTypes="#//knowledge/ScientificKnowledge">
<eStructuralFeatures xsi:type="ecore:EReference" name="solvedProblem" eType="#//knowledge/ScientificProblem"
eOpposite="#//knowledge/ScientificProblem/solvingMethods">
<eAnnotations source="org.eclipse.emf.ecp.editor">
<details key="position" value="left"/>
<details key="priority" value="15"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="dependencies" upperBound="-1"
eType="#//knowledge/Assumption" eOpposite="#//knowledge/Assumption/dependingMethod">
<eAnnotations source="org.eclipse.emf.ecp.editor">
<details key="position" value="right"/>
<details key="priority" value="10"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="realizingRequirement"
eType="#//requirements/Requirement" eOpposite="#//requirements/Requirement/realizedMethod">
<eAnnotations source="org.eclipse.emf.ecp.editor">
<details key="position" value="left"/>
<details key="priority" value="25"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="mathematicalModel" eType="#//knowledge/MathematicalModel"
eOpposite="#//knowledge/MathematicalModel/numericalMethods">
<eAnnotations source="org.eclipse.emf.ecp.editor">
<details key="position" value="left"/>
<details key="priority" value="20"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="performance" eType="#//requirements/Performance"
eOpposite="#//requirements/Performance/describedMethod">
<eAnnotations source="org.eclipse.emf.ecp.editor">
<details key="position" value="left"/>
<details key="priority" value="30"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="theory" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString">
<eAnnotations source="org.eclipse.emf.ecp.editor">
<details key="position" value="left"/>
<details key="priority" value="5"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="algorithm" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString">
<eAnnotations source="org.eclipse.emf.ecp.editor">
<details key="position" value="left"/>
<details key="priority" value="7"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Assumption" eSuperTypes="#//knowledge/ScientificKnowledge">
<eStructuralFeatures xsi:type="ecore:EReference" name="dependingModel" eType="#//knowledge/MathematicalModel"
eOpposite="#//knowledge/MathematicalModel/dependencies">
<eAnnotations source="org.eclipse.emf.ecp.editor">
<details key="position" value="left"/>
<details key="priority" value="15"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="dependingMethod" eType="#//knowledge/NumericalMethod"
eOpposite="#//knowledge/NumericalMethod/dependencies">
<eAnnotations source="org.eclipse.emf.ecp.editor">
<details key="position" value="left"/>
<details key="priority" value="20"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
</eSubpackages>
<eSubpackages name="requirements" nsURI="http://unicase.org/model/scrm/requirements"
nsPrefix="org.unicase.model.scrm.requirements">
<eClassifiers xsi:type="ecore:EClass" name="IRequirement" abstract="true" interface="true"
eSuperTypes="#//SCRMModelElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="containingRequirementSpace"
eType="#//requirements/RequirementSpace" eOpposite="#//requirements/RequirementSpace/containedInformationofRequirements">
<eAnnotations source="org.eclipse.emf.ecp.editor">
<details key="position" value="left"/>
<details key="priority" value="10"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Interface" abstract="true" interface="true"
eSuperTypes="#//requirements/IRequirement">
<eStructuralFeatures xsi:type="ecore:EReference" name="providingFeature" eType="#//requirements/Feature"
eOpposite="#//requirements/Feature/providedInterfaces">
<eAnnotations source="org.eclipse.emf.ecp.editor">
<details key="position" value="left"/>
<details key="priority" value="15"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="requiringFeatures" upperBound="-1"
eType="#//requirements/Feature" eOpposite="#//requirements/Feature/requiredInterfaces">
<eAnnotations source="org.eclipse.emf.ecp.editor">
<details key="position" value="right"/>
<details key="priority" value="10"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Requirement" eSuperTypes="#//requirements/IRequirement">
<eStructuralFeatures xsi:type="ecore:EReference" name="refinements" upperBound="-1"
eType="#//requirements/Requirement" containment="true" eOpposite="#//requirements/Requirement/refinedRequirement">
<eAnnotations source="org.eclipse.emf.ecp.editor">
<details key="position" value="right"/>
<details key="priority" value="5"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="refinedRequirement" eType="#//requirements/Requirement"
eOpposite="#//requirements/Requirement/refinements">
<eAnnotations source="org.eclipse.emf.ecp.editor">
<details key="position" value="left"/>
<details key="priority" value="15"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="specifiedFeature" eType="#//requirements/Feature"
eOpposite="#//requirements/Feature/detailedRequirements">
<eAnnotations source="org.eclipse.emf.ecp.editor">
<details key="position" value="left"/>
<details key="priority" value="20"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="definingData" upperBound="-1"
eType="#//requirements/DataDefinition" eOpposite="#//requirements/DataDefinition/definedRequirement">
<eAnnotations source="org.eclipse.emf.ecp.editor">
<details key="position" value="right"/>
<details key="priority" value="10"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="realizedMethod" eType="#//knowledge/NumericalMethod"
eOpposite="#//knowledge/NumericalMethod/realizingRequirement">
<eAnnotations source="org.eclipse.emf.ecp.editor">
<details key="position" value="left"/>
<details key="priority" value="25"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="RequirementSpace" eSuperTypes="#//SCRMSpace #//requirements/IRequirement">
<eStructuralFeatures xsi:type="ecore:EReference" name="containedInformationofRequirements"
upperBound="-1" eType="#//requirements/IRequirement" containment="true"
eOpposite="#//requirements/IRequirement/containingRequirementSpace">
<eAnnotations source="org.eclipse.emf.ecp.editor">
<details key="position" value="right"/>
<details key="priority" value="10"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Feature" eSuperTypes="#//requirements/IRequirement">
<eStructuralFeatures xsi:type="ecore:EReference" name="detailedRequirements"
upperBound="-1" eType="#//requirements/Requirement" containment="true" eOpposite="#//requirements/Requirement/specifiedFeature">
<eAnnotations source="org.eclipse.emf.ecp.editor">
<details key="position" value="right"/>
<details key="priority" value="5"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="subFeatures" upperBound="-1"
eType="#//requirements/Feature" containment="true" eOpposite="#//requirements/Feature/superFeature">
<eAnnotations source="org.eclipse.emf.ecp.editor">
<details key="position" value="right"/>
<details key="priority" value="7"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="superFeature" eType="#//requirements/Feature"
eOpposite="#//requirements/Feature/subFeatures">
<eAnnotations source="org.eclipse.emf.ecp.editor">
<details key="position" value="left"/>
<details key="priority" value="15"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="constraints" upperBound="-1"
eType="#//requirements/Constraint" eOpposite="#//requirements/Constraint/restrictedFeature">
<eAnnotations source="org.eclipse.emf.ecp.editor">
<details key="position" value="right"/>
<details key="priority" value="10"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="dependencies" upperBound="-1"
eType="#//requirements/Hardware" eOpposite="#//requirements/Hardware/dependingFeature">
<eAnnotations source="org.eclipse.emf.ecp.editor">
<details key="position" value="right"/>
<details key="priority" value="15"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="requiredInterfaces" upperBound="-1"
eType="#//requirements/Interface" eOpposite="#//requirements/Interface/requiringFeatures">
<eAnnotations source="org.eclipse.emf.ecp.editor">
<details key="position" value="right"/>
<details key="priority" value="20"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="providedInterfaces" upperBound="-1"
eType="#//requirements/Interface" containment="true" eOpposite="#//requirements/Interface/providingFeature">
<eAnnotations source="org.eclipse.emf.ecp.editor">
<details key="position" value="right"/>
<details key="priority" value="25"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="influencingProblem" eType="#//knowledge/ScientificProblem"
eOpposite="#//knowledge/ScientificProblem/influencedFeature">
<eAnnotations source="org.eclipse.emf.ecp.editor">
<details key="position" value="left"/>
<details key="priority" value="25"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="requiredFeatures" upperBound="-1"
eType="#//requirements/Feature" eOpposite="#//requirements/Feature/requiringFeatures">
<eAnnotations source="org.eclipse.emf.ecp.editor">
<details key="position" value="right"/>
<details key="priority" value="30"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="requiringFeatures" upperBound="-1"
eType="#//requirements/Feature" eOpposite="#//requirements/Feature/requiredFeatures">
<eAnnotations source="org.eclipse.emf.ecp.editor">
<details key="position" value="right"/>
<details key="priority" value="35"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="excludedFeatures" upperBound="-1"
eType="#//requirements/Feature" eOpposite="#//requirements/Feature/excludingFeatures">
<eAnnotations source="org.eclipse.emf.ecp.editor">
<details key="position" value="right"/>
<details key="priority" value="40"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="excludingFeatures" upperBound="-1"
eType="#//requirements/Feature" eOpposite="#//requirements/Feature/excludedFeatures">
<eAnnotations source="org.eclipse.emf.ecp.editor">
<details key="position" value="right"/>
<details key="priority" value="45"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Hardware" eSuperTypes="#//requirements/IRequirement">
<eStructuralFeatures xsi:type="ecore:EReference" name="dependingFeature" eType="#//requirements/Feature"
eOpposite="#//requirements/Feature/dependencies">
<eAnnotations source="org.eclipse.emf.ecp.editor">
<details key="position" value="left"/>
<details key="priority" value="15"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="processor" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString">
<eAnnotations source="org.eclipse.emf.ecp.editor">
<details key="position" value="left"/>
<details key="priority" value="5"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="platform" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString">
<eAnnotations source="org.eclipse.emf.ecp.editor">
<details key="position" value="left"/>
<details key="priority" value="6"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="memory" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString">
<eAnnotations source="org.eclipse.emf.ecp.editor">
<details key="position" value="left"/>
<details key="priority" value="7"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Constraint" eSuperTypes="#//requirements/IRequirement">
<eStructuralFeatures xsi:type="ecore:EReference" name="restrictedFeature" eType="#//requirements/Feature"
eOpposite="#//requirements/Feature/constraints">
<eAnnotations source="org.eclipse.emf.ecp.editor">
<details key="position" value="left"/>
<details key="priority" value="15"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="UserInterface" eSuperTypes="#//requirements/Interface"/>
<eClassifiers xsi:type="ecore:EClass" name="SoftwareInterface" eSuperTypes="#//requirements/Interface">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="dataTypes" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString">
<eAnnotations source="org.eclipse.emf.ecp.editor">
<details key="position" value="left"/>
<details key="priority" value="5"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Performance" eSuperTypes="#//requirements/Requirement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="problemSize" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString">
<eAnnotations source="org.eclipse.emf.ecp.editor">
<details key="position" value="left"/>
<details key="priority" value="5"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="describedMethod" eType="#//knowledge/NumericalMethod"
eOpposite="#//knowledge/NumericalMethod/performance"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="DataFlow" eSuperTypes="#//requirements/IRequirement">
<eStructuralFeatures xsi:type="ecore:EReference" name="specifiedProcess" eType="#//requirements/dataProcess/Process"
eOpposite="#//requirements/dataProcess/Process/dataFlow">
<eAnnotations source="org.eclipse.emf.ecp.editor">
<details key="position" value="left"/>
<details key="priority" value="15"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="DataDefinition" eSuperTypes="#//requirements/IRequirement">
<eStructuralFeatures xsi:type="ecore:EReference" name="definedRequirement" eType="#//requirements/Requirement"
eOpposite="#//requirements/Requirement/definingData">
<eAnnotations source="org.eclipse.emf.ecp.editor">
<details key="position" value="left"/>
<details key="priority" value="15"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="accuracy" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString">
<eAnnotations source="org.eclipse.emf.ecp.editor">
<details key="position" value="left"/>
<details key="priority" value="5"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="range" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString">
<eAnnotations source="org.eclipse.emf.ecp.editor">
<details key="position" value="left"/>
<details key="priority" value="6"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="dataType" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString">
<eAnnotations source="org.eclipse.emf.ecp.editor">
<details key="position" value="left"/>
<details key="priority" value="7"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="format" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString">
<eAnnotations source="org.eclipse.emf.ecp.editor">
<details key="position" value="left"/>
<details key="priority" value="8"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eSubpackages name="dataProcess" nsURI="http://unicase.org/model/scrm/requirements/dataProcess"
nsPrefix="org.unicase.model.scrm.requirements.dataProcess">
<eClassifiers xsi:type="ecore:EClass" name="Process" eSuperTypes="#//requirements/Requirement">
<eStructuralFeatures xsi:type="ecore:EReference" name="dataFlow" eType="#//requirements/DataFlow"
eOpposite="#//requirements/DataFlow/specifiedProcess">
<eAnnotations source="org.eclipse.emf.ecp.editor">
<details key="position" value="left"/>
<details key="priority" value="15"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="predecessor" eType="#//requirements/dataProcess/Process"
eOpposite="#//requirements/dataProcess/Process/successor">
<eAnnotations source="org.eclipse.emf.ecp.editor">
<details key="position" value="left"/>
<details key="priority" value="15"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="successor" eType="#//requirements/dataProcess/Process"
eOpposite="#//requirements/dataProcess/Process/predecessor">
<eAnnotations source="org.eclipse.emf.ecp.editor">
<details key="position" value="left"/>
<details key="priority" value="20"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="containingDataProcessSpace"
eType="#//requirements/dataProcess/DataProcessSpace" eOpposite="#//requirements/dataProcess/DataProcessSpace/containedDataProcessSteps">
<eAnnotations source="org.eclipse.emf.ecp.editor">
<details key="position" value="left"/>
<details key="priority" value="10"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="errorHandling" eType="#//requirements/dataProcess/ErrorHandling"
eOpposite="#//requirements/dataProcess/ErrorHandling/handledProcess"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="statusMonitoring" eType="#//requirements/dataProcess/StatusMonitoring"
eOpposite="#//requirements/dataProcess/StatusMonitoring/monitoredProcess"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="InputDataReading" eSuperTypes="#//requirements/dataProcess/Process"/>
<eClassifiers xsi:type="ecore:EClass" name="DataHandling" eSuperTypes="#//requirements/dataProcess/Process"/>
<eClassifiers xsi:type="ecore:EClass" name="ResultsOutput" eSuperTypes="#//requirements/dataProcess/Process"/>
<eClassifiers xsi:type="ecore:EClass" name="ErrorHandling" eSuperTypes="#//requirements/dataProcess/Process">
<eStructuralFeatures xsi:type="ecore:EReference" name="handledProcess" eType="#//requirements/dataProcess/Process"
eOpposite="#//requirements/dataProcess/Process/errorHandling"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="StatusMonitoring" eSuperTypes="#//requirements/dataProcess/Process">
<eStructuralFeatures xsi:type="ecore:EReference" name="monitoredProcess" eType="#//requirements/dataProcess/Process"
eOpposite="#//requirements/dataProcess/Process/statusMonitoring"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="DataProcessSpace" eSuperTypes="#//SCRMSpace #//requirements/dataProcess/Process">
<eStructuralFeatures xsi:type="ecore:EReference" name="containedDataProcessSteps"
upperBound="-1" eType="#//requirements/dataProcess/Process" containment="true"
eOpposite="#//requirements/dataProcess/Process/containingDataProcessSpace">
<eAnnotations source="org.eclipse.emf.ecp.editor">
<details key="position" value="right"/>
<details key="priority" value="5"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
</eSubpackages>
</eSubpackages>
</ecore:EPackage>
| github:ecore:/data/unicase-ls1/unicase/other/SCRM/branches/SCRM-ECP-Release/org.unicase.scrm/model/scrm.ecore | ecore | scrm
SCRMModelElement
name
description
displayingDiagrams
SCRMDiagram
elements
gmfdiagram
newElements
diagramLayout
diagramType
representedSpace
DiagramType
DefaultDiagram
DefaultDiagram
KnowledgeDiagram
RequirementsDiagram
RequirementsDiagram
DataProcessDiagram
DataProcessDiagram
SCRMSpace
getContainedModelElements
representingDiagram
knowledge
ScientificKnowledge
containingKnowledgeSpace
KnowledgeSpace
containedScientificKnowledge
ScientificProblem
representingModel
solvingMethods
influencedFeature
MathematicalModel
representedProblem
refinements
refinedModel
numericalMethods
dependencies
theory
mathematicalExpression
NumericalMethod
solvedProblem
dependencies
realizingRequirement
mathematicalModel
performance
theory
algorithm
Assumption
dependingModel
dependingMethod
requirements
IRequirement
containingRequirementSpace
Interface
providingFeature
requiringFeatures
Requirement
refinements
refinedRequirement
specifiedFeature
definingData
realizedMethod
RequirementSpace
containedInformationofRequirements
Feature
detailedRequirements
subFeatures
superFeature
constraints
dependencies
requiredInterfaces
providedInterfaces
influencingProblem
requiredFeatures
requiringFeatures
excludedFeatures
excludingFeatures
Hardware
dependingFeature
processor
platform
memory
Constraint
restrictedFeature
UserInterface
SoftwareInterface
dataTypes
Performance
problemSize
describedMethod
DataFlow
specifiedProcess
DataDefinition
definedRequirement
accuracy
range
dataType
format
dataProcess
Process
dataFlow
predecessor
successor
containingDataProcessSpace
errorHandling
statusMonitoring
InputDataReading
DataHandling
ResultsOutput
ErrorHandling
handledProcess
StatusMonitoring
monitoredProcess
DataProcessSpace
containedDataProcessSteps | null | {"directed":true,"nodes":[{"nsPrefix":"org.unicase.model.scrm","nsURI":"http://unicase.org/model/scrm","name":"scrm","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SCRMModelElement","instanceClass":null,"abstract":true,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SCRMDiagram","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"DiagramType","instanceClass":null,"id":3,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SCRMSpace","instanceClass":null,"abstract":true,"id":4,"interface":true,"eClass":"EClass"},{"nsPrefix":"org.unicase.model.scrm.knowledge","nsURI":"http://unicase.org/model/scrm/knowledge","name":"knowledge","id":5,"eClass":"EPackage"},{"nsPrefix":"org.unicase.model.scrm.requirements","nsURI":"http://unicase.org/model/scrm/requirements","name":"requirements","id":6,"eClass":"EPackage"},{"ordered":true,"upperBound":1,"defaultValue":"","volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"","unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":7,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"description","changeable":true,"lowerBound":0,"iD":false,"id":8,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"displayingDiagrams","changeable":true,"resolveProxies":true,"lowerBound":0,"id":9,"derived":false},{"id":10,"eClass":"EGenericType"},{"id":11,"eClass":"EGenericType"},{"id":12,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"elements","changeable":true,"resolveProxies":true,"lowerBound":0,"id":13,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":true,"unique":true,"name":"gmfdiagram","changeable":true,"resolveProxies":true,"lowerBound":0,"id":14,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":true,"unique":true,"name":"newElements","changeable":true,"resolveProxies":true,"lowerBound":0,"id":15,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"diagramLayout","changeable":true,"lowerBound":0,"iD":false,"id":16,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"diagramType","changeable":true,"lowerBound":0,"iD":false,"id":17,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"representedSpace","changeable":true,"resolveProxies":true,"lowerBound":0,"id":18,"derived":false},{"id":19,"eClass":"EGenericType"},{"id":20,"eClass":"EGenericType"},{"id":21,"eClass":"EGenericType"},{"id":22,"eClass":"EGenericType"},{"id":23,"eClass":"EGenericType"},{"id":24,"eClass":"EGenericType"},{"id":25,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"representingDiagram","changeable":true,"resolveProxies":true,"lowerBound":0,"id":26,"derived":false},{"name":"DefaultDiagram","id":27,"value":0,"literal":"DefaultDiagram","eClass":"EEnumLiteral"},{"name":"KnowledgeDiagram","id":28,"value":1,"literal":"","eClass":"EEnumLiteral"},{"name":"RequirementsDiagram","id":29,"value":2,"literal":"RequirementsDiagram","eClass":"EEnumLiteral"},{"name":"DataProcessDiagram","id":30,"value":3,"literal":"DataProcessDiagram","eClass":"EEnumLiteral"},{"ordered":true,"upperBound":-1,"unique":true,"name":"getContainedModelElements","lowerBound":0,"id":31,"many":true,"required":false,"eClass":"EOperation"},{"id":32,"eClass":"EGenericType"},{"id":33,"eClass":"EGenericType"},{"id":34,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ScientificKnowledge","instanceClass":null,"abstract":true,"id":35,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"KnowledgeSpace","instanceClass":null,"abstract":false,"id":36,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ScientificProblem","instanceClass":null,"abstract":false,"id":37,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MathematicalModel","instanceClass":null,"abstract":false,"id":38,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NumericalMethod","instanceClass":null,"abstract":false,"id":39,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Assumption","instanceClass":null,"abstract":false,"id":40,"interface":false,"eClass":"EClass"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"containingKnowledgeSpace","changeable":true,"resolveProxies":true,"lowerBound":0,"id":41,"derived":false},{"id":42,"eClass":"EGenericType"},{"id":43,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"containedScientificKnowledge","changeable":true,"resolveProxies":true,"lowerBound":0,"id":44,"derived":false},{"id":45,"eClass":"EGenericType"},{"id":46,"eClass":"EGenericType"},{"id":47,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"representingModel","changeable":true,"resolveProxies":true,"lowerBound":0,"id":48,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"solvingMethods","changeable":true,"resolveProxies":true,"lowerBound":0,"id":49,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"influencedFeature","changeable":true,"resolveProxies":true,"lowerBound":0,"id":50,"derived":false},{"id":51,"eClass":"EGenericType"},{"id":52,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"representedProblem","changeable":true,"resolveProxies":true,"lowerBound":0,"id":53,"derived":false},{"id":54,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"solvedProblem","changeable":true,"resolveProxies":true,"lowerBound":0,"id":55,"derived":false},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Feature","instanceClass":null,"abstract":false,"id":56,"interface":false,"eClass":"EClass"},{"id":57,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"influencingProblem","changeable":true,"resolveProxies":true,"lowerBound":0,"id":58,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"refinements","changeable":true,"resolveProxies":true,"lowerBound":0,"id":59,"derived":false},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"refinedModel","changeable":true,"resolveProxies":true,"lowerBound":0,"id":60,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"numericalMethods","changeable":true,"resolveProxies":true,"lowerBound":0,"id":61,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"dependencies","changeable":true,"resolveProxies":true,"lowerBound":0,"id":62,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"theory","changeable":true,"lowerBound":0,"iD":false,"id":63,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"mathematicalExpression","changeable":true,"lowerBound":0,"iD":false,"id":64,"derived":false},{"id":65,"eClass":"EGenericType"},{"id":66,"eClass":"EGenericType"},{"id":67,"eClass":"EGenericType"},{"id":68,"eClass":"EGenericType"},{"id":69,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"mathematicalModel","changeable":true,"resolveProxies":true,"lowerBound":0,"id":70,"derived":false},{"id":71,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"dependingModel","changeable":true,"resolveProxies":true,"lowerBound":0,"id":72,"derived":false},{"id":73,"eClass":"EGenericType"},{"id":74,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"dependencies","changeable":true,"resolveProxies":true,"lowerBound":0,"id":75,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"realizingRequirement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":76,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"performance","changeable":true,"resolveProxies":true,"lowerBound":0,"id":77,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"theory","changeable":true,"lowerBound":0,"iD":false,"id":78,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"algorithm","changeable":true,"lowerBound":0,"iD":false,"id":79,"derived":false},{"id":80,"eClass":"EGenericType"},{"id":81,"eClass":"EGenericType"},{"id":82,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"dependingMethod","changeable":true,"resolveProxies":true,"lowerBound":0,"id":83,"derived":false},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Requirement","instanceClass":null,"abstract":false,"id":84,"interface":false,"eClass":"EClass"},{"id":85,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"realizedMethod","changeable":true,"resolveProxies":true,"lowerBound":0,"id":86,"derived":false},{"id":87,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Performance","instanceClass":null,"abstract":false,"id":88,"interface":false,"eClass":"EClass"},{"id":89,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"describedMethod","changeable":true,"resolveProxies":true,"lowerBound":0,"id":90,"derived":false},{"id":91,"eClass":"EGenericType"},{"id":92,"eClass":"EGenericType"},{"id":93,"eClass":"EGenericType"},{"id":94,"eClass":"EGenericType"},{"id":95,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IRequirement","instanceClass":null,"abstract":true,"id":96,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Interface","instanceClass":null,"abstract":true,"id":97,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RequirementSpace","instanceClass":null,"abstract":false,"id":98,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Hardware","instanceClass":null,"abstract":false,"id":99,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Constraint","instanceClass":null,"abstract":false,"id":100,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"UserInterface","instanceClass":null,"abstract":false,"id":101,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SoftwareInterface","instanceClass":null,"abstract":false,"id":102,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DataFlow","instanceClass":null,"abstract":false,"id":103,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DataDefinition","instanceClass":null,"abstract":false,"id":104,"interface":false,"eClass":"EClass"},{"nsPrefix":"org.unicase.model.scrm.requirements.dataProcess","nsURI":"http://unicase.org/model/scrm/requirements/dataProcess","name":"dataProcess","id":105,"eClass":"EPackage"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"containingRequirementSpace","changeable":true,"resolveProxies":true,"lowerBound":0,"id":106,"derived":false},{"id":107,"eClass":"EGenericType"},{"id":108,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"containedInformationofRequirements","changeable":true,"resolveProxies":true,"lowerBound":0,"id":109,"derived":false},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"providingFeature","changeable":true,"resolveProxies":true,"lowerBound":0,"id":110,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"requiringFeatures","changeable":true,"resolveProxies":true,"lowerBound":0,"id":111,"derived":false},{"id":112,"eClass":"EGenericType"},{"id":113,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"providedInterfaces","changeable":true,"resolveProxies":true,"lowerBound":0,"id":114,"derived":false},{"id":115,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"requiredInterfaces","changeable":true,"resolveProxies":true,"lowerBound":0,"id":116,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"refinements","changeable":true,"resolveProxies":true,"lowerBound":0,"id":117,"derived":false},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"refinedRequirement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":118,"derived":false},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"specifiedFeature","changeable":true,"resolveProxies":true,"lowerBound":0,"id":119,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"definingData","changeable":true,"resolveProxies":true,"lowerBound":0,"id":120,"derived":false},{"id":121,"eClass":"EGenericType"},{"id":122,"eClass":"EGenericType"},{"id":123,"eClass":"EGenericType"},{"id":124,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"detailedRequirements","changeable":true,"resolveProxies":true,"lowerBound":0,"id":125,"derived":false},{"id":126,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"definedRequirement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":127,"derived":false},{"id":128,"eClass":"EGenericType"},{"id":129,"eClass":"EGenericType"},{"id":130,"eClass":"EGenericType"},{"id":131,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"subFeatures","changeable":true,"resolveProxies":true,"lowerBound":0,"id":132,"derived":false},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"superFeature","changeable":true,"resolveProxies":true,"lowerBound":0,"id":133,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"constraints","changeable":true,"resolveProxies":true,"lowerBound":0,"id":134,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"dependencies","changeable":true,"resolveProxies":true,"lowerBound":0,"id":135,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"requiredFeatures","changeable":true,"resolveProxies":true,"lowerBound":0,"id":136,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"requiringFeatures","changeable":true,"resolveProxies":true,"lowerBound":0,"id":137,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"excludedFeatures","changeable":true,"resolveProxies":true,"lowerBound":0,"id":138,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"excludingFeatures","changeable":true,"resolveProxies":true,"lowerBound":0,"id":139,"derived":false},{"id":140,"eClass":"EGenericType"},{"id":141,"eClass":"EGenericType"},{"id":142,"eClass":"EGenericType"},{"id":143,"eClass":"EGenericType"},{"id":144,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"restrictedFeature","changeable":true,"resolveProxies":true,"lowerBound":0,"id":145,"derived":false},{"id":146,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"dependingFeature","changeable":true,"resolveProxies":true,"lowerBound":0,"id":147,"derived":false},{"id":148,"eClass":"EGenericType"},{"id":149,"eClass":"EGenericType"},{"id":150,"eClass":"EGenericType"},{"id":151,"eClass":"EGenericType"},{"id":152,"eClass":"EGenericType"},{"id":153,"eClass":"EGenericType"},{"id":154,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"processor","changeable":true,"lowerBound":0,"iD":false,"id":155,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"platform","changeable":true,"lowerBound":0,"iD":false,"id":156,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"memory","changeable":true,"lowerBound":0,"iD":false,"id":157,"derived":false},{"id":158,"eClass":"EGenericType"},{"id":159,"eClass":"EGenericType"},{"id":160,"eClass":"EGenericType"},{"id":161,"eClass":"EGenericType"},{"id":162,"eClass":"EGenericType"},{"id":163,"eClass":"EGenericType"},{"id":164,"eClass":"EGenericType"},{"id":165,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"dataTypes","changeable":true,"lowerBound":0,"iD":false,"id":166,"derived":false},{"id":167,"eClass":"EGenericType"},{"id":168,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"problemSize","changeable":true,"lowerBound":0,"iD":false,"id":169,"derived":false},{"id":170,"eClass":"EGenericType"},{"id":171,"eClass":"EGenericType"},{"id":172,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"specifiedProcess","changeable":true,"resolveProxies":true,"lowerBound":0,"id":173,"derived":false},{"id":174,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Process","instanceClass":null,"abstract":false,"id":175,"interface":false,"eClass":"EClass"},{"id":176,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"dataFlow","changeable":true,"resolveProxies":true,"lowerBound":0,"id":177,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"accuracy","changeable":true,"lowerBound":0,"iD":false,"id":178,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"range","changeable":true,"lowerBound":0,"iD":false,"id":179,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"dataType","changeable":true,"lowerBound":0,"iD":false,"id":180,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"format","changeable":true,"lowerBound":0,"iD":false,"id":181,"derived":false},{"id":182,"eClass":"EGenericType"},{"id":183,"eClass":"EGenericType"},{"id":184,"eClass":"EGenericType"},{"id":185,"eClass":"EGenericType"},{"id":186,"eClass":"EGenericType"},{"id":187,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InputDataReading","instanceClass":null,"abstract":false,"id":188,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DataHandling","instanceClass":null,"abstract":false,"id":189,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ResultsOutput","instanceClass":null,"abstract":false,"id":190,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ErrorHandling","instanceClass":null,"abstract":false,"id":191,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StatusMonitoring","instanceClass":null,"abstract":false,"id":192,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DataProcessSpace","instanceClass":null,"abstract":false,"id":193,"interface":false,"eClass":"EClass"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"predecessor","changeable":true,"resolveProxies":true,"lowerBound":0,"id":194,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"successor","changeable":true,"resolveProxies":true,"lowerBound":0,"id":195,"derived":false},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"containingDataProcessSpace","changeable":true,"resolveProxies":true,"lowerBound":0,"id":196,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"errorHandling","changeable":true,"resolveProxies":true,"lowerBound":0,"id":197,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"statusMonitoring","changeable":true,"resolveProxies":true,"lowerBound":0,"id":198,"derived":false},{"id":199,"eClass":"EGenericType"},{"id":200,"eClass":"EGenericType"},{"id":201,"eClass":"EGenericType"},{"id":202,"eClass":"EGenericType"},{"id":203,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"containedDataProcessSteps","changeable":true,"resolveProxies":true,"lowerBound":0,"id":204,"derived":false},{"id":205,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"handledProcess","changeable":true,"resolveProxies":true,"lowerBound":0,"id":206,"derived":false},{"id":207,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"monitoredProcess","changeable":true,"resolveProxies":true,"lowerBound":0,"id":208,"derived":false},{"id":209,"eClass":"EGenericType"},{"id":210,"eClass":"EGenericType"},{"id":211,"eClass":"EGenericType"},{"id":212,"eClass":"EGenericType"},{"id":213,"eClass":"EGenericType"},{"id":214,"eClass":"EGenericType"},{"id":215,"eClass":"EGenericType"},{"id":216,"eClass":"EGenericType"},{"id":217,"eClass":"EGenericType"},{"id":218,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":1,"target":0},{"source":1,"target":7},{"source":1,"target":8},{"source":1,"target":9},{"source":7,"target":10},{"source":7,"target":1},{"source":8,"target":11},{"source":8,"target":1},{"source":9,"target":2},{"source":9,"target":12},{"source":9,"target":1},{"source":9,"target":13},{"source":12,"target":2},{"source":2,"target":0},{"source":2,"target":1},{"source":2,"target":13},{"source":2,"target":14},{"source":2,"target":15},{"source":2,"target":16},{"source":2,"target":17},{"source":2,"target":18},{"source":2,"target":19},{"source":13,"target":1},{"source":13,"target":20},{"source":13,"target":2},{"source":13,"target":9},{"source":20,"target":1},{"source":14,"target":21},{"source":14,"target":2},{"source":15,"target":1},{"source":15,"target":22},{"source":15,"target":2},{"source":22,"target":1},{"source":16,"target":23},{"source":16,"target":2},{"source":17,"target":3},{"source":17,"target":24},{"source":17,"target":2},{"source":24,"target":3},{"source":18,"target":4},{"source":18,"target":25},{"source":18,"target":2},{"source":18,"target":26},{"source":25,"target":4},{"source":19,"target":1},{"source":3,"target":0},{"source":3,"target":27},{"source":3,"target":28},{"source":3,"target":29},{"source":3,"target":30},{"source":27,"target":3},{"source":28,"target":3},{"source":29,"target":3},{"source":30,"target":3},{"source":4,"target":0},{"source":4,"target":1},{"source":4,"target":31},{"source":4,"target":26},{"source":4,"target":32},{"source":31,"target":1},{"source":31,"target":33},{"source":31,"target":4},{"source":33,"target":1},{"source":26,"target":2},{"source":26,"target":34},{"source":26,"target":4},{"source":26,"target":18},{"source":34,"target":2},{"source":32,"target":1},{"source":5,"target":35},{"source":5,"target":36},{"source":5,"target":37},{"source":5,"target":38},{"source":5,"target":39},{"source":5,"target":40},{"source":5,"target":0},{"source":35,"target":5},{"source":35,"target":1},{"source":35,"target":41},{"source":35,"target":42},{"source":41,"target":36},{"source":41,"target":43},{"source":41,"target":35},{"source":41,"target":44},{"source":43,"target":36},{"source":42,"target":1},{"source":36,"target":5},{"source":36,"target":4},{"source":36,"target":35},{"source":36,"target":44},{"source":36,"target":45},{"source":36,"target":46},{"source":44,"target":35},{"source":44,"target":47},{"source":44,"target":36},{"source":44,"target":41},{"source":47,"target":35},{"source":45,"target":4},{"source":46,"target":35},{"source":37,"target":5},{"source":37,"target":35},{"source":37,"target":48},{"source":37,"target":49},{"source":37,"target":50},{"source":37,"target":51},{"source":48,"target":38},{"source":48,"target":52},{"source":48,"target":37},{"source":48,"target":53},{"source":52,"target":38},{"source":49,"target":39},{"source":49,"target":54},{"source":49,"target":37},{"source":49,"target":55},{"source":54,"target":39},{"source":50,"target":56},{"source":50,"target":57},{"source":50,"target":37},{"source":50,"target":58},{"source":57,"target":56},{"source":51,"target":35},{"source":38,"target":5},{"source":38,"target":35},{"source":38,"target":53},{"source":38,"target":59},{"source":38,"target":60},{"source":38,"target":61},{"source":38,"target":62},{"source":38,"target":63},{"source":38,"target":64},{"source":38,"target":65},{"source":53,"target":37},{"source":53,"target":66},{"source":53,"target":38},{"source":53,"target":48},{"source":66,"target":37},{"source":59,"target":38},{"source":59,"target":67},{"source":59,"target":38},{"source":59,"target":60},{"source":67,"target":38},{"source":60,"target":38},{"source":60,"target":68},{"source":60,"target":38},{"source":60,"target":59},{"source":68,"target":38},{"source":61,"target":39},{"source":61,"target":69},{"source":61,"target":38},{"source":61,"target":70},{"source":69,"target":39},{"source":62,"target":40},{"source":62,"target":71},{"source":62,"target":38},{"source":62,"target":72},{"source":71,"target":40},{"source":63,"target":73},{"source":63,"target":38},{"source":64,"target":74},{"source":64,"target":38},{"source":65,"target":35},{"source":39,"target":5},{"source":39,"target":35},{"source":39,"target":55},{"source":39,"target":75},{"source":39,"target":76},{"source":39,"target":70},{"source":39,"target":77},{"source":39,"target":78},{"source":39,"target":79},{"source":39,"target":80},{"source":55,"target":37},{"source":55,"target":81},{"source":55,"target":39},{"source":55,"target":49},{"source":81,"target":37},{"source":75,"target":40},{"source":75,"target":82},{"source":75,"target":39},{"source":75,"target":83},{"source":82,"target":40},{"source":76,"target":84},{"source":76,"target":85},{"source":76,"target":39},{"source":76,"target":86},{"source":85,"target":84},{"source":70,"target":38},{"source":70,"target":87},{"source":70,"target":39},{"source":70,"target":61},{"source":87,"target":38},{"source":77,"target":88},{"source":77,"target":89},{"source":77,"target":39},{"source":77,"target":90},{"source":89,"target":88},{"source":78,"target":91},{"source":78,"target":39},{"source":79,"target":92},{"source":79,"target":39},{"source":80,"target":35},{"source":40,"target":5},{"source":40,"target":35},{"source":40,"target":72},{"source":40,"target":83},{"source":40,"target":93},{"source":72,"target":38},{"source":72,"target":94},{"source":72,"target":40},{"source":72,"target":62},{"source":94,"target":38},{"source":83,"target":39},{"source":83,"target":95},{"source":83,"target":40},{"source":83,"target":75},{"source":95,"target":39},{"source":93,"target":35},{"source":6,"target":96},{"source":6,"target":97},{"source":6,"target":84},{"source":6,"target":98},{"source":6,"target":56},{"source":6,"target":99},{"source":6,"target":100},{"source":6,"target":101},{"source":6,"target":102},{"source":6,"target":88},{"source":6,"target":103},{"source":6,"target":104},{"source":6,"target":105},{"source":6,"target":0},{"source":96,"target":6},{"source":96,"target":1},{"source":96,"target":106},{"source":96,"target":107},{"source":106,"target":98},{"source":106,"target":108},{"source":106,"target":96},{"source":106,"target":109},{"source":108,"target":98},{"source":107,"target":1},{"source":97,"target":6},{"source":97,"target":96},{"source":97,"target":110},{"source":97,"target":111},{"source":97,"target":112},{"source":110,"target":56},{"source":110,"target":113},{"source":110,"target":97},{"source":110,"target":114},{"source":113,"target":56},{"source":111,"target":56},{"source":111,"target":115},{"source":111,"target":97},{"source":111,"target":116},{"source":115,"target":56},{"source":112,"target":96},{"source":84,"target":6},{"source":84,"target":96},{"source":84,"target":117},{"source":84,"target":118},{"source":84,"target":119},{"source":84,"target":120},{"source":84,"target":86},{"source":84,"target":121},{"source":117,"target":84},{"source":117,"target":122},{"source":117,"target":84},{"source":117,"target":118},{"source":122,"target":84},{"source":118,"target":84},{"source":118,"target":123},{"source":118,"target":84},{"source":118,"target":117},{"source":123,"target":84},{"source":119,"target":56},{"source":119,"target":124},{"source":119,"target":84},{"source":119,"target":125},{"source":124,"target":56},{"source":120,"target":104},{"source":120,"target":126},{"source":120,"target":84},{"source":120,"target":127},{"source":126,"target":104},{"source":86,"target":39},{"source":86,"target":128},{"source":86,"target":84},{"source":86,"target":76},{"source":128,"target":39},{"source":121,"target":96},{"source":98,"target":6},{"source":98,"target":4},{"source":98,"target":96},{"source":98,"target":109},{"source":98,"target":129},{"source":98,"target":130},{"source":109,"target":96},{"source":109,"target":131},{"source":109,"target":98},{"source":109,"target":106},{"source":131,"target":96},{"source":129,"target":4},{"source":130,"target":96},{"source":56,"target":6},{"source":56,"target":96},{"source":56,"target":125},{"source":56,"target":132},{"source":56,"target":133},{"source":56,"target":134},{"source":56,"target":135},{"source":56,"target":116},{"source":56,"target":114},{"source":56,"target":58},{"source":56,"target":136},{"source":56,"target":137},{"source":56,"target":138},{"source":56,"target":139},{"source":56,"target":140},{"source":125,"target":84},{"source":125,"target":141},{"source":125,"target":56},{"source":125,"target":119},{"source":141,"target":84},{"source":132,"target":56},{"source":132,"target":142},{"source":132,"target":56},{"source":132,"target":133},{"source":142,"target":56},{"source":133,"target":56},{"source":133,"target":143},{"source":133,"target":56},{"source":133,"target":132},{"source":143,"target":56},{"source":134,"target":100},{"source":134,"target":144},{"source":134,"target":56},{"source":134,"target":145},{"source":144,"target":100},{"source":135,"target":99},{"source":135,"target":146},{"source":135,"target":56},{"source":135,"target":147},{"source":146,"target":99},{"source":116,"target":97},{"source":116,"target":148},{"source":116,"target":56},{"source":116,"target":111},{"source":148,"target":97},{"source":114,"target":97},{"source":114,"target":149},{"source":114,"target":56},{"source":114,"target":110},{"source":149,"target":97},{"source":58,"target":37},{"source":58,"target":150},{"source":58,"target":56},{"source":58,"target":50},{"source":150,"target":37},{"source":136,"target":56},{"source":136,"target":151},{"source":136,"target":56},{"source":136,"target":137},{"source":151,"target":56},{"source":137,"target":56},{"source":137,"target":152},{"source":137,"target":56},{"source":137,"target":136},{"source":152,"target":56},{"source":138,"target":56},{"source":138,"target":153},{"source":138,"target":56},{"source":138,"target":139},{"source":153,"target":56},{"source":139,"target":56},{"source":139,"target":154},{"source":139,"target":56},{"source":139,"target":138},{"source":154,"target":56},{"source":140,"target":96},{"source":99,"target":6},{"source":99,"target":96},{"source":99,"target":147},{"source":99,"target":155},{"source":99,"target":156},{"source":99,"target":157},{"source":99,"target":158},{"source":147,"target":56},{"source":147,"target":159},{"source":147,"target":99},{"source":147,"target":135},{"source":159,"target":56},{"source":155,"target":160},{"source":155,"target":99},{"source":156,"target":161},{"source":156,"target":99},{"source":157,"target":162},{"source":157,"target":99},{"source":158,"target":96},{"source":100,"target":6},{"source":100,"target":96},{"source":100,"target":145},{"source":100,"target":163},{"source":145,"target":56},{"source":145,"target":164},{"source":145,"target":100},{"source":145,"target":134},{"source":164,"target":56},{"source":163,"target":96},{"source":101,"target":6},{"source":101,"target":97},{"source":101,"target":165},{"source":165,"target":97},{"source":102,"target":6},{"source":102,"target":97},{"source":102,"target":166},{"source":102,"target":167},{"source":166,"target":168},{"source":166,"target":102},{"source":167,"target":97},{"source":88,"target":6},{"source":88,"target":84},{"source":88,"target":169},{"source":88,"target":90},{"source":88,"target":170},{"source":169,"target":171},{"source":169,"target":88},{"source":90,"target":39},{"source":90,"target":172},{"source":90,"target":88},{"source":90,"target":77},{"source":172,"target":39},{"source":170,"target":84},{"source":103,"target":6},{"source":103,"target":96},{"source":103,"target":173},{"source":103,"target":174},{"source":173,"target":175},{"source":173,"target":176},{"source":173,"target":103},{"source":173,"target":177},{"source":176,"target":175},{"source":174,"target":96},{"source":104,"target":6},{"source":104,"target":96},{"source":104,"target":127},{"source":104,"target":178},{"source":104,"target":179},{"source":104,"target":180},{"source":104,"target":181},{"source":104,"target":182},{"source":127,"target":84},{"source":127,"target":183},{"source":127,"target":104},{"source":127,"target":120},{"source":183,"target":84},{"source":178,"target":184},{"source":178,"target":104},{"source":179,"target":185},{"source":179,"target":104},{"source":180,"target":186},{"source":180,"target":104},{"source":181,"target":187},{"source":181,"target":104},{"source":182,"target":96},{"source":105,"target":175},{"source":105,"target":188},{"source":105,"target":189},{"source":105,"target":190},{"source":105,"target":191},{"source":105,"target":192},{"source":105,"target":193},{"source":105,"target":6},{"source":175,"target":105},{"source":175,"target":84},{"source":175,"target":177},{"source":175,"target":194},{"source":175,"target":195},{"source":175,"target":196},{"source":175,"target":197},{"source":175,"target":198},{"source":175,"target":199},{"source":177,"target":103},{"source":177,"target":200},{"source":177,"target":175},{"source":177,"target":173},{"source":200,"target":103},{"source":194,"target":175},{"source":194,"target":201},{"source":194,"target":175},{"source":194,"target":195},{"source":201,"target":175},{"source":195,"target":175},{"source":195,"target":202},{"source":195,"target":175},{"source":195,"target":194},{"source":202,"target":175},{"source":196,"target":193},{"source":196,"target":203},{"source":196,"target":175},{"source":196,"target":204},{"source":203,"target":193},{"source":197,"target":191},{"source":197,"target":205},{"source":197,"target":175},{"source":197,"target":206},{"source":205,"target":191},{"source":198,"target":192},{"source":198,"target":207},{"source":198,"target":175},{"source":198,"target":208},{"source":207,"target":192},{"source":199,"target":84},{"source":188,"target":105},{"source":188,"target":175},{"source":188,"target":209},{"source":209,"target":175},{"source":189,"target":105},{"source":189,"target":175},{"source":189,"target":210},{"source":210,"target":175},{"source":190,"target":105},{"source":190,"target":175},{"source":190,"target":211},{"source":211,"target":175},{"source":191,"target":105},{"source":191,"target":175},{"source":191,"target":206},{"source":191,"target":212},{"source":206,"target":175},{"source":206,"target":213},{"source":206,"target":191},{"source":206,"target":197},{"source":213,"target":175},{"source":212,"target":175},{"source":192,"target":105},{"source":192,"target":175},{"source":192,"target":208},{"source":192,"target":214},{"source":208,"target":175},{"source":208,"target":215},{"source":208,"target":192},{"source":208,"target":198},{"source":215,"target":175},{"source":214,"target":175},{"source":193,"target":105},{"source":193,"target":4},{"source":193,"target":175},{"source":193,"target":204},{"source":193,"target":216},{"source":193,"target":217},{"source":204,"target":175},{"source":204,"target":218},{"source":204,"target":193},{"source":204,"target":196},{"source":218,"target":175},{"source":216,"target":4},{"source":217,"target":175}],"multigraph":true} |
false | <?xml version="1.0" encoding="UTF-8"?>
<!--
JBoss, Home of Professional Open Source.
See the LEGAL.txt file distributed with this work for information regarding copyright ownership and licensing.
See the AUTHORS.txt file distributed with this work for a full listing of individual contributors.
-->
<ecore:EPackage xmi:version="2.0"
xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="relational"
nsURI="http://www.metamatrix.com/metamodels/Relational" nsPrefix="relational">
<eClassifiers xsi:type="ecore:EClass" name="Table" abstract="true" eSuperTypes="#//ColumnSet">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="system" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"
defaultValueLiteral="false"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="cardinality" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="supportsUpdate" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"
defaultValueLiteral="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="materialized" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"
defaultValueLiteral="false"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="schema" eType="#//Schema"
transient="true" eOpposite="#//Schema/tables"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="accessPatterns" upperBound="-1"
eType="#//AccessPattern" containment="true" eOpposite="#//AccessPattern/table"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="catalog" eType="#//Catalog"
transient="true" eOpposite="#//Catalog/tables"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="logicalRelationships" upperBound="-1"
eType="#//LogicalRelationshipEnd" eOpposite="#//LogicalRelationshipEnd/table"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Column" eSuperTypes="#//RelationalEntity">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="nativeType" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
unsettable="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="length" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="fixedLength" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="precision" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="scale" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="nullable" eType="#//NullableType"
defaultValueLiteral="NULLABLE"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="autoIncremented" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"
defaultValueLiteral="false"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="defaultValue" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="minimumValue" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="maximumValue" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="format" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="characterSetName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="collationName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="selectable" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"
defaultValueLiteral="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="updateable" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"
defaultValueLiteral="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="caseSensitive" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"
defaultValueLiteral="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="searchability" eType="#//SearchabilityType"
defaultValueLiteral="SEARCHABLE"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="currency" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="radix" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"
defaultValueLiteral="10"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="signed" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"
defaultValueLiteral="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="distinctValueCount" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"
defaultValueLiteral="-1"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="nullValueCount" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"
defaultValueLiteral="-1"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="uniqueKeys" upperBound="-1"
eType="#//UniqueKey" eOpposite="#//UniqueKey/columns"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="indexes" upperBound="-1"
eType="#//Index" eOpposite="#//Index/columns"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="foreignKeys" upperBound="-1"
eType="#//ForeignKey" eOpposite="#//ForeignKey/columns"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="accessPatterns" upperBound="-1"
eType="#//AccessPattern" eOpposite="#//AccessPattern/columns"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="owner" eType="#//ColumnSet"
transient="true" eOpposite="#//ColumnSet/columns"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="type" lowerBound="1" eType="ecore:EClass ../../../plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EObject"
unsettable="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Schema" eSuperTypes="#//RelationalEntity">
<eStructuralFeatures xsi:type="ecore:EReference" name="tables" upperBound="-1"
eType="#//Table" containment="true" eOpposite="#//Table/schema"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="catalog" eType="#//Catalog"
transient="true" eOpposite="#//Catalog/schemas"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="procedures" upperBound="-1"
eType="#//Procedure" containment="true" eOpposite="#//Procedure/schema"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="indexes" upperBound="-1"
eType="#//Index" containment="true" eOpposite="#//Index/schema"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="logicalRelationships" upperBound="-1"
eType="#//LogicalRelationship" containment="true" eOpposite="#//LogicalRelationship/schema"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="PrimaryKey" eSuperTypes="#//UniqueKey">
<eStructuralFeatures xsi:type="ecore:EReference" name="table" eType="#//BaseTable"
transient="true" eOpposite="#//BaseTable/primaryKey"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ForeignKey" eSuperTypes="#//Relationship">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="foreignKeyMultiplicity"
eType="#//MultiplicityKind" defaultValueLiteral="ZERO_TO_MANY"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="primaryKeyMultiplicity"
eType="#//MultiplicityKind" defaultValueLiteral="ONE"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="columns" lowerBound="1"
upperBound="-1" eType="#//Column" eOpposite="#//Column/foreignKeys"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="uniqueKey" lowerBound="1"
eType="#//UniqueKey" unsettable="true" eOpposite="#//UniqueKey/foreignKeys"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="table" eType="#//BaseTable"
transient="true" eOpposite="#//BaseTable/foreignKeys"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="RelationalEntity" abstract="true">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="nameInSource" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="UniqueKey" abstract="true" eSuperTypes="#//RelationalEntity">
<eOperations name="getTable" eType="#//BaseTable"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="columns" lowerBound="1"
upperBound="-1" eType="#//Column" eOpposite="#//Column/uniqueKeys"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="foreignKeys" upperBound="-1"
eType="#//ForeignKey" eOpposite="#//ForeignKey/uniqueKey"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="View" eSuperTypes="#//Table"/>
<eClassifiers xsi:type="ecore:EEnum" name="NullableType">
<eLiterals name="NO_NULLS"/>
<eLiterals name="NULLABLE" value="1"/>
<eLiterals name="NULLABLE_UNKNOWN" value="2"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Catalog" eSuperTypes="#//RelationalEntity">
<eStructuralFeatures xsi:type="ecore:EReference" name="schemas" upperBound="-1"
eType="#//Schema" containment="true" eOpposite="#//Schema/catalog"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="procedures" upperBound="-1"
eType="#//Procedure" containment="true" eOpposite="#//Procedure/catalog"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="indexes" upperBound="-1"
eType="#//Index" containment="true" eOpposite="#//Index/catalog"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="tables" upperBound="-1"
eType="#//Table" containment="true" eOpposite="#//Table/catalog"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="logicalRelationships" upperBound="-1"
eType="#//LogicalRelationship" containment="true" eOpposite="#//LogicalRelationship/catalog"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Procedure" eSuperTypes="#//RelationalEntity">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="function" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="schema" eType="#//Schema"
transient="true" eOpposite="#//Schema/procedures"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="parameters" upperBound="-1"
eType="#//ProcedureParameter" containment="true" eOpposite="#//ProcedureParameter/procedure"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="catalog" eType="#//Catalog"
transient="true" eOpposite="#//Catalog/procedures"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="result" eType="#//ProcedureResult"
containment="true" eOpposite="#//ProcedureResult/procedure"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="updateCount" eType="#//ProcedureUpdateCount"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Index" eSuperTypes="#//RelationalEntity">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="filterCondition" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="nullable" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"
defaultValueLiteral="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="autoUpdate" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="unique" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="schema" eType="#//Schema"
transient="true" eOpposite="#//Schema/indexes"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="columns" lowerBound="1"
upperBound="-1" eType="#//Column" eOpposite="#//Column/indexes"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="catalog" eType="#//Catalog"
transient="true" eOpposite="#//Catalog/indexes"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ProcedureParameter" eSuperTypes="#//RelationalEntity">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="direction" eType="#//DirectionKind"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="defaultValue" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="nativeType" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="length" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="precision" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="scale" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="nullable" eType="#//NullableType"
defaultValueLiteral="NULLABLE"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="radix" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"
defaultValueLiteral="10"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="procedure" eType="#//Procedure"
transient="true" eOpposite="#//Procedure/parameters"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="type" lowerBound="1" eType="ecore:EClass ../../../plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EObject"
unsettable="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="UniqueConstraint" eSuperTypes="#//UniqueKey">
<eStructuralFeatures xsi:type="ecore:EReference" name="table" eType="#//BaseTable"
transient="true" eOpposite="#//BaseTable/uniqueConstraints"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="DirectionKind">
<eLiterals name="IN"/>
<eLiterals name="OUT" value="1"/>
<eLiterals name="INOUT" value="2"/>
<eLiterals name="RETURN" value="3"/>
<eLiterals name="UNKNOWN" value="4"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="AccessPattern" eSuperTypes="#//RelationalEntity">
<eStructuralFeatures xsi:type="ecore:EReference" name="columns" lowerBound="1"
upperBound="-1" eType="#//Column" eOpposite="#//Column/accessPatterns"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="table" eType="#//Table"
transient="true" eOpposite="#//Table/accessPatterns"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="MultiplicityKind">
<eLiterals name="ONE"/>
<eLiterals name="MANY" value="1"/>
<eLiterals name="ZERO_TO_ONE" value="2"/>
<eLiterals name="ZERO_TO_MANY" value="3"/>
<eLiterals name="UNSPECIFIED" value="4"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Relationship" abstract="true" eSuperTypes="#//RelationalEntity"/>
<eClassifiers xsi:type="ecore:EClass" name="LogicalRelationship" eSuperTypes="#//Relationship">
<eStructuralFeatures xsi:type="ecore:EReference" name="catalog" eType="#//Catalog"
transient="true" eOpposite="#//Catalog/logicalRelationships"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="schema" eType="#//Schema"
transient="true" eOpposite="#//Schema/logicalRelationships"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="ends" lowerBound="2" upperBound="-1"
eType="#//LogicalRelationshipEnd" containment="true" eOpposite="#//LogicalRelationshipEnd/relationship"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="LogicalRelationshipEnd" eSuperTypes="#//RelationalEntity">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="multiplicity" eType="#//MultiplicityKind"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="table" lowerBound="1" eType="#//Table"
eOpposite="#//Table/logicalRelationships"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="relationship" lowerBound="1"
eType="#//LogicalRelationship" transient="true" eOpposite="#//LogicalRelationship/ends"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="SearchabilityType">
<eLiterals name="SEARCHABLE"/>
<eLiterals name="ALL_EXCEPT_LIKE" value="1"/>
<eLiterals name="LIKE_ONLY" value="2"/>
<eLiterals name="UNSEARCHABLE" value="3"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="BaseTable" eSuperTypes="#//Table">
<eStructuralFeatures xsi:type="ecore:EReference" name="foreignKeys" upperBound="-1"
eType="#//ForeignKey" containment="true" eOpposite="#//ForeignKey/table"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="primaryKey" eType="#//PrimaryKey"
containment="true" eOpposite="#//PrimaryKey/table"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="uniqueConstraints" upperBound="-1"
eType="#//UniqueConstraint" containment="true" eOpposite="#//UniqueConstraint/table"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ColumnSet" abstract="true" eSuperTypes="#//RelationalEntity">
<eStructuralFeatures xsi:type="ecore:EReference" name="columns" lowerBound="1"
upperBound="-1" eType="#//Column" containment="true" eOpposite="#//Column/owner"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ProcedureResult" eSuperTypes="#//ColumnSet">
<eStructuralFeatures xsi:type="ecore:EReference" name="procedure" eType="#//Procedure"
transient="true" eOpposite="#//Procedure/result"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="ProcedureUpdateCount">
<eLiterals name="AUTO"/>
<eLiterals name="ZERO" value="1"/>
<eLiterals name="ONE" value="2"/>
<eLiterals name="MULTIPLE" value="3"/>
</eClassifiers>
</ecore:EPackage>
| github:ecore:/data/datavirtualization/jbdv/modeshape/sequencers/modeshape-sequencer-teiid/src/test/resources/ecore/relational.ecore | ecore | relational
Table
system
false
cardinality
supportsUpdate
true
materialized
false
schema
accessPatterns
catalog
logicalRelationships
Column
nativeType
length
fixedLength
precision
scale
nullable
NULLABLE
autoIncremented
false
defaultValue
minimumValue
maximumValue
format
characterSetName
collationName
selectable
true
updateable
true
caseSensitive
true
searchability
SEARCHABLE
currency
radix
10
signed
true
distinctValueCount
-1
nullValueCount
-1
uniqueKeys
indexes
foreignKeys
accessPatterns
owner
type
Schema
tables
catalog
procedures
indexes
logicalRelationships
PrimaryKey
table
ForeignKey
foreignKeyMultiplicity
ZERO_TO_MANY
primaryKeyMultiplicity
ONE
columns
uniqueKey
table
RelationalEntity
name
nameInSource
UniqueKey
getTable
columns
foreignKeys
View
NullableType
NO_NULLS
NO_NULLS
NULLABLE
NULLABLE
NULLABLE_UNKNOWN
NULLABLE_UNKNOWN
Catalog
schemas
procedures
indexes
tables
logicalRelationships
Procedure
function
schema
parameters
catalog
result
updateCount
Index
filterCondition
nullable
true
autoUpdate
unique
schema
columns
catalog
ProcedureParameter
direction
defaultValue
nativeType
length
precision
scale
nullable
NULLABLE
radix
10
procedure
type
UniqueConstraint
table
DirectionKind
IN
IN
OUT
OUT
INOUT
INOUT
RETURN
RETURN
UNKNOWN
UNKNOWN
AccessPattern
columns
table
MultiplicityKind
ONE
ONE
MANY
MANY
ZERO_TO_ONE
ZERO_TO_ONE
ZERO_TO_MANY
ZERO_TO_MANY
UNSPECIFIED
UNSPECIFIED
Relationship
LogicalRelationship
catalog
schema
ends
LogicalRelationshipEnd
multiplicity
table
relationship
SearchabilityType
SEARCHABLE
SEARCHABLE
ALL_EXCEPT_LIKE
ALL_EXCEPT_LIKE
LIKE_ONLY
LIKE_ONLY
UNSEARCHABLE
UNSEARCHABLE
BaseTable
foreignKeys
primaryKey
uniqueConstraints
ColumnSet
columns
ProcedureResult
procedure
ProcedureUpdateCount
AUTO
AUTO
ZERO
ZERO
ONE
ONE
MULTIPLE
MULTIPLE | null | {"directed":true,"nodes":[{"nsPrefix":"relational","nsURI":"http://www.metamatrix.com/metamodels/Relational","name":"relational","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Table","instanceClass":null,"abstract":true,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Column","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Schema","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PrimaryKey","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ForeignKey","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RelationalEntity","instanceClass":null,"abstract":true,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"UniqueKey","instanceClass":null,"abstract":true,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"View","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"NullableType","instanceClass":null,"id":9,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Catalog","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Procedure","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Index","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ProcedureParameter","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"UniqueConstraint","instanceClass":null,"abstract":false,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"DirectionKind","instanceClass":null,"id":15,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AccessPattern","instanceClass":null,"abstract":false,"id":16,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"MultiplicityKind","instanceClass":null,"id":17,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Relationship","instanceClass":null,"abstract":true,"id":18,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LogicalRelationship","instanceClass":null,"abstract":false,"id":19,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LogicalRelationshipEnd","instanceClass":null,"abstract":false,"id":20,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"SearchabilityType","instanceClass":null,"id":21,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BaseTable","instanceClass":null,"abstract":false,"id":22,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ColumnSet","instanceClass":null,"abstract":true,"id":23,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ProcedureResult","instanceClass":null,"abstract":false,"id":24,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"ProcedureUpdateCount","instanceClass":null,"id":25,"serializable":true,"eClass":"EEnum"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"false","unsettable":false,"transient":false,"unique":true,"name":"system","changeable":true,"lowerBound":0,"iD":false,"id":26,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"cardinality","changeable":true,"lowerBound":0,"iD":false,"id":27,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":true,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"true","unsettable":false,"transient":false,"unique":true,"name":"supportsUpdate","changeable":true,"lowerBound":0,"iD":false,"id":28,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"false","unsettable":false,"transient":false,"unique":true,"name":"materialized","changeable":true,"lowerBound":0,"iD":false,"id":29,"derived":false},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"schema","changeable":true,"resolveProxies":true,"lowerBound":0,"id":30,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"accessPatterns","changeable":true,"resolveProxies":true,"lowerBound":0,"id":31,"derived":false},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"catalog","changeable":true,"resolveProxies":true,"lowerBound":0,"id":32,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"logicalRelationships","changeable":true,"resolveProxies":true,"lowerBound":0,"id":33,"derived":false},{"id":34,"eClass":"EGenericType"},{"id":35,"eClass":"EGenericType"},{"id":36,"eClass":"EGenericType"},{"id":37,"eClass":"EGenericType"},{"id":38,"eClass":"EGenericType"},{"id":39,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"tables","changeable":true,"resolveProxies":true,"lowerBound":0,"id":40,"derived":false},{"id":41,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"table","changeable":true,"resolveProxies":true,"lowerBound":0,"id":42,"derived":false},{"id":43,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"tables","changeable":true,"resolveProxies":true,"lowerBound":0,"id":44,"derived":false},{"id":45,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"table","changeable":true,"resolveProxies":true,"lowerBound":1,"id":46,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":true,"name":"nativeType","changeable":true,"lowerBound":0,"iD":false,"id":47,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"length","changeable":true,"lowerBound":0,"iD":false,"id":48,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"fixedLength","changeable":true,"lowerBound":0,"iD":false,"id":49,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"precision","changeable":true,"lowerBound":0,"iD":false,"id":50,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"scale","changeable":true,"lowerBound":0,"iD":false,"id":51,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"NULLABLE","unsettable":false,"transient":false,"unique":true,"name":"nullable","changeable":true,"lowerBound":0,"iD":false,"id":52,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"false","unsettable":false,"transient":false,"unique":true,"name":"autoIncremented","changeable":true,"lowerBound":0,"iD":false,"id":53,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"defaultValue","changeable":true,"lowerBound":0,"iD":false,"id":54,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"minimumValue","changeable":true,"lowerBound":0,"iD":false,"id":55,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"maximumValue","changeable":true,"lowerBound":0,"iD":false,"id":56,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"format","changeable":true,"lowerBound":0,"iD":false,"id":57,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"characterSetName","changeable":true,"lowerBound":0,"iD":false,"id":58,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"collationName","changeable":true,"lowerBound":0,"iD":false,"id":59,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":true,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"true","unsettable":false,"transient":false,"unique":true,"name":"selectable","changeable":true,"lowerBound":0,"iD":false,"id":60,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":true,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"true","unsettable":false,"transient":false,"unique":true,"name":"updateable","changeable":true,"lowerBound":0,"iD":false,"id":61,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":true,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"true","unsettable":false,"transient":false,"unique":true,"name":"caseSensitive","changeable":true,"lowerBound":0,"iD":false,"id":62,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"SEARCHABLE","unsettable":false,"transient":false,"unique":true,"name":"searchability","changeable":true,"lowerBound":0,"iD":false,"id":63,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"currency","changeable":true,"lowerBound":0,"iD":false,"id":64,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":10,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"10","unsettable":false,"transient":false,"unique":true,"name":"radix","changeable":true,"lowerBound":0,"iD":false,"id":65,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":true,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"true","unsettable":false,"transient":false,"unique":true,"name":"signed","changeable":true,"lowerBound":0,"iD":false,"id":66,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":-1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"-1","unsettable":false,"transient":false,"unique":true,"name":"distinctValueCount","changeable":true,"lowerBound":0,"iD":false,"id":67,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":-1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"-1","unsettable":false,"transient":false,"unique":true,"name":"nullValueCount","changeable":true,"lowerBound":0,"iD":false,"id":68,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"uniqueKeys","changeable":true,"resolveProxies":true,"lowerBound":0,"id":69,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"indexes","changeable":true,"resolveProxies":true,"lowerBound":0,"id":70,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"foreignKeys","changeable":true,"resolveProxies":true,"lowerBound":0,"id":71,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"accessPatterns","changeable":true,"resolveProxies":true,"lowerBound":0,"id":72,"derived":false},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"owner","changeable":true,"resolveProxies":true,"lowerBound":0,"id":73,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":true,"transient":false,"unique":true,"name":"type","changeable":true,"resolveProxies":true,"lowerBound":1,"id":74,"derived":false},{"id":75,"eClass":"EGenericType"},{"id":76,"eClass":"EGenericType"},{"id":77,"eClass":"EGenericType"},{"id":78,"eClass":"EGenericType"},{"id":79,"eClass":"EGenericType"},{"id":80,"eClass":"EGenericType"},{"id":81,"eClass":"EGenericType"},{"id":82,"eClass":"EGenericType"},{"id":83,"eClass":"EGenericType"},{"id":84,"eClass":"EGenericType"},{"id":85,"eClass":"EGenericType"},{"id":86,"eClass":"EGenericType"},{"id":87,"eClass":"EGenericType"},{"id":88,"eClass":"EGenericType"},{"id":89,"eClass":"EGenericType"},{"id":90,"eClass":"EGenericType"},{"id":91,"eClass":"EGenericType"},{"id":92,"eClass":"EGenericType"},{"id":93,"eClass":"EGenericType"},{"id":94,"eClass":"EGenericType"},{"id":95,"eClass":"EGenericType"},{"id":96,"eClass":"EGenericType"},{"id":97,"eClass":"EGenericType"},{"id":98,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"columns","changeable":true,"resolveProxies":true,"lowerBound":1,"id":99,"derived":false},{"id":100,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"columns","changeable":true,"resolveProxies":true,"lowerBound":1,"id":101,"derived":false},{"id":102,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"columns","changeable":true,"resolveProxies":true,"lowerBound":1,"id":103,"derived":false},{"id":104,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"columns","changeable":true,"resolveProxies":true,"lowerBound":1,"id":105,"derived":false},{"id":106,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"columns","changeable":true,"resolveProxies":true,"lowerBound":1,"id":107,"derived":false},{"id":108,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"catalog","changeable":true,"resolveProxies":true,"lowerBound":0,"id":109,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"procedures","changeable":true,"resolveProxies":true,"lowerBound":0,"id":110,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"indexes","changeable":true,"resolveProxies":true,"lowerBound":0,"id":111,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"logicalRelationships","changeable":true,"resolveProxies":true,"lowerBound":0,"id":112,"derived":false},{"id":113,"eClass":"EGenericType"},{"id":114,"eClass":"EGenericType"},{"id":115,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"schemas","changeable":true,"resolveProxies":true,"lowerBound":0,"id":116,"derived":false},{"id":117,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"schema","changeable":true,"resolveProxies":true,"lowerBound":0,"id":118,"derived":false},{"id":119,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"schema","changeable":true,"resolveProxies":true,"lowerBound":0,"id":120,"derived":false},{"id":121,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"schema","changeable":true,"resolveProxies":true,"lowerBound":0,"id":122,"derived":false},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"table","changeable":true,"resolveProxies":true,"lowerBound":0,"id":123,"derived":false},{"id":124,"eClass":"EGenericType"},{"id":125,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"primaryKey","changeable":true,"resolveProxies":true,"lowerBound":0,"id":126,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"ZERO_TO_MANY","unsettable":false,"transient":false,"unique":true,"name":"foreignKeyMultiplicity","changeable":true,"lowerBound":0,"iD":false,"id":127,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"ONE","unsettable":false,"transient":false,"unique":true,"name":"primaryKeyMultiplicity","changeable":true,"lowerBound":0,"iD":false,"id":128,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":true,"transient":false,"unique":true,"name":"uniqueKey","changeable":true,"resolveProxies":true,"lowerBound":1,"id":129,"derived":false},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"table","changeable":true,"resolveProxies":true,"lowerBound":0,"id":130,"derived":false},{"id":131,"eClass":"EGenericType"},{"id":132,"eClass":"EGenericType"},{"id":133,"eClass":"EGenericType"},{"id":134,"eClass":"EGenericType"},{"id":135,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"foreignKeys","changeable":true,"resolveProxies":true,"lowerBound":0,"id":136,"derived":false},{"id":137,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"foreignKeys","changeable":true,"resolveProxies":true,"lowerBound":0,"id":138,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":139,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"nameInSource","changeable":true,"lowerBound":0,"iD":false,"id":140,"derived":false},{"id":141,"eClass":"EGenericType"},{"id":142,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"getTable","lowerBound":0,"id":143,"many":false,"required":false,"eClass":"EOperation"},{"id":144,"eClass":"EGenericType"},{"id":145,"eClass":"EGenericType"},{"id":146,"eClass":"EGenericType"},{"id":147,"eClass":"EGenericType"},{"id":148,"eClass":"EGenericType"},{"name":"NO_NULLS","id":149,"value":0,"literal":"NO_NULLS","eClass":"EEnumLiteral"},{"name":"NULLABLE","id":150,"value":1,"literal":"NULLABLE","eClass":"EEnumLiteral"},{"name":"NULLABLE_UNKNOWN","id":151,"value":2,"literal":"NULLABLE_UNKNOWN","eClass":"EEnumLiteral"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"procedures","changeable":true,"resolveProxies":true,"lowerBound":0,"id":152,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"indexes","changeable":true,"resolveProxies":true,"lowerBound":0,"id":153,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"logicalRelationships","changeable":true,"resolveProxies":true,"lowerBound":0,"id":154,"derived":false},{"id":155,"eClass":"EGenericType"},{"id":156,"eClass":"EGenericType"},{"id":157,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"catalog","changeable":true,"resolveProxies":true,"lowerBound":0,"id":158,"derived":false},{"id":159,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"catalog","changeable":true,"resolveProxies":true,"lowerBound":0,"id":160,"derived":false},{"id":161,"eClass":"EGenericType"},{"id":162,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"catalog","changeable":true,"resolveProxies":true,"lowerBound":0,"id":163,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"function","changeable":true,"lowerBound":0,"iD":false,"id":164,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"parameters","changeable":true,"resolveProxies":true,"lowerBound":0,"id":165,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"result","changeable":true,"resolveProxies":true,"lowerBound":0,"id":166,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"updateCount","changeable":true,"lowerBound":0,"iD":false,"id":167,"derived":false},{"id":168,"eClass":"EGenericType"},{"id":169,"eClass":"EGenericType"},{"id":170,"eClass":"EGenericType"},{"id":171,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"procedure","changeable":true,"resolveProxies":true,"lowerBound":0,"id":172,"derived":false},{"id":173,"eClass":"EGenericType"},{"id":174,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"procedure","changeable":true,"resolveProxies":true,"lowerBound":0,"id":175,"derived":false},{"id":176,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"filterCondition","changeable":true,"lowerBound":0,"iD":false,"id":177,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":true,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"true","unsettable":false,"transient":false,"unique":true,"name":"nullable","changeable":true,"lowerBound":0,"iD":false,"id":178,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"autoUpdate","changeable":true,"lowerBound":0,"iD":false,"id":179,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"unique","changeable":true,"lowerBound":0,"iD":false,"id":180,"derived":false},{"id":181,"eClass":"EGenericType"},{"id":182,"eClass":"EGenericType"},{"id":183,"eClass":"EGenericType"},{"id":184,"eClass":"EGenericType"},{"id":185,"eClass":"EGenericType"},{"id":186,"eClass":"EGenericType"},{"id":187,"eClass":"EGenericType"},{"id":188,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"direction","changeable":true,"lowerBound":0,"iD":false,"id":189,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"defaultValue","changeable":true,"lowerBound":0,"iD":false,"id":190,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"nativeType","changeable":true,"lowerBound":0,"iD":false,"id":191,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"length","changeable":true,"lowerBound":0,"iD":false,"id":192,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"precision","changeable":true,"lowerBound":0,"iD":false,"id":193,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"scale","changeable":true,"lowerBound":0,"iD":false,"id":194,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"NULLABLE","unsettable":false,"transient":false,"unique":true,"name":"nullable","changeable":true,"lowerBound":0,"iD":false,"id":195,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":10,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"10","unsettable":false,"transient":false,"unique":true,"name":"radix","changeable":true,"lowerBound":0,"iD":false,"id":196,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":true,"transient":false,"unique":true,"name":"type","changeable":true,"resolveProxies":true,"lowerBound":1,"id":197,"derived":false},{"id":198,"eClass":"EGenericType"},{"id":199,"eClass":"EGenericType"},{"id":200,"eClass":"EGenericType"},{"id":201,"eClass":"EGenericType"},{"id":202,"eClass":"EGenericType"},{"id":203,"eClass":"EGenericType"},{"id":204,"eClass":"EGenericType"},{"id":205,"eClass":"EGenericType"},{"id":206,"eClass":"EGenericType"},{"id":207,"eClass":"EGenericType"},{"id":208,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"table","changeable":true,"resolveProxies":true,"lowerBound":0,"id":209,"derived":false},{"id":210,"eClass":"EGenericType"},{"id":211,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"uniqueConstraints","changeable":true,"resolveProxies":true,"lowerBound":0,"id":212,"derived":false},{"name":"IN","id":213,"value":0,"literal":"IN","eClass":"EEnumLiteral"},{"name":"OUT","id":214,"value":1,"literal":"OUT","eClass":"EEnumLiteral"},{"name":"INOUT","id":215,"value":2,"literal":"INOUT","eClass":"EEnumLiteral"},{"name":"RETURN","id":216,"value":3,"literal":"RETURN","eClass":"EEnumLiteral"},{"name":"UNKNOWN","id":217,"value":4,"literal":"UNKNOWN","eClass":"EEnumLiteral"},{"id":218,"eClass":"EGenericType"},{"id":219,"eClass":"EGenericType"},{"id":220,"eClass":"EGenericType"},{"name":"ONE","id":221,"value":0,"literal":"ONE","eClass":"EEnumLiteral"},{"name":"MANY","id":222,"value":1,"literal":"MANY","eClass":"EEnumLiteral"},{"name":"ZERO_TO_ONE","id":223,"value":2,"literal":"ZERO_TO_ONE","eClass":"EEnumLiteral"},{"name":"ZERO_TO_MANY","id":224,"value":3,"literal":"ZERO_TO_MANY","eClass":"EEnumLiteral"},{"name":"UNSPECIFIED","id":225,"value":4,"literal":"UNSPECIFIED","eClass":"EEnumLiteral"},{"id":226,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"ends","changeable":true,"resolveProxies":true,"lowerBound":2,"id":227,"derived":false},{"id":228,"eClass":"EGenericType"},{"id":229,"eClass":"EGenericType"},{"id":230,"eClass":"EGenericType"},{"id":231,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"relationship","changeable":true,"resolveProxies":true,"lowerBound":1,"id":232,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"multiplicity","changeable":true,"lowerBound":0,"iD":false,"id":233,"derived":false},{"id":234,"eClass":"EGenericType"},{"id":235,"eClass":"EGenericType"},{"id":236,"eClass":"EGenericType"},{"id":237,"eClass":"EGenericType"},{"name":"SEARCHABLE","id":238,"value":0,"literal":"SEARCHABLE","eClass":"EEnumLiteral"},{"name":"ALL_EXCEPT_LIKE","id":239,"value":1,"literal":"ALL_EXCEPT_LIKE","eClass":"EEnumLiteral"},{"name":"LIKE_ONLY","id":240,"value":2,"literal":"LIKE_ONLY","eClass":"EEnumLiteral"},{"name":"UNSEARCHABLE","id":241,"value":3,"literal":"UNSEARCHABLE","eClass":"EEnumLiteral"},{"id":242,"eClass":"EGenericType"},{"id":243,"eClass":"EGenericType"},{"id":244,"eClass":"EGenericType"},{"id":245,"eClass":"EGenericType"},{"id":246,"eClass":"EGenericType"},{"id":247,"eClass":"EGenericType"},{"id":248,"eClass":"EGenericType"},{"id":249,"eClass":"EGenericType"},{"name":"AUTO","id":250,"value":0,"literal":"AUTO","eClass":"EEnumLiteral"},{"name":"ZERO","id":251,"value":1,"literal":"ZERO","eClass":"EEnumLiteral"},{"name":"ONE","id":252,"value":2,"literal":"ONE","eClass":"EEnumLiteral"},{"name":"MULTIPLE","id":253,"value":3,"literal":"MULTIPLE","eClass":"EEnumLiteral"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":0,"target":8},{"source":0,"target":9},{"source":0,"target":10},{"source":0,"target":11},{"source":0,"target":12},{"source":0,"target":13},{"source":0,"target":14},{"source":0,"target":15},{"source":0,"target":16},{"source":0,"target":17},{"source":0,"target":18},{"source":0,"target":19},{"source":0,"target":20},{"source":0,"target":21},{"source":0,"target":22},{"source":0,"target":23},{"source":0,"target":24},{"source":0,"target":25},{"source":1,"target":0},{"source":1,"target":23},{"source":1,"target":26},{"source":1,"target":27},{"source":1,"target":28},{"source":1,"target":29},{"source":1,"target":30},{"source":1,"target":31},{"source":1,"target":32},{"source":1,"target":33},{"source":1,"target":34},{"source":26,"target":35},{"source":26,"target":1},{"source":27,"target":36},{"source":27,"target":1},{"source":28,"target":37},{"source":28,"target":1},{"source":29,"target":38},{"source":29,"target":1},{"source":30,"target":3},{"source":30,"target":39},{"source":30,"target":1},{"source":30,"target":40},{"source":39,"target":3},{"source":31,"target":16},{"source":31,"target":41},{"source":31,"target":1},{"source":31,"target":42},{"source":41,"target":16},{"source":32,"target":10},{"source":32,"target":43},{"source":32,"target":1},{"source":32,"target":44},{"source":43,"target":10},{"source":33,"target":20},{"source":33,"target":45},{"source":33,"target":1},{"source":33,"target":46},{"source":45,"target":20},{"source":34,"target":23},{"source":2,"target":0},{"source":2,"target":6},{"source":2,"target":47},{"source":2,"target":48},{"source":2,"target":49},{"source":2,"target":50},{"source":2,"target":51},{"source":2,"target":52},{"source":2,"target":53},{"source":2,"target":54},{"source":2,"target":55},{"source":2,"target":56},{"source":2,"target":57},{"source":2,"target":58},{"source":2,"target":59},{"source":2,"target":60},{"source":2,"target":61},{"source":2,"target":62},{"source":2,"target":63},{"source":2,"target":64},{"source":2,"target":65},{"source":2,"target":66},{"source":2,"target":67},{"source":2,"target":68},{"source":2,"target":69},{"source":2,"target":70},{"source":2,"target":71},{"source":2,"target":72},{"source":2,"target":73},{"source":2,"target":74},{"source":2,"target":75},{"source":47,"target":76},{"source":47,"target":2},{"source":48,"target":77},{"source":48,"target":2},{"source":49,"target":78},{"source":49,"target":2},{"source":50,"target":79},{"source":50,"target":2},{"source":51,"target":80},{"source":51,"target":2},{"source":52,"target":9},{"source":52,"target":81},{"source":52,"target":2},{"source":81,"target":9},{"source":53,"target":82},{"source":53,"target":2},{"source":54,"target":83},{"source":54,"target":2},{"source":55,"target":84},{"source":55,"target":2},{"source":56,"target":85},{"source":56,"target":2},{"source":57,"target":86},{"source":57,"target":2},{"source":58,"target":87},{"source":58,"target":2},{"source":59,"target":88},{"source":59,"target":2},{"source":60,"target":89},{"source":60,"target":2},{"source":61,"target":90},{"source":61,"target":2},{"source":62,"target":91},{"source":62,"target":2},{"source":63,"target":21},{"source":63,"target":92},{"source":63,"target":2},{"source":92,"target":21},{"source":64,"target":93},{"source":64,"target":2},{"source":65,"target":94},{"source":65,"target":2},{"source":66,"target":95},{"source":66,"target":2},{"source":67,"target":96},{"source":67,"target":2},{"source":68,"target":97},{"source":68,"target":2},{"source":69,"target":7},{"source":69,"target":98},{"source":69,"target":2},{"source":69,"target":99},{"source":98,"target":7},{"source":70,"target":12},{"source":70,"target":100},{"source":70,"target":2},{"source":70,"target":101},{"source":100,"target":12},{"source":71,"target":5},{"source":71,"target":102},{"source":71,"target":2},{"source":71,"target":103},{"source":102,"target":5},{"source":72,"target":16},{"source":72,"target":104},{"source":72,"target":2},{"source":72,"target":105},{"source":104,"target":16},{"source":73,"target":23},{"source":73,"target":106},{"source":73,"target":2},{"source":73,"target":107},{"source":106,"target":23},{"source":74,"target":108},{"source":74,"target":2},{"source":75,"target":6},{"source":3,"target":0},{"source":3,"target":6},{"source":3,"target":40},{"source":3,"target":109},{"source":3,"target":110},{"source":3,"target":111},{"source":3,"target":112},{"source":3,"target":113},{"source":40,"target":1},{"source":40,"target":114},{"source":40,"target":3},{"source":40,"target":30},{"source":114,"target":1},{"source":109,"target":10},{"source":109,"target":115},{"source":109,"target":3},{"source":109,"target":116},{"source":115,"target":10},{"source":110,"target":11},{"source":110,"target":117},{"source":110,"target":3},{"source":110,"target":118},{"source":117,"target":11},{"source":111,"target":12},{"source":111,"target":119},{"source":111,"target":3},{"source":111,"target":120},{"source":119,"target":12},{"source":112,"target":19},{"source":112,"target":121},{"source":112,"target":3},{"source":112,"target":122},{"source":121,"target":19},{"source":113,"target":6},{"source":4,"target":0},{"source":4,"target":7},{"source":4,"target":123},{"source":4,"target":124},{"source":123,"target":22},{"source":123,"target":125},{"source":123,"target":4},{"source":123,"target":126},{"source":125,"target":22},{"source":124,"target":7},{"source":5,"target":0},{"source":5,"target":18},{"source":5,"target":127},{"source":5,"target":128},{"source":5,"target":103},{"source":5,"target":129},{"source":5,"target":130},{"source":5,"target":131},{"source":127,"target":17},{"source":127,"target":132},{"source":127,"target":5},{"source":132,"target":17},{"source":128,"target":17},{"source":128,"target":133},{"source":128,"target":5},{"source":133,"target":17},{"source":103,"target":2},{"source":103,"target":134},{"source":103,"target":5},{"source":103,"target":71},{"source":134,"target":2},{"source":129,"target":7},{"source":129,"target":135},{"source":129,"target":5},{"source":129,"target":136},{"source":135,"target":7},{"source":130,"target":22},{"source":130,"target":137},{"source":130,"target":5},{"source":130,"target":138},{"source":137,"target":22},{"source":131,"target":18},{"source":6,"target":0},{"source":6,"target":139},{"source":6,"target":140},{"source":139,"target":141},{"source":139,"target":6},{"source":140,"target":142},{"source":140,"target":6},{"source":7,"target":0},{"source":7,"target":6},{"source":7,"target":143},{"source":7,"target":99},{"source":7,"target":136},{"source":7,"target":144},{"source":143,"target":22},{"source":143,"target":145},{"source":143,"target":7},{"source":145,"target":22},{"source":99,"target":2},{"source":99,"target":146},{"source":99,"target":7},{"source":99,"target":69},{"source":146,"target":2},{"source":136,"target":5},{"source":136,"target":147},{"source":136,"target":7},{"source":136,"target":129},{"source":147,"target":5},{"source":144,"target":6},{"source":8,"target":0},{"source":8,"target":1},{"source":8,"target":148},{"source":148,"target":1},{"source":9,"target":0},{"source":9,"target":149},{"source":9,"target":150},{"source":9,"target":151},{"source":149,"target":9},{"source":150,"target":9},{"source":151,"target":9},{"source":10,"target":0},{"source":10,"target":6},{"source":10,"target":116},{"source":10,"target":152},{"source":10,"target":153},{"source":10,"target":44},{"source":10,"target":154},{"source":10,"target":155},{"source":116,"target":3},{"source":116,"target":156},{"source":116,"target":10},{"source":116,"target":109},{"source":156,"target":3},{"source":152,"target":11},{"source":152,"target":157},{"source":152,"target":10},{"source":152,"target":158},{"source":157,"target":11},{"source":153,"target":12},{"source":153,"target":159},{"source":153,"target":10},{"source":153,"target":160},{"source":159,"target":12},{"source":44,"target":1},{"source":44,"target":161},{"source":44,"target":10},{"source":44,"target":32},{"source":161,"target":1},{"source":154,"target":19},{"source":154,"target":162},{"source":154,"target":10},{"source":154,"target":163},{"source":162,"target":19},{"source":155,"target":6},{"source":11,"target":0},{"source":11,"target":6},{"source":11,"target":164},{"source":11,"target":118},{"source":11,"target":165},{"source":11,"target":158},{"source":11,"target":166},{"source":11,"target":167},{"source":11,"target":168},{"source":164,"target":169},{"source":164,"target":11},{"source":118,"target":3},{"source":118,"target":170},{"source":118,"target":11},{"source":118,"target":110},{"source":170,"target":3},{"source":165,"target":13},{"source":165,"target":171},{"source":165,"target":11},{"source":165,"target":172},{"source":171,"target":13},{"source":158,"target":10},{"source":158,"target":173},{"source":158,"target":11},{"source":158,"target":152},{"source":173,"target":10},{"source":166,"target":24},{"source":166,"target":174},{"source":166,"target":11},{"source":166,"target":175},{"source":174,"target":24},{"source":167,"target":25},{"source":167,"target":176},{"source":167,"target":11},{"source":176,"target":25},{"source":168,"target":6},{"source":12,"target":0},{"source":12,"target":6},{"source":12,"target":177},{"source":12,"target":178},{"source":12,"target":179},{"source":12,"target":180},{"source":12,"target":120},{"source":12,"target":101},{"source":12,"target":160},{"source":12,"target":181},{"source":177,"target":182},{"source":177,"target":12},{"source":178,"target":183},{"source":178,"target":12},{"source":179,"target":184},{"source":179,"target":12},{"source":180,"target":185},{"source":180,"target":12},{"source":120,"target":3},{"source":120,"target":186},{"source":120,"target":12},{"source":120,"target":111},{"source":186,"target":3},{"source":101,"target":2},{"source":101,"target":187},{"source":101,"target":12},{"source":101,"target":70},{"source":187,"target":2},{"source":160,"target":10},{"source":160,"target":188},{"source":160,"target":12},{"source":160,"target":153},{"source":188,"target":10},{"source":181,"target":6},{"source":13,"target":0},{"source":13,"target":6},{"source":13,"target":189},{"source":13,"target":190},{"source":13,"target":191},{"source":13,"target":192},{"source":13,"target":193},{"source":13,"target":194},{"source":13,"target":195},{"source":13,"target":196},{"source":13,"target":172},{"source":13,"target":197},{"source":13,"target":198},{"source":189,"target":15},{"source":189,"target":199},{"source":189,"target":13},{"source":199,"target":15},{"source":190,"target":200},{"source":190,"target":13},{"source":191,"target":201},{"source":191,"target":13},{"source":192,"target":202},{"source":192,"target":13},{"source":193,"target":203},{"source":193,"target":13},{"source":194,"target":204},{"source":194,"target":13},{"source":195,"target":9},{"source":195,"target":205},{"source":195,"target":13},{"source":205,"target":9},{"source":196,"target":206},{"source":196,"target":13},{"source":172,"target":11},{"source":172,"target":207},{"source":172,"target":13},{"source":172,"target":165},{"source":207,"target":11},{"source":197,"target":208},{"source":197,"target":13},{"source":198,"target":6},{"source":14,"target":0},{"source":14,"target":7},{"source":14,"target":209},{"source":14,"target":210},{"source":209,"target":22},{"source":209,"target":211},{"source":209,"target":14},{"source":209,"target":212},{"source":211,"target":22},{"source":210,"target":7},{"source":15,"target":0},{"source":15,"target":213},{"source":15,"target":214},{"source":15,"target":215},{"source":15,"target":216},{"source":15,"target":217},{"source":213,"target":15},{"source":214,"target":15},{"source":215,"target":15},{"source":216,"target":15},{"source":217,"target":15},{"source":16,"target":0},{"source":16,"target":6},{"source":16,"target":105},{"source":16,"target":42},{"source":16,"target":218},{"source":105,"target":2},{"source":105,"target":219},{"source":105,"target":16},{"source":105,"target":72},{"source":219,"target":2},{"source":42,"target":1},{"source":42,"target":220},{"source":42,"target":16},{"source":42,"target":31},{"source":220,"target":1},{"source":218,"target":6},{"source":17,"target":0},{"source":17,"target":221},{"source":17,"target":222},{"source":17,"target":223},{"source":17,"target":224},{"source":17,"target":225},{"source":221,"target":17},{"source":222,"target":17},{"source":223,"target":17},{"source":224,"target":17},{"source":225,"target":17},{"source":18,"target":0},{"source":18,"target":6},{"source":18,"target":226},{"source":226,"target":6},{"source":19,"target":0},{"source":19,"target":18},{"source":19,"target":163},{"source":19,"target":122},{"source":19,"target":227},{"source":19,"target":228},{"source":163,"target":10},{"source":163,"target":229},{"source":163,"target":19},{"source":163,"target":154},{"source":229,"target":10},{"source":122,"target":3},{"source":122,"target":230},{"source":122,"target":19},{"source":122,"target":112},{"source":230,"target":3},{"source":227,"target":20},{"source":227,"target":231},{"source":227,"target":19},{"source":227,"target":232},{"source":231,"target":20},{"source":228,"target":18},{"source":20,"target":0},{"source":20,"target":6},{"source":20,"target":233},{"source":20,"target":46},{"source":20,"target":232},{"source":20,"target":234},{"source":233,"target":17},{"source":233,"target":235},{"source":233,"target":20},{"source":235,"target":17},{"source":46,"target":1},{"source":46,"target":236},{"source":46,"target":20},{"source":46,"target":33},{"source":236,"target":1},{"source":232,"target":19},{"source":232,"target":237},{"source":232,"target":20},{"source":232,"target":227},{"source":237,"target":19},{"source":234,"target":6},{"source":21,"target":0},{"source":21,"target":238},{"source":21,"target":239},{"source":21,"target":240},{"source":21,"target":241},{"source":238,"target":21},{"source":239,"target":21},{"source":240,"target":21},{"source":241,"target":21},{"source":22,"target":0},{"source":22,"target":1},{"source":22,"target":138},{"source":22,"target":126},{"source":22,"target":212},{"source":22,"target":242},{"source":138,"target":5},{"source":138,"target":243},{"source":138,"target":22},{"source":138,"target":130},{"source":243,"target":5},{"source":126,"target":4},{"source":126,"target":244},{"source":126,"target":22},{"source":126,"target":123},{"source":244,"target":4},{"source":212,"target":14},{"source":212,"target":245},{"source":212,"target":22},{"source":212,"target":209},{"source":245,"target":14},{"source":242,"target":1},{"source":23,"target":0},{"source":23,"target":6},{"source":23,"target":107},{"source":23,"target":246},{"source":107,"target":2},{"source":107,"target":247},{"source":107,"target":23},{"source":107,"target":73},{"source":247,"target":2},{"source":246,"target":6},{"source":24,"target":0},{"source":24,"target":23},{"source":24,"target":175},{"source":24,"target":248},{"source":175,"target":11},{"source":175,"target":249},{"source":175,"target":24},{"source":175,"target":166},{"source":249,"target":11},{"source":248,"target":23},{"source":25,"target":0},{"source":25,"target":250},{"source":25,"target":251},{"source":25,"target":252},{"source":25,"target":253},{"source":250,"target":25},{"source":251,"target":25},{"source":252,"target":25},{"source":253,"target":25}],"multigraph":true} |
false | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="aspectj" nsURI="http://megamart2-ecsel.eu/aspectj/" nsPrefix="AspectJ">
<eClassifiers xsi:type="ecore:EEnum" name="AdviceExecutionType">
<eLiterals name="Around"/>
<eLiterals name="Before" value="1"/>
<eLiterals name="After" value="2"/>
<eLiterals name="After_Returning" value="3"/>
<eLiterals name="After_Throwing" value="4"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="AspectInstantiationType">
<eLiterals name="perthis"/>
<eLiterals name="pertarget" value="1"/>
<eLiterals name="percflow" value="2"/>
<eLiterals name="percflowbelow" value="3"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="StaticCrossCuttingFeature">
<eStructuralFeatures xsi:type="ecore:EReference" name="onType" ordered="false"
lowerBound="1" upperBound="-1" eType="ecore:EClass ../../org.eclipse.uml2.uml/model/UML.ecore#//Type"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="base_Feature" ordered="false"
lowerBound="1" eType="ecore:EClass ../../org.eclipse.uml2.uml/model/UML.ecore#//Feature"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Aspect">
<eStructuralFeatures xsi:type="ecore:EReference" name="base_Class" ordered="false"
lowerBound="1" eType="ecore:EClass ../../org.eclipse.uml2.uml/model/UML.ecore#//Class"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isPrivileged" ordered="false"
lowerBound="1" eType="ecore:EDataType ../../org.eclipse.uml2.types/model/Types.ecore#//Boolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="perType" ordered="false"
lowerBound="1" eType="#//AspectInstantiationType"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="perPointCut" ordered="false"
eType="#//PointCut"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="declaredParents" ordered="false"
upperBound="-1" eType="ecore:EClass ../../org.eclipse.uml2.uml/model/UML.ecore#//Generalization"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="declaredImplements" ordered="false"
upperBound="-1" eType="ecore:EClass ../../org.eclipse.uml2.uml/model/UML.ecore#//InterfaceRealization"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="precedes" ordered="false"
eType="#//Aspect" eOpposite="#//Aspect/precededBy"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="precededBy" ordered="false"
eType="#//Aspect" eOpposite="#//Aspect/precedes"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="PointCut" abstract="true">
<eStructuralFeatures xsi:type="ecore:EReference" name="base_PointCut_StructuralFeature"
ordered="false" lowerBound="1" eType="ecore:EClass ../../org.eclipse.uml2.uml/model/UML.ecore#//StructuralFeature"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="composite" ordered="false"
upperBound="-1" eType="#//CompositePointCut"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CompositePointCut" eSuperTypes="#//PointCut">
<eStructuralFeatures xsi:type="ecore:EReference" name="composee" ordered="false"
lowerBound="1" upperBound="-1" eType="#//PointCut"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="type" ordered="false" lowerBound="1"
eType="#//PointCutCompositionType"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="PointCutCompositionType">
<eLiterals name="And"/>
<eLiterals name="Or" value="1"/>
<eLiterals name="Type" value="2"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="InitializationPointCut" eSuperTypes="#//ExecutionPointCut"/>
<eClassifiers xsi:type="ecore:EClass" name="ExecutionPointCut" abstract="true" eSuperTypes="#//OperationalPointCut"/>
<eClassifiers xsi:type="ecore:EClass" name="OperationalPointCut" abstract="true"
eSuperTypes="#//PointCut">
<eStructuralFeatures xsi:type="ecore:EReference" name="operation" ordered="false"
lowerBound="1" upperBound="-1" eType="ecore:EClass ../../org.eclipse.uml2.uml/model/UML.ecore#//Operation"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="PreInitializationPointCut" eSuperTypes="#//ExecutionPointCut"/>
<eClassifiers xsi:type="ecore:EClass" name="SetPointCut" eSuperTypes="#//PropertyPointCut"/>
<eClassifiers xsi:type="ecore:EClass" name="PropertyPointCut" abstract="true" eSuperTypes="#//PointCut">
<eStructuralFeatures xsi:type="ecore:EReference" name="field" ordered="false"
lowerBound="1" upperBound="-1" eType="ecore:EClass ../../org.eclipse.uml2.uml/model/UML.ecore#//Property"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="GetPointCut" eSuperTypes="#//PropertyPointCut"/>
<eClassifiers xsi:type="ecore:EClass" name="CallPointCut" eSuperTypes="#//OperationalPointCut">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="signature" ordered="false"
lowerBound="1" eType="ecore:EDataType ../../org.eclipse.uml2.types/model/Types.ecore#//String"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="WithinCodePointCut" eSuperTypes="#//OperationalPointCut"/>
<eClassifiers xsi:type="ecore:EClass" name="ArgumentDefiningPointCut" abstract="true">
<eStructuralFeatures xsi:type="ecore:EReference" name="base_StructuralFeature"
ordered="false" lowerBound="1" eType="ecore:EClass ../../org.eclipse.uml2.uml/model/UML.ecore#//StructuralFeature"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="argNames" unique="false"
lowerBound="1" upperBound="-1" eType="ecore:EDataType ../../org.eclipse.uml2.types/model/Types.ecore#//String"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ThisPointCut" eSuperTypes="#//TypePointCut #//ArgumentDefiningPointCut"/>
<eClassifiers xsi:type="ecore:EClass" name="TypePointCut" abstract="true" eSuperTypes="#//PointCut">
<eStructuralFeatures xsi:type="ecore:EReference" name="type" unique="false" lowerBound="1"
upperBound="-1" eType="ecore:EClass ../../org.eclipse.uml2.uml/model/UML.ecore#//Type"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ArgsPointCut" eSuperTypes="#//TypePointCut #//ArgumentDefiningPointCut"/>
<eClassifiers xsi:type="ecore:EClass" name="TargetPointCut" eSuperTypes="#//TypePointCut #//ArgumentDefiningPointCut"/>
<eClassifiers xsi:type="ecore:EClass" name="AdviceExecutionPointCut" eSuperTypes="#//PointCut"/>
<eClassifiers xsi:type="ecore:EClass" name="Advice">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="adviceExecution" ordered="false"
lowerBound="1" eType="#//AdviceExecutionType"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="base_BehavioralFeature"
ordered="false" lowerBound="1" eType="ecore:EClass ../../org.eclipse.uml2.uml/model/UML.ecore#//BehavioralFeature"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="pointcut" ordered="false"
lowerBound="1" eType="#//PointCut"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="StaticInitializationPointCut" eSuperTypes="#//TypePointCut"/>
<eClassifiers xsi:type="ecore:EClass" name="ExceptionPointCut" eSuperTypes="#//TypePointCut"/>
<eClassifiers xsi:type="ecore:EClass" name="WithinPointCut" eSuperTypes="#//TypePointCut"/>
<eClassifiers xsi:type="ecore:EClass" name="PointCutPointCut" abstract="true" eSuperTypes="#//PointCut">
<eStructuralFeatures xsi:type="ecore:EReference" name="selectedPointCut" ordered="false"
lowerBound="1" eType="#//PointCut"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CFlowBelowPointCut" eSuperTypes="#//PointCutPointCut"/>
<eClassifiers xsi:type="ecore:EClass" name="CrossCuttingConcern">
<eStructuralFeatures xsi:type="ecore:EReference" name="base_Package" ordered="false"
lowerBound="1" eType="ecore:EClass ../../org.eclipse.uml2.uml/model/UML.ecore#//Package"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CFlowPointCut" eSuperTypes="#//PointCutPointCut"/>
</ecore:EPackage>
| github:ecore:/data/megamart2/tool-papyrus-extensions/Plugins/eu.megamark2.papyrus.profiles.aom/profiles/aspectj.ecore | ecore | aspectj
AdviceExecutionType
Around
Around
Before
Before
After
After
After_Returning
After_Returning
After_Throwing
After_Throwing
AspectInstantiationType
perthis
perthis
pertarget
pertarget
percflow
percflow
percflowbelow
percflowbelow
StaticCrossCuttingFeature
onType
base_Feature
Aspect
base_Class
isPrivileged
perType
perPointCut
declaredParents
declaredImplements
precedes
precededBy
PointCut
base_PointCut_StructuralFeature
composite
CompositePointCut
composee
type
PointCutCompositionType
And
And
Or
Or
Type
Type
InitializationPointCut
ExecutionPointCut
OperationalPointCut
operation
PreInitializationPointCut
SetPointCut
PropertyPointCut
field
GetPointCut
CallPointCut
signature
WithinCodePointCut
ArgumentDefiningPointCut
base_StructuralFeature
argNames
ThisPointCut
TypePointCut
type
ArgsPointCut
TargetPointCut
AdviceExecutionPointCut
Advice
adviceExecution
base_BehavioralFeature
pointcut
StaticInitializationPointCut
ExceptionPointCut
WithinPointCut
PointCutPointCut
selectedPointCut
CFlowBelowPointCut
CrossCuttingConcern
base_Package
CFlowPointCut | null | {"directed":true,"nodes":[{"nsPrefix":"AspectJ","nsURI":"http://megamart2-ecsel.eu/aspectj/","name":"aspectj","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"instanceClassName":null,"name":"AdviceExecutionType","instanceClass":null,"id":1,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"AspectInstantiationType","instanceClass":null,"id":2,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StaticCrossCuttingFeature","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Aspect","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PointCut","instanceClass":null,"abstract":true,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CompositePointCut","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"PointCutCompositionType","instanceClass":null,"id":7,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InitializationPointCut","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExecutionPointCut","instanceClass":null,"abstract":true,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OperationalPointCut","instanceClass":null,"abstract":true,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PreInitializationPointCut","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SetPointCut","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PropertyPointCut","instanceClass":null,"abstract":true,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"GetPointCut","instanceClass":null,"abstract":false,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CallPointCut","instanceClass":null,"abstract":false,"id":15,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"WithinCodePointCut","instanceClass":null,"abstract":false,"id":16,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ArgumentDefiningPointCut","instanceClass":null,"abstract":true,"id":17,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ThisPointCut","instanceClass":null,"abstract":false,"id":18,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TypePointCut","instanceClass":null,"abstract":true,"id":19,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ArgsPointCut","instanceClass":null,"abstract":false,"id":20,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TargetPointCut","instanceClass":null,"abstract":false,"id":21,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AdviceExecutionPointCut","instanceClass":null,"abstract":false,"id":22,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Advice","instanceClass":null,"abstract":false,"id":23,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StaticInitializationPointCut","instanceClass":null,"abstract":false,"id":24,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExceptionPointCut","instanceClass":null,"abstract":false,"id":25,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"WithinPointCut","instanceClass":null,"abstract":false,"id":26,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PointCutPointCut","instanceClass":null,"abstract":true,"id":27,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CFlowBelowPointCut","instanceClass":null,"abstract":false,"id":28,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CrossCuttingConcern","instanceClass":null,"abstract":false,"id":29,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CFlowPointCut","instanceClass":null,"abstract":false,"id":30,"interface":false,"eClass":"EClass"},{"name":"Around","id":31,"value":0,"literal":"Around","eClass":"EEnumLiteral"},{"name":"Before","id":32,"value":1,"literal":"Before","eClass":"EEnumLiteral"},{"name":"After","id":33,"value":2,"literal":"After","eClass":"EEnumLiteral"},{"name":"After_Returning","id":34,"value":3,"literal":"After_Returning","eClass":"EEnumLiteral"},{"name":"After_Throwing","id":35,"value":4,"literal":"After_Throwing","eClass":"EEnumLiteral"},{"name":"perthis","id":36,"value":0,"literal":"perthis","eClass":"EEnumLiteral"},{"name":"pertarget","id":37,"value":1,"literal":"pertarget","eClass":"EEnumLiteral"},{"name":"percflow","id":38,"value":2,"literal":"percflow","eClass":"EEnumLiteral"},{"name":"percflowbelow","id":39,"value":3,"literal":"percflowbelow","eClass":"EEnumLiteral"},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"onType","changeable":true,"resolveProxies":true,"lowerBound":1,"id":40,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"base_Feature","changeable":true,"resolveProxies":true,"lowerBound":1,"id":41,"derived":false},{"id":42,"eClass":"EGenericType"},{"id":43,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"base_Class","changeable":true,"resolveProxies":true,"lowerBound":1,"id":44,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isPrivileged","changeable":true,"lowerBound":1,"iD":false,"id":45,"derived":false},{"ordered":false,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"perType","changeable":true,"lowerBound":1,"iD":false,"id":46,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"perPointCut","changeable":true,"resolveProxies":true,"lowerBound":0,"id":47,"derived":false},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"declaredParents","changeable":true,"resolveProxies":true,"lowerBound":0,"id":48,"derived":false},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"declaredImplements","changeable":true,"resolveProxies":true,"lowerBound":0,"id":49,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"precedes","changeable":true,"resolveProxies":true,"lowerBound":0,"id":50,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"precededBy","changeable":true,"resolveProxies":true,"lowerBound":0,"id":51,"derived":false},{"id":52,"eClass":"EGenericType"},{"id":53,"eClass":"EGenericType"},{"id":54,"eClass":"EGenericType"},{"id":55,"eClass":"EGenericType"},{"id":56,"eClass":"EGenericType"},{"id":57,"eClass":"EGenericType"},{"id":58,"eClass":"EGenericType"},{"id":59,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"base_PointCut_StructuralFeature","changeable":true,"resolveProxies":true,"lowerBound":1,"id":60,"derived":false},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"composite","changeable":true,"resolveProxies":true,"lowerBound":0,"id":61,"derived":false},{"id":62,"eClass":"EGenericType"},{"id":63,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"composee","changeable":true,"resolveProxies":true,"lowerBound":1,"id":64,"derived":false},{"ordered":false,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"lowerBound":1,"iD":false,"id":65,"derived":false},{"id":66,"eClass":"EGenericType"},{"id":67,"eClass":"EGenericType"},{"id":68,"eClass":"EGenericType"},{"name":"And","id":69,"value":0,"literal":"And","eClass":"EEnumLiteral"},{"name":"Or","id":70,"value":1,"literal":"Or","eClass":"EEnumLiteral"},{"name":"Type","id":71,"value":2,"literal":"Type","eClass":"EEnumLiteral"},{"id":72,"eClass":"EGenericType"},{"id":73,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"operation","changeable":true,"resolveProxies":true,"lowerBound":1,"id":74,"derived":false},{"id":75,"eClass":"EGenericType"},{"id":76,"eClass":"EGenericType"},{"id":77,"eClass":"EGenericType"},{"id":78,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"field","changeable":true,"resolveProxies":true,"lowerBound":1,"id":79,"derived":false},{"id":80,"eClass":"EGenericType"},{"id":81,"eClass":"EGenericType"},{"id":82,"eClass":"EGenericType"},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"signature","changeable":true,"lowerBound":1,"iD":false,"id":83,"derived":false},{"id":84,"eClass":"EGenericType"},{"id":85,"eClass":"EGenericType"},{"id":86,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"base_StructuralFeature","changeable":true,"resolveProxies":true,"lowerBound":1,"id":87,"derived":false},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"argNames","changeable":true,"lowerBound":1,"iD":false,"id":88,"derived":false},{"id":89,"eClass":"EGenericType"},{"id":90,"eClass":"EGenericType"},{"id":91,"eClass":"EGenericType"},{"id":92,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":false,"name":"type","changeable":true,"resolveProxies":true,"lowerBound":1,"id":93,"derived":false},{"id":94,"eClass":"EGenericType"},{"id":95,"eClass":"EGenericType"},{"id":96,"eClass":"EGenericType"},{"id":97,"eClass":"EGenericType"},{"id":98,"eClass":"EGenericType"},{"id":99,"eClass":"EGenericType"},{"id":100,"eClass":"EGenericType"},{"ordered":false,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"adviceExecution","changeable":true,"lowerBound":1,"iD":false,"id":101,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"base_BehavioralFeature","changeable":true,"resolveProxies":true,"lowerBound":1,"id":102,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"pointcut","changeable":true,"resolveProxies":true,"lowerBound":1,"id":103,"derived":false},{"id":104,"eClass":"EGenericType"},{"id":105,"eClass":"EGenericType"},{"id":106,"eClass":"EGenericType"},{"id":107,"eClass":"EGenericType"},{"id":108,"eClass":"EGenericType"},{"id":109,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"selectedPointCut","changeable":true,"resolveProxies":true,"lowerBound":1,"id":110,"derived":false},{"id":111,"eClass":"EGenericType"},{"id":112,"eClass":"EGenericType"},{"id":113,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"base_Package","changeable":true,"resolveProxies":true,"lowerBound":1,"id":114,"derived":false},{"id":115,"eClass":"EGenericType"},{"id":116,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":0,"target":8},{"source":0,"target":9},{"source":0,"target":10},{"source":0,"target":11},{"source":0,"target":12},{"source":0,"target":13},{"source":0,"target":14},{"source":0,"target":15},{"source":0,"target":16},{"source":0,"target":17},{"source":0,"target":18},{"source":0,"target":19},{"source":0,"target":20},{"source":0,"target":21},{"source":0,"target":22},{"source":0,"target":23},{"source":0,"target":24},{"source":0,"target":25},{"source":0,"target":26},{"source":0,"target":27},{"source":0,"target":28},{"source":0,"target":29},{"source":0,"target":30},{"source":1,"target":0},{"source":1,"target":31},{"source":1,"target":32},{"source":1,"target":33},{"source":1,"target":34},{"source":1,"target":35},{"source":31,"target":1},{"source":32,"target":1},{"source":33,"target":1},{"source":34,"target":1},{"source":35,"target":1},{"source":2,"target":0},{"source":2,"target":36},{"source":2,"target":37},{"source":2,"target":38},{"source":2,"target":39},{"source":36,"target":2},{"source":37,"target":2},{"source":38,"target":2},{"source":39,"target":2},{"source":3,"target":0},{"source":3,"target":40},{"source":3,"target":41},{"source":40,"target":42},{"source":40,"target":3},{"source":41,"target":43},{"source":41,"target":3},{"source":4,"target":0},{"source":4,"target":44},{"source":4,"target":45},{"source":4,"target":46},{"source":4,"target":47},{"source":4,"target":48},{"source":4,"target":49},{"source":4,"target":50},{"source":4,"target":51},{"source":44,"target":52},{"source":44,"target":4},{"source":45,"target":53},{"source":45,"target":4},{"source":46,"target":2},{"source":46,"target":54},{"source":46,"target":4},{"source":54,"target":2},{"source":47,"target":5},{"source":47,"target":55},{"source":47,"target":4},{"source":55,"target":5},{"source":48,"target":56},{"source":48,"target":4},{"source":49,"target":57},{"source":49,"target":4},{"source":50,"target":4},{"source":50,"target":58},{"source":50,"target":4},{"source":50,"target":51},{"source":58,"target":4},{"source":51,"target":4},{"source":51,"target":59},{"source":51,"target":4},{"source":51,"target":50},{"source":59,"target":4},{"source":5,"target":0},{"source":5,"target":60},{"source":5,"target":61},{"source":60,"target":62},{"source":60,"target":5},{"source":61,"target":6},{"source":61,"target":63},{"source":61,"target":5},{"source":63,"target":6},{"source":6,"target":0},{"source":6,"target":5},{"source":6,"target":64},{"source":6,"target":65},{"source":6,"target":66},{"source":64,"target":5},{"source":64,"target":67},{"source":64,"target":6},{"source":67,"target":5},{"source":65,"target":7},{"source":65,"target":68},{"source":65,"target":6},{"source":68,"target":7},{"source":66,"target":5},{"source":7,"target":0},{"source":7,"target":69},{"source":7,"target":70},{"source":7,"target":71},{"source":69,"target":7},{"source":70,"target":7},{"source":71,"target":7},{"source":8,"target":0},{"source":8,"target":9},{"source":8,"target":72},{"source":72,"target":9},{"source":9,"target":0},{"source":9,"target":10},{"source":9,"target":73},{"source":73,"target":10},{"source":10,"target":0},{"source":10,"target":5},{"source":10,"target":74},{"source":10,"target":75},{"source":74,"target":76},{"source":74,"target":10},{"source":75,"target":5},{"source":11,"target":0},{"source":11,"target":9},{"source":11,"target":77},{"source":77,"target":9},{"source":12,"target":0},{"source":12,"target":13},{"source":12,"target":78},{"source":78,"target":13},{"source":13,"target":0},{"source":13,"target":5},{"source":13,"target":79},{"source":13,"target":80},{"source":79,"target":81},{"source":79,"target":13},{"source":80,"target":5},{"source":14,"target":0},{"source":14,"target":13},{"source":14,"target":82},{"source":82,"target":13},{"source":15,"target":0},{"source":15,"target":10},{"source":15,"target":83},{"source":15,"target":84},{"source":83,"target":85},{"source":83,"target":15},{"source":84,"target":10},{"source":16,"target":0},{"source":16,"target":10},{"source":16,"target":86},{"source":86,"target":10},{"source":17,"target":0},{"source":17,"target":87},{"source":17,"target":88},{"source":87,"target":89},{"source":87,"target":17},{"source":88,"target":90},{"source":88,"target":17},{"source":18,"target":0},{"source":18,"target":19},{"source":18,"target":17},{"source":18,"target":91},{"source":18,"target":92},{"source":91,"target":19},{"source":92,"target":17},{"source":19,"target":0},{"source":19,"target":5},{"source":19,"target":93},{"source":19,"target":94},{"source":93,"target":95},{"source":93,"target":19},{"source":94,"target":5},{"source":20,"target":0},{"source":20,"target":19},{"source":20,"target":17},{"source":20,"target":96},{"source":20,"target":97},{"source":96,"target":19},{"source":97,"target":17},{"source":21,"target":0},{"source":21,"target":19},{"source":21,"target":17},{"source":21,"target":98},{"source":21,"target":99},{"source":98,"target":19},{"source":99,"target":17},{"source":22,"target":0},{"source":22,"target":5},{"source":22,"target":100},{"source":100,"target":5},{"source":23,"target":0},{"source":23,"target":101},{"source":23,"target":102},{"source":23,"target":103},{"source":101,"target":1},{"source":101,"target":104},{"source":101,"target":23},{"source":104,"target":1},{"source":102,"target":105},{"source":102,"target":23},{"source":103,"target":5},{"source":103,"target":106},{"source":103,"target":23},{"source":106,"target":5},{"source":24,"target":0},{"source":24,"target":19},{"source":24,"target":107},{"source":107,"target":19},{"source":25,"target":0},{"source":25,"target":19},{"source":25,"target":108},{"source":108,"target":19},{"source":26,"target":0},{"source":26,"target":19},{"source":26,"target":109},{"source":109,"target":19},{"source":27,"target":0},{"source":27,"target":5},{"source":27,"target":110},{"source":27,"target":111},{"source":110,"target":5},{"source":110,"target":112},{"source":110,"target":27},{"source":112,"target":5},{"source":111,"target":5},{"source":28,"target":0},{"source":28,"target":27},{"source":28,"target":113},{"source":113,"target":27},{"source":29,"target":0},{"source":29,"target":114},{"source":114,"target":115},{"source":114,"target":29},{"source":30,"target":0},{"source":30,"target":27},{"source":30,"target":116},{"source":116,"target":27}],"multigraph":true} |
true | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="CarRental2" nsURI="CarRental2" nsPrefix="CarRental2">
<eClassifiers xsi:type="ecore:EClass" name="Person" abstract="true">
<eOperations name="fullname" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString">
<eParameters name="prefix" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eOperations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="firstname" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="lastname" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="age" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isMarried" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Customer" eSuperTypes="#//Person">
<eStructuralFeatures xsi:type="ecore:EReference" name="Booking_Rental" ordered="false"
upperBound="-1" eType="#//Rental" eOpposite="#//Rental/Booking_Customer"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="address" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Employee" eSuperTypes="#//Person">
<eOperations name="raiseSalary" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt">
<eParameters name="amount" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
</eOperations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="salary" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="Management_Branch_role_managedBranch"
ordered="false" eType="#//Branch" eOpposite="#//Branch/Management_Employee_role_manager"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="Employment_Branch_role_employer"
ordered="false" lowerBound="1" eType="#//Branch" eOpposite="#//Branch/Employment_Employee_role_employee"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Branch">
<eOperations name="rentalsForDate"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="Management_Employee_role_manager"
ordered="false" lowerBound="1" eType="#//Employee" eOpposite="#//Employee/Management_Branch_role_managedBranch"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="Employment_Employee_role_employee"
ordered="false" upperBound="-1" eType="#//Employee" eOpposite="#//Employee/Employment_Branch_role_employer"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="Fleet_Car" ordered="false"
upperBound="-1" eType="#//Car" eOpposite="#//Car/Fleet_Branch"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="Offers_CarGroup" ordered="false"
upperBound="-1" eType="#//CarGroup" eOpposite="#//CarGroup/Offers_Branch"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="Provider_Rental" ordered="false"
upperBound="-1" eType="#//Rental" eOpposite="#//Rental/Provider_Branch"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="location" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Rental">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="fromDate" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="untilDate" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="Booking_Customer" ordered="false"
lowerBound="1" eType="#//Customer" eOpposite="#//Customer/Booking_Rental"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="Provider_Branch" ordered="false"
lowerBound="1" eType="#//Branch" eOpposite="#//Branch/Provider_Rental"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="Reservation_CarGroup" ordered="false"
lowerBound="1" eType="#//CarGroup" eOpposite="#//CarGroup/Reservation_Rental"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="Assignment_Car" ordered="false"
eType="#//Car" eOpposite="#//Car/Assignment_Rental"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CarGroup">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="kind" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="Offers_Branch" ordered="false"
upperBound="-1" eType="#//Branch" eOpposite="#//Branch/Offers_CarGroup"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="Classification_Car" ordered="false"
upperBound="-1" eType="#//Car" eOpposite="#//Car/Classification_CarGroup"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="Reservation_Rental" ordered="false"
upperBound="-1" eType="#//Rental" eOpposite="#//Rental/Reservation_CarGroup"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="Quality_CarGroup_role_lower"
ordered="false" eType="#//CarGroup" eOpposite="#//CarGroup/Quality_CarGroup_role_higher"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="Quality_CarGroup_role_higher"
ordered="false" eType="#//CarGroup" eOpposite="#//CarGroup/Quality_CarGroup_role_lower"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Car">
<eOperations name="description" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="id" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="Fleet_Branch" ordered="false"
lowerBound="1" eType="#//Branch" eOpposite="#//Branch/Fleet_Car"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="Classification_CarGroup"
ordered="false" lowerBound="1" eType="#//CarGroup" eOpposite="#//CarGroup/Classification_Car"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="Assignment_Rental" ordered="false"
eType="#//Rental" eOpposite="#//Rental/Assignment_Car"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="toMaintenance" ordered="false"
upperBound="-1" eType="#//TernaryRelationMaintenance" eOpposite="#//TernaryRelationMaintenance/toCar"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ServiceDepot">
<eStructuralFeatures xsi:type="ecore:EReference" name="toMaintenance" ordered="false"
upperBound="-1" eType="#//TernaryRelationMaintenance" eOpposite="#//TernaryRelationMaintenance/toServiceDepot"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="location" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Check">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="description" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="toMaintenance" ordered="false"
upperBound="-1" eType="#//TernaryRelationMaintenance" eOpposite="#//TernaryRelationMaintenance/toCheck"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="TernaryRelationMaintenance">
<eStructuralFeatures xsi:type="ecore:EReference" name="toServiceDepot" ordered="false"
lowerBound="1" eType="#//ServiceDepot" eOpposite="#//ServiceDepot/toMaintenance"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="toCheck" ordered="false"
lowerBound="1" eType="#//Check" eOpposite="#//Check/toMaintenance"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="toCar" ordered="false"
lowerBound="1" eType="#//Car" eOpposite="#//Car/toMaintenance"/>
</eClassifiers>
</ecore:EPackage>
| github:ecore:/data/przigoda/model-finder/de.agra.emf.modelfinder.applications.debugging.tests/models/CarRental2.ecore | ecore | CarRental2
Person
fullname
prefix
firstname
lastname
age
isMarried
Customer
Booking_Rental
address
Employee
raiseSalary
amount
salary
Management_Branch_role_managedBranch
Employment_Branch_role_employer
Branch
rentalsForDate
Management_Employee_role_manager
Employment_Employee_role_employee
Fleet_Car
Offers_CarGroup
Provider_Rental
location
Rental
fromDate
untilDate
Booking_Customer
Provider_Branch
Reservation_CarGroup
Assignment_Car
CarGroup
kind
Offers_Branch
Classification_Car
Reservation_Rental
Quality_CarGroup_role_lower
Quality_CarGroup_role_higher
Car
description
id
Fleet_Branch
Classification_CarGroup
Assignment_Rental
toMaintenance
ServiceDepot
toMaintenance
location
Check
description
toMaintenance
TernaryRelationMaintenance
toServiceDepot
toCheck
toCar | null | {"directed":true,"nodes":[{"nsPrefix":"CarRental2","nsURI":"CarRental2","name":"CarRental2","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Person","instanceClass":null,"abstract":true,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Customer","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Employee","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Branch","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Rental","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CarGroup","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Car","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ServiceDepot","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Check","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TernaryRelationMaintenance","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"ordered":true,"upperBound":1,"unique":true,"name":"fullname","lowerBound":0,"id":11,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"firstname","changeable":true,"lowerBound":0,"iD":false,"id":12,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"lastname","changeable":true,"lowerBound":0,"iD":false,"id":13,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"age","changeable":true,"lowerBound":0,"iD":false,"id":14,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isMarried","changeable":true,"lowerBound":0,"iD":false,"id":15,"derived":false},{"id":16,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"prefix","lowerBound":0,"id":17,"many":false,"required":false,"eClass":"EParameter"},{"id":18,"eClass":"EGenericType"},{"id":19,"eClass":"EGenericType"},{"id":20,"eClass":"EGenericType"},{"id":21,"eClass":"EGenericType"},{"id":22,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"Booking_Rental","changeable":true,"resolveProxies":true,"lowerBound":0,"id":23,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"address","changeable":true,"lowerBound":0,"iD":false,"id":24,"derived":false},{"id":25,"eClass":"EGenericType"},{"id":26,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"Booking_Customer","changeable":true,"resolveProxies":true,"lowerBound":1,"id":27,"derived":false},{"id":28,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"raiseSalary","lowerBound":0,"id":29,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"salary","changeable":true,"lowerBound":0,"iD":false,"id":30,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"Management_Branch_role_managedBranch","changeable":true,"resolveProxies":true,"lowerBound":0,"id":31,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"Employment_Branch_role_employer","changeable":true,"resolveProxies":true,"lowerBound":1,"id":32,"derived":false},{"id":33,"eClass":"EGenericType"},{"id":34,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"amount","lowerBound":0,"id":35,"many":false,"required":false,"eClass":"EParameter"},{"id":36,"eClass":"EGenericType"},{"id":37,"eClass":"EGenericType"},{"id":38,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"Management_Employee_role_manager","changeable":true,"resolveProxies":true,"lowerBound":1,"id":39,"derived":false},{"id":40,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"Employment_Employee_role_employee","changeable":true,"resolveProxies":true,"lowerBound":0,"id":41,"derived":false},{"ordered":true,"upperBound":1,"unique":true,"name":"rentalsForDate","lowerBound":0,"id":42,"many":false,"required":false,"eClass":"EOperation"},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"Fleet_Car","changeable":true,"resolveProxies":true,"lowerBound":0,"id":43,"derived":false},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"Offers_CarGroup","changeable":true,"resolveProxies":true,"lowerBound":0,"id":44,"derived":false},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"Provider_Rental","changeable":true,"resolveProxies":true,"lowerBound":0,"id":45,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"location","changeable":true,"lowerBound":0,"iD":false,"id":46,"derived":false},{"id":47,"eClass":"EGenericType"},{"id":48,"eClass":"EGenericType"},{"id":49,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"Fleet_Branch","changeable":true,"resolveProxies":true,"lowerBound":1,"id":50,"derived":false},{"id":51,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"Offers_Branch","changeable":true,"resolveProxies":true,"lowerBound":0,"id":52,"derived":false},{"id":53,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"Provider_Branch","changeable":true,"resolveProxies":true,"lowerBound":1,"id":54,"derived":false},{"id":55,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"fromDate","changeable":true,"lowerBound":0,"iD":false,"id":56,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"untilDate","changeable":true,"lowerBound":0,"iD":false,"id":57,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"Reservation_CarGroup","changeable":true,"resolveProxies":true,"lowerBound":1,"id":58,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"Assignment_Car","changeable":true,"resolveProxies":true,"lowerBound":0,"id":59,"derived":false},{"id":60,"eClass":"EGenericType"},{"id":61,"eClass":"EGenericType"},{"id":62,"eClass":"EGenericType"},{"id":63,"eClass":"EGenericType"},{"id":64,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"Reservation_Rental","changeable":true,"resolveProxies":true,"lowerBound":0,"id":65,"derived":false},{"id":66,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"Assignment_Rental","changeable":true,"resolveProxies":true,"lowerBound":0,"id":67,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"kind","changeable":true,"lowerBound":0,"iD":false,"id":68,"derived":false},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"Classification_Car","changeable":true,"resolveProxies":true,"lowerBound":0,"id":69,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"Quality_CarGroup_role_lower","changeable":true,"resolveProxies":true,"lowerBound":0,"id":70,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"Quality_CarGroup_role_higher","changeable":true,"resolveProxies":true,"lowerBound":0,"id":71,"derived":false},{"id":72,"eClass":"EGenericType"},{"id":73,"eClass":"EGenericType"},{"id":74,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"Classification_CarGroup","changeable":true,"resolveProxies":true,"lowerBound":1,"id":75,"derived":false},{"id":76,"eClass":"EGenericType"},{"id":77,"eClass":"EGenericType"},{"id":78,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"description","lowerBound":0,"id":79,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"id","changeable":true,"lowerBound":0,"iD":false,"id":80,"derived":false},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"toMaintenance","changeable":true,"resolveProxies":true,"lowerBound":0,"id":81,"derived":false},{"id":82,"eClass":"EGenericType"},{"id":83,"eClass":"EGenericType"},{"id":84,"eClass":"EGenericType"},{"id":85,"eClass":"EGenericType"},{"id":86,"eClass":"EGenericType"},{"id":87,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"toCar","changeable":true,"resolveProxies":true,"lowerBound":1,"id":88,"derived":false},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"toMaintenance","changeable":true,"resolveProxies":true,"lowerBound":0,"id":89,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"location","changeable":true,"lowerBound":0,"iD":false,"id":90,"derived":false},{"id":91,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"toServiceDepot","changeable":true,"resolveProxies":true,"lowerBound":1,"id":92,"derived":false},{"id":93,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"description","changeable":true,"lowerBound":0,"iD":false,"id":94,"derived":false},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"toMaintenance","changeable":true,"resolveProxies":true,"lowerBound":0,"id":95,"derived":false},{"id":96,"eClass":"EGenericType"},{"id":97,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"toCheck","changeable":true,"resolveProxies":true,"lowerBound":1,"id":98,"derived":false},{"id":99,"eClass":"EGenericType"},{"id":100,"eClass":"EGenericType"},{"id":101,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":0,"target":8},{"source":0,"target":9},{"source":0,"target":10},{"source":1,"target":0},{"source":1,"target":11},{"source":1,"target":12},{"source":1,"target":13},{"source":1,"target":14},{"source":1,"target":15},{"source":11,"target":16},{"source":11,"target":1},{"source":11,"target":17},{"source":17,"target":18},{"source":17,"target":11},{"source":12,"target":19},{"source":12,"target":1},{"source":13,"target":20},{"source":13,"target":1},{"source":14,"target":21},{"source":14,"target":1},{"source":15,"target":22},{"source":15,"target":1},{"source":2,"target":0},{"source":2,"target":1},{"source":2,"target":23},{"source":2,"target":24},{"source":2,"target":25},{"source":23,"target":5},{"source":23,"target":26},{"source":23,"target":2},{"source":23,"target":27},{"source":26,"target":5},{"source":24,"target":28},{"source":24,"target":2},{"source":25,"target":1},{"source":3,"target":0},{"source":3,"target":1},{"source":3,"target":29},{"source":3,"target":30},{"source":3,"target":31},{"source":3,"target":32},{"source":3,"target":33},{"source":29,"target":34},{"source":29,"target":3},{"source":29,"target":35},{"source":35,"target":36},{"source":35,"target":29},{"source":30,"target":37},{"source":30,"target":3},{"source":31,"target":4},{"source":31,"target":38},{"source":31,"target":3},{"source":31,"target":39},{"source":38,"target":4},{"source":32,"target":4},{"source":32,"target":40},{"source":32,"target":3},{"source":32,"target":41},{"source":40,"target":4},{"source":33,"target":1},{"source":4,"target":0},{"source":4,"target":42},{"source":4,"target":39},{"source":4,"target":41},{"source":4,"target":43},{"source":4,"target":44},{"source":4,"target":45},{"source":4,"target":46},{"source":42,"target":4},{"source":39,"target":3},{"source":39,"target":47},{"source":39,"target":4},{"source":39,"target":31},{"source":47,"target":3},{"source":41,"target":3},{"source":41,"target":48},{"source":41,"target":4},{"source":41,"target":32},{"source":48,"target":3},{"source":43,"target":7},{"source":43,"target":49},{"source":43,"target":4},{"source":43,"target":50},{"source":49,"target":7},{"source":44,"target":6},{"source":44,"target":51},{"source":44,"target":4},{"source":44,"target":52},{"source":51,"target":6},{"source":45,"target":5},{"source":45,"target":53},{"source":45,"target":4},{"source":45,"target":54},{"source":53,"target":5},{"source":46,"target":55},{"source":46,"target":4},{"source":5,"target":0},{"source":5,"target":56},{"source":5,"target":57},{"source":5,"target":27},{"source":5,"target":54},{"source":5,"target":58},{"source":5,"target":59},{"source":56,"target":60},{"source":56,"target":5},{"source":57,"target":61},{"source":57,"target":5},{"source":27,"target":2},{"source":27,"target":62},{"source":27,"target":5},{"source":27,"target":23},{"source":62,"target":2},{"source":54,"target":4},{"source":54,"target":63},{"source":54,"target":5},{"source":54,"target":45},{"source":63,"target":4},{"source":58,"target":6},{"source":58,"target":64},{"source":58,"target":5},{"source":58,"target":65},{"source":64,"target":6},{"source":59,"target":7},{"source":59,"target":66},{"source":59,"target":5},{"source":59,"target":67},{"source":66,"target":7},{"source":6,"target":0},{"source":6,"target":68},{"source":6,"target":52},{"source":6,"target":69},{"source":6,"target":65},{"source":6,"target":70},{"source":6,"target":71},{"source":68,"target":72},{"source":68,"target":6},{"source":52,"target":4},{"source":52,"target":73},{"source":52,"target":6},{"source":52,"target":44},{"source":73,"target":4},{"source":69,"target":7},{"source":69,"target":74},{"source":69,"target":6},{"source":69,"target":75},{"source":74,"target":7},{"source":65,"target":5},{"source":65,"target":76},{"source":65,"target":6},{"source":65,"target":58},{"source":76,"target":5},{"source":70,"target":6},{"source":70,"target":77},{"source":70,"target":6},{"source":70,"target":71},{"source":77,"target":6},{"source":71,"target":6},{"source":71,"target":78},{"source":71,"target":6},{"source":71,"target":70},{"source":78,"target":6},{"source":7,"target":0},{"source":7,"target":79},{"source":7,"target":80},{"source":7,"target":50},{"source":7,"target":75},{"source":7,"target":67},{"source":7,"target":81},{"source":79,"target":82},{"source":79,"target":7},{"source":80,"target":83},{"source":80,"target":7},{"source":50,"target":4},{"source":50,"target":84},{"source":50,"target":7},{"source":50,"target":43},{"source":84,"target":4},{"source":75,"target":6},{"source":75,"target":85},{"source":75,"target":7},{"source":75,"target":69},{"source":85,"target":6},{"source":67,"target":5},{"source":67,"target":86},{"source":67,"target":7},{"source":67,"target":59},{"source":86,"target":5},{"source":81,"target":10},{"source":81,"target":87},{"source":81,"target":7},{"source":81,"target":88},{"source":87,"target":10},{"source":8,"target":0},{"source":8,"target":89},{"source":8,"target":90},{"source":89,"target":10},{"source":89,"target":91},{"source":89,"target":8},{"source":89,"target":92},{"source":91,"target":10},{"source":90,"target":93},{"source":90,"target":8},{"source":9,"target":0},{"source":9,"target":94},{"source":9,"target":95},{"source":94,"target":96},{"source":94,"target":9},{"source":95,"target":10},{"source":95,"target":97},{"source":95,"target":9},{"source":95,"target":98},{"source":97,"target":10},{"source":10,"target":0},{"source":10,"target":92},{"source":10,"target":98},{"source":10,"target":88},{"source":92,"target":8},{"source":92,"target":99},{"source":92,"target":10},{"source":92,"target":89},{"source":99,"target":8},{"source":98,"target":9},{"source":98,"target":100},{"source":98,"target":10},{"source":98,"target":95},{"source":100,"target":9},{"source":88,"target":7},{"source":88,"target":101},{"source":88,"target":10},{"source":88,"target":81},{"source":101,"target":7}],"multigraph":true} |
true | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="room" nsURI="http://www.eclipse.org/etrice/Room" nsPrefix="room">
<eClassifiers xsi:type="ecore:EClass" name="RoomModel">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="docu" eType="#//Documentation"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="imports" upperBound="-1"
eType="#//Import" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="primitiveTypes" upperBound="-1"
eType="#//PrimitiveType" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="externalTypes" upperBound="-1"
eType="#//ExternalType" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="dataClasses" upperBound="-1"
eType="#//DataClass" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="protocolClasses" upperBound="-1"
eType="#//GeneralProtocolClass" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="actorClasses" upperBound="-1"
eType="#//ActorClass" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="subSystemClasses" upperBound="-1"
eType="#//SubSystemClass" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="systems" upperBound="-1"
eType="#//LogicalSystem" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="RoomClass">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="docu" eType="#//Documentation"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="StructureClass" eSuperTypes="#//RoomClass">
<eStructuralFeatures xsi:type="ecore:EReference" name="annotations" upperBound="-1"
eType="#//Annotation" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="bindings" upperBound="-1"
eType="#//Binding" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="connections" upperBound="-1"
eType="#//LayerConnection" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ActorContainerClass" eSuperTypes="#//StructureClass">
<eStructuralFeatures xsi:type="ecore:EReference" name="ifSPPs" upperBound="-1"
eType="#//SPPRef" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="userCode1" eType="#//DetailCode"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="userCode2" eType="#//DetailCode"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="userCode3" eType="#//DetailCode"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="actorRefs" upperBound="-1"
eType="#//ActorRef" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="VarDecl">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="refType" eType="#//RefableType"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="RefableType">
<eStructuralFeatures xsi:type="ecore:EReference" name="type" eType="#//DataType"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="ref" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="LiteralType">
<eLiterals name="BOOL" literal="ptBoolean"/>
<eLiterals name="INT" value="1" literal="ptInteger"/>
<eLiterals name="REAL" value="2" literal="ptReal"/>
<eLiterals name="CHAR" value="3" literal="ptCharacter"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="DataType" eSuperTypes="#//RoomClass"/>
<eClassifiers xsi:type="ecore:EClass" name="ComplexType" eSuperTypes="#//DataType"/>
<eClassifiers xsi:type="ecore:EClass" name="PrimitiveType" eSuperTypes="#//DataType">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="type" eType="#//LiteralType"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="targetName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="castName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="defaultValueLiteral" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ExternalType" eSuperTypes="#//ComplexType">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="targetName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="DataClass" eSuperTypes="#//ComplexType">
<eStructuralFeatures xsi:type="ecore:EReference" name="base" eType="#//DataClass"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="annotations" upperBound="-1"
eType="#//Annotation" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="userCode1" eType="#//DetailCode"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="userCode2" eType="#//DetailCode"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="userCode3" eType="#//DetailCode"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="attributes" upperBound="-1"
eType="#//Attribute" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="operations" upperBound="-1"
eType="#//StandardOperation" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Attribute">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="size" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="refType" eType="#//RefableType"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="defaultValueLiteral" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="docu" eType="#//Documentation"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Operation">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="arguments" upperBound="-1"
eType="#//VarDecl" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="returntype" eType="#//RefableType"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="docu" eType="#//Documentation"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="detailCode" eType="#//DetailCode"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="StandardOperation" eSuperTypes="#//Operation">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="destructor" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="PortOperation" eSuperTypes="#//Operation">
<eStructuralFeatures xsi:type="ecore:EReference" name="sendsMsg" eType="#//Message"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="CommunicationType">
<eLiterals name="EVENT_DRIVEN" literal="eventdriven"/>
<eLiterals name="DATA_DRIVEN" value="1" literal="datadriven"/>
<eLiterals name="SYNCHRONOUS" value="2" literal="sync"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="GeneralProtocolClass" eSuperTypes="#//RoomClass">
<eStructuralFeatures xsi:type="ecore:EReference" name="annotations" upperBound="-1"
eType="#//Annotation" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ProtocolClass" eSuperTypes="#//GeneralProtocolClass">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="commType" eType="#//CommunicationType"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="base" eType="#//ProtocolClass"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="userCode1" eType="#//DetailCode"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="userCode2" eType="#//DetailCode"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="userCode3" eType="#//DetailCode"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="incomingMessages" upperBound="-1"
eType="#//Message" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="outgoingMessages" upperBound="-1"
eType="#//Message" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="regular" eType="#//PortClass"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="conjugate" eType="#//PortClass"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="semantics" eType="#//ProtocolSemantics"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CompoundProtocolClass" eSuperTypes="#//GeneralProtocolClass">
<eStructuralFeatures xsi:type="ecore:EReference" name="subProtocols" upperBound="-1"
eType="#//SubProtocol" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="SubProtocol">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="protocol" eType="#//GeneralProtocolClass"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Message">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="priv" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="data" eType="#//VarDecl"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="docu" eType="#//Documentation"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="PortClass">
<eStructuralFeatures xsi:type="ecore:EReference" name="userCode" eType="#//DetailCode"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="attributes" upperBound="-1"
eType="#//Attribute" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="operations" upperBound="-1"
eType="#//PortOperation" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="msgHandlers" upperBound="-1"
eType="#//MessageHandler" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="MessageHandler">
<eStructuralFeatures xsi:type="ecore:EReference" name="msg" eType="#//Message"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="detailCode" eType="#//DetailCode"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="InMessageHandler" eSuperTypes="#//MessageHandler"/>
<eClassifiers xsi:type="ecore:EClass" name="OutMessageHandler" eSuperTypes="#//MessageHandler"/>
<eClassifiers xsi:type="ecore:EClass" name="ProtocolSemantics">
<eStructuralFeatures xsi:type="ecore:EReference" name="rules" upperBound="-1"
eType="#//SemanticsRule" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="SemanticsRule">
<eStructuralFeatures xsi:type="ecore:EReference" name="msg" eType="#//Message"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="followUps" upperBound="-1"
eType="#//SemanticsRule" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="InSemanticsRule" eSuperTypes="#//SemanticsRule"/>
<eClassifiers xsi:type="ecore:EClass" name="OutSemanticsRule" eSuperTypes="#//SemanticsRule"/>
<eClassifiers xsi:type="ecore:EEnum" name="ActorCommunicationType">
<eLiterals name="EVENT_DRIVEN" literal="eventdriven"/>
<eLiterals name="DATA_DRIVEN" value="1" literal="datadriven"/>
<eLiterals name="ASYNCHRONOUS" value="2" literal="async"/>
<eLiterals name="SYNCHRONOUS" value="3" literal="sync"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ActorClass" eSuperTypes="#//ActorContainerClass">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="abstract" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="commType" eType="#//ActorCommunicationType"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="base" eType="#//ActorClass"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="ifPorts" upperBound="-1"
eType="#//Port" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="structureDocu" eType="#//Documentation"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="intPorts" upperBound="-1"
eType="#//Port" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="extPorts" upperBound="-1"
eType="#//ExternalPort" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="serviceImplementations"
upperBound="-1" eType="#//ServiceImplementation" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="strSAPs" upperBound="-1"
eType="#//SAPRef" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="attributes" upperBound="-1"
eType="#//Attribute" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="behaviorDocu" eType="#//Documentation"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="behaviorAnnotations" upperBound="-1"
eType="#//Annotation" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="operations" upperBound="-1"
eType="#//StandardOperation" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="stateMachine" eType="#//StateGraph"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="InterfaceItem">
<eOperations name="getGeneralProtocol" eType="#//GeneralProtocolClass">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="body" value="if (this instanceof org.eclipse.etrice.core.room.Port)
return ((org.eclipse.etrice.core.room.Port) this).getProtocol();
else if (this instanceof org.eclipse.etrice.core.room.SAPRef)
return ((org.eclipse.etrice.core.room.SAPRef) this).getProtocol();
else if (this instanceof org.eclipse.etrice.core.room.SPPRef)
return ((org.eclipse.etrice.core.room.SPPRef) this).getProtocol();return null;"/>
</eAnnotations>
</eOperations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Port" eSuperTypes="#//InterfaceItem">
<eOperations name="isReplicated" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="body" value="return multiplicity>1 || multiplicity==-1;"/>
</eAnnotations>
</eOperations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="conjugated" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="multiplicity" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"
defaultValueLiteral="1"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="protocol" eType="#//GeneralProtocolClass"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="docu" eType="#//Documentation"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ExternalPort">
<eStructuralFeatures xsi:type="ecore:EReference" name="ifport" eType="#//Port"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="SAPRef" eSuperTypes="#//InterfaceItem">
<eStructuralFeatures xsi:type="ecore:EReference" name="protocol" eType="#//ProtocolClass"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="SPPRef" eSuperTypes="#//InterfaceItem">
<eStructuralFeatures xsi:type="ecore:EReference" name="protocol" eType="#//ProtocolClass"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ServiceImplementation">
<eStructuralFeatures xsi:type="ecore:EReference" name="spp" eType="#//SPPRef"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="LogicalSystem" eSuperTypes="#//StructureClass">
<eStructuralFeatures xsi:type="ecore:EReference" name="subSystems" upperBound="-1"
eType="#//SubSystemRef" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ActorContainerRef">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="docu" eType="#//Documentation"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="SubSystemRef" eSuperTypes="#//ActorContainerRef">
<eStructuralFeatures xsi:type="ecore:EReference" name="type" eType="#//SubSystemClass"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="SubSystemClass" eSuperTypes="#//ActorContainerClass">
<eStructuralFeatures xsi:type="ecore:EReference" name="relayPorts" upperBound="-1"
eType="#//Port" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="threads" upperBound="-1"
eType="#//LogicalThread" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="LogicalThread">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="prio" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="instances" upperBound="-1"
eType="#//ActorInstancePath" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ActorInstancePath">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="segments" unique="false"
upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Binding">
<eStructuralFeatures xsi:type="ecore:EReference" name="endpoint1" eType="#//BindingEndPoint"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="endpoint2" eType="#//BindingEndPoint"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="BindingEndPoint">
<eStructuralFeatures xsi:type="ecore:EReference" name="actorRef" eType="#//ActorContainerRef"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="port" eType="#//Port"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="sub" eType="#//SubProtocol"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="LayerConnection">
<eStructuralFeatures xsi:type="ecore:EReference" name="from" eType="#//SAPoint"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="to" eType="#//SPPoint"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="SAPoint"/>
<eClassifiers xsi:type="ecore:EClass" name="RefSAPoint" eSuperTypes="#//SAPoint">
<eStructuralFeatures xsi:type="ecore:EReference" name="ref" eType="#//ActorContainerRef"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="RelaySAPoint" eSuperTypes="#//SAPoint">
<eStructuralFeatures xsi:type="ecore:EReference" name="relay" eType="#//SPPRef"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="SPPoint">
<eStructuralFeatures xsi:type="ecore:EReference" name="ref" eType="#//ActorContainerRef"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="service" eType="#//SPPRef"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ActorRef" eSuperTypes="#//ActorContainerRef">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="size" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"
defaultValueLiteral="1"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="type" eType="#//ActorClass"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="StateGraphNode" eSuperTypes="#//StateGraphItem"/>
<eClassifiers xsi:type="ecore:EClass" name="StateGraphItem">
<eOperations name="getName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="body" value="if (this instanceof org.eclipse.etrice.core.room.State) return ((org.eclipse.etrice.core.room.State)this).getName();
else if (this instanceof org.eclipse.etrice.core.room.TrPoint) return ((org.eclipse.etrice.core.room.TrPoint)this).getName();
else if (this instanceof org.eclipse.etrice.core.room.ChoicePoint) return ((org.eclipse.etrice.core.room.ChoicePoint)this).getName();
else if (this instanceof org.eclipse.etrice.core.room.Transition) return ((org.eclipse.etrice.core.room.Transition)this).getName();
return "";"/>
</eAnnotations>
</eOperations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="State" eSuperTypes="#//StateGraphNode">
<eOperations name="getName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="body" value="return (this instanceof org.eclipse.etrice.core.room.SimpleState)? ((org.eclipse.etrice.core.room.SimpleState)this).getName() :(this instanceof org.eclipse.etrice.core.room.RefinedState)? (((org.eclipse.etrice.core.room.RefinedState)this).getTarget()==null? "":((org.eclipse.etrice.core.room.RefinedState)this).getTarget().getName()) :"";"/>
</eAnnotations>
</eOperations>
<eStructuralFeatures xsi:type="ecore:EReference" name="docu" eType="#//Documentation"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="entryCode" eType="#//DetailCode"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="exitCode" eType="#//DetailCode"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="doCode" eType="#//DetailCode"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="subgraph" eType="#//StateGraph"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="StateGraph">
<eStructuralFeatures xsi:type="ecore:EReference" name="states" upperBound="-1"
eType="#//State" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="trPoints" upperBound="-1"
eType="#//TrPoint" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="chPoints" upperBound="-1"
eType="#//ChoicePoint" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="transitions" upperBound="-1"
eType="#//Transition" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="refinedTransitions" upperBound="-1"
eType="#//RefinedTransition" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="SimpleState" eSuperTypes="#//State">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="RefinedState" eSuperTypes="#//State">
<eStructuralFeatures xsi:type="ecore:EReference" name="target" eType="#//State"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="DetailCode">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="commands" unique="false"
upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="TrPoint" eSuperTypes="#//StateGraphNode">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="TransitionPoint" eSuperTypes="#//TrPoint">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="handler" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EntryPoint" eSuperTypes="#//TrPoint"/>
<eClassifiers xsi:type="ecore:EClass" name="ExitPoint" eSuperTypes="#//TrPoint"/>
<eClassifiers xsi:type="ecore:EClass" name="ChoicePoint" eSuperTypes="#//StateGraphNode">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="docu" eType="#//Documentation"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Transition" eSuperTypes="#//StateGraphItem">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="to" eType="#//TransitionTerminal"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="docu" eType="#//Documentation"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="action" eType="#//DetailCode"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="NonInitialTransition" eSuperTypes="#//Transition">
<eStructuralFeatures xsi:type="ecore:EReference" name="from" eType="#//TransitionTerminal"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="TransitionChainStartTransition" eSuperTypes="#//NonInitialTransition"/>
<eClassifiers xsi:type="ecore:EClass" name="InitialTransition" eSuperTypes="#//Transition"/>
<eClassifiers xsi:type="ecore:EClass" name="ContinuationTransition" eSuperTypes="#//NonInitialTransition"/>
<eClassifiers xsi:type="ecore:EClass" name="TriggeredTransition" eSuperTypes="#//TransitionChainStartTransition">
<eStructuralFeatures xsi:type="ecore:EReference" name="triggers" upperBound="-1"
eType="#//Trigger" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="GuardedTransition" eSuperTypes="#//TransitionChainStartTransition">
<eStructuralFeatures xsi:type="ecore:EReference" name="guard" eType="#//DetailCode"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CPBranchTransition" eSuperTypes="#//NonInitialTransition">
<eStructuralFeatures xsi:type="ecore:EReference" name="condition" eType="#//DetailCode"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="RefinedTransition">
<eStructuralFeatures xsi:type="ecore:EReference" name="target" eType="#//Transition"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="docu" eType="#//Documentation"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="action" eType="#//DetailCode"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="TransitionTerminal"/>
<eClassifiers xsi:type="ecore:EClass" name="StateTerminal" eSuperTypes="#//TransitionTerminal">
<eStructuralFeatures xsi:type="ecore:EReference" name="state" eType="#//State"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="TrPointTerminal" eSuperTypes="#//TransitionTerminal">
<eStructuralFeatures xsi:type="ecore:EReference" name="trPoint" eType="#//TrPoint"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="SubStateTrPointTerminal" eSuperTypes="#//TransitionTerminal">
<eStructuralFeatures xsi:type="ecore:EReference" name="trPoint" eType="#//TrPoint"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="state" eType="#//State"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ChoicepointTerminal" eSuperTypes="#//TransitionTerminal">
<eStructuralFeatures xsi:type="ecore:EReference" name="cp" eType="#//ChoicePoint"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Trigger">
<eStructuralFeatures xsi:type="ecore:EReference" name="msgFromIfPairs" upperBound="-1"
eType="#//MessageFromIf" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="guard" eType="#//Guard"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="MessageFromIf">
<eStructuralFeatures xsi:type="ecore:EReference" name="message" eType="#//Message"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="from" eType="#//InterfaceItem"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Guard">
<eStructuralFeatures xsi:type="ecore:EReference" name="guard" eType="#//DetailCode"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Documentation">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="text" unique="false" upperBound="-1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Annotation">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="attributes" upperBound="-1"
eType="#//KeyValue" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="KeyValue">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="key" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Import">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="importedNamespace" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="importURI" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
</ecore:EPackage>
| github:ecore:/data/KoheAsano/franca/plugins/org.franca.connectors.etrice/temp_room_model_to_view.ecore | ecore | room
RoomModel
name
docu
imports
primitiveTypes
externalTypes
dataClasses
protocolClasses
actorClasses
subSystemClasses
systems
RoomClass
name
docu
StructureClass
annotations
bindings
connections
ActorContainerClass
ifSPPs
userCode1
userCode2
userCode3
actorRefs
VarDecl
name
refType
RefableType
type
ref
LiteralType
BOOL
ptBoolean
INT
ptInteger
REAL
ptReal
CHAR
ptCharacter
DataType
ComplexType
PrimitiveType
type
targetName
castName
defaultValueLiteral
ExternalType
targetName
DataClass
base
annotations
userCode1
userCode2
userCode3
attributes
operations
Attribute
name
size
refType
defaultValueLiteral
docu
Operation
name
arguments
returntype
docu
detailCode
StandardOperation
destructor
PortOperation
sendsMsg
CommunicationType
EVENT_DRIVEN
eventdriven
DATA_DRIVEN
datadriven
SYNCHRONOUS
sync
GeneralProtocolClass
annotations
ProtocolClass
commType
base
userCode1
userCode2
userCode3
incomingMessages
outgoingMessages
regular
conjugate
semantics
CompoundProtocolClass
subProtocols
SubProtocol
name
protocol
Message
priv
name
data
docu
PortClass
userCode
attributes
operations
msgHandlers
MessageHandler
msg
detailCode
InMessageHandler
OutMessageHandler
ProtocolSemantics
rules
SemanticsRule
msg
followUps
InSemanticsRule
OutSemanticsRule
ActorCommunicationType
EVENT_DRIVEN
eventdriven
DATA_DRIVEN
datadriven
ASYNCHRONOUS
async
SYNCHRONOUS
sync
ActorClass
abstract
commType
base
ifPorts
structureDocu
intPorts
extPorts
serviceImplementations
strSAPs
attributes
behaviorDocu
behaviorAnnotations
operations
stateMachine
InterfaceItem
getGeneralProtocol
name
Port
isReplicated
conjugated
multiplicity
1
protocol
docu
ExternalPort
ifport
SAPRef
protocol
SPPRef
protocol
ServiceImplementation
spp
LogicalSystem
subSystems
ActorContainerRef
name
docu
SubSystemRef
type
SubSystemClass
relayPorts
threads
LogicalThread
name
prio
instances
ActorInstancePath
segments
Binding
endpoint1
endpoint2
BindingEndPoint
actorRef
port
sub
LayerConnection
from
to
SAPoint
RefSAPoint
ref
RelaySAPoint
relay
SPPoint
ref
service
ActorRef
size
1
type
StateGraphNode
StateGraphItem
getName
State
getName
docu
entryCode
exitCode
doCode
subgraph
StateGraph
states
trPoints
chPoints
transitions
refinedTransitions
SimpleState
name
RefinedState
target
DetailCode
commands
TrPoint
name
TransitionPoint
handler
EntryPoint
ExitPoint
ChoicePoint
name
docu
Transition
name
to
docu
action
NonInitialTransition
from
TransitionChainStartTransition
InitialTransition
ContinuationTransition
TriggeredTransition
triggers
GuardedTransition
guard
CPBranchTransition
condition
RefinedTransition
target
docu
action
TransitionTerminal
StateTerminal
state
TrPointTerminal
trPoint
SubStateTrPointTerminal
trPoint
state
ChoicepointTerminal
cp
Trigger
msgFromIfPairs
guard
MessageFromIf
message
from
Guard
guard
Documentation
text
Annotation
name
attributes
KeyValue
key
value
Import
importedNamespace
importURI | null | {"directed":true,"nodes":[{"nsPrefix":"room","nsURI":"http://www.eclipse.org/etrice/Room","name":"room","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RoomModel","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RoomClass","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StructureClass","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ActorContainerClass","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"VarDecl","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RefableType","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"LiteralType","instanceClass":null,"id":7,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DataType","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ComplexType","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PrimitiveType","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExternalType","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DataClass","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Attribute","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Operation","instanceClass":null,"abstract":false,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StandardOperation","instanceClass":null,"abstract":false,"id":15,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PortOperation","instanceClass":null,"abstract":false,"id":16,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"CommunicationType","instanceClass":null,"id":17,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"GeneralProtocolClass","instanceClass":null,"abstract":false,"id":18,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ProtocolClass","instanceClass":null,"abstract":false,"id":19,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CompoundProtocolClass","instanceClass":null,"abstract":false,"id":20,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SubProtocol","instanceClass":null,"abstract":false,"id":21,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Message","instanceClass":null,"abstract":false,"id":22,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PortClass","instanceClass":null,"abstract":false,"id":23,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MessageHandler","instanceClass":null,"abstract":false,"id":24,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InMessageHandler","instanceClass":null,"abstract":false,"id":25,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OutMessageHandler","instanceClass":null,"abstract":false,"id":26,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ProtocolSemantics","instanceClass":null,"abstract":false,"id":27,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SemanticsRule","instanceClass":null,"abstract":false,"id":28,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InSemanticsRule","instanceClass":null,"abstract":false,"id":29,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OutSemanticsRule","instanceClass":null,"abstract":false,"id":30,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"ActorCommunicationType","instanceClass":null,"id":31,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ActorClass","instanceClass":null,"abstract":false,"id":32,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InterfaceItem","instanceClass":null,"abstract":false,"id":33,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Port","instanceClass":null,"abstract":false,"id":34,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExternalPort","instanceClass":null,"abstract":false,"id":35,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SAPRef","instanceClass":null,"abstract":false,"id":36,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SPPRef","instanceClass":null,"abstract":false,"id":37,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ServiceImplementation","instanceClass":null,"abstract":false,"id":38,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LogicalSystem","instanceClass":null,"abstract":false,"id":39,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ActorContainerRef","instanceClass":null,"abstract":false,"id":40,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SubSystemRef","instanceClass":null,"abstract":false,"id":41,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SubSystemClass","instanceClass":null,"abstract":false,"id":42,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LogicalThread","instanceClass":null,"abstract":false,"id":43,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ActorInstancePath","instanceClass":null,"abstract":false,"id":44,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Binding","instanceClass":null,"abstract":false,"id":45,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BindingEndPoint","instanceClass":null,"abstract":false,"id":46,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LayerConnection","instanceClass":null,"abstract":false,"id":47,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SAPoint","instanceClass":null,"abstract":false,"id":48,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RefSAPoint","instanceClass":null,"abstract":false,"id":49,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RelaySAPoint","instanceClass":null,"abstract":false,"id":50,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SPPoint","instanceClass":null,"abstract":false,"id":51,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ActorRef","instanceClass":null,"abstract":false,"id":52,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StateGraphNode","instanceClass":null,"abstract":false,"id":53,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StateGraphItem","instanceClass":null,"abstract":false,"id":54,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"State","instanceClass":null,"abstract":false,"id":55,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StateGraph","instanceClass":null,"abstract":false,"id":56,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SimpleState","instanceClass":null,"abstract":false,"id":57,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RefinedState","instanceClass":null,"abstract":false,"id":58,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DetailCode","instanceClass":null,"abstract":false,"id":59,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TrPoint","instanceClass":null,"abstract":false,"id":60,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TransitionPoint","instanceClass":null,"abstract":false,"id":61,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EntryPoint","instanceClass":null,"abstract":false,"id":62,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExitPoint","instanceClass":null,"abstract":false,"id":63,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ChoicePoint","instanceClass":null,"abstract":false,"id":64,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Transition","instanceClass":null,"abstract":false,"id":65,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NonInitialTransition","instanceClass":null,"abstract":false,"id":66,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TransitionChainStartTransition","instanceClass":null,"abstract":false,"id":67,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InitialTransition","instanceClass":null,"abstract":false,"id":68,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ContinuationTransition","instanceClass":null,"abstract":false,"id":69,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TriggeredTransition","instanceClass":null,"abstract":false,"id":70,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"GuardedTransition","instanceClass":null,"abstract":false,"id":71,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CPBranchTransition","instanceClass":null,"abstract":false,"id":72,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RefinedTransition","instanceClass":null,"abstract":false,"id":73,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TransitionTerminal","instanceClass":null,"abstract":false,"id":74,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StateTerminal","instanceClass":null,"abstract":false,"id":75,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TrPointTerminal","instanceClass":null,"abstract":false,"id":76,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SubStateTrPointTerminal","instanceClass":null,"abstract":false,"id":77,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ChoicepointTerminal","instanceClass":null,"abstract":false,"id":78,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Trigger","instanceClass":null,"abstract":false,"id":79,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MessageFromIf","instanceClass":null,"abstract":false,"id":80,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Guard","instanceClass":null,"abstract":false,"id":81,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Documentation","instanceClass":null,"abstract":false,"id":82,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Annotation","instanceClass":null,"abstract":false,"id":83,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"KeyValue","instanceClass":null,"abstract":false,"id":84,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Import","instanceClass":null,"abstract":false,"id":85,"interface":false,"eClass":"EClass"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":86,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"docu","changeable":true,"resolveProxies":true,"lowerBound":0,"id":87,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"imports","changeable":true,"resolveProxies":true,"lowerBound":0,"id":88,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"primitiveTypes","changeable":true,"resolveProxies":true,"lowerBound":0,"id":89,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"externalTypes","changeable":true,"resolveProxies":true,"lowerBound":0,"id":90,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"dataClasses","changeable":true,"resolveProxies":true,"lowerBound":0,"id":91,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"protocolClasses","changeable":true,"resolveProxies":true,"lowerBound":0,"id":92,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"actorClasses","changeable":true,"resolveProxies":true,"lowerBound":0,"id":93,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"subSystemClasses","changeable":true,"resolveProxies":true,"lowerBound":0,"id":94,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"systems","changeable":true,"resolveProxies":true,"lowerBound":0,"id":95,"derived":false},{"id":96,"eClass":"EGenericType"},{"id":97,"eClass":"EGenericType"},{"id":98,"eClass":"EGenericType"},{"id":99,"eClass":"EGenericType"},{"id":100,"eClass":"EGenericType"},{"id":101,"eClass":"EGenericType"},{"id":102,"eClass":"EGenericType"},{"id":103,"eClass":"EGenericType"},{"id":104,"eClass":"EGenericType"},{"id":105,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":106,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"docu","changeable":true,"resolveProxies":true,"lowerBound":0,"id":107,"derived":false},{"id":108,"eClass":"EGenericType"},{"id":109,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"annotations","changeable":true,"resolveProxies":true,"lowerBound":0,"id":110,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"bindings","changeable":true,"resolveProxies":true,"lowerBound":0,"id":111,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"connections","changeable":true,"resolveProxies":true,"lowerBound":0,"id":112,"derived":false},{"id":113,"eClass":"EGenericType"},{"id":114,"eClass":"EGenericType"},{"id":115,"eClass":"EGenericType"},{"id":116,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"ifSPPs","changeable":true,"resolveProxies":true,"lowerBound":0,"id":117,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"userCode1","changeable":true,"resolveProxies":true,"lowerBound":0,"id":118,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"userCode2","changeable":true,"resolveProxies":true,"lowerBound":0,"id":119,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"userCode3","changeable":true,"resolveProxies":true,"lowerBound":0,"id":120,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"actorRefs","changeable":true,"resolveProxies":true,"lowerBound":0,"id":121,"derived":false},{"id":122,"eClass":"EGenericType"},{"id":123,"eClass":"EGenericType"},{"id":124,"eClass":"EGenericType"},{"id":125,"eClass":"EGenericType"},{"id":126,"eClass":"EGenericType"},{"id":127,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":128,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"refType","changeable":true,"resolveProxies":true,"lowerBound":0,"id":129,"derived":false},{"id":130,"eClass":"EGenericType"},{"id":131,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"resolveProxies":true,"lowerBound":0,"id":132,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"ref","changeable":true,"lowerBound":0,"iD":false,"id":133,"derived":false},{"id":134,"eClass":"EGenericType"},{"id":135,"eClass":"EGenericType"},{"name":"BOOL","id":136,"value":0,"literal":"ptBoolean","eClass":"EEnumLiteral"},{"name":"INT","id":137,"value":1,"literal":"ptInteger","eClass":"EEnumLiteral"},{"name":"REAL","id":138,"value":2,"literal":"ptReal","eClass":"EEnumLiteral"},{"name":"CHAR","id":139,"value":3,"literal":"ptCharacter","eClass":"EEnumLiteral"},{"id":140,"eClass":"EGenericType"},{"id":141,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"lowerBound":0,"iD":false,"id":142,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"targetName","changeable":true,"lowerBound":0,"iD":false,"id":143,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"castName","changeable":true,"lowerBound":0,"iD":false,"id":144,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"defaultValueLiteral","changeable":true,"lowerBound":0,"iD":false,"id":145,"derived":false},{"id":146,"eClass":"EGenericType"},{"id":147,"eClass":"EGenericType"},{"id":148,"eClass":"EGenericType"},{"id":149,"eClass":"EGenericType"},{"id":150,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"targetName","changeable":true,"lowerBound":0,"iD":false,"id":151,"derived":false},{"id":152,"eClass":"EGenericType"},{"id":153,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"base","changeable":true,"resolveProxies":true,"lowerBound":0,"id":154,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"annotations","changeable":true,"resolveProxies":true,"lowerBound":0,"id":155,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"userCode1","changeable":true,"resolveProxies":true,"lowerBound":0,"id":156,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"userCode2","changeable":true,"resolveProxies":true,"lowerBound":0,"id":157,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"userCode3","changeable":true,"resolveProxies":true,"lowerBound":0,"id":158,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"attributes","changeable":true,"resolveProxies":true,"lowerBound":0,"id":159,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"operations","changeable":true,"resolveProxies":true,"lowerBound":0,"id":160,"derived":false},{"id":161,"eClass":"EGenericType"},{"id":162,"eClass":"EGenericType"},{"id":163,"eClass":"EGenericType"},{"id":164,"eClass":"EGenericType"},{"id":165,"eClass":"EGenericType"},{"id":166,"eClass":"EGenericType"},{"id":167,"eClass":"EGenericType"},{"id":168,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":169,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"size","changeable":true,"lowerBound":0,"iD":false,"id":170,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"refType","changeable":true,"resolveProxies":true,"lowerBound":0,"id":171,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"defaultValueLiteral","changeable":true,"lowerBound":0,"iD":false,"id":172,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"docu","changeable":true,"resolveProxies":true,"lowerBound":0,"id":173,"derived":false},{"id":174,"eClass":"EGenericType"},{"id":175,"eClass":"EGenericType"},{"id":176,"eClass":"EGenericType"},{"id":177,"eClass":"EGenericType"},{"id":178,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":179,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"arguments","changeable":true,"resolveProxies":true,"lowerBound":0,"id":180,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"returntype","changeable":true,"resolveProxies":true,"lowerBound":0,"id":181,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"docu","changeable":true,"resolveProxies":true,"lowerBound":0,"id":182,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"detailCode","changeable":true,"resolveProxies":true,"lowerBound":0,"id":183,"derived":false},{"id":184,"eClass":"EGenericType"},{"id":185,"eClass":"EGenericType"},{"id":186,"eClass":"EGenericType"},{"id":187,"eClass":"EGenericType"},{"id":188,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"destructor","changeable":true,"lowerBound":0,"iD":false,"id":189,"derived":false},{"id":190,"eClass":"EGenericType"},{"id":191,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"sendsMsg","changeable":true,"resolveProxies":true,"lowerBound":0,"id":192,"derived":false},{"id":193,"eClass":"EGenericType"},{"id":194,"eClass":"EGenericType"},{"name":"EVENT_DRIVEN","id":195,"value":0,"literal":"eventdriven","eClass":"EEnumLiteral"},{"name":"DATA_DRIVEN","id":196,"value":1,"literal":"datadriven","eClass":"EEnumLiteral"},{"name":"SYNCHRONOUS","id":197,"value":2,"literal":"sync","eClass":"EEnumLiteral"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"annotations","changeable":true,"resolveProxies":true,"lowerBound":0,"id":198,"derived":false},{"id":199,"eClass":"EGenericType"},{"id":200,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"commType","changeable":true,"lowerBound":0,"iD":false,"id":201,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"base","changeable":true,"resolveProxies":true,"lowerBound":0,"id":202,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"userCode1","changeable":true,"resolveProxies":true,"lowerBound":0,"id":203,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"userCode2","changeable":true,"resolveProxies":true,"lowerBound":0,"id":204,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"userCode3","changeable":true,"resolveProxies":true,"lowerBound":0,"id":205,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"incomingMessages","changeable":true,"resolveProxies":true,"lowerBound":0,"id":206,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"outgoingMessages","changeable":true,"resolveProxies":true,"lowerBound":0,"id":207,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"regular","changeable":true,"resolveProxies":true,"lowerBound":0,"id":208,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"conjugate","changeable":true,"resolveProxies":true,"lowerBound":0,"id":209,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"semantics","changeable":true,"resolveProxies":true,"lowerBound":0,"id":210,"derived":false},{"id":211,"eClass":"EGenericType"},{"id":212,"eClass":"EGenericType"},{"id":213,"eClass":"EGenericType"},{"id":214,"eClass":"EGenericType"},{"id":215,"eClass":"EGenericType"},{"id":216,"eClass":"EGenericType"},{"id":217,"eClass":"EGenericType"},{"id":218,"eClass":"EGenericType"},{"id":219,"eClass":"EGenericType"},{"id":220,"eClass":"EGenericType"},{"id":221,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"subProtocols","changeable":true,"resolveProxies":true,"lowerBound":0,"id":222,"derived":false},{"id":223,"eClass":"EGenericType"},{"id":224,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":225,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"protocol","changeable":true,"resolveProxies":true,"lowerBound":0,"id":226,"derived":false},{"id":227,"eClass":"EGenericType"},{"id":228,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"priv","changeable":true,"lowerBound":0,"iD":false,"id":229,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":230,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"data","changeable":true,"resolveProxies":true,"lowerBound":0,"id":231,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"docu","changeable":true,"resolveProxies":true,"lowerBound":0,"id":232,"derived":false},{"id":233,"eClass":"EGenericType"},{"id":234,"eClass":"EGenericType"},{"id":235,"eClass":"EGenericType"},{"id":236,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"userCode","changeable":true,"resolveProxies":true,"lowerBound":0,"id":237,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"attributes","changeable":true,"resolveProxies":true,"lowerBound":0,"id":238,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"operations","changeable":true,"resolveProxies":true,"lowerBound":0,"id":239,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"msgHandlers","changeable":true,"resolveProxies":true,"lowerBound":0,"id":240,"derived":false},{"id":241,"eClass":"EGenericType"},{"id":242,"eClass":"EGenericType"},{"id":243,"eClass":"EGenericType"},{"id":244,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"msg","changeable":true,"resolveProxies":true,"lowerBound":0,"id":245,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"detailCode","changeable":true,"resolveProxies":true,"lowerBound":0,"id":246,"derived":false},{"id":247,"eClass":"EGenericType"},{"id":248,"eClass":"EGenericType"},{"id":249,"eClass":"EGenericType"},{"id":250,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"rules","changeable":true,"resolveProxies":true,"lowerBound":0,"id":251,"derived":false},{"id":252,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"msg","changeable":true,"resolveProxies":true,"lowerBound":0,"id":253,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"followUps","changeable":true,"resolveProxies":true,"lowerBound":0,"id":254,"derived":false},{"id":255,"eClass":"EGenericType"},{"id":256,"eClass":"EGenericType"},{"id":257,"eClass":"EGenericType"},{"id":258,"eClass":"EGenericType"},{"name":"EVENT_DRIVEN","id":259,"value":0,"literal":"eventdriven","eClass":"EEnumLiteral"},{"name":"DATA_DRIVEN","id":260,"value":1,"literal":"datadriven","eClass":"EEnumLiteral"},{"name":"ASYNCHRONOUS","id":261,"value":2,"literal":"async","eClass":"EEnumLiteral"},{"name":"SYNCHRONOUS","id":262,"value":3,"literal":"sync","eClass":"EEnumLiteral"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"abstract","changeable":true,"lowerBound":0,"iD":false,"id":263,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"commType","changeable":true,"lowerBound":0,"iD":false,"id":264,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"base","changeable":true,"resolveProxies":true,"lowerBound":0,"id":265,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"ifPorts","changeable":true,"resolveProxies":true,"lowerBound":0,"id":266,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"structureDocu","changeable":true,"resolveProxies":true,"lowerBound":0,"id":267,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"intPorts","changeable":true,"resolveProxies":true,"lowerBound":0,"id":268,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"extPorts","changeable":true,"resolveProxies":true,"lowerBound":0,"id":269,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"serviceImplementations","changeable":true,"resolveProxies":true,"lowerBound":0,"id":270,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"strSAPs","changeable":true,"resolveProxies":true,"lowerBound":0,"id":271,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"attributes","changeable":true,"resolveProxies":true,"lowerBound":0,"id":272,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"behaviorDocu","changeable":true,"resolveProxies":true,"lowerBound":0,"id":273,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"behaviorAnnotations","changeable":true,"resolveProxies":true,"lowerBound":0,"id":274,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"operations","changeable":true,"resolveProxies":true,"lowerBound":0,"id":275,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"stateMachine","changeable":true,"resolveProxies":true,"lowerBound":0,"id":276,"derived":false},{"id":277,"eClass":"EGenericType"},{"id":278,"eClass":"EGenericType"},{"id":279,"eClass":"EGenericType"},{"id":280,"eClass":"EGenericType"},{"id":281,"eClass":"EGenericType"},{"id":282,"eClass":"EGenericType"},{"id":283,"eClass":"EGenericType"},{"id":284,"eClass":"EGenericType"},{"id":285,"eClass":"EGenericType"},{"id":286,"eClass":"EGenericType"},{"id":287,"eClass":"EGenericType"},{"id":288,"eClass":"EGenericType"},{"id":289,"eClass":"EGenericType"},{"id":290,"eClass":"EGenericType"},{"id":291,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"getGeneralProtocol","lowerBound":0,"id":292,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":293,"derived":false},{"id":294,"eClass":"EGenericType"},{"id":295,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"isReplicated","lowerBound":0,"id":296,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"conjugated","changeable":true,"lowerBound":0,"iD":false,"id":297,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"1","unsettable":false,"transient":false,"unique":true,"name":"multiplicity","changeable":true,"lowerBound":0,"iD":false,"id":298,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"protocol","changeable":true,"resolveProxies":true,"lowerBound":0,"id":299,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"docu","changeable":true,"resolveProxies":true,"lowerBound":0,"id":300,"derived":false},{"id":301,"eClass":"EGenericType"},{"id":302,"eClass":"EGenericType"},{"id":303,"eClass":"EGenericType"},{"id":304,"eClass":"EGenericType"},{"id":305,"eClass":"EGenericType"},{"id":306,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"ifport","changeable":true,"resolveProxies":true,"lowerBound":0,"id":307,"derived":false},{"id":308,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"protocol","changeable":true,"resolveProxies":true,"lowerBound":0,"id":309,"derived":false},{"id":310,"eClass":"EGenericType"},{"id":311,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"protocol","changeable":true,"resolveProxies":true,"lowerBound":0,"id":312,"derived":false},{"id":313,"eClass":"EGenericType"},{"id":314,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"spp","changeable":true,"resolveProxies":true,"lowerBound":0,"id":315,"derived":false},{"id":316,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"subSystems","changeable":true,"resolveProxies":true,"lowerBound":0,"id":317,"derived":false},{"id":318,"eClass":"EGenericType"},{"id":319,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":320,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"docu","changeable":true,"resolveProxies":true,"lowerBound":0,"id":321,"derived":false},{"id":322,"eClass":"EGenericType"},{"id":323,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"resolveProxies":true,"lowerBound":0,"id":324,"derived":false},{"id":325,"eClass":"EGenericType"},{"id":326,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"relayPorts","changeable":true,"resolveProxies":true,"lowerBound":0,"id":327,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"threads","changeable":true,"resolveProxies":true,"lowerBound":0,"id":328,"derived":false},{"id":329,"eClass":"EGenericType"},{"id":330,"eClass":"EGenericType"},{"id":331,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":332,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"prio","changeable":true,"lowerBound":0,"iD":false,"id":333,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"instances","changeable":true,"resolveProxies":true,"lowerBound":0,"id":334,"derived":false},{"id":335,"eClass":"EGenericType"},{"id":336,"eClass":"EGenericType"},{"id":337,"eClass":"EGenericType"},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"segments","changeable":true,"lowerBound":0,"iD":false,"id":338,"derived":false},{"id":339,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"endpoint1","changeable":true,"resolveProxies":true,"lowerBound":0,"id":340,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"endpoint2","changeable":true,"resolveProxies":true,"lowerBound":0,"id":341,"derived":false},{"id":342,"eClass":"EGenericType"},{"id":343,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"actorRef","changeable":true,"resolveProxies":true,"lowerBound":0,"id":344,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"port","changeable":true,"resolveProxies":true,"lowerBound":0,"id":345,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"sub","changeable":true,"resolveProxies":true,"lowerBound":0,"id":346,"derived":false},{"id":347,"eClass":"EGenericType"},{"id":348,"eClass":"EGenericType"},{"id":349,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"from","changeable":true,"resolveProxies":true,"lowerBound":0,"id":350,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"to","changeable":true,"resolveProxies":true,"lowerBound":0,"id":351,"derived":false},{"id":352,"eClass":"EGenericType"},{"id":353,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"ref","changeable":true,"resolveProxies":true,"lowerBound":0,"id":354,"derived":false},{"id":355,"eClass":"EGenericType"},{"id":356,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"relay","changeable":true,"resolveProxies":true,"lowerBound":0,"id":357,"derived":false},{"id":358,"eClass":"EGenericType"},{"id":359,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"ref","changeable":true,"resolveProxies":true,"lowerBound":0,"id":360,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"service","changeable":true,"resolveProxies":true,"lowerBound":0,"id":361,"derived":false},{"id":362,"eClass":"EGenericType"},{"id":363,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"1","unsettable":false,"transient":false,"unique":true,"name":"size","changeable":true,"lowerBound":0,"iD":false,"id":364,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"resolveProxies":true,"lowerBound":0,"id":365,"derived":false},{"id":366,"eClass":"EGenericType"},{"id":367,"eClass":"EGenericType"},{"id":368,"eClass":"EGenericType"},{"id":369,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"getName","lowerBound":0,"id":370,"many":false,"required":false,"eClass":"EOperation"},{"id":371,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"getName","lowerBound":0,"id":372,"many":false,"required":false,"eClass":"EOperation"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"docu","changeable":true,"resolveProxies":true,"lowerBound":0,"id":373,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"entryCode","changeable":true,"resolveProxies":true,"lowerBound":0,"id":374,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"exitCode","changeable":true,"resolveProxies":true,"lowerBound":0,"id":375,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"doCode","changeable":true,"resolveProxies":true,"lowerBound":0,"id":376,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"subgraph","changeable":true,"resolveProxies":true,"lowerBound":0,"id":377,"derived":false},{"id":378,"eClass":"EGenericType"},{"id":379,"eClass":"EGenericType"},{"id":380,"eClass":"EGenericType"},{"id":381,"eClass":"EGenericType"},{"id":382,"eClass":"EGenericType"},{"id":383,"eClass":"EGenericType"},{"id":384,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"states","changeable":true,"resolveProxies":true,"lowerBound":0,"id":385,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"trPoints","changeable":true,"resolveProxies":true,"lowerBound":0,"id":386,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"chPoints","changeable":true,"resolveProxies":true,"lowerBound":0,"id":387,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"transitions","changeable":true,"resolveProxies":true,"lowerBound":0,"id":388,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"refinedTransitions","changeable":true,"resolveProxies":true,"lowerBound":0,"id":389,"derived":false},{"id":390,"eClass":"EGenericType"},{"id":391,"eClass":"EGenericType"},{"id":392,"eClass":"EGenericType"},{"id":393,"eClass":"EGenericType"},{"id":394,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":395,"derived":false},{"id":396,"eClass":"EGenericType"},{"id":397,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"target","changeable":true,"resolveProxies":true,"lowerBound":0,"id":398,"derived":false},{"id":399,"eClass":"EGenericType"},{"id":400,"eClass":"EGenericType"},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"commands","changeable":true,"lowerBound":0,"iD":false,"id":401,"derived":false},{"id":402,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":403,"derived":false},{"id":404,"eClass":"EGenericType"},{"id":405,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"handler","changeable":true,"lowerBound":0,"iD":false,"id":406,"derived":false},{"id":407,"eClass":"EGenericType"},{"id":408,"eClass":"EGenericType"},{"id":409,"eClass":"EGenericType"},{"id":410,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":411,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"docu","changeable":true,"resolveProxies":true,"lowerBound":0,"id":412,"derived":false},{"id":413,"eClass":"EGenericType"},{"id":414,"eClass":"EGenericType"},{"id":415,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":416,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"to","changeable":true,"resolveProxies":true,"lowerBound":0,"id":417,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"docu","changeable":true,"resolveProxies":true,"lowerBound":0,"id":418,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"action","changeable":true,"resolveProxies":true,"lowerBound":0,"id":419,"derived":false},{"id":420,"eClass":"EGenericType"},{"id":421,"eClass":"EGenericType"},{"id":422,"eClass":"EGenericType"},{"id":423,"eClass":"EGenericType"},{"id":424,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"from","changeable":true,"resolveProxies":true,"lowerBound":0,"id":425,"derived":false},{"id":426,"eClass":"EGenericType"},{"id":427,"eClass":"EGenericType"},{"id":428,"eClass":"EGenericType"},{"id":429,"eClass":"EGenericType"},{"id":430,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"triggers","changeable":true,"resolveProxies":true,"lowerBound":0,"id":431,"derived":false},{"id":432,"eClass":"EGenericType"},{"id":433,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"guard","changeable":true,"resolveProxies":true,"lowerBound":0,"id":434,"derived":false},{"id":435,"eClass":"EGenericType"},{"id":436,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"condition","changeable":true,"resolveProxies":true,"lowerBound":0,"id":437,"derived":false},{"id":438,"eClass":"EGenericType"},{"id":439,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"target","changeable":true,"resolveProxies":true,"lowerBound":0,"id":440,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"docu","changeable":true,"resolveProxies":true,"lowerBound":0,"id":441,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"action","changeable":true,"resolveProxies":true,"lowerBound":0,"id":442,"derived":false},{"id":443,"eClass":"EGenericType"},{"id":444,"eClass":"EGenericType"},{"id":445,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"state","changeable":true,"resolveProxies":true,"lowerBound":0,"id":446,"derived":false},{"id":447,"eClass":"EGenericType"},{"id":448,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"trPoint","changeable":true,"resolveProxies":true,"lowerBound":0,"id":449,"derived":false},{"id":450,"eClass":"EGenericType"},{"id":451,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"trPoint","changeable":true,"resolveProxies":true,"lowerBound":0,"id":452,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"state","changeable":true,"resolveProxies":true,"lowerBound":0,"id":453,"derived":false},{"id":454,"eClass":"EGenericType"},{"id":455,"eClass":"EGenericType"},{"id":456,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"cp","changeable":true,"resolveProxies":true,"lowerBound":0,"id":457,"derived":false},{"id":458,"eClass":"EGenericType"},{"id":459,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"msgFromIfPairs","changeable":true,"resolveProxies":true,"lowerBound":0,"id":460,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"guard","changeable":true,"resolveProxies":true,"lowerBound":0,"id":461,"derived":false},{"id":462,"eClass":"EGenericType"},{"id":463,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"message","changeable":true,"resolveProxies":true,"lowerBound":0,"id":464,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"from","changeable":true,"resolveProxies":true,"lowerBound":0,"id":465,"derived":false},{"id":466,"eClass":"EGenericType"},{"id":467,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"guard","changeable":true,"resolveProxies":true,"lowerBound":0,"id":468,"derived":false},{"id":469,"eClass":"EGenericType"},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"text","changeable":true,"lowerBound":0,"iD":false,"id":470,"derived":false},{"id":471,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":472,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"attributes","changeable":true,"resolveProxies":true,"lowerBound":0,"id":473,"derived":false},{"id":474,"eClass":"EGenericType"},{"id":475,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"key","changeable":true,"lowerBound":0,"iD":false,"id":476,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":0,"iD":false,"id":477,"derived":false},{"id":478,"eClass":"EGenericType"},{"id":479,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"importedNamespace","changeable":true,"lowerBound":0,"iD":false,"id":480,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"importURI","changeable":true,"lowerBound":0,"iD":false,"id":481,"derived":false},{"id":482,"eClass":"EGenericType"},{"id":483,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":0,"target":8},{"source":0,"target":9},{"source":0,"target":10},{"source":0,"target":11},{"source":0,"target":12},{"source":0,"target":13},{"source":0,"target":14},{"source":0,"target":15},{"source":0,"target":16},{"source":0,"target":17},{"source":0,"target":18},{"source":0,"target":19},{"source":0,"target":20},{"source":0,"target":21},{"source":0,"target":22},{"source":0,"target":23},{"source":0,"target":24},{"source":0,"target":25},{"source":0,"target":26},{"source":0,"target":27},{"source":0,"target":28},{"source":0,"target":29},{"source":0,"target":30},{"source":0,"target":31},{"source":0,"target":32},{"source":0,"target":33},{"source":0,"target":34},{"source":0,"target":35},{"source":0,"target":36},{"source":0,"target":37},{"source":0,"target":38},{"source":0,"target":39},{"source":0,"target":40},{"source":0,"target":41},{"source":0,"target":42},{"source":0,"target":43},{"source":0,"target":44},{"source":0,"target":45},{"source":0,"target":46},{"source":0,"target":47},{"source":0,"target":48},{"source":0,"target":49},{"source":0,"target":50},{"source":0,"target":51},{"source":0,"target":52},{"source":0,"target":53},{"source":0,"target":54},{"source":0,"target":55},{"source":0,"target":56},{"source":0,"target":57},{"source":0,"target":58},{"source":0,"target":59},{"source":0,"target":60},{"source":0,"target":61},{"source":0,"target":62},{"source":0,"target":63},{"source":0,"target":64},{"source":0,"target":65},{"source":0,"target":66},{"source":0,"target":67},{"source":0,"target":68},{"source":0,"target":69},{"source":0,"target":70},{"source":0,"target":71},{"source":0,"target":72},{"source":0,"target":73},{"source":0,"target":74},{"source":0,"target":75},{"source":0,"target":76},{"source":0,"target":77},{"source":0,"target":78},{"source":0,"target":79},{"source":0,"target":80},{"source":0,"target":81},{"source":0,"target":82},{"source":0,"target":83},{"source":0,"target":84},{"source":0,"target":85},{"source":1,"target":0},{"source":1,"target":86},{"source":1,"target":87},{"source":1,"target":88},{"source":1,"target":89},{"source":1,"target":90},{"source":1,"target":91},{"source":1,"target":92},{"source":1,"target":93},{"source":1,"target":94},{"source":1,"target":95},{"source":86,"target":96},{"source":86,"target":1},{"source":87,"target":82},{"source":87,"target":97},{"source":87,"target":1},{"source":97,"target":82},{"source":88,"target":85},{"source":88,"target":98},{"source":88,"target":1},{"source":98,"target":85},{"source":89,"target":10},{"source":89,"target":99},{"source":89,"target":1},{"source":99,"target":10},{"source":90,"target":11},{"source":90,"target":100},{"source":90,"target":1},{"source":100,"target":11},{"source":91,"target":12},{"source":91,"target":101},{"source":91,"target":1},{"source":101,"target":12},{"source":92,"target":18},{"source":92,"target":102},{"source":92,"target":1},{"source":102,"target":18},{"source":93,"target":32},{"source":93,"target":103},{"source":93,"target":1},{"source":103,"target":32},{"source":94,"target":42},{"source":94,"target":104},{"source":94,"target":1},{"source":104,"target":42},{"source":95,"target":39},{"source":95,"target":105},{"source":95,"target":1},{"source":105,"target":39},{"source":2,"target":0},{"source":2,"target":106},{"source":2,"target":107},{"source":106,"target":108},{"source":106,"target":2},{"source":107,"target":82},{"source":107,"target":109},{"source":107,"target":2},{"source":109,"target":82},{"source":3,"target":0},{"source":3,"target":2},{"source":3,"target":110},{"source":3,"target":111},{"source":3,"target":112},{"source":3,"target":113},{"source":110,"target":83},{"source":110,"target":114},{"source":110,"target":3},{"source":114,"target":83},{"source":111,"target":45},{"source":111,"target":115},{"source":111,"target":3},{"source":115,"target":45},{"source":112,"target":47},{"source":112,"target":116},{"source":112,"target":3},{"source":116,"target":47},{"source":113,"target":2},{"source":4,"target":0},{"source":4,"target":3},{"source":4,"target":117},{"source":4,"target":118},{"source":4,"target":119},{"source":4,"target":120},{"source":4,"target":121},{"source":4,"target":122},{"source":117,"target":37},{"source":117,"target":123},{"source":117,"target":4},{"source":123,"target":37},{"source":118,"target":59},{"source":118,"target":124},{"source":118,"target":4},{"source":124,"target":59},{"source":119,"target":59},{"source":119,"target":125},{"source":119,"target":4},{"source":125,"target":59},{"source":120,"target":59},{"source":120,"target":126},{"source":120,"target":4},{"source":126,"target":59},{"source":121,"target":52},{"source":121,"target":127},{"source":121,"target":4},{"source":127,"target":52},{"source":122,"target":3},{"source":5,"target":0},{"source":5,"target":128},{"source":5,"target":129},{"source":128,"target":130},{"source":128,"target":5},{"source":129,"target":6},{"source":129,"target":131},{"source":129,"target":5},{"source":131,"target":6},{"source":6,"target":0},{"source":6,"target":132},{"source":6,"target":133},{"source":132,"target":8},{"source":132,"target":134},{"source":132,"target":6},{"source":134,"target":8},{"source":133,"target":135},{"source":133,"target":6},{"source":7,"target":0},{"source":7,"target":136},{"source":7,"target":137},{"source":7,"target":138},{"source":7,"target":139},{"source":136,"target":7},{"source":137,"target":7},{"source":138,"target":7},{"source":139,"target":7},{"source":8,"target":0},{"source":8,"target":2},{"source":8,"target":140},{"source":140,"target":2},{"source":9,"target":0},{"source":9,"target":8},{"source":9,"target":141},{"source":141,"target":8},{"source":10,"target":0},{"source":10,"target":8},{"source":10,"target":142},{"source":10,"target":143},{"source":10,"target":144},{"source":10,"target":145},{"source":10,"target":146},{"source":142,"target":7},{"source":142,"target":147},{"source":142,"target":10},{"source":147,"target":7},{"source":143,"target":148},{"source":143,"target":10},{"source":144,"target":149},{"source":144,"target":10},{"source":145,"target":150},{"source":145,"target":10},{"source":146,"target":8},{"source":11,"target":0},{"source":11,"target":9},{"source":11,"target":151},{"source":11,"target":152},{"source":151,"target":153},{"source":151,"target":11},{"source":152,"target":9},{"source":12,"target":0},{"source":12,"target":9},{"source":12,"target":154},{"source":12,"target":155},{"source":12,"target":156},{"source":12,"target":157},{"source":12,"target":158},{"source":12,"target":159},{"source":12,"target":160},{"source":12,"target":161},{"source":154,"target":12},{"source":154,"target":162},{"source":154,"target":12},{"source":162,"target":12},{"source":155,"target":83},{"source":155,"target":163},{"source":155,"target":12},{"source":163,"target":83},{"source":156,"target":59},{"source":156,"target":164},{"source":156,"target":12},{"source":164,"target":59},{"source":157,"target":59},{"source":157,"target":165},{"source":157,"target":12},{"source":165,"target":59},{"source":158,"target":59},{"source":158,"target":166},{"source":158,"target":12},{"source":166,"target":59},{"source":159,"target":13},{"source":159,"target":167},{"source":159,"target":12},{"source":167,"target":13},{"source":160,"target":15},{"source":160,"target":168},{"source":160,"target":12},{"source":168,"target":15},{"source":161,"target":9},{"source":13,"target":0},{"source":13,"target":169},{"source":13,"target":170},{"source":13,"target":171},{"source":13,"target":172},{"source":13,"target":173},{"source":169,"target":174},{"source":169,"target":13},{"source":170,"target":175},{"source":170,"target":13},{"source":171,"target":6},{"source":171,"target":176},{"source":171,"target":13},{"source":176,"target":6},{"source":172,"target":177},{"source":172,"target":13},{"source":173,"target":82},{"source":173,"target":178},{"source":173,"target":13},{"source":178,"target":82},{"source":14,"target":0},{"source":14,"target":179},{"source":14,"target":180},{"source":14,"target":181},{"source":14,"target":182},{"source":14,"target":183},{"source":179,"target":184},{"source":179,"target":14},{"source":180,"target":5},{"source":180,"target":185},{"source":180,"target":14},{"source":185,"target":5},{"source":181,"target":6},{"source":181,"target":186},{"source":181,"target":14},{"source":186,"target":6},{"source":182,"target":82},{"source":182,"target":187},{"source":182,"target":14},{"source":187,"target":82},{"source":183,"target":59},{"source":183,"target":188},{"source":183,"target":14},{"source":188,"target":59},{"source":15,"target":0},{"source":15,"target":14},{"source":15,"target":189},{"source":15,"target":190},{"source":189,"target":191},{"source":189,"target":15},{"source":190,"target":14},{"source":16,"target":0},{"source":16,"target":14},{"source":16,"target":192},{"source":16,"target":193},{"source":192,"target":22},{"source":192,"target":194},{"source":192,"target":16},{"source":194,"target":22},{"source":193,"target":14},{"source":17,"target":0},{"source":17,"target":195},{"source":17,"target":196},{"source":17,"target":197},{"source":195,"target":17},{"source":196,"target":17},{"source":197,"target":17},{"source":18,"target":0},{"source":18,"target":2},{"source":18,"target":198},{"source":18,"target":199},{"source":198,"target":83},{"source":198,"target":200},{"source":198,"target":18},{"source":200,"target":83},{"source":199,"target":2},{"source":19,"target":0},{"source":19,"target":18},{"source":19,"target":201},{"source":19,"target":202},{"source":19,"target":203},{"source":19,"target":204},{"source":19,"target":205},{"source":19,"target":206},{"source":19,"target":207},{"source":19,"target":208},{"source":19,"target":209},{"source":19,"target":210},{"source":19,"target":211},{"source":201,"target":17},{"source":201,"target":212},{"source":201,"target":19},{"source":212,"target":17},{"source":202,"target":19},{"source":202,"target":213},{"source":202,"target":19},{"source":213,"target":19},{"source":203,"target":59},{"source":203,"target":214},{"source":203,"target":19},{"source":214,"target":59},{"source":204,"target":59},{"source":204,"target":215},{"source":204,"target":19},{"source":215,"target":59},{"source":205,"target":59},{"source":205,"target":216},{"source":205,"target":19},{"source":216,"target":59},{"source":206,"target":22},{"source":206,"target":217},{"source":206,"target":19},{"source":217,"target":22},{"source":207,"target":22},{"source":207,"target":218},{"source":207,"target":19},{"source":218,"target":22},{"source":208,"target":23},{"source":208,"target":219},{"source":208,"target":19},{"source":219,"target":23},{"source":209,"target":23},{"source":209,"target":220},{"source":209,"target":19},{"source":220,"target":23},{"source":210,"target":27},{"source":210,"target":221},{"source":210,"target":19},{"source":221,"target":27},{"source":211,"target":18},{"source":20,"target":0},{"source":20,"target":18},{"source":20,"target":222},{"source":20,"target":223},{"source":222,"target":21},{"source":222,"target":224},{"source":222,"target":20},{"source":224,"target":21},{"source":223,"target":18},{"source":21,"target":0},{"source":21,"target":225},{"source":21,"target":226},{"source":225,"target":227},{"source":225,"target":21},{"source":226,"target":18},{"source":226,"target":228},{"source":226,"target":21},{"source":228,"target":18},{"source":22,"target":0},{"source":22,"target":229},{"source":22,"target":230},{"source":22,"target":231},{"source":22,"target":232},{"source":229,"target":233},{"source":229,"target":22},{"source":230,"target":234},{"source":230,"target":22},{"source":231,"target":5},{"source":231,"target":235},{"source":231,"target":22},{"source":235,"target":5},{"source":232,"target":82},{"source":232,"target":236},{"source":232,"target":22},{"source":236,"target":82},{"source":23,"target":0},{"source":23,"target":237},{"source":23,"target":238},{"source":23,"target":239},{"source":23,"target":240},{"source":237,"target":59},{"source":237,"target":241},{"source":237,"target":23},{"source":241,"target":59},{"source":238,"target":13},{"source":238,"target":242},{"source":238,"target":23},{"source":242,"target":13},{"source":239,"target":16},{"source":239,"target":243},{"source":239,"target":23},{"source":243,"target":16},{"source":240,"target":24},{"source":240,"target":244},{"source":240,"target":23},{"source":244,"target":24},{"source":24,"target":0},{"source":24,"target":245},{"source":24,"target":246},{"source":245,"target":22},{"source":245,"target":247},{"source":245,"target":24},{"source":247,"target":22},{"source":246,"target":59},{"source":246,"target":248},{"source":246,"target":24},{"source":248,"target":59},{"source":25,"target":0},{"source":25,"target":24},{"source":25,"target":249},{"source":249,"target":24},{"source":26,"target":0},{"source":26,"target":24},{"source":26,"target":250},{"source":250,"target":24},{"source":27,"target":0},{"source":27,"target":251},{"source":251,"target":28},{"source":251,"target":252},{"source":251,"target":27},{"source":252,"target":28},{"source":28,"target":0},{"source":28,"target":253},{"source":28,"target":254},{"source":253,"target":22},{"source":253,"target":255},{"source":253,"target":28},{"source":255,"target":22},{"source":254,"target":28},{"source":254,"target":256},{"source":254,"target":28},{"source":256,"target":28},{"source":29,"target":0},{"source":29,"target":28},{"source":29,"target":257},{"source":257,"target":28},{"source":30,"target":0},{"source":30,"target":28},{"source":30,"target":258},{"source":258,"target":28},{"source":31,"target":0},{"source":31,"target":259},{"source":31,"target":260},{"source":31,"target":261},{"source":31,"target":262},{"source":259,"target":31},{"source":260,"target":31},{"source":261,"target":31},{"source":262,"target":31},{"source":32,"target":0},{"source":32,"target":4},{"source":32,"target":263},{"source":32,"target":264},{"source":32,"target":265},{"source":32,"target":266},{"source":32,"target":267},{"source":32,"target":268},{"source":32,"target":269},{"source":32,"target":270},{"source":32,"target":271},{"source":32,"target":272},{"source":32,"target":273},{"source":32,"target":274},{"source":32,"target":275},{"source":32,"target":276},{"source":32,"target":277},{"source":263,"target":278},{"source":263,"target":32},{"source":264,"target":31},{"source":264,"target":279},{"source":264,"target":32},{"source":279,"target":31},{"source":265,"target":32},{"source":265,"target":280},{"source":265,"target":32},{"source":280,"target":32},{"source":266,"target":34},{"source":266,"target":281},{"source":266,"target":32},{"source":281,"target":34},{"source":267,"target":82},{"source":267,"target":282},{"source":267,"target":32},{"source":282,"target":82},{"source":268,"target":34},{"source":268,"target":283},{"source":268,"target":32},{"source":283,"target":34},{"source":269,"target":35},{"source":269,"target":284},{"source":269,"target":32},{"source":284,"target":35},{"source":270,"target":38},{"source":270,"target":285},{"source":270,"target":32},{"source":285,"target":38},{"source":271,"target":36},{"source":271,"target":286},{"source":271,"target":32},{"source":286,"target":36},{"source":272,"target":13},{"source":272,"target":287},{"source":272,"target":32},{"source":287,"target":13},{"source":273,"target":82},{"source":273,"target":288},{"source":273,"target":32},{"source":288,"target":82},{"source":274,"target":83},{"source":274,"target":289},{"source":274,"target":32},{"source":289,"target":83},{"source":275,"target":15},{"source":275,"target":290},{"source":275,"target":32},{"source":290,"target":15},{"source":276,"target":56},{"source":276,"target":291},{"source":276,"target":32},{"source":291,"target":56},{"source":277,"target":4},{"source":33,"target":0},{"source":33,"target":292},{"source":33,"target":293},{"source":292,"target":18},{"source":292,"target":294},{"source":292,"target":33},{"source":294,"target":18},{"source":293,"target":295},{"source":293,"target":33},{"source":34,"target":0},{"source":34,"target":33},{"source":34,"target":296},{"source":34,"target":297},{"source":34,"target":298},{"source":34,"target":299},{"source":34,"target":300},{"source":34,"target":301},{"source":296,"target":302},{"source":296,"target":34},{"source":297,"target":303},{"source":297,"target":34},{"source":298,"target":304},{"source":298,"target":34},{"source":299,"target":18},{"source":299,"target":305},{"source":299,"target":34},{"source":305,"target":18},{"source":300,"target":82},{"source":300,"target":306},{"source":300,"target":34},{"source":306,"target":82},{"source":301,"target":33},{"source":35,"target":0},{"source":35,"target":307},{"source":307,"target":34},{"source":307,"target":308},{"source":307,"target":35},{"source":308,"target":34},{"source":36,"target":0},{"source":36,"target":33},{"source":36,"target":309},{"source":36,"target":310},{"source":309,"target":19},{"source":309,"target":311},{"source":309,"target":36},{"source":311,"target":19},{"source":310,"target":33},{"source":37,"target":0},{"source":37,"target":33},{"source":37,"target":312},{"source":37,"target":313},{"source":312,"target":19},{"source":312,"target":314},{"source":312,"target":37},{"source":314,"target":19},{"source":313,"target":33},{"source":38,"target":0},{"source":38,"target":315},{"source":315,"target":37},{"source":315,"target":316},{"source":315,"target":38},{"source":316,"target":37},{"source":39,"target":0},{"source":39,"target":3},{"source":39,"target":317},{"source":39,"target":318},{"source":317,"target":41},{"source":317,"target":319},{"source":317,"target":39},{"source":319,"target":41},{"source":318,"target":3},{"source":40,"target":0},{"source":40,"target":320},{"source":40,"target":321},{"source":320,"target":322},{"source":320,"target":40},{"source":321,"target":82},{"source":321,"target":323},{"source":321,"target":40},{"source":323,"target":82},{"source":41,"target":0},{"source":41,"target":40},{"source":41,"target":324},{"source":41,"target":325},{"source":324,"target":42},{"source":324,"target":326},{"source":324,"target":41},{"source":326,"target":42},{"source":325,"target":40},{"source":42,"target":0},{"source":42,"target":4},{"source":42,"target":327},{"source":42,"target":328},{"source":42,"target":329},{"source":327,"target":34},{"source":327,"target":330},{"source":327,"target":42},{"source":330,"target":34},{"source":328,"target":43},{"source":328,"target":331},{"source":328,"target":42},{"source":331,"target":43},{"source":329,"target":4},{"source":43,"target":0},{"source":43,"target":332},{"source":43,"target":333},{"source":43,"target":334},{"source":332,"target":335},{"source":332,"target":43},{"source":333,"target":336},{"source":333,"target":43},{"source":334,"target":44},{"source":334,"target":337},{"source":334,"target":43},{"source":337,"target":44},{"source":44,"target":0},{"source":44,"target":338},{"source":338,"target":339},{"source":338,"target":44},{"source":45,"target":0},{"source":45,"target":340},{"source":45,"target":341},{"source":340,"target":46},{"source":340,"target":342},{"source":340,"target":45},{"source":342,"target":46},{"source":341,"target":46},{"source":341,"target":343},{"source":341,"target":45},{"source":343,"target":46},{"source":46,"target":0},{"source":46,"target":344},{"source":46,"target":345},{"source":46,"target":346},{"source":344,"target":40},{"source":344,"target":347},{"source":344,"target":46},{"source":347,"target":40},{"source":345,"target":34},{"source":345,"target":348},{"source":345,"target":46},{"source":348,"target":34},{"source":346,"target":21},{"source":346,"target":349},{"source":346,"target":46},{"source":349,"target":21},{"source":47,"target":0},{"source":47,"target":350},{"source":47,"target":351},{"source":350,"target":48},{"source":350,"target":352},{"source":350,"target":47},{"source":352,"target":48},{"source":351,"target":51},{"source":351,"target":353},{"source":351,"target":47},{"source":353,"target":51},{"source":48,"target":0},{"source":49,"target":0},{"source":49,"target":48},{"source":49,"target":354},{"source":49,"target":355},{"source":354,"target":40},{"source":354,"target":356},{"source":354,"target":49},{"source":356,"target":40},{"source":355,"target":48},{"source":50,"target":0},{"source":50,"target":48},{"source":50,"target":357},{"source":50,"target":358},{"source":357,"target":37},{"source":357,"target":359},{"source":357,"target":50},{"source":359,"target":37},{"source":358,"target":48},{"source":51,"target":0},{"source":51,"target":360},{"source":51,"target":361},{"source":360,"target":40},{"source":360,"target":362},{"source":360,"target":51},{"source":362,"target":40},{"source":361,"target":37},{"source":361,"target":363},{"source":361,"target":51},{"source":363,"target":37},{"source":52,"target":0},{"source":52,"target":40},{"source":52,"target":364},{"source":52,"target":365},{"source":52,"target":366},{"source":364,"target":367},{"source":364,"target":52},{"source":365,"target":32},{"source":365,"target":368},{"source":365,"target":52},{"source":368,"target":32},{"source":366,"target":40},{"source":53,"target":0},{"source":53,"target":54},{"source":53,"target":369},{"source":369,"target":54},{"source":54,"target":0},{"source":54,"target":370},{"source":370,"target":371},{"source":370,"target":54},{"source":55,"target":0},{"source":55,"target":53},{"source":55,"target":372},{"source":55,"target":373},{"source":55,"target":374},{"source":55,"target":375},{"source":55,"target":376},{"source":55,"target":377},{"source":55,"target":378},{"source":372,"target":379},{"source":372,"target":55},{"source":373,"target":82},{"source":373,"target":380},{"source":373,"target":55},{"source":380,"target":82},{"source":374,"target":59},{"source":374,"target":381},{"source":374,"target":55},{"source":381,"target":59},{"source":375,"target":59},{"source":375,"target":382},{"source":375,"target":55},{"source":382,"target":59},{"source":376,"target":59},{"source":376,"target":383},{"source":376,"target":55},{"source":383,"target":59},{"source":377,"target":56},{"source":377,"target":384},{"source":377,"target":55},{"source":384,"target":56},{"source":378,"target":53},{"source":56,"target":0},{"source":56,"target":385},{"source":56,"target":386},{"source":56,"target":387},{"source":56,"target":388},{"source":56,"target":389},{"source":385,"target":55},{"source":385,"target":390},{"source":385,"target":56},{"source":390,"target":55},{"source":386,"target":60},{"source":386,"target":391},{"source":386,"target":56},{"source":391,"target":60},{"source":387,"target":64},{"source":387,"target":392},{"source":387,"target":56},{"source":392,"target":64},{"source":388,"target":65},{"source":388,"target":393},{"source":388,"target":56},{"source":393,"target":65},{"source":389,"target":73},{"source":389,"target":394},{"source":389,"target":56},{"source":394,"target":73},{"source":57,"target":0},{"source":57,"target":55},{"source":57,"target":395},{"source":57,"target":396},{"source":395,"target":397},{"source":395,"target":57},{"source":396,"target":55},{"source":58,"target":0},{"source":58,"target":55},{"source":58,"target":398},{"source":58,"target":399},{"source":398,"target":55},{"source":398,"target":400},{"source":398,"target":58},{"source":400,"target":55},{"source":399,"target":55},{"source":59,"target":0},{"source":59,"target":401},{"source":401,"target":402},{"source":401,"target":59},{"source":60,"target":0},{"source":60,"target":53},{"source":60,"target":403},{"source":60,"target":404},{"source":403,"target":405},{"source":403,"target":60},{"source":404,"target":53},{"source":61,"target":0},{"source":61,"target":60},{"source":61,"target":406},{"source":61,"target":407},{"source":406,"target":408},{"source":406,"target":61},{"source":407,"target":60},{"source":62,"target":0},{"source":62,"target":60},{"source":62,"target":409},{"source":409,"target":60},{"source":63,"target":0},{"source":63,"target":60},{"source":63,"target":410},{"source":410,"target":60},{"source":64,"target":0},{"source":64,"target":53},{"source":64,"target":411},{"source":64,"target":412},{"source":64,"target":413},{"source":411,"target":414},{"source":411,"target":64},{"source":412,"target":82},{"source":412,"target":415},{"source":412,"target":64},{"source":415,"target":82},{"source":413,"target":53},{"source":65,"target":0},{"source":65,"target":54},{"source":65,"target":416},{"source":65,"target":417},{"source":65,"target":418},{"source":65,"target":419},{"source":65,"target":420},{"source":416,"target":421},{"source":416,"target":65},{"source":417,"target":74},{"source":417,"target":422},{"source":417,"target":65},{"source":422,"target":74},{"source":418,"target":82},{"source":418,"target":423},{"source":418,"target":65},{"source":423,"target":82},{"source":419,"target":59},{"source":419,"target":424},{"source":419,"target":65},{"source":424,"target":59},{"source":420,"target":54},{"source":66,"target":0},{"source":66,"target":65},{"source":66,"target":425},{"source":66,"target":426},{"source":425,"target":74},{"source":425,"target":427},{"source":425,"target":66},{"source":427,"target":74},{"source":426,"target":65},{"source":67,"target":0},{"source":67,"target":66},{"source":67,"target":428},{"source":428,"target":66},{"source":68,"target":0},{"source":68,"target":65},{"source":68,"target":429},{"source":429,"target":65},{"source":69,"target":0},{"source":69,"target":66},{"source":69,"target":430},{"source":430,"target":66},{"source":70,"target":0},{"source":70,"target":67},{"source":70,"target":431},{"source":70,"target":432},{"source":431,"target":79},{"source":431,"target":433},{"source":431,"target":70},{"source":433,"target":79},{"source":432,"target":67},{"source":71,"target":0},{"source":71,"target":67},{"source":71,"target":434},{"source":71,"target":435},{"source":434,"target":59},{"source":434,"target":436},{"source":434,"target":71},{"source":436,"target":59},{"source":435,"target":67},{"source":72,"target":0},{"source":72,"target":66},{"source":72,"target":437},{"source":72,"target":438},{"source":437,"target":59},{"source":437,"target":439},{"source":437,"target":72},{"source":439,"target":59},{"source":438,"target":66},{"source":73,"target":0},{"source":73,"target":440},{"source":73,"target":441},{"source":73,"target":442},{"source":440,"target":65},{"source":440,"target":443},{"source":440,"target":73},{"source":443,"target":65},{"source":441,"target":82},{"source":441,"target":444},{"source":441,"target":73},{"source":444,"target":82},{"source":442,"target":59},{"source":442,"target":445},{"source":442,"target":73},{"source":445,"target":59},{"source":74,"target":0},{"source":75,"target":0},{"source":75,"target":74},{"source":75,"target":446},{"source":75,"target":447},{"source":446,"target":55},{"source":446,"target":448},{"source":446,"target":75},{"source":448,"target":55},{"source":447,"target":74},{"source":76,"target":0},{"source":76,"target":74},{"source":76,"target":449},{"source":76,"target":450},{"source":449,"target":60},{"source":449,"target":451},{"source":449,"target":76},{"source":451,"target":60},{"source":450,"target":74},{"source":77,"target":0},{"source":77,"target":74},{"source":77,"target":452},{"source":77,"target":453},{"source":77,"target":454},{"source":452,"target":60},{"source":452,"target":455},{"source":452,"target":77},{"source":455,"target":60},{"source":453,"target":55},{"source":453,"target":456},{"source":453,"target":77},{"source":456,"target":55},{"source":454,"target":74},{"source":78,"target":0},{"source":78,"target":74},{"source":78,"target":457},{"source":78,"target":458},{"source":457,"target":64},{"source":457,"target":459},{"source":457,"target":78},{"source":459,"target":64},{"source":458,"target":74},{"source":79,"target":0},{"source":79,"target":460},{"source":79,"target":461},{"source":460,"target":80},{"source":460,"target":462},{"source":460,"target":79},{"source":462,"target":80},{"source":461,"target":81},{"source":461,"target":463},{"source":461,"target":79},{"source":463,"target":81},{"source":80,"target":0},{"source":80,"target":464},{"source":80,"target":465},{"source":464,"target":22},{"source":464,"target":466},{"source":464,"target":80},{"source":466,"target":22},{"source":465,"target":33},{"source":465,"target":467},{"source":465,"target":80},{"source":467,"target":33},{"source":81,"target":0},{"source":81,"target":468},{"source":468,"target":59},{"source":468,"target":469},{"source":468,"target":81},{"source":469,"target":59},{"source":82,"target":0},{"source":82,"target":470},{"source":470,"target":471},{"source":470,"target":82},{"source":83,"target":0},{"source":83,"target":472},{"source":83,"target":473},{"source":472,"target":474},{"source":472,"target":83},{"source":473,"target":84},{"source":473,"target":475},{"source":473,"target":83},{"source":475,"target":84},{"source":84,"target":0},{"source":84,"target":476},{"source":84,"target":477},{"source":476,"target":478},{"source":476,"target":84},{"source":477,"target":479},{"source":477,"target":84},{"source":85,"target":0},{"source":85,"target":480},{"source":85,"target":481},{"source":480,"target":482},{"source":480,"target":85},{"source":481,"target":483},{"source":481,"target":85}],"multigraph":true} |
true | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="xls" nsURI="xls" nsPrefix="xls">
<eClassifiers xsi:type="ecore:EClass" name="DateTimeType">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="year" ordered="false" unique="false"
lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="month" ordered="false"
unique="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="day" ordered="false" unique="false"
lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="hour" ordered="false" unique="false"
lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="minute" ordered="false"
unique="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="second" ordered="false"
unique="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ValueType" abstract="true">
<eStructuralFeatures xsi:type="ecore:EReference" name="vt_data" ordered="false"
lowerBound="1" eType="#//Data" eOpposite="#//Data/value"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="StringValue" eSuperTypes="#//ValueType">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" ordered="false"
unique="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="NumberValue" eSuperTypes="#//ValueType">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" ordered="false"
unique="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="DateTimeTypeValue" eSuperTypes="#//ValueType">
<eStructuralFeatures xsi:type="ecore:EReference" name="value" ordered="false"
lowerBound="1" eType="#//DateTimeType" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="BooleanValue" eSuperTypes="#//ValueType">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" ordered="false"
unique="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ErrorValue" eSuperTypes="#//ValueType"/>
<eClassifiers xsi:type="ecore:EClass" name="Workbook">
<eStructuralFeatures xsi:type="ecore:EReference" name="wb_worksheets" upperBound="-1"
eType="#//Worksheet" containment="true" eOpposite="#//Worksheet/ws_workbook"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Worksheet">
<eStructuralFeatures xsi:type="ecore:EReference" name="ws_workbook" ordered="false"
lowerBound="1" eType="#//Workbook" eOpposite="#//Workbook/wb_worksheets"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="ws_table" ordered="false"
eType="#//Table" containment="true" eOpposite="#//Table/t_worksheet"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" ordered="false" unique="false"
lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Table">
<eStructuralFeatures xsi:type="ecore:EReference" name="t_worksheet" ordered="false"
lowerBound="1" eType="#//Worksheet" eOpposite="#//Worksheet/ws_table"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="t_cols" upperBound="-1"
eType="#//Column" containment="true" eOpposite="#//Column/c_table"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="t_rows" upperBound="-1"
eType="#//Row" containment="true" eOpposite="#//Row/r_table"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="TableElement" abstract="true">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="index" ordered="false"
unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ColOrRowElement" abstract="true" eSuperTypes="#//TableElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="hidden" ordered="false"
unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="span" ordered="false" unique="false"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Column" eSuperTypes="#//ColOrRowElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="c_table" ordered="false"
lowerBound="1" eType="#//Table" eOpposite="#//Table/t_cols"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="autoFitWidth" ordered="false"
unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="width" ordered="false"
unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Row" eSuperTypes="#//ColOrRowElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="r_table" ordered="false"
lowerBound="1" eType="#//Table" eOpposite="#//Table/t_rows"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="r_cells" upperBound="-1"
eType="#//Cell" containment="true" eOpposite="#//Cell/c_row"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="autoFitHeight" ordered="false"
unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="height" ordered="false"
unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Cell" eSuperTypes="#//TableElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="c_row" ordered="false"
lowerBound="1" eType="#//Row" eOpposite="#//Row/r_cells"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="arrayRange" ordered="false"
unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="formula" ordered="false"
unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="hRef" ordered="false" unique="false"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="mergeAcross" ordered="false"
unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="mergeDown" ordered="false"
unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="c_data" ordered="false"
eType="#//Data" containment="true" eOpposite="#//Data/d_cell"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Data">
<eStructuralFeatures xsi:type="ecore:EReference" name="d_cell" ordered="false"
lowerBound="1" eType="#//Cell" eOpposite="#//Cell/c_data"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="value" ordered="false"
lowerBound="1" eType="#//ValueType" containment="true" eOpposite="#//ValueType/vt_data"/>
</eClassifiers>
</ecore:EPackage>
| github:ecore:/data/mallon/Past-Projects/TEAP/fr.inria.teap.dcnsSVGGeneration/metamodels/excel/xls.ecore | ecore | xls
DateTimeType
year
month
day
hour
minute
second
ValueType
vt_data
StringValue
value
NumberValue
value
DateTimeTypeValue
value
BooleanValue
value
ErrorValue
Workbook
wb_worksheets
Worksheet
ws_workbook
ws_table
name
Table
t_worksheet
t_cols
t_rows
TableElement
index
ColOrRowElement
hidden
span
Column
c_table
autoFitWidth
width
Row
r_table
r_cells
autoFitHeight
height
Cell
c_row
arrayRange
formula
hRef
mergeAcross
mergeDown
c_data
Data
d_cell
value | null | {"directed":true,"nodes":[{"nsPrefix":"xls","nsURI":"xls","name":"xls","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DateTimeType","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ValueType","instanceClass":null,"abstract":true,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StringValue","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NumberValue","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DateTimeTypeValue","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BooleanValue","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ErrorValue","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Workbook","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Worksheet","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Table","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TableElement","instanceClass":null,"abstract":true,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ColOrRowElement","instanceClass":null,"abstract":true,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Column","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Row","instanceClass":null,"abstract":false,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Cell","instanceClass":null,"abstract":false,"id":15,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Data","instanceClass":null,"abstract":false,"id":16,"interface":false,"eClass":"EClass"},{"ordered":false,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"year","changeable":true,"lowerBound":1,"iD":false,"id":17,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"month","changeable":true,"lowerBound":1,"iD":false,"id":18,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"day","changeable":true,"lowerBound":1,"iD":false,"id":19,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"hour","changeable":true,"lowerBound":1,"iD":false,"id":20,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"minute","changeable":true,"lowerBound":1,"iD":false,"id":21,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"second","changeable":true,"lowerBound":1,"iD":false,"id":22,"derived":false},{"id":23,"eClass":"EGenericType"},{"id":24,"eClass":"EGenericType"},{"id":25,"eClass":"EGenericType"},{"id":26,"eClass":"EGenericType"},{"id":27,"eClass":"EGenericType"},{"id":28,"eClass":"EGenericType"},{"container":true,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"vt_data","changeable":true,"resolveProxies":true,"lowerBound":1,"id":29,"derived":false},{"id":30,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"resolveProxies":true,"lowerBound":1,"id":31,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"value","changeable":true,"lowerBound":1,"iD":false,"id":32,"derived":false},{"id":33,"eClass":"EGenericType"},{"id":34,"eClass":"EGenericType"},{"ordered":false,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"value","changeable":true,"lowerBound":1,"iD":false,"id":35,"derived":false},{"id":36,"eClass":"EGenericType"},{"id":37,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"resolveProxies":true,"lowerBound":1,"id":38,"derived":false},{"id":39,"eClass":"EGenericType"},{"id":40,"eClass":"EGenericType"},{"ordered":false,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"value","changeable":true,"lowerBound":1,"iD":false,"id":41,"derived":false},{"id":42,"eClass":"EGenericType"},{"id":43,"eClass":"EGenericType"},{"id":44,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"wb_worksheets","changeable":true,"resolveProxies":true,"lowerBound":0,"id":45,"derived":false},{"id":46,"eClass":"EGenericType"},{"container":true,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"ws_workbook","changeable":true,"resolveProxies":true,"lowerBound":1,"id":47,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"ws_table","changeable":true,"resolveProxies":true,"lowerBound":0,"id":48,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":49,"derived":false},{"id":50,"eClass":"EGenericType"},{"id":51,"eClass":"EGenericType"},{"container":true,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"t_worksheet","changeable":true,"resolveProxies":true,"lowerBound":1,"id":52,"derived":false},{"id":53,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"t_cols","changeable":true,"resolveProxies":true,"lowerBound":0,"id":54,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"t_rows","changeable":true,"resolveProxies":true,"lowerBound":0,"id":55,"derived":false},{"id":56,"eClass":"EGenericType"},{"id":57,"eClass":"EGenericType"},{"container":true,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"c_table","changeable":true,"resolveProxies":true,"lowerBound":1,"id":58,"derived":false},{"id":59,"eClass":"EGenericType"},{"container":true,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"r_table","changeable":true,"resolveProxies":true,"lowerBound":1,"id":60,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"index","changeable":true,"lowerBound":0,"iD":false,"id":61,"derived":false},{"id":62,"eClass":"EGenericType"},{"ordered":false,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"hidden","changeable":true,"lowerBound":0,"iD":false,"id":63,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"span","changeable":true,"lowerBound":0,"iD":false,"id":64,"derived":false},{"id":65,"eClass":"EGenericType"},{"id":66,"eClass":"EGenericType"},{"id":67,"eClass":"EGenericType"},{"ordered":false,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"autoFitWidth","changeable":true,"lowerBound":0,"iD":false,"id":68,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"width","changeable":true,"lowerBound":0,"iD":false,"id":69,"derived":false},{"id":70,"eClass":"EGenericType"},{"id":71,"eClass":"EGenericType"},{"id":72,"eClass":"EGenericType"},{"id":73,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"r_cells","changeable":true,"resolveProxies":true,"lowerBound":0,"id":74,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"autoFitHeight","changeable":true,"lowerBound":0,"iD":false,"id":75,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"height","changeable":true,"lowerBound":0,"iD":false,"id":76,"derived":false},{"id":77,"eClass":"EGenericType"},{"id":78,"eClass":"EGenericType"},{"id":79,"eClass":"EGenericType"},{"container":true,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"c_row","changeable":true,"resolveProxies":true,"lowerBound":1,"id":80,"derived":false},{"id":81,"eClass":"EGenericType"},{"id":82,"eClass":"EGenericType"},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"arrayRange","changeable":true,"lowerBound":0,"iD":false,"id":83,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"formula","changeable":true,"lowerBound":0,"iD":false,"id":84,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"hRef","changeable":true,"lowerBound":0,"iD":false,"id":85,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"mergeAcross","changeable":true,"lowerBound":0,"iD":false,"id":86,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"mergeDown","changeable":true,"lowerBound":0,"iD":false,"id":87,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"c_data","changeable":true,"resolveProxies":true,"lowerBound":0,"id":88,"derived":false},{"id":89,"eClass":"EGenericType"},{"id":90,"eClass":"EGenericType"},{"id":91,"eClass":"EGenericType"},{"id":92,"eClass":"EGenericType"},{"id":93,"eClass":"EGenericType"},{"id":94,"eClass":"EGenericType"},{"id":95,"eClass":"EGenericType"},{"id":96,"eClass":"EGenericType"},{"container":true,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"d_cell","changeable":true,"resolveProxies":true,"lowerBound":1,"id":97,"derived":false},{"id":98,"eClass":"EGenericType"},{"id":99,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":0,"target":8},{"source":0,"target":9},{"source":0,"target":10},{"source":0,"target":11},{"source":0,"target":12},{"source":0,"target":13},{"source":0,"target":14},{"source":0,"target":15},{"source":0,"target":16},{"source":1,"target":0},{"source":1,"target":17},{"source":1,"target":18},{"source":1,"target":19},{"source":1,"target":20},{"source":1,"target":21},{"source":1,"target":22},{"source":17,"target":23},{"source":17,"target":1},{"source":18,"target":24},{"source":18,"target":1},{"source":19,"target":25},{"source":19,"target":1},{"source":20,"target":26},{"source":20,"target":1},{"source":21,"target":27},{"source":21,"target":1},{"source":22,"target":28},{"source":22,"target":1},{"source":2,"target":0},{"source":2,"target":29},{"source":29,"target":16},{"source":29,"target":30},{"source":29,"target":2},{"source":29,"target":31},{"source":30,"target":16},{"source":3,"target":0},{"source":3,"target":2},{"source":3,"target":32},{"source":3,"target":33},{"source":32,"target":34},{"source":32,"target":3},{"source":33,"target":2},{"source":4,"target":0},{"source":4,"target":2},{"source":4,"target":35},{"source":4,"target":36},{"source":35,"target":37},{"source":35,"target":4},{"source":36,"target":2},{"source":5,"target":0},{"source":5,"target":2},{"source":5,"target":38},{"source":5,"target":39},{"source":38,"target":1},{"source":38,"target":40},{"source":38,"target":5},{"source":40,"target":1},{"source":39,"target":2},{"source":6,"target":0},{"source":6,"target":2},{"source":6,"target":41},{"source":6,"target":42},{"source":41,"target":43},{"source":41,"target":6},{"source":42,"target":2},{"source":7,"target":0},{"source":7,"target":2},{"source":7,"target":44},{"source":44,"target":2},{"source":8,"target":0},{"source":8,"target":45},{"source":45,"target":9},{"source":45,"target":46},{"source":45,"target":8},{"source":45,"target":47},{"source":46,"target":9},{"source":9,"target":0},{"source":9,"target":47},{"source":9,"target":48},{"source":9,"target":49},{"source":47,"target":8},{"source":47,"target":50},{"source":47,"target":9},{"source":47,"target":45},{"source":50,"target":8},{"source":48,"target":10},{"source":48,"target":51},{"source":48,"target":9},{"source":48,"target":52},{"source":51,"target":10},{"source":49,"target":53},{"source":49,"target":9},{"source":10,"target":0},{"source":10,"target":52},{"source":10,"target":54},{"source":10,"target":55},{"source":52,"target":9},{"source":52,"target":56},{"source":52,"target":10},{"source":52,"target":48},{"source":56,"target":9},{"source":54,"target":13},{"source":54,"target":57},{"source":54,"target":10},{"source":54,"target":58},{"source":57,"target":13},{"source":55,"target":14},{"source":55,"target":59},{"source":55,"target":10},{"source":55,"target":60},{"source":59,"target":14},{"source":11,"target":0},{"source":11,"target":61},{"source":61,"target":62},{"source":61,"target":11},{"source":12,"target":0},{"source":12,"target":11},{"source":12,"target":63},{"source":12,"target":64},{"source":12,"target":65},{"source":63,"target":66},{"source":63,"target":12},{"source":64,"target":67},{"source":64,"target":12},{"source":65,"target":11},{"source":13,"target":0},{"source":13,"target":12},{"source":13,"target":58},{"source":13,"target":68},{"source":13,"target":69},{"source":13,"target":70},{"source":58,"target":10},{"source":58,"target":71},{"source":58,"target":13},{"source":58,"target":54},{"source":71,"target":10},{"source":68,"target":72},{"source":68,"target":13},{"source":69,"target":73},{"source":69,"target":13},{"source":70,"target":12},{"source":14,"target":0},{"source":14,"target":12},{"source":14,"target":60},{"source":14,"target":74},{"source":14,"target":75},{"source":14,"target":76},{"source":14,"target":77},{"source":60,"target":10},{"source":60,"target":78},{"source":60,"target":14},{"source":60,"target":55},{"source":78,"target":10},{"source":74,"target":15},{"source":74,"target":79},{"source":74,"target":14},{"source":74,"target":80},{"source":79,"target":15},{"source":75,"target":81},{"source":75,"target":14},{"source":76,"target":82},{"source":76,"target":14},{"source":77,"target":12},{"source":15,"target":0},{"source":15,"target":11},{"source":15,"target":80},{"source":15,"target":83},{"source":15,"target":84},{"source":15,"target":85},{"source":15,"target":86},{"source":15,"target":87},{"source":15,"target":88},{"source":15,"target":89},{"source":80,"target":14},{"source":80,"target":90},{"source":80,"target":15},{"source":80,"target":74},{"source":90,"target":14},{"source":83,"target":91},{"source":83,"target":15},{"source":84,"target":92},{"source":84,"target":15},{"source":85,"target":93},{"source":85,"target":15},{"source":86,"target":94},{"source":86,"target":15},{"source":87,"target":95},{"source":87,"target":15},{"source":88,"target":16},{"source":88,"target":96},{"source":88,"target":15},{"source":88,"target":97},{"source":96,"target":16},{"source":89,"target":11},{"source":16,"target":0},{"source":16,"target":97},{"source":16,"target":31},{"source":97,"target":15},{"source":97,"target":98},{"source":97,"target":16},{"source":97,"target":88},{"source":98,"target":15},{"source":31,"target":2},{"source":31,"target":99},{"source":31,"target":16},{"source":31,"target":29},{"source":99,"target":2}],"multigraph":true} |
true | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0"
xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="api"
nsURI="http://eclipse.org/component-api" nsPrefix="api">
<eClassifiers xsi:type="ecore:EClass" name="ApiTypes">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="api-types"/>
<details key="kind" value="elementOnly"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="package" lowerBound="1"
upperBound="-1" eType="#//Package" containment="true" resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="package"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ClassApi">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="class-api"/>
<details key="kind" value="elementOnly"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="methodApi" lowerBound="1"
upperBound="-1" eType="#//MethodApi" containment="true" resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="method-api"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="fieldApi" lowerBound="1"
upperBound="-1" eType="#//FieldApi" containment="true" resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="field-api"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="implement" unique="false"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//Boolean"
defaultValueLiteral="true" unsettable="true">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="implement"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="instantiate" unique="false"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//Boolean"
defaultValueLiteral="true" unsettable="true">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="instantiate"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" unique="false" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="name"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="reference" unique="false"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//Boolean"
defaultValueLiteral="true" unsettable="true">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="reference"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="subclass" unique="false"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//Boolean"
defaultValueLiteral="true" unsettable="true">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="subclass"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ComponentApiType">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="component-api_._type"/>
<details key="kind" value="elementOnly"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="internalApis" lowerBound="1"
eType="#//ApiTypes" containment="true" resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="internal-apis"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="externalApis" lowerBound="1"
eType="#//ApiTypes" containment="true" resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="external-apis"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" unique="false" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="
						The component name; e.g. "Eclipse Platform
						Generic Workbench"; note that this name is used
						to refer to the component and distinguish it
						from other components (but otherwise has no
						official status in Eclipse ontology)
					"/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="name"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="version" unique="false"
lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="version"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="DocumentRoot">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value=""/>
<details key="kind" value="mixed"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="mixed" unique="false" upperBound="-1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFeatureMapEntry">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="elementWildcard"/>
<details key="name" value=":mixed"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="xMLNSPrefixMap" unique="false"
upperBound="-1" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EStringToStringMapEntry"
transient="true" containment="true" resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="xmlns:prefix"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="xSISchemaLocation" unique="false"
upperBound="-1" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EStringToStringMapEntry"
transient="true" containment="true" resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="xsi:schemaLocation"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="componentApi" upperBound="-2"
eType="#//ComponentApiType" volatile="true" transient="true" derived="true"
containment="true" resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="component-api"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="FieldApi">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="field-api"/>
<details key="kind" value="empty"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="final" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//Boolean"
unsettable="true">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="final"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" unique="false" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="name"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="static" unique="false"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//Boolean"
unsettable="true">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="static"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="transient" unique="false"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//Boolean"
unsettable="true">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="transient"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="type" unique="false" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="type"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="visibility" unique="false"
lowerBound="1" eType="#//Visibility" defaultValueLiteral="public" unsettable="true">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="visibility"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="volatile" unique="false"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//Boolean"
unsettable="true">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="volatile"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="ListOfTypes" instanceClassName="java.util.List">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="list-of-types"/>
<details key="itemType" value="http://www.eclipse.org/emf/2003/XMLType#string"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="MethodApi">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="method-api"/>
<details key="kind" value="empty"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="abstract" unique="false"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//Boolean"
unsettable="true">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="abstract"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="exceptionType" unique="false"
eType="#//ListOfTypes">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="exception-type"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="final" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//Boolean"
unsettable="true">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="final"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="inputType" unique="false"
eType="#//ListOfTypes">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="input-type"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" unique="false" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="name"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="native" unique="false"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//Boolean"
unsettable="true">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="native"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="returnType" unique="false"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="return-type"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="static" unique="false"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//Boolean"
unsettable="true">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="static"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="strict" unique="false"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//Boolean"
unsettable="true">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="strict"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="synchronized" unique="false"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//Boolean"
unsettable="true">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="synchronized"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="visibility" unique="false"
lowerBound="1" eType="#//Visibility" defaultValueLiteral="public" unsettable="true">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="visibility"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Package">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="package"/>
<details key="kind" value="elementOnly"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="classApi" lowerBound="1"
upperBound="-1" eType="#//ClassApi" containment="true" resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="class-api"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" unique="false" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="name"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="Visibility">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="visibility"/>
</eAnnotations>
<eLiterals name="public"/>
<eLiterals name="protected" value="1"/>
<eLiterals name="private" value="2"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="VisibilityObject" instanceClassName="org.eclipse.emf.common.util.AbstractEnumerator">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="visibility:Object"/>
<details key="baseType" value="visibility"/>
</eAnnotations>
</eClassifiers>
</ecore:EPackage>
| github:ecore:/data/MagMar94/ParmorelRunnable/differentSelectionMethodsOriginals/org.eclipse.component.api.ecore | ecore | api
ApiTypes
package
ClassApi
methodApi
fieldApi
implement
true
instantiate
true
name
reference
true
subclass
true
ComponentApiType
internalApis
externalApis
name
version
DocumentRoot
mixed
xMLNSPrefixMap
xSISchemaLocation
componentApi
FieldApi
final
name
static
transient
type
visibility
public
volatile
ListOfTypes
java.util.List
java.util.List
MethodApi
abstract
exceptionType
final
inputType
name
native
returnType
static
strict
synchronized
visibility
public
Package
classApi
name
Visibility
public
public
protected
protected
private
private
VisibilityObject
org.eclipse.emf.common.util.AbstractEnumerator
org.eclipse.emf.common.util.AbstractEnumerator | null | {"directed":true,"nodes":[{"nsPrefix":"api","nsURI":"http://eclipse.org/component-api","name":"api","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ApiTypes","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ClassApi","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ComponentApiType","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DocumentRoot","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FieldApi","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":"java.util.List","defaultValue":null,"instanceClassName":"java.util.List","name":"ListOfTypes","instanceClass":"java.util.List","id":6,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MethodApi","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Package","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"Visibility","instanceClass":null,"id":9,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":"org.eclipse.emf.common.util.AbstractEnumerator","defaultValue":null,"instanceClassName":"org.eclipse.emf.common.util.AbstractEnumerator","name":"VisibilityObject","instanceClass":"org.eclipse.emf.common.util.AbstractEnumerator","id":10,"serializable":true,"eClass":"EDataType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"package","changeable":true,"resolveProxies":false,"lowerBound":1,"id":11,"derived":false},{"id":12,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"methodApi","changeable":true,"resolveProxies":false,"lowerBound":1,"id":13,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"fieldApi","changeable":true,"resolveProxies":false,"lowerBound":1,"id":14,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":true,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"true","unsettable":true,"transient":false,"unique":false,"name":"implement","changeable":true,"lowerBound":0,"iD":false,"id":15,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":true,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"true","unsettable":true,"transient":false,"unique":false,"name":"instantiate","changeable":true,"lowerBound":0,"iD":false,"id":16,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":17,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":true,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"true","unsettable":true,"transient":false,"unique":false,"name":"reference","changeable":true,"lowerBound":0,"iD":false,"id":18,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":true,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"true","unsettable":true,"transient":false,"unique":false,"name":"subclass","changeable":true,"lowerBound":0,"iD":false,"id":19,"derived":false},{"id":20,"eClass":"EGenericType"},{"id":21,"eClass":"EGenericType"},{"id":22,"eClass":"EGenericType"},{"id":23,"eClass":"EGenericType"},{"id":24,"eClass":"EGenericType"},{"id":25,"eClass":"EGenericType"},{"id":26,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"internalApis","changeable":true,"resolveProxies":false,"lowerBound":1,"id":27,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"externalApis","changeable":true,"resolveProxies":false,"lowerBound":1,"id":28,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":29,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"version","changeable":true,"lowerBound":1,"iD":false,"id":30,"derived":false},{"id":31,"eClass":"EGenericType"},{"id":32,"eClass":"EGenericType"},{"id":33,"eClass":"EGenericType"},{"id":34,"eClass":"EGenericType"},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"mixed","changeable":true,"lowerBound":0,"iD":false,"id":35,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":true,"unique":false,"name":"xMLNSPrefixMap","changeable":true,"resolveProxies":false,"lowerBound":0,"id":36,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":true,"unique":false,"name":"xSISchemaLocation","changeable":true,"resolveProxies":false,"lowerBound":0,"id":37,"derived":false},{"container":false,"ordered":true,"upperBound":-2,"defaultValue":null,"volatile":true,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":true,"unique":true,"name":"componentApi","changeable":true,"resolveProxies":false,"lowerBound":0,"id":38,"derived":true},{"id":39,"eClass":"EGenericType"},{"id":40,"eClass":"EGenericType"},{"id":41,"eClass":"EGenericType"},{"id":42,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":false,"name":"final","changeable":true,"lowerBound":0,"iD":false,"id":43,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":44,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":false,"name":"static","changeable":true,"lowerBound":0,"iD":false,"id":45,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":false,"name":"transient","changeable":true,"lowerBound":0,"iD":false,"id":46,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"type","changeable":true,"lowerBound":1,"iD":false,"id":47,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"public","unsettable":true,"transient":false,"unique":false,"name":"visibility","changeable":true,"lowerBound":1,"iD":false,"id":48,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":false,"name":"volatile","changeable":true,"lowerBound":0,"iD":false,"id":49,"derived":false},{"id":50,"eClass":"EGenericType"},{"id":51,"eClass":"EGenericType"},{"id":52,"eClass":"EGenericType"},{"id":53,"eClass":"EGenericType"},{"id":54,"eClass":"EGenericType"},{"id":55,"eClass":"EGenericType"},{"id":56,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":false,"name":"abstract","changeable":true,"lowerBound":0,"iD":false,"id":57,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"exceptionType","changeable":true,"lowerBound":0,"iD":false,"id":58,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":false,"name":"final","changeable":true,"lowerBound":0,"iD":false,"id":59,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"inputType","changeable":true,"lowerBound":0,"iD":false,"id":60,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":61,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":false,"name":"native","changeable":true,"lowerBound":0,"iD":false,"id":62,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"returnType","changeable":true,"lowerBound":0,"iD":false,"id":63,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":false,"name":"static","changeable":true,"lowerBound":0,"iD":false,"id":64,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":false,"name":"strict","changeable":true,"lowerBound":0,"iD":false,"id":65,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":false,"name":"synchronized","changeable":true,"lowerBound":0,"iD":false,"id":66,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"public","unsettable":true,"transient":false,"unique":false,"name":"visibility","changeable":true,"lowerBound":1,"iD":false,"id":67,"derived":false},{"id":68,"eClass":"EGenericType"},{"id":69,"eClass":"EGenericType"},{"id":70,"eClass":"EGenericType"},{"id":71,"eClass":"EGenericType"},{"id":72,"eClass":"EGenericType"},{"id":73,"eClass":"EGenericType"},{"id":74,"eClass":"EGenericType"},{"id":75,"eClass":"EGenericType"},{"id":76,"eClass":"EGenericType"},{"id":77,"eClass":"EGenericType"},{"id":78,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"classApi","changeable":true,"resolveProxies":false,"lowerBound":1,"id":79,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":80,"derived":false},{"id":81,"eClass":"EGenericType"},{"id":82,"eClass":"EGenericType"},{"name":"public","id":83,"value":0,"literal":"public","eClass":"EEnumLiteral"},{"name":"protected","id":84,"value":1,"literal":"protected","eClass":"EEnumLiteral"},{"name":"private","id":85,"value":2,"literal":"private","eClass":"EEnumLiteral"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":0,"target":8},{"source":0,"target":9},{"source":0,"target":10},{"source":1,"target":0},{"source":1,"target":11},{"source":11,"target":8},{"source":11,"target":12},{"source":11,"target":1},{"source":12,"target":8},{"source":2,"target":0},{"source":2,"target":13},{"source":2,"target":14},{"source":2,"target":15},{"source":2,"target":16},{"source":2,"target":17},{"source":2,"target":18},{"source":2,"target":19},{"source":13,"target":7},{"source":13,"target":20},{"source":13,"target":2},{"source":20,"target":7},{"source":14,"target":5},{"source":14,"target":21},{"source":14,"target":2},{"source":21,"target":5},{"source":15,"target":22},{"source":15,"target":2},{"source":16,"target":23},{"source":16,"target":2},{"source":17,"target":24},{"source":17,"target":2},{"source":18,"target":25},{"source":18,"target":2},{"source":19,"target":26},{"source":19,"target":2},{"source":3,"target":0},{"source":3,"target":27},{"source":3,"target":28},{"source":3,"target":29},{"source":3,"target":30},{"source":27,"target":1},{"source":27,"target":31},{"source":27,"target":3},{"source":31,"target":1},{"source":28,"target":1},{"source":28,"target":32},{"source":28,"target":3},{"source":32,"target":1},{"source":29,"target":33},{"source":29,"target":3},{"source":30,"target":34},{"source":30,"target":3},{"source":4,"target":0},{"source":4,"target":35},{"source":4,"target":36},{"source":4,"target":37},{"source":4,"target":38},{"source":35,"target":39},{"source":35,"target":4},{"source":36,"target":40},{"source":36,"target":4},{"source":37,"target":41},{"source":37,"target":4},{"source":38,"target":3},{"source":38,"target":42},{"source":38,"target":4},{"source":42,"target":3},{"source":5,"target":0},{"source":5,"target":43},{"source":5,"target":44},{"source":5,"target":45},{"source":5,"target":46},{"source":5,"target":47},{"source":5,"target":48},{"source":5,"target":49},{"source":43,"target":50},{"source":43,"target":5},{"source":44,"target":51},{"source":44,"target":5},{"source":45,"target":52},{"source":45,"target":5},{"source":46,"target":53},{"source":46,"target":5},{"source":47,"target":54},{"source":47,"target":5},{"source":48,"target":9},{"source":48,"target":55},{"source":48,"target":5},{"source":55,"target":9},{"source":49,"target":56},{"source":49,"target":5},{"source":6,"target":0},{"source":7,"target":0},{"source":7,"target":57},{"source":7,"target":58},{"source":7,"target":59},{"source":7,"target":60},{"source":7,"target":61},{"source":7,"target":62},{"source":7,"target":63},{"source":7,"target":64},{"source":7,"target":65},{"source":7,"target":66},{"source":7,"target":67},{"source":57,"target":68},{"source":57,"target":7},{"source":58,"target":6},{"source":58,"target":69},{"source":58,"target":7},{"source":69,"target":6},{"source":59,"target":70},{"source":59,"target":7},{"source":60,"target":6},{"source":60,"target":71},{"source":60,"target":7},{"source":71,"target":6},{"source":61,"target":72},{"source":61,"target":7},{"source":62,"target":73},{"source":62,"target":7},{"source":63,"target":74},{"source":63,"target":7},{"source":64,"target":75},{"source":64,"target":7},{"source":65,"target":76},{"source":65,"target":7},{"source":66,"target":77},{"source":66,"target":7},{"source":67,"target":9},{"source":67,"target":78},{"source":67,"target":7},{"source":78,"target":9},{"source":8,"target":0},{"source":8,"target":79},{"source":8,"target":80},{"source":79,"target":2},{"source":79,"target":81},{"source":79,"target":8},{"source":81,"target":2},{"source":80,"target":82},{"source":80,"target":8},{"source":9,"target":0},{"source":9,"target":83},{"source":9,"target":84},{"source":9,"target":85},{"source":83,"target":9},{"source":84,"target":9},{"source":85,"target":9},{"source":10,"target":0}],"multigraph":true} |
true | <?xml version="1.0" encoding="ISO-8859-1"?>
<xmi:XMI xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore">
<ecore:EPackage name="PrimitiveTypes">
<eClassifiers xsi:type="ecore:EDataType" name="String"/>
<eClassifiers xsi:type="ecore:EDataType" name="Boolean"/>
</ecore:EPackage>
<ecore:EPackage name="Relational">
<eClassifiers xsi:type="ecore:EClass" name="Database">
<eStructuralFeatures xsi:type="ecore:EReference" name="tables" ordered="false" upperBound="-1" eType="/1/Table" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="foreignKeys" ordered="false" upperBound="-1" eType="/1/ForeignKey" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="tableData" ordered="false" upperBound="-1" eType="/1/TableData" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="NamedElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" ordered="false" unique="false" lowerBound="1" eType="/0/String"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Table" eSuperTypes="/1/NamedElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="columns" ordered="false" upperBound="-1" eType="/1/Column" containment="true" eOpposite="/1/Column/table"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ForeignKey" eSuperTypes="/1/NamedElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="oneToMany" ordered="false" unique="false" lowerBound="1" eType="/0/Boolean"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="parent" ordered="false" lowerBound="1" eType="/1/ForeignKeyEnd" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="child" ordered="false" lowerBound="1" eType="/1/ForeignKeyEnd" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ForeignKeyEnd" eSuperTypes="/1/NamedElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="participant" ordered="false" lowerBound="1" eType="/1/Column"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Column" eSuperTypes="/1/NamedElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="type" ordered="false" unique="false" lowerBound="1" eType="/0/String"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="table" ordered="false" lowerBound="1" eType="/1/Table" eOpposite="/1/Table/columns"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="TableData">
<eStructuralFeatures xsi:type="ecore:EReference" name="table" ordered="false" lowerBound="1" eType="/1/Table"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="row" ordered="false" upperBound="-1" eType="/1/Row" containment="true" eOpposite="/1/Row/tableData"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Row">
<eStructuralFeatures xsi:type="ecore:EReference" name="tableData" ordered="false" lowerBound="1" eType="/1/TableData" eOpposite="/1/TableData/row"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="cell" ordered="false" upperBound="-1" eType="/1/Cell" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Cell">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" ordered="false" unique="false" lowerBound="1" eType="/0/String"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="column" ordered="false" lowerBound="1" eType="/1/Column"/>
</eClassifiers>
</ecore:EPackage>
</xmi:XMI>
| github:ecore:/data/pedrorleonardo/teseVisualino/eclipse project/plugins/org.eclipse.epsilon.emc.emf_1.0.0.201211082326/src/org/eclipse/epsilon/emc/emf/m0/Relational.ecore | ecore | PrimitiveTypes
String
Boolean
Relational
Database
tables
foreignKeys
tableData
NamedElement
name
Table
columns
ForeignKey
oneToMany
parent
child
ForeignKeyEnd
participant
Column
type
table
TableData
table
row
Row
tableData
cell
Cell
value
column | null | {"directed":true,"nodes":[{"nsPrefix":null,"nsURI":null,"name":"PrimitiveTypes","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"String","instanceClass":null,"id":1,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Boolean","instanceClass":null,"id":2,"serializable":true,"eClass":"EDataType"},{"nsPrefix":null,"nsURI":null,"name":"Relational","id":3,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Database","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NamedElement","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Table","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ForeignKey","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ForeignKeyEnd","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Column","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TableData","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Row","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Cell","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"tables","changeable":true,"resolveProxies":true,"lowerBound":0,"id":13,"derived":false},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"foreignKeys","changeable":true,"resolveProxies":true,"lowerBound":0,"id":14,"derived":false},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"tableData","changeable":true,"resolveProxies":true,"lowerBound":0,"id":15,"derived":false},{"id":16,"eClass":"EGenericType"},{"id":17,"eClass":"EGenericType"},{"id":18,"eClass":"EGenericType"},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":19,"derived":false},{"id":20,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"columns","changeable":true,"resolveProxies":true,"lowerBound":0,"id":21,"derived":false},{"id":22,"eClass":"EGenericType"},{"id":23,"eClass":"EGenericType"},{"container":true,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"table","changeable":true,"resolveProxies":true,"lowerBound":1,"id":24,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"oneToMany","changeable":true,"lowerBound":1,"iD":false,"id":25,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"parent","changeable":true,"resolveProxies":true,"lowerBound":1,"id":26,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"child","changeable":true,"resolveProxies":true,"lowerBound":1,"id":27,"derived":false},{"id":28,"eClass":"EGenericType"},{"id":29,"eClass":"EGenericType"},{"id":30,"eClass":"EGenericType"},{"id":31,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"participant","changeable":true,"resolveProxies":true,"lowerBound":1,"id":32,"derived":false},{"id":33,"eClass":"EGenericType"},{"id":34,"eClass":"EGenericType"},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"type","changeable":true,"lowerBound":1,"iD":false,"id":35,"derived":false},{"id":36,"eClass":"EGenericType"},{"id":37,"eClass":"EGenericType"},{"id":38,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"table","changeable":true,"resolveProxies":true,"lowerBound":1,"id":39,"derived":false},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"row","changeable":true,"resolveProxies":true,"lowerBound":0,"id":40,"derived":false},{"id":41,"eClass":"EGenericType"},{"id":42,"eClass":"EGenericType"},{"container":true,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"tableData","changeable":true,"resolveProxies":true,"lowerBound":1,"id":43,"derived":false},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"cell","changeable":true,"resolveProxies":true,"lowerBound":0,"id":44,"derived":false},{"id":45,"eClass":"EGenericType"},{"id":46,"eClass":"EGenericType"},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"value","changeable":true,"lowerBound":1,"iD":false,"id":47,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"column","changeable":true,"resolveProxies":true,"lowerBound":1,"id":48,"derived":false},{"id":49,"eClass":"EGenericType"},{"id":50,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":1,"target":0},{"source":2,"target":0},{"source":3,"target":4},{"source":3,"target":5},{"source":3,"target":6},{"source":3,"target":7},{"source":3,"target":8},{"source":3,"target":9},{"source":3,"target":10},{"source":3,"target":11},{"source":3,"target":12},{"source":4,"target":3},{"source":4,"target":13},{"source":4,"target":14},{"source":4,"target":15},{"source":13,"target":6},{"source":13,"target":16},{"source":13,"target":4},{"source":16,"target":6},{"source":14,"target":7},{"source":14,"target":17},{"source":14,"target":4},{"source":17,"target":7},{"source":15,"target":10},{"source":15,"target":18},{"source":15,"target":4},{"source":18,"target":10},{"source":5,"target":3},{"source":5,"target":19},{"source":19,"target":1},{"source":19,"target":20},{"source":19,"target":5},{"source":20,"target":1},{"source":6,"target":3},{"source":6,"target":5},{"source":6,"target":21},{"source":6,"target":22},{"source":21,"target":9},{"source":21,"target":23},{"source":21,"target":6},{"source":21,"target":24},{"source":23,"target":9},{"source":22,"target":5},{"source":7,"target":3},{"source":7,"target":5},{"source":7,"target":25},{"source":7,"target":26},{"source":7,"target":27},{"source":7,"target":28},{"source":25,"target":2},{"source":25,"target":29},{"source":25,"target":7},{"source":29,"target":2},{"source":26,"target":8},{"source":26,"target":30},{"source":26,"target":7},{"source":30,"target":8},{"source":27,"target":8},{"source":27,"target":31},{"source":27,"target":7},{"source":31,"target":8},{"source":28,"target":5},{"source":8,"target":3},{"source":8,"target":5},{"source":8,"target":32},{"source":8,"target":33},{"source":32,"target":9},{"source":32,"target":34},{"source":32,"target":8},{"source":34,"target":9},{"source":33,"target":5},{"source":9,"target":3},{"source":9,"target":5},{"source":9,"target":35},{"source":9,"target":24},{"source":9,"target":36},{"source":35,"target":1},{"source":35,"target":37},{"source":35,"target":9},{"source":37,"target":1},{"source":24,"target":6},{"source":24,"target":38},{"source":24,"target":9},{"source":24,"target":21},{"source":38,"target":6},{"source":36,"target":5},{"source":10,"target":3},{"source":10,"target":39},{"source":10,"target":40},{"source":39,"target":6},{"source":39,"target":41},{"source":39,"target":10},{"source":41,"target":6},{"source":40,"target":11},{"source":40,"target":42},{"source":40,"target":10},{"source":40,"target":43},{"source":42,"target":11},{"source":11,"target":3},{"source":11,"target":43},{"source":11,"target":44},{"source":43,"target":10},{"source":43,"target":45},{"source":43,"target":11},{"source":43,"target":40},{"source":45,"target":10},{"source":44,"target":12},{"source":44,"target":46},{"source":44,"target":11},{"source":46,"target":12},{"source":12,"target":3},{"source":12,"target":47},{"source":12,"target":48},{"source":47,"target":1},{"source":47,"target":49},{"source":47,"target":12},{"source":49,"target":1},{"source":48,"target":9},{"source":48,"target":50},{"source":48,"target":12},{"source":50,"target":9}],"multigraph":true} |
false | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0"
xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="stateMachine"
nsURI="http://stateMachine/1.0" nsPrefix="stateMachine">
<eClassifiers xsi:type="ecore:EClass" name="StateMachine">
<eStructuralFeatures xsi:type="ecore:EReference" name="eventList" lowerBound="1"
upperBound="-1" eType="#//Event" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="stateList" lowerBound="1"
upperBound="-1" eType="#//State" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="package" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="initial" lowerBound="1"
eType="#//State"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="fieldList" upperBound="-1"
eType="#//DocumentField" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="roleList" upperBound="-1"
eType="#//Role" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="State">
<eStructuralFeatures xsi:type="ecore:EReference" name="transList" upperBound="-1"
eType="#//Trans" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="fieldState" upperBound="-1"
eType="#//FieldState" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="transSetList" upperBound="-1"
eType="#//TransSet" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Event">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Trans">
<eStructuralFeatures xsi:type="ecore:EReference" name="event" lowerBound="1" eType="#//Event"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="target" lowerBound="1"
eType="#//State"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="DocumentField">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="FieldState">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="state" eType="#//EFieldState"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="fieldRef" lowerBound="1"
eType="#//DocumentField"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="EFieldState">
<eLiterals name="EDITABLE"/>
<eLiterals name="READONLY" value="1"/>
<eLiterals name="HIDDEN" value="2"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Role">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="TransSet">
<eStructuralFeatures xsi:type="ecore:EReference" name="transList" upperBound="-1"
eType="#//Trans" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="firedBy" lowerBound="1"
eType="#//Role"/>
</eClassifiers>
</ecore:EPackage>
| github:ecore:/data/piojosnos/foo-org-ve/CledaState/model/stateMachine.ecore | ecore | stateMachine
StateMachine
eventList
stateList
name
package
initial
fieldList
roleList
State
transList
name
fieldState
transSetList
Event
name
Trans
event
target
DocumentField
name
FieldState
state
fieldRef
EFieldState
EDITABLE
EDITABLE
READONLY
READONLY
HIDDEN
HIDDEN
Role
name
TransSet
transList
firedBy | null | {"directed":true,"nodes":[{"nsPrefix":"stateMachine","nsURI":"http://stateMachine/1.0","name":"stateMachine","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StateMachine","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"State","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Event","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Trans","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DocumentField","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FieldState","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"EFieldState","instanceClass":null,"id":7,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Role","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TransSet","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"eventList","changeable":true,"resolveProxies":true,"lowerBound":1,"id":10,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"stateList","changeable":true,"resolveProxies":true,"lowerBound":1,"id":11,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":12,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"package","changeable":true,"lowerBound":0,"iD":false,"id":13,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"initial","changeable":true,"resolveProxies":true,"lowerBound":1,"id":14,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"fieldList","changeable":true,"resolveProxies":true,"lowerBound":0,"id":15,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"roleList","changeable":true,"resolveProxies":true,"lowerBound":0,"id":16,"derived":false},{"id":17,"eClass":"EGenericType"},{"id":18,"eClass":"EGenericType"},{"id":19,"eClass":"EGenericType"},{"id":20,"eClass":"EGenericType"},{"id":21,"eClass":"EGenericType"},{"id":22,"eClass":"EGenericType"},{"id":23,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"transList","changeable":true,"resolveProxies":true,"lowerBound":0,"id":24,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":25,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"fieldState","changeable":true,"resolveProxies":true,"lowerBound":0,"id":26,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"transSetList","changeable":true,"resolveProxies":true,"lowerBound":0,"id":27,"derived":false},{"id":28,"eClass":"EGenericType"},{"id":29,"eClass":"EGenericType"},{"id":30,"eClass":"EGenericType"},{"id":31,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":32,"derived":false},{"id":33,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"event","changeable":true,"resolveProxies":true,"lowerBound":1,"id":34,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"target","changeable":true,"resolveProxies":true,"lowerBound":1,"id":35,"derived":false},{"id":36,"eClass":"EGenericType"},{"id":37,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":38,"derived":false},{"id":39,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"state","changeable":true,"lowerBound":0,"iD":false,"id":40,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"fieldRef","changeable":true,"resolveProxies":true,"lowerBound":1,"id":41,"derived":false},{"id":42,"eClass":"EGenericType"},{"id":43,"eClass":"EGenericType"},{"name":"EDITABLE","id":44,"value":0,"literal":"EDITABLE","eClass":"EEnumLiteral"},{"name":"READONLY","id":45,"value":1,"literal":"READONLY","eClass":"EEnumLiteral"},{"name":"HIDDEN","id":46,"value":2,"literal":"HIDDEN","eClass":"EEnumLiteral"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":47,"derived":false},{"id":48,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"transList","changeable":true,"resolveProxies":true,"lowerBound":0,"id":49,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"firedBy","changeable":true,"resolveProxies":true,"lowerBound":1,"id":50,"derived":false},{"id":51,"eClass":"EGenericType"},{"id":52,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":0,"target":8},{"source":0,"target":9},{"source":1,"target":0},{"source":1,"target":10},{"source":1,"target":11},{"source":1,"target":12},{"source":1,"target":13},{"source":1,"target":14},{"source":1,"target":15},{"source":1,"target":16},{"source":10,"target":3},{"source":10,"target":17},{"source":10,"target":1},{"source":17,"target":3},{"source":11,"target":2},{"source":11,"target":18},{"source":11,"target":1},{"source":18,"target":2},{"source":12,"target":19},{"source":12,"target":1},{"source":13,"target":20},{"source":13,"target":1},{"source":14,"target":2},{"source":14,"target":21},{"source":14,"target":1},{"source":21,"target":2},{"source":15,"target":5},{"source":15,"target":22},{"source":15,"target":1},{"source":22,"target":5},{"source":16,"target":8},{"source":16,"target":23},{"source":16,"target":1},{"source":23,"target":8},{"source":2,"target":0},{"source":2,"target":24},{"source":2,"target":25},{"source":2,"target":26},{"source":2,"target":27},{"source":24,"target":4},{"source":24,"target":28},{"source":24,"target":2},{"source":28,"target":4},{"source":25,"target":29},{"source":25,"target":2},{"source":26,"target":6},{"source":26,"target":30},{"source":26,"target":2},{"source":30,"target":6},{"source":27,"target":9},{"source":27,"target":31},{"source":27,"target":2},{"source":31,"target":9},{"source":3,"target":0},{"source":3,"target":32},{"source":32,"target":33},{"source":32,"target":3},{"source":4,"target":0},{"source":4,"target":34},{"source":4,"target":35},{"source":34,"target":3},{"source":34,"target":36},{"source":34,"target":4},{"source":36,"target":3},{"source":35,"target":2},{"source":35,"target":37},{"source":35,"target":4},{"source":37,"target":2},{"source":5,"target":0},{"source":5,"target":38},{"source":38,"target":39},{"source":38,"target":5},{"source":6,"target":0},{"source":6,"target":40},{"source":6,"target":41},{"source":40,"target":7},{"source":40,"target":42},{"source":40,"target":6},{"source":42,"target":7},{"source":41,"target":5},{"source":41,"target":43},{"source":41,"target":6},{"source":43,"target":5},{"source":7,"target":0},{"source":7,"target":44},{"source":7,"target":45},{"source":7,"target":46},{"source":44,"target":7},{"source":45,"target":7},{"source":46,"target":7},{"source":8,"target":0},{"source":8,"target":47},{"source":47,"target":48},{"source":47,"target":8},{"source":9,"target":0},{"source":9,"target":49},{"source":9,"target":50},{"source":49,"target":4},{"source":49,"target":51},{"source":49,"target":9},{"source":51,"target":4},{"source":50,"target":8},{"source":50,"target":52},{"source":50,"target":9},{"source":52,"target":8}],"multigraph":true} |
false | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="corrmodel" nsURI="http://www.muml.org/simulink/adapter/corrmodel/1.0.0"
nsPrefix="fujaba2simulink">
<eClassifiers xsi:type="ecore:EClass" name="AbstractContainerCorrespondenceNode"
abstract="true">
<eStructuralFeatures xsi:type="ecore:EReference" name="childCorresp" upperBound="-1"
eType="#//AbstractContainerCorrespondenceNode" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="RootNode2SimulinkContainer" eSuperTypes="#//AbstractContainerCorrespondenceNode">
<eStructuralFeatures xsi:type="ecore:EReference" name="RootNode" eType="ecore:EClass ../../org.muml.core.modelinstance/model/modelinstance.ecore#//RootNode"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="SimulinkContainer" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//SimulinkContainer"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="packetBus" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//Bus"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="busOfBusses" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//Bus"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="cic2ss" upperBound="-1"
eType="#//CompInstConfig2SubSys"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="atomCompLib" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//SimulinkLibrary"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ModElCat2SimLib" eSuperTypes="#//AbstractContainerCorrespondenceNode">
<eStructuralFeatures xsi:type="ecore:EReference" name="modElCat" eType="ecore:EClass ../../org.muml.core.modelinstance/model/modelinstance.ecore#//ModelElementCategory"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="simLib" upperBound="-1"
eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//SimulinkLibrary"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CompInstConfig2SubSys" eSuperTypes="#//AbstractContainerCorrespondenceNode">
<eStructuralFeatures xsi:type="ecore:EReference" name="instConfig" eType="ecore:EClass ../../org.muml.pim/model/pim.ecore#//instance/ComponentInstanceConfiguration"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="subSys" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//SubSystem"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="communicationSwitch" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//SubSystem"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="busCreator" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//BusCreator"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="busSelector" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//BusSelector"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="busCreatorOutPort" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//OutPortBlock"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="busSelectorInPort" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//InPortBlock"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="busOfBusses" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//Line"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="CS_inPort" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//InPortBlock"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="CS_outPort" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//OutPortBlock"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="compInstName" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="InstConfig2SimMod" eSuperTypes="#//AbstractContainerCorrespondenceNode #//CompInstConfig2SubSys">
<eStructuralFeatures xsi:type="ecore:EReference" name="ModelElementCategory" eType="ecore:EClass ../../org.muml.core.modelinstance/model/modelinstance.ecore#//ModelElementCategory"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="AtomComp2AtomSys" eSuperTypes="#//AbstractContainerCorrespondenceNode">
<eStructuralFeatures xsi:type="ecore:EReference" name="clockSignal" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//InPortBlock"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="chart" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//stateflow/Chart"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="comp" eType="ecore:EClass ../../org.muml.pim/model/pim.ecore#//component/Component"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="sys" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//SubSystem"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="StructComp2SubSys" eSuperTypes="#//AbstractContainerCorrespondenceNode #//CompInstConfig2SubSys">
<eStructuralFeatures xsi:type="ecore:EReference" name="ComponentInstance" eType="ecore:EClass ../../org.muml.pim/model/pim.ecore#//instance/ComponentInstance"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="LibraryReference" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//LibraryReference"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="comp" eType="ecore:EClass ../../org.muml.pim/model/pim.ecore#//component/Component"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CompInst2LibRef" eSuperTypes="#//AbstractContainerCorrespondenceNode">
<eStructuralFeatures xsi:type="ecore:EReference" name="compInst" eType="ecore:EClass ../../org.muml.pim/model/pim.ecore#//instance/ComponentInstance"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="libRef" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//LibraryReference"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Port2Ports" eSuperTypes="#//AbstractContainerCorrespondenceNode">
<eStructuralFeatures xsi:type="ecore:EReference" name="inPort" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//InPortBlock"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="outPort" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//OutPortBlock"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="port" eType="ecore:EClass ../../org.muml.pim/model/pim.ecore#//component/Port"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="help_inPort" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//InPortBlock"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="help_outPort" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//OutPortBlock"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="portInst" eType="ecore:EClass ../../org.muml.pim/model/pim.ecore#//instance/PortInstance"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="multiPortInst" eType="ecore:EClass ../../org.muml.pim/model/pim.ecore#//instance/DiscreteMultiPortInstance"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="compInst" eType="ecore:EClass ../../org.muml.pim/model/pim.ecore#//instance/ComponentInstance"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="sc_ReadIn" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//InPortBlock"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="sc_ReadOut" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//OutPortBlock"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="sc_WriteIn" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//InPortBlock"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="sc_WriteOut" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//OutPortBlock"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="sc_help_ReadIn" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//OutPortBlock"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="sc_help_ReadOut" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//InPortBlock"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="sc_help_WriteIn" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//OutPortBlock"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="sc_help_WriteOut" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//InPortBlock"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="mi" eType="ecore:EClass ../../org.muml.pim/model/pim.ecore#//msgtype/MessageTypeRepository"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="net_address_inPort" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//InPortBlock"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="receiver_net_address_inPort"
eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//InPortBlock"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="constant" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//Constant"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="portType" eType="ecore:EClass ../../org.muml.pim/model/pim.ecore#//types/DataType"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="lineFromReadOut" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//Line"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="lineToReadIn" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//Line"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="linkLayer" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//msglib/LinkLayer"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="AssemblyInst2Line" eSuperTypes="#//AbstractContainerCorrespondenceNode">
<eStructuralFeatures xsi:type="ecore:EReference" name="assemblyInst" eType="ecore:EClass ../../org.muml.pim/model/pim.ecore#//instance/AssemblyConnectorInstance"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="line" upperBound="-1" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//Line"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Del2Line" eSuperTypes="#//AbstractContainerCorrespondenceNode">
<eStructuralFeatures xsi:type="ecore:EReference" name="DelegationInstance" eType="ecore:EClass ../../org.muml.pim/model/pim.ecore#//instance/DelegationConnectorInstance"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="Line" upperBound="-1" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//Line"/>
</eClassifiers>
<eSubpackages name="behavior" nsURI="http://www.muml.org/simulink/adapter/corrmodel/behavior/1.0.0"
nsPrefix="fujaba2simulinkbehavior">
<eClassifiers xsi:type="ecore:EClass" name="RtScCat2SfM" eSuperTypes="#//AbstractContainerCorrespondenceNode">
<eStructuralFeatures xsi:type="ecore:EReference" name="sfM" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//stateflow/StateflowMachine"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="rtScCat" eType="ecore:EClass ../../org.muml.core.modelinstance/model/modelinstance.ecore#//ModelElementCategory"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="FRtSc2Chart" eSuperTypes="#//AbstractContainerCorrespondenceNode">
<eStructuralFeatures xsi:type="ecore:EReference" name="chart" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//stateflow/Chart"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="fRtSc" eType="ecore:EClass ../../org.muml.pim/model/pim.ecore#//realtimestatechart/RealtimeStatechart"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="mt_par" upperBound="-1"
eType="#//behavior/MT_Par2MTD"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="sfChartState" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//stateflow/State"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="sfChartRegion" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//stateflow/State"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="sfQueueRegion" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//stateflow/State"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="sfSelfTrans" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//stateflow/Transition"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ScState2SfState" eSuperTypes="#//AbstractContainerCorrespondenceNode">
<eStructuralFeatures xsi:type="ecore:EReference" name="scState" eType="ecore:EClass ../../org.muml.pim/model/pim.ecore#//realtimestatechart/State"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="sfState" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//stateflow/State"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ScTrans2SfTrans" eSuperTypes="#//AbstractContainerCorrespondenceNode">
<eStructuralFeatures xsi:type="ecore:EReference" name="scTrans" eType="ecore:EClass ../../org.muml.pim/model/pim.ecore#//realtimestatechart/Transition"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="sfTrans" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//stateflow/Transition"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="scReg" eType="ecore:EClass ../../org.muml.pim/model/pim.ecore#//realtimestatechart/Region"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ScRegion2sfParallel" eSuperTypes="#//AbstractContainerCorrespondenceNode">
<eStructuralFeatures xsi:type="ecore:EReference" name="scRegion" eType="ecore:EClass ../../org.muml.pim/model/pim.ecore#//realtimestatechart/Region"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="sfParallelState" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//stateflow/State"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="scRegRtsc" eType="ecore:EClass ../../org.muml.pim/model/pim.ecore#//realtimestatechart/RealtimeStatechart"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ScEntry2sfEntry" eSuperTypes="#//AbstractContainerCorrespondenceNode">
<eStructuralFeatures xsi:type="ecore:EReference" name="scEntryEvent" eType="ecore:EClass ../../org.muml.pim/model/pim.ecore#//realtimestatechart/EntryEvent"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="sfEntryAction" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//stateflow/Action"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="scEntryAction" eType="ecore:EClass ../../org.muml.pim/model/pim.ecore#//realtimestatechart/Action"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="scExpr" eType="ecore:EClass ../../org.muml.core/model/core.ecore#//expressions/Expression"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="scClock" eType="ecore:EClass ../../org.muml.pim/model/pim.ecore#//realtimestatechart/Clock"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ScExit2sfExit" eSuperTypes="#//AbstractContainerCorrespondenceNode">
<eStructuralFeatures xsi:type="ecore:EReference" name="scExitEvent" eType="ecore:EClass ../../org.muml.pim/model/pim.ecore#//realtimestatechart/ExitEvent"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="scExitAction" eType="ecore:EClass ../../org.muml.pim/model/pim.ecore#//realtimestatechart/Action"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="scExitExpr" eType="ecore:EClass ../../org.muml.core/model/core.ecore#//expressions/Expression"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="sfExitAction" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//stateflow/Action"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="scClock" eType="ecore:EClass ../../org.muml.pim/model/pim.ecore#//realtimestatechart/Clock"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ScStEnPoint2sfTrans" eSuperTypes="#//AbstractContainerCorrespondenceNode">
<eStructuralFeatures xsi:type="ecore:EReference" name="sfTrans" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//stateflow/Transition"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="scInTrans" eType="ecore:EClass ../../org.muml.pim/model/pim.ecore#//realtimestatechart/Transition"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="scOutTrans" eType="ecore:EClass ../../org.muml.pim/model/pim.ecore#//realtimestatechart/Transition"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="scStateEntryP" eType="ecore:EClass ../../org.muml.pim/model/pim.ecore#//realtimestatechart/EntryPoint"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ScStExPoint2sfTrans" eSuperTypes="#//AbstractContainerCorrespondenceNode">
<eStructuralFeatures xsi:type="ecore:EReference" name="sfTrans" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//stateflow/Transition"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="scOutTrans" eType="ecore:EClass ../../org.muml.pim/model/pim.ecore#//realtimestatechart/Transition"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="scInTrans" eType="ecore:EClass ../../org.muml.pim/model/pim.ecore#//realtimestatechart/Transition"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="scStExPoint" eType="ecore:EClass ../../org.muml.pim/model/pim.ecore#//realtimestatechart/ExitPoint"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ScSyncChannel2sfSignal" eSuperTypes="#//AbstractContainerCorrespondenceNode">
<eStructuralFeatures xsi:type="ecore:EReference" name="scSyncChannel" eType="ecore:EClass ../../org.muml.pim/model/pim.ecore#//realtimestatechart/SynchronizationChannel"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="sfSyncEvent" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//stateflow/Event"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ScSyncReceiveAction2sfAction" eSuperTypes="#//AbstractContainerCorrespondenceNode">
<eStructuralFeatures xsi:type="ecore:EReference" name="scAction" eType="ecore:EClass ../../org.muml.pim/model/pim.ecore#//realtimestatechart/Action"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="scActionExpr" eType="ecore:EClass ../../org.muml.core/model/core.ecore#//expressions/TextualExpression"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="sfAction" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//stateflow/Action"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ScSyncReceive2sfSyncReceive" eSuperTypes="#//AbstractContainerCorrespondenceNode">
<eStructuralFeatures xsi:type="ecore:EReference" name="scSyncReceive" eType="ecore:EClass ../../org.muml.pim/model/pim.ecore#//realtimestatechart/Synchronization"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="sfEntryAction" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//stateflow/Action"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="sfExitAction" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//stateflow/Action"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="sfTransEvent" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//stateflow/Event"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="scSyncSend2sfSyncSend" eSuperTypes="#//AbstractContainerCorrespondenceNode">
<eStructuralFeatures xsi:type="ecore:EReference" name="sfGuard" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//stateflow/Action"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="sfAssignment" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//stateflow/Action"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="scTransAnnotation" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EAnnotation"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="scAnnDetails" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EStringToStringMapEntry"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ScSyncPara2sfSyncParaData" eSuperTypes="#//AbstractContainerCorrespondenceNode"/>
<eClassifiers xsi:type="ecore:EClass" name="MT_Par2MTD" eSuperTypes="#//AbstractContainerCorrespondenceNode">
<eStructuralFeatures xsi:type="ecore:EReference" name="mt" eType="ecore:EClass ../../org.muml.pim/model/pim.ecore#//msgtype/MessageType"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="par" eType="ecore:EClass ../../org.muml.pim/model/pim.ecore#//behavior/Parameter"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="data" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//stateflow/Data"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="scAttribute2sfData" eSuperTypes="#//AbstractContainerCorrespondenceNode">
<eStructuralFeatures xsi:type="ecore:EReference" name="scAttribute" eType="ecore:EClass ../../org.muml.pim/model/pim.ecore#//behavior/Variable"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="sfData" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//stateflow/Data"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="scType" eType="ecore:EClass ../../org.muml.pim/model/pim.ecore#//types/DataType"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="scAttrType" eType="ecore:EClass ../../org.muml.pim/model/pim.ecore#//types/DataType"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="scSendAsync2sfTransAction" eSuperTypes="#//AbstractContainerCorrespondenceNode">
<eStructuralFeatures xsi:type="ecore:EReference" name="sfSendAsync" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//stateflow/Action"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="AsynchronousMessageEvent"
eType="ecore:EClass ../../org.muml.pim/model/pim.ecore#//realtimestatechart/AsynchronousMessageEvent"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="Message" eType="ecore:EClass ../../org.muml.pim/model/pim.ecore#//realtimestatechart/Message"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="ActionValue" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
defaultValueLiteral=""/>
<eStructuralFeatures xsi:type="ecore:EReference" name="scPara" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EParameter"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="parBind" eType="ecore:EClass ../../org.muml.pim/model/pim.ecore#//behavior/ParameterBinding"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="scSendParaBind2sfAction" eSuperTypes="#//AbstractContainerCorrespondenceNode">
<eStructuralFeatures xsi:type="ecore:EReference" name="sfParaBAction" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//stateflow/Action"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="scAnnotation" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EAnnotation"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="scDetails" eType="ecore:EClass platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EStringToStringMapEntry"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="scAsyncSend2sfAction" eSuperTypes="#//AbstractContainerCorrespondenceNode">
<eStructuralFeatures xsi:type="ecore:EReference" name="sfEnqAction" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//stateflow/Action"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="AsynchronousMessageEvent"
eType="ecore:EClass ../../org.muml.pim/model/pim.ecore#//realtimestatechart/AsynchronousMessageEvent"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="EAnnotation" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EAnnotation"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="EStringToStringMapEntry"
eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EStringToStringMapEntry"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="scAsyncRec2sfAsyncGuard" eSuperTypes="#//AbstractContainerCorrespondenceNode">
<eStructuralFeatures xsi:type="ecore:EReference" name="guardAnnotation" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EStringToStringMapEntry"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="EAnnotation" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EAnnotation"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="AsynchronousMessageEvent"
eType="ecore:EClass ../../org.muml.pim/model/pim.ecore#//realtimestatechart/AsynchronousMessageEvent"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="asyncRecGuard" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//stateflow/Action"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="scClock2sfData" eSuperTypes="#//AbstractContainerCorrespondenceNode">
<eStructuralFeatures xsi:type="ecore:EReference" name="scClock" eType="ecore:EClass ../../org.muml.pim/model/pim.ecore#//realtimestatechart/Clock"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="sfClockVariable" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//stateflow/Data"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="scClockConstr2sfGuard" eSuperTypes="#//AbstractContainerCorrespondenceNode">
<eStructuralFeatures xsi:type="ecore:EReference" name="scClockConstr" eType="ecore:EClass ../../org.muml.pim/model/pim.ecore#//realtimestatechart/ClockConstraint"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="scBound" eType="ecore:EClass ../../org.muml.pim/model/pim.ecore#//valuetype/TimeValue"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="scClock" eType="ecore:EClass ../../org.muml.pim/model/pim.ecore#//realtimestatechart/Clock"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="sfClockGuard" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//stateflow/Action"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="clock2ClockReset" eSuperTypes="#//AbstractContainerCorrespondenceNode">
<eStructuralFeatures xsi:type="ecore:EReference" name="scClock" eType="ecore:EClass ../../org.muml.pim/model/pim.ecore#//realtimestatechart/Clock"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="sfClockReset" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//stateflow/Action"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="scInvariant2sfInvError" eSuperTypes="#//AbstractContainerCorrespondenceNode">
<eStructuralFeatures xsi:type="ecore:EReference" name="scInvariant" eType="ecore:EClass ../../org.muml.pim/model/pim.ecore#//realtimestatechart/ClockConstraint"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="scBound" eType="ecore:EClass ../../org.muml.pim/model/pim.ecore#//valuetype/TimeValue"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="scClock" eType="ecore:EClass ../../org.muml.pim/model/pim.ecore#//realtimestatechart/Clock"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="sfInvTrans" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//stateflow/Transition"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="sfInvGuard" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//stateflow/Action"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="sfInvNode" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//stateflow/State"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="scGuard2sfGuard" eSuperTypes="#//AbstractContainerCorrespondenceNode">
<eStructuralFeatures xsi:type="ecore:EReference" name="sfGuard" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//stateflow/Action"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="scAnnotation" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EAnnotation"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="scDetails" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EStringToStringMapEntry"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="scAction2sfAction" eSuperTypes="#//AbstractContainerCorrespondenceNode">
<eStructuralFeatures xsi:type="ecore:EReference" name="scAction" eType="ecore:EClass ../../org.muml.pim/model/pim.ecore#//realtimestatechart/Action"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="sfAction" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//stateflow/Action"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="scActionExpr" eType="ecore:EClass ../../org.muml.core/model/core.ecore#//expressions/Expression"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="scOp2sfEmbFunc" eSuperTypes="#//AbstractContainerCorrespondenceNode">
<eStructuralFeatures xsi:type="ecore:EReference" name="scOperation" eType="ecore:EClass ../../org.muml.pim/model/pim.ecore#//behavior/Operation"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="sfEmbFunc" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//stateflow/EmbeddedFunction"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="scAnnotation" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EAnnotation"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="scDetails" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EStringToStringMapEntry"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="scOpData2sfEmbFuncData" eSuperTypes="#//AbstractContainerCorrespondenceNode">
<eStructuralFeatures xsi:type="ecore:EReference" name="scParameter" eType="ecore:EClass ../../org.muml.pim/model/pim.ecore#//behavior/Parameter"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="sfData" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//stateflow/Data"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="scParaType" eType="ecore:EClass ../../org.muml.pim/model/pim.ecore#//types/PrimitiveDataType"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="scAsyncRec2sfDequeue" eSuperTypes="#//AbstractContainerCorrespondenceNode">
<eStructuralFeatures xsi:type="ecore:EReference" name="scDetailsDequeue" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EStringToStringMapEntry"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="scAction" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//stateflow/Action"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="scActionSelfTrans2sfAction" eSuperTypes="#//AbstractContainerCorrespondenceNode">
<eStructuralFeatures xsi:type="ecore:EReference" name="scAction" eType="ecore:EClass ../../org.muml.pim/model/pim.ecore#//realtimestatechart/Action"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="sfAction" eType="ecore:EClass ../../org.muml.simulink/model/Simulink.ecore#//stateflow/Action"/>
</eClassifiers>
</eSubpackages>
</ecore:EPackage>
| github:ecore:/data/fraunhofer-iem/mechatronicuml-simulinkadapter/org.muml.simulink.adapter.corrmodel/model/fujaba2simulink.ecore | ecore | corrmodel
AbstractContainerCorrespondenceNode
childCorresp
RootNode2SimulinkContainer
RootNode
SimulinkContainer
packetBus
busOfBusses
cic2ss
atomCompLib
ModElCat2SimLib
modElCat
simLib
CompInstConfig2SubSys
instConfig
subSys
communicationSwitch
busCreator
busSelector
busCreatorOutPort
busSelectorInPort
busOfBusses
CS_inPort
CS_outPort
compInstName
InstConfig2SimMod
ModelElementCategory
AtomComp2AtomSys
clockSignal
chart
comp
sys
StructComp2SubSys
ComponentInstance
LibraryReference
comp
CompInst2LibRef
compInst
libRef
Port2Ports
inPort
outPort
port
help_inPort
help_outPort
portInst
multiPortInst
compInst
sc_ReadIn
sc_ReadOut
sc_WriteIn
sc_WriteOut
sc_help_ReadIn
sc_help_ReadOut
sc_help_WriteIn
sc_help_WriteOut
mi
net_address_inPort
receiver_net_address_inPort
constant
portType
lineFromReadOut
lineToReadIn
linkLayer
AssemblyInst2Line
assemblyInst
line
Del2Line
DelegationInstance
Line
behavior
RtScCat2SfM
sfM
rtScCat
FRtSc2Chart
chart
fRtSc
mt_par
sfChartState
sfChartRegion
sfQueueRegion
sfSelfTrans
ScState2SfState
scState
sfState
ScTrans2SfTrans
scTrans
sfTrans
scReg
ScRegion2sfParallel
scRegion
sfParallelState
scRegRtsc
ScEntry2sfEntry
scEntryEvent
sfEntryAction
scEntryAction
scExpr
scClock
ScExit2sfExit
scExitEvent
scExitAction
scExitExpr
sfExitAction
scClock
ScStEnPoint2sfTrans
sfTrans
scInTrans
scOutTrans
scStateEntryP
ScStExPoint2sfTrans
sfTrans
scOutTrans
scInTrans
scStExPoint
ScSyncChannel2sfSignal
scSyncChannel
sfSyncEvent
ScSyncReceiveAction2sfAction
scAction
scActionExpr
sfAction
ScSyncReceive2sfSyncReceive
scSyncReceive
sfEntryAction
sfExitAction
sfTransEvent
scSyncSend2sfSyncSend
sfGuard
sfAssignment
scTransAnnotation
scAnnDetails
ScSyncPara2sfSyncParaData
MT_Par2MTD
mt
par
data
scAttribute2sfData
scAttribute
sfData
scType
scAttrType
scSendAsync2sfTransAction
sfSendAsync
AsynchronousMessageEvent
Message
ActionValue
scPara
parBind
scSendParaBind2sfAction
sfParaBAction
scAnnotation
scDetails
scAsyncSend2sfAction
sfEnqAction
AsynchronousMessageEvent
EAnnotation
EStringToStringMapEntry
scAsyncRec2sfAsyncGuard
guardAnnotation
EAnnotation
AsynchronousMessageEvent
asyncRecGuard
scClock2sfData
scClock
sfClockVariable
scClockConstr2sfGuard
scClockConstr
scBound
scClock
sfClockGuard
clock2ClockReset
scClock
sfClockReset
scInvariant2sfInvError
scInvariant
scBound
scClock
sfInvTrans
sfInvGuard
sfInvNode
scGuard2sfGuard
sfGuard
scAnnotation
scDetails
scAction2sfAction
scAction
sfAction
scActionExpr
scOp2sfEmbFunc
scOperation
sfEmbFunc
scAnnotation
scDetails
scOpData2sfEmbFuncData
scParameter
sfData
scParaType
scAsyncRec2sfDequeue
scDetailsDequeue
scAction
scActionSelfTrans2sfAction
scAction
sfAction | null | {"directed":true,"nodes":[{"nsPrefix":"fujaba2simulink","nsURI":"http://www.muml.org/simulink/adapter/corrmodel/1.0.0","name":"corrmodel","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AbstractContainerCorrespondenceNode","instanceClass":null,"abstract":true,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RootNode2SimulinkContainer","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ModElCat2SimLib","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CompInstConfig2SubSys","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InstConfig2SimMod","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AtomComp2AtomSys","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StructComp2SubSys","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CompInst2LibRef","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Port2Ports","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AssemblyInst2Line","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Del2Line","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"nsPrefix":"fujaba2simulinkbehavior","nsURI":"http://www.muml.org/simulink/adapter/corrmodel/behavior/1.0.0","name":"behavior","id":12,"eClass":"EPackage"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"childCorresp","changeable":true,"resolveProxies":true,"lowerBound":0,"id":13,"derived":false},{"id":14,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"RootNode","changeable":true,"resolveProxies":true,"lowerBound":0,"id":15,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"SimulinkContainer","changeable":true,"resolveProxies":true,"lowerBound":0,"id":16,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"packetBus","changeable":true,"resolveProxies":true,"lowerBound":0,"id":17,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"busOfBusses","changeable":true,"resolveProxies":true,"lowerBound":0,"id":18,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"cic2ss","changeable":true,"resolveProxies":true,"lowerBound":0,"id":19,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"atomCompLib","changeable":true,"resolveProxies":true,"lowerBound":0,"id":20,"derived":false},{"id":21,"eClass":"EGenericType"},{"id":22,"eClass":"EGenericType"},{"id":23,"eClass":"EGenericType"},{"id":24,"eClass":"EGenericType"},{"id":25,"eClass":"EGenericType"},{"id":26,"eClass":"EGenericType"},{"id":27,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"modElCat","changeable":true,"resolveProxies":true,"lowerBound":0,"id":28,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"simLib","changeable":true,"resolveProxies":true,"lowerBound":0,"id":29,"derived":false},{"id":30,"eClass":"EGenericType"},{"id":31,"eClass":"EGenericType"},{"id":32,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"instConfig","changeable":true,"resolveProxies":true,"lowerBound":0,"id":33,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"subSys","changeable":true,"resolveProxies":true,"lowerBound":0,"id":34,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"communicationSwitch","changeable":true,"resolveProxies":true,"lowerBound":0,"id":35,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"busCreator","changeable":true,"resolveProxies":true,"lowerBound":0,"id":36,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"busSelector","changeable":true,"resolveProxies":true,"lowerBound":0,"id":37,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"busCreatorOutPort","changeable":true,"resolveProxies":true,"lowerBound":0,"id":38,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"busSelectorInPort","changeable":true,"resolveProxies":true,"lowerBound":0,"id":39,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"busOfBusses","changeable":true,"resolveProxies":true,"lowerBound":0,"id":40,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"CS_inPort","changeable":true,"resolveProxies":true,"lowerBound":0,"id":41,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"CS_outPort","changeable":true,"resolveProxies":true,"lowerBound":0,"id":42,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"compInstName","changeable":true,"lowerBound":0,"iD":false,"id":43,"derived":false},{"id":44,"eClass":"EGenericType"},{"id":45,"eClass":"EGenericType"},{"id":46,"eClass":"EGenericType"},{"id":47,"eClass":"EGenericType"},{"id":48,"eClass":"EGenericType"},{"id":49,"eClass":"EGenericType"},{"id":50,"eClass":"EGenericType"},{"id":51,"eClass":"EGenericType"},{"id":52,"eClass":"EGenericType"},{"id":53,"eClass":"EGenericType"},{"id":54,"eClass":"EGenericType"},{"id":55,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"ModelElementCategory","changeable":true,"resolveProxies":true,"lowerBound":0,"id":56,"derived":false},{"id":57,"eClass":"EGenericType"},{"id":58,"eClass":"EGenericType"},{"id":59,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"clockSignal","changeable":true,"resolveProxies":true,"lowerBound":0,"id":60,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"chart","changeable":true,"resolveProxies":true,"lowerBound":0,"id":61,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"comp","changeable":true,"resolveProxies":true,"lowerBound":0,"id":62,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"sys","changeable":true,"resolveProxies":true,"lowerBound":0,"id":63,"derived":false},{"id":64,"eClass":"EGenericType"},{"id":65,"eClass":"EGenericType"},{"id":66,"eClass":"EGenericType"},{"id":67,"eClass":"EGenericType"},{"id":68,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"ComponentInstance","changeable":true,"resolveProxies":true,"lowerBound":0,"id":69,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"LibraryReference","changeable":true,"resolveProxies":true,"lowerBound":0,"id":70,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"comp","changeable":true,"resolveProxies":true,"lowerBound":0,"id":71,"derived":false},{"id":72,"eClass":"EGenericType"},{"id":73,"eClass":"EGenericType"},{"id":74,"eClass":"EGenericType"},{"id":75,"eClass":"EGenericType"},{"id":76,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"compInst","changeable":true,"resolveProxies":true,"lowerBound":0,"id":77,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"libRef","changeable":true,"resolveProxies":true,"lowerBound":0,"id":78,"derived":false},{"id":79,"eClass":"EGenericType"},{"id":80,"eClass":"EGenericType"},{"id":81,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"inPort","changeable":true,"resolveProxies":true,"lowerBound":0,"id":82,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"outPort","changeable":true,"resolveProxies":true,"lowerBound":0,"id":83,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"port","changeable":true,"resolveProxies":true,"lowerBound":0,"id":84,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"help_inPort","changeable":true,"resolveProxies":true,"lowerBound":0,"id":85,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"help_outPort","changeable":true,"resolveProxies":true,"lowerBound":0,"id":86,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"portInst","changeable":true,"resolveProxies":true,"lowerBound":0,"id":87,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"multiPortInst","changeable":true,"resolveProxies":true,"lowerBound":0,"id":88,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"compInst","changeable":true,"resolveProxies":true,"lowerBound":0,"id":89,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"sc_ReadIn","changeable":true,"resolveProxies":true,"lowerBound":0,"id":90,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"sc_ReadOut","changeable":true,"resolveProxies":true,"lowerBound":0,"id":91,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"sc_WriteIn","changeable":true,"resolveProxies":true,"lowerBound":0,"id":92,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"sc_WriteOut","changeable":true,"resolveProxies":true,"lowerBound":0,"id":93,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"sc_help_ReadIn","changeable":true,"resolveProxies":true,"lowerBound":0,"id":94,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"sc_help_ReadOut","changeable":true,"resolveProxies":true,"lowerBound":0,"id":95,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"sc_help_WriteIn","changeable":true,"resolveProxies":true,"lowerBound":0,"id":96,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"sc_help_WriteOut","changeable":true,"resolveProxies":true,"lowerBound":0,"id":97,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"mi","changeable":true,"resolveProxies":true,"lowerBound":0,"id":98,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"net_address_inPort","changeable":true,"resolveProxies":true,"lowerBound":0,"id":99,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"receiver_net_address_inPort","changeable":true,"resolveProxies":true,"lowerBound":0,"id":100,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"constant","changeable":true,"resolveProxies":true,"lowerBound":0,"id":101,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"portType","changeable":true,"resolveProxies":true,"lowerBound":0,"id":102,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"lineFromReadOut","changeable":true,"resolveProxies":true,"lowerBound":0,"id":103,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"lineToReadIn","changeable":true,"resolveProxies":true,"lowerBound":0,"id":104,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"linkLayer","changeable":true,"resolveProxies":true,"lowerBound":0,"id":105,"derived":false},{"id":106,"eClass":"EGenericType"},{"id":107,"eClass":"EGenericType"},{"id":108,"eClass":"EGenericType"},{"id":109,"eClass":"EGenericType"},{"id":110,"eClass":"EGenericType"},{"id":111,"eClass":"EGenericType"},{"id":112,"eClass":"EGenericType"},{"id":113,"eClass":"EGenericType"},{"id":114,"eClass":"EGenericType"},{"id":115,"eClass":"EGenericType"},{"id":116,"eClass":"EGenericType"},{"id":117,"eClass":"EGenericType"},{"id":118,"eClass":"EGenericType"},{"id":119,"eClass":"EGenericType"},{"id":120,"eClass":"EGenericType"},{"id":121,"eClass":"EGenericType"},{"id":122,"eClass":"EGenericType"},{"id":123,"eClass":"EGenericType"},{"id":124,"eClass":"EGenericType"},{"id":125,"eClass":"EGenericType"},{"id":126,"eClass":"EGenericType"},{"id":127,"eClass":"EGenericType"},{"id":128,"eClass":"EGenericType"},{"id":129,"eClass":"EGenericType"},{"id":130,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"assemblyInst","changeable":true,"resolveProxies":true,"lowerBound":0,"id":131,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"line","changeable":true,"resolveProxies":true,"lowerBound":0,"id":132,"derived":false},{"id":133,"eClass":"EGenericType"},{"id":134,"eClass":"EGenericType"},{"id":135,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"DelegationInstance","changeable":true,"resolveProxies":true,"lowerBound":0,"id":136,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"Line","changeable":true,"resolveProxies":true,"lowerBound":0,"id":137,"derived":false},{"id":138,"eClass":"EGenericType"},{"id":139,"eClass":"EGenericType"},{"id":140,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RtScCat2SfM","instanceClass":null,"abstract":false,"id":141,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FRtSc2Chart","instanceClass":null,"abstract":false,"id":142,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ScState2SfState","instanceClass":null,"abstract":false,"id":143,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ScTrans2SfTrans","instanceClass":null,"abstract":false,"id":144,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ScRegion2sfParallel","instanceClass":null,"abstract":false,"id":145,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ScEntry2sfEntry","instanceClass":null,"abstract":false,"id":146,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ScExit2sfExit","instanceClass":null,"abstract":false,"id":147,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ScStEnPoint2sfTrans","instanceClass":null,"abstract":false,"id":148,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ScStExPoint2sfTrans","instanceClass":null,"abstract":false,"id":149,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ScSyncChannel2sfSignal","instanceClass":null,"abstract":false,"id":150,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ScSyncReceiveAction2sfAction","instanceClass":null,"abstract":false,"id":151,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ScSyncReceive2sfSyncReceive","instanceClass":null,"abstract":false,"id":152,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"scSyncSend2sfSyncSend","instanceClass":null,"abstract":false,"id":153,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ScSyncPara2sfSyncParaData","instanceClass":null,"abstract":false,"id":154,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MT_Par2MTD","instanceClass":null,"abstract":false,"id":155,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"scAttribute2sfData","instanceClass":null,"abstract":false,"id":156,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"scSendAsync2sfTransAction","instanceClass":null,"abstract":false,"id":157,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"scSendParaBind2sfAction","instanceClass":null,"abstract":false,"id":158,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"scAsyncSend2sfAction","instanceClass":null,"abstract":false,"id":159,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"scAsyncRec2sfAsyncGuard","instanceClass":null,"abstract":false,"id":160,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"scClock2sfData","instanceClass":null,"abstract":false,"id":161,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"scClockConstr2sfGuard","instanceClass":null,"abstract":false,"id":162,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"clock2ClockReset","instanceClass":null,"abstract":false,"id":163,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"scInvariant2sfInvError","instanceClass":null,"abstract":false,"id":164,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"scGuard2sfGuard","instanceClass":null,"abstract":false,"id":165,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"scAction2sfAction","instanceClass":null,"abstract":false,"id":166,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"scOp2sfEmbFunc","instanceClass":null,"abstract":false,"id":167,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"scOpData2sfEmbFuncData","instanceClass":null,"abstract":false,"id":168,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"scAsyncRec2sfDequeue","instanceClass":null,"abstract":false,"id":169,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"scActionSelfTrans2sfAction","instanceClass":null,"abstract":false,"id":170,"interface":false,"eClass":"EClass"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"sfM","changeable":true,"resolveProxies":true,"lowerBound":0,"id":171,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"rtScCat","changeable":true,"resolveProxies":true,"lowerBound":0,"id":172,"derived":false},{"id":173,"eClass":"EGenericType"},{"id":174,"eClass":"EGenericType"},{"id":175,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"chart","changeable":true,"resolveProxies":true,"lowerBound":0,"id":176,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"fRtSc","changeable":true,"resolveProxies":true,"lowerBound":0,"id":177,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"mt_par","changeable":true,"resolveProxies":true,"lowerBound":0,"id":178,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"sfChartState","changeable":true,"resolveProxies":true,"lowerBound":0,"id":179,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"sfChartRegion","changeable":true,"resolveProxies":true,"lowerBound":0,"id":180,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"sfQueueRegion","changeable":true,"resolveProxies":true,"lowerBound":0,"id":181,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"sfSelfTrans","changeable":true,"resolveProxies":true,"lowerBound":0,"id":182,"derived":false},{"id":183,"eClass":"EGenericType"},{"id":184,"eClass":"EGenericType"},{"id":185,"eClass":"EGenericType"},{"id":186,"eClass":"EGenericType"},{"id":187,"eClass":"EGenericType"},{"id":188,"eClass":"EGenericType"},{"id":189,"eClass":"EGenericType"},{"id":190,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"scState","changeable":true,"resolveProxies":true,"lowerBound":0,"id":191,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"sfState","changeable":true,"resolveProxies":true,"lowerBound":0,"id":192,"derived":false},{"id":193,"eClass":"EGenericType"},{"id":194,"eClass":"EGenericType"},{"id":195,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"scTrans","changeable":true,"resolveProxies":true,"lowerBound":0,"id":196,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"sfTrans","changeable":true,"resolveProxies":true,"lowerBound":0,"id":197,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"scReg","changeable":true,"resolveProxies":true,"lowerBound":0,"id":198,"derived":false},{"id":199,"eClass":"EGenericType"},{"id":200,"eClass":"EGenericType"},{"id":201,"eClass":"EGenericType"},{"id":202,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"scRegion","changeable":true,"resolveProxies":true,"lowerBound":0,"id":203,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"sfParallelState","changeable":true,"resolveProxies":true,"lowerBound":0,"id":204,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"scRegRtsc","changeable":true,"resolveProxies":true,"lowerBound":0,"id":205,"derived":false},{"id":206,"eClass":"EGenericType"},{"id":207,"eClass":"EGenericType"},{"id":208,"eClass":"EGenericType"},{"id":209,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"scEntryEvent","changeable":true,"resolveProxies":true,"lowerBound":0,"id":210,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"sfEntryAction","changeable":true,"resolveProxies":true,"lowerBound":0,"id":211,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"scEntryAction","changeable":true,"resolveProxies":true,"lowerBound":0,"id":212,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"scExpr","changeable":true,"resolveProxies":true,"lowerBound":0,"id":213,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"scClock","changeable":true,"resolveProxies":true,"lowerBound":0,"id":214,"derived":false},{"id":215,"eClass":"EGenericType"},{"id":216,"eClass":"EGenericType"},{"id":217,"eClass":"EGenericType"},{"id":218,"eClass":"EGenericType"},{"id":219,"eClass":"EGenericType"},{"id":220,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"scExitEvent","changeable":true,"resolveProxies":true,"lowerBound":0,"id":221,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"scExitAction","changeable":true,"resolveProxies":true,"lowerBound":0,"id":222,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"scExitExpr","changeable":true,"resolveProxies":true,"lowerBound":0,"id":223,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"sfExitAction","changeable":true,"resolveProxies":true,"lowerBound":0,"id":224,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"scClock","changeable":true,"resolveProxies":true,"lowerBound":0,"id":225,"derived":false},{"id":226,"eClass":"EGenericType"},{"id":227,"eClass":"EGenericType"},{"id":228,"eClass":"EGenericType"},{"id":229,"eClass":"EGenericType"},{"id":230,"eClass":"EGenericType"},{"id":231,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"sfTrans","changeable":true,"resolveProxies":true,"lowerBound":0,"id":232,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"scInTrans","changeable":true,"resolveProxies":true,"lowerBound":0,"id":233,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"scOutTrans","changeable":true,"resolveProxies":true,"lowerBound":0,"id":234,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"scStateEntryP","changeable":true,"resolveProxies":true,"lowerBound":0,"id":235,"derived":false},{"id":236,"eClass":"EGenericType"},{"id":237,"eClass":"EGenericType"},{"id":238,"eClass":"EGenericType"},{"id":239,"eClass":"EGenericType"},{"id":240,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"sfTrans","changeable":true,"resolveProxies":true,"lowerBound":0,"id":241,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"scOutTrans","changeable":true,"resolveProxies":true,"lowerBound":0,"id":242,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"scInTrans","changeable":true,"resolveProxies":true,"lowerBound":0,"id":243,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"scStExPoint","changeable":true,"resolveProxies":true,"lowerBound":0,"id":244,"derived":false},{"id":245,"eClass":"EGenericType"},{"id":246,"eClass":"EGenericType"},{"id":247,"eClass":"EGenericType"},{"id":248,"eClass":"EGenericType"},{"id":249,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"scSyncChannel","changeable":true,"resolveProxies":true,"lowerBound":0,"id":250,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"sfSyncEvent","changeable":true,"resolveProxies":true,"lowerBound":0,"id":251,"derived":false},{"id":252,"eClass":"EGenericType"},{"id":253,"eClass":"EGenericType"},{"id":254,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"scAction","changeable":true,"resolveProxies":true,"lowerBound":0,"id":255,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"scActionExpr","changeable":true,"resolveProxies":true,"lowerBound":0,"id":256,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"sfAction","changeable":true,"resolveProxies":true,"lowerBound":0,"id":257,"derived":false},{"id":258,"eClass":"EGenericType"},{"id":259,"eClass":"EGenericType"},{"id":260,"eClass":"EGenericType"},{"id":261,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"scSyncReceive","changeable":true,"resolveProxies":true,"lowerBound":0,"id":262,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"sfEntryAction","changeable":true,"resolveProxies":true,"lowerBound":0,"id":263,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"sfExitAction","changeable":true,"resolveProxies":true,"lowerBound":0,"id":264,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"sfTransEvent","changeable":true,"resolveProxies":true,"lowerBound":0,"id":265,"derived":false},{"id":266,"eClass":"EGenericType"},{"id":267,"eClass":"EGenericType"},{"id":268,"eClass":"EGenericType"},{"id":269,"eClass":"EGenericType"},{"id":270,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"sfGuard","changeable":true,"resolveProxies":true,"lowerBound":0,"id":271,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"sfAssignment","changeable":true,"resolveProxies":true,"lowerBound":0,"id":272,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"scTransAnnotation","changeable":true,"resolveProxies":true,"lowerBound":0,"id":273,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"scAnnDetails","changeable":true,"resolveProxies":true,"lowerBound":0,"id":274,"derived":false},{"id":275,"eClass":"EGenericType"},{"id":276,"eClass":"EGenericType"},{"id":277,"eClass":"EGenericType"},{"id":278,"eClass":"EGenericType"},{"id":279,"eClass":"EGenericType"},{"id":280,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"mt","changeable":true,"resolveProxies":true,"lowerBound":0,"id":281,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"par","changeable":true,"resolveProxies":true,"lowerBound":0,"id":282,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"data","changeable":true,"resolveProxies":true,"lowerBound":0,"id":283,"derived":false},{"id":284,"eClass":"EGenericType"},{"id":285,"eClass":"EGenericType"},{"id":286,"eClass":"EGenericType"},{"id":287,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"scAttribute","changeable":true,"resolveProxies":true,"lowerBound":0,"id":288,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"sfData","changeable":true,"resolveProxies":true,"lowerBound":0,"id":289,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"scType","changeable":true,"resolveProxies":true,"lowerBound":0,"id":290,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"scAttrType","changeable":true,"resolveProxies":true,"lowerBound":0,"id":291,"derived":false},{"id":292,"eClass":"EGenericType"},{"id":293,"eClass":"EGenericType"},{"id":294,"eClass":"EGenericType"},{"id":295,"eClass":"EGenericType"},{"id":296,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"sfSendAsync","changeable":true,"resolveProxies":true,"lowerBound":0,"id":297,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"AsynchronousMessageEvent","changeable":true,"resolveProxies":true,"lowerBound":0,"id":298,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"Message","changeable":true,"resolveProxies":true,"lowerBound":0,"id":299,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":"","volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"","unsettable":false,"transient":false,"unique":true,"name":"ActionValue","changeable":true,"lowerBound":0,"iD":false,"id":300,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"scPara","changeable":true,"resolveProxies":true,"lowerBound":0,"id":301,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"parBind","changeable":true,"resolveProxies":true,"lowerBound":0,"id":302,"derived":false},{"id":303,"eClass":"EGenericType"},{"id":304,"eClass":"EGenericType"},{"id":305,"eClass":"EGenericType"},{"id":306,"eClass":"EGenericType"},{"id":307,"eClass":"EGenericType"},{"id":308,"eClass":"EGenericType"},{"id":309,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"sfParaBAction","changeable":true,"resolveProxies":true,"lowerBound":0,"id":310,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"scAnnotation","changeable":true,"resolveProxies":true,"lowerBound":0,"id":311,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"scDetails","changeable":true,"resolveProxies":true,"lowerBound":0,"id":312,"derived":false},{"id":313,"eClass":"EGenericType"},{"id":314,"eClass":"EGenericType"},{"id":315,"eClass":"EGenericType"},{"id":316,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"sfEnqAction","changeable":true,"resolveProxies":true,"lowerBound":0,"id":317,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"AsynchronousMessageEvent","changeable":true,"resolveProxies":true,"lowerBound":0,"id":318,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"EAnnotation","changeable":true,"resolveProxies":true,"lowerBound":0,"id":319,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"EStringToStringMapEntry","changeable":true,"resolveProxies":true,"lowerBound":0,"id":320,"derived":false},{"id":321,"eClass":"EGenericType"},{"id":322,"eClass":"EGenericType"},{"id":323,"eClass":"EGenericType"},{"id":324,"eClass":"EGenericType"},{"id":325,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"guardAnnotation","changeable":true,"resolveProxies":true,"lowerBound":0,"id":326,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"EAnnotation","changeable":true,"resolveProxies":true,"lowerBound":0,"id":327,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"AsynchronousMessageEvent","changeable":true,"resolveProxies":true,"lowerBound":0,"id":328,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"asyncRecGuard","changeable":true,"resolveProxies":true,"lowerBound":0,"id":329,"derived":false},{"id":330,"eClass":"EGenericType"},{"id":331,"eClass":"EGenericType"},{"id":332,"eClass":"EGenericType"},{"id":333,"eClass":"EGenericType"},{"id":334,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"scClock","changeable":true,"resolveProxies":true,"lowerBound":0,"id":335,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"sfClockVariable","changeable":true,"resolveProxies":true,"lowerBound":0,"id":336,"derived":false},{"id":337,"eClass":"EGenericType"},{"id":338,"eClass":"EGenericType"},{"id":339,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"scClockConstr","changeable":true,"resolveProxies":true,"lowerBound":0,"id":340,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"scBound","changeable":true,"resolveProxies":true,"lowerBound":0,"id":341,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"scClock","changeable":true,"resolveProxies":true,"lowerBound":0,"id":342,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"sfClockGuard","changeable":true,"resolveProxies":true,"lowerBound":0,"id":343,"derived":false},{"id":344,"eClass":"EGenericType"},{"id":345,"eClass":"EGenericType"},{"id":346,"eClass":"EGenericType"},{"id":347,"eClass":"EGenericType"},{"id":348,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"scClock","changeable":true,"resolveProxies":true,"lowerBound":0,"id":349,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"sfClockReset","changeable":true,"resolveProxies":true,"lowerBound":0,"id":350,"derived":false},{"id":351,"eClass":"EGenericType"},{"id":352,"eClass":"EGenericType"},{"id":353,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"scInvariant","changeable":true,"resolveProxies":true,"lowerBound":0,"id":354,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"scBound","changeable":true,"resolveProxies":true,"lowerBound":0,"id":355,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"scClock","changeable":true,"resolveProxies":true,"lowerBound":0,"id":356,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"sfInvTrans","changeable":true,"resolveProxies":true,"lowerBound":0,"id":357,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"sfInvGuard","changeable":true,"resolveProxies":true,"lowerBound":0,"id":358,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"sfInvNode","changeable":true,"resolveProxies":true,"lowerBound":0,"id":359,"derived":false},{"id":360,"eClass":"EGenericType"},{"id":361,"eClass":"EGenericType"},{"id":362,"eClass":"EGenericType"},{"id":363,"eClass":"EGenericType"},{"id":364,"eClass":"EGenericType"},{"id":365,"eClass":"EGenericType"},{"id":366,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"sfGuard","changeable":true,"resolveProxies":true,"lowerBound":0,"id":367,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"scAnnotation","changeable":true,"resolveProxies":true,"lowerBound":0,"id":368,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"scDetails","changeable":true,"resolveProxies":true,"lowerBound":0,"id":369,"derived":false},{"id":370,"eClass":"EGenericType"},{"id":371,"eClass":"EGenericType"},{"id":372,"eClass":"EGenericType"},{"id":373,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"scAction","changeable":true,"resolveProxies":true,"lowerBound":0,"id":374,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"sfAction","changeable":true,"resolveProxies":true,"lowerBound":0,"id":375,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"scActionExpr","changeable":true,"resolveProxies":true,"lowerBound":0,"id":376,"derived":false},{"id":377,"eClass":"EGenericType"},{"id":378,"eClass":"EGenericType"},{"id":379,"eClass":"EGenericType"},{"id":380,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"scOperation","changeable":true,"resolveProxies":true,"lowerBound":0,"id":381,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"sfEmbFunc","changeable":true,"resolveProxies":true,"lowerBound":0,"id":382,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"scAnnotation","changeable":true,"resolveProxies":true,"lowerBound":0,"id":383,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"scDetails","changeable":true,"resolveProxies":true,"lowerBound":0,"id":384,"derived":false},{"id":385,"eClass":"EGenericType"},{"id":386,"eClass":"EGenericType"},{"id":387,"eClass":"EGenericType"},{"id":388,"eClass":"EGenericType"},{"id":389,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"scParameter","changeable":true,"resolveProxies":true,"lowerBound":0,"id":390,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"sfData","changeable":true,"resolveProxies":true,"lowerBound":0,"id":391,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"scParaType","changeable":true,"resolveProxies":true,"lowerBound":0,"id":392,"derived":false},{"id":393,"eClass":"EGenericType"},{"id":394,"eClass":"EGenericType"},{"id":395,"eClass":"EGenericType"},{"id":396,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"scDetailsDequeue","changeable":true,"resolveProxies":true,"lowerBound":0,"id":397,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"scAction","changeable":true,"resolveProxies":true,"lowerBound":0,"id":398,"derived":false},{"id":399,"eClass":"EGenericType"},{"id":400,"eClass":"EGenericType"},{"id":401,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"scAction","changeable":true,"resolveProxies":true,"lowerBound":0,"id":402,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"sfAction","changeable":true,"resolveProxies":true,"lowerBound":0,"id":403,"derived":false},{"id":404,"eClass":"EGenericType"},{"id":405,"eClass":"EGenericType"},{"id":406,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":0,"target":8},{"source":0,"target":9},{"source":0,"target":10},{"source":0,"target":11},{"source":0,"target":12},{"source":1,"target":0},{"source":1,"target":13},{"source":13,"target":1},{"source":13,"target":14},{"source":13,"target":1},{"source":14,"target":1},{"source":2,"target":0},{"source":2,"target":1},{"source":2,"target":15},{"source":2,"target":16},{"source":2,"target":17},{"source":2,"target":18},{"source":2,"target":19},{"source":2,"target":20},{"source":2,"target":21},{"source":15,"target":22},{"source":15,"target":2},{"source":16,"target":23},{"source":16,"target":2},{"source":17,"target":24},{"source":17,"target":2},{"source":18,"target":25},{"source":18,"target":2},{"source":19,"target":4},{"source":19,"target":26},{"source":19,"target":2},{"source":26,"target":4},{"source":20,"target":27},{"source":20,"target":2},{"source":21,"target":1},{"source":3,"target":0},{"source":3,"target":1},{"source":3,"target":28},{"source":3,"target":29},{"source":3,"target":30},{"source":28,"target":31},{"source":28,"target":3},{"source":29,"target":32},{"source":29,"target":3},{"source":30,"target":1},{"source":4,"target":0},{"source":4,"target":1},{"source":4,"target":33},{"source":4,"target":34},{"source":4,"target":35},{"source":4,"target":36},{"source":4,"target":37},{"source":4,"target":38},{"source":4,"target":39},{"source":4,"target":40},{"source":4,"target":41},{"source":4,"target":42},{"source":4,"target":43},{"source":4,"target":44},{"source":33,"target":45},{"source":33,"target":4},{"source":34,"target":46},{"source":34,"target":4},{"source":35,"target":47},{"source":35,"target":4},{"source":36,"target":48},{"source":36,"target":4},{"source":37,"target":49},{"source":37,"target":4},{"source":38,"target":50},{"source":38,"target":4},{"source":39,"target":51},{"source":39,"target":4},{"source":40,"target":52},{"source":40,"target":4},{"source":41,"target":53},{"source":41,"target":4},{"source":42,"target":54},{"source":42,"target":4},{"source":43,"target":55},{"source":43,"target":4},{"source":44,"target":1},{"source":5,"target":0},{"source":5,"target":1},{"source":5,"target":4},{"source":5,"target":56},{"source":5,"target":57},{"source":5,"target":58},{"source":56,"target":59},{"source":56,"target":5},{"source":57,"target":1},{"source":58,"target":4},{"source":6,"target":0},{"source":6,"target":1},{"source":6,"target":60},{"source":6,"target":61},{"source":6,"target":62},{"source":6,"target":63},{"source":6,"target":64},{"source":60,"target":65},{"source":60,"target":6},{"source":61,"target":66},{"source":61,"target":6},{"source":62,"target":67},{"source":62,"target":6},{"source":63,"target":68},{"source":63,"target":6},{"source":64,"target":1},{"source":7,"target":0},{"source":7,"target":1},{"source":7,"target":4},{"source":7,"target":69},{"source":7,"target":70},{"source":7,"target":71},{"source":7,"target":72},{"source":7,"target":73},{"source":69,"target":74},{"source":69,"target":7},{"source":70,"target":75},{"source":70,"target":7},{"source":71,"target":76},{"source":71,"target":7},{"source":72,"target":1},{"source":73,"target":4},{"source":8,"target":0},{"source":8,"target":1},{"source":8,"target":77},{"source":8,"target":78},{"source":8,"target":79},{"source":77,"target":80},{"source":77,"target":8},{"source":78,"target":81},{"source":78,"target":8},{"source":79,"target":1},{"source":9,"target":0},{"source":9,"target":1},{"source":9,"target":82},{"source":9,"target":83},{"source":9,"target":84},{"source":9,"target":85},{"source":9,"target":86},{"source":9,"target":87},{"source":9,"target":88},{"source":9,"target":89},{"source":9,"target":90},{"source":9,"target":91},{"source":9,"target":92},{"source":9,"target":93},{"source":9,"target":94},{"source":9,"target":95},{"source":9,"target":96},{"source":9,"target":97},{"source":9,"target":98},{"source":9,"target":99},{"source":9,"target":100},{"source":9,"target":101},{"source":9,"target":102},{"source":9,"target":103},{"source":9,"target":104},{"source":9,"target":105},{"source":9,"target":106},{"source":82,"target":107},{"source":82,"target":9},{"source":83,"target":108},{"source":83,"target":9},{"source":84,"target":109},{"source":84,"target":9},{"source":85,"target":110},{"source":85,"target":9},{"source":86,"target":111},{"source":86,"target":9},{"source":87,"target":112},{"source":87,"target":9},{"source":88,"target":113},{"source":88,"target":9},{"source":89,"target":114},{"source":89,"target":9},{"source":90,"target":115},{"source":90,"target":9},{"source":91,"target":116},{"source":91,"target":9},{"source":92,"target":117},{"source":92,"target":9},{"source":93,"target":118},{"source":93,"target":9},{"source":94,"target":119},{"source":94,"target":9},{"source":95,"target":120},{"source":95,"target":9},{"source":96,"target":121},{"source":96,"target":9},{"source":97,"target":122},{"source":97,"target":9},{"source":98,"target":123},{"source":98,"target":9},{"source":99,"target":124},{"source":99,"target":9},{"source":100,"target":125},{"source":100,"target":9},{"source":101,"target":126},{"source":101,"target":9},{"source":102,"target":127},{"source":102,"target":9},{"source":103,"target":128},{"source":103,"target":9},{"source":104,"target":129},{"source":104,"target":9},{"source":105,"target":130},{"source":105,"target":9},{"source":106,"target":1},{"source":10,"target":0},{"source":10,"target":1},{"source":10,"target":131},{"source":10,"target":132},{"source":10,"target":133},{"source":131,"target":134},{"source":131,"target":10},{"source":132,"target":135},{"source":132,"target":10},{"source":133,"target":1},{"source":11,"target":0},{"source":11,"target":1},{"source":11,"target":136},{"source":11,"target":137},{"source":11,"target":138},{"source":136,"target":139},{"source":136,"target":11},{"source":137,"target":140},{"source":137,"target":11},{"source":138,"target":1},{"source":12,"target":141},{"source":12,"target":142},{"source":12,"target":143},{"source":12,"target":144},{"source":12,"target":145},{"source":12,"target":146},{"source":12,"target":147},{"source":12,"target":148},{"source":12,"target":149},{"source":12,"target":150},{"source":12,"target":151},{"source":12,"target":152},{"source":12,"target":153},{"source":12,"target":154},{"source":12,"target":155},{"source":12,"target":156},{"source":12,"target":157},{"source":12,"target":158},{"source":12,"target":159},{"source":12,"target":160},{"source":12,"target":161},{"source":12,"target":162},{"source":12,"target":163},{"source":12,"target":164},{"source":12,"target":165},{"source":12,"target":166},{"source":12,"target":167},{"source":12,"target":168},{"source":12,"target":169},{"source":12,"target":170},{"source":12,"target":0},{"source":141,"target":12},{"source":141,"target":1},{"source":141,"target":171},{"source":141,"target":172},{"source":141,"target":173},{"source":171,"target":174},{"source":171,"target":141},{"source":172,"target":175},{"source":172,"target":141},{"source":173,"target":1},{"source":142,"target":12},{"source":142,"target":1},{"source":142,"target":176},{"source":142,"target":177},{"source":142,"target":178},{"source":142,"target":179},{"source":142,"target":180},{"source":142,"target":181},{"source":142,"target":182},{"source":142,"target":183},{"source":176,"target":184},{"source":176,"target":142},{"source":177,"target":185},{"source":177,"target":142},{"source":178,"target":155},{"source":178,"target":186},{"source":178,"target":142},{"source":186,"target":155},{"source":179,"target":187},{"source":179,"target":142},{"source":180,"target":188},{"source":180,"target":142},{"source":181,"target":189},{"source":181,"target":142},{"source":182,"target":190},{"source":182,"target":142},{"source":183,"target":1},{"source":143,"target":12},{"source":143,"target":1},{"source":143,"target":191},{"source":143,"target":192},{"source":143,"target":193},{"source":191,"target":194},{"source":191,"target":143},{"source":192,"target":195},{"source":192,"target":143},{"source":193,"target":1},{"source":144,"target":12},{"source":144,"target":1},{"source":144,"target":196},{"source":144,"target":197},{"source":144,"target":198},{"source":144,"target":199},{"source":196,"target":200},{"source":196,"target":144},{"source":197,"target":201},{"source":197,"target":144},{"source":198,"target":202},{"source":198,"target":144},{"source":199,"target":1},{"source":145,"target":12},{"source":145,"target":1},{"source":145,"target":203},{"source":145,"target":204},{"source":145,"target":205},{"source":145,"target":206},{"source":203,"target":207},{"source":203,"target":145},{"source":204,"target":208},{"source":204,"target":145},{"source":205,"target":209},{"source":205,"target":145},{"source":206,"target":1},{"source":146,"target":12},{"source":146,"target":1},{"source":146,"target":210},{"source":146,"target":211},{"source":146,"target":212},{"source":146,"target":213},{"source":146,"target":214},{"source":146,"target":215},{"source":210,"target":216},{"source":210,"target":146},{"source":211,"target":217},{"source":211,"target":146},{"source":212,"target":218},{"source":212,"target":146},{"source":213,"target":219},{"source":213,"target":146},{"source":214,"target":220},{"source":214,"target":146},{"source":215,"target":1},{"source":147,"target":12},{"source":147,"target":1},{"source":147,"target":221},{"source":147,"target":222},{"source":147,"target":223},{"source":147,"target":224},{"source":147,"target":225},{"source":147,"target":226},{"source":221,"target":227},{"source":221,"target":147},{"source":222,"target":228},{"source":222,"target":147},{"source":223,"target":229},{"source":223,"target":147},{"source":224,"target":230},{"source":224,"target":147},{"source":225,"target":231},{"source":225,"target":147},{"source":226,"target":1},{"source":148,"target":12},{"source":148,"target":1},{"source":148,"target":232},{"source":148,"target":233},{"source":148,"target":234},{"source":148,"target":235},{"source":148,"target":236},{"source":232,"target":237},{"source":232,"target":148},{"source":233,"target":238},{"source":233,"target":148},{"source":234,"target":239},{"source":234,"target":148},{"source":235,"target":240},{"source":235,"target":148},{"source":236,"target":1},{"source":149,"target":12},{"source":149,"target":1},{"source":149,"target":241},{"source":149,"target":242},{"source":149,"target":243},{"source":149,"target":244},{"source":149,"target":245},{"source":241,"target":246},{"source":241,"target":149},{"source":242,"target":247},{"source":242,"target":149},{"source":243,"target":248},{"source":243,"target":149},{"source":244,"target":249},{"source":244,"target":149},{"source":245,"target":1},{"source":150,"target":12},{"source":150,"target":1},{"source":150,"target":250},{"source":150,"target":251},{"source":150,"target":252},{"source":250,"target":253},{"source":250,"target":150},{"source":251,"target":254},{"source":251,"target":150},{"source":252,"target":1},{"source":151,"target":12},{"source":151,"target":1},{"source":151,"target":255},{"source":151,"target":256},{"source":151,"target":257},{"source":151,"target":258},{"source":255,"target":259},{"source":255,"target":151},{"source":256,"target":260},{"source":256,"target":151},{"source":257,"target":261},{"source":257,"target":151},{"source":258,"target":1},{"source":152,"target":12},{"source":152,"target":1},{"source":152,"target":262},{"source":152,"target":263},{"source":152,"target":264},{"source":152,"target":265},{"source":152,"target":266},{"source":262,"target":267},{"source":262,"target":152},{"source":263,"target":268},{"source":263,"target":152},{"source":264,"target":269},{"source":264,"target":152},{"source":265,"target":270},{"source":265,"target":152},{"source":266,"target":1},{"source":153,"target":12},{"source":153,"target":1},{"source":153,"target":271},{"source":153,"target":272},{"source":153,"target":273},{"source":153,"target":274},{"source":153,"target":275},{"source":271,"target":276},{"source":271,"target":153},{"source":272,"target":277},{"source":272,"target":153},{"source":273,"target":278},{"source":273,"target":153},{"source":274,"target":279},{"source":274,"target":153},{"source":275,"target":1},{"source":154,"target":12},{"source":154,"target":1},{"source":154,"target":280},{"source":280,"target":1},{"source":155,"target":12},{"source":155,"target":1},{"source":155,"target":281},{"source":155,"target":282},{"source":155,"target":283},{"source":155,"target":284},{"source":281,"target":285},{"source":281,"target":155},{"source":282,"target":286},{"source":282,"target":155},{"source":283,"target":287},{"source":283,"target":155},{"source":284,"target":1},{"source":156,"target":12},{"source":156,"target":1},{"source":156,"target":288},{"source":156,"target":289},{"source":156,"target":290},{"source":156,"target":291},{"source":156,"target":292},{"source":288,"target":293},{"source":288,"target":156},{"source":289,"target":294},{"source":289,"target":156},{"source":290,"target":295},{"source":290,"target":156},{"source":291,"target":296},{"source":291,"target":156},{"source":292,"target":1},{"source":157,"target":12},{"source":157,"target":1},{"source":157,"target":297},{"source":157,"target":298},{"source":157,"target":299},{"source":157,"target":300},{"source":157,"target":301},{"source":157,"target":302},{"source":157,"target":303},{"source":297,"target":304},{"source":297,"target":157},{"source":298,"target":305},{"source":298,"target":157},{"source":299,"target":306},{"source":299,"target":157},{"source":300,"target":307},{"source":300,"target":157},{"source":301,"target":308},{"source":301,"target":157},{"source":302,"target":309},{"source":302,"target":157},{"source":303,"target":1},{"source":158,"target":12},{"source":158,"target":1},{"source":158,"target":310},{"source":158,"target":311},{"source":158,"target":312},{"source":158,"target":313},{"source":310,"target":314},{"source":310,"target":158},{"source":311,"target":315},{"source":311,"target":158},{"source":312,"target":316},{"source":312,"target":158},{"source":313,"target":1},{"source":159,"target":12},{"source":159,"target":1},{"source":159,"target":317},{"source":159,"target":318},{"source":159,"target":319},{"source":159,"target":320},{"source":159,"target":321},{"source":317,"target":322},{"source":317,"target":159},{"source":318,"target":323},{"source":318,"target":159},{"source":319,"target":324},{"source":319,"target":159},{"source":320,"target":325},{"source":320,"target":159},{"source":321,"target":1},{"source":160,"target":12},{"source":160,"target":1},{"source":160,"target":326},{"source":160,"target":327},{"source":160,"target":328},{"source":160,"target":329},{"source":160,"target":330},{"source":326,"target":331},{"source":326,"target":160},{"source":327,"target":332},{"source":327,"target":160},{"source":328,"target":333},{"source":328,"target":160},{"source":329,"target":334},{"source":329,"target":160},{"source":330,"target":1},{"source":161,"target":12},{"source":161,"target":1},{"source":161,"target":335},{"source":161,"target":336},{"source":161,"target":337},{"source":335,"target":338},{"source":335,"target":161},{"source":336,"target":339},{"source":336,"target":161},{"source":337,"target":1},{"source":162,"target":12},{"source":162,"target":1},{"source":162,"target":340},{"source":162,"target":341},{"source":162,"target":342},{"source":162,"target":343},{"source":162,"target":344},{"source":340,"target":345},{"source":340,"target":162},{"source":341,"target":346},{"source":341,"target":162},{"source":342,"target":347},{"source":342,"target":162},{"source":343,"target":348},{"source":343,"target":162},{"source":344,"target":1},{"source":163,"target":12},{"source":163,"target":1},{"source":163,"target":349},{"source":163,"target":350},{"source":163,"target":351},{"source":349,"target":352},{"source":349,"target":163},{"source":350,"target":353},{"source":350,"target":163},{"source":351,"target":1},{"source":164,"target":12},{"source":164,"target":1},{"source":164,"target":354},{"source":164,"target":355},{"source":164,"target":356},{"source":164,"target":357},{"source":164,"target":358},{"source":164,"target":359},{"source":164,"target":360},{"source":354,"target":361},{"source":354,"target":164},{"source":355,"target":362},{"source":355,"target":164},{"source":356,"target":363},{"source":356,"target":164},{"source":357,"target":364},{"source":357,"target":164},{"source":358,"target":365},{"source":358,"target":164},{"source":359,"target":366},{"source":359,"target":164},{"source":360,"target":1},{"source":165,"target":12},{"source":165,"target":1},{"source":165,"target":367},{"source":165,"target":368},{"source":165,"target":369},{"source":165,"target":370},{"source":367,"target":371},{"source":367,"target":165},{"source":368,"target":372},{"source":368,"target":165},{"source":369,"target":373},{"source":369,"target":165},{"source":370,"target":1},{"source":166,"target":12},{"source":166,"target":1},{"source":166,"target":374},{"source":166,"target":375},{"source":166,"target":376},{"source":166,"target":377},{"source":374,"target":378},{"source":374,"target":166},{"source":375,"target":379},{"source":375,"target":166},{"source":376,"target":380},{"source":376,"target":166},{"source":377,"target":1},{"source":167,"target":12},{"source":167,"target":1},{"source":167,"target":381},{"source":167,"target":382},{"source":167,"target":383},{"source":167,"target":384},{"source":167,"target":385},{"source":381,"target":386},{"source":381,"target":167},{"source":382,"target":387},{"source":382,"target":167},{"source":383,"target":388},{"source":383,"target":167},{"source":384,"target":389},{"source":384,"target":167},{"source":385,"target":1},{"source":168,"target":12},{"source":168,"target":1},{"source":168,"target":390},{"source":168,"target":391},{"source":168,"target":392},{"source":168,"target":393},{"source":390,"target":394},{"source":390,"target":168},{"source":391,"target":395},{"source":391,"target":168},{"source":392,"target":396},{"source":392,"target":168},{"source":393,"target":1},{"source":169,"target":12},{"source":169,"target":1},{"source":169,"target":397},{"source":169,"target":398},{"source":169,"target":399},{"source":397,"target":400},{"source":397,"target":169},{"source":398,"target":401},{"source":398,"target":169},{"source":399,"target":1},{"source":170,"target":12},{"source":170,"target":1},{"source":170,"target":402},{"source":170,"target":403},{"source":170,"target":404},{"source":402,"target":405},{"source":402,"target":170},{"source":403,"target":406},{"source":403,"target":170},{"source":404,"target":1}],"multigraph":true} |
false | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="iTL" nsURI="http://www.ac.ic/uk/itl/ITL" nsPrefix="iTL">
<eClassifiers xsi:type="ecore:EClass" name="Model">
<eStructuralFeatures xsi:type="ecore:EReference" name="testing_tools" upperBound="-1"
eType="#//testing_tool" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="testing_tool">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ZAP" eSuperTypes="#//testing_tool">
<eStructuralFeatures xsi:type="ecore:EReference" name="zap_target" eType="#//ZAP_TARGET"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="zap_address" eType="#//ZAP_ADDRESS"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="zap_max_depth" eType="#//ZAP_MAX_DEPTH"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="zap_api_key" eType="#//ZAP_API_KEY"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ZAP_ADDRESS">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ZAP_MAX_DEPTH">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ZAP_API_KEY">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ZAP_TARGET">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="W3af" eSuperTypes="#//testing_tool">
<eStructuralFeatures xsi:type="ecore:EReference" name="w3af_test_type" eType="#//W3AF_TEST_TYPE"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="w3af_address" eType="#//W3AF_ADDRESS"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="w3af_report_path" eType="#//W3AF_REPORT_ADDRESS"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="w3af_target" eType="#//W3AF_TARGET"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="W3AF_REPORT_ADDRESS">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="W3AF_ADDRESS">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="W3AF_TEST_TYPE">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="W3AF_TARGET">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
</ecore:EPackage>
| github:ecore:/data/wokii/nhm-project-itl/ic.ac.uk.itl.parent/ic.ac.uk.itl/model/generated/ITL.ecore | ecore | iTL
Model
testing_tools
testing_tool
name
ZAP
zap_target
zap_address
zap_max_depth
zap_api_key
ZAP_ADDRESS
name
ZAP_MAX_DEPTH
name
ZAP_API_KEY
name
ZAP_TARGET
name
W3af
w3af_test_type
w3af_address
w3af_report_path
w3af_target
W3AF_REPORT_ADDRESS
name
W3AF_ADDRESS
name
W3AF_TEST_TYPE
name
W3AF_TARGET
name | null | {"directed":true,"nodes":[{"nsPrefix":"iTL","nsURI":"http://www.ac.ic/uk/itl/ITL","name":"iTL","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Model","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"testing_tool","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ZAP","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ZAP_ADDRESS","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ZAP_MAX_DEPTH","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ZAP_API_KEY","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ZAP_TARGET","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"W3af","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"W3AF_REPORT_ADDRESS","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"W3AF_ADDRESS","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"W3AF_TEST_TYPE","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"W3AF_TARGET","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"testing_tools","changeable":true,"resolveProxies":true,"lowerBound":0,"id":13,"derived":false},{"id":14,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":15,"derived":false},{"id":16,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"zap_target","changeable":true,"resolveProxies":true,"lowerBound":0,"id":17,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"zap_address","changeable":true,"resolveProxies":true,"lowerBound":0,"id":18,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"zap_max_depth","changeable":true,"resolveProxies":true,"lowerBound":0,"id":19,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"zap_api_key","changeable":true,"resolveProxies":true,"lowerBound":0,"id":20,"derived":false},{"id":21,"eClass":"EGenericType"},{"id":22,"eClass":"EGenericType"},{"id":23,"eClass":"EGenericType"},{"id":24,"eClass":"EGenericType"},{"id":25,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":26,"derived":false},{"id":27,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":28,"derived":false},{"id":29,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":30,"derived":false},{"id":31,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":32,"derived":false},{"id":33,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"w3af_test_type","changeable":true,"resolveProxies":true,"lowerBound":0,"id":34,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"w3af_address","changeable":true,"resolveProxies":true,"lowerBound":0,"id":35,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"w3af_report_path","changeable":true,"resolveProxies":true,"lowerBound":0,"id":36,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"w3af_target","changeable":true,"resolveProxies":true,"lowerBound":0,"id":37,"derived":false},{"id":38,"eClass":"EGenericType"},{"id":39,"eClass":"EGenericType"},{"id":40,"eClass":"EGenericType"},{"id":41,"eClass":"EGenericType"},{"id":42,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":43,"derived":false},{"id":44,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":45,"derived":false},{"id":46,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":47,"derived":false},{"id":48,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":49,"derived":false},{"id":50,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":0,"target":8},{"source":0,"target":9},{"source":0,"target":10},{"source":0,"target":11},{"source":0,"target":12},{"source":1,"target":0},{"source":1,"target":13},{"source":13,"target":2},{"source":13,"target":14},{"source":13,"target":1},{"source":14,"target":2},{"source":2,"target":0},{"source":2,"target":15},{"source":15,"target":16},{"source":15,"target":2},{"source":3,"target":0},{"source":3,"target":2},{"source":3,"target":17},{"source":3,"target":18},{"source":3,"target":19},{"source":3,"target":20},{"source":3,"target":21},{"source":17,"target":7},{"source":17,"target":22},{"source":17,"target":3},{"source":22,"target":7},{"source":18,"target":4},{"source":18,"target":23},{"source":18,"target":3},{"source":23,"target":4},{"source":19,"target":5},{"source":19,"target":24},{"source":19,"target":3},{"source":24,"target":5},{"source":20,"target":6},{"source":20,"target":25},{"source":20,"target":3},{"source":25,"target":6},{"source":21,"target":2},{"source":4,"target":0},{"source":4,"target":26},{"source":26,"target":27},{"source":26,"target":4},{"source":5,"target":0},{"source":5,"target":28},{"source":28,"target":29},{"source":28,"target":5},{"source":6,"target":0},{"source":6,"target":30},{"source":30,"target":31},{"source":30,"target":6},{"source":7,"target":0},{"source":7,"target":32},{"source":32,"target":33},{"source":32,"target":7},{"source":8,"target":0},{"source":8,"target":2},{"source":8,"target":34},{"source":8,"target":35},{"source":8,"target":36},{"source":8,"target":37},{"source":8,"target":38},{"source":34,"target":11},{"source":34,"target":39},{"source":34,"target":8},{"source":39,"target":11},{"source":35,"target":10},{"source":35,"target":40},{"source":35,"target":8},{"source":40,"target":10},{"source":36,"target":9},{"source":36,"target":41},{"source":36,"target":8},{"source":41,"target":9},{"source":37,"target":12},{"source":37,"target":42},{"source":37,"target":8},{"source":42,"target":12},{"source":38,"target":2},{"source":9,"target":0},{"source":9,"target":43},{"source":43,"target":44},{"source":43,"target":9},{"source":10,"target":0},{"source":10,"target":45},{"source":45,"target":46},{"source":45,"target":10},{"source":11,"target":0},{"source":11,"target":47},{"source":47,"target":48},{"source":47,"target":11},{"source":12,"target":0},{"source":12,"target":49},{"source":49,"target":50},{"source":49,"target":12}],"multigraph":true} |
true | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0"
xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="database"
nsURI="http://madcow.magic.database" nsPrefix="db">
<eSubpackages name="set" nsURI="http://madcow.magic.database.set" nsPrefix="set">
<eClassifiers xsi:type="ecore:EClass" name="Set" eSuperTypes="#//core/MagicDBElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="date" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDate"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="cardTotal" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="block" eType="#//set/Block"
eOpposite="#//set/Block/sets"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="cards" upperBound="-1"
eType="#//card/Card" containment="true" eOpposite="#//card/Card/set"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Block" eSuperTypes="#//core/MagicDBElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="sets" upperBound="-1"
eType="#//set/Set" containment="true" eOpposite="#//set/Set/block"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="type" eType="#//set/BlockType"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="BlockType">
<eLiterals name="Core"/>
<eLiterals name="Cycle" value="1" literal=""/>
<eLiterals name="Other" value="-1"/>
</eClassifiers>
</eSubpackages>
<eSubpackages name="card" nsURI="http://madcow.magic.database.card" nsPrefix="card">
<eClassifiers xsi:type="ecore:EClass" name="Card" eSuperTypes="#//core/MagicDBElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="number" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="manacost" unique="false"
upperBound="-1" eType="#//card/ManaType"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="convertedManaCost" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt" derived="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="artist" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="legendary" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="subtype" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="rarity" eType="#//card/RarityType"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="originalCard" eType="#//card/Card"
eOpposite="#//card/Card/reprints"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="set" eType="#//set/Set"
eOpposite="#//set/Set/cards"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="tribal" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="manacostString" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="typeString" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="reprints" upperBound="-1"
eType="#//card/Card" eOpposite="#//card/Card/originalCard"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="ManaType">
<eLiterals name="Colorless" literal="C"/>
<eLiterals name="White" value="1" literal="W"/>
<eLiterals name="Blue" value="2" literal="U"/>
<eLiterals name="Black" value="3" literal="B"/>
<eLiterals name="Red" value="4" literal="R"/>
<eLiterals name="Green" value="5" literal="G"/>
<eLiterals name="WhiteBlue" value="6" literal="{W/U}"/>
<eLiterals name="BlueBlack" value="7" literal="{U/B}"/>
<eLiterals name="BlackRed" value="8" literal="{B/R}"/>
<eLiterals name="RedGreen" value="9" literal="{R/G}"/>
<eLiterals name="GreenWhite" value="10" literal="{G/W}"/>
<eLiterals name="WhiteBlack" value="11" literal="{W/B}"/>
<eLiterals name="BlueRed" value="12" literal="{U/R}"/>
<eLiterals name="BlackGreen" value="13" literal="{B/G}"/>
<eLiterals name="RedWhite" value="14" literal="{R/W}"/>
<eLiterals name="GreenBlue" value="15" literal="{G/U}"/>
<eLiterals name="TwoWhite" value="16" literal="{2/W}"/>
<eLiterals name="TwoBlue" value="17" literal="{2/U}"/>
<eLiterals name="TwoBlack" value="18" literal="{2/B}"/>
<eLiterals name="TwoRed" value="19" literal="{2/R}"/>
<eLiterals name="TwoGreen" value="20" literal="{2/G}"/>
<eLiterals name="Many" value="-1" literal="X"/>
<eLiterals name="Other" value="-2" literal="O"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Artifact" eSuperTypes="#//card/Card"/>
<eClassifiers xsi:type="ecore:EClass" name="Creature" eSuperTypes="#//card/Card">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="power" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="toughness" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Enchancement" eSuperTypes="#//card/Card"/>
<eClassifiers xsi:type="ecore:EClass" name="Instant" eSuperTypes="#//card/Card"/>
<eClassifiers xsi:type="ecore:EClass" name="Land" eSuperTypes="#//card/Card"/>
<eClassifiers xsi:type="ecore:EClass" name="Sorcery" eSuperTypes="#//card/Card"/>
<eClassifiers xsi:type="ecore:EClass" name="ArtifactCreature" eSuperTypes="#//card/Creature #//card/Artifact"/>
<eClassifiers xsi:type="ecore:EClass" name="Interrupt" eSuperTypes="#//card/Instant"/>
<eClassifiers xsi:type="ecore:EClass" name="Planeswalker" eSuperTypes="#//card/Card"/>
<eClassifiers xsi:type="ecore:EEnum" name="RarityType">
<eLiterals name="Common"/>
<eLiterals name="Uncommon" value="1"/>
<eLiterals name="Rare" value="2"/>
<eLiterals name="MythicRare" value="3" literal="Mythic Rare"/>
<eLiterals name="Special" value="4"/>
<eLiterals name="Land" value="5"/>
</eClassifiers>
</eSubpackages>
<eSubpackages name="core" nsURI="http://madcow.magic.database.core" nsPrefix="core">
<eClassifiers xsi:type="ecore:EClass" name="MagicDBElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="id" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
defaultValueLiteral=""/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="description" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Database" eSuperTypes="#//core/MagicDBElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="blocks" upperBound="-1"
eType="#//set/Block" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="cardTotal" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"
derived="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="CardCSVFields">
<eLiterals name="Number"/>
<eLiterals name="Name" value="1"/>
<eLiterals name="Type" value="2"/>
<eLiterals name="ManaCost" value="3"/>
<eLiterals name="Rarity" value="4"/>
<eLiterals name="Artist" value="5"/>
<eLiterals name="Set" value="6"/>
</eClassifiers>
</eSubpackages>
</ecore:EPackage>
| github:ecore:/data/gssi/metamodel-dataset-analysis-toolchain/metamodels/magicDB.ecore | ecore | database
set
Set
date
cardTotal
block
cards
Block
sets
type
BlockType
Core
Core
Cycle
Other
Other
card
Card
number
manacost
convertedManaCost
artist
legendary
subtype
rarity
originalCard
set
tribal
manacostString
typeString
reprints
ManaType
Colorless
C
White
W
Blue
U
Black
B
Red
R
Green
G
WhiteBlue
{W/U}
BlueBlack
{U/B}
BlackRed
{B/R}
RedGreen
{R/G}
GreenWhite
{G/W}
WhiteBlack
{W/B}
BlueRed
{U/R}
BlackGreen
{B/G}
RedWhite
{R/W}
GreenBlue
{G/U}
TwoWhite
{2/W}
TwoBlue
{2/U}
TwoBlack
{2/B}
TwoRed
{2/R}
TwoGreen
{2/G}
Many
X
Other
O
Artifact
Creature
power
toughness
Enchancement
Instant
Land
Sorcery
ArtifactCreature
Interrupt
Planeswalker
RarityType
Common
Common
Uncommon
Uncommon
Rare
Rare
MythicRare
Mythic Rare
Special
Special
Land
Land
core
MagicDBElement
name
id
description
Database
blocks
cardTotal
CardCSVFields
Number
Number
Name
Name
Type
Type
ManaCost
ManaCost
Rarity
Rarity
Artist
Artist
Set
Set | null | {"directed":true,"nodes":[{"nsPrefix":"db","nsURI":"http://madcow.magic.database","name":"database","id":0,"eClass":"EPackage"},{"nsPrefix":"set","nsURI":"http://madcow.magic.database.set","name":"set","id":1,"eClass":"EPackage"},{"nsPrefix":"card","nsURI":"http://madcow.magic.database.card","name":"card","id":2,"eClass":"EPackage"},{"nsPrefix":"core","nsURI":"http://madcow.magic.database.core","name":"core","id":3,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Set","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Block","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"BlockType","instanceClass":null,"id":6,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MagicDBElement","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"date","changeable":true,"lowerBound":0,"iD":false,"id":8,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"cardTotal","changeable":true,"lowerBound":0,"iD":false,"id":9,"derived":false},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"block","changeable":true,"resolveProxies":true,"lowerBound":0,"id":10,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"cards","changeable":true,"resolveProxies":true,"lowerBound":0,"id":11,"derived":false},{"id":12,"eClass":"EGenericType"},{"id":13,"eClass":"EGenericType"},{"id":14,"eClass":"EGenericType"},{"id":15,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"sets","changeable":true,"resolveProxies":true,"lowerBound":0,"id":16,"derived":false},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Card","instanceClass":null,"abstract":false,"id":17,"interface":false,"eClass":"EClass"},{"id":18,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"set","changeable":true,"resolveProxies":true,"lowerBound":0,"id":19,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"lowerBound":0,"iD":false,"id":20,"derived":false},{"id":21,"eClass":"EGenericType"},{"id":22,"eClass":"EGenericType"},{"id":23,"eClass":"EGenericType"},{"name":"Core","id":24,"value":0,"literal":"Core","eClass":"EEnumLiteral"},{"name":"Cycle","id":25,"value":1,"literal":"","eClass":"EEnumLiteral"},{"name":"Other","id":26,"value":-1,"literal":"Other","eClass":"EEnumLiteral"},{"instanceTypeName":null,"instanceClassName":null,"name":"ManaType","instanceClass":null,"id":27,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Artifact","instanceClass":null,"abstract":false,"id":28,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Creature","instanceClass":null,"abstract":false,"id":29,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Enchancement","instanceClass":null,"abstract":false,"id":30,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Instant","instanceClass":null,"abstract":false,"id":31,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Land","instanceClass":null,"abstract":false,"id":32,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Sorcery","instanceClass":null,"abstract":false,"id":33,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ArtifactCreature","instanceClass":null,"abstract":false,"id":34,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Interrupt","instanceClass":null,"abstract":false,"id":35,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Planeswalker","instanceClass":null,"abstract":false,"id":36,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"RarityType","instanceClass":null,"id":37,"serializable":true,"eClass":"EEnum"},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"number","changeable":true,"lowerBound":1,"iD":false,"id":38,"derived":false},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"manacost","changeable":true,"lowerBound":0,"iD":false,"id":39,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"convertedManaCost","changeable":true,"lowerBound":1,"iD":false,"id":40,"derived":true},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"artist","changeable":true,"lowerBound":0,"iD":false,"id":41,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"legendary","changeable":true,"lowerBound":0,"iD":false,"id":42,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"subtype","changeable":true,"lowerBound":0,"iD":false,"id":43,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"rarity","changeable":true,"lowerBound":0,"iD":false,"id":44,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"originalCard","changeable":true,"resolveProxies":true,"lowerBound":0,"id":45,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"tribal","changeable":true,"lowerBound":0,"iD":false,"id":46,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"manacostString","changeable":true,"lowerBound":0,"iD":false,"id":47,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"typeString","changeable":true,"lowerBound":0,"iD":false,"id":48,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"reprints","changeable":true,"resolveProxies":true,"lowerBound":0,"id":49,"derived":false},{"id":50,"eClass":"EGenericType"},{"id":51,"eClass":"EGenericType"},{"id":52,"eClass":"EGenericType"},{"id":53,"eClass":"EGenericType"},{"id":54,"eClass":"EGenericType"},{"id":55,"eClass":"EGenericType"},{"id":56,"eClass":"EGenericType"},{"id":57,"eClass":"EGenericType"},{"id":58,"eClass":"EGenericType"},{"id":59,"eClass":"EGenericType"},{"id":60,"eClass":"EGenericType"},{"id":61,"eClass":"EGenericType"},{"id":62,"eClass":"EGenericType"},{"id":63,"eClass":"EGenericType"},{"name":"Colorless","id":64,"value":0,"literal":"C","eClass":"EEnumLiteral"},{"name":"White","id":65,"value":1,"literal":"W","eClass":"EEnumLiteral"},{"name":"Blue","id":66,"value":2,"literal":"U","eClass":"EEnumLiteral"},{"name":"Black","id":67,"value":3,"literal":"B","eClass":"EEnumLiteral"},{"name":"Red","id":68,"value":4,"literal":"R","eClass":"EEnumLiteral"},{"name":"Green","id":69,"value":5,"literal":"G","eClass":"EEnumLiteral"},{"name":"WhiteBlue","id":70,"value":6,"literal":"{W/U}","eClass":"EEnumLiteral"},{"name":"BlueBlack","id":71,"value":7,"literal":"{U/B}","eClass":"EEnumLiteral"},{"name":"BlackRed","id":72,"value":8,"literal":"{B/R}","eClass":"EEnumLiteral"},{"name":"RedGreen","id":73,"value":9,"literal":"{R/G}","eClass":"EEnumLiteral"},{"name":"GreenWhite","id":74,"value":10,"literal":"{G/W}","eClass":"EEnumLiteral"},{"name":"WhiteBlack","id":75,"value":11,"literal":"{W/B}","eClass":"EEnumLiteral"},{"name":"BlueRed","id":76,"value":12,"literal":"{U/R}","eClass":"EEnumLiteral"},{"name":"BlackGreen","id":77,"value":13,"literal":"{B/G}","eClass":"EEnumLiteral"},{"name":"RedWhite","id":78,"value":14,"literal":"{R/W}","eClass":"EEnumLiteral"},{"name":"GreenBlue","id":79,"value":15,"literal":"{G/U}","eClass":"EEnumLiteral"},{"name":"TwoWhite","id":80,"value":16,"literal":"{2/W}","eClass":"EEnumLiteral"},{"name":"TwoBlue","id":81,"value":17,"literal":"{2/U}","eClass":"EEnumLiteral"},{"name":"TwoBlack","id":82,"value":18,"literal":"{2/B}","eClass":"EEnumLiteral"},{"name":"TwoRed","id":83,"value":19,"literal":"{2/R}","eClass":"EEnumLiteral"},{"name":"TwoGreen","id":84,"value":20,"literal":"{2/G}","eClass":"EEnumLiteral"},{"name":"Many","id":85,"value":-1,"literal":"X","eClass":"EEnumLiteral"},{"name":"Other","id":86,"value":-2,"literal":"O","eClass":"EEnumLiteral"},{"id":87,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"power","changeable":true,"lowerBound":0,"iD":false,"id":88,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"toughness","changeable":true,"lowerBound":0,"iD":false,"id":89,"derived":false},{"id":90,"eClass":"EGenericType"},{"id":91,"eClass":"EGenericType"},{"id":92,"eClass":"EGenericType"},{"id":93,"eClass":"EGenericType"},{"id":94,"eClass":"EGenericType"},{"id":95,"eClass":"EGenericType"},{"id":96,"eClass":"EGenericType"},{"id":97,"eClass":"EGenericType"},{"id":98,"eClass":"EGenericType"},{"id":99,"eClass":"EGenericType"},{"id":100,"eClass":"EGenericType"},{"name":"Common","id":101,"value":0,"literal":"Common","eClass":"EEnumLiteral"},{"name":"Uncommon","id":102,"value":1,"literal":"Uncommon","eClass":"EEnumLiteral"},{"name":"Rare","id":103,"value":2,"literal":"Rare","eClass":"EEnumLiteral"},{"name":"MythicRare","id":104,"value":3,"literal":"Mythic Rare","eClass":"EEnumLiteral"},{"name":"Special","id":105,"value":4,"literal":"Special","eClass":"EEnumLiteral"},{"name":"Land","id":106,"value":5,"literal":"Land","eClass":"EEnumLiteral"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Database","instanceClass":null,"abstract":false,"id":107,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"CardCSVFields","instanceClass":null,"id":108,"serializable":true,"eClass":"EEnum"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":109,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":"","volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"","unsettable":false,"transient":false,"unique":true,"name":"id","changeable":true,"lowerBound":0,"iD":false,"id":110,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"description","changeable":true,"lowerBound":0,"iD":false,"id":111,"derived":false},{"id":112,"eClass":"EGenericType"},{"id":113,"eClass":"EGenericType"},{"id":114,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"blocks","changeable":true,"resolveProxies":true,"lowerBound":0,"id":115,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"cardTotal","changeable":true,"lowerBound":0,"iD":false,"id":116,"derived":true},{"id":117,"eClass":"EGenericType"},{"id":118,"eClass":"EGenericType"},{"id":119,"eClass":"EGenericType"},{"name":"Number","id":120,"value":0,"literal":"Number","eClass":"EEnumLiteral"},{"name":"Name","id":121,"value":1,"literal":"Name","eClass":"EEnumLiteral"},{"name":"Type","id":122,"value":2,"literal":"Type","eClass":"EEnumLiteral"},{"name":"ManaCost","id":123,"value":3,"literal":"ManaCost","eClass":"EEnumLiteral"},{"name":"Rarity","id":124,"value":4,"literal":"Rarity","eClass":"EEnumLiteral"},{"name":"Artist","id":125,"value":5,"literal":"Artist","eClass":"EEnumLiteral"},{"name":"Set","id":126,"value":6,"literal":"Set","eClass":"EEnumLiteral"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":1,"target":4},{"source":1,"target":5},{"source":1,"target":6},{"source":1,"target":0},{"source":4,"target":1},{"source":4,"target":7},{"source":4,"target":8},{"source":4,"target":9},{"source":4,"target":10},{"source":4,"target":11},{"source":4,"target":12},{"source":8,"target":13},{"source":8,"target":4},{"source":9,"target":14},{"source":9,"target":4},{"source":10,"target":5},{"source":10,"target":15},{"source":10,"target":4},{"source":10,"target":16},{"source":15,"target":5},{"source":11,"target":17},{"source":11,"target":18},{"source":11,"target":4},{"source":11,"target":19},{"source":18,"target":17},{"source":12,"target":7},{"source":5,"target":1},{"source":5,"target":7},{"source":5,"target":16},{"source":5,"target":20},{"source":5,"target":21},{"source":16,"target":4},{"source":16,"target":22},{"source":16,"target":5},{"source":16,"target":10},{"source":22,"target":4},{"source":20,"target":6},{"source":20,"target":23},{"source":20,"target":5},{"source":23,"target":6},{"source":21,"target":7},{"source":6,"target":1},{"source":6,"target":24},{"source":6,"target":25},{"source":6,"target":26},{"source":24,"target":6},{"source":25,"target":6},{"source":26,"target":6},{"source":2,"target":17},{"source":2,"target":27},{"source":2,"target":28},{"source":2,"target":29},{"source":2,"target":30},{"source":2,"target":31},{"source":2,"target":32},{"source":2,"target":33},{"source":2,"target":34},{"source":2,"target":35},{"source":2,"target":36},{"source":2,"target":37},{"source":2,"target":0},{"source":17,"target":2},{"source":17,"target":7},{"source":17,"target":38},{"source":17,"target":39},{"source":17,"target":40},{"source":17,"target":41},{"source":17,"target":42},{"source":17,"target":43},{"source":17,"target":44},{"source":17,"target":45},{"source":17,"target":19},{"source":17,"target":46},{"source":17,"target":47},{"source":17,"target":48},{"source":17,"target":49},{"source":17,"target":50},{"source":38,"target":51},{"source":38,"target":17},{"source":39,"target":27},{"source":39,"target":52},{"source":39,"target":17},{"source":52,"target":27},{"source":40,"target":53},{"source":40,"target":17},{"source":41,"target":54},{"source":41,"target":17},{"source":42,"target":55},{"source":42,"target":17},{"source":43,"target":56},{"source":43,"target":17},{"source":44,"target":37},{"source":44,"target":57},{"source":44,"target":17},{"source":57,"target":37},{"source":45,"target":17},{"source":45,"target":58},{"source":45,"target":17},{"source":45,"target":49},{"source":58,"target":17},{"source":19,"target":4},{"source":19,"target":59},{"source":19,"target":17},{"source":19,"target":11},{"source":59,"target":4},{"source":46,"target":60},{"source":46,"target":17},{"source":47,"target":61},{"source":47,"target":17},{"source":48,"target":62},{"source":48,"target":17},{"source":49,"target":17},{"source":49,"target":63},{"source":49,"target":17},{"source":49,"target":45},{"source":63,"target":17},{"source":50,"target":7},{"source":27,"target":2},{"source":27,"target":64},{"source":27,"target":65},{"source":27,"target":66},{"source":27,"target":67},{"source":27,"target":68},{"source":27,"target":69},{"source":27,"target":70},{"source":27,"target":71},{"source":27,"target":72},{"source":27,"target":73},{"source":27,"target":74},{"source":27,"target":75},{"source":27,"target":76},{"source":27,"target":77},{"source":27,"target":78},{"source":27,"target":79},{"source":27,"target":80},{"source":27,"target":81},{"source":27,"target":82},{"source":27,"target":83},{"source":27,"target":84},{"source":27,"target":85},{"source":27,"target":86},{"source":64,"target":27},{"source":65,"target":27},{"source":66,"target":27},{"source":67,"target":27},{"source":68,"target":27},{"source":69,"target":27},{"source":70,"target":27},{"source":71,"target":27},{"source":72,"target":27},{"source":73,"target":27},{"source":74,"target":27},{"source":75,"target":27},{"source":76,"target":27},{"source":77,"target":27},{"source":78,"target":27},{"source":79,"target":27},{"source":80,"target":27},{"source":81,"target":27},{"source":82,"target":27},{"source":83,"target":27},{"source":84,"target":27},{"source":85,"target":27},{"source":86,"target":27},{"source":28,"target":2},{"source":28,"target":17},{"source":28,"target":87},{"source":87,"target":17},{"source":29,"target":2},{"source":29,"target":17},{"source":29,"target":88},{"source":29,"target":89},{"source":29,"target":90},{"source":88,"target":91},{"source":88,"target":29},{"source":89,"target":92},{"source":89,"target":29},{"source":90,"target":17},{"source":30,"target":2},{"source":30,"target":17},{"source":30,"target":93},{"source":93,"target":17},{"source":31,"target":2},{"source":31,"target":17},{"source":31,"target":94},{"source":94,"target":17},{"source":32,"target":2},{"source":32,"target":17},{"source":32,"target":95},{"source":95,"target":17},{"source":33,"target":2},{"source":33,"target":17},{"source":33,"target":96},{"source":96,"target":17},{"source":34,"target":2},{"source":34,"target":29},{"source":34,"target":28},{"source":34,"target":97},{"source":34,"target":98},{"source":97,"target":29},{"source":98,"target":28},{"source":35,"target":2},{"source":35,"target":31},{"source":35,"target":99},{"source":99,"target":31},{"source":36,"target":2},{"source":36,"target":17},{"source":36,"target":100},{"source":100,"target":17},{"source":37,"target":2},{"source":37,"target":101},{"source":37,"target":102},{"source":37,"target":103},{"source":37,"target":104},{"source":37,"target":105},{"source":37,"target":106},{"source":101,"target":37},{"source":102,"target":37},{"source":103,"target":37},{"source":104,"target":37},{"source":105,"target":37},{"source":106,"target":37},{"source":3,"target":7},{"source":3,"target":107},{"source":3,"target":108},{"source":3,"target":0},{"source":7,"target":3},{"source":7,"target":109},{"source":7,"target":110},{"source":7,"target":111},{"source":109,"target":112},{"source":109,"target":7},{"source":110,"target":113},{"source":110,"target":7},{"source":111,"target":114},{"source":111,"target":7},{"source":107,"target":3},{"source":107,"target":7},{"source":107,"target":115},{"source":107,"target":116},{"source":107,"target":117},{"source":115,"target":5},{"source":115,"target":118},{"source":115,"target":107},{"source":118,"target":5},{"source":116,"target":119},{"source":116,"target":107},{"source":117,"target":7},{"source":108,"target":3},{"source":108,"target":120},{"source":108,"target":121},{"source":108,"target":122},{"source":108,"target":123},{"source":108,"target":124},{"source":108,"target":125},{"source":108,"target":126},{"source":120,"target":108},{"source":121,"target":108},{"source":122,"target":108},{"source":123,"target":108},{"source":124,"target":108},{"source":125,"target":108},{"source":126,"target":108}],"multigraph":true} |
false | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="tests" nsURI="platform:/plugin/no.hal.pg.runtime.tests/src/no/hal/pg/runtime/engine/tests/tests.ecore"
nsPrefix="tests">
<eClassifiers xsi:type="ecore:EClass" name="Container">
<eStructuralFeatures xsi:type="ecore:EReference" name="simple1" eType="#//Simple1"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="simples2" upperBound="-1"
eType="#//Simple2" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="int1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="string1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Simple1">
<eStructuralFeatures xsi:type="ecore:EReference" name="simples2" upperBound="-1"
eType="#//Simple2"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="string11" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Simple2">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="int21" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="string21" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ContainerService">
<eOperations name="getSimples2" upperBound="-1" eType="#//Simple2">
<eParameters name="stringFilter" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eOperations>
<eStructuralFeatures xsi:type="ecore:EReference" name="simple1" eType="#//Simple1"
changeable="false" volatile="true" transient="true" derived="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="int1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt">
<eAnnotations source="platform:/plugin/no.hal.pg.runtime/model/pg-runtime.ecore">
<details key="SelfService" value="*"/>
</eAnnotations>
</eStructuralFeatures>
<eGenericSuperTypes eClassifier="ecore:EClass ../../../../../../../../no.hal.pg.runtime/model/pg-runtime.ecore#//Service">
<eTypeArguments eClassifier="#//Container"/>
</eGenericSuperTypes>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Simple2Service">
<eOperations name="add1"/>
<eOperations name="add">
<eParameters name="n" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
</eOperations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="int1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"
changeable="false" volatile="true" transient="true">
<eAnnotations source="platform:/plugin/no.hal.pg.runtime/model/pg-runtime.ecore">
<details key="SelfService" value="int21"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="string21" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
changeable="false" volatile="true" transient="true" derived="true"/>
<eGenericSuperTypes eClassifier="ecore:EClass ../../../../../../../../no.hal.pg.runtime/model/pg-runtime.ecore#//Service">
<eTypeArguments eClassifier="#//Simple2"/>
</eGenericSuperTypes>
</eClassifiers>
</ecore:EPackage>
| github:ecore:/data/hallvard/tdt4250/no.hal.pg.runtime.tests/src/no/hal/pg/runtime/engine/tests/tests.ecore | ecore | tests
Container
simple1
simples2
int1
string1
Simple1
simples2
string11
Simple2
int21
string21
ContainerService
getSimples2
stringFilter
simple1
int1
Simple2Service
add1
add
n
int1
string21 | null | {"directed":true,"nodes":[{"nsPrefix":"tests","nsURI":"platform:/plugin/no.hal.pg.runtime.tests/src/no/hal/pg/runtime/engine/tests/tests.ecore","name":"tests","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Container","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Simple1","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Simple2","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ContainerService","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Simple2Service","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"simple1","changeable":true,"resolveProxies":true,"lowerBound":0,"id":6,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"simples2","changeable":true,"resolveProxies":true,"lowerBound":0,"id":7,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"int1","changeable":true,"lowerBound":0,"iD":false,"id":8,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"string1","changeable":true,"lowerBound":0,"iD":false,"id":9,"derived":false},{"id":10,"eClass":"EGenericType"},{"id":11,"eClass":"EGenericType"},{"id":12,"eClass":"EGenericType"},{"id":13,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"simples2","changeable":true,"resolveProxies":true,"lowerBound":0,"id":14,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"string11","changeable":true,"lowerBound":0,"iD":false,"id":15,"derived":false},{"id":16,"eClass":"EGenericType"},{"id":17,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"int21","changeable":true,"lowerBound":0,"iD":false,"id":18,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"string21","changeable":true,"lowerBound":0,"iD":false,"id":19,"derived":false},{"id":20,"eClass":"EGenericType"},{"id":21,"eClass":"EGenericType"},{"ordered":true,"upperBound":-1,"unique":true,"name":"getSimples2","lowerBound":0,"id":22,"many":true,"required":false,"eClass":"EOperation"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":true,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"simple1","changeable":false,"resolveProxies":true,"lowerBound":0,"id":23,"derived":true},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"int1","changeable":true,"lowerBound":0,"iD":false,"id":24,"derived":false},{"id":25,"eClass":"EGenericType"},{"id":26,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"stringFilter","lowerBound":0,"id":27,"many":false,"required":false,"eClass":"EParameter"},{"id":28,"eClass":"EGenericType"},{"id":29,"eClass":"EGenericType"},{"id":30,"eClass":"EGenericType"},{"id":31,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"add1","lowerBound":0,"id":32,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"add","lowerBound":0,"id":33,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":true,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":true,"unique":true,"name":"int1","changeable":false,"lowerBound":0,"iD":false,"id":34,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":true,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":true,"unique":true,"name":"string21","changeable":false,"lowerBound":0,"iD":false,"id":35,"derived":true},{"id":36,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"n","lowerBound":0,"id":37,"many":false,"required":false,"eClass":"EParameter"},{"id":38,"eClass":"EGenericType"},{"id":39,"eClass":"EGenericType"},{"id":40,"eClass":"EGenericType"},{"id":41,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":1,"target":0},{"source":1,"target":6},{"source":1,"target":7},{"source":1,"target":8},{"source":1,"target":9},{"source":6,"target":2},{"source":6,"target":10},{"source":6,"target":1},{"source":10,"target":2},{"source":7,"target":3},{"source":7,"target":11},{"source":7,"target":1},{"source":11,"target":3},{"source":8,"target":12},{"source":8,"target":1},{"source":9,"target":13},{"source":9,"target":1},{"source":2,"target":0},{"source":2,"target":14},{"source":2,"target":15},{"source":14,"target":3},{"source":14,"target":16},{"source":14,"target":2},{"source":16,"target":3},{"source":15,"target":17},{"source":15,"target":2},{"source":3,"target":0},{"source":3,"target":18},{"source":3,"target":19},{"source":18,"target":20},{"source":18,"target":3},{"source":19,"target":21},{"source":19,"target":3},{"source":4,"target":0},{"source":4,"target":22},{"source":4,"target":23},{"source":4,"target":24},{"source":4,"target":25},{"source":22,"target":3},{"source":22,"target":26},{"source":22,"target":4},{"source":22,"target":27},{"source":26,"target":3},{"source":27,"target":28},{"source":27,"target":22},{"source":23,"target":2},{"source":23,"target":29},{"source":23,"target":4},{"source":29,"target":2},{"source":24,"target":30},{"source":24,"target":4},{"source":25,"target":31},{"source":31,"target":1},{"source":5,"target":0},{"source":5,"target":32},{"source":5,"target":33},{"source":5,"target":34},{"source":5,"target":35},{"source":5,"target":36},{"source":32,"target":5},{"source":33,"target":5},{"source":33,"target":37},{"source":37,"target":38},{"source":37,"target":33},{"source":34,"target":39},{"source":34,"target":5},{"source":35,"target":40},{"source":35,"target":5},{"source":36,"target":41},{"source":41,"target":3}],"multigraph":true} |
true | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0"
xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="owlcl"
nsURI="http://www.emftext.org/language/owlcl" nsPrefix="owlcl">
<eClassifiers xsi:type="ecore:EClass" name="OWLCLSpec" eSuperTypes="../../org.emftext.language.owl/metamodel/owl.text.ecore#//OntologyDocument">
<eOperations name="getNamespace" upperBound="-1" eType="ecore:EClass ../../org.emftext.language.owl/metamodel/owl.text.ecore#//Namespace">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="body" value="if (super.getNamespace().size() == 0) {
	Namespace metamodelNamespace = org.emftext.language.owl.OwlFactory.eINSTANCE.createNamespace();
	metamodelNamespace.setPrefix("");
	metamodelNamespace.setImportedOntology(getOntology());
	super.getNamespace().add(metamodelNamespace);
}
return super.getNamespace();"/>
</eAnnotations>
</eOperations>
<eOperations name="getOntology" lowerBound="1" eType="ecore:EClass ../../org.emftext.language.owl/metamodel/owl.text.ecore#//Ontology">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="body" value="if (super.getOntology() == null) {
	org.emftext.runtime.owltext.transformation.Ecore2Owl transformation = new org.emftext.runtime.owltext.transformation.Ecore2Owl();
 org.eclipse.emf.ecore.EPackage metamodel = this.getConstrainedMetamodel();
 if (metamodel != null) {
 	 org.emftext.language.owl.OntologyDocument ontologyDocument = transformation.transformMetamodel(metamodel, null);
 	 super.setOntology(ontologyDocument.getOntology());
 }
}
return super.getOntology();"/>
</eAnnotations>
</eOperations>
<eStructuralFeatures xsi:type="ecore:EReference" name="constrainedMetamodel" lowerBound="1"
eType="ecore:EClass platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EPackage"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="constraints" upperBound="-1"
eType="#//Constraint" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="types" upperBound="-1"
eType="#//Type" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Constraint">
<eStructuralFeatures xsi:type="ecore:EReference" name="constrainedMetaclass" lowerBound="1"
eType="ecore:EClass platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EClass"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="constraintDescription"
lowerBound="1" eType="ecore:EClass ../../org.emftext.language.owl/metamodel/owl.text.ecore#//Description"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="errorMsg" lowerBound="1"
eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Type" eSuperTypes="platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EClass">
<eStructuralFeatures xsi:type="ecore:EReference" name="typeDescription" lowerBound="1"
eType="ecore:EClass ../../org.emftext.language.owl/metamodel/owl.text.ecore#//Description"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="refines" lowerBound="1"
eType="ecore:EClass platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EClass"/>
</eClassifiers>
</ecore:EPackage>
| github:ecore:/data/MDEGroup/QMM-COMLAN-data/validation-subjects/metamodels/owlcl.ecore | ecore | owlcl
OWLCLSpec
getNamespace
getOntology
constrainedMetamodel
constraints
types
Constraint
constrainedMetaclass
constraintDescription
errorMsg
Type
typeDescription
refines | null | {"directed":true,"nodes":[{"nsPrefix":"owlcl","nsURI":"http://www.emftext.org/language/owlcl","name":"owlcl","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OWLCLSpec","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Constraint","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Type","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"ordered":true,"upperBound":-1,"unique":true,"name":"getNamespace","lowerBound":0,"id":4,"many":true,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getOntology","lowerBound":1,"id":5,"many":false,"required":true,"eClass":"EOperation"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"constrainedMetamodel","changeable":true,"resolveProxies":true,"lowerBound":1,"id":6,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"constraints","changeable":true,"resolveProxies":true,"lowerBound":0,"id":7,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"types","changeable":true,"resolveProxies":true,"lowerBound":0,"id":8,"derived":false},{"id":9,"eClass":"EGenericType"},{"id":10,"eClass":"EGenericType"},{"id":11,"eClass":"EGenericType"},{"id":12,"eClass":"EGenericType"},{"id":13,"eClass":"EGenericType"},{"id":14,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"constrainedMetaclass","changeable":true,"resolveProxies":true,"lowerBound":1,"id":15,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"constraintDescription","changeable":true,"resolveProxies":true,"lowerBound":1,"id":16,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"errorMsg","changeable":true,"lowerBound":1,"iD":false,"id":17,"derived":false},{"id":18,"eClass":"EGenericType"},{"id":19,"eClass":"EGenericType"},{"id":20,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"typeDescription","changeable":true,"resolveProxies":true,"lowerBound":1,"id":21,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"refines","changeable":true,"resolveProxies":true,"lowerBound":1,"id":22,"derived":false},{"id":23,"eClass":"EGenericType"},{"id":24,"eClass":"EGenericType"},{"id":25,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":1,"target":0},{"source":1,"target":4},{"source":1,"target":5},{"source":1,"target":6},{"source":1,"target":7},{"source":1,"target":8},{"source":1,"target":9},{"source":4,"target":10},{"source":4,"target":1},{"source":5,"target":11},{"source":5,"target":1},{"source":6,"target":12},{"source":6,"target":1},{"source":7,"target":2},{"source":7,"target":13},{"source":7,"target":1},{"source":13,"target":2},{"source":8,"target":3},{"source":8,"target":14},{"source":8,"target":1},{"source":14,"target":3},{"source":2,"target":0},{"source":2,"target":15},{"source":2,"target":16},{"source":2,"target":17},{"source":15,"target":18},{"source":15,"target":2},{"source":16,"target":19},{"source":16,"target":2},{"source":17,"target":20},{"source":17,"target":2},{"source":3,"target":0},{"source":3,"target":21},{"source":3,"target":22},{"source":3,"target":23},{"source":21,"target":24},{"source":21,"target":3},{"source":22,"target":25},{"source":22,"target":3}],"multigraph":true} |
false | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="psm" nsURI="http://www.muml.org/psm/1.0.0" nsPrefix="psm">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="This package provides all Classes for modeling a platform-specific model."/>
</eAnnotations>
<eClassifiers xsi:type="ecore:EClass" name="Import">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="This class is necessary to allow the import of models within Xtext editors."/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="importURI" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The URI of the imported model."/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eSubpackages name="allocation" nsURI="http://www.muml.org/psm/allocation/1.0.0"
nsPrefix="allocation">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="This package provides the model elements to allocate a ComponentInstanceConfiguration to a HarwarePlatformInstanceConfiguration."/>
</eAnnotations>
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore">
<details key="invocationDelegates" value="http://www.eclipse.org/emf/2002/Ecore/OCL"/>
<details key="settingDelegates" value="http://www.eclipse.org/emf/2002/Ecore/OCL"/>
<details key="validationDelegates" value="http://www.eclipse.org/emf/2002/Ecore/OCL"/>
</eAnnotations>
<eClassifiers xsi:type="ecore:EClass" name="SystemAllocation" eSuperTypes="../../org.muml.core/model/core.ecore#//ExtendableElement">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="This class represents an allocation of a Component Instance Configuration to a Hardware Platform Instance Configuration."/>
</eAnnotations>
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore">
<details key="constraints" value=""/>
</eAnnotations>
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore/OCL">
<details key="AllComponentInstancesAllocated" value="-- All component instances must be allocated
let componentInstances : Bag(instance::ComponentInstance)
=
self.cic->union(
	-- XXX: is the union really needed (pivot ocl)?
	self.cic->closure(
		componentInstances->select(
			oclIsKindOf(instance::StructuredComponentInstance)
		)->collect(
			oclAsType(instance::StructuredComponentInstance).embeddedCIC
		)
	)->asSet()
)->collect(
	componentInstances
)->asBag()
in
componentInstances = self.allocations->collect(componentInstance)->asBag()"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="allocations" lowerBound="1"
upperBound="-1" eType="#//allocation/Allocation" containment="true">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The different allocations that have been defined for this System Allocation."/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="cic" lowerBound="1" eType="ecore:EClass ../../org.muml.pim/model/pim.ecore#//instance/ComponentInstanceConfiguration">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The allocated ComponentInstanceConfiguration."/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="hpic" lowerBound="1"
eType="ecore:EClass ../../org.muml.pm.hardware/model/hardware.ecore#//hwplatforminstance/HWPlatformInstanceConfiguration">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The allocated HardwarePlatformInstanceConfiguration."/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="assemblyConnectorInstanceAllocations"
upperBound="-1" eType="#//allocation/AssemblyConnectorInstanceAllocation"
containment="true">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The assembly connector instance allocations."/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Allocation" eSuperTypes="../../org.muml.core/model/core.ecore#//ExtendableElement">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="This class represents an allocation of exactly one Component Instance to exactly one Resource Instance."/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="componentInstance" lowerBound="1"
eType="ecore:EClass ../../org.muml.pim/model/pim.ecore#//instance/ComponentInstance">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The allocated Component Instance."/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="resourceInstance" lowerBound="1"
eType="ecore:EClass ../../org.muml.pm.hardware/model/hardware.ecore#//hwresourceinstance/StructuredResourceInstance">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The allocated Resource Instance."/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="AssemblyConnectorInstanceAllocation">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="This class represents an allocation of exactly one AssemblyConnectorInstance
to at most one NetworkConnectorInstance. If the networkConnectorInstance reference
is null, the component instances that are connected via the assemblyConnectorInstance
reference are allocated to the same ECU (and communicate by local means)."/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="assemblyConnectorInstance"
lowerBound="1" eType="ecore:EClass ../../org.muml.pim/model/pim.ecore#//instance/AssemblyConnectorInstance">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The assembly connector instance."/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="networkConnectorInstance"
eType="ecore:EClass ../../org.muml.pm.hardware/model/hardware.ecore#//hwplatforminstance/NetworkConnectorInstance">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The network connector instance that is used by the assemblyConnector.connectorEndpointInstances
to communicate with each other. If this reference is null, the assemblyConnector.connectorEndpointInstances
communicate with each other by local means."/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
</eSubpackages>
<eSubpackages name="properties" nsURI="http://www.muml.org/psm/properties/1.0.0"
nsPrefix="properties">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="This package provides classes to annotate component with non-functional requirements."/>
</eAnnotations>
<eClassifiers xsi:type="ecore:EClass" name="WCET" eSuperTypes="../../org.muml.core/model/core.ecore#//Extension">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The Worst-Case-Execution Time of a Component Instance, if its allocated to a specific Resource Instance."/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="wcet" lowerBound="1"
eType="ecore:EClass ../../org.muml.pim/model/pim.ecore#//valuetype/TimeValue"
containment="true">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The amount of the WCET."/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="resourceInstance" eType="ecore:EClass ../../org.muml.pm.hardware/model/hardware.ecore#//hwresourceinstance/StructuredResourceInstance">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The used Resource Instance."/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="RequiredMemory" eSuperTypes="../../org.muml.core/model/core.ecore#//Extension">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The amount of required memory of a Component Instance, if its allocated to a specific Resource Instance."/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="requiredMemory" lowerBound="1"
eType="ecore:EClass ../../org.muml.pm.hardware/model/hardware.ecore#//hwvaluetype/DataSize"
containment="true">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The required amount of memory."/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="resourceInstance" eType="ecore:EClass ../../org.muml.pm.hardware/model/hardware.ecore#//hwresourceinstance/StructuredResourceInstance">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The used Resource Instance."/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Scheduling" eSuperTypes="../../org.muml.core/model/core.ecore#//Extension">
<eStructuralFeatures xsi:type="ecore:EReference" name="deadline" lowerBound="1"
eType="ecore:EClass ../../org.muml.pim/model/pim.ecore#//valuetype/TimeValue"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="period" lowerBound="1"
eType="ecore:EClass ../../org.muml.pim/model/pim.ecore#//valuetype/TimeValue"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="priority" eType="ecore:EClass ../../org.muml.pim/model/pim.ecore#//valuetype/NaturalNumber"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="MessageFrame" eSuperTypes="../../org.muml.core/model/core.ecore#//Extension">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="Represents a general message frame."/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="size" lowerBound="1"
eType="ecore:EClass ../../org.muml.pm.hardware/model/hardware.ecore#//hwvaluetype/DataSize"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="period" lowerBound="1"
eType="ecore:EClass ../../org.muml.pim/model/pim.ecore#//valuetype/TimeValue"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CANMessageFrame" eSuperTypes="#//properties/MessageFrame">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="Represents a CAN message frame."/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="priority" lowerBound="1"
eType="ecore:EClass ../../org.muml.pim/model/pim.ecore#//valuetype/NaturalNumber"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="deadline" lowerBound="1"
eType="ecore:EClass ../../org.muml.pim/model/pim.ecore#//valuetype/TimeValue"
containment="true"/>
</eClassifiers>
</eSubpackages>
<eSubpackages name="psm_realtimestatechart" nsURI="http://www.muml.org/psm/realtimestatechart/1.0.0"
nsPrefix="psm_realtimestatechart">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The package extends the realtimestatechart-package of muml. Here a statechart with parameters is introduced."/>
</eAnnotations>
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore">
<details key="invocationDelegates" value="http://www.eclipse.org/emf/2002/Ecore/OCL"/>
<details key="settingDelegates" value="http://www.eclipse.org/emf/2002/Ecore/OCL"/>
<details key="validationDelegates" value="http://www.eclipse.org/emf/2002/Ecore/OCL"/>
</eAnnotations>
<eClassifiers xsi:type="ecore:EClass" name="ParameterizedRealtimeStatechart" eSuperTypes="../../org.muml.pim/model/pim.ecore#//realtimestatechart/RealtimeStatechart">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="This class is a extension of a real-time statechart, which has additional plattformspecific parameters."/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="parameters" upperBound="-1"
eType="#//psm_realtimestatechart/realtimestatechartparameter/RealtimeStatechartParameter"
containment="true" eOpposite="#//psm_realtimestatechart/realtimestatechartparameter/RealtimeStatechartParameter/statechart">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="All parameter for this statechart."/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="allParameters" upperBound="-1"
eType="#//psm_realtimestatechart/realtimestatechartparameter/RealtimeStatechartParameter"
volatile="true" derived="true">
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore/OCL">
<details key="derivation" value="self->closure(states.embeddedRegions.embeddedStatechart.oclAsType(psm_realtimestatechart::ParameterizedRealtimeStatechart)).parameters->asOrderedSet()"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="APICall" eSuperTypes="../../org.muml.pim.actionlanguage/model/actionlanguage.ecore#//OperationCall">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="This class represents a expression for a CallParameter. This Expression can be used within the realtimestatechart. It refers to the parameter, which is given to the realtimestatechart."/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="apiCallSignature" lowerBound="1"
eType="#//psm_realtimestatechart/realtimestatechartparameter/APICallParameter"/>
</eClassifiers>
<eSubpackages name="realtimestatechartparameter" nsURI="http://www.muml.org/psm/realtimestatechart/realtimestatechartparameter/1.0.0"
nsPrefix="realtimestatechartparameter">
<eClassifiers xsi:type="ecore:EClass" name="APICallParameter" eSuperTypes="#//psm_realtimestatechart/realtimestatechartparameter/RealtimeStatechartParameter ../../org.muml.pim/model/pim.ecore#//behavior/Operation">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="With this parameter a discrete port instance can insert a expression into its behavior described by a realtimestatechart."/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="TimeParameter" eSuperTypes="#//psm_realtimestatechart/realtimestatechartparameter/RealtimeStatechartParameter ../../org.muml.pim/model/pim.ecore#//behavior/Variable">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="With this parameter a discrete port instance can insert a time value into its behavior described by a realtimestatechart."/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="RealtimeStatechartParameter" abstract="true"
eSuperTypes="../../org.muml.core/model/core.ecore#//NamedElement ../../org.muml.core/model/core.ecore#//CommentableElement">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="This class represents a parameter of a realtimestatechart, which can be bound by a instance of a discrete port. A parameter is used to add parts of a realtimestatechart that are only known in a instance of a discrete port."/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="statechart" lowerBound="1"
eType="#//psm_realtimestatechart/ParameterizedRealtimeStatechart" eOpposite="#//psm_realtimestatechart/ParameterizedRealtimeStatechart/parameters">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The statechart, to which this parameter belongs."/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
</eSubpackages>
<eSubpackages name="realtimestatechartparameterbinding" nsURI="http://www.muml.org/psm/realtimestatechart/realtimestatechartparameterbinding/1.0.0"
nsPrefix="realtimestatechartparameterbinding">
<eClassifiers xsi:type="ecore:EClass" name="APICallParameterBinding" eSuperTypes="#//psm_realtimestatechart/realtimestatechartparameterbinding/RealtimeStatechartParameterBinding ../../org.muml.pim/model/pim.ecore#//behavior/Operation">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="This class represents a binding for a CallParameter. The parameter is bound to a concrete expression."/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="expression" lowerBound="1"
eType="ecore:EClass ../../org.muml.core/model/core.ecore#//expressions/Expression"
containment="true">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The expression, used for the parameter."/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="TimeParameterBinding" eSuperTypes="#//psm_realtimestatechart/realtimestatechartparameterbinding/RealtimeStatechartParameterBinding">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="This class represents a binding for a TimeParameter. The parameter is bound to a concrete time value."/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="timeValue" lowerBound="1"
eType="ecore:EClass ../../org.muml.pim/model/pim.ecore#//valuetype/TimeValue"
containment="true">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The time value used for the parameter."/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="RealtimeStatechartParameterBinding"
abstract="true">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="This class represents a binding for a parameter of a realtimestatechart."/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="portInstance" lowerBound="1"
eType="#//psm_instance/ParameterisableDiscreteSinglePortInstance" eOpposite="#//psm_instance/ParameterisableDiscreteSinglePortInstance/bindings">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The instance of a discrete port."/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="parameter" lowerBound="1"
eType="#//psm_realtimestatechart/realtimestatechartparameter/RealtimeStatechartParameter">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The parameter, to which a concrete value will be assigned."/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
</eSubpackages>
</eSubpackages>
<eSubpackages name="psm_instance" nsURI="http://www.muml.org/psm/instance/1.0.0"
nsPrefix="psm_instance">
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore">
<details key="invocationDelegates" value="http://www.eclipse.org/emf/2002/Ecore/OCL"/>
<details key="settingDelegates" value="http://www.eclipse.org/emf/2002/Ecore/OCL"/>
<details key="validationDelegates" value="http://www.eclipse.org/emf/2002/Ecore/OCL"/>
</eAnnotations>
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The package extends the instance-package of muml. Here all parameters of a statechart will be bound within an instance of a discrete port."/>
</eAnnotations>
<eClassifiers xsi:type="ecore:EClass" name="ParameterisableDiscreteSinglePortInstance"
eSuperTypes="../../org.muml.pim/model/pim.ecore#//instance/DiscreteSinglePortInstance">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="This class is a extension of a discrete port at instance level. The behavior of this port instance can have parameters. To these parameters this class defines parameter bindings."/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="bindings" upperBound="-1"
eType="#//psm_realtimestatechart/realtimestatechartparameterbinding/RealtimeStatechartParameterBinding"
containment="true" eOpposite="#//psm_realtimestatechart/realtimestatechartparameterbinding/RealtimeStatechartParameterBinding/portInstance">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The parameter bindings for each parameter of the statechart of the port."/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
</eSubpackages>
<eSubpackages name="portapimapping" nsURI="http://www.muml.org/psm/portapimapping/1.0.0"
nsPrefix="portapimapping">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="This package describes the informations that are needed to model a mapping from continuouse ports in MechatronicUML to api-commands. The ports of a continuourse component can be mapped to an expression, which can e.g. be a call of an api-command."/>
</eAnnotations>
<eClassifiers xsi:type="ecore:EClass" name="PortApiMapping" eSuperTypes="../../org.muml.core/model/core.ecore#//CommentableElement">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="This class represents the mapping of a muml-model. The continuous port from that model will be mapped to an expression, that should be executet, when the continuours ports send/recieve values."/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="port" lowerBound="1"
eType="ecore:EClass ../../org.muml.pim/model/pim.ecore#//instance/ContinuousPortInstance">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The continuous port, that will be mapped to an expression."/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="execCommand" lowerBound="1"
eType="ecore:EClass ../../org.muml.core/model/core.ecore#//expressions/Expression"
containment="true">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The command to which a continuous port will be mapped. This command is executed each time, the continuous port is queried."/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="repository" lowerBound="1"
eType="#//portapimapping/MappingRepository" eOpposite="#//portapimapping/MappingRepository/portApiMappings">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The repository to which the mapping belongs."/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="initCommand" eType="ecore:EClass ../../org.muml.core/model/core.ecore#//expressions/Expression"
containment="true">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="A optional command which has to be executed before any other api-command can be executed. For example some sonsors and actuators require an initial api-command."/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="MappingRepository" eSuperTypes="../../org.muml.core/model/core.ecore#//NamedElement ../../org.muml.core/model/core.ecore#//CommentableElement">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="This class orders the mappings of a port. It is used to declare port mappings that assign api-commands to a conutinous port."/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="portApiMappings" upperBound="-1"
eType="#//portapimapping/PortApiMapping" containment="true" eOpposite="#//portapimapping/PortApiMapping/repository">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The mapping of a port, that assigns a api-command to a continuous port."/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="imports" upperBound="-1"
eType="#//Import" containment="true"/>
</eClassifiers>
</eSubpackages>
<eSubpackages name="apiexpressions" nsURI="http://www.muml.org/psm/apiexpressions/1.0.0"
nsPrefix="apiexpressions">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="This package contains all expressions, which are used to model a call of an api-command with actual parameters."/>
</eAnnotations>
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore">
<details key="invocationDelegates" value="http://www.eclipse.org/emf/2002/Ecore/OCL"/>
<details key="settingDelegates" value="http://www.eclipse.org/emf/2002/Ecore/OCL"/>
<details key="validationDelegates" value="http://www.eclipse.org/emf/2002/Ecore/OCL"/>
</eAnnotations>
<eClassifiers xsi:type="ecore:EClass" name="APICallExpression" eSuperTypes="../../org.muml.core/model/core.ecore#//expressions/Expression">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="This class represents an api call. It has an actual parameter for each formal parameter of an api-command. Inside an actual parameter a concrete value will be mapped to the formal parameters of an api-command from the swplatform-package."/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="apiCommand" lowerBound="1"
eType="ecore:EClass ../../org.muml.pm.software/model/software.ecore#//APICommand">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The APICommand to which this expression belongs."/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="parameterBindings" upperBound="-1"
eType="ecore:EClass ../../org.muml.pim/model/pim.ecore#//behavior/ParameterBinding"
containment="true">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The mapping where an actual parameter will be bound to a formal parameter."/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EnumerationValueExpression" eSuperTypes="../../org.muml.core/model/core.ecore#//expressions/Expression">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="This class represents an EnumerationValue at runtime. At runtime the Enumeration is bound to one of its possible values. This means, that a concrete EnumerationValue will be mapped to the Enumeration from the swplatform-package."/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="enumValue" lowerBound="1"
eType="ecore:EClass ../../org.muml.pm.software/model/software.ecore#//EnumerationValue">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The EnumerationValue to which this expression belongs."/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ContinuousPortExpression" eSuperTypes="../../org.muml.core/model/core.ecore#//expressions/Expression">
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore">
<details key="constraints" value="OnlyInPortsAllowed"/>
</eAnnotations>
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="This class represents an expression, that contains a continuous port instance. In that way an api-command of an actuator can access the new value of the actuator."/>
</eAnnotations>
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore/OCL">
<details key="OnlyInPortsAllowed" value="-- Only Inport are allowed
let result : Boolean = (self.continuousPort.portType.oclAsType(component::DirectedTypedPort).kind = component::PortDirectionKind::IN) in
if ( result.oclIsUndefined()) 
then 
true
else
false
 endif"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="continuousPort" lowerBound="1"
eType="ecore:EClass ../../org.muml.pim/model/pim.ecore#//instance/ContinuousPortInstance">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The continuous port instance that belongs to the expression."/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
</eSubpackages>
</ecore:EPackage>
| github:ecore:/data/fraunhofer-iem/mechatronicuml/PlatformSpecificModeling/org.muml.psm/model/psm.ecore | ecore | psm
Import
importURI
allocation
SystemAllocation
allocations
cic
hpic
assemblyConnectorInstanceAllocations
Allocation
componentInstance
resourceInstance
AssemblyConnectorInstanceAllocation
assemblyConnectorInstance
networkConnectorInstance
properties
WCET
wcet
resourceInstance
RequiredMemory
requiredMemory
resourceInstance
Scheduling
deadline
period
priority
MessageFrame
size
period
CANMessageFrame
priority
deadline
psm_realtimestatechart
ParameterizedRealtimeStatechart
parameters
allParameters
APICall
apiCallSignature
realtimestatechartparameter
APICallParameter
TimeParameter
RealtimeStatechartParameter
statechart
realtimestatechartparameterbinding
APICallParameterBinding
expression
TimeParameterBinding
timeValue
RealtimeStatechartParameterBinding
portInstance
parameter
psm_instance
ParameterisableDiscreteSinglePortInstance
bindings
portapimapping
PortApiMapping
port
execCommand
repository
initCommand
MappingRepository
portApiMappings
imports
apiexpressions
APICallExpression
apiCommand
parameterBindings
EnumerationValueExpression
enumValue
ContinuousPortExpression
continuousPort | null | {"directed":true,"nodes":[{"nsPrefix":"psm","nsURI":"http://www.muml.org/psm/1.0.0","name":"psm","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Import","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"nsPrefix":"allocation","nsURI":"http://www.muml.org/psm/allocation/1.0.0","name":"allocation","id":2,"eClass":"EPackage"},{"nsPrefix":"properties","nsURI":"http://www.muml.org/psm/properties/1.0.0","name":"properties","id":3,"eClass":"EPackage"},{"nsPrefix":"psm_realtimestatechart","nsURI":"http://www.muml.org/psm/realtimestatechart/1.0.0","name":"psm_realtimestatechart","id":4,"eClass":"EPackage"},{"nsPrefix":"psm_instance","nsURI":"http://www.muml.org/psm/instance/1.0.0","name":"psm_instance","id":5,"eClass":"EPackage"},{"nsPrefix":"portapimapping","nsURI":"http://www.muml.org/psm/portapimapping/1.0.0","name":"portapimapping","id":6,"eClass":"EPackage"},{"nsPrefix":"apiexpressions","nsURI":"http://www.muml.org/psm/apiexpressions/1.0.0","name":"apiexpressions","id":7,"eClass":"EPackage"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"importURI","changeable":true,"lowerBound":0,"iD":false,"id":8,"derived":false},{"id":9,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SystemAllocation","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Allocation","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AssemblyConnectorInstanceAllocation","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"allocations","changeable":true,"resolveProxies":true,"lowerBound":1,"id":13,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"cic","changeable":true,"resolveProxies":true,"lowerBound":1,"id":14,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"hpic","changeable":true,"resolveProxies":true,"lowerBound":1,"id":15,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"assemblyConnectorInstanceAllocations","changeable":true,"resolveProxies":true,"lowerBound":0,"id":16,"derived":false},{"id":17,"eClass":"EGenericType"},{"id":18,"eClass":"EGenericType"},{"id":19,"eClass":"EGenericType"},{"id":20,"eClass":"EGenericType"},{"id":21,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"componentInstance","changeable":true,"resolveProxies":true,"lowerBound":1,"id":22,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"resourceInstance","changeable":true,"resolveProxies":true,"lowerBound":1,"id":23,"derived":false},{"id":24,"eClass":"EGenericType"},{"id":25,"eClass":"EGenericType"},{"id":26,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"assemblyConnectorInstance","changeable":true,"resolveProxies":true,"lowerBound":1,"id":27,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"networkConnectorInstance","changeable":true,"resolveProxies":true,"lowerBound":0,"id":28,"derived":false},{"id":29,"eClass":"EGenericType"},{"id":30,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"WCET","instanceClass":null,"abstract":false,"id":31,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RequiredMemory","instanceClass":null,"abstract":false,"id":32,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Scheduling","instanceClass":null,"abstract":false,"id":33,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MessageFrame","instanceClass":null,"abstract":false,"id":34,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CANMessageFrame","instanceClass":null,"abstract":false,"id":35,"interface":false,"eClass":"EClass"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"wcet","changeable":true,"resolveProxies":true,"lowerBound":1,"id":36,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"resourceInstance","changeable":true,"resolveProxies":true,"lowerBound":0,"id":37,"derived":false},{"id":38,"eClass":"EGenericType"},{"id":39,"eClass":"EGenericType"},{"id":40,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"requiredMemory","changeable":true,"resolveProxies":true,"lowerBound":1,"id":41,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"resourceInstance","changeable":true,"resolveProxies":true,"lowerBound":0,"id":42,"derived":false},{"id":43,"eClass":"EGenericType"},{"id":44,"eClass":"EGenericType"},{"id":45,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"deadline","changeable":true,"resolveProxies":true,"lowerBound":1,"id":46,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"period","changeable":true,"resolveProxies":true,"lowerBound":1,"id":47,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"priority","changeable":true,"resolveProxies":true,"lowerBound":0,"id":48,"derived":false},{"id":49,"eClass":"EGenericType"},{"id":50,"eClass":"EGenericType"},{"id":51,"eClass":"EGenericType"},{"id":52,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"size","changeable":true,"resolveProxies":true,"lowerBound":1,"id":53,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"period","changeable":true,"resolveProxies":true,"lowerBound":1,"id":54,"derived":false},{"id":55,"eClass":"EGenericType"},{"id":56,"eClass":"EGenericType"},{"id":57,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"priority","changeable":true,"resolveProxies":true,"lowerBound":1,"id":58,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"deadline","changeable":true,"resolveProxies":true,"lowerBound":1,"id":59,"derived":false},{"id":60,"eClass":"EGenericType"},{"id":61,"eClass":"EGenericType"},{"id":62,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ParameterizedRealtimeStatechart","instanceClass":null,"abstract":false,"id":63,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"APICall","instanceClass":null,"abstract":false,"id":64,"interface":false,"eClass":"EClass"},{"nsPrefix":"realtimestatechartparameter","nsURI":"http://www.muml.org/psm/realtimestatechart/realtimestatechartparameter/1.0.0","name":"realtimestatechartparameter","id":65,"eClass":"EPackage"},{"nsPrefix":"realtimestatechartparameterbinding","nsURI":"http://www.muml.org/psm/realtimestatechart/realtimestatechartparameterbinding/1.0.0","name":"realtimestatechartparameterbinding","id":66,"eClass":"EPackage"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"parameters","changeable":true,"resolveProxies":true,"lowerBound":0,"id":67,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":true,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"allParameters","changeable":true,"resolveProxies":true,"lowerBound":0,"id":68,"derived":true},{"id":69,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RealtimeStatechartParameter","instanceClass":null,"abstract":true,"id":70,"interface":false,"eClass":"EClass"},{"id":71,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"statechart","changeable":true,"resolveProxies":true,"lowerBound":1,"id":72,"derived":false},{"id":73,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"apiCallSignature","changeable":true,"resolveProxies":true,"lowerBound":1,"id":74,"derived":false},{"id":75,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"APICallParameter","instanceClass":null,"abstract":false,"id":76,"interface":false,"eClass":"EClass"},{"id":77,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TimeParameter","instanceClass":null,"abstract":false,"id":78,"interface":false,"eClass":"EClass"},{"id":79,"eClass":"EGenericType"},{"id":80,"eClass":"EGenericType"},{"id":81,"eClass":"EGenericType"},{"id":82,"eClass":"EGenericType"},{"id":83,"eClass":"EGenericType"},{"id":84,"eClass":"EGenericType"},{"id":85,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"APICallParameterBinding","instanceClass":null,"abstract":false,"id":86,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TimeParameterBinding","instanceClass":null,"abstract":false,"id":87,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RealtimeStatechartParameterBinding","instanceClass":null,"abstract":true,"id":88,"interface":false,"eClass":"EClass"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"expression","changeable":true,"resolveProxies":true,"lowerBound":1,"id":89,"derived":false},{"id":90,"eClass":"EGenericType"},{"id":91,"eClass":"EGenericType"},{"id":92,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"timeValue","changeable":true,"resolveProxies":true,"lowerBound":1,"id":93,"derived":false},{"id":94,"eClass":"EGenericType"},{"id":95,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"portInstance","changeable":true,"resolveProxies":true,"lowerBound":1,"id":96,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"parameter","changeable":true,"resolveProxies":true,"lowerBound":1,"id":97,"derived":false},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ParameterisableDiscreteSinglePortInstance","instanceClass":null,"abstract":false,"id":98,"interface":false,"eClass":"EClass"},{"id":99,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"bindings","changeable":true,"resolveProxies":true,"lowerBound":0,"id":100,"derived":false},{"id":101,"eClass":"EGenericType"},{"id":102,"eClass":"EGenericType"},{"id":103,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PortApiMapping","instanceClass":null,"abstract":false,"id":104,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MappingRepository","instanceClass":null,"abstract":false,"id":105,"interface":false,"eClass":"EClass"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"port","changeable":true,"resolveProxies":true,"lowerBound":1,"id":106,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"execCommand","changeable":true,"resolveProxies":true,"lowerBound":1,"id":107,"derived":false},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"repository","changeable":true,"resolveProxies":true,"lowerBound":1,"id":108,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"initCommand","changeable":true,"resolveProxies":true,"lowerBound":0,"id":109,"derived":false},{"id":110,"eClass":"EGenericType"},{"id":111,"eClass":"EGenericType"},{"id":112,"eClass":"EGenericType"},{"id":113,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"portApiMappings","changeable":true,"resolveProxies":true,"lowerBound":0,"id":114,"derived":false},{"id":115,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"imports","changeable":true,"resolveProxies":true,"lowerBound":0,"id":116,"derived":false},{"id":117,"eClass":"EGenericType"},{"id":118,"eClass":"EGenericType"},{"id":119,"eClass":"EGenericType"},{"id":120,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"APICallExpression","instanceClass":null,"abstract":false,"id":121,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EnumerationValueExpression","instanceClass":null,"abstract":false,"id":122,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ContinuousPortExpression","instanceClass":null,"abstract":false,"id":123,"interface":false,"eClass":"EClass"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"apiCommand","changeable":true,"resolveProxies":true,"lowerBound":1,"id":124,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"parameterBindings","changeable":true,"resolveProxies":true,"lowerBound":0,"id":125,"derived":false},{"id":126,"eClass":"EGenericType"},{"id":127,"eClass":"EGenericType"},{"id":128,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"enumValue","changeable":true,"resolveProxies":true,"lowerBound":1,"id":129,"derived":false},{"id":130,"eClass":"EGenericType"},{"id":131,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"continuousPort","changeable":true,"resolveProxies":true,"lowerBound":1,"id":132,"derived":false},{"id":133,"eClass":"EGenericType"},{"id":134,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":1,"target":0},{"source":1,"target":8},{"source":8,"target":9},{"source":8,"target":1},{"source":2,"target":10},{"source":2,"target":11},{"source":2,"target":12},{"source":2,"target":0},{"source":10,"target":2},{"source":10,"target":13},{"source":10,"target":14},{"source":10,"target":15},{"source":10,"target":16},{"source":10,"target":17},{"source":13,"target":11},{"source":13,"target":18},{"source":13,"target":10},{"source":18,"target":11},{"source":14,"target":19},{"source":14,"target":10},{"source":15,"target":20},{"source":15,"target":10},{"source":16,"target":12},{"source":16,"target":21},{"source":16,"target":10},{"source":21,"target":12},{"source":11,"target":2},{"source":11,"target":22},{"source":11,"target":23},{"source":11,"target":24},{"source":22,"target":25},{"source":22,"target":11},{"source":23,"target":26},{"source":23,"target":11},{"source":12,"target":2},{"source":12,"target":27},{"source":12,"target":28},{"source":27,"target":29},{"source":27,"target":12},{"source":28,"target":30},{"source":28,"target":12},{"source":3,"target":31},{"source":3,"target":32},{"source":3,"target":33},{"source":3,"target":34},{"source":3,"target":35},{"source":3,"target":0},{"source":31,"target":3},{"source":31,"target":36},{"source":31,"target":37},{"source":31,"target":38},{"source":36,"target":39},{"source":36,"target":31},{"source":37,"target":40},{"source":37,"target":31},{"source":32,"target":3},{"source":32,"target":41},{"source":32,"target":42},{"source":32,"target":43},{"source":41,"target":44},{"source":41,"target":32},{"source":42,"target":45},{"source":42,"target":32},{"source":33,"target":3},{"source":33,"target":46},{"source":33,"target":47},{"source":33,"target":48},{"source":33,"target":49},{"source":46,"target":50},{"source":46,"target":33},{"source":47,"target":51},{"source":47,"target":33},{"source":48,"target":52},{"source":48,"target":33},{"source":34,"target":3},{"source":34,"target":53},{"source":34,"target":54},{"source":34,"target":55},{"source":53,"target":56},{"source":53,"target":34},{"source":54,"target":57},{"source":54,"target":34},{"source":35,"target":3},{"source":35,"target":34},{"source":35,"target":58},{"source":35,"target":59},{"source":35,"target":60},{"source":58,"target":61},{"source":58,"target":35},{"source":59,"target":62},{"source":59,"target":35},{"source":60,"target":34},{"source":4,"target":63},{"source":4,"target":64},{"source":4,"target":65},{"source":4,"target":66},{"source":4,"target":0},{"source":63,"target":4},{"source":63,"target":67},{"source":63,"target":68},{"source":63,"target":69},{"source":67,"target":70},{"source":67,"target":71},{"source":67,"target":63},{"source":67,"target":72},{"source":71,"target":70},{"source":68,"target":70},{"source":68,"target":73},{"source":68,"target":63},{"source":73,"target":70},{"source":64,"target":4},{"source":64,"target":74},{"source":64,"target":75},{"source":74,"target":76},{"source":74,"target":77},{"source":74,"target":64},{"source":77,"target":76},{"source":65,"target":76},{"source":65,"target":78},{"source":65,"target":70},{"source":65,"target":4},{"source":76,"target":65},{"source":76,"target":70},{"source":76,"target":79},{"source":76,"target":80},{"source":79,"target":70},{"source":78,"target":65},{"source":78,"target":70},{"source":78,"target":81},{"source":78,"target":82},{"source":81,"target":70},{"source":70,"target":65},{"source":70,"target":72},{"source":70,"target":83},{"source":70,"target":84},{"source":72,"target":63},{"source":72,"target":85},{"source":72,"target":70},{"source":72,"target":67},{"source":85,"target":63},{"source":66,"target":86},{"source":66,"target":87},{"source":66,"target":88},{"source":66,"target":4},{"source":86,"target":66},{"source":86,"target":88},{"source":86,"target":89},{"source":86,"target":90},{"source":86,"target":91},{"source":89,"target":92},{"source":89,"target":86},{"source":90,"target":88},{"source":87,"target":66},{"source":87,"target":88},{"source":87,"target":93},{"source":87,"target":94},{"source":93,"target":95},{"source":93,"target":87},{"source":94,"target":88},{"source":88,"target":66},{"source":88,"target":96},{"source":88,"target":97},{"source":96,"target":98},{"source":96,"target":99},{"source":96,"target":88},{"source":96,"target":100},{"source":99,"target":98},{"source":97,"target":70},{"source":97,"target":101},{"source":97,"target":88},{"source":101,"target":70},{"source":5,"target":98},{"source":5,"target":0},{"source":98,"target":5},{"source":98,"target":100},{"source":98,"target":102},{"source":100,"target":88},{"source":100,"target":103},{"source":100,"target":98},{"source":100,"target":96},{"source":103,"target":88},{"source":6,"target":104},{"source":6,"target":105},{"source":6,"target":0},{"source":104,"target":6},{"source":104,"target":106},{"source":104,"target":107},{"source":104,"target":108},{"source":104,"target":109},{"source":104,"target":110},{"source":106,"target":111},{"source":106,"target":104},{"source":107,"target":112},{"source":107,"target":104},{"source":108,"target":105},{"source":108,"target":113},{"source":108,"target":104},{"source":108,"target":114},{"source":113,"target":105},{"source":109,"target":115},{"source":109,"target":104},{"source":105,"target":6},{"source":105,"target":114},{"source":105,"target":116},{"source":105,"target":117},{"source":105,"target":118},{"source":114,"target":104},{"source":114,"target":119},{"source":114,"target":105},{"source":114,"target":108},{"source":119,"target":104},{"source":116,"target":1},{"source":116,"target":120},{"source":116,"target":105},{"source":120,"target":1},{"source":7,"target":121},{"source":7,"target":122},{"source":7,"target":123},{"source":7,"target":0},{"source":121,"target":7},{"source":121,"target":124},{"source":121,"target":125},{"source":121,"target":126},{"source":124,"target":127},{"source":124,"target":121},{"source":125,"target":128},{"source":125,"target":121},{"source":122,"target":7},{"source":122,"target":129},{"source":122,"target":130},{"source":129,"target":131},{"source":129,"target":122},{"source":123,"target":7},{"source":123,"target":132},{"source":123,"target":133},{"source":132,"target":134},{"source":132,"target":123}],"multigraph":true} |
false | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="myHdbti" nsURI="http://www.sap.com/xsk/models/hdbti/Hdbti" nsPrefix="myHdbti">
<eClassifiers xsi:type="ecore:EClass" name="HdbdtiModel">
<eStructuralFeatures xsi:type="ecore:EReference" name="importElement" eType="#//Import"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="GroupType">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ImportConfig">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="table" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="tableValue" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="schema" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="schemaValue" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="file" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="fileValue" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="delimField" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="delimFieldValue" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="header" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="headerValue" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="keys" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="headerValues" upperBound="-1"
eType="#//GroupType" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="delimEnclosing" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="delimEnclosingValue" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="distinguishEmptyFromNull"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="distinguishEmptyFromNullValue"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="useHeaderNames" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="useHeaderNamesValue" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Import">
<eStructuralFeatures xsi:type="ecore:EReference" name="values" upperBound="-1"
eType="#//ImportConfig" containment="true"/>
</eClassifiers>
</ecore:EPackage>
| github:ecore:/data/SAP/xsk/modules/parsers/parser-hdbti/com.sap.xsk.models.hdbti/model/generated/Hdbti.ecore | ecore | myHdbti
HdbdtiModel
importElement
GroupType
value
ImportConfig
table
tableValue
schema
schemaValue
file
fileValue
delimField
delimFieldValue
header
headerValue
keys
headerValues
delimEnclosing
delimEnclosingValue
distinguishEmptyFromNull
distinguishEmptyFromNullValue
useHeaderNames
useHeaderNamesValue
Import
values | null | {"directed":true,"nodes":[{"nsPrefix":"myHdbti","nsURI":"http://www.sap.com/xsk/models/hdbti/Hdbti","name":"myHdbti","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"HdbdtiModel","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"GroupType","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ImportConfig","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Import","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"importElement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":5,"derived":false},{"id":6,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":0,"iD":false,"id":7,"derived":false},{"id":8,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"table","changeable":true,"lowerBound":0,"iD":false,"id":9,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"tableValue","changeable":true,"lowerBound":0,"iD":false,"id":10,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"schema","changeable":true,"lowerBound":0,"iD":false,"id":11,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"schemaValue","changeable":true,"lowerBound":0,"iD":false,"id":12,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"file","changeable":true,"lowerBound":0,"iD":false,"id":13,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"fileValue","changeable":true,"lowerBound":0,"iD":false,"id":14,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"delimField","changeable":true,"lowerBound":0,"iD":false,"id":15,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"delimFieldValue","changeable":true,"lowerBound":0,"iD":false,"id":16,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"header","changeable":true,"lowerBound":0,"iD":false,"id":17,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"headerValue","changeable":true,"lowerBound":0,"iD":false,"id":18,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"keys","changeable":true,"lowerBound":0,"iD":false,"id":19,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"headerValues","changeable":true,"resolveProxies":true,"lowerBound":0,"id":20,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"delimEnclosing","changeable":true,"lowerBound":0,"iD":false,"id":21,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"delimEnclosingValue","changeable":true,"lowerBound":0,"iD":false,"id":22,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"distinguishEmptyFromNull","changeable":true,"lowerBound":0,"iD":false,"id":23,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"distinguishEmptyFromNullValue","changeable":true,"lowerBound":0,"iD":false,"id":24,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"useHeaderNames","changeable":true,"lowerBound":0,"iD":false,"id":25,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"useHeaderNamesValue","changeable":true,"lowerBound":0,"iD":false,"id":26,"derived":false},{"id":27,"eClass":"EGenericType"},{"id":28,"eClass":"EGenericType"},{"id":29,"eClass":"EGenericType"},{"id":30,"eClass":"EGenericType"},{"id":31,"eClass":"EGenericType"},{"id":32,"eClass":"EGenericType"},{"id":33,"eClass":"EGenericType"},{"id":34,"eClass":"EGenericType"},{"id":35,"eClass":"EGenericType"},{"id":36,"eClass":"EGenericType"},{"id":37,"eClass":"EGenericType"},{"id":38,"eClass":"EGenericType"},{"id":39,"eClass":"EGenericType"},{"id":40,"eClass":"EGenericType"},{"id":41,"eClass":"EGenericType"},{"id":42,"eClass":"EGenericType"},{"id":43,"eClass":"EGenericType"},{"id":44,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"values","changeable":true,"resolveProxies":true,"lowerBound":0,"id":45,"derived":false},{"id":46,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":1,"target":0},{"source":1,"target":5},{"source":5,"target":4},{"source":5,"target":6},{"source":5,"target":1},{"source":6,"target":4},{"source":2,"target":0},{"source":2,"target":7},{"source":7,"target":8},{"source":7,"target":2},{"source":3,"target":0},{"source":3,"target":9},{"source":3,"target":10},{"source":3,"target":11},{"source":3,"target":12},{"source":3,"target":13},{"source":3,"target":14},{"source":3,"target":15},{"source":3,"target":16},{"source":3,"target":17},{"source":3,"target":18},{"source":3,"target":19},{"source":3,"target":20},{"source":3,"target":21},{"source":3,"target":22},{"source":3,"target":23},{"source":3,"target":24},{"source":3,"target":25},{"source":3,"target":26},{"source":9,"target":27},{"source":9,"target":3},{"source":10,"target":28},{"source":10,"target":3},{"source":11,"target":29},{"source":11,"target":3},{"source":12,"target":30},{"source":12,"target":3},{"source":13,"target":31},{"source":13,"target":3},{"source":14,"target":32},{"source":14,"target":3},{"source":15,"target":33},{"source":15,"target":3},{"source":16,"target":34},{"source":16,"target":3},{"source":17,"target":35},{"source":17,"target":3},{"source":18,"target":36},{"source":18,"target":3},{"source":19,"target":37},{"source":19,"target":3},{"source":20,"target":2},{"source":20,"target":38},{"source":20,"target":3},{"source":38,"target":2},{"source":21,"target":39},{"source":21,"target":3},{"source":22,"target":40},{"source":22,"target":3},{"source":23,"target":41},{"source":23,"target":3},{"source":24,"target":42},{"source":24,"target":3},{"source":25,"target":43},{"source":25,"target":3},{"source":26,"target":44},{"source":26,"target":3},{"source":4,"target":0},{"source":4,"target":45},{"source":45,"target":3},{"source":45,"target":46},{"source":45,"target":4},{"source":46,"target":3}],"multigraph":true} |
false | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0"
xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="metrics"
nsURI="http://www.netxforge.com/05012011/metrics" nsPrefix="metrics">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="

			Network Data schema Copyright 2008 The schema uses
			ecore
			references syntax, but should easily map into an SQL schema.
			The
			ecore
			references, are mapped into ORM specific DLL (See
			Hibernate or
			other
			ORM. EMF/Hibernate
			however uses a custom mechanism.

			Don't use
			the
			word
			"Item", as this is appended to the Object
			name in the EMF
			edit
			model.
			
			Validation with pattern is not used, considering the limited capabilities of XSD patterns. 
			
		


			Network Data schema Copyright 2008 The schema uses
			ecore
			references syntax, but should easily map into an SQL schema.
			The
			ecore
			references, are mapped into ORM specific DLL (See
			Hibernate or
			other
			ORM. EMF/Hibernate
			however uses a custom mechanism.

			Don't use
			the
			word
			"Item", as this is appended to the Object
			name in the EMF
			edit
			model.
			
			Validation with pattern is not used, considering the limited capabilities of XSD patterns. 
			
		

		"/>
</eAnnotations>
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore">
<details key="validationDelegates" value="http://www.eclipse.org/emf/2002/Ecore/OCL
http://www.eclipse.org/emf/2002/Ecore/OCL"/>
<details key="settingDelegates" value="http://www.eclipse.org/emf/2002/Ecore/OCL
http://www.eclipse.org/emf/2002/Ecore/OCL"/>
<details key="invocationDelegates" value="http://www.eclipse.org/emf/2002/Ecore/OCL
http://www.eclipse.org/emf/2002/Ecore/OCL"/>
</eAnnotations>
<eClassifiers xsi:type="ecore:EClass" name="DataKind">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="A type representing the basic information points for a DataKind."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="DataKind"/>
<details key="kind" value="empty"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="IdentifierDataKind" eSuperTypes="#//DataKind">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="A specialized type, for representing an identifier in the mapping. The identifier should contain the target object and the target attribute of the object. 
The target object and target attribute are used to find the Object, in which the values will be stored. 

Examples: 
1. If the ObjectName is "Node" and the ObjectAttribute is "NodeID", the value of the column in the XLS with with this IdentifierDataType, will be interpreted
as the Node-&gt;NodeID identifier.	
			"/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="IdentifierDataKind"/>
<details key="kind" value="empty"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="objectAttribute" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The ObjectAttribute attribute holds the the textual name of the target attribute we are looking for.
Note: Most often this will be the "NodeID" but it can also be a "Position" identifier or anything else. "/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="ObjectAttribute"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="objectName" eType="#//ObjectNameType"
unsettable="true">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The ObjectName attributes holds the textual name of the target object we are looking for. 
Note: Most often this will be a "Node"
						"/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="ObjectName"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="KindHintType">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="KindHint_._type"/>
</eAnnotations>
<eLiterals name="BH"/>
<eLiterals name="AVG" value="1"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="KindHintTypeObject" instanceClassName="org.eclipse.emf.common.util.Enumerator">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="KindHint_._type:Object"/>
<details key="baseType" value="KindHint_._type"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Mapping">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="A type representing the basic information points for a mapping specification."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="Mapping"/>
<details key="kind" value="empty"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="MappingCSV" eSuperTypes="#//Mapping">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="A type representing the basic information points for mapping an CSV file to the NetXStudio model. 

THIS TYPE SHOULD NOT BE CONSIDERED FOR NOW. "/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="MappingCSV"/>
<details key="kind" value="empty"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="MappingRDBMS" eSuperTypes="#//Mapping">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="A type representing the basic information points for mapping an RDMS file to the NetXStudio model. 

THIS TYPE SHOULD NOT BE CONSIDERED FOR NOW. "/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="MappingRDBMS"/>
<details key="kind" value="empty"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="MappingRecord">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="A type representing the information points of a mapping record"/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="MappingRecord"/>
<details key="kind" value="empty"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="MappingRecordXLS" eSuperTypes="#//MappingRecord">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="A specialized type representing the information points of a XLS mapping record.
			"/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="MappingRecordXLS"/>
<details key="kind" value="empty"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="column" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//Int"
unsettable="true">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The Column attribute holds the column number.
						"/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="Column"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="row" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//Int"
unsettable="true">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The Row attribute holds the row number.
						"/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="Row"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="MappingStatistic">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="A type representing the information points of a statistic for each time a source was accessed.
			"/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="MappingStatistic"/>
<details key="kind" value="elementOnly"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="failedRecords" upperBound="-1"
eType="#//MappingRecord" containment="true" resolveProxies="false">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The FailedRecords reference, contains 0 or more MappingRecord types."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="FailedRecords"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="mappingDuration" lowerBound="1"
eType="ecore:EClass generics.ecore#//DateTimeRange" containment="true" resolveProxies="false">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The MappingDuration reference, refers to a DateTimeRange type."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="MappingDuration"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="totalRecords" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//Int"
unsettable="true">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The TotalRecords attribute holds a the number of records for this mapping run.
				"/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="TotalRecords"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="MappingXLS" eSuperTypes="#//Mapping">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="A type representing the basic information points for mapping an XLS file to the NetXStudio model. 
The mapping interprets the sheet index, the header row, the data row(s) and the types of data to be interpreted.

The types, are either a value or identifier. (Each having it's own specialized type).
Multiple identifiers can be defined, the mapping will succeed if all identifications succeed.

"/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="MappingXLS"/>
<details key="kind" value="elementOnly"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="columnHeaders" unique="false"
upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The ColumnHeaders reference, contains 0 or more textual expected header names.
Note: that if the corresponding ColumnDataKind is a Metric, the column header will be interpreted as the name of the Metric."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="ColumnHeaders"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="columnDataKind" upperBound="-1"
eType="#//DataKind" containment="true" resolveProxies="false">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The ColumnDataKind reference, contains 0 or more DataKind types. The DataKind is either an Identifer or a Value."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="ColumnDataKind"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="firstDataRow" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//Int"
unsettable="true">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The FirstDataRow attribute holds the row number of the first row containing data."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="FirstDataRow"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="headerRow" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//Int"
unsettable="true">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The HeaderRow attribute holds the row number which contains the header. "/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="HeaderRow"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="sheetNumber" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//Int"
unsettable="true">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The SheetNumber attribute holds the index of the XLS sheet to be mapped from.
						"/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="SheetNumber"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Metric">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="A type representing a metric in an a telecom equipment. This is often also referred to as counter or KPI. 
Metric types can be nested to form a hiarchical structure in similar fashion to a real KPI hiarchy.

The Metric type (and/or it's children) is first part of the Library type, and then referenced from a Node type when 
created.

Examples:
1. The Metric type "SGSN Attached subscribers" reprents a KPI on a SGSN function.
"/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="Metric"/>
<details key="kind" value="elementOnly"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="metrics" upperBound="-1"
eType="#//Metric" containment="true" resolveProxies="false">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The Metrics references, contains 0 or more Metric types.
					"/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="Metrics"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="description" eType="ecore:EDataType generics.ecore#//Description2000">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The Description attribute holds the description of the metric."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="Description"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="measurementKind" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The MeasurementKind attribute is a free form text field which can hold information about which
category or group a Metric belongs."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="MeasurementKind"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="measurementPoint" eType="ecore:EDataType generics.ecore#//Description2000">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The MeasurementPoint Attribute describes textually at which point in a procedure
the measurement takes place."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="MeasurementPoint"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="metricCalculation" eType="ecore:EDataType generics.ecore#//ExpressionLine">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The MetricCalculation references, contains 0 or 1 ExpressionLine type."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="MetricCalculation"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="metricSourceRef" eType="#//MetricSource"
eOpposite="#//MetricSource/metricRefs">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The MetricSourceRef references, references a MetricSource type."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="MetricSourceRef"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType generics.ecore#//Name255">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The Name attribute holds the name of the metric."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="Name"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="unitRef" eType="ecore:EDataType generics.ecore#//Unit">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The UnitRef reference, refers to 0 or 1 Unit type."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="UnitRef"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="MetricSource">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="A type representing the information points of a source which provides metric values.
A source, is an external data source like an RDBMS or an Excel or CSV file. The MetricSource type will contain all necessary 
to access, and map the metric values of the source to the correct Object. (Most commonly a Node).

"/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="MetricSource"/>
<details key="kind" value="elementOnly"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="metricRefs" upperBound="-1"
eType="#//Metric" eOpposite="#//Metric/metricSourceRef">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The MetricRefs reference, refers to one or more Metric types for which this source provides values.
					"/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="MetricRefs"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="metricMapping" eType="#//Mapping"
containment="true" resolveProxies="false">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="Will not be persisted in the DB, but would use a .properties file for now.
					"/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="MetricMapping"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="statistics" upperBound="-1"
eType="#//MappingStatistic" containment="true" resolveProxies="false">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The Statistics reference, contains one or more MappingStatistic types."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="Statistics"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="metricLocation" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//AnyURI">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="a URI representation of the location additional information like login/password can be appended to the URI.

Examples: 
1. For an XLS file this could be file://path_to_where_the_xls_files_are_stored/
2. For an RDMS this could be: 	jdbc:mysql://localhost:3306/DB (In this case a JDBC URL to access the DB). The login/password can be appended to the URI.
"/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="MetricLocation"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType generics.ecore#//Name255">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The Name attribute holds the name of the MetricSource as it will be presented. 
			"/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="Name"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="MetricValueRange">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="A type representing a range of metricvalues. The range has a name and provides some hints on the expected
stored values.

It is expected the metric loading or derived values will consider the hints, on where to store the metric.
			"/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="MetricValueRange"/>
<details key="kind" value="elementOnly"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="metricValues" upperBound="-1"
eType="ecore:EClass generics.ecore#//Value" containment="true" resolveProxies="false">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The MetricValue reference, contains 0 or more Value types"/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="MetricValues"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="kindHint" eType="#//KindHintType"
unsettable="true">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The KindHint attribute, holds a hint for the metric kind of a metric value, it can be either BusyHour or AVG."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="KindHint"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType generics.ecore#//Name255">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The Name attribute holds the name of the metricvaluerange.
				"/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="Name"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="periodHint" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//Int"
unsettable="true">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The PeriodHint attribute, holds a hint for the metric period between each metric value in minutes."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="PeriodHint"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="ObjectNameType">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="ObjectName_._type"/>
</eAnnotations>
<eLiterals name="NODE"/>
<eLiterals name="EQUIPMENT" value="1"/>
<eLiterals name="FUNCTION" value="2"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="ObjectNameTypeObject" instanceClassName="org.eclipse.emf.common.util.Enumerator">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="ObjectName_._type:Object"/>
<details key="baseType" value="ObjectName_._type"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ValueDataKind" eSuperTypes="#//DataKind">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="A specialized type, for representing a value in the mapping. The valuekind can be either a datetime or a metric. 
To ignore a column, provide the "null" type as the valuekind, for that for that column.

Examples: 
1. If the valueKind is metric, the mapping will store the value as a numeric value in a new Value object. 
2. if the valueKind is datetime, the mapping will store the value as a timestamp in a new Value object"/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="ValueDataKind"/>
<details key="kind" value="empty"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="valueKind" eType="#//ValueKindType"
unsettable="true">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The ValueKind attribute holds the target value type we expect. 
						"/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="ValueKind"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="ValueKindType">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="ValueKind_._type"/>
</eAnnotations>
<eLiterals name="DATETIME"/>
<eLiterals name="NULL" value="1"/>
<eLiterals name="METRIC" value="2"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="ValueKindTypeObject" instanceClassName="org.eclipse.emf.common.util.Enumerator">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="ValueKind_._type:Object"/>
<details key="baseType" value="ValueKind_._type"/>
</eAnnotations>
</eClassifiers>
</ecore:EPackage>
| github:ecore:/data/dzonekl/netxstudio/model/com.netxforge.netxstudio.models/models/cdo/05012011/metrics.ecore | ecore | metrics
DataKind
IdentifierDataKind
objectAttribute
objectName
KindHintType
BH
BH
AVG
AVG
KindHintTypeObject
org.eclipse.emf.common.util.Enumerator
org.eclipse.emf.common.util.Enumerator
Mapping
MappingCSV
MappingRDBMS
MappingRecord
MappingRecordXLS
column
row
MappingStatistic
failedRecords
mappingDuration
totalRecords
MappingXLS
columnHeaders
columnDataKind
firstDataRow
headerRow
sheetNumber
Metric
metrics
description
measurementKind
measurementPoint
metricCalculation
metricSourceRef
name
unitRef
MetricSource
metricRefs
metricMapping
statistics
metricLocation
name
MetricValueRange
metricValues
kindHint
name
periodHint
ObjectNameType
NODE
NODE
EQUIPMENT
EQUIPMENT
FUNCTION
FUNCTION
ObjectNameTypeObject
org.eclipse.emf.common.util.Enumerator
org.eclipse.emf.common.util.Enumerator
ValueDataKind
valueKind
ValueKindType
DATETIME
DATETIME
NULL
NULL
METRIC
METRIC
ValueKindTypeObject
org.eclipse.emf.common.util.Enumerator
org.eclipse.emf.common.util.Enumerator | null | {"directed":true,"nodes":[{"nsPrefix":"metrics","nsURI":"http://www.netxforge.com/05012011/metrics","name":"metrics","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DataKind","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IdentifierDataKind","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"KindHintType","instanceClass":null,"id":3,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":"org.eclipse.emf.common.util.Enumerator","defaultValue":null,"instanceClassName":"org.eclipse.emf.common.util.Enumerator","name":"KindHintTypeObject","instanceClass":"org.eclipse.emf.common.util.Enumerator","id":4,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Mapping","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MappingCSV","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MappingRDBMS","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MappingRecord","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MappingRecordXLS","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MappingStatistic","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MappingXLS","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Metric","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MetricSource","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MetricValueRange","instanceClass":null,"abstract":false,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"ObjectNameType","instanceClass":null,"id":15,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":"org.eclipse.emf.common.util.Enumerator","defaultValue":null,"instanceClassName":"org.eclipse.emf.common.util.Enumerator","name":"ObjectNameTypeObject","instanceClass":"org.eclipse.emf.common.util.Enumerator","id":16,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ValueDataKind","instanceClass":null,"abstract":false,"id":17,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"ValueKindType","instanceClass":null,"id":18,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":"org.eclipse.emf.common.util.Enumerator","defaultValue":null,"instanceClassName":"org.eclipse.emf.common.util.Enumerator","name":"ValueKindTypeObject","instanceClass":"org.eclipse.emf.common.util.Enumerator","id":19,"serializable":true,"eClass":"EDataType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"objectAttribute","changeable":true,"lowerBound":0,"iD":false,"id":20,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":true,"name":"objectName","changeable":true,"lowerBound":0,"iD":false,"id":21,"derived":false},{"id":22,"eClass":"EGenericType"},{"id":23,"eClass":"EGenericType"},{"id":24,"eClass":"EGenericType"},{"name":"BH","id":25,"value":0,"literal":"BH","eClass":"EEnumLiteral"},{"name":"AVG","id":26,"value":1,"literal":"AVG","eClass":"EEnumLiteral"},{"id":27,"eClass":"EGenericType"},{"id":28,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":true,"name":"column","changeable":true,"lowerBound":0,"iD":false,"id":29,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":true,"name":"row","changeable":true,"lowerBound":0,"iD":false,"id":30,"derived":false},{"id":31,"eClass":"EGenericType"},{"id":32,"eClass":"EGenericType"},{"id":33,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"failedRecords","changeable":true,"resolveProxies":false,"lowerBound":0,"id":34,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"mappingDuration","changeable":true,"resolveProxies":false,"lowerBound":1,"id":35,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":true,"name":"totalRecords","changeable":true,"lowerBound":0,"iD":false,"id":36,"derived":false},{"id":37,"eClass":"EGenericType"},{"id":38,"eClass":"EGenericType"},{"id":39,"eClass":"EGenericType"},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"columnHeaders","changeable":true,"lowerBound":0,"iD":false,"id":40,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"columnDataKind","changeable":true,"resolveProxies":false,"lowerBound":0,"id":41,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":true,"name":"firstDataRow","changeable":true,"lowerBound":0,"iD":false,"id":42,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":true,"name":"headerRow","changeable":true,"lowerBound":0,"iD":false,"id":43,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":true,"name":"sheetNumber","changeable":true,"lowerBound":0,"iD":false,"id":44,"derived":false},{"id":45,"eClass":"EGenericType"},{"id":46,"eClass":"EGenericType"},{"id":47,"eClass":"EGenericType"},{"id":48,"eClass":"EGenericType"},{"id":49,"eClass":"EGenericType"},{"id":50,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"metrics","changeable":true,"resolveProxies":false,"lowerBound":0,"id":51,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"description","changeable":true,"lowerBound":0,"iD":false,"id":52,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"measurementKind","changeable":true,"lowerBound":0,"iD":false,"id":53,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"measurementPoint","changeable":true,"lowerBound":0,"iD":false,"id":54,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"metricCalculation","changeable":true,"lowerBound":0,"iD":false,"id":55,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"metricSourceRef","changeable":true,"resolveProxies":true,"lowerBound":0,"id":56,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":57,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"unitRef","changeable":true,"lowerBound":0,"iD":false,"id":58,"derived":false},{"id":59,"eClass":"EGenericType"},{"id":60,"eClass":"EGenericType"},{"id":61,"eClass":"EGenericType"},{"id":62,"eClass":"EGenericType"},{"id":63,"eClass":"EGenericType"},{"id":64,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"metricRefs","changeable":true,"resolveProxies":true,"lowerBound":0,"id":65,"derived":false},{"id":66,"eClass":"EGenericType"},{"id":67,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"metricMapping","changeable":true,"resolveProxies":false,"lowerBound":0,"id":68,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"statistics","changeable":true,"resolveProxies":false,"lowerBound":0,"id":69,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"metricLocation","changeable":true,"lowerBound":0,"iD":false,"id":70,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":71,"derived":false},{"id":72,"eClass":"EGenericType"},{"id":73,"eClass":"EGenericType"},{"id":74,"eClass":"EGenericType"},{"id":75,"eClass":"EGenericType"},{"id":76,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"metricValues","changeable":true,"resolveProxies":false,"lowerBound":0,"id":77,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":true,"name":"kindHint","changeable":true,"lowerBound":0,"iD":false,"id":78,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":79,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":true,"name":"periodHint","changeable":true,"lowerBound":0,"iD":false,"id":80,"derived":false},{"id":81,"eClass":"EGenericType"},{"id":82,"eClass":"EGenericType"},{"id":83,"eClass":"EGenericType"},{"id":84,"eClass":"EGenericType"},{"name":"NODE","id":85,"value":0,"literal":"NODE","eClass":"EEnumLiteral"},{"name":"EQUIPMENT","id":86,"value":1,"literal":"EQUIPMENT","eClass":"EEnumLiteral"},{"name":"FUNCTION","id":87,"value":2,"literal":"FUNCTION","eClass":"EEnumLiteral"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":true,"name":"valueKind","changeable":true,"lowerBound":0,"iD":false,"id":88,"derived":false},{"id":89,"eClass":"EGenericType"},{"id":90,"eClass":"EGenericType"},{"name":"DATETIME","id":91,"value":0,"literal":"DATETIME","eClass":"EEnumLiteral"},{"name":"NULL","id":92,"value":1,"literal":"NULL","eClass":"EEnumLiteral"},{"name":"METRIC","id":93,"value":2,"literal":"METRIC","eClass":"EEnumLiteral"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":0,"target":8},{"source":0,"target":9},{"source":0,"target":10},{"source":0,"target":11},{"source":0,"target":12},{"source":0,"target":13},{"source":0,"target":14},{"source":0,"target":15},{"source":0,"target":16},{"source":0,"target":17},{"source":0,"target":18},{"source":0,"target":19},{"source":1,"target":0},{"source":2,"target":0},{"source":2,"target":1},{"source":2,"target":20},{"source":2,"target":21},{"source":2,"target":22},{"source":20,"target":23},{"source":20,"target":2},{"source":21,"target":15},{"source":21,"target":24},{"source":21,"target":2},{"source":24,"target":15},{"source":22,"target":1},{"source":3,"target":0},{"source":3,"target":25},{"source":3,"target":26},{"source":25,"target":3},{"source":26,"target":3},{"source":4,"target":0},{"source":5,"target":0},{"source":6,"target":0},{"source":6,"target":5},{"source":6,"target":27},{"source":27,"target":5},{"source":7,"target":0},{"source":7,"target":5},{"source":7,"target":28},{"source":28,"target":5},{"source":8,"target":0},{"source":9,"target":0},{"source":9,"target":8},{"source":9,"target":29},{"source":9,"target":30},{"source":9,"target":31},{"source":29,"target":32},{"source":29,"target":9},{"source":30,"target":33},{"source":30,"target":9},{"source":31,"target":8},{"source":10,"target":0},{"source":10,"target":34},{"source":10,"target":35},{"source":10,"target":36},{"source":34,"target":8},{"source":34,"target":37},{"source":34,"target":10},{"source":37,"target":8},{"source":35,"target":38},{"source":35,"target":10},{"source":36,"target":39},{"source":36,"target":10},{"source":11,"target":0},{"source":11,"target":5},{"source":11,"target":40},{"source":11,"target":41},{"source":11,"target":42},{"source":11,"target":43},{"source":11,"target":44},{"source":11,"target":45},{"source":40,"target":46},{"source":40,"target":11},{"source":41,"target":1},{"source":41,"target":47},{"source":41,"target":11},{"source":47,"target":1},{"source":42,"target":48},{"source":42,"target":11},{"source":43,"target":49},{"source":43,"target":11},{"source":44,"target":50},{"source":44,"target":11},{"source":45,"target":5},{"source":12,"target":0},{"source":12,"target":51},{"source":12,"target":52},{"source":12,"target":53},{"source":12,"target":54},{"source":12,"target":55},{"source":12,"target":56},{"source":12,"target":57},{"source":12,"target":58},{"source":51,"target":12},{"source":51,"target":59},{"source":51,"target":12},{"source":59,"target":12},{"source":52,"target":60},{"source":52,"target":12},{"source":53,"target":61},{"source":53,"target":12},{"source":54,"target":62},{"source":54,"target":12},{"source":55,"target":63},{"source":55,"target":12},{"source":56,"target":13},{"source":56,"target":64},{"source":56,"target":12},{"source":56,"target":65},{"source":64,"target":13},{"source":57,"target":66},{"source":57,"target":12},{"source":58,"target":67},{"source":58,"target":12},{"source":13,"target":0},{"source":13,"target":65},{"source":13,"target":68},{"source":13,"target":69},{"source":13,"target":70},{"source":13,"target":71},{"source":65,"target":12},{"source":65,"target":72},{"source":65,"target":13},{"source":65,"target":56},{"source":72,"target":12},{"source":68,"target":5},{"source":68,"target":73},{"source":68,"target":13},{"source":73,"target":5},{"source":69,"target":10},{"source":69,"target":74},{"source":69,"target":13},{"source":74,"target":10},{"source":70,"target":75},{"source":70,"target":13},{"source":71,"target":76},{"source":71,"target":13},{"source":14,"target":0},{"source":14,"target":77},{"source":14,"target":78},{"source":14,"target":79},{"source":14,"target":80},{"source":77,"target":81},{"source":77,"target":14},{"source":78,"target":3},{"source":78,"target":82},{"source":78,"target":14},{"source":82,"target":3},{"source":79,"target":83},{"source":79,"target":14},{"source":80,"target":84},{"source":80,"target":14},{"source":15,"target":0},{"source":15,"target":85},{"source":15,"target":86},{"source":15,"target":87},{"source":85,"target":15},{"source":86,"target":15},{"source":87,"target":15},{"source":16,"target":0},{"source":17,"target":0},{"source":17,"target":1},{"source":17,"target":88},{"source":17,"target":89},{"source":88,"target":18},{"source":88,"target":90},{"source":88,"target":17},{"source":90,"target":18},{"source":89,"target":1},{"source":18,"target":0},{"source":18,"target":91},{"source":18,"target":92},{"source":18,"target":93},{"source":91,"target":18},{"source":92,"target":18},{"source":93,"target":18},{"source":19,"target":0}],"multigraph":true} |
true | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0"
xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="uml2CD"
nsURI="http://uml2CD" nsPrefix="uml2CD">
<eClassifiers xsi:type="ecore:EClass" name="Element" abstract="true">
<eStructuralFeatures xsi:type="ecore:EReference" name="ownedComment" upperBound="-1"
eType="#//Comment" containment="true" eOpposite="#//Comment/owningElement"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="owner" eType="#//Element"
eOpposite="#//Element/ownedElement"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="ownedElement" upperBound="-1"
eType="#//Element" containment="true" eOpposite="#//Element/owner"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Comment">
<eStructuralFeatures xsi:type="ecore:EReference" name="owningElement" eType="#//Element"
eOpposite="#//Element/ownedComment"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Relationship" abstract="true" eSuperTypes="#//Element">
<eStructuralFeatures xsi:type="ecore:EReference" name="relatedElement" lowerBound="1"
upperBound="-1" eType="#//Element"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="DirectRelationship" abstract="true"
eSuperTypes="#//Relationship">
<eStructuralFeatures xsi:type="ecore:EReference" name="target" lowerBound="1"
upperBound="-1" eType="#//Element"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="source" lowerBound="1"
upperBound="-1" eType="#//Element"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="NamedElement" eSuperTypes="#//Element">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="namespace" eType="#//Namespace"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="supplierDependency" upperBound="-1"
eType="#//Dependency" eOpposite="#//Dependency/supplier"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="clientDependency" upperBound="-1"
eType="#//Dependency" eOpposite="#//Dependency/client"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="VisibilityKind">
<eLiterals name="public"/>
<eLiterals name="private" value="1"/>
<eLiterals name="protected" value="2"/>
<eLiterals name="package" value="3"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="PackageableElement" abstract="true"
eSuperTypes="#//NamedElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="owningPackage" eType="#//Package"
eOpposite="#//Package/packagedElement"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Namespace" abstract="true" eSuperTypes="#//NamedElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="importedMember" upperBound="-1"
eType="#//PackageableElement"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="packageImport" upperBound="-1"
eType="#//PackageImport" containment="true" eOpposite="#//PackageImport/importingNamespace"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="elementImport" upperBound="-1"
eType="#//ElementImport" containment="true" eOpposite="#//ElementImport/importingNamespace"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="ownedRule" upperBound="-1"
eType="#//Constraint" containment="true" eOpposite="#//Constraint/context"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ElementImport" eSuperTypes="#//DirectRelationship">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="visibility" lowerBound="1"
eType="#//VisibilityKind"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="importedElement" lowerBound="1"
eType="#//PackageableElement"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="importingNamespace" lowerBound="1"
eType="#//Namespace" eOpposite="#//Namespace/elementImport"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="PackageImport" eSuperTypes="#//DirectRelationship">
<eStructuralFeatures xsi:type="ecore:EReference" name="importedPackage" lowerBound="1"
eType="#//Package"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="visibility" lowerBound="1"
eType="#//VisibilityKind"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="importingNamespace" lowerBound="1"
eType="#//Namespace" eOpposite="#//Namespace/packageImport"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Package" eSuperTypes="#//PackageableElement #//Namespace">
<eStructuralFeatures xsi:type="ecore:EReference" name="nestingPackage" eType="#//Package"
eOpposite="#//Package/nestedPackage"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="nestedPackage" upperBound="-1"
eType="#//Package" containment="true" eOpposite="#//Package/nestingPackage"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="packagedElement" upperBound="-1"
eType="#//PackageableElement" containment="true" eOpposite="#//PackageableElement/owningPackage"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="packageMerge" upperBound="-1"
eType="#//PackageMerge" containment="true" eOpposite="#//PackageMerge/receivingPackage"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="MultiplicityElement" abstract="true"
eSuperTypes="#//Element">
<eStructuralFeatures xsi:type="ecore:EReference" name="lowerValue" eType="#//ValueSpecification"
containment="true" eOpposite="#//ValueSpecification/owningLower"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="upperValue" eType="#//ValueSpecification"
containment="true" eOpposite="#//ValueSpecification/owningUpper"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ValueSpecification" eSuperTypes="#//TypedElement #//PackageableElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="owningLower" eType="#//MultiplicityElement"
eOpposite="#//MultiplicityElement/lowerValue"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="owningUpper" eType="#//MultiplicityElement"
eOpposite="#//MultiplicityElement/upperValue"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="owningConstraint" eType="#//Constraint"
eOpposite="#//Constraint/specification"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="owningParameter" eType="#//Parameter"
eOpposite="#//Parameter/defaultValue"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="owningProperty" eType="#//Property"
eOpposite="#//Property/defaultValue"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="TypedElement" abstract="true" eSuperTypes="#//NamedElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="type" eType="#//Typpee"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Typpee" eSuperTypes="#//PackageableElement"/>
<eClassifiers xsi:type="ecore:EClass" name="Constraint" eSuperTypes="#//PackageableElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="constrainedElement" upperBound="-1"
eType="#//Element"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="specification" lowerBound="1"
eType="#//ValueSpecification" containment="true" eOpposite="#//ValueSpecification/owningConstraint"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="context" eType="#//Namespace"
eOpposite="#//Namespace/ownedRule"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Generalization" eSuperTypes="#//DirectRelationship">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isSubstitutable" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="general" lowerBound="1"
eType="#//Classifier"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="specific" lowerBound="1"
eType="#//Classifier" eOpposite="#//Classifier/generalization"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="generalizationSet" upperBound="-1"
eType="#//GeneralizationSet" eOpposite="#//GeneralizationSet/generalization"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Classifier" abstract="true" eSuperTypes="#//Typpee #//Namespace">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isAbstract" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="generalization" upperBound="-1"
eType="#//Generalization" containment="true" eOpposite="#//Generalization/specific"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="feature" upperBound="-1"
eType="#//Feature" eOpposite="#//Feature/featuringClassifier"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="Class" eType="#//Class"
eOpposite="#//Class/nestedClassifier"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="powertypeExtent" upperBound="-1"
eType="#//GeneralizationSet" eOpposite="#//GeneralizationSet/powertype"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="substitution" upperBound="-1"
eType="#//Substitution" containment="true" eOpposite="#//Substitution/substitutingClassifier"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="ParameterDirectionKind">
<eLiterals name="in"/>
<eLiterals name="inout" value="1"/>
<eLiterals name="out" value="2"/>
<eLiterals name="return" value="3"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Feature" abstract="true">
<eStructuralFeatures xsi:type="ecore:EReference" name="featuringClassifier" upperBound="-1"
eType="#//Classifier" eOpposite="#//Classifier/feature"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="StructuralFeature" abstract="true" eSuperTypes="#//Feature #//TypedElement #//MultiplicityElement"/>
<eClassifiers xsi:type="ecore:EClass" name="BehavioralFeature" abstract="true" eSuperTypes="#//Feature #//Namespace">
<eStructuralFeatures xsi:type="ecore:EReference" name="ownedParameter" upperBound="-1"
eType="#//Parameter" containment="true" eOpposite="#//Parameter/ownerFormalParam"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="raisedException" upperBound="-1"
eType="#//Typpee"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Parameter" eSuperTypes="#//TypedElement #//MultiplicityElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="direction" lowerBound="1"
eType="#//ParameterDirectionKind"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="ownerFormalParam" eType="#//BehavioralFeature"
eOpposite="#//BehavioralFeature/ownedParameter"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="defaultValue" eType="#//ValueSpecification"
containment="true" eOpposite="#//ValueSpecification/owningParameter"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Operation" eSuperTypes="#//BehavioralFeature">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isQuery" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="redefinedOperation" upperBound="-1"
eType="#//Operation"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="Class" eType="#//Class"
eOpposite="#//Class/ownedOperation"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Class" eSuperTypes="#//Classifier">
<eStructuralFeatures xsi:type="ecore:EReference" name="superClass" upperBound="-1"
eType="#//Class"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="nestedClassifier" upperBound="-1"
eType="#//Classifier" containment="true" eOpposite="#//Classifier/Class"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="ownedOperation" upperBound="-1"
eType="#//Operation" containment="true" eOpposite="#//Operation/Class"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="ownedAttribute" upperBound="-1"
eType="#//Property" containment="true" eOpposite="#//Property/Class"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="AggregationKind">
<eLiterals name="none"/>
<eLiterals name="shared" value="1"/>
<eLiterals name="composite" value="2"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="DataType" eSuperTypes="#//Classifier"/>
<eClassifiers xsi:type="ecore:EClass" name="Property" eSuperTypes="#//StructuralFeature">
<eStructuralFeatures xsi:type="ecore:EReference" name="defaultValue" eType="#//ValueSpecification"
containment="true" eOpposite="#//ValueSpecification/owningProperty"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="Class" eType="#//Class"
eOpposite="#//Class/ownedAttribute"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="association" eType="#//Association"
eOpposite="#//Association/memberEnd"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="owningAssociation" eType="#//Association"
eOpposite="#//Association/ownedEnd"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="qualifier" upperBound="-1"
eType="#//Property" containment="true" eOpposite="#//Property/associationEnd"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="associationEnd" eType="#//Property"
eOpposite="#//Property/qualifier"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Association" eSuperTypes="#//Classifier #//Relationship">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isDerived" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="memberEnd" lowerBound="1"
upperBound="-1" eType="#//Property" eOpposite="#//Property/association"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="ownedEnd" upperBound="-1"
eType="#//Property" containment="true" eOpposite="#//Property/owningAssociation"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="PrimitiveType" eSuperTypes="#//DataType"/>
<eClassifiers xsi:type="ecore:EClass" name="Enumeration" eSuperTypes="#//DataType">
<eStructuralFeatures xsi:type="ecore:EReference" name="ownedLiteral" upperBound="-1"
eType="#//EnumerationLiteral" containment="true" eOpposite="#//EnumerationLiteral/enumeration"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EnumerationLiteral" eSuperTypes="#//ValueSpecification">
<eStructuralFeatures xsi:type="ecore:EReference" name="enumeration" eType="#//Enumeration"
eOpposite="#//Enumeration/ownedLiteral"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="PackageMerge" eSuperTypes="#//DirectRelationship">
<eStructuralFeatures xsi:type="ecore:EReference" name="receivingPackage" lowerBound="1"
eType="#//Package" eOpposite="#//Package/packageMerge"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="mergedPackage" lowerBound="1"
eType="#//Package"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Dependency" eSuperTypes="#//DirectRelationship #//PackageableElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="supplier" lowerBound="1"
upperBound="-1" eType="#//NamedElement" eOpposite="#//NamedElement/supplierDependency"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="client" lowerBound="1"
upperBound="-1" eType="#//NamedElement" eOpposite="#//NamedElement/clientDependency"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Abstraction" eSuperTypes="#//Dependency"/>
<eClassifiers xsi:type="ecore:EClass" name="Usage" eSuperTypes="#//Dependency"/>
<eClassifiers xsi:type="ecore:EClass" name="Realization" eSuperTypes="#//Abstraction"/>
<eClassifiers xsi:type="ecore:EClass" name="Substitution" eSuperTypes="#//Realization">
<eStructuralFeatures xsi:type="ecore:EReference" name="contract" lowerBound="1"
eType="#//Classifier"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="substitutingClassifier"
lowerBound="1" eType="#//Classifier" eOpposite="#//Classifier/substitution"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Interface" eSuperTypes="#//Classifier">
<eStructuralFeatures xsi:type="ecore:EReference" name="redefinedInterface" upperBound="-1"
eType="#//Interface"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="InterfaceRealization" eSuperTypes="#//Realization">
<eStructuralFeatures xsi:type="ecore:EReference" name="contract" lowerBound="1"
eType="#//Interface"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="AssociationClass" eSuperTypes="#//Association #//Class"/>
<eClassifiers xsi:type="ecore:EClass" name="GeneralizationSet">
<eStructuralFeatures xsi:type="ecore:EReference" name="generalization" upperBound="-1"
eType="#//Generalization" eOpposite="#//Generalization/generalizationSet"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="powertype" eType="#//Classifier"
eOpposite="#//Classifier/powertypeExtent"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isCovering" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isDisjoint" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="RedefinableElement" abstract="true"
eSuperTypes="#//Element">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isLeaf" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="redefinedElement" upperBound="-1"
eType="#//RedefinableElement"/>
</eClassifiers>
</ecore:EPackage>
| github:ecore:/data/AlFranzis/SmartMatcher/SmartMatcherTrunk/models/SystemTests/TestCase_UML/UML_light++/UML_2.0_CD.ecore | ecore | uml2CD
Element
ownedComment
owner
ownedElement
Comment
owningElement
Relationship
relatedElement
DirectRelationship
target
source
NamedElement
name
namespace
supplierDependency
clientDependency
VisibilityKind
public
public
private
private
protected
protected
package
package
PackageableElement
owningPackage
Namespace
importedMember
packageImport
elementImport
ownedRule
ElementImport
visibility
importedElement
importingNamespace
PackageImport
importedPackage
visibility
importingNamespace
Package
nestingPackage
nestedPackage
packagedElement
packageMerge
MultiplicityElement
lowerValue
upperValue
ValueSpecification
owningLower
owningUpper
owningConstraint
owningParameter
owningProperty
TypedElement
type
Typpee
Constraint
constrainedElement
specification
context
Generalization
isSubstitutable
general
specific
generalizationSet
Classifier
isAbstract
generalization
feature
Class
powertypeExtent
substitution
ParameterDirectionKind
in
in
inout
inout
out
out
return
return
Feature
featuringClassifier
StructuralFeature
BehavioralFeature
ownedParameter
raisedException
Parameter
direction
ownerFormalParam
defaultValue
Operation
isQuery
redefinedOperation
Class
Class
superClass
nestedClassifier
ownedOperation
ownedAttribute
AggregationKind
none
none
shared
shared
composite
composite
DataType
Property
defaultValue
Class
association
owningAssociation
qualifier
associationEnd
Association
isDerived
memberEnd
ownedEnd
PrimitiveType
Enumeration
ownedLiteral
EnumerationLiteral
enumeration
PackageMerge
receivingPackage
mergedPackage
Dependency
supplier
client
Abstraction
Usage
Realization
Substitution
contract
substitutingClassifier
Interface
redefinedInterface
InterfaceRealization
contract
AssociationClass
GeneralizationSet
generalization
powertype
isCovering
isDisjoint
RedefinableElement
isLeaf
redefinedElement | null | {"directed":true,"nodes":[{"nsPrefix":"uml2CD","nsURI":"http://uml2CD","name":"uml2CD","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Element","instanceClass":null,"abstract":true,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Comment","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Relationship","instanceClass":null,"abstract":true,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DirectRelationship","instanceClass":null,"abstract":true,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NamedElement","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"VisibilityKind","instanceClass":null,"id":6,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PackageableElement","instanceClass":null,"abstract":true,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Namespace","instanceClass":null,"abstract":true,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ElementImport","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PackageImport","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Package","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MultiplicityElement","instanceClass":null,"abstract":true,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ValueSpecification","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TypedElement","instanceClass":null,"abstract":true,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Typpee","instanceClass":null,"abstract":false,"id":15,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Constraint","instanceClass":null,"abstract":false,"id":16,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Generalization","instanceClass":null,"abstract":false,"id":17,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Classifier","instanceClass":null,"abstract":true,"id":18,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"ParameterDirectionKind","instanceClass":null,"id":19,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Feature","instanceClass":null,"abstract":true,"id":20,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StructuralFeature","instanceClass":null,"abstract":true,"id":21,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BehavioralFeature","instanceClass":null,"abstract":true,"id":22,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Parameter","instanceClass":null,"abstract":false,"id":23,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Operation","instanceClass":null,"abstract":false,"id":24,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Class","instanceClass":null,"abstract":false,"id":25,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"AggregationKind","instanceClass":null,"id":26,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DataType","instanceClass":null,"abstract":false,"id":27,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Property","instanceClass":null,"abstract":false,"id":28,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Association","instanceClass":null,"abstract":false,"id":29,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PrimitiveType","instanceClass":null,"abstract":false,"id":30,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Enumeration","instanceClass":null,"abstract":false,"id":31,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EnumerationLiteral","instanceClass":null,"abstract":false,"id":32,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PackageMerge","instanceClass":null,"abstract":false,"id":33,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Dependency","instanceClass":null,"abstract":false,"id":34,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Abstraction","instanceClass":null,"abstract":false,"id":35,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Usage","instanceClass":null,"abstract":false,"id":36,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Realization","instanceClass":null,"abstract":false,"id":37,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Substitution","instanceClass":null,"abstract":false,"id":38,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Interface","instanceClass":null,"abstract":false,"id":39,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InterfaceRealization","instanceClass":null,"abstract":false,"id":40,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AssociationClass","instanceClass":null,"abstract":false,"id":41,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"GeneralizationSet","instanceClass":null,"abstract":false,"id":42,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RedefinableElement","instanceClass":null,"abstract":true,"id":43,"interface":false,"eClass":"EClass"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"ownedComment","changeable":true,"resolveProxies":true,"lowerBound":0,"id":44,"derived":false},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"owner","changeable":true,"resolveProxies":true,"lowerBound":0,"id":45,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"ownedElement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":46,"derived":false},{"id":47,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"owningElement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":48,"derived":false},{"id":49,"eClass":"EGenericType"},{"id":50,"eClass":"EGenericType"},{"id":51,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"relatedElement","changeable":true,"resolveProxies":true,"lowerBound":1,"id":52,"derived":false},{"id":53,"eClass":"EGenericType"},{"id":54,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"target","changeable":true,"resolveProxies":true,"lowerBound":1,"id":55,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"source","changeable":true,"resolveProxies":true,"lowerBound":1,"id":56,"derived":false},{"id":57,"eClass":"EGenericType"},{"id":58,"eClass":"EGenericType"},{"id":59,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":60,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"namespace","changeable":true,"resolveProxies":true,"lowerBound":0,"id":61,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"supplierDependency","changeable":true,"resolveProxies":true,"lowerBound":0,"id":62,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"clientDependency","changeable":true,"resolveProxies":true,"lowerBound":0,"id":63,"derived":false},{"id":64,"eClass":"EGenericType"},{"id":65,"eClass":"EGenericType"},{"id":66,"eClass":"EGenericType"},{"id":67,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"supplier","changeable":true,"resolveProxies":true,"lowerBound":1,"id":68,"derived":false},{"id":69,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"client","changeable":true,"resolveProxies":true,"lowerBound":1,"id":70,"derived":false},{"name":"public","id":71,"value":0,"literal":"public","eClass":"EEnumLiteral"},{"name":"private","id":72,"value":1,"literal":"private","eClass":"EEnumLiteral"},{"name":"protected","id":73,"value":2,"literal":"protected","eClass":"EEnumLiteral"},{"name":"package","id":74,"value":3,"literal":"package","eClass":"EEnumLiteral"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"owningPackage","changeable":true,"resolveProxies":true,"lowerBound":0,"id":75,"derived":false},{"id":76,"eClass":"EGenericType"},{"id":77,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"packagedElement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":78,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"importedMember","changeable":true,"resolveProxies":true,"lowerBound":0,"id":79,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"packageImport","changeable":true,"resolveProxies":true,"lowerBound":0,"id":80,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"elementImport","changeable":true,"resolveProxies":true,"lowerBound":0,"id":81,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"ownedRule","changeable":true,"resolveProxies":true,"lowerBound":0,"id":82,"derived":false},{"id":83,"eClass":"EGenericType"},{"id":84,"eClass":"EGenericType"},{"id":85,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"importingNamespace","changeable":true,"resolveProxies":true,"lowerBound":1,"id":86,"derived":false},{"id":87,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"importingNamespace","changeable":true,"resolveProxies":true,"lowerBound":1,"id":88,"derived":false},{"id":89,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"context","changeable":true,"resolveProxies":true,"lowerBound":0,"id":90,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"visibility","changeable":true,"lowerBound":1,"iD":false,"id":91,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"importedElement","changeable":true,"resolveProxies":true,"lowerBound":1,"id":92,"derived":false},{"id":93,"eClass":"EGenericType"},{"id":94,"eClass":"EGenericType"},{"id":95,"eClass":"EGenericType"},{"id":96,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"importedPackage","changeable":true,"resolveProxies":true,"lowerBound":1,"id":97,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"visibility","changeable":true,"lowerBound":1,"iD":false,"id":98,"derived":false},{"id":99,"eClass":"EGenericType"},{"id":100,"eClass":"EGenericType"},{"id":101,"eClass":"EGenericType"},{"id":102,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"nestingPackage","changeable":true,"resolveProxies":true,"lowerBound":0,"id":103,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"nestedPackage","changeable":true,"resolveProxies":true,"lowerBound":0,"id":104,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"packageMerge","changeable":true,"resolveProxies":true,"lowerBound":0,"id":105,"derived":false},{"id":106,"eClass":"EGenericType"},{"id":107,"eClass":"EGenericType"},{"id":108,"eClass":"EGenericType"},{"id":109,"eClass":"EGenericType"},{"id":110,"eClass":"EGenericType"},{"id":111,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"receivingPackage","changeable":true,"resolveProxies":true,"lowerBound":1,"id":112,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"lowerValue","changeable":true,"resolveProxies":true,"lowerBound":0,"id":113,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"upperValue","changeable":true,"resolveProxies":true,"lowerBound":0,"id":114,"derived":false},{"id":115,"eClass":"EGenericType"},{"id":116,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"owningLower","changeable":true,"resolveProxies":true,"lowerBound":0,"id":117,"derived":false},{"id":118,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"owningUpper","changeable":true,"resolveProxies":true,"lowerBound":0,"id":119,"derived":false},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"owningConstraint","changeable":true,"resolveProxies":true,"lowerBound":0,"id":120,"derived":false},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"owningParameter","changeable":true,"resolveProxies":true,"lowerBound":0,"id":121,"derived":false},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"owningProperty","changeable":true,"resolveProxies":true,"lowerBound":0,"id":122,"derived":false},{"id":123,"eClass":"EGenericType"},{"id":124,"eClass":"EGenericType"},{"id":125,"eClass":"EGenericType"},{"id":126,"eClass":"EGenericType"},{"id":127,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"specification","changeable":true,"resolveProxies":true,"lowerBound":1,"id":128,"derived":false},{"id":129,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"defaultValue","changeable":true,"resolveProxies":true,"lowerBound":0,"id":130,"derived":false},{"id":131,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"defaultValue","changeable":true,"resolveProxies":true,"lowerBound":0,"id":132,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"resolveProxies":true,"lowerBound":0,"id":133,"derived":false},{"id":134,"eClass":"EGenericType"},{"id":135,"eClass":"EGenericType"},{"id":136,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"constrainedElement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":137,"derived":false},{"id":138,"eClass":"EGenericType"},{"id":139,"eClass":"EGenericType"},{"id":140,"eClass":"EGenericType"},{"id":141,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isSubstitutable","changeable":true,"lowerBound":1,"iD":false,"id":142,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"general","changeable":true,"resolveProxies":true,"lowerBound":1,"id":143,"derived":false},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"specific","changeable":true,"resolveProxies":true,"lowerBound":1,"id":144,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"generalizationSet","changeable":true,"resolveProxies":true,"lowerBound":0,"id":145,"derived":false},{"id":146,"eClass":"EGenericType"},{"id":147,"eClass":"EGenericType"},{"id":148,"eClass":"EGenericType"},{"id":149,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"generalization","changeable":true,"resolveProxies":true,"lowerBound":0,"id":150,"derived":false},{"id":151,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"generalization","changeable":true,"resolveProxies":true,"lowerBound":0,"id":152,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isAbstract","changeable":true,"lowerBound":1,"iD":false,"id":153,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"feature","changeable":true,"resolveProxies":true,"lowerBound":0,"id":154,"derived":false},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"Class","changeable":true,"resolveProxies":true,"lowerBound":0,"id":155,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"powertypeExtent","changeable":true,"resolveProxies":true,"lowerBound":0,"id":156,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"substitution","changeable":true,"resolveProxies":true,"lowerBound":0,"id":157,"derived":false},{"id":158,"eClass":"EGenericType"},{"id":159,"eClass":"EGenericType"},{"id":160,"eClass":"EGenericType"},{"id":161,"eClass":"EGenericType"},{"id":162,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"featuringClassifier","changeable":true,"resolveProxies":true,"lowerBound":0,"id":163,"derived":false},{"id":164,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"nestedClassifier","changeable":true,"resolveProxies":true,"lowerBound":0,"id":165,"derived":false},{"id":166,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"powertype","changeable":true,"resolveProxies":true,"lowerBound":0,"id":167,"derived":false},{"id":168,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"substitutingClassifier","changeable":true,"resolveProxies":true,"lowerBound":1,"id":169,"derived":false},{"name":"in","id":170,"value":0,"literal":"in","eClass":"EEnumLiteral"},{"name":"inout","id":171,"value":1,"literal":"inout","eClass":"EEnumLiteral"},{"name":"out","id":172,"value":2,"literal":"out","eClass":"EEnumLiteral"},{"name":"return","id":173,"value":3,"literal":"return","eClass":"EEnumLiteral"},{"id":174,"eClass":"EGenericType"},{"id":175,"eClass":"EGenericType"},{"id":176,"eClass":"EGenericType"},{"id":177,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"ownedParameter","changeable":true,"resolveProxies":true,"lowerBound":0,"id":178,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"raisedException","changeable":true,"resolveProxies":true,"lowerBound":0,"id":179,"derived":false},{"id":180,"eClass":"EGenericType"},{"id":181,"eClass":"EGenericType"},{"id":182,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"ownerFormalParam","changeable":true,"resolveProxies":true,"lowerBound":0,"id":183,"derived":false},{"id":184,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"direction","changeable":true,"lowerBound":1,"iD":false,"id":185,"derived":false},{"id":186,"eClass":"EGenericType"},{"id":187,"eClass":"EGenericType"},{"id":188,"eClass":"EGenericType"},{"id":189,"eClass":"EGenericType"},{"id":190,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isQuery","changeable":true,"lowerBound":1,"iD":false,"id":191,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"redefinedOperation","changeable":true,"resolveProxies":true,"lowerBound":0,"id":192,"derived":false},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"Class","changeable":true,"resolveProxies":true,"lowerBound":0,"id":193,"derived":false},{"id":194,"eClass":"EGenericType"},{"id":195,"eClass":"EGenericType"},{"id":196,"eClass":"EGenericType"},{"id":197,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"ownedOperation","changeable":true,"resolveProxies":true,"lowerBound":0,"id":198,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"superClass","changeable":true,"resolveProxies":true,"lowerBound":0,"id":199,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"ownedAttribute","changeable":true,"resolveProxies":true,"lowerBound":0,"id":200,"derived":false},{"id":201,"eClass":"EGenericType"},{"id":202,"eClass":"EGenericType"},{"id":203,"eClass":"EGenericType"},{"id":204,"eClass":"EGenericType"},{"id":205,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"Class","changeable":true,"resolveProxies":true,"lowerBound":0,"id":206,"derived":false},{"name":"none","id":207,"value":0,"literal":"none","eClass":"EEnumLiteral"},{"name":"shared","id":208,"value":1,"literal":"shared","eClass":"EEnumLiteral"},{"name":"composite","id":209,"value":2,"literal":"composite","eClass":"EEnumLiteral"},{"id":210,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"association","changeable":true,"resolveProxies":true,"lowerBound":0,"id":211,"derived":false},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"owningAssociation","changeable":true,"resolveProxies":true,"lowerBound":0,"id":212,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"qualifier","changeable":true,"resolveProxies":true,"lowerBound":0,"id":213,"derived":false},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"associationEnd","changeable":true,"resolveProxies":true,"lowerBound":0,"id":214,"derived":false},{"id":215,"eClass":"EGenericType"},{"id":216,"eClass":"EGenericType"},{"id":217,"eClass":"EGenericType"},{"id":218,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"memberEnd","changeable":true,"resolveProxies":true,"lowerBound":1,"id":219,"derived":false},{"id":220,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"ownedEnd","changeable":true,"resolveProxies":true,"lowerBound":0,"id":221,"derived":false},{"id":222,"eClass":"EGenericType"},{"id":223,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isDerived","changeable":true,"lowerBound":1,"iD":false,"id":224,"derived":false},{"id":225,"eClass":"EGenericType"},{"id":226,"eClass":"EGenericType"},{"id":227,"eClass":"EGenericType"},{"id":228,"eClass":"EGenericType"},{"id":229,"eClass":"EGenericType"},{"id":230,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"ownedLiteral","changeable":true,"resolveProxies":true,"lowerBound":0,"id":231,"derived":false},{"id":232,"eClass":"EGenericType"},{"id":233,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"enumeration","changeable":true,"resolveProxies":true,"lowerBound":0,"id":234,"derived":false},{"id":235,"eClass":"EGenericType"},{"id":236,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"mergedPackage","changeable":true,"resolveProxies":true,"lowerBound":1,"id":237,"derived":false},{"id":238,"eClass":"EGenericType"},{"id":239,"eClass":"EGenericType"},{"id":240,"eClass":"EGenericType"},{"id":241,"eClass":"EGenericType"},{"id":242,"eClass":"EGenericType"},{"id":243,"eClass":"EGenericType"},{"id":244,"eClass":"EGenericType"},{"id":245,"eClass":"EGenericType"},{"id":246,"eClass":"EGenericType"},{"id":247,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"contract","changeable":true,"resolveProxies":true,"lowerBound":1,"id":248,"derived":false},{"id":249,"eClass":"EGenericType"},{"id":250,"eClass":"EGenericType"},{"id":251,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"redefinedInterface","changeable":true,"resolveProxies":true,"lowerBound":0,"id":252,"derived":false},{"id":253,"eClass":"EGenericType"},{"id":254,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"contract","changeable":true,"resolveProxies":true,"lowerBound":1,"id":255,"derived":false},{"id":256,"eClass":"EGenericType"},{"id":257,"eClass":"EGenericType"},{"id":258,"eClass":"EGenericType"},{"id":259,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isCovering","changeable":true,"lowerBound":1,"iD":false,"id":260,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isDisjoint","changeable":true,"lowerBound":1,"iD":false,"id":261,"derived":false},{"id":262,"eClass":"EGenericType"},{"id":263,"eClass":"EGenericType"},{"id":264,"eClass":"EGenericType"},{"id":265,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isLeaf","changeable":true,"lowerBound":1,"iD":false,"id":266,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"redefinedElement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":267,"derived":false},{"id":268,"eClass":"EGenericType"},{"id":269,"eClass":"EGenericType"},{"id":270,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":0,"target":8},{"source":0,"target":9},{"source":0,"target":10},{"source":0,"target":11},{"source":0,"target":12},{"source":0,"target":13},{"source":0,"target":14},{"source":0,"target":15},{"source":0,"target":16},{"source":0,"target":17},{"source":0,"target":18},{"source":0,"target":19},{"source":0,"target":20},{"source":0,"target":21},{"source":0,"target":22},{"source":0,"target":23},{"source":0,"target":24},{"source":0,"target":25},{"source":0,"target":26},{"source":0,"target":27},{"source":0,"target":28},{"source":0,"target":29},{"source":0,"target":30},{"source":0,"target":31},{"source":0,"target":32},{"source":0,"target":33},{"source":0,"target":34},{"source":0,"target":35},{"source":0,"target":36},{"source":0,"target":37},{"source":0,"target":38},{"source":0,"target":39},{"source":0,"target":40},{"source":0,"target":41},{"source":0,"target":42},{"source":0,"target":43},{"source":1,"target":0},{"source":1,"target":44},{"source":1,"target":45},{"source":1,"target":46},{"source":44,"target":2},{"source":44,"target":47},{"source":44,"target":1},{"source":44,"target":48},{"source":47,"target":2},{"source":45,"target":1},{"source":45,"target":49},{"source":45,"target":1},{"source":45,"target":46},{"source":49,"target":1},{"source":46,"target":1},{"source":46,"target":50},{"source":46,"target":1},{"source":46,"target":45},{"source":50,"target":1},{"source":2,"target":0},{"source":2,"target":48},{"source":48,"target":1},{"source":48,"target":51},{"source":48,"target":2},{"source":48,"target":44},{"source":51,"target":1},{"source":3,"target":0},{"source":3,"target":1},{"source":3,"target":52},{"source":3,"target":53},{"source":52,"target":1},{"source":52,"target":54},{"source":52,"target":3},{"source":54,"target":1},{"source":53,"target":1},{"source":4,"target":0},{"source":4,"target":3},{"source":4,"target":55},{"source":4,"target":56},{"source":4,"target":57},{"source":55,"target":1},{"source":55,"target":58},{"source":55,"target":4},{"source":58,"target":1},{"source":56,"target":1},{"source":56,"target":59},{"source":56,"target":4},{"source":59,"target":1},{"source":57,"target":3},{"source":5,"target":0},{"source":5,"target":1},{"source":5,"target":60},{"source":5,"target":61},{"source":5,"target":62},{"source":5,"target":63},{"source":5,"target":64},{"source":60,"target":65},{"source":60,"target":5},{"source":61,"target":8},{"source":61,"target":66},{"source":61,"target":5},{"source":66,"target":8},{"source":62,"target":34},{"source":62,"target":67},{"source":62,"target":5},{"source":62,"target":68},{"source":67,"target":34},{"source":63,"target":34},{"source":63,"target":69},{"source":63,"target":5},{"source":63,"target":70},{"source":69,"target":34},{"source":64,"target":1},{"source":6,"target":0},{"source":6,"target":71},{"source":6,"target":72},{"source":6,"target":73},{"source":6,"target":74},{"source":71,"target":6},{"source":72,"target":6},{"source":73,"target":6},{"source":74,"target":6},{"source":7,"target":0},{"source":7,"target":5},{"source":7,"target":75},{"source":7,"target":76},{"source":75,"target":11},{"source":75,"target":77},{"source":75,"target":7},{"source":75,"target":78},{"source":77,"target":11},{"source":76,"target":5},{"source":8,"target":0},{"source":8,"target":5},{"source":8,"target":79},{"source":8,"target":80},{"source":8,"target":81},{"source":8,"target":82},{"source":8,"target":83},{"source":79,"target":7},{"source":79,"target":84},{"source":79,"target":8},{"source":84,"target":7},{"source":80,"target":10},{"source":80,"target":85},{"source":80,"target":8},{"source":80,"target":86},{"source":85,"target":10},{"source":81,"target":9},{"source":81,"target":87},{"source":81,"target":8},{"source":81,"target":88},{"source":87,"target":9},{"source":82,"target":16},{"source":82,"target":89},{"source":82,"target":8},{"source":82,"target":90},{"source":89,"target":16},{"source":83,"target":5},{"source":9,"target":0},{"source":9,"target":4},{"source":9,"target":91},{"source":9,"target":92},{"source":9,"target":88},{"source":9,"target":93},{"source":91,"target":6},{"source":91,"target":94},{"source":91,"target":9},{"source":94,"target":6},{"source":92,"target":7},{"source":92,"target":95},{"source":92,"target":9},{"source":95,"target":7},{"source":88,"target":8},{"source":88,"target":96},{"source":88,"target":9},{"source":88,"target":81},{"source":96,"target":8},{"source":93,"target":4},{"source":10,"target":0},{"source":10,"target":4},{"source":10,"target":97},{"source":10,"target":98},{"source":10,"target":86},{"source":10,"target":99},{"source":97,"target":11},{"source":97,"target":100},{"source":97,"target":10},{"source":100,"target":11},{"source":98,"target":6},{"source":98,"target":101},{"source":98,"target":10},{"source":101,"target":6},{"source":86,"target":8},{"source":86,"target":102},{"source":86,"target":10},{"source":86,"target":80},{"source":102,"target":8},{"source":99,"target":4},{"source":11,"target":0},{"source":11,"target":7},{"source":11,"target":8},{"source":11,"target":103},{"source":11,"target":104},{"source":11,"target":78},{"source":11,"target":105},{"source":11,"target":106},{"source":11,"target":107},{"source":103,"target":11},{"source":103,"target":108},{"source":103,"target":11},{"source":103,"target":104},{"source":108,"target":11},{"source":104,"target":11},{"source":104,"target":109},{"source":104,"target":11},{"source":104,"target":103},{"source":109,"target":11},{"source":78,"target":7},{"source":78,"target":110},{"source":78,"target":11},{"source":78,"target":75},{"source":110,"target":7},{"source":105,"target":33},{"source":105,"target":111},{"source":105,"target":11},{"source":105,"target":112},{"source":111,"target":33},{"source":106,"target":7},{"source":107,"target":8},{"source":12,"target":0},{"source":12,"target":1},{"source":12,"target":113},{"source":12,"target":114},{"source":12,"target":115},{"source":113,"target":13},{"source":113,"target":116},{"source":113,"target":12},{"source":113,"target":117},{"source":116,"target":13},{"source":114,"target":13},{"source":114,"target":118},{"source":114,"target":12},{"source":114,"target":119},{"source":118,"target":13},{"source":115,"target":1},{"source":13,"target":0},{"source":13,"target":14},{"source":13,"target":7},{"source":13,"target":117},{"source":13,"target":119},{"source":13,"target":120},{"source":13,"target":121},{"source":13,"target":122},{"source":13,"target":123},{"source":13,"target":124},{"source":117,"target":12},{"source":117,"target":125},{"source":117,"target":13},{"source":117,"target":113},{"source":125,"target":12},{"source":119,"target":12},{"source":119,"target":126},{"source":119,"target":13},{"source":119,"target":114},{"source":126,"target":12},{"source":120,"target":16},{"source":120,"target":127},{"source":120,"target":13},{"source":120,"target":128},{"source":127,"target":16},{"source":121,"target":23},{"source":121,"target":129},{"source":121,"target":13},{"source":121,"target":130},{"source":129,"target":23},{"source":122,"target":28},{"source":122,"target":131},{"source":122,"target":13},{"source":122,"target":132},{"source":131,"target":28},{"source":123,"target":14},{"source":124,"target":7},{"source":14,"target":0},{"source":14,"target":5},{"source":14,"target":133},{"source":14,"target":134},{"source":133,"target":15},{"source":133,"target":135},{"source":133,"target":14},{"source":135,"target":15},{"source":134,"target":5},{"source":15,"target":0},{"source":15,"target":7},{"source":15,"target":136},{"source":136,"target":7},{"source":16,"target":0},{"source":16,"target":7},{"source":16,"target":137},{"source":16,"target":128},{"source":16,"target":90},{"source":16,"target":138},{"source":137,"target":1},{"source":137,"target":139},{"source":137,"target":16},{"source":139,"target":1},{"source":128,"target":13},{"source":128,"target":140},{"source":128,"target":16},{"source":128,"target":120},{"source":140,"target":13},{"source":90,"target":8},{"source":90,"target":141},{"source":90,"target":16},{"source":90,"target":82},{"source":141,"target":8},{"source":138,"target":7},{"source":17,"target":0},{"source":17,"target":4},{"source":17,"target":142},{"source":17,"target":143},{"source":17,"target":144},{"source":17,"target":145},{"source":17,"target":146},{"source":142,"target":147},{"source":142,"target":17},{"source":143,"target":18},{"source":143,"target":148},{"source":143,"target":17},{"source":148,"target":18},{"source":144,"target":18},{"source":144,"target":149},{"source":144,"target":17},{"source":144,"target":150},{"source":149,"target":18},{"source":145,"target":42},{"source":145,"target":151},{"source":145,"target":17},{"source":145,"target":152},{"source":151,"target":42},{"source":146,"target":4},{"source":18,"target":0},{"source":18,"target":15},{"source":18,"target":8},{"source":18,"target":153},{"source":18,"target":150},{"source":18,"target":154},{"source":18,"target":155},{"source":18,"target":156},{"source":18,"target":157},{"source":18,"target":158},{"source":18,"target":159},{"source":153,"target":160},{"source":153,"target":18},{"source":150,"target":17},{"source":150,"target":161},{"source":150,"target":18},{"source":150,"target":144},{"source":161,"target":17},{"source":154,"target":20},{"source":154,"target":162},{"source":154,"target":18},{"source":154,"target":163},{"source":162,"target":20},{"source":155,"target":25},{"source":155,"target":164},{"source":155,"target":18},{"source":155,"target":165},{"source":164,"target":25},{"source":156,"target":42},{"source":156,"target":166},{"source":156,"target":18},{"source":156,"target":167},{"source":166,"target":42},{"source":157,"target":38},{"source":157,"target":168},{"source":157,"target":18},{"source":157,"target":169},{"source":168,"target":38},{"source":158,"target":15},{"source":159,"target":8},{"source":19,"target":0},{"source":19,"target":170},{"source":19,"target":171},{"source":19,"target":172},{"source":19,"target":173},{"source":170,"target":19},{"source":171,"target":19},{"source":172,"target":19},{"source":173,"target":19},{"source":20,"target":0},{"source":20,"target":163},{"source":163,"target":18},{"source":163,"target":174},{"source":163,"target":20},{"source":163,"target":154},{"source":174,"target":18},{"source":21,"target":0},{"source":21,"target":20},{"source":21,"target":14},{"source":21,"target":12},{"source":21,"target":175},{"source":21,"target":176},{"source":21,"target":177},{"source":175,"target":20},{"source":176,"target":14},{"source":177,"target":12},{"source":22,"target":0},{"source":22,"target":20},{"source":22,"target":8},{"source":22,"target":178},{"source":22,"target":179},{"source":22,"target":180},{"source":22,"target":181},{"source":178,"target":23},{"source":178,"target":182},{"source":178,"target":22},{"source":178,"target":183},{"source":182,"target":23},{"source":179,"target":15},{"source":179,"target":184},{"source":179,"target":22},{"source":184,"target":15},{"source":180,"target":20},{"source":181,"target":8},{"source":23,"target":0},{"source":23,"target":14},{"source":23,"target":12},{"source":23,"target":185},{"source":23,"target":183},{"source":23,"target":130},{"source":23,"target":186},{"source":23,"target":187},{"source":185,"target":19},{"source":185,"target":188},{"source":185,"target":23},{"source":188,"target":19},{"source":183,"target":22},{"source":183,"target":189},{"source":183,"target":23},{"source":183,"target":178},{"source":189,"target":22},{"source":130,"target":13},{"source":130,"target":190},{"source":130,"target":23},{"source":130,"target":121},{"source":190,"target":13},{"source":186,"target":14},{"source":187,"target":12},{"source":24,"target":0},{"source":24,"target":22},{"source":24,"target":191},{"source":24,"target":192},{"source":24,"target":193},{"source":24,"target":194},{"source":191,"target":195},{"source":191,"target":24},{"source":192,"target":24},{"source":192,"target":196},{"source":192,"target":24},{"source":196,"target":24},{"source":193,"target":25},{"source":193,"target":197},{"source":193,"target":24},{"source":193,"target":198},{"source":197,"target":25},{"source":194,"target":22},{"source":25,"target":0},{"source":25,"target":18},{"source":25,"target":199},{"source":25,"target":165},{"source":25,"target":198},{"source":25,"target":200},{"source":25,"target":201},{"source":199,"target":25},{"source":199,"target":202},{"source":199,"target":25},{"source":202,"target":25},{"source":165,"target":18},{"source":165,"target":203},{"source":165,"target":25},{"source":165,"target":155},{"source":203,"target":18},{"source":198,"target":24},{"source":198,"target":204},{"source":198,"target":25},{"source":198,"target":193},{"source":204,"target":24},{"source":200,"target":28},{"source":200,"target":205},{"source":200,"target":25},{"source":200,"target":206},{"source":205,"target":28},{"source":201,"target":18},{"source":26,"target":0},{"source":26,"target":207},{"source":26,"target":208},{"source":26,"target":209},{"source":207,"target":26},{"source":208,"target":26},{"source":209,"target":26},{"source":27,"target":0},{"source":27,"target":18},{"source":27,"target":210},{"source":210,"target":18},{"source":28,"target":0},{"source":28,"target":21},{"source":28,"target":132},{"source":28,"target":206},{"source":28,"target":211},{"source":28,"target":212},{"source":28,"target":213},{"source":28,"target":214},{"source":28,"target":215},{"source":132,"target":13},{"source":132,"target":216},{"source":132,"target":28},{"source":132,"target":122},{"source":216,"target":13},{"source":206,"target":25},{"source":206,"target":217},{"source":206,"target":28},{"source":206,"target":200},{"source":217,"target":25},{"source":211,"target":29},{"source":211,"target":218},{"source":211,"target":28},{"source":211,"target":219},{"source":218,"target":29},{"source":212,"target":29},{"source":212,"target":220},{"source":212,"target":28},{"source":212,"target":221},{"source":220,"target":29},{"source":213,"target":28},{"source":213,"target":222},{"source":213,"target":28},{"source":213,"target":214},{"source":222,"target":28},{"source":214,"target":28},{"source":214,"target":223},{"source":214,"target":28},{"source":214,"target":213},{"source":223,"target":28},{"source":215,"target":21},{"source":29,"target":0},{"source":29,"target":18},{"source":29,"target":3},{"source":29,"target":224},{"source":29,"target":219},{"source":29,"target":221},{"source":29,"target":225},{"source":29,"target":226},{"source":224,"target":227},{"source":224,"target":29},{"source":219,"target":28},{"source":219,"target":228},{"source":219,"target":29},{"source":219,"target":211},{"source":228,"target":28},{"source":221,"target":28},{"source":221,"target":229},{"source":221,"target":29},{"source":221,"target":212},{"source":229,"target":28},{"source":225,"target":18},{"source":226,"target":3},{"source":30,"target":0},{"source":30,"target":27},{"source":30,"target":230},{"source":230,"target":27},{"source":31,"target":0},{"source":31,"target":27},{"source":31,"target":231},{"source":31,"target":232},{"source":231,"target":32},{"source":231,"target":233},{"source":231,"target":31},{"source":231,"target":234},{"source":233,"target":32},{"source":232,"target":27},{"source":32,"target":0},{"source":32,"target":13},{"source":32,"target":234},{"source":32,"target":235},{"source":234,"target":31},{"source":234,"target":236},{"source":234,"target":32},{"source":234,"target":231},{"source":236,"target":31},{"source":235,"target":13},{"source":33,"target":0},{"source":33,"target":4},{"source":33,"target":112},{"source":33,"target":237},{"source":33,"target":238},{"source":112,"target":11},{"source":112,"target":239},{"source":112,"target":33},{"source":112,"target":105},{"source":239,"target":11},{"source":237,"target":11},{"source":237,"target":240},{"source":237,"target":33},{"source":240,"target":11},{"source":238,"target":4},{"source":34,"target":0},{"source":34,"target":4},{"source":34,"target":7},{"source":34,"target":68},{"source":34,"target":70},{"source":34,"target":241},{"source":34,"target":242},{"source":68,"target":5},{"source":68,"target":243},{"source":68,"target":34},{"source":68,"target":62},{"source":243,"target":5},{"source":70,"target":5},{"source":70,"target":244},{"source":70,"target":34},{"source":70,"target":63},{"source":244,"target":5},{"source":241,"target":4},{"source":242,"target":7},{"source":35,"target":0},{"source":35,"target":34},{"source":35,"target":245},{"source":245,"target":34},{"source":36,"target":0},{"source":36,"target":34},{"source":36,"target":246},{"source":246,"target":34},{"source":37,"target":0},{"source":37,"target":35},{"source":37,"target":247},{"source":247,"target":35},{"source":38,"target":0},{"source":38,"target":37},{"source":38,"target":248},{"source":38,"target":169},{"source":38,"target":249},{"source":248,"target":18},{"source":248,"target":250},{"source":248,"target":38},{"source":250,"target":18},{"source":169,"target":18},{"source":169,"target":251},{"source":169,"target":38},{"source":169,"target":157},{"source":251,"target":18},{"source":249,"target":37},{"source":39,"target":0},{"source":39,"target":18},{"source":39,"target":252},{"source":39,"target":253},{"source":252,"target":39},{"source":252,"target":254},{"source":252,"target":39},{"source":254,"target":39},{"source":253,"target":18},{"source":40,"target":0},{"source":40,"target":37},{"source":40,"target":255},{"source":40,"target":256},{"source":255,"target":39},{"source":255,"target":257},{"source":255,"target":40},{"source":257,"target":39},{"source":256,"target":37},{"source":41,"target":0},{"source":41,"target":29},{"source":41,"target":25},{"source":41,"target":258},{"source":41,"target":259},{"source":258,"target":29},{"source":259,"target":25},{"source":42,"target":0},{"source":42,"target":152},{"source":42,"target":167},{"source":42,"target":260},{"source":42,"target":261},{"source":152,"target":17},{"source":152,"target":262},{"source":152,"target":42},{"source":152,"target":145},{"source":262,"target":17},{"source":167,"target":18},{"source":167,"target":263},{"source":167,"target":42},{"source":167,"target":156},{"source":263,"target":18},{"source":260,"target":264},{"source":260,"target":42},{"source":261,"target":265},{"source":261,"target":42},{"source":43,"target":0},{"source":43,"target":1},{"source":43,"target":266},{"source":43,"target":267},{"source":43,"target":268},{"source":266,"target":269},{"source":266,"target":43},{"source":267,"target":43},{"source":267,"target":270},{"source":267,"target":43},{"source":270,"target":43},{"source":268,"target":1}],"multigraph":true} |
false | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0"
xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="system910"
nsURI="http://system910" nsPrefix="_system910">
<eClassifiers xsi:type="ecore:EClass" name="System" eSuperTypes="#//Named">
<eAnnotations source="diagraph">
<details key="node" value=""/>
<details key="nav:functionalView"/>
</eAnnotations>
<eAnnotations source="diagraph">
<details key="node"/>
<details key="pov"/>
<details key="view=functionalView"/>
<details key="cref=functionalArchitecture"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="functionalArchitecture"
upperBound="-1" eType="#//Function" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Workbench" eSuperTypes="#//Named">
<eAnnotations source="diagraph">
<details key="node"/>
<details key="pov" value=""/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="systemView" eType="#//System"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="kinds" upperBound="-1"
eType="#//FunctionKind" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Named" abstract="true">
<eAnnotations source="diagraph">
<details key="label=name" value=""/>
</eAnnotations>
<eAnnotations source="diagraph">
<details key="view=functionalView"/>
<details key="label=name"/>
</eAnnotations>
<eAnnotations source="diagraph">
<details key="node"/>
<details key="view=functionDecomposition"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="FunctionKind" eSuperTypes="#//Named">
<eAnnotations source="diagraph">
<details key="node"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="parent" eType="#//FunctionKind"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="description" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="AbstractFunction" eSuperTypes="#//Named">
<eAnnotations source="diagraph">
<details key="node"/>
<details key="view=functionalView"/>
</eAnnotations>
<eAnnotations source="diagraph">
<details key="node"/>
<details key="view=functionDecomposition"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="id" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="kind" eType="#//FunctionKind"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Function" eSuperTypes="#//AbstractFunction">
<eAnnotations source="diagraph">
<details key="node"/>
<details key="pov"/>
<details key="view=functionalView"/>
<details key="label=id"/>
<details key="nav:functionDecomposition"/>
</eAnnotations>
<eAnnotations source="diagraph">
<details key="node"/>
<details key="pov"/>
<details key="view=functionDecomposition"/>
<details key="cont=Function.decompositions"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="decompositions" upperBound="-1"
eType="#//AbstractFunction" containment="true"/>
</eClassifiers>
</ecore:EPackage>
| github:ecore:/data/francoispfister/diagraph/org.isoe.fwk.megamodel.deploy/repository-bundle/system910.ecore | ecore | system910
System
functionalArchitecture
Workbench
systemView
kinds
Named
name
FunctionKind
parent
description
AbstractFunction
id
kind
Function
decompositions | null | {"directed":true,"nodes":[{"nsPrefix":"_system910","nsURI":"http://system910","name":"system910","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"System","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Workbench","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Named","instanceClass":null,"abstract":true,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FunctionKind","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AbstractFunction","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Function","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"functionalArchitecture","changeable":true,"resolveProxies":true,"lowerBound":0,"id":7,"derived":false},{"id":8,"eClass":"EGenericType"},{"id":9,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"systemView","changeable":true,"resolveProxies":true,"lowerBound":0,"id":10,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"kinds","changeable":true,"resolveProxies":true,"lowerBound":0,"id":11,"derived":false},{"id":12,"eClass":"EGenericType"},{"id":13,"eClass":"EGenericType"},{"id":14,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":15,"derived":false},{"id":16,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"parent","changeable":true,"resolveProxies":true,"lowerBound":0,"id":17,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"description","changeable":true,"lowerBound":0,"iD":false,"id":18,"derived":false},{"id":19,"eClass":"EGenericType"},{"id":20,"eClass":"EGenericType"},{"id":21,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"id","changeable":true,"lowerBound":0,"iD":false,"id":22,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"kind","changeable":true,"resolveProxies":true,"lowerBound":0,"id":23,"derived":false},{"id":24,"eClass":"EGenericType"},{"id":25,"eClass":"EGenericType"},{"id":26,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"decompositions","changeable":true,"resolveProxies":true,"lowerBound":0,"id":27,"derived":false},{"id":28,"eClass":"EGenericType"},{"id":29,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":1,"target":0},{"source":1,"target":3},{"source":1,"target":7},{"source":1,"target":8},{"source":7,"target":6},{"source":7,"target":9},{"source":7,"target":1},{"source":9,"target":6},{"source":8,"target":3},{"source":2,"target":0},{"source":2,"target":3},{"source":2,"target":10},{"source":2,"target":11},{"source":2,"target":12},{"source":10,"target":1},{"source":10,"target":13},{"source":10,"target":2},{"source":13,"target":1},{"source":11,"target":4},{"source":11,"target":14},{"source":11,"target":2},{"source":14,"target":4},{"source":12,"target":3},{"source":3,"target":0},{"source":3,"target":15},{"source":15,"target":16},{"source":15,"target":3},{"source":4,"target":0},{"source":4,"target":3},{"source":4,"target":17},{"source":4,"target":18},{"source":4,"target":19},{"source":17,"target":4},{"source":17,"target":20},{"source":17,"target":4},{"source":20,"target":4},{"source":18,"target":21},{"source":18,"target":4},{"source":19,"target":3},{"source":5,"target":0},{"source":5,"target":3},{"source":5,"target":22},{"source":5,"target":23},{"source":5,"target":24},{"source":22,"target":25},{"source":22,"target":5},{"source":23,"target":4},{"source":23,"target":26},{"source":23,"target":5},{"source":26,"target":4},{"source":24,"target":3},{"source":6,"target":0},{"source":6,"target":5},{"source":6,"target":27},{"source":6,"target":28},{"source":27,"target":5},{"source":27,"target":29},{"source":27,"target":6},{"source":29,"target":5},{"source":28,"target":5}],"multigraph":true} |
false | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0"
xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="ebnf101"
nsURI="http://swt.informatik.uni-mannheim.de/ebnfmm" nsPrefix="_ebnf101">
<eAnnotations source="diagen">
<details key="knownas=ebnf"/>
<details key="origin=http://swt.informatik.uni-mannheim.de/ebnfmm"/>
<details key="leftparent=nil" value=""/>
<details key="rightparent=nil" value=""/>
<details key="requires=nil" value=""/>
<details key="context=textual dsl"/>
</eAnnotations>
<eClassifiers xsi:type="ecore:EClass" name="EBNFDescription">
<eAnnotations source="diagraph">
<details key="node"/>
<details key="pov"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="rules" ordered="false"
upperBound="-1" eType="#//NonTerminal" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="NonTerminal">
<eAnnotations source="diagraph">
<details key="node"/>
<details key="label=id"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="id" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="definitionList" lowerBound="1"
upperBound="-1" eType="#//Symbol" containment="true" eOpposite="#//Symbol/containingNonTerminal"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Symbol" abstract="true">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="factor" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="containingNonTerminal"
eType="#//NonTerminal" eOpposite="#//NonTerminal/definitionList"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="containingControl" eType="#//Control"
eOpposite="#//Control/definitionList"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Terminal" eSuperTypes="#//Symbol">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="terminalString" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Control" abstract="true" eSuperTypes="#//Symbol">
<eStructuralFeatures xsi:type="ecore:EReference" name="definitionList" upperBound="-1"
eType="#//Symbol" containment="true" eOpposite="#//Symbol/containingControl"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Option" eSuperTypes="#//Control"/>
<eClassifiers xsi:type="ecore:EClass" name="Repetition" eSuperTypes="#//Control"/>
<eClassifiers xsi:type="ecore:EClass" name="NonTerminalReference" eSuperTypes="#//Symbol">
<eStructuralFeatures xsi:type="ecore:EReference" name="nonTerminal" lowerBound="1"
eType="#//NonTerminal"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Group" eSuperTypes="#//Control"/>
<eClassifiers xsi:type="ecore:EClass" name="SpecialSequence" eSuperTypes="#//Symbol">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="text" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Except" eSuperTypes="#//Control">
<eStructuralFeatures xsi:type="ecore:EReference" name="except" lowerBound="1"
eType="#//Symbol" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Choose" eSuperTypes="#//Control"/>
</ecore:EPackage>
| github:ecore:/data/francoispfister/diagraph/org.isoe.fwk.megamodel.deploy/repository-bundle/ebnf101.ecore | ecore | ebnf101
EBNFDescription
rules
NonTerminal
id
definitionList
Symbol
factor
containingNonTerminal
containingControl
Terminal
terminalString
Control
definitionList
Option
Repetition
NonTerminalReference
nonTerminal
Group
SpecialSequence
text
Except
except
Choose | null | {"directed":true,"nodes":[{"nsPrefix":"_ebnf101","nsURI":"http://swt.informatik.uni-mannheim.de/ebnfmm","name":"ebnf101","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EBNFDescription","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NonTerminal","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Symbol","instanceClass":null,"abstract":true,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Terminal","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Control","instanceClass":null,"abstract":true,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Option","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Repetition","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NonTerminalReference","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Group","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SpecialSequence","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Except","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Choose","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"rules","changeable":true,"resolveProxies":true,"lowerBound":0,"id":13,"derived":false},{"id":14,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"id","changeable":true,"lowerBound":1,"iD":false,"id":15,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"definitionList","changeable":true,"resolveProxies":true,"lowerBound":1,"id":16,"derived":false},{"id":17,"eClass":"EGenericType"},{"id":18,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"containingNonTerminal","changeable":true,"resolveProxies":true,"lowerBound":0,"id":19,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"factor","changeable":true,"lowerBound":0,"iD":false,"id":20,"derived":false},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"containingControl","changeable":true,"resolveProxies":true,"lowerBound":0,"id":21,"derived":false},{"id":22,"eClass":"EGenericType"},{"id":23,"eClass":"EGenericType"},{"id":24,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"definitionList","changeable":true,"resolveProxies":true,"lowerBound":0,"id":25,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"terminalString","changeable":true,"lowerBound":1,"iD":false,"id":26,"derived":false},{"id":27,"eClass":"EGenericType"},{"id":28,"eClass":"EGenericType"},{"id":29,"eClass":"EGenericType"},{"id":30,"eClass":"EGenericType"},{"id":31,"eClass":"EGenericType"},{"id":32,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"nonTerminal","changeable":true,"resolveProxies":true,"lowerBound":1,"id":33,"derived":false},{"id":34,"eClass":"EGenericType"},{"id":35,"eClass":"EGenericType"},{"id":36,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"text","changeable":true,"lowerBound":1,"iD":false,"id":37,"derived":false},{"id":38,"eClass":"EGenericType"},{"id":39,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"except","changeable":true,"resolveProxies":true,"lowerBound":1,"id":40,"derived":false},{"id":41,"eClass":"EGenericType"},{"id":42,"eClass":"EGenericType"},{"id":43,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":0,"target":8},{"source":0,"target":9},{"source":0,"target":10},{"source":0,"target":11},{"source":0,"target":12},{"source":1,"target":0},{"source":1,"target":13},{"source":13,"target":2},{"source":13,"target":14},{"source":13,"target":1},{"source":14,"target":2},{"source":2,"target":0},{"source":2,"target":15},{"source":2,"target":16},{"source":15,"target":17},{"source":15,"target":2},{"source":16,"target":3},{"source":16,"target":18},{"source":16,"target":2},{"source":16,"target":19},{"source":18,"target":3},{"source":3,"target":0},{"source":3,"target":20},{"source":3,"target":19},{"source":3,"target":21},{"source":20,"target":22},{"source":20,"target":3},{"source":19,"target":2},{"source":19,"target":23},{"source":19,"target":3},{"source":19,"target":16},{"source":23,"target":2},{"source":21,"target":5},{"source":21,"target":24},{"source":21,"target":3},{"source":21,"target":25},{"source":24,"target":5},{"source":4,"target":0},{"source":4,"target":3},{"source":4,"target":26},{"source":4,"target":27},{"source":26,"target":28},{"source":26,"target":4},{"source":27,"target":3},{"source":5,"target":0},{"source":5,"target":3},{"source":5,"target":25},{"source":5,"target":29},{"source":25,"target":3},{"source":25,"target":30},{"source":25,"target":5},{"source":25,"target":21},{"source":30,"target":3},{"source":29,"target":3},{"source":6,"target":0},{"source":6,"target":5},{"source":6,"target":31},{"source":31,"target":5},{"source":7,"target":0},{"source":7,"target":5},{"source":7,"target":32},{"source":32,"target":5},{"source":8,"target":0},{"source":8,"target":3},{"source":8,"target":33},{"source":8,"target":34},{"source":33,"target":2},{"source":33,"target":35},{"source":33,"target":8},{"source":35,"target":2},{"source":34,"target":3},{"source":9,"target":0},{"source":9,"target":5},{"source":9,"target":36},{"source":36,"target":5},{"source":10,"target":0},{"source":10,"target":3},{"source":10,"target":37},{"source":10,"target":38},{"source":37,"target":39},{"source":37,"target":10},{"source":38,"target":3},{"source":11,"target":0},{"source":11,"target":5},{"source":11,"target":40},{"source":11,"target":41},{"source":40,"target":3},{"source":40,"target":42},{"source":40,"target":11},{"source":42,"target":3},{"source":41,"target":5},{"source":12,"target":0},{"source":12,"target":5},{"source":12,"target":43},{"source":43,"target":5}],"multigraph":true} |
true | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="model" nsURI="http://specmate.com/20180925/model" nsPrefix="com.specmate.model">
<eSubpackages name="base" nsURI="http://specmate.com/20180925/model/base" nsPrefix="com.specmate.model.basemodel">
<eClassifiers xsi:type="ecore:EClass" name="INamed" abstract="true" interface="true">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString">
<eAnnotations source="http://specmate.com/form_meta">
<details key="shortDesc" value="Name"/>
<details key="longDesc" value=""/>
<details key="required" value="true"/>
<details key="type" value="text"/>
<details key="position" value="0"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="IDescribed" abstract="true" interface="true">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="description" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString">
<eAnnotations source="http://specmate.com/form_meta">
<details key="shortDesc" value="Description"/>
<details key="longDesc" value=""/>
<details key="required" value="false"/>
<details key="type" value="longText"/>
<details key="rows" value="8"/>
<details key="position" value="100"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="IID" abstract="true" interface="true">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="id" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="IContentElement" abstract="true" interface="true"
eSuperTypes="#//base/IID #//base/INamed #//base/IDescribed"/>
<eClassifiers xsi:type="ecore:EClass" name="IContainer" abstract="true" interface="true"
eSuperTypes="#//base/IContentElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="contents" upperBound="-1"
eType="#//base/IContentElement" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ISpecmateModelObject" abstract="true"
interface="true" eSuperTypes="#//base/IContainer #//base/ITracingElement"/>
<eClassifiers xsi:type="ecore:EClass" name="Folder" eSuperTypes="#//base/ISpecmateModelObject"/>
<eClassifiers xsi:type="ecore:EClass" name="IPositionable" abstract="true" interface="true">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="position" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="IExternal">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="extId" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="extId2" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="source" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="live" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ISpecmatePositionableModelObject"
abstract="true" interface="true" eSuperTypes="#//base/ISpecmateModelObject">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="x" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="y" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="IModelConnection" eSuperTypes="#//base/ISpecmateModelObject">
<eStructuralFeatures xsi:type="ecore:EReference" name="source" eType="#//base/IModelNode"
eOpposite="#//base/IModelNode/outgoingConnections"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="target" eType="#//base/IModelNode"
eOpposite="#//base/IModelNode/incomingConnections"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="IModelNode" eSuperTypes="#//base/ISpecmatePositionableModelObject">
<eStructuralFeatures xsi:type="ecore:EReference" name="outgoingConnections"
upperBound="-1" eType="#//base/IModelConnection" eOpposite="#//base/IModelConnection/source"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="incomingConnections"
upperBound="-1" eType="#//base/IModelConnection" eOpposite="#//base/IModelConnection/target"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ITracingElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="tracesTo" upperBound="-1"
eType="#//base/ITracingElement" eOpposite="#//base/ITracingElement/tracesFrom"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="tracesFrom" upperBound="-1"
eType="#//base/ITracingElement" eOpposite="#//base/ITracingElement/tracesTo"/>
</eClassifiers>
</eSubpackages>
<eSubpackages name="requirements" nsURI="http://specmate.com/20180925/model/requirements"
nsPrefix="com.specmate.model.requirements">
<eClassifiers xsi:type="ecore:EClass" name="Requirement" eSuperTypes="#//base/ISpecmateModelObject #//base/IExternal">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="numberOfTests" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="tac" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="implementingUnit" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="implementingBOTeam" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="implementingITTeam" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="plannedRelease" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="status" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isRegressionRequirement"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="platform" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CEGModel" eSuperTypes="#//base/ISpecmateModelObject"/>
<eClassifiers xsi:type="ecore:EClass" name="CEGNode" eSuperTypes="#//base/IModelNode">
<eAnnotations source="http://specmate.com/form_meta">
<details key="disabled1" value="name"/>
<details key="disabled2" value="description"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="type" eType="#//requirements/NodeType">
<eAnnotations source="http://specmate.com/form_meta">
<details key="shortDesc" value="Type"/>
<details key="longDesc" value="The type of a node"/>
<details key="required" value="true"/>
<details key="type" value="singleSelection"/>
<details key="values" value="["AND", "OR"]"/>
<details key="position" value="3"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="variable" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString">
<eAnnotations source="http://specmate.com/form_meta">
<details key="shortDesc" value="Variable"/>
<details key="longDesc" value="The variable of a node"/>
<details key="required" value="true"/>
<details key="type" value="text"/>
<details key="position" value="1"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="condition" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString">
<eAnnotations source="http://specmate.com/form_meta">
<details key="shortDesc" value="Condition"/>
<details key="longDesc" value="The condition the variable has to fulfil"/>
<details key="required" value="true"/>
<details key="type" value="text"/>
<details key="position" value="2"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="NodeType">
<eLiterals name="AND"/>
<eLiterals name="OR" value="1"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CEGConnection" eSuperTypes="#//base/IModelConnection">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="negate" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean">
<eAnnotations source="http://specmate.com/form_meta">
<details key="shortDesc" value="Negate"/>
<details key="longDesc" value="Negation of this connection"/>
<details key="type" value="checkbox"/>
<details key="position" value="1"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
</eSubpackages>
<eSubpackages name="testspecification" nsURI="http://specmate.com/20180925/model/testspecification"
nsPrefix="com.specmate.model.testspecification">
<eClassifiers xsi:type="ecore:EClass" name="TestSpecification" eSuperTypes="#//base/IContainer"/>
<eClassifiers xsi:type="ecore:EClass" name="TestParameter" eSuperTypes="#//base/IContentElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="type" eType="#//testspecification/ParameterType"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="assignments" upperBound="-1"
eType="#//testspecification/ParameterAssignment" eOpposite="#//testspecification/ParameterAssignment/parameter"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="TestCase" eSuperTypes="#//base/IContainer #//base/IPositionable">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="consistent" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ParameterAssignment" eSuperTypes="#//base/IContentElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="parameter" eType="#//testspecification/TestParameter"
eOpposite="#//testspecification/TestParameter/assignments"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="condition" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="ParameterType">
<eLiterals name="INPUT"/>
<eLiterals name="OUTPUT" value="1"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="TestProcedure" eSuperTypes="#//base/IContainer #//base/IExternal">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isRegressionTest" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean">
<eAnnotations source="http://specmate.com/form_meta">
<details key="shortDesc" value="Regression Test"/>
<details key="type" value="checkbox"/>
<details key="position" value="3"/>
<details key="longDesc" value=""/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="TestStep" eSuperTypes="#//base/IContentElement #//base/IPositionable">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="expectedOutcome" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="referencedTestParameters"
upperBound="-1" eType="#//testspecification/TestParameter"/>
</eClassifiers>
</eSubpackages>
<eSubpackages name="processes" nsURI="http://specmate.com/20180925/model/processes"
nsPrefix="com.specmate.model.processes">
<eClassifiers xsi:type="ecore:EClass" name="Process" eSuperTypes="#//base/IContainer"/>
<eClassifiers xsi:type="ecore:EClass" name="ProcessNode" abstract="true" eSuperTypes="#//base/IModelNode"/>
<eClassifiers xsi:type="ecore:EClass" name="ProcessStep" eSuperTypes="#//processes/ProcessNode">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="expectedOutcome" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString">
<eAnnotations source="http://specmate.com/form_meta">
<details key="shortDesc" value="Expected Outcome"/>
<details key="longDesc" value=""/>
<details key="required" value="false"/>
<details key="type" value="text"/>
<details key="position" value="101"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ProcessDecision" eSuperTypes="#//processes/ProcessNode"/>
<eClassifiers xsi:type="ecore:EClass" name="ProcessConnection" eSuperTypes="#//base/IModelConnection">
<eAnnotations source="http://specmate.com/form_meta">
<details key="disabled1" value="name"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="condition" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString">
<eAnnotations source="http://specmate.com/form_meta">
<details key="shortDesc" value="Condition"/>
<details key="longDesc" value="The condition the variable has to fulfil"/>
<details key="required" value="false"/>
<details key="type" value="text"/>
<details key="position" value="2"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ProcessStart" eSuperTypes="#//processes/ProcessNode"/>
<eClassifiers xsi:type="ecore:EClass" name="ProcessEnd" eSuperTypes="#//processes/ProcessNode"/>
</eSubpackages>
<eSubpackages name="history" nsURI="http://specmate.com/20180925/model/history"
nsPrefix="com.specmate.model.processes">
<eClassifiers xsi:type="ecore:EClass" name="History">
<eStructuralFeatures xsi:type="ecore:EReference" name="entries" upperBound="-1"
eType="#//history/HistoryEntry" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="HistoryEntry">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="timestamp" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//ELong"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="user" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="deletedObjects" upperBound="-1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="comment" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="changes" upperBound="-1"
eType="#//history/Change" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Change">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="objectName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="objectType" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
defaultValueLiteral=""/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="oldValue" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="newValue" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="feature" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isCreate" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isDelete" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
</eClassifiers>
</eSubpackages>
<eSubpackages name="administration" nsURI="http://specmate.com/20180925/model/administration"
nsPrefix="com.specmate.model.administration">
<eClassifiers xsi:type="ecore:EClass" name="Status">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
</eSubpackages>
<eSubpackages name="batch" nsURI="http://specmate.com/20180925/model/batch" nsPrefix="com.specmate.model.batch">
<eClassifiers xsi:type="ecore:EClass" name="BatchOperation">
<eStructuralFeatures xsi:type="ecore:EReference" name="operations" upperBound="-1"
eType="#//batch/Operation" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Operation">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="type" eType="#//batch/OperationType"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="target" eType="#//base/IContentElement"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="value" eType="#//base/IContentElement"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="OperationType">
<eLiterals name="CREATE"/>
<eLiterals name="UPDATE" value="1"/>
<eLiterals name="DELETE" value="2"/>
</eClassifiers>
</eSubpackages>
</ecore:EPackage>
| github:ecore:/data/manpreethb/specmate/bundles/specmate-model-ecore/model/specmate.ecore | ecore | model
base
INamed
name
IDescribed
description
IID
id
IContentElement
IContainer
contents
ISpecmateModelObject
Folder
IPositionable
position
IExternal
extId
extId2
source
live
ISpecmatePositionableModelObject
x
y
IModelConnection
source
target
IModelNode
outgoingConnections
incomingConnections
ITracingElement
tracesTo
tracesFrom
requirements
Requirement
numberOfTests
tac
implementingUnit
implementingBOTeam
implementingITTeam
plannedRelease
status
isRegressionRequirement
platform
CEGModel
CEGNode
type
variable
condition
NodeType
AND
AND
OR
OR
CEGConnection
negate
testspecification
TestSpecification
TestParameter
type
assignments
TestCase
consistent
ParameterAssignment
parameter
value
condition
ParameterType
INPUT
INPUT
OUTPUT
OUTPUT
TestProcedure
isRegressionTest
TestStep
expectedOutcome
referencedTestParameters
processes
Process
ProcessNode
ProcessStep
expectedOutcome
ProcessDecision
ProcessConnection
condition
ProcessStart
ProcessEnd
history
History
entries
HistoryEntry
timestamp
user
deletedObjects
comment
changes
Change
objectName
objectType
oldValue
newValue
feature
isCreate
isDelete
administration
Status
value
batch
BatchOperation
operations
Operation
type
target
value
OperationType
CREATE
CREATE
UPDATE
UPDATE
DELETE
DELETE | null | {"directed":true,"nodes":[{"nsPrefix":"com.specmate.model","nsURI":"http://specmate.com/20180925/model","name":"model","id":0,"eClass":"EPackage"},{"nsPrefix":"com.specmate.model.basemodel","nsURI":"http://specmate.com/20180925/model/base","name":"base","id":1,"eClass":"EPackage"},{"nsPrefix":"com.specmate.model.requirements","nsURI":"http://specmate.com/20180925/model/requirements","name":"requirements","id":2,"eClass":"EPackage"},{"nsPrefix":"com.specmate.model.testspecification","nsURI":"http://specmate.com/20180925/model/testspecification","name":"testspecification","id":3,"eClass":"EPackage"},{"nsPrefix":"com.specmate.model.processes","nsURI":"http://specmate.com/20180925/model/processes","name":"processes","id":4,"eClass":"EPackage"},{"nsPrefix":"com.specmate.model.processes","nsURI":"http://specmate.com/20180925/model/history","name":"history","id":5,"eClass":"EPackage"},{"nsPrefix":"com.specmate.model.administration","nsURI":"http://specmate.com/20180925/model/administration","name":"administration","id":6,"eClass":"EPackage"},{"nsPrefix":"com.specmate.model.batch","nsURI":"http://specmate.com/20180925/model/batch","name":"batch","id":7,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"INamed","instanceClass":null,"abstract":true,"id":8,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IDescribed","instanceClass":null,"abstract":true,"id":9,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IID","instanceClass":null,"abstract":true,"id":10,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IContentElement","instanceClass":null,"abstract":true,"id":11,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IContainer","instanceClass":null,"abstract":true,"id":12,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ISpecmateModelObject","instanceClass":null,"abstract":true,"id":13,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Folder","instanceClass":null,"abstract":false,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IPositionable","instanceClass":null,"abstract":true,"id":15,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IExternal","instanceClass":null,"abstract":false,"id":16,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ISpecmatePositionableModelObject","instanceClass":null,"abstract":true,"id":17,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IModelConnection","instanceClass":null,"abstract":false,"id":18,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IModelNode","instanceClass":null,"abstract":false,"id":19,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ITracingElement","instanceClass":null,"abstract":false,"id":20,"interface":false,"eClass":"EClass"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":21,"derived":false},{"id":22,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"description","changeable":true,"lowerBound":0,"iD":false,"id":23,"derived":false},{"id":24,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"id","changeable":true,"lowerBound":0,"iD":false,"id":25,"derived":false},{"id":26,"eClass":"EGenericType"},{"id":27,"eClass":"EGenericType"},{"id":28,"eClass":"EGenericType"},{"id":29,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"contents","changeable":true,"resolveProxies":true,"lowerBound":0,"id":30,"derived":false},{"id":31,"eClass":"EGenericType"},{"id":32,"eClass":"EGenericType"},{"id":33,"eClass":"EGenericType"},{"id":34,"eClass":"EGenericType"},{"id":35,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"position","changeable":true,"lowerBound":0,"iD":false,"id":36,"derived":false},{"id":37,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"extId","changeable":true,"lowerBound":0,"iD":false,"id":38,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"extId2","changeable":true,"lowerBound":0,"iD":false,"id":39,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"source","changeable":true,"lowerBound":0,"iD":false,"id":40,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"live","changeable":true,"lowerBound":0,"iD":false,"id":41,"derived":false},{"id":42,"eClass":"EGenericType"},{"id":43,"eClass":"EGenericType"},{"id":44,"eClass":"EGenericType"},{"id":45,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"x","changeable":true,"lowerBound":0,"iD":false,"id":46,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"y","changeable":true,"lowerBound":0,"iD":false,"id":47,"derived":false},{"id":48,"eClass":"EGenericType"},{"id":49,"eClass":"EGenericType"},{"id":50,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"source","changeable":true,"resolveProxies":true,"lowerBound":0,"id":51,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"target","changeable":true,"resolveProxies":true,"lowerBound":0,"id":52,"derived":false},{"id":53,"eClass":"EGenericType"},{"id":54,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"outgoingConnections","changeable":true,"resolveProxies":true,"lowerBound":0,"id":55,"derived":false},{"id":56,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"incomingConnections","changeable":true,"resolveProxies":true,"lowerBound":0,"id":57,"derived":false},{"id":58,"eClass":"EGenericType"},{"id":59,"eClass":"EGenericType"},{"id":60,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"tracesTo","changeable":true,"resolveProxies":true,"lowerBound":0,"id":61,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"tracesFrom","changeable":true,"resolveProxies":true,"lowerBound":0,"id":62,"derived":false},{"id":63,"eClass":"EGenericType"},{"id":64,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Requirement","instanceClass":null,"abstract":false,"id":65,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CEGModel","instanceClass":null,"abstract":false,"id":66,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CEGNode","instanceClass":null,"abstract":false,"id":67,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"NodeType","instanceClass":null,"id":68,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CEGConnection","instanceClass":null,"abstract":false,"id":69,"interface":false,"eClass":"EClass"},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"numberOfTests","changeable":true,"lowerBound":0,"iD":false,"id":70,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"tac","changeable":true,"lowerBound":0,"iD":false,"id":71,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"implementingUnit","changeable":true,"lowerBound":0,"iD":false,"id":72,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"implementingBOTeam","changeable":true,"lowerBound":0,"iD":false,"id":73,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"implementingITTeam","changeable":true,"lowerBound":0,"iD":false,"id":74,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"plannedRelease","changeable":true,"lowerBound":0,"iD":false,"id":75,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"status","changeable":true,"lowerBound":0,"iD":false,"id":76,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isRegressionRequirement","changeable":true,"lowerBound":0,"iD":false,"id":77,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"platform","changeable":true,"lowerBound":0,"iD":false,"id":78,"derived":false},{"id":79,"eClass":"EGenericType"},{"id":80,"eClass":"EGenericType"},{"id":81,"eClass":"EGenericType"},{"id":82,"eClass":"EGenericType"},{"id":83,"eClass":"EGenericType"},{"id":84,"eClass":"EGenericType"},{"id":85,"eClass":"EGenericType"},{"id":86,"eClass":"EGenericType"},{"id":87,"eClass":"EGenericType"},{"id":88,"eClass":"EGenericType"},{"id":89,"eClass":"EGenericType"},{"id":90,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"lowerBound":0,"iD":false,"id":91,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"variable","changeable":true,"lowerBound":0,"iD":false,"id":92,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"condition","changeable":true,"lowerBound":0,"iD":false,"id":93,"derived":false},{"id":94,"eClass":"EGenericType"},{"id":95,"eClass":"EGenericType"},{"id":96,"eClass":"EGenericType"},{"id":97,"eClass":"EGenericType"},{"name":"AND","id":98,"value":0,"literal":"AND","eClass":"EEnumLiteral"},{"name":"OR","id":99,"value":1,"literal":"OR","eClass":"EEnumLiteral"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"negate","changeable":true,"lowerBound":0,"iD":false,"id":100,"derived":false},{"id":101,"eClass":"EGenericType"},{"id":102,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TestSpecification","instanceClass":null,"abstract":false,"id":103,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TestParameter","instanceClass":null,"abstract":false,"id":104,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TestCase","instanceClass":null,"abstract":false,"id":105,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ParameterAssignment","instanceClass":null,"abstract":false,"id":106,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"ParameterType","instanceClass":null,"id":107,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TestProcedure","instanceClass":null,"abstract":false,"id":108,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TestStep","instanceClass":null,"abstract":false,"id":109,"interface":false,"eClass":"EClass"},{"id":110,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"lowerBound":0,"iD":false,"id":111,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"assignments","changeable":true,"resolveProxies":true,"lowerBound":0,"id":112,"derived":false},{"id":113,"eClass":"EGenericType"},{"id":114,"eClass":"EGenericType"},{"id":115,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"parameter","changeable":true,"resolveProxies":true,"lowerBound":0,"id":116,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"consistent","changeable":true,"lowerBound":0,"iD":false,"id":117,"derived":false},{"id":118,"eClass":"EGenericType"},{"id":119,"eClass":"EGenericType"},{"id":120,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":0,"iD":false,"id":121,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"condition","changeable":true,"lowerBound":0,"iD":false,"id":122,"derived":false},{"id":123,"eClass":"EGenericType"},{"id":124,"eClass":"EGenericType"},{"id":125,"eClass":"EGenericType"},{"id":126,"eClass":"EGenericType"},{"name":"INPUT","id":127,"value":0,"literal":"INPUT","eClass":"EEnumLiteral"},{"name":"OUTPUT","id":128,"value":1,"literal":"OUTPUT","eClass":"EEnumLiteral"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isRegressionTest","changeable":true,"lowerBound":0,"iD":false,"id":129,"derived":false},{"id":130,"eClass":"EGenericType"},{"id":131,"eClass":"EGenericType"},{"id":132,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"expectedOutcome","changeable":true,"lowerBound":0,"iD":false,"id":133,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"referencedTestParameters","changeable":true,"resolveProxies":true,"lowerBound":0,"id":134,"derived":false},{"id":135,"eClass":"EGenericType"},{"id":136,"eClass":"EGenericType"},{"id":137,"eClass":"EGenericType"},{"id":138,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Process","instanceClass":null,"abstract":false,"id":139,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ProcessNode","instanceClass":null,"abstract":true,"id":140,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ProcessStep","instanceClass":null,"abstract":false,"id":141,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ProcessDecision","instanceClass":null,"abstract":false,"id":142,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ProcessConnection","instanceClass":null,"abstract":false,"id":143,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ProcessStart","instanceClass":null,"abstract":false,"id":144,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ProcessEnd","instanceClass":null,"abstract":false,"id":145,"interface":false,"eClass":"EClass"},{"id":146,"eClass":"EGenericType"},{"id":147,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"expectedOutcome","changeable":true,"lowerBound":0,"iD":false,"id":148,"derived":false},{"id":149,"eClass":"EGenericType"},{"id":150,"eClass":"EGenericType"},{"id":151,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"condition","changeable":true,"lowerBound":0,"iD":false,"id":152,"derived":false},{"id":153,"eClass":"EGenericType"},{"id":154,"eClass":"EGenericType"},{"id":155,"eClass":"EGenericType"},{"id":156,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"History","instanceClass":null,"abstract":false,"id":157,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"HistoryEntry","instanceClass":null,"abstract":false,"id":158,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Change","instanceClass":null,"abstract":false,"id":159,"interface":false,"eClass":"EClass"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"entries","changeable":true,"resolveProxies":true,"lowerBound":0,"id":160,"derived":false},{"id":161,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"timestamp","changeable":true,"lowerBound":0,"iD":false,"id":162,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"user","changeable":true,"lowerBound":0,"iD":false,"id":163,"derived":false},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"deletedObjects","changeable":true,"lowerBound":0,"iD":false,"id":164,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"comment","changeable":true,"lowerBound":0,"iD":false,"id":165,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"changes","changeable":true,"resolveProxies":true,"lowerBound":0,"id":166,"derived":false},{"id":167,"eClass":"EGenericType"},{"id":168,"eClass":"EGenericType"},{"id":169,"eClass":"EGenericType"},{"id":170,"eClass":"EGenericType"},{"id":171,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"objectName","changeable":true,"lowerBound":0,"iD":false,"id":172,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":"","volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"","unsettable":false,"transient":false,"unique":true,"name":"objectType","changeable":true,"lowerBound":0,"iD":false,"id":173,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"oldValue","changeable":true,"lowerBound":0,"iD":false,"id":174,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"newValue","changeable":true,"lowerBound":0,"iD":false,"id":175,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"feature","changeable":true,"lowerBound":0,"iD":false,"id":176,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isCreate","changeable":true,"lowerBound":0,"iD":false,"id":177,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isDelete","changeable":true,"lowerBound":0,"iD":false,"id":178,"derived":false},{"id":179,"eClass":"EGenericType"},{"id":180,"eClass":"EGenericType"},{"id":181,"eClass":"EGenericType"},{"id":182,"eClass":"EGenericType"},{"id":183,"eClass":"EGenericType"},{"id":184,"eClass":"EGenericType"},{"id":185,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Status","instanceClass":null,"abstract":false,"id":186,"interface":false,"eClass":"EClass"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":0,"iD":false,"id":187,"derived":false},{"id":188,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BatchOperation","instanceClass":null,"abstract":false,"id":189,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Operation","instanceClass":null,"abstract":false,"id":190,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"OperationType","instanceClass":null,"id":191,"serializable":true,"eClass":"EEnum"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"operations","changeable":true,"resolveProxies":true,"lowerBound":0,"id":192,"derived":false},{"id":193,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"lowerBound":0,"iD":false,"id":194,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"target","changeable":true,"resolveProxies":true,"lowerBound":0,"id":195,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"resolveProxies":true,"lowerBound":0,"id":196,"derived":false},{"id":197,"eClass":"EGenericType"},{"id":198,"eClass":"EGenericType"},{"id":199,"eClass":"EGenericType"},{"name":"CREATE","id":200,"value":0,"literal":"CREATE","eClass":"EEnumLiteral"},{"name":"UPDATE","id":201,"value":1,"literal":"UPDATE","eClass":"EEnumLiteral"},{"name":"DELETE","id":202,"value":2,"literal":"DELETE","eClass":"EEnumLiteral"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":1,"target":8},{"source":1,"target":9},{"source":1,"target":10},{"source":1,"target":11},{"source":1,"target":12},{"source":1,"target":13},{"source":1,"target":14},{"source":1,"target":15},{"source":1,"target":16},{"source":1,"target":17},{"source":1,"target":18},{"source":1,"target":19},{"source":1,"target":20},{"source":1,"target":0},{"source":8,"target":1},{"source":8,"target":21},{"source":21,"target":22},{"source":21,"target":8},{"source":9,"target":1},{"source":9,"target":23},{"source":23,"target":24},{"source":23,"target":9},{"source":10,"target":1},{"source":10,"target":25},{"source":25,"target":26},{"source":25,"target":10},{"source":11,"target":1},{"source":11,"target":10},{"source":11,"target":8},{"source":11,"target":9},{"source":11,"target":27},{"source":11,"target":28},{"source":11,"target":29},{"source":27,"target":10},{"source":28,"target":8},{"source":29,"target":9},{"source":12,"target":1},{"source":12,"target":11},{"source":12,"target":30},{"source":12,"target":31},{"source":30,"target":11},{"source":30,"target":32},{"source":30,"target":12},{"source":32,"target":11},{"source":31,"target":11},{"source":13,"target":1},{"source":13,"target":12},{"source":13,"target":20},{"source":13,"target":33},{"source":13,"target":34},{"source":33,"target":12},{"source":34,"target":20},{"source":14,"target":1},{"source":14,"target":13},{"source":14,"target":35},{"source":35,"target":13},{"source":15,"target":1},{"source":15,"target":36},{"source":36,"target":37},{"source":36,"target":15},{"source":16,"target":1},{"source":16,"target":38},{"source":16,"target":39},{"source":16,"target":40},{"source":16,"target":41},{"source":38,"target":42},{"source":38,"target":16},{"source":39,"target":43},{"source":39,"target":16},{"source":40,"target":44},{"source":40,"target":16},{"source":41,"target":45},{"source":41,"target":16},{"source":17,"target":1},{"source":17,"target":13},{"source":17,"target":46},{"source":17,"target":47},{"source":17,"target":48},{"source":46,"target":49},{"source":46,"target":17},{"source":47,"target":50},{"source":47,"target":17},{"source":48,"target":13},{"source":18,"target":1},{"source":18,"target":13},{"source":18,"target":51},{"source":18,"target":52},{"source":18,"target":53},{"source":51,"target":19},{"source":51,"target":54},{"source":51,"target":18},{"source":51,"target":55},{"source":54,"target":19},{"source":52,"target":19},{"source":52,"target":56},{"source":52,"target":18},{"source":52,"target":57},{"source":56,"target":19},{"source":53,"target":13},{"source":19,"target":1},{"source":19,"target":17},{"source":19,"target":55},{"source":19,"target":57},{"source":19,"target":58},{"source":55,"target":18},{"source":55,"target":59},{"source":55,"target":19},{"source":55,"target":51},{"source":59,"target":18},{"source":57,"target":18},{"source":57,"target":60},{"source":57,"target":19},{"source":57,"target":52},{"source":60,"target":18},{"source":58,"target":17},{"source":20,"target":1},{"source":20,"target":61},{"source":20,"target":62},{"source":61,"target":20},{"source":61,"target":63},{"source":61,"target":20},{"source":61,"target":62},{"source":63,"target":20},{"source":62,"target":20},{"source":62,"target":64},{"source":62,"target":20},{"source":62,"target":61},{"source":64,"target":20},{"source":2,"target":65},{"source":2,"target":66},{"source":2,"target":67},{"source":2,"target":68},{"source":2,"target":69},{"source":2,"target":0},{"source":65,"target":2},{"source":65,"target":13},{"source":65,"target":16},{"source":65,"target":70},{"source":65,"target":71},{"source":65,"target":72},{"source":65,"target":73},{"source":65,"target":74},{"source":65,"target":75},{"source":65,"target":76},{"source":65,"target":77},{"source":65,"target":78},{"source":65,"target":79},{"source":65,"target":80},{"source":70,"target":81},{"source":70,"target":65},{"source":71,"target":82},{"source":71,"target":65},{"source":72,"target":83},{"source":72,"target":65},{"source":73,"target":84},{"source":73,"target":65},{"source":74,"target":85},{"source":74,"target":65},{"source":75,"target":86},{"source":75,"target":65},{"source":76,"target":87},{"source":76,"target":65},{"source":77,"target":88},{"source":77,"target":65},{"source":78,"target":89},{"source":78,"target":65},{"source":79,"target":13},{"source":80,"target":16},{"source":66,"target":2},{"source":66,"target":13},{"source":66,"target":90},{"source":90,"target":13},{"source":67,"target":2},{"source":67,"target":19},{"source":67,"target":91},{"source":67,"target":92},{"source":67,"target":93},{"source":67,"target":94},{"source":91,"target":68},{"source":91,"target":95},{"source":91,"target":67},{"source":95,"target":68},{"source":92,"target":96},{"source":92,"target":67},{"source":93,"target":97},{"source":93,"target":67},{"source":94,"target":19},{"source":68,"target":2},{"source":68,"target":98},{"source":68,"target":99},{"source":98,"target":68},{"source":99,"target":68},{"source":69,"target":2},{"source":69,"target":18},{"source":69,"target":100},{"source":69,"target":101},{"source":100,"target":102},{"source":100,"target":69},{"source":101,"target":18},{"source":3,"target":103},{"source":3,"target":104},{"source":3,"target":105},{"source":3,"target":106},{"source":3,"target":107},{"source":3,"target":108},{"source":3,"target":109},{"source":3,"target":0},{"source":103,"target":3},{"source":103,"target":12},{"source":103,"target":110},{"source":110,"target":12},{"source":104,"target":3},{"source":104,"target":11},{"source":104,"target":111},{"source":104,"target":112},{"source":104,"target":113},{"source":111,"target":107},{"source":111,"target":114},{"source":111,"target":104},{"source":114,"target":107},{"source":112,"target":106},{"source":112,"target":115},{"source":112,"target":104},{"source":112,"target":116},{"source":115,"target":106},{"source":113,"target":11},{"source":105,"target":3},{"source":105,"target":12},{"source":105,"target":15},{"source":105,"target":117},{"source":105,"target":118},{"source":105,"target":119},{"source":117,"target":120},{"source":117,"target":105},{"source":118,"target":12},{"source":119,"target":15},{"source":106,"target":3},{"source":106,"target":11},{"source":106,"target":116},{"source":106,"target":121},{"source":106,"target":122},{"source":106,"target":123},{"source":116,"target":104},{"source":116,"target":124},{"source":116,"target":106},{"source":116,"target":112},{"source":124,"target":104},{"source":121,"target":125},{"source":121,"target":106},{"source":122,"target":126},{"source":122,"target":106},{"source":123,"target":11},{"source":107,"target":3},{"source":107,"target":127},{"source":107,"target":128},{"source":127,"target":107},{"source":128,"target":107},{"source":108,"target":3},{"source":108,"target":12},{"source":108,"target":16},{"source":108,"target":129},{"source":108,"target":130},{"source":108,"target":131},{"source":129,"target":132},{"source":129,"target":108},{"source":130,"target":12},{"source":131,"target":16},{"source":109,"target":3},{"source":109,"target":11},{"source":109,"target":15},{"source":109,"target":133},{"source":109,"target":134},{"source":109,"target":135},{"source":109,"target":136},{"source":133,"target":137},{"source":133,"target":109},{"source":134,"target":104},{"source":134,"target":138},{"source":134,"target":109},{"source":138,"target":104},{"source":135,"target":11},{"source":136,"target":15},{"source":4,"target":139},{"source":4,"target":140},{"source":4,"target":141},{"source":4,"target":142},{"source":4,"target":143},{"source":4,"target":144},{"source":4,"target":145},{"source":4,"target":0},{"source":139,"target":4},{"source":139,"target":12},{"source":139,"target":146},{"source":146,"target":12},{"source":140,"target":4},{"source":140,"target":19},{"source":140,"target":147},{"source":147,"target":19},{"source":141,"target":4},{"source":141,"target":140},{"source":141,"target":148},{"source":141,"target":149},{"source":148,"target":150},{"source":148,"target":141},{"source":149,"target":140},{"source":142,"target":4},{"source":142,"target":140},{"source":142,"target":151},{"source":151,"target":140},{"source":143,"target":4},{"source":143,"target":18},{"source":143,"target":152},{"source":143,"target":153},{"source":152,"target":154},{"source":152,"target":143},{"source":153,"target":18},{"source":144,"target":4},{"source":144,"target":140},{"source":144,"target":155},{"source":155,"target":140},{"source":145,"target":4},{"source":145,"target":140},{"source":145,"target":156},{"source":156,"target":140},{"source":5,"target":157},{"source":5,"target":158},{"source":5,"target":159},{"source":5,"target":0},{"source":157,"target":5},{"source":157,"target":160},{"source":160,"target":158},{"source":160,"target":161},{"source":160,"target":157},{"source":161,"target":158},{"source":158,"target":5},{"source":158,"target":162},{"source":158,"target":163},{"source":158,"target":164},{"source":158,"target":165},{"source":158,"target":166},{"source":162,"target":167},{"source":162,"target":158},{"source":163,"target":168},{"source":163,"target":158},{"source":164,"target":169},{"source":164,"target":158},{"source":165,"target":170},{"source":165,"target":158},{"source":166,"target":159},{"source":166,"target":171},{"source":166,"target":158},{"source":171,"target":159},{"source":159,"target":5},{"source":159,"target":172},{"source":159,"target":173},{"source":159,"target":174},{"source":159,"target":175},{"source":159,"target":176},{"source":159,"target":177},{"source":159,"target":178},{"source":172,"target":179},{"source":172,"target":159},{"source":173,"target":180},{"source":173,"target":159},{"source":174,"target":181},{"source":174,"target":159},{"source":175,"target":182},{"source":175,"target":159},{"source":176,"target":183},{"source":176,"target":159},{"source":177,"target":184},{"source":177,"target":159},{"source":178,"target":185},{"source":178,"target":159},{"source":6,"target":186},{"source":6,"target":0},{"source":186,"target":6},{"source":186,"target":187},{"source":187,"target":188},{"source":187,"target":186},{"source":7,"target":189},{"source":7,"target":190},{"source":7,"target":191},{"source":7,"target":0},{"source":189,"target":7},{"source":189,"target":192},{"source":192,"target":190},{"source":192,"target":193},{"source":192,"target":189},{"source":193,"target":190},{"source":190,"target":7},{"source":190,"target":194},{"source":190,"target":195},{"source":190,"target":196},{"source":194,"target":191},{"source":194,"target":197},{"source":194,"target":190},{"source":197,"target":191},{"source":195,"target":11},{"source":195,"target":198},{"source":195,"target":190},{"source":198,"target":11},{"source":196,"target":11},{"source":196,"target":199},{"source":196,"target":190},{"source":199,"target":11},{"source":191,"target":7},{"source":191,"target":200},{"source":191,"target":201},{"source":191,"target":202},{"source":200,"target":191},{"source":201,"target":191},{"source":202,"target":191}],"multigraph":true} |
true | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0"
xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="gmfgraph"
nsURI="http://www.eclipse.org/gmf/2005/GraphicalDefinition" nsPrefix="gmfgraph">
<eClassifiers xsi:type="ecore:EClass" name="Canvas" eSuperTypes="#//Identity">
<eStructuralFeatures xsi:type="ecore:EReference" name="figures" upperBound="-1"
eType="#//FigureGallery" containment="true">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="containment here doesn't restrict nodes/connection from using figure galeries defined elsewhere. No assumption should be made whether or not node/connection figure is defined in the galery beloning to this canvas"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="nodes" upperBound="-1"
eType="#//Node" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="connections" upperBound="-1"
eType="#//Connection" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="compartments" upperBound="-1"
eType="#//Compartment" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="labels" upperBound="-1"
eType="#//DiagramLabel" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="FigureGallery" eSuperTypes="#//Identity">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="Kind of explicit figure library notion. Bundle of figures. Allows to specify plugin id (allows importing it later from gmfgen code) in addition to figures"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="figures" upperBound="-1"
eType="#//Figure" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="implementationBundle" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Identity" abstract="true" interface="true">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="Easy and readable way to reference element of the model from another one"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
iD="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="DiagramElement" abstract="true" eSuperTypes="#//Identity">
<eOperations name="find" eType="#//VisualFacet">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="utility operation to get first visual facet assignable (in Java terms, {@link Class#isAssignableFrom(Class)}) to variables of designated class. Argument can't be null"/>
</eAnnotations>
<eParameters name="facetClass" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EJavaClass"/>
</eOperations>
<eStructuralFeatures xsi:type="ecore:EReference" name="figure" lowerBound="1"
eType="#//FigureHandle" eOpposite="#//FigureHandle/referencingElements"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="facets" upperBound="-1"
eType="#//VisualFacet" containment="true">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="anything to further specify constraint or any other aspect of the element"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Node" eSuperTypes="#//DiagramElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="nodeFigure" lowerBound="1"
eType="#//Figure" changeable="false" volatile="true" transient="true" derived="true"
resolveProxies="false">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="Specializes DiagramElement.figure"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="resizeConstraint" eType="#//Direction"
defaultValueLiteral="NSEW"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="affixedParentSide" eType="#//Direction"
defaultValueLiteral="NONE"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Connection" eSuperTypes="#//DiagramElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="connectionFigure" lowerBound="1"
eType="#//Figure" changeable="false" volatile="true" transient="true" derived="true"
resolveProxies="false">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="Specializes DiagramElement.figure"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Compartment" eSuperTypes="#//DiagramElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="collapsible" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="needsTitle" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="DiagramLabel" eSuperTypes="#//Node">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="elementIcon" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"
defaultValueLiteral="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="VisualFacet" abstract="true" interface="true"/>
<eClassifiers xsi:type="ecore:EClass" name="GeneralFacet" eSuperTypes="#//VisualFacet">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="provide means to attach arbitrary data to your diagram element definition. It's up to you (template author) to process it somehow."/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="identifier" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
iD="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="data" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="AlignmentFacet" eSuperTypes="#//VisualFacet">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="Makes sense for DiagramLabels of Links only (now). Constants from {@link org.eclipse.draw2d.ConnectionLocator} are: MIDDLE = Alignment.CENTER, TARGET = Alignment.END, SOURCE = Alignment.BEGINNING"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="alignment" eType="#//Alignment"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="GradientFacet" eSuperTypes="#//VisualFacet">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="direction" eType="#//Direction"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="LabelOffsetFacet" eSuperTypes="#//VisualFacet">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="x" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="y" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="DefaultSizeFacet" eSuperTypes="#//VisualFacet">
<eStructuralFeatures xsi:type="ecore:EReference" name="defaultSize" eType="#//Dimension"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="FigureMarker" abstract="true" interface="true"
eSuperTypes="#//Layoutable">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="Anything you could combine visual representation from. Ordinary GEF figures, custom-defined or references to defined elsewhere."/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="parent" eType="#//Figure"
changeable="false" resolveProxies="false" eOpposite="#//Figure/children"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="FigureHandle" abstract="true" interface="true">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="Entry in the figure's hierarchy to reference from diagram element"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="referencingElements" upperBound="-1"
eType="#//DiagramElement" eOpposite="#//DiagramElement/figure"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Figure" abstract="true" interface="true"
eSuperTypes="#//FigureMarker #//FigureHandle #//Identity">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="org.eclipse.draw2d.Figure"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="children" upperBound="-1"
eType="#//FigureMarker" containment="true" eOpposite="#//FigureMarker/parent"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="foregroundColor" eType="#//Color"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="backgroundColor" eType="#//Color"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="maximumSize" eType="#//Dimension"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="minimumSize" eType="#//Dimension"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="preferredSize" eType="#//Dimension"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="font" eType="#//Font" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="insets" eType="#//Insets"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="border" eType="#//Border"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="location" eType="#//Point"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="size" eType="#//Point"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="FigureRef" eSuperTypes="#//FigureMarker">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="Need this to facilitate reuse of figures while keeping (so nice looking) containment relationship in the Figure class"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="figure" lowerBound="1"
eType="#//Figure">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="not FigureMarker because don't want to reference figure references."/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ConnectionFigure" abstract="true" interface="true"
eSuperTypes="#//Figure"/>
<eClassifiers xsi:type="ecore:EClass" name="DecorationFigure" abstract="true" interface="true"
eSuperTypes="#//Figure"/>
<eClassifiers xsi:type="ecore:EClass" name="Shape" abstract="true" eSuperTypes="#//Figure">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="org.eclipse.draw2d.Shape"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="outline" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"
defaultValueLiteral="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="fill" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"
defaultValueLiteral="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="lineWidth" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"
defaultValueLiteral="1"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="lineKind" eType="#//LineKind"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="xorFill" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="xorOutline" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="resolvedChildren" upperBound="-1"
eType="#//Figure" changeable="false" volatile="true" transient="true" derived="true">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="Same as children, but resolves child FigureRefs, if any, to Figures"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Label" eSuperTypes="#//Figure">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="org.eclipse.draw2d.Label"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="text" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="LabeledContainer" eSuperTypes="#//Figure">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="org.eclipse.draw2d.LabeledContainer"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Rectangle" eSuperTypes="#//Shape">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="org.eclipse.draw2d.RectangleFigure"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="RoundedRectangle" eSuperTypes="#//Shape">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="org.eclipse.draw2d.RoundedRectangle"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="cornerWidth" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"
defaultValueLiteral="8"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="cornerHeight" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"
defaultValueLiteral="8"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Ellipse" eSuperTypes="#//Shape">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="org.eclipse.draw2d.Ellipse"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Polyline" eSuperTypes="#//Shape">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="org.eclipse.draw2d.Polyline"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="template" upperBound="-1"
eType="#//Point" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Polygon" eSuperTypes="#//Polyline">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="org.eclipse.draw2d.Polygon"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ScalablePolygon" eSuperTypes="#//Polygon">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="Marker interface to denote polygons with ability to autoscale to fit all available bounds. Separate class is needed instead of property in the Polygon class because of generalization PolygonDecoration extends Polygon"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="PolylineConnection" eSuperTypes="#//Polyline #//ConnectionFigure">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="org.eclipse.draw2d.PolylineConnection"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="sourceDecoration" eType="#//DecorationFigure"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="targetDecoration" eType="#//DecorationFigure"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="PolylineDecoration" eSuperTypes="#//Polyline #//DecorationFigure">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="org.eclipse.draw2d.PolylineDecoration"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="PolygonDecoration" eSuperTypes="#//Polygon #//DecorationFigure">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="org.eclipse.draw2d.PolygonDecoration"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CustomClass" abstract="true" interface="true">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="qualifiedClassName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="bundleName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="attributes" upperBound="-1"
eType="#//CustomAttribute" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CustomAttribute">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
defaultValueLiteral="null"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="directAccess" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean" defaultValueLiteral="false"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="multiStatementValue" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean" defaultValueLiteral="false"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="FigureAccessor" eSuperTypes="#//FigureHandle">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="accessor" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="typedFigure" eType="#//CustomFigure"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CustomFigure" eSuperTypes="#//Figure #//CustomClass">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="Any figure class provided by some bundle"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="customChildren" upperBound="-1"
eType="#//FigureAccessor" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CustomDecoration" eSuperTypes="#//CustomFigure #//DecorationFigure">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="Same as CustomFigure, but for Decorations"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CustomConnection" eSuperTypes="#//CustomFigure #//ConnectionFigure">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="Same as CustomFigure, but for Connections"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Color" abstract="true" interface="true"/>
<eClassifiers xsi:type="ecore:EClass" name="RGBColor" eSuperTypes="#//Color">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="red" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="green" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="blue" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ConstantColor" eSuperTypes="#//Color">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" lowerBound="1" eType="#//ColorConstants"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="ColorConstants">
<eLiterals name="white"/>
<eLiterals name="black" value="1"/>
<eLiterals name="lightGray" value="2"/>
<eLiterals name="gray" value="3"/>
<eLiterals name="darkGray" value="4"/>
<eLiterals name="red" value="5"/>
<eLiterals name="orange" value="6"/>
<eLiterals name="yellow" value="7"/>
<eLiterals name="green" value="8"/>
<eLiterals name="lightGreen" value="9"/>
<eLiterals name="darkGreen" value="10"/>
<eLiterals name="cyan" value="11"/>
<eLiterals name="lightBlue" value="12"/>
<eLiterals name="blue" value="13"/>
<eLiterals name="darkBlue" value="14"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Font" abstract="true" interface="true"/>
<eClassifiers xsi:type="ecore:EClass" name="BasicFont" eSuperTypes="#//Font">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="faceName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="height" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"
defaultValueLiteral="9"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="style" eType="#//FontStyle"
defaultValueLiteral="NORMAL"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="FontStyle">
<eLiterals name="NORMAL"/>
<eLiterals name="BOLD" value="1"/>
<eLiterals name="ITALIC" value="2"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Point">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="x" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="y" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Dimension">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="dx" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="dy" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Insets">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="top" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="left" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="bottom" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="right" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Border" abstract="true" interface="true"/>
<eClassifiers xsi:type="ecore:EClass" name="LineBorder" eSuperTypes="#//Border">
<eStructuralFeatures xsi:type="ecore:EReference" name="color" eType="#//Color"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="width" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"
defaultValueLiteral="1"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="MarginBorder" eSuperTypes="#//Border">
<eStructuralFeatures xsi:type="ecore:EReference" name="insets" eType="#//Insets"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CompoundBorder" eSuperTypes="#//Border">
<eStructuralFeatures xsi:type="ecore:EReference" name="outer" eType="#//Border"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="inner" eType="#//Border"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CustomBorder" eSuperTypes="#//Border #//CustomClass"/>
<eClassifiers xsi:type="ecore:EEnum" name="Direction">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="Geographical bit constants from org.eclipse.draw2d.PositionConstants"/>
</eAnnotations>
<eLiterals name="NONE"/>
<eLiterals name="NORTH" value="1"/>
<eLiterals name="SOUTH" value="4"/>
<eLiterals name="WEST" value="8"/>
<eLiterals name="EAST" value="16"/>
<eLiterals name="NORTH_EAST" value="17"/>
<eLiterals name="NORTH_WEST" value="9"/>
<eLiterals name="SOUTH_EAST" value="20"/>
<eLiterals name="SOUTH_WEST" value="12"/>
<eLiterals name="NORTH_SOUTH" value="5"/>
<eLiterals name="EAST_WEST" value="24"/>
<eLiterals name="NSEW" value="29"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="LineKind">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="org.eclipse.draw2d.Graphics.LINE_* (== org.eclipse.swt.SWT.LINE_*. Values are same as SWT constants"/>
</eAnnotations>
<eLiterals name="LINE_SOLID" value="1"/>
<eLiterals name="LINE_DASH" value="2"/>
<eLiterals name="LINE_DOT" value="3"/>
<eLiterals name="LINE_DASHDOT" value="4"/>
<eLiterals name="LINE_DASHDOTDOT" value="5"/>
<eLiterals name="LINE_CUSTOM" value="6"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="LayoutData" abstract="true" interface="true">
<eStructuralFeatures xsi:type="ecore:EReference" name="owner" lowerBound="1" eType="#//Layoutable"
eOpposite="#//Layoutable/layoutData"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CustomLayoutData" eSuperTypes="#//LayoutData #//CustomClass"/>
<eClassifiers xsi:type="ecore:EClass" name="GridLayoutData" eSuperTypes="#//LayoutData">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="grabExcessHorizontalSpace"
lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"
defaultValueLiteral="false"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="grabExcessVerticalSpace"
lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"
defaultValueLiteral="false"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="verticalAlignment" lowerBound="1"
eType="#//Alignment" defaultValueLiteral="CENTER"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="horizontalAlignment" lowerBound="1"
eType="#//Alignment" defaultValueLiteral="CENTER"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="verticalSpan" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt" defaultValueLiteral="1"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="horizontalSpan" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt" defaultValueLiteral="1"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="horizontalIndent" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="sizeHint" eType="#//Dimension"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="BorderLayoutData" eSuperTypes="#//LayoutData">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="alignment" lowerBound="1"
eType="#//Alignment" defaultValueLiteral="CENTER"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="vertical" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"
defaultValueLiteral="false"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="Alignment">
<eLiterals name="BEGINNING"/>
<eLiterals name="CENTER" value="1"/>
<eLiterals name="END" value="2"/>
<eLiterals name="FILL" value="3"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Layoutable" abstract="true" interface="true">
<eStructuralFeatures xsi:type="ecore:EReference" name="layoutData" eType="#//LayoutData"
containment="true" eOpposite="#//LayoutData/owner"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="layout" eType="#//Layout"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Layout" abstract="true" interface="true"/>
<eClassifiers xsi:type="ecore:EClass" name="CustomLayout" eSuperTypes="#//Layout #//CustomClass"/>
<eClassifiers xsi:type="ecore:EClass" name="GridLayout" eSuperTypes="#//Layout">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="numColumns" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt" defaultValueLiteral="1"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="equalWidth" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean" defaultValueLiteral="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="margins" eType="#//Dimension"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="spacing" eType="#//Dimension"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="BorderLayout" eSuperTypes="#//Layout">
<eStructuralFeatures xsi:type="ecore:EReference" name="spacing" eType="#//Dimension"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="FlowLayout" eSuperTypes="#//Layout">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="vertical" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"
defaultValueLiteral="false"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="matchMinorSize" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"
defaultValueLiteral="false"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="forceSingleLine" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"
defaultValueLiteral="false"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="majorAlignment" eType="#//Alignment"
defaultValueLiteral="BEGINNING"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="minorAlignment" eType="#//Alignment"
defaultValueLiteral="BEGINNING"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="majorSpacing" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"
defaultValueLiteral="5"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="minorSpacing" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"
defaultValueLiteral="5"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="XYLayout" eSuperTypes="#//Layout"/>
<eClassifiers xsi:type="ecore:EClass" name="XYLayoutData" eSuperTypes="#//LayoutData">
<eStructuralFeatures xsi:type="ecore:EReference" name="topLeft" lowerBound="1"
eType="#//Point" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="size" lowerBound="1" eType="#//Dimension"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="StackLayout" eSuperTypes="#//Layout"/>
<eClassifiers xsi:type="ecore:EClass" name="FigureDescriptor"/>
</ecore:EPackage>
| github:ecore:/data/louismrose/PhD/Analyis/Co-Evo Examples/GMF/Graph/cope/Before.ecore | ecore | gmfgraph
Canvas
figures
nodes
connections
compartments
labels
FigureGallery
figures
implementationBundle
Identity
name
DiagramElement
find
facetClass
figure
facets
Node
nodeFigure
resizeConstraint
NSEW
affixedParentSide
NONE
Connection
connectionFigure
Compartment
collapsible
needsTitle
DiagramLabel
elementIcon
true
VisualFacet
GeneralFacet
identifier
data
AlignmentFacet
alignment
GradientFacet
direction
LabelOffsetFacet
x
y
DefaultSizeFacet
defaultSize
FigureMarker
parent
FigureHandle
referencingElements
Figure
children
foregroundColor
backgroundColor
maximumSize
minimumSize
preferredSize
font
insets
border
location
size
FigureRef
figure
ConnectionFigure
DecorationFigure
Shape
outline
true
fill
true
lineWidth
1
lineKind
xorFill
xorOutline
resolvedChildren
Label
text
LabeledContainer
Rectangle
RoundedRectangle
cornerWidth
8
cornerHeight
8
Ellipse
Polyline
template
Polygon
ScalablePolygon
PolylineConnection
sourceDecoration
targetDecoration
PolylineDecoration
PolygonDecoration
CustomClass
qualifiedClassName
bundleName
attributes
CustomAttribute
name
value
null
directAccess
false
multiStatementValue
false
FigureAccessor
accessor
typedFigure
CustomFigure
customChildren
CustomDecoration
CustomConnection
Color
RGBColor
red
green
blue
ConstantColor
value
ColorConstants
white
white
black
black
lightGray
lightGray
gray
gray
darkGray
darkGray
red
red
orange
orange
yellow
yellow
green
green
lightGreen
lightGreen
darkGreen
darkGreen
cyan
cyan
lightBlue
lightBlue
blue
blue
darkBlue
darkBlue
Font
BasicFont
faceName
height
9
style
NORMAL
FontStyle
NORMAL
NORMAL
BOLD
BOLD
ITALIC
ITALIC
Point
x
y
Dimension
dx
dy
Insets
top
left
bottom
right
Border
LineBorder
color
width
1
MarginBorder
insets
CompoundBorder
outer
inner
CustomBorder
Direction
NONE
NONE
NORTH
NORTH
SOUTH
SOUTH
WEST
WEST
EAST
EAST
NORTH_EAST
NORTH_EAST
NORTH_WEST
NORTH_WEST
SOUTH_EAST
SOUTH_EAST
SOUTH_WEST
SOUTH_WEST
NORTH_SOUTH
NORTH_SOUTH
EAST_WEST
EAST_WEST
NSEW
NSEW
LineKind
LINE_SOLID
LINE_SOLID
LINE_DASH
LINE_DASH
LINE_DOT
LINE_DOT
LINE_DASHDOT
LINE_DASHDOT
LINE_DASHDOTDOT
LINE_DASHDOTDOT
LINE_CUSTOM
LINE_CUSTOM
LayoutData
owner
CustomLayoutData
GridLayoutData
grabExcessHorizontalSpace
false
grabExcessVerticalSpace
false
verticalAlignment
CENTER
horizontalAlignment
CENTER
verticalSpan
1
horizontalSpan
1
horizontalIndent
sizeHint
BorderLayoutData
alignment
CENTER
vertical
false
Alignment
BEGINNING
BEGINNING
CENTER
CENTER
END
END
FILL
FILL
Layoutable
layoutData
layout
Layout
CustomLayout
GridLayout
numColumns
1
equalWidth
true
margins
spacing
BorderLayout
spacing
FlowLayout
vertical
false
matchMinorSize
false
forceSingleLine
false
majorAlignment
BEGINNING
minorAlignment
BEGINNING
majorSpacing
5
minorSpacing
5
XYLayout
XYLayoutData
topLeft
size
StackLayout
FigureDescriptor | null | {"directed":true,"nodes":[{"nsPrefix":"gmfgraph","nsURI":"http://www.eclipse.org/gmf/2005/GraphicalDefinition","name":"gmfgraph","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Canvas","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FigureGallery","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Identity","instanceClass":null,"abstract":true,"id":3,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DiagramElement","instanceClass":null,"abstract":true,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Node","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Connection","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Compartment","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DiagramLabel","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"VisualFacet","instanceClass":null,"abstract":true,"id":9,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"GeneralFacet","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AlignmentFacet","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"GradientFacet","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LabelOffsetFacet","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DefaultSizeFacet","instanceClass":null,"abstract":false,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FigureMarker","instanceClass":null,"abstract":true,"id":15,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FigureHandle","instanceClass":null,"abstract":true,"id":16,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Figure","instanceClass":null,"abstract":true,"id":17,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FigureRef","instanceClass":null,"abstract":false,"id":18,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ConnectionFigure","instanceClass":null,"abstract":true,"id":19,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DecorationFigure","instanceClass":null,"abstract":true,"id":20,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Shape","instanceClass":null,"abstract":true,"id":21,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Label","instanceClass":null,"abstract":false,"id":22,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LabeledContainer","instanceClass":null,"abstract":false,"id":23,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Rectangle","instanceClass":null,"abstract":false,"id":24,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RoundedRectangle","instanceClass":null,"abstract":false,"id":25,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Ellipse","instanceClass":null,"abstract":false,"id":26,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Polyline","instanceClass":null,"abstract":false,"id":27,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Polygon","instanceClass":null,"abstract":false,"id":28,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ScalablePolygon","instanceClass":null,"abstract":false,"id":29,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PolylineConnection","instanceClass":null,"abstract":false,"id":30,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PolylineDecoration","instanceClass":null,"abstract":false,"id":31,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PolygonDecoration","instanceClass":null,"abstract":false,"id":32,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CustomClass","instanceClass":null,"abstract":true,"id":33,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CustomAttribute","instanceClass":null,"abstract":false,"id":34,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FigureAccessor","instanceClass":null,"abstract":false,"id":35,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CustomFigure","instanceClass":null,"abstract":false,"id":36,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CustomDecoration","instanceClass":null,"abstract":false,"id":37,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CustomConnection","instanceClass":null,"abstract":false,"id":38,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Color","instanceClass":null,"abstract":true,"id":39,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RGBColor","instanceClass":null,"abstract":false,"id":40,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ConstantColor","instanceClass":null,"abstract":false,"id":41,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"ColorConstants","instanceClass":null,"id":42,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Font","instanceClass":null,"abstract":true,"id":43,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BasicFont","instanceClass":null,"abstract":false,"id":44,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"FontStyle","instanceClass":null,"id":45,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Point","instanceClass":null,"abstract":false,"id":46,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Dimension","instanceClass":null,"abstract":false,"id":47,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Insets","instanceClass":null,"abstract":false,"id":48,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Border","instanceClass":null,"abstract":true,"id":49,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LineBorder","instanceClass":null,"abstract":false,"id":50,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MarginBorder","instanceClass":null,"abstract":false,"id":51,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CompoundBorder","instanceClass":null,"abstract":false,"id":52,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CustomBorder","instanceClass":null,"abstract":false,"id":53,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"Direction","instanceClass":null,"id":54,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"LineKind","instanceClass":null,"id":55,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LayoutData","instanceClass":null,"abstract":true,"id":56,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CustomLayoutData","instanceClass":null,"abstract":false,"id":57,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"GridLayoutData","instanceClass":null,"abstract":false,"id":58,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BorderLayoutData","instanceClass":null,"abstract":false,"id":59,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"Alignment","instanceClass":null,"id":60,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Layoutable","instanceClass":null,"abstract":true,"id":61,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Layout","instanceClass":null,"abstract":true,"id":62,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CustomLayout","instanceClass":null,"abstract":false,"id":63,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"GridLayout","instanceClass":null,"abstract":false,"id":64,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BorderLayout","instanceClass":null,"abstract":false,"id":65,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FlowLayout","instanceClass":null,"abstract":false,"id":66,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"XYLayout","instanceClass":null,"abstract":false,"id":67,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"XYLayoutData","instanceClass":null,"abstract":false,"id":68,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StackLayout","instanceClass":null,"abstract":false,"id":69,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FigureDescriptor","instanceClass":null,"abstract":false,"id":70,"interface":false,"eClass":"EClass"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"figures","changeable":true,"resolveProxies":true,"lowerBound":0,"id":71,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"nodes","changeable":true,"resolveProxies":true,"lowerBound":0,"id":72,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"connections","changeable":true,"resolveProxies":true,"lowerBound":0,"id":73,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"compartments","changeable":true,"resolveProxies":true,"lowerBound":0,"id":74,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"labels","changeable":true,"resolveProxies":true,"lowerBound":0,"id":75,"derived":false},{"id":76,"eClass":"EGenericType"},{"id":77,"eClass":"EGenericType"},{"id":78,"eClass":"EGenericType"},{"id":79,"eClass":"EGenericType"},{"id":80,"eClass":"EGenericType"},{"id":81,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"figures","changeable":true,"resolveProxies":true,"lowerBound":0,"id":82,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"implementationBundle","changeable":true,"lowerBound":0,"iD":false,"id":83,"derived":false},{"id":84,"eClass":"EGenericType"},{"id":85,"eClass":"EGenericType"},{"id":86,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":1,"iD":true,"id":87,"derived":false},{"id":88,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"find","lowerBound":0,"id":89,"many":false,"required":false,"eClass":"EOperation"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"figure","changeable":true,"resolveProxies":true,"lowerBound":1,"id":90,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"facets","changeable":true,"resolveProxies":true,"lowerBound":0,"id":91,"derived":false},{"id":92,"eClass":"EGenericType"},{"id":93,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"facetClass","lowerBound":0,"id":94,"many":false,"required":false,"eClass":"EParameter"},{"id":95,"eClass":"EGenericType"},{"id":96,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"referencingElements","changeable":true,"resolveProxies":true,"lowerBound":0,"id":97,"derived":false},{"id":98,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":true,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"nodeFigure","changeable":false,"resolveProxies":false,"lowerBound":1,"id":99,"derived":true},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"NSEW","unsettable":false,"transient":false,"unique":true,"name":"resizeConstraint","changeable":true,"lowerBound":0,"iD":false,"id":100,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"NONE","unsettable":false,"transient":false,"unique":true,"name":"affixedParentSide","changeable":true,"lowerBound":0,"iD":false,"id":101,"derived":false},{"id":102,"eClass":"EGenericType"},{"id":103,"eClass":"EGenericType"},{"id":104,"eClass":"EGenericType"},{"id":105,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":true,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"connectionFigure","changeable":false,"resolveProxies":false,"lowerBound":1,"id":106,"derived":true},{"id":107,"eClass":"EGenericType"},{"id":108,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"collapsible","changeable":true,"lowerBound":0,"iD":false,"id":109,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"needsTitle","changeable":true,"lowerBound":0,"iD":false,"id":110,"derived":false},{"id":111,"eClass":"EGenericType"},{"id":112,"eClass":"EGenericType"},{"id":113,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":true,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"true","unsettable":false,"transient":false,"unique":true,"name":"elementIcon","changeable":true,"lowerBound":0,"iD":false,"id":114,"derived":false},{"id":115,"eClass":"EGenericType"},{"id":116,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"identifier","changeable":true,"lowerBound":0,"iD":true,"id":117,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"data","changeable":true,"lowerBound":0,"iD":false,"id":118,"derived":false},{"id":119,"eClass":"EGenericType"},{"id":120,"eClass":"EGenericType"},{"id":121,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"alignment","changeable":true,"lowerBound":0,"iD":false,"id":122,"derived":false},{"id":123,"eClass":"EGenericType"},{"id":124,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"direction","changeable":true,"lowerBound":0,"iD":false,"id":125,"derived":false},{"id":126,"eClass":"EGenericType"},{"id":127,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"x","changeable":true,"lowerBound":0,"iD":false,"id":128,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"y","changeable":true,"lowerBound":0,"iD":false,"id":129,"derived":false},{"id":130,"eClass":"EGenericType"},{"id":131,"eClass":"EGenericType"},{"id":132,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"defaultSize","changeable":true,"resolveProxies":true,"lowerBound":0,"id":133,"derived":false},{"id":134,"eClass":"EGenericType"},{"id":135,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"parent","changeable":false,"resolveProxies":false,"lowerBound":0,"id":136,"derived":false},{"id":137,"eClass":"EGenericType"},{"id":138,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"children","changeable":true,"resolveProxies":true,"lowerBound":0,"id":139,"derived":false},{"id":140,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"foregroundColor","changeable":true,"resolveProxies":true,"lowerBound":0,"id":141,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"backgroundColor","changeable":true,"resolveProxies":true,"lowerBound":0,"id":142,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"maximumSize","changeable":true,"resolveProxies":true,"lowerBound":0,"id":143,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"minimumSize","changeable":true,"resolveProxies":true,"lowerBound":0,"id":144,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"preferredSize","changeable":true,"resolveProxies":true,"lowerBound":0,"id":145,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"font","changeable":true,"resolveProxies":true,"lowerBound":0,"id":146,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"insets","changeable":true,"resolveProxies":true,"lowerBound":0,"id":147,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"border","changeable":true,"resolveProxies":true,"lowerBound":0,"id":148,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"location","changeable":true,"resolveProxies":true,"lowerBound":0,"id":149,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"size","changeable":true,"resolveProxies":true,"lowerBound":0,"id":150,"derived":false},{"id":151,"eClass":"EGenericType"},{"id":152,"eClass":"EGenericType"},{"id":153,"eClass":"EGenericType"},{"id":154,"eClass":"EGenericType"},{"id":155,"eClass":"EGenericType"},{"id":156,"eClass":"EGenericType"},{"id":157,"eClass":"EGenericType"},{"id":158,"eClass":"EGenericType"},{"id":159,"eClass":"EGenericType"},{"id":160,"eClass":"EGenericType"},{"id":161,"eClass":"EGenericType"},{"id":162,"eClass":"EGenericType"},{"id":163,"eClass":"EGenericType"},{"id":164,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"figure","changeable":true,"resolveProxies":true,"lowerBound":1,"id":165,"derived":false},{"id":166,"eClass":"EGenericType"},{"id":167,"eClass":"EGenericType"},{"id":168,"eClass":"EGenericType"},{"id":169,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":true,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"true","unsettable":false,"transient":false,"unique":true,"name":"outline","changeable":true,"lowerBound":0,"iD":false,"id":170,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":true,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"true","unsettable":false,"transient":false,"unique":true,"name":"fill","changeable":true,"lowerBound":0,"iD":false,"id":171,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"1","unsettable":false,"transient":false,"unique":true,"name":"lineWidth","changeable":true,"lowerBound":0,"iD":false,"id":172,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"lineKind","changeable":true,"lowerBound":0,"iD":false,"id":173,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"xorFill","changeable":true,"lowerBound":0,"iD":false,"id":174,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"xorOutline","changeable":true,"lowerBound":0,"iD":false,"id":175,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":true,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"resolvedChildren","changeable":false,"resolveProxies":true,"lowerBound":0,"id":176,"derived":true},{"id":177,"eClass":"EGenericType"},{"id":178,"eClass":"EGenericType"},{"id":179,"eClass":"EGenericType"},{"id":180,"eClass":"EGenericType"},{"id":181,"eClass":"EGenericType"},{"id":182,"eClass":"EGenericType"},{"id":183,"eClass":"EGenericType"},{"id":184,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"text","changeable":true,"lowerBound":0,"iD":false,"id":185,"derived":false},{"id":186,"eClass":"EGenericType"},{"id":187,"eClass":"EGenericType"},{"id":188,"eClass":"EGenericType"},{"id":189,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":8,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"8","unsettable":false,"transient":false,"unique":true,"name":"cornerWidth","changeable":true,"lowerBound":0,"iD":false,"id":190,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":8,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"8","unsettable":false,"transient":false,"unique":true,"name":"cornerHeight","changeable":true,"lowerBound":0,"iD":false,"id":191,"derived":false},{"id":192,"eClass":"EGenericType"},{"id":193,"eClass":"EGenericType"},{"id":194,"eClass":"EGenericType"},{"id":195,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"template","changeable":true,"resolveProxies":true,"lowerBound":0,"id":196,"derived":false},{"id":197,"eClass":"EGenericType"},{"id":198,"eClass":"EGenericType"},{"id":199,"eClass":"EGenericType"},{"id":200,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"sourceDecoration","changeable":true,"resolveProxies":true,"lowerBound":0,"id":201,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"targetDecoration","changeable":true,"resolveProxies":true,"lowerBound":0,"id":202,"derived":false},{"id":203,"eClass":"EGenericType"},{"id":204,"eClass":"EGenericType"},{"id":205,"eClass":"EGenericType"},{"id":206,"eClass":"EGenericType"},{"id":207,"eClass":"EGenericType"},{"id":208,"eClass":"EGenericType"},{"id":209,"eClass":"EGenericType"},{"id":210,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"qualifiedClassName","changeable":true,"lowerBound":0,"iD":false,"id":211,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"bundleName","changeable":true,"lowerBound":0,"iD":false,"id":212,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"attributes","changeable":true,"resolveProxies":true,"lowerBound":0,"id":213,"derived":false},{"id":214,"eClass":"EGenericType"},{"id":215,"eClass":"EGenericType"},{"id":216,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":217,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":"null","volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"null","unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":1,"iD":false,"id":218,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"false","unsettable":false,"transient":false,"unique":true,"name":"directAccess","changeable":true,"lowerBound":1,"iD":false,"id":219,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"false","unsettable":false,"transient":false,"unique":true,"name":"multiStatementValue","changeable":true,"lowerBound":1,"iD":false,"id":220,"derived":false},{"id":221,"eClass":"EGenericType"},{"id":222,"eClass":"EGenericType"},{"id":223,"eClass":"EGenericType"},{"id":224,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"accessor","changeable":true,"lowerBound":1,"iD":false,"id":225,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"typedFigure","changeable":true,"resolveProxies":true,"lowerBound":0,"id":226,"derived":false},{"id":227,"eClass":"EGenericType"},{"id":228,"eClass":"EGenericType"},{"id":229,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"customChildren","changeable":true,"resolveProxies":true,"lowerBound":0,"id":230,"derived":false},{"id":231,"eClass":"EGenericType"},{"id":232,"eClass":"EGenericType"},{"id":233,"eClass":"EGenericType"},{"id":234,"eClass":"EGenericType"},{"id":235,"eClass":"EGenericType"},{"id":236,"eClass":"EGenericType"},{"id":237,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"red","changeable":true,"lowerBound":1,"iD":false,"id":238,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"green","changeable":true,"lowerBound":1,"iD":false,"id":239,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"blue","changeable":true,"lowerBound":1,"iD":false,"id":240,"derived":false},{"id":241,"eClass":"EGenericType"},{"id":242,"eClass":"EGenericType"},{"id":243,"eClass":"EGenericType"},{"id":244,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":1,"iD":false,"id":245,"derived":false},{"id":246,"eClass":"EGenericType"},{"id":247,"eClass":"EGenericType"},{"name":"white","id":248,"value":0,"literal":"white","eClass":"EEnumLiteral"},{"name":"black","id":249,"value":1,"literal":"black","eClass":"EEnumLiteral"},{"name":"lightGray","id":250,"value":2,"literal":"lightGray","eClass":"EEnumLiteral"},{"name":"gray","id":251,"value":3,"literal":"gray","eClass":"EEnumLiteral"},{"name":"darkGray","id":252,"value":4,"literal":"darkGray","eClass":"EEnumLiteral"},{"name":"red","id":253,"value":5,"literal":"red","eClass":"EEnumLiteral"},{"name":"orange","id":254,"value":6,"literal":"orange","eClass":"EEnumLiteral"},{"name":"yellow","id":255,"value":7,"literal":"yellow","eClass":"EEnumLiteral"},{"name":"green","id":256,"value":8,"literal":"green","eClass":"EEnumLiteral"},{"name":"lightGreen","id":257,"value":9,"literal":"lightGreen","eClass":"EEnumLiteral"},{"name":"darkGreen","id":258,"value":10,"literal":"darkGreen","eClass":"EEnumLiteral"},{"name":"cyan","id":259,"value":11,"literal":"cyan","eClass":"EEnumLiteral"},{"name":"lightBlue","id":260,"value":12,"literal":"lightBlue","eClass":"EEnumLiteral"},{"name":"blue","id":261,"value":13,"literal":"blue","eClass":"EEnumLiteral"},{"name":"darkBlue","id":262,"value":14,"literal":"darkBlue","eClass":"EEnumLiteral"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"faceName","changeable":true,"lowerBound":0,"iD":false,"id":263,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":9,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"9","unsettable":false,"transient":false,"unique":true,"name":"height","changeable":true,"lowerBound":0,"iD":false,"id":264,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"NORMAL","unsettable":false,"transient":false,"unique":true,"name":"style","changeable":true,"lowerBound":0,"iD":false,"id":265,"derived":false},{"id":266,"eClass":"EGenericType"},{"id":267,"eClass":"EGenericType"},{"id":268,"eClass":"EGenericType"},{"id":269,"eClass":"EGenericType"},{"name":"NORMAL","id":270,"value":0,"literal":"NORMAL","eClass":"EEnumLiteral"},{"name":"BOLD","id":271,"value":1,"literal":"BOLD","eClass":"EEnumLiteral"},{"name":"ITALIC","id":272,"value":2,"literal":"ITALIC","eClass":"EEnumLiteral"},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"x","changeable":true,"lowerBound":0,"iD":false,"id":273,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"y","changeable":true,"lowerBound":0,"iD":false,"id":274,"derived":false},{"id":275,"eClass":"EGenericType"},{"id":276,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"dx","changeable":true,"lowerBound":0,"iD":false,"id":277,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"dy","changeable":true,"lowerBound":0,"iD":false,"id":278,"derived":false},{"id":279,"eClass":"EGenericType"},{"id":280,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"top","changeable":true,"lowerBound":0,"iD":false,"id":281,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"left","changeable":true,"lowerBound":0,"iD":false,"id":282,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"bottom","changeable":true,"lowerBound":0,"iD":false,"id":283,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"right","changeable":true,"lowerBound":0,"iD":false,"id":284,"derived":false},{"id":285,"eClass":"EGenericType"},{"id":286,"eClass":"EGenericType"},{"id":287,"eClass":"EGenericType"},{"id":288,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"color","changeable":true,"resolveProxies":true,"lowerBound":0,"id":289,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"1","unsettable":false,"transient":false,"unique":true,"name":"width","changeable":true,"lowerBound":0,"iD":false,"id":290,"derived":false},{"id":291,"eClass":"EGenericType"},{"id":292,"eClass":"EGenericType"},{"id":293,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"insets","changeable":true,"resolveProxies":true,"lowerBound":0,"id":294,"derived":false},{"id":295,"eClass":"EGenericType"},{"id":296,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"outer","changeable":true,"resolveProxies":true,"lowerBound":0,"id":297,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"inner","changeable":true,"resolveProxies":true,"lowerBound":0,"id":298,"derived":false},{"id":299,"eClass":"EGenericType"},{"id":300,"eClass":"EGenericType"},{"id":301,"eClass":"EGenericType"},{"id":302,"eClass":"EGenericType"},{"id":303,"eClass":"EGenericType"},{"name":"NONE","id":304,"value":0,"literal":"NONE","eClass":"EEnumLiteral"},{"name":"NORTH","id":305,"value":1,"literal":"NORTH","eClass":"EEnumLiteral"},{"name":"SOUTH","id":306,"value":4,"literal":"SOUTH","eClass":"EEnumLiteral"},{"name":"WEST","id":307,"value":8,"literal":"WEST","eClass":"EEnumLiteral"},{"name":"EAST","id":308,"value":16,"literal":"EAST","eClass":"EEnumLiteral"},{"name":"NORTH_EAST","id":309,"value":17,"literal":"NORTH_EAST","eClass":"EEnumLiteral"},{"name":"NORTH_WEST","id":310,"value":9,"literal":"NORTH_WEST","eClass":"EEnumLiteral"},{"name":"SOUTH_EAST","id":311,"value":20,"literal":"SOUTH_EAST","eClass":"EEnumLiteral"},{"name":"SOUTH_WEST","id":312,"value":12,"literal":"SOUTH_WEST","eClass":"EEnumLiteral"},{"name":"NORTH_SOUTH","id":313,"value":5,"literal":"NORTH_SOUTH","eClass":"EEnumLiteral"},{"name":"EAST_WEST","id":314,"value":24,"literal":"EAST_WEST","eClass":"EEnumLiteral"},{"name":"NSEW","id":315,"value":29,"literal":"NSEW","eClass":"EEnumLiteral"},{"name":"LINE_SOLID","id":316,"value":1,"literal":"LINE_SOLID","eClass":"EEnumLiteral"},{"name":"LINE_DASH","id":317,"value":2,"literal":"LINE_DASH","eClass":"EEnumLiteral"},{"name":"LINE_DOT","id":318,"value":3,"literal":"LINE_DOT","eClass":"EEnumLiteral"},{"name":"LINE_DASHDOT","id":319,"value":4,"literal":"LINE_DASHDOT","eClass":"EEnumLiteral"},{"name":"LINE_DASHDOTDOT","id":320,"value":5,"literal":"LINE_DASHDOTDOT","eClass":"EEnumLiteral"},{"name":"LINE_CUSTOM","id":321,"value":6,"literal":"LINE_CUSTOM","eClass":"EEnumLiteral"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"owner","changeable":true,"resolveProxies":true,"lowerBound":1,"id":322,"derived":false},{"id":323,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"layoutData","changeable":true,"resolveProxies":true,"lowerBound":0,"id":324,"derived":false},{"id":325,"eClass":"EGenericType"},{"id":326,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"false","unsettable":false,"transient":false,"unique":true,"name":"grabExcessHorizontalSpace","changeable":true,"lowerBound":1,"iD":false,"id":327,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"false","unsettable":false,"transient":false,"unique":true,"name":"grabExcessVerticalSpace","changeable":true,"lowerBound":1,"iD":false,"id":328,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"CENTER","unsettable":false,"transient":false,"unique":true,"name":"verticalAlignment","changeable":true,"lowerBound":1,"iD":false,"id":329,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"CENTER","unsettable":false,"transient":false,"unique":true,"name":"horizontalAlignment","changeable":true,"lowerBound":1,"iD":false,"id":330,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"1","unsettable":false,"transient":false,"unique":true,"name":"verticalSpan","changeable":true,"lowerBound":1,"iD":false,"id":331,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"1","unsettable":false,"transient":false,"unique":true,"name":"horizontalSpan","changeable":true,"lowerBound":1,"iD":false,"id":332,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"horizontalIndent","changeable":true,"lowerBound":1,"iD":false,"id":333,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"sizeHint","changeable":true,"resolveProxies":true,"lowerBound":0,"id":334,"derived":false},{"id":335,"eClass":"EGenericType"},{"id":336,"eClass":"EGenericType"},{"id":337,"eClass":"EGenericType"},{"id":338,"eClass":"EGenericType"},{"id":339,"eClass":"EGenericType"},{"id":340,"eClass":"EGenericType"},{"id":341,"eClass":"EGenericType"},{"id":342,"eClass":"EGenericType"},{"id":343,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"CENTER","unsettable":false,"transient":false,"unique":true,"name":"alignment","changeable":true,"lowerBound":1,"iD":false,"id":344,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"false","unsettable":false,"transient":false,"unique":true,"name":"vertical","changeable":true,"lowerBound":0,"iD":false,"id":345,"derived":false},{"id":346,"eClass":"EGenericType"},{"id":347,"eClass":"EGenericType"},{"id":348,"eClass":"EGenericType"},{"name":"BEGINNING","id":349,"value":0,"literal":"BEGINNING","eClass":"EEnumLiteral"},{"name":"CENTER","id":350,"value":1,"literal":"CENTER","eClass":"EEnumLiteral"},{"name":"END","id":351,"value":2,"literal":"END","eClass":"EEnumLiteral"},{"name":"FILL","id":352,"value":3,"literal":"FILL","eClass":"EEnumLiteral"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"layout","changeable":true,"resolveProxies":true,"lowerBound":0,"id":353,"derived":false},{"id":354,"eClass":"EGenericType"},{"id":355,"eClass":"EGenericType"},{"id":356,"eClass":"EGenericType"},{"id":357,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"1","unsettable":false,"transient":false,"unique":true,"name":"numColumns","changeable":true,"lowerBound":1,"iD":false,"id":358,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":true,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"true","unsettable":false,"transient":false,"unique":true,"name":"equalWidth","changeable":true,"lowerBound":1,"iD":false,"id":359,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"margins","changeable":true,"resolveProxies":true,"lowerBound":0,"id":360,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"spacing","changeable":true,"resolveProxies":true,"lowerBound":0,"id":361,"derived":false},{"id":362,"eClass":"EGenericType"},{"id":363,"eClass":"EGenericType"},{"id":364,"eClass":"EGenericType"},{"id":365,"eClass":"EGenericType"},{"id":366,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"spacing","changeable":true,"resolveProxies":true,"lowerBound":0,"id":367,"derived":false},{"id":368,"eClass":"EGenericType"},{"id":369,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"false","unsettable":false,"transient":false,"unique":true,"name":"vertical","changeable":true,"lowerBound":0,"iD":false,"id":370,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"false","unsettable":false,"transient":false,"unique":true,"name":"matchMinorSize","changeable":true,"lowerBound":0,"iD":false,"id":371,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"false","unsettable":false,"transient":false,"unique":true,"name":"forceSingleLine","changeable":true,"lowerBound":0,"iD":false,"id":372,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"BEGINNING","unsettable":false,"transient":false,"unique":true,"name":"majorAlignment","changeable":true,"lowerBound":0,"iD":false,"id":373,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"BEGINNING","unsettable":false,"transient":false,"unique":true,"name":"minorAlignment","changeable":true,"lowerBound":0,"iD":false,"id":374,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":5,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"5","unsettable":false,"transient":false,"unique":true,"name":"majorSpacing","changeable":true,"lowerBound":0,"iD":false,"id":375,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":5,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"5","unsettable":false,"transient":false,"unique":true,"name":"minorSpacing","changeable":true,"lowerBound":0,"iD":false,"id":376,"derived":false},{"id":377,"eClass":"EGenericType"},{"id":378,"eClass":"EGenericType"},{"id":379,"eClass":"EGenericType"},{"id":380,"eClass":"EGenericType"},{"id":381,"eClass":"EGenericType"},{"id":382,"eClass":"EGenericType"},{"id":383,"eClass":"EGenericType"},{"id":384,"eClass":"EGenericType"},{"id":385,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"topLeft","changeable":true,"resolveProxies":true,"lowerBound":1,"id":386,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"size","changeable":true,"resolveProxies":true,"lowerBound":1,"id":387,"derived":false},{"id":388,"eClass":"EGenericType"},{"id":389,"eClass":"EGenericType"},{"id":390,"eClass":"EGenericType"},{"id":391,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":0,"target":8},{"source":0,"target":9},{"source":0,"target":10},{"source":0,"target":11},{"source":0,"target":12},{"source":0,"target":13},{"source":0,"target":14},{"source":0,"target":15},{"source":0,"target":16},{"source":0,"target":17},{"source":0,"target":18},{"source":0,"target":19},{"source":0,"target":20},{"source":0,"target":21},{"source":0,"target":22},{"source":0,"target":23},{"source":0,"target":24},{"source":0,"target":25},{"source":0,"target":26},{"source":0,"target":27},{"source":0,"target":28},{"source":0,"target":29},{"source":0,"target":30},{"source":0,"target":31},{"source":0,"target":32},{"source":0,"target":33},{"source":0,"target":34},{"source":0,"target":35},{"source":0,"target":36},{"source":0,"target":37},{"source":0,"target":38},{"source":0,"target":39},{"source":0,"target":40},{"source":0,"target":41},{"source":0,"target":42},{"source":0,"target":43},{"source":0,"target":44},{"source":0,"target":45},{"source":0,"target":46},{"source":0,"target":47},{"source":0,"target":48},{"source":0,"target":49},{"source":0,"target":50},{"source":0,"target":51},{"source":0,"target":52},{"source":0,"target":53},{"source":0,"target":54},{"source":0,"target":55},{"source":0,"target":56},{"source":0,"target":57},{"source":0,"target":58},{"source":0,"target":59},{"source":0,"target":60},{"source":0,"target":61},{"source":0,"target":62},{"source":0,"target":63},{"source":0,"target":64},{"source":0,"target":65},{"source":0,"target":66},{"source":0,"target":67},{"source":0,"target":68},{"source":0,"target":69},{"source":0,"target":70},{"source":1,"target":0},{"source":1,"target":3},{"source":1,"target":71},{"source":1,"target":72},{"source":1,"target":73},{"source":1,"target":74},{"source":1,"target":75},{"source":1,"target":76},{"source":71,"target":2},{"source":71,"target":77},{"source":71,"target":1},{"source":77,"target":2},{"source":72,"target":5},{"source":72,"target":78},{"source":72,"target":1},{"source":78,"target":5},{"source":73,"target":6},{"source":73,"target":79},{"source":73,"target":1},{"source":79,"target":6},{"source":74,"target":7},{"source":74,"target":80},{"source":74,"target":1},{"source":80,"target":7},{"source":75,"target":8},{"source":75,"target":81},{"source":75,"target":1},{"source":81,"target":8},{"source":76,"target":3},{"source":2,"target":0},{"source":2,"target":3},{"source":2,"target":82},{"source":2,"target":83},{"source":2,"target":84},{"source":82,"target":17},{"source":82,"target":85},{"source":82,"target":2},{"source":85,"target":17},{"source":83,"target":86},{"source":83,"target":2},{"source":84,"target":3},{"source":3,"target":0},{"source":3,"target":87},{"source":87,"target":88},{"source":87,"target":3},{"source":4,"target":0},{"source":4,"target":3},{"source":4,"target":89},{"source":4,"target":90},{"source":4,"target":91},{"source":4,"target":92},{"source":89,"target":9},{"source":89,"target":93},{"source":89,"target":4},{"source":89,"target":94},{"source":93,"target":9},{"source":94,"target":95},{"source":94,"target":89},{"source":90,"target":16},{"source":90,"target":96},{"source":90,"target":4},{"source":90,"target":97},{"source":96,"target":16},{"source":91,"target":9},{"source":91,"target":98},{"source":91,"target":4},{"source":98,"target":9},{"source":92,"target":3},{"source":5,"target":0},{"source":5,"target":4},{"source":5,"target":99},{"source":5,"target":100},{"source":5,"target":101},{"source":5,"target":102},{"source":99,"target":17},{"source":99,"target":103},{"source":99,"target":5},{"source":103,"target":17},{"source":100,"target":54},{"source":100,"target":104},{"source":100,"target":5},{"source":104,"target":54},{"source":101,"target":54},{"source":101,"target":105},{"source":101,"target":5},{"source":105,"target":54},{"source":102,"target":4},{"source":6,"target":0},{"source":6,"target":4},{"source":6,"target":106},{"source":6,"target":107},{"source":106,"target":17},{"source":106,"target":108},{"source":106,"target":6},{"source":108,"target":17},{"source":107,"target":4},{"source":7,"target":0},{"source":7,"target":4},{"source":7,"target":109},{"source":7,"target":110},{"source":7,"target":111},{"source":109,"target":112},{"source":109,"target":7},{"source":110,"target":113},{"source":110,"target":7},{"source":111,"target":4},{"source":8,"target":0},{"source":8,"target":5},{"source":8,"target":114},{"source":8,"target":115},{"source":114,"target":116},{"source":114,"target":8},{"source":115,"target":5},{"source":9,"target":0},{"source":10,"target":0},{"source":10,"target":9},{"source":10,"target":117},{"source":10,"target":118},{"source":10,"target":119},{"source":117,"target":120},{"source":117,"target":10},{"source":118,"target":121},{"source":118,"target":10},{"source":119,"target":9},{"source":11,"target":0},{"source":11,"target":9},{"source":11,"target":122},{"source":11,"target":123},{"source":122,"target":60},{"source":122,"target":124},{"source":122,"target":11},{"source":124,"target":60},{"source":123,"target":9},{"source":12,"target":0},{"source":12,"target":9},{"source":12,"target":125},{"source":12,"target":126},{"source":125,"target":54},{"source":125,"target":127},{"source":125,"target":12},{"source":127,"target":54},{"source":126,"target":9},{"source":13,"target":0},{"source":13,"target":9},{"source":13,"target":128},{"source":13,"target":129},{"source":13,"target":130},{"source":128,"target":131},{"source":128,"target":13},{"source":129,"target":132},{"source":129,"target":13},{"source":130,"target":9},{"source":14,"target":0},{"source":14,"target":9},{"source":14,"target":133},{"source":14,"target":134},{"source":133,"target":47},{"source":133,"target":135},{"source":133,"target":14},{"source":135,"target":47},{"source":134,"target":9},{"source":15,"target":0},{"source":15,"target":61},{"source":15,"target":136},{"source":15,"target":137},{"source":136,"target":17},{"source":136,"target":138},{"source":136,"target":15},{"source":136,"target":139},{"source":138,"target":17},{"source":137,"target":61},{"source":16,"target":0},{"source":16,"target":97},{"source":97,"target":4},{"source":97,"target":140},{"source":97,"target":16},{"source":97,"target":90},{"source":140,"target":4},{"source":17,"target":0},{"source":17,"target":15},{"source":17,"target":16},{"source":17,"target":3},{"source":17,"target":139},{"source":17,"target":141},{"source":17,"target":142},{"source":17,"target":143},{"source":17,"target":144},{"source":17,"target":145},{"source":17,"target":146},{"source":17,"target":147},{"source":17,"target":148},{"source":17,"target":149},{"source":17,"target":150},{"source":17,"target":151},{"source":17,"target":152},{"source":17,"target":153},{"source":139,"target":15},{"source":139,"target":154},{"source":139,"target":17},{"source":139,"target":136},{"source":154,"target":15},{"source":141,"target":39},{"source":141,"target":155},{"source":141,"target":17},{"source":155,"target":39},{"source":142,"target":39},{"source":142,"target":156},{"source":142,"target":17},{"source":156,"target":39},{"source":143,"target":47},{"source":143,"target":157},{"source":143,"target":17},{"source":157,"target":47},{"source":144,"target":47},{"source":144,"target":158},{"source":144,"target":17},{"source":158,"target":47},{"source":145,"target":47},{"source":145,"target":159},{"source":145,"target":17},{"source":159,"target":47},{"source":146,"target":43},{"source":146,"target":160},{"source":146,"target":17},{"source":160,"target":43},{"source":147,"target":48},{"source":147,"target":161},{"source":147,"target":17},{"source":161,"target":48},{"source":148,"target":49},{"source":148,"target":162},{"source":148,"target":17},{"source":162,"target":49},{"source":149,"target":46},{"source":149,"target":163},{"source":149,"target":17},{"source":163,"target":46},{"source":150,"target":46},{"source":150,"target":164},{"source":150,"target":17},{"source":164,"target":46},{"source":151,"target":15},{"source":152,"target":16},{"source":153,"target":3},{"source":18,"target":0},{"source":18,"target":15},{"source":18,"target":165},{"source":18,"target":166},{"source":165,"target":17},{"source":165,"target":167},{"source":165,"target":18},{"source":167,"target":17},{"source":166,"target":15},{"source":19,"target":0},{"source":19,"target":17},{"source":19,"target":168},{"source":168,"target":17},{"source":20,"target":0},{"source":20,"target":17},{"source":20,"target":169},{"source":169,"target":17},{"source":21,"target":0},{"source":21,"target":17},{"source":21,"target":170},{"source":21,"target":171},{"source":21,"target":172},{"source":21,"target":173},{"source":21,"target":174},{"source":21,"target":175},{"source":21,"target":176},{"source":21,"target":177},{"source":170,"target":178},{"source":170,"target":21},{"source":171,"target":179},{"source":171,"target":21},{"source":172,"target":180},{"source":172,"target":21},{"source":173,"target":55},{"source":173,"target":181},{"source":173,"target":21},{"source":181,"target":55},{"source":174,"target":182},{"source":174,"target":21},{"source":175,"target":183},{"source":175,"target":21},{"source":176,"target":17},{"source":176,"target":184},{"source":176,"target":21},{"source":184,"target":17},{"source":177,"target":17},{"source":22,"target":0},{"source":22,"target":17},{"source":22,"target":185},{"source":22,"target":186},{"source":185,"target":187},{"source":185,"target":22},{"source":186,"target":17},{"source":23,"target":0},{"source":23,"target":17},{"source":23,"target":188},{"source":188,"target":17},{"source":24,"target":0},{"source":24,"target":21},{"source":24,"target":189},{"source":189,"target":21},{"source":25,"target":0},{"source":25,"target":21},{"source":25,"target":190},{"source":25,"target":191},{"source":25,"target":192},{"source":190,"target":193},{"source":190,"target":25},{"source":191,"target":194},{"source":191,"target":25},{"source":192,"target":21},{"source":26,"target":0},{"source":26,"target":21},{"source":26,"target":195},{"source":195,"target":21},{"source":27,"target":0},{"source":27,"target":21},{"source":27,"target":196},{"source":27,"target":197},{"source":196,"target":46},{"source":196,"target":198},{"source":196,"target":27},{"source":198,"target":46},{"source":197,"target":21},{"source":28,"target":0},{"source":28,"target":27},{"source":28,"target":199},{"source":199,"target":27},{"source":29,"target":0},{"source":29,"target":28},{"source":29,"target":200},{"source":200,"target":28},{"source":30,"target":0},{"source":30,"target":27},{"source":30,"target":19},{"source":30,"target":201},{"source":30,"target":202},{"source":30,"target":203},{"source":30,"target":204},{"source":201,"target":20},{"source":201,"target":205},{"source":201,"target":30},{"source":205,"target":20},{"source":202,"target":20},{"source":202,"target":206},{"source":202,"target":30},{"source":206,"target":20},{"source":203,"target":27},{"source":204,"target":19},{"source":31,"target":0},{"source":31,"target":27},{"source":31,"target":20},{"source":31,"target":207},{"source":31,"target":208},{"source":207,"target":27},{"source":208,"target":20},{"source":32,"target":0},{"source":32,"target":28},{"source":32,"target":20},{"source":32,"target":209},{"source":32,"target":210},{"source":209,"target":28},{"source":210,"target":20},{"source":33,"target":0},{"source":33,"target":211},{"source":33,"target":212},{"source":33,"target":213},{"source":211,"target":214},{"source":211,"target":33},{"source":212,"target":215},{"source":212,"target":33},{"source":213,"target":34},{"source":213,"target":216},{"source":213,"target":33},{"source":216,"target":34},{"source":34,"target":0},{"source":34,"target":217},{"source":34,"target":218},{"source":34,"target":219},{"source":34,"target":220},{"source":217,"target":221},{"source":217,"target":34},{"source":218,"target":222},{"source":218,"target":34},{"source":219,"target":223},{"source":219,"target":34},{"source":220,"target":224},{"source":220,"target":34},{"source":35,"target":0},{"source":35,"target":16},{"source":35,"target":225},{"source":35,"target":226},{"source":35,"target":227},{"source":225,"target":228},{"source":225,"target":35},{"source":226,"target":36},{"source":226,"target":229},{"source":226,"target":35},{"source":229,"target":36},{"source":227,"target":16},{"source":36,"target":0},{"source":36,"target":17},{"source":36,"target":33},{"source":36,"target":230},{"source":36,"target":231},{"source":36,"target":232},{"source":230,"target":35},{"source":230,"target":233},{"source":230,"target":36},{"source":233,"target":35},{"source":231,"target":17},{"source":232,"target":33},{"source":37,"target":0},{"source":37,"target":36},{"source":37,"target":20},{"source":37,"target":234},{"source":37,"target":235},{"source":234,"target":36},{"source":235,"target":20},{"source":38,"target":0},{"source":38,"target":36},{"source":38,"target":19},{"source":38,"target":236},{"source":38,"target":237},{"source":236,"target":36},{"source":237,"target":19},{"source":39,"target":0},{"source":40,"target":0},{"source":40,"target":39},{"source":40,"target":238},{"source":40,"target":239},{"source":40,"target":240},{"source":40,"target":241},{"source":238,"target":242},{"source":238,"target":40},{"source":239,"target":243},{"source":239,"target":40},{"source":240,"target":244},{"source":240,"target":40},{"source":241,"target":39},{"source":41,"target":0},{"source":41,"target":39},{"source":41,"target":245},{"source":41,"target":246},{"source":245,"target":42},{"source":245,"target":247},{"source":245,"target":41},{"source":247,"target":42},{"source":246,"target":39},{"source":42,"target":0},{"source":42,"target":248},{"source":42,"target":249},{"source":42,"target":250},{"source":42,"target":251},{"source":42,"target":252},{"source":42,"target":253},{"source":42,"target":254},{"source":42,"target":255},{"source":42,"target":256},{"source":42,"target":257},{"source":42,"target":258},{"source":42,"target":259},{"source":42,"target":260},{"source":42,"target":261},{"source":42,"target":262},{"source":248,"target":42},{"source":249,"target":42},{"source":250,"target":42},{"source":251,"target":42},{"source":252,"target":42},{"source":253,"target":42},{"source":254,"target":42},{"source":255,"target":42},{"source":256,"target":42},{"source":257,"target":42},{"source":258,"target":42},{"source":259,"target":42},{"source":260,"target":42},{"source":261,"target":42},{"source":262,"target":42},{"source":43,"target":0},{"source":44,"target":0},{"source":44,"target":43},{"source":44,"target":263},{"source":44,"target":264},{"source":44,"target":265},{"source":44,"target":266},{"source":263,"target":267},{"source":263,"target":44},{"source":264,"target":268},{"source":264,"target":44},{"source":265,"target":45},{"source":265,"target":269},{"source":265,"target":44},{"source":269,"target":45},{"source":266,"target":43},{"source":45,"target":0},{"source":45,"target":270},{"source":45,"target":271},{"source":45,"target":272},{"source":270,"target":45},{"source":271,"target":45},{"source":272,"target":45},{"source":46,"target":0},{"source":46,"target":273},{"source":46,"target":274},{"source":273,"target":275},{"source":273,"target":46},{"source":274,"target":276},{"source":274,"target":46},{"source":47,"target":0},{"source":47,"target":277},{"source":47,"target":278},{"source":277,"target":279},{"source":277,"target":47},{"source":278,"target":280},{"source":278,"target":47},{"source":48,"target":0},{"source":48,"target":281},{"source":48,"target":282},{"source":48,"target":283},{"source":48,"target":284},{"source":281,"target":285},{"source":281,"target":48},{"source":282,"target":286},{"source":282,"target":48},{"source":283,"target":287},{"source":283,"target":48},{"source":284,"target":288},{"source":284,"target":48},{"source":49,"target":0},{"source":50,"target":0},{"source":50,"target":49},{"source":50,"target":289},{"source":50,"target":290},{"source":50,"target":291},{"source":289,"target":39},{"source":289,"target":292},{"source":289,"target":50},{"source":292,"target":39},{"source":290,"target":293},{"source":290,"target":50},{"source":291,"target":49},{"source":51,"target":0},{"source":51,"target":49},{"source":51,"target":294},{"source":51,"target":295},{"source":294,"target":48},{"source":294,"target":296},{"source":294,"target":51},{"source":296,"target":48},{"source":295,"target":49},{"source":52,"target":0},{"source":52,"target":49},{"source":52,"target":297},{"source":52,"target":298},{"source":52,"target":299},{"source":297,"target":49},{"source":297,"target":300},{"source":297,"target":52},{"source":300,"target":49},{"source":298,"target":49},{"source":298,"target":301},{"source":298,"target":52},{"source":301,"target":49},{"source":299,"target":49},{"source":53,"target":0},{"source":53,"target":49},{"source":53,"target":33},{"source":53,"target":302},{"source":53,"target":303},{"source":302,"target":49},{"source":303,"target":33},{"source":54,"target":0},{"source":54,"target":304},{"source":54,"target":305},{"source":54,"target":306},{"source":54,"target":307},{"source":54,"target":308},{"source":54,"target":309},{"source":54,"target":310},{"source":54,"target":311},{"source":54,"target":312},{"source":54,"target":313},{"source":54,"target":314},{"source":54,"target":315},{"source":304,"target":54},{"source":305,"target":54},{"source":306,"target":54},{"source":307,"target":54},{"source":308,"target":54},{"source":309,"target":54},{"source":310,"target":54},{"source":311,"target":54},{"source":312,"target":54},{"source":313,"target":54},{"source":314,"target":54},{"source":315,"target":54},{"source":55,"target":0},{"source":55,"target":316},{"source":55,"target":317},{"source":55,"target":318},{"source":55,"target":319},{"source":55,"target":320},{"source":55,"target":321},{"source":316,"target":55},{"source":317,"target":55},{"source":318,"target":55},{"source":319,"target":55},{"source":320,"target":55},{"source":321,"target":55},{"source":56,"target":0},{"source":56,"target":322},{"source":322,"target":61},{"source":322,"target":323},{"source":322,"target":56},{"source":322,"target":324},{"source":323,"target":61},{"source":57,"target":0},{"source":57,"target":56},{"source":57,"target":33},{"source":57,"target":325},{"source":57,"target":326},{"source":325,"target":56},{"source":326,"target":33},{"source":58,"target":0},{"source":58,"target":56},{"source":58,"target":327},{"source":58,"target":328},{"source":58,"target":329},{"source":58,"target":330},{"source":58,"target":331},{"source":58,"target":332},{"source":58,"target":333},{"source":58,"target":334},{"source":58,"target":335},{"source":327,"target":336},{"source":327,"target":58},{"source":328,"target":337},{"source":328,"target":58},{"source":329,"target":60},{"source":329,"target":338},{"source":329,"target":58},{"source":338,"target":60},{"source":330,"target":60},{"source":330,"target":339},{"source":330,"target":58},{"source":339,"target":60},{"source":331,"target":340},{"source":331,"target":58},{"source":332,"target":341},{"source":332,"target":58},{"source":333,"target":342},{"source":333,"target":58},{"source":334,"target":47},{"source":334,"target":343},{"source":334,"target":58},{"source":343,"target":47},{"source":335,"target":56},{"source":59,"target":0},{"source":59,"target":56},{"source":59,"target":344},{"source":59,"target":345},{"source":59,"target":346},{"source":344,"target":60},{"source":344,"target":347},{"source":344,"target":59},{"source":347,"target":60},{"source":345,"target":348},{"source":345,"target":59},{"source":346,"target":56},{"source":60,"target":0},{"source":60,"target":349},{"source":60,"target":350},{"source":60,"target":351},{"source":60,"target":352},{"source":349,"target":60},{"source":350,"target":60},{"source":351,"target":60},{"source":352,"target":60},{"source":61,"target":0},{"source":61,"target":324},{"source":61,"target":353},{"source":324,"target":56},{"source":324,"target":354},{"source":324,"target":61},{"source":324,"target":322},{"source":354,"target":56},{"source":353,"target":62},{"source":353,"target":355},{"source":353,"target":61},{"source":355,"target":62},{"source":62,"target":0},{"source":63,"target":0},{"source":63,"target":62},{"source":63,"target":33},{"source":63,"target":356},{"source":63,"target":357},{"source":356,"target":62},{"source":357,"target":33},{"source":64,"target":0},{"source":64,"target":62},{"source":64,"target":358},{"source":64,"target":359},{"source":64,"target":360},{"source":64,"target":361},{"source":64,"target":362},{"source":358,"target":363},{"source":358,"target":64},{"source":359,"target":364},{"source":359,"target":64},{"source":360,"target":47},{"source":360,"target":365},{"source":360,"target":64},{"source":365,"target":47},{"source":361,"target":47},{"source":361,"target":366},{"source":361,"target":64},{"source":366,"target":47},{"source":362,"target":62},{"source":65,"target":0},{"source":65,"target":62},{"source":65,"target":367},{"source":65,"target":368},{"source":367,"target":47},{"source":367,"target":369},{"source":367,"target":65},{"source":369,"target":47},{"source":368,"target":62},{"source":66,"target":0},{"source":66,"target":62},{"source":66,"target":370},{"source":66,"target":371},{"source":66,"target":372},{"source":66,"target":373},{"source":66,"target":374},{"source":66,"target":375},{"source":66,"target":376},{"source":66,"target":377},{"source":370,"target":378},{"source":370,"target":66},{"source":371,"target":379},{"source":371,"target":66},{"source":372,"target":380},{"source":372,"target":66},{"source":373,"target":60},{"source":373,"target":381},{"source":373,"target":66},{"source":381,"target":60},{"source":374,"target":60},{"source":374,"target":382},{"source":374,"target":66},{"source":382,"target":60},{"source":375,"target":383},{"source":375,"target":66},{"source":376,"target":384},{"source":376,"target":66},{"source":377,"target":62},{"source":67,"target":0},{"source":67,"target":62},{"source":67,"target":385},{"source":385,"target":62},{"source":68,"target":0},{"source":68,"target":56},{"source":68,"target":386},{"source":68,"target":387},{"source":68,"target":388},{"source":386,"target":46},{"source":386,"target":389},{"source":386,"target":68},{"source":389,"target":46},{"source":387,"target":47},{"source":387,"target":390},{"source":387,"target":68},{"source":390,"target":47},{"source":388,"target":56},{"source":69,"target":0},{"source":69,"target":62},{"source":69,"target":391},{"source":391,"target":62},{"source":70,"target":0}],"multigraph":true} |
false | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="GUIdancerComponentHierarchy" nsURI="GUIdancerComponentHierarchy"
nsPrefix="GUIdancerComponentHierarchy">
<eClassifiers xsi:type="ecore:EClass" name="placeholder274161">
<eOperations name="placeholder9827641"/>
<eOperations name="placeholder3785021"/>
<eOperations name="placeholder2132521"/>
<eOperations name="placeholder249181"/>
<eOperations name="Click"/>
<eOperations name="placeholder9687751"/>
<eOperations name="Drag"/>
<eOperations name="Drop"/>
<eOperations name="placeholder4000461"/>
<eOperations name="placeholder3073611"/>
<eOperations name="placeholder8790781"/>
<eOperations name="placeholder9513971"/>
<eOperations name="placeholder2575701"/>
<eOperations name="placeholder8260271"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="placeholder4306141">
<eOperations name="placeholder610711"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Application">
<eOperations name="Activate"/>
<eOperations name="placeholder8855421"/>
<eOperations name="placeholder7158641"/>
<eOperations name="placeholder393141"/>
<eOperations name="Pause"/>
<eOperations name="Restart"/>
<eOperations name="placeholder9509121"/>
<eOperations name="placeholder7988271"/>
<eOperations name="Wait"/>
<eOperations name="placeholder4578411"/>
<eOperations name="placeholder2160341"/>
<eOperations name="placeholder6597571"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="List">
<eOperations name="placeholder2364331"/>
<eOperations name="placeholder6691701"/>
<eOperations name="placeholder4001601"/>
<eOperations name="placeholder3622401"/>
<eOperations name="placeholder2589181"/>
<eOperations name="placeholder1878591"/>
<eOperations name="placeholder8664301"/>
<eOperations name="placeholder7967851"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Label"/>
<eClassifiers xsi:type="ecore:EClass" name="Table">
<eOperations name="placeholder1871811"/>
<eOperations name="placeholder549451"/>
<eOperations name="placeholder9615601"/>
<eOperations name="placeholder9234201"/>
<eOperations name="placeholder6227501"/>
<eOperations name="placeholder7509161"/>
<eOperations name="placeholder8856631"/>
<eOperations name="placeholder2458021"/>
<eOperations name="Move"/>
<eOperations name="placeholder2041691"/>
<eOperations name="placeholder733721"/>
<eOperations name="placeholder4268851"/>
<eOperations name="placeholder3747171"/>
<eOperations name="placeholder2358121"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Tree" eSuperTypes="#//placeholder274161">
<eOperations name="placeholder5955321"/>
<eOperations name="Move"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="placeholder9744111" eSuperTypes="#//Tree">
<eOperations name="placeholder6320611"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="placeholder8243111">
<eOperations name="placeholder5167041"/>
<eOperations name="placeholder6842961"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="placeholder3546831" eSuperTypes="#//Application">
<eOperations name="placeholder3742971"/>
<eOperations name="placeholder269961"/>
<eOperations name="placeholder5076451"/>
<eOperations name="placeholder1800561"/>
</eClassifiers>
</ecore:EPackage>
| github:ecore:/data/MagMar94/ParmorelExperimentResults/Experiments/Experimen-compare-preferences/ACMR/bestWeight15/0_CompleteGUIdancerComponentHierarchy.ecore | ecore | GUIdancerComponentHierarchy
placeholder274161
placeholder9827641
placeholder3785021
placeholder2132521
placeholder249181
Click
placeholder9687751
Drag
Drop
placeholder4000461
placeholder3073611
placeholder8790781
placeholder9513971
placeholder2575701
placeholder8260271
placeholder4306141
placeholder610711
Application
Activate
placeholder8855421
placeholder7158641
placeholder393141
Pause
Restart
placeholder9509121
placeholder7988271
Wait
placeholder4578411
placeholder2160341
placeholder6597571
List
placeholder2364331
placeholder6691701
placeholder4001601
placeholder3622401
placeholder2589181
placeholder1878591
placeholder8664301
placeholder7967851
Label
Table
placeholder1871811
placeholder549451
placeholder9615601
placeholder9234201
placeholder6227501
placeholder7509161
placeholder8856631
placeholder2458021
Move
placeholder2041691
placeholder733721
placeholder4268851
placeholder3747171
placeholder2358121
Tree
placeholder5955321
Move
placeholder9744111
placeholder6320611
placeholder8243111
placeholder5167041
placeholder6842961
placeholder3546831
placeholder3742971
placeholder269961
placeholder5076451
placeholder1800561 | null | {"directed":true,"nodes":[{"nsPrefix":"GUIdancerComponentHierarchy","nsURI":"GUIdancerComponentHierarchy","name":"GUIdancerComponentHierarchy","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"placeholder274161","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"placeholder4306141","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Application","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"List","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Label","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Table","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Tree","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"placeholder9744111","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"placeholder8243111","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"placeholder3546831","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder9827641","lowerBound":0,"id":11,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder3785021","lowerBound":0,"id":12,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder2132521","lowerBound":0,"id":13,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder249181","lowerBound":0,"id":14,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"Click","lowerBound":0,"id":15,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder9687751","lowerBound":0,"id":16,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"Drag","lowerBound":0,"id":17,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"Drop","lowerBound":0,"id":18,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder4000461","lowerBound":0,"id":19,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder3073611","lowerBound":0,"id":20,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder8790781","lowerBound":0,"id":21,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder9513971","lowerBound":0,"id":22,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder2575701","lowerBound":0,"id":23,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder8260271","lowerBound":0,"id":24,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder610711","lowerBound":0,"id":25,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"Activate","lowerBound":0,"id":26,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder8855421","lowerBound":0,"id":27,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder7158641","lowerBound":0,"id":28,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder393141","lowerBound":0,"id":29,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"Pause","lowerBound":0,"id":30,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"Restart","lowerBound":0,"id":31,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder9509121","lowerBound":0,"id":32,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder7988271","lowerBound":0,"id":33,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"Wait","lowerBound":0,"id":34,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder4578411","lowerBound":0,"id":35,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder2160341","lowerBound":0,"id":36,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder6597571","lowerBound":0,"id":37,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder2364331","lowerBound":0,"id":38,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder6691701","lowerBound":0,"id":39,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder4001601","lowerBound":0,"id":40,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder3622401","lowerBound":0,"id":41,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder2589181","lowerBound":0,"id":42,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder1878591","lowerBound":0,"id":43,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder8664301","lowerBound":0,"id":44,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder7967851","lowerBound":0,"id":45,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder1871811","lowerBound":0,"id":46,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder549451","lowerBound":0,"id":47,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder9615601","lowerBound":0,"id":48,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder9234201","lowerBound":0,"id":49,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder6227501","lowerBound":0,"id":50,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder7509161","lowerBound":0,"id":51,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder8856631","lowerBound":0,"id":52,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder2458021","lowerBound":0,"id":53,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"Move","lowerBound":0,"id":54,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder2041691","lowerBound":0,"id":55,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder733721","lowerBound":0,"id":56,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder4268851","lowerBound":0,"id":57,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder3747171","lowerBound":0,"id":58,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder2358121","lowerBound":0,"id":59,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder5955321","lowerBound":0,"id":60,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"Move","lowerBound":0,"id":61,"many":false,"required":false,"eClass":"EOperation"},{"id":62,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder6320611","lowerBound":0,"id":63,"many":false,"required":false,"eClass":"EOperation"},{"id":64,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder5167041","lowerBound":0,"id":65,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder6842961","lowerBound":0,"id":66,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder3742971","lowerBound":0,"id":67,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder269961","lowerBound":0,"id":68,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder5076451","lowerBound":0,"id":69,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"placeholder1800561","lowerBound":0,"id":70,"many":false,"required":false,"eClass":"EOperation"},{"id":71,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":0,"target":8},{"source":0,"target":9},{"source":0,"target":10},{"source":1,"target":0},{"source":1,"target":11},{"source":1,"target":12},{"source":1,"target":13},{"source":1,"target":14},{"source":1,"target":15},{"source":1,"target":16},{"source":1,"target":17},{"source":1,"target":18},{"source":1,"target":19},{"source":1,"target":20},{"source":1,"target":21},{"source":1,"target":22},{"source":1,"target":23},{"source":1,"target":24},{"source":11,"target":1},{"source":12,"target":1},{"source":13,"target":1},{"source":14,"target":1},{"source":15,"target":1},{"source":16,"target":1},{"source":17,"target":1},{"source":18,"target":1},{"source":19,"target":1},{"source":20,"target":1},{"source":21,"target":1},{"source":22,"target":1},{"source":23,"target":1},{"source":24,"target":1},{"source":2,"target":0},{"source":2,"target":25},{"source":25,"target":2},{"source":3,"target":0},{"source":3,"target":26},{"source":3,"target":27},{"source":3,"target":28},{"source":3,"target":29},{"source":3,"target":30},{"source":3,"target":31},{"source":3,"target":32},{"source":3,"target":33},{"source":3,"target":34},{"source":3,"target":35},{"source":3,"target":36},{"source":3,"target":37},{"source":26,"target":3},{"source":27,"target":3},{"source":28,"target":3},{"source":29,"target":3},{"source":30,"target":3},{"source":31,"target":3},{"source":32,"target":3},{"source":33,"target":3},{"source":34,"target":3},{"source":35,"target":3},{"source":36,"target":3},{"source":37,"target":3},{"source":4,"target":0},{"source":4,"target":38},{"source":4,"target":39},{"source":4,"target":40},{"source":4,"target":41},{"source":4,"target":42},{"source":4,"target":43},{"source":4,"target":44},{"source":4,"target":45},{"source":38,"target":4},{"source":39,"target":4},{"source":40,"target":4},{"source":41,"target":4},{"source":42,"target":4},{"source":43,"target":4},{"source":44,"target":4},{"source":45,"target":4},{"source":5,"target":0},{"source":6,"target":0},{"source":6,"target":46},{"source":6,"target":47},{"source":6,"target":48},{"source":6,"target":49},{"source":6,"target":50},{"source":6,"target":51},{"source":6,"target":52},{"source":6,"target":53},{"source":6,"target":54},{"source":6,"target":55},{"source":6,"target":56},{"source":6,"target":57},{"source":6,"target":58},{"source":6,"target":59},{"source":46,"target":6},{"source":47,"target":6},{"source":48,"target":6},{"source":49,"target":6},{"source":50,"target":6},{"source":51,"target":6},{"source":52,"target":6},{"source":53,"target":6},{"source":54,"target":6},{"source":55,"target":6},{"source":56,"target":6},{"source":57,"target":6},{"source":58,"target":6},{"source":59,"target":6},{"source":7,"target":0},{"source":7,"target":1},{"source":7,"target":60},{"source":7,"target":61},{"source":7,"target":62},{"source":60,"target":7},{"source":61,"target":7},{"source":62,"target":1},{"source":8,"target":0},{"source":8,"target":7},{"source":8,"target":63},{"source":8,"target":64},{"source":63,"target":8},{"source":64,"target":7},{"source":9,"target":0},{"source":9,"target":65},{"source":9,"target":66},{"source":65,"target":9},{"source":66,"target":9},{"source":10,"target":0},{"source":10,"target":3},{"source":10,"target":67},{"source":10,"target":68},{"source":10,"target":69},{"source":10,"target":70},{"source":10,"target":71},{"source":67,"target":10},{"source":68,"target":10},{"source":69,"target":10},{"source":70,"target":10},{"source":71,"target":3}],"multigraph":true} |
false | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="MR_DDSM" nsURI="www.dice.polimi.it" nsPrefix="HadoopMR">
<eClassifiers xsi:type="ecore:EClass" name="Maper">
<eOperations name="map"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="mapper" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="generate_intermediate_KeyVal"
upperBound="-1" eType="#//KeyValuePair" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="type" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
defaultValueLiteral="SlaveNode"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Reducer">
<eOperations name="reduce"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="type" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
defaultValueLiteral="SlaveNode"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="reducer" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="MapTester">
<eOperations name="testMapper"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="TestsMapper" lowerBound="1"
upperBound="-1" eType="#//Maper" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="type" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
defaultValueLiteral="SlaveNode"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ReducerTester">
<eOperations name="testReducer"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="TestsReducer" lowerBound="1"
upperBound="-1" eType="#//Reducer" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="type" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
defaultValueLiteral="SlaveNode"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="JobConf">
<eOperations name="SetMapperClass">
<eParameters name="mpClass" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eOperations>
<eOperations name="SetReducerClass"/>
<eOperations name="setJobName"/>
<eOperations name="setCombinerClass"/>
<eOperations name="setNumReduceTasks"/>
<eOperations name="setInputFormat"/>
<eOperations name="setOutputFormat"/>
<eOperations name="setOutputKeyClass"/>
<eOperations name="setOutputValueClass"/>
<eOperations name="setPartitionerClass"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="mapperClass" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="reducerClass" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="jobName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="combinerClass" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="numOfReduceTasks" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="inputFormat" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="outputFormat" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="outputKeyClass" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="outputValueClass" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="partitionerClass" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="usedbyDbConfiguration"
eType="#//DBConfiguration" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="usedByDboutputFormat" eType="#//DBOutputFormat"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="usedByDbInputformat" eType="#//DBInputFormat"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="type" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
defaultValueLiteral="MasterNode"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="HMR_DTSM">
<eOperations name="SubmitJob"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="set" lowerBound="1" eType="#//JobConf"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="Specifies_Input_Output_paths"
upperBound="2" eType="#//Path" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="SetDBOutputFormat" eType="#//DBOutputFormat"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="adds_file" upperBound="-1"
eType="#//DistributedCache" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="SetDBConfig" eType="#//DBConfiguration"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="SetInputFormat" eType="#//FileInputFormat"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="SetOutputFormat" eType="#//FileOutputFormat"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="setPartitionerClass" eType="#//Partitioner"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="setMapperClass" lowerBound="1"
eType="#//Maper" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="setReducerClass" eType="#//Reducer"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="SubmitJob" lowerBound="1"
eType="#//JobClient" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="IsJobCompleted" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="setsJobConf" lowerBound="1"
eType="#//JobConf" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="SetDBInputFormat" eType="#//DBInputFormat"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Path">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="type" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
defaultValueLiteral="DataNode"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="path" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="DBOutputFormat">
<eOperations name="setOutput"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="type" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
defaultValueLiteral="DatabaseNode"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="tableName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="fieldNames" upperBound="-1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="fieldCount" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="DistributedCache">
<eOperations name="addFileToClassPath"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="type" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
defaultValueLiteral="DataNode"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="DBConfiguration">
<eOperations name="ConfigureDB"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="type" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
defaultValueLiteral="DatabaseNode"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="JDBC_DriverClass" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="UserName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="DB_dbUrl" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="password" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="FileInputFormat">
<eOperations name="setInputPaths"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="MinSplitSize" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//ELong"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="MaxSplitSize" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//ELong"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="FiltersInputFilesBy" eType="#//InputPathFilter"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isSplitable" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="uses_RecordReader" lowerBound="1"
upperBound="-1" eType="#//RecordReader" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="setInputPaths" eType="#//Path"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="type" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
defaultValueLiteral="DataNode"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="FileOutputFormat">
<eOperations name="SetOutputPath"/>
<eOperations name="setOutputName"/>
<eOperations name="setOutputCompressorClass"/>
<eOperations name="setCompressOutput"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="type" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
defaultValueLiteral="DataNode"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="IsOutputCompressed" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="Compression_Codec" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="OutPath" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="Output_Name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="setOutputPath" eType="#//Path"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="JobClient">
<eOperations name="runJob"/>
<eOperations name="close"/>
<eOperations name="displayTasks"/>
<eOperations name="getAllJobs"/>
<eOperations name="getChildQueues"/>
<eOperations name="getCleanupTaskReports"/>
<eOperations name="getClusterHandle"/>
<eOperations name="getClusterStatus"/>
<eOperations name="getCounter"/>
<eOperations name="getDefaultMaps"/>
<eOperations name="getDefaultReduces"/>
<eOperations name="getFs"/>
<eOperations name="getJob"/>
<eOperations name="getJobsFromQueue"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="MapTaskReport" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="ReduceTaskReport" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="JobID" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="runningJobs" upperBound="-1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="jobProgress" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="jobQueue" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="type" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
defaultValueLiteral="MasterNode"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Partitioner">
<eOperations name="getPartition"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="type" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
defaultValueLiteral="SlaveNode"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="partitioneNumber" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="assigne_IntermediateKeyValTo"
eType="#//Reducer" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="uses_intermediateMapKeyVal"
eType="#//KeyValuePair" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="TextOutputFormat" eSuperTypes="#//FileOutputFormat"/>
<eClassifiers xsi:type="ecore:EClass" name="equenceFileOutputFormat" eSuperTypes="#//FileOutputFormat"/>
<eClassifiers xsi:type="ecore:EClass" name="MapFileOutputFormat" eSuperTypes="#//FileOutputFormat"/>
<eClassifiers xsi:type="ecore:EClass" name="InputPathFilter">
<eOperations name="setConfig"/>
<eOperations name="accept"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="type" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
defaultValueLiteral="DataNode"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="InputSplit">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="type" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
defaultValueLiteral="DataNode"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="length" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//ELong"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="location" upperBound="-1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="RecordReader">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="type" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
defaultValueLiteral="SlaveNode"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="Progress" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFloat"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="pos" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//ELong"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="generates_KeyValPair" lowerBound="1"
upperBound="-1" eType="#//KeyValuePair" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="consumesInputSplit" lowerBound="1"
eType="#//InputSplit" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="FixedLengthInputFormat" eSuperTypes="#//FileInputFormat"/>
<eClassifiers xsi:type="ecore:EClass" name="KeyValueTextInputFormat" eSuperTypes="#//FileInputFormat"/>
<eClassifiers xsi:type="ecore:EClass" name="MultiFileInputFormat" eSuperTypes="#//FileInputFormat"/>
<eClassifiers xsi:type="ecore:EClass" name="NLineInputFormat" eSuperTypes="#//FileInputFormat"/>
<eClassifiers xsi:type="ecore:EClass" name="SequenceFileInputFormat" eSuperTypes="#//FileInputFormat"/>
<eClassifiers xsi:type="ecore:EClass" name="TextInputFormat" eSuperTypes="#//FileInputFormat"/>
<eClassifiers xsi:type="ecore:EClass" name="KeyValuePair">
<eStructuralFeatures xsi:type="ecore:EReference" name="assignedToMapper" lowerBound="1"
eType="#//Maper" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="type" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
defaultValueLiteral="SlaveNode"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="key" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="DBInputFormat">
<eOperations name="setInput"/>
<eOperations name="closeConnection"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="tableName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="conditions" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="Orderby" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="fieldNames" lowerBound="1"
upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="connection" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="dbProductName" eType="#//DbProductName"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="inputQuery" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="type" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
defaultValueLiteral="DatabaseNode"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="DbProductName">
<eLiterals name="ORACLE"/>
<eLiterals name="MYSQL" value="1"/>
<eLiterals name="DEFAULT" value="2"/>
</eClassifiers>
</ecore:EPackage>
| github:ecore:/data/stajfar/DICE/DiceModelingProject/model/DTSM-HMR/HMR_DTSM.ecore | ecore | MR_DDSM
Maper
map
mapper
generate_intermediate_KeyVal
type
SlaveNode
Reducer
reduce
type
SlaveNode
reducer
MapTester
testMapper
TestsMapper
type
SlaveNode
ReducerTester
testReducer
TestsReducer
type
SlaveNode
JobConf
SetMapperClass
mpClass
SetReducerClass
setJobName
setCombinerClass
setNumReduceTasks
setInputFormat
setOutputFormat
setOutputKeyClass
setOutputValueClass
setPartitionerClass
mapperClass
reducerClass
jobName
combinerClass
numOfReduceTasks
inputFormat
outputFormat
outputKeyClass
outputValueClass
partitionerClass
usedbyDbConfiguration
usedByDboutputFormat
usedByDbInputformat
type
MasterNode
HMR_DTSM
SubmitJob
set
Specifies_Input_Output_paths
SetDBOutputFormat
adds_file
SetDBConfig
SetInputFormat
SetOutputFormat
setPartitionerClass
setMapperClass
setReducerClass
SubmitJob
IsJobCompleted
setsJobConf
SetDBInputFormat
Path
type
DataNode
path
DBOutputFormat
setOutput
type
DatabaseNode
tableName
fieldNames
fieldCount
DistributedCache
addFileToClassPath
type
DataNode
DBConfiguration
ConfigureDB
type
DatabaseNode
JDBC_DriverClass
UserName
DB_dbUrl
password
FileInputFormat
setInputPaths
MinSplitSize
MaxSplitSize
FiltersInputFilesBy
isSplitable
uses_RecordReader
setInputPaths
type
DataNode
FileOutputFormat
SetOutputPath
setOutputName
setOutputCompressorClass
setCompressOutput
type
DataNode
IsOutputCompressed
Compression_Codec
OutPath
Output_Name
setOutputPath
JobClient
runJob
close
displayTasks
getAllJobs
getChildQueues
getCleanupTaskReports
getClusterHandle
getClusterStatus
getCounter
getDefaultMaps
getDefaultReduces
getFs
getJob
getJobsFromQueue
MapTaskReport
ReduceTaskReport
JobID
runningJobs
jobProgress
jobQueue
type
MasterNode
Partitioner
getPartition
type
SlaveNode
partitioneNumber
assigne_IntermediateKeyValTo
uses_intermediateMapKeyVal
TextOutputFormat
equenceFileOutputFormat
MapFileOutputFormat
InputPathFilter
setConfig
accept
type
DataNode
InputSplit
type
DataNode
length
location
RecordReader
type
SlaveNode
Progress
pos
generates_KeyValPair
consumesInputSplit
FixedLengthInputFormat
KeyValueTextInputFormat
MultiFileInputFormat
NLineInputFormat
SequenceFileInputFormat
TextInputFormat
KeyValuePair
assignedToMapper
type
SlaveNode
key
value
DBInputFormat
setInput
closeConnection
tableName
conditions
Orderby
fieldNames
connection
dbProductName
inputQuery
type
DatabaseNode
DbProductName
ORACLE
ORACLE
MYSQL
MYSQL
DEFAULT
DEFAULT | null | {"directed":true,"nodes":[{"nsPrefix":"HadoopMR","nsURI":"www.dice.polimi.it","name":"MR_DDSM","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Maper","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Reducer","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MapTester","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ReducerTester","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"JobConf","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"HMR_DTSM","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Path","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DBOutputFormat","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DistributedCache","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DBConfiguration","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FileInputFormat","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FileOutputFormat","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"JobClient","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Partitioner","instanceClass":null,"abstract":false,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TextOutputFormat","instanceClass":null,"abstract":false,"id":15,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"equenceFileOutputFormat","instanceClass":null,"abstract":false,"id":16,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MapFileOutputFormat","instanceClass":null,"abstract":false,"id":17,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InputPathFilter","instanceClass":null,"abstract":false,"id":18,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InputSplit","instanceClass":null,"abstract":false,"id":19,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RecordReader","instanceClass":null,"abstract":false,"id":20,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FixedLengthInputFormat","instanceClass":null,"abstract":false,"id":21,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"KeyValueTextInputFormat","instanceClass":null,"abstract":false,"id":22,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MultiFileInputFormat","instanceClass":null,"abstract":false,"id":23,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NLineInputFormat","instanceClass":null,"abstract":false,"id":24,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SequenceFileInputFormat","instanceClass":null,"abstract":false,"id":25,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TextInputFormat","instanceClass":null,"abstract":false,"id":26,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"KeyValuePair","instanceClass":null,"abstract":false,"id":27,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DBInputFormat","instanceClass":null,"abstract":false,"id":28,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"DbProductName","instanceClass":null,"id":29,"serializable":true,"eClass":"EEnum"},{"ordered":true,"upperBound":1,"unique":true,"name":"map","lowerBound":0,"id":30,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"mapper","changeable":true,"lowerBound":0,"iD":false,"id":31,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"generate_intermediate_KeyVal","changeable":true,"resolveProxies":true,"lowerBound":0,"id":32,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":"SlaveNode","volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"SlaveNode","unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"lowerBound":0,"iD":false,"id":33,"derived":false},{"id":34,"eClass":"EGenericType"},{"id":35,"eClass":"EGenericType"},{"id":36,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"reduce","lowerBound":0,"id":37,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"defaultValue":"SlaveNode","volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"SlaveNode","unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"lowerBound":0,"iD":false,"id":38,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"reducer","changeable":true,"lowerBound":0,"iD":false,"id":39,"derived":false},{"id":40,"eClass":"EGenericType"},{"id":41,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"testMapper","lowerBound":0,"id":42,"many":false,"required":false,"eClass":"EOperation"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"TestsMapper","changeable":true,"resolveProxies":true,"lowerBound":1,"id":43,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":"SlaveNode","volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"SlaveNode","unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"lowerBound":0,"iD":false,"id":44,"derived":false},{"id":45,"eClass":"EGenericType"},{"id":46,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"testReducer","lowerBound":0,"id":47,"many":false,"required":false,"eClass":"EOperation"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"TestsReducer","changeable":true,"resolveProxies":true,"lowerBound":1,"id":48,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":"SlaveNode","volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"SlaveNode","unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"lowerBound":0,"iD":false,"id":49,"derived":false},{"id":50,"eClass":"EGenericType"},{"id":51,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"SetMapperClass","lowerBound":0,"id":52,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"SetReducerClass","lowerBound":0,"id":53,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"setJobName","lowerBound":0,"id":54,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"setCombinerClass","lowerBound":0,"id":55,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"setNumReduceTasks","lowerBound":0,"id":56,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"setInputFormat","lowerBound":0,"id":57,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"setOutputFormat","lowerBound":0,"id":58,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"setOutputKeyClass","lowerBound":0,"id":59,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"setOutputValueClass","lowerBound":0,"id":60,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"setPartitionerClass","lowerBound":0,"id":61,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"mapperClass","changeable":true,"lowerBound":0,"iD":false,"id":62,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"reducerClass","changeable":true,"lowerBound":0,"iD":false,"id":63,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"jobName","changeable":true,"lowerBound":0,"iD":false,"id":64,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"combinerClass","changeable":true,"lowerBound":0,"iD":false,"id":65,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"numOfReduceTasks","changeable":true,"lowerBound":0,"iD":false,"id":66,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"inputFormat","changeable":true,"lowerBound":0,"iD":false,"id":67,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"outputFormat","changeable":true,"lowerBound":0,"iD":false,"id":68,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"outputKeyClass","changeable":true,"lowerBound":0,"iD":false,"id":69,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"outputValueClass","changeable":true,"lowerBound":0,"iD":false,"id":70,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"partitionerClass","changeable":true,"lowerBound":0,"iD":false,"id":71,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"usedbyDbConfiguration","changeable":true,"resolveProxies":true,"lowerBound":0,"id":72,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"usedByDboutputFormat","changeable":true,"resolveProxies":true,"lowerBound":0,"id":73,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"usedByDbInputformat","changeable":true,"resolveProxies":true,"lowerBound":0,"id":74,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":"MasterNode","volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"MasterNode","unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"lowerBound":1,"iD":false,"id":75,"derived":false},{"ordered":true,"upperBound":1,"unique":true,"name":"mpClass","lowerBound":0,"id":76,"many":false,"required":false,"eClass":"EParameter"},{"id":77,"eClass":"EGenericType"},{"id":78,"eClass":"EGenericType"},{"id":79,"eClass":"EGenericType"},{"id":80,"eClass":"EGenericType"},{"id":81,"eClass":"EGenericType"},{"id":82,"eClass":"EGenericType"},{"id":83,"eClass":"EGenericType"},{"id":84,"eClass":"EGenericType"},{"id":85,"eClass":"EGenericType"},{"id":86,"eClass":"EGenericType"},{"id":87,"eClass":"EGenericType"},{"id":88,"eClass":"EGenericType"},{"id":89,"eClass":"EGenericType"},{"id":90,"eClass":"EGenericType"},{"id":91,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"SubmitJob","lowerBound":0,"id":92,"many":false,"required":false,"eClass":"EOperation"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"set","changeable":true,"resolveProxies":true,"lowerBound":1,"id":93,"derived":false},{"container":false,"ordered":true,"upperBound":2,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"Specifies_Input_Output_paths","changeable":true,"resolveProxies":true,"lowerBound":0,"id":94,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"SetDBOutputFormat","changeable":true,"resolveProxies":true,"lowerBound":0,"id":95,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"adds_file","changeable":true,"resolveProxies":true,"lowerBound":0,"id":96,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"SetDBConfig","changeable":true,"resolveProxies":true,"lowerBound":0,"id":97,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"SetInputFormat","changeable":true,"resolveProxies":true,"lowerBound":0,"id":98,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"SetOutputFormat","changeable":true,"resolveProxies":true,"lowerBound":0,"id":99,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"setPartitionerClass","changeable":true,"resolveProxies":true,"lowerBound":0,"id":100,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"setMapperClass","changeable":true,"resolveProxies":true,"lowerBound":1,"id":101,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"setReducerClass","changeable":true,"resolveProxies":true,"lowerBound":0,"id":102,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"SubmitJob","changeable":true,"resolveProxies":true,"lowerBound":1,"id":103,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"IsJobCompleted","changeable":true,"lowerBound":0,"iD":false,"id":104,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"setsJobConf","changeable":true,"resolveProxies":true,"lowerBound":1,"id":105,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"SetDBInputFormat","changeable":true,"resolveProxies":true,"lowerBound":0,"id":106,"derived":false},{"id":107,"eClass":"EGenericType"},{"id":108,"eClass":"EGenericType"},{"id":109,"eClass":"EGenericType"},{"id":110,"eClass":"EGenericType"},{"id":111,"eClass":"EGenericType"},{"id":112,"eClass":"EGenericType"},{"id":113,"eClass":"EGenericType"},{"id":114,"eClass":"EGenericType"},{"id":115,"eClass":"EGenericType"},{"id":116,"eClass":"EGenericType"},{"id":117,"eClass":"EGenericType"},{"id":118,"eClass":"EGenericType"},{"id":119,"eClass":"EGenericType"},{"id":120,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":"DataNode","volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"DataNode","unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"lowerBound":0,"iD":false,"id":121,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"path","changeable":true,"lowerBound":0,"iD":false,"id":122,"derived":false},{"id":123,"eClass":"EGenericType"},{"id":124,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"setOutput","lowerBound":0,"id":125,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"defaultValue":"DatabaseNode","volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"DatabaseNode","unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"lowerBound":0,"iD":false,"id":126,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"tableName","changeable":true,"lowerBound":0,"iD":false,"id":127,"derived":false},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"fieldNames","changeable":true,"lowerBound":0,"iD":false,"id":128,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"fieldCount","changeable":true,"lowerBound":0,"iD":false,"id":129,"derived":false},{"id":130,"eClass":"EGenericType"},{"id":131,"eClass":"EGenericType"},{"id":132,"eClass":"EGenericType"},{"id":133,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"addFileToClassPath","lowerBound":0,"id":134,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"defaultValue":"DataNode","volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"DataNode","unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"lowerBound":0,"iD":false,"id":135,"derived":false},{"id":136,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"ConfigureDB","lowerBound":0,"id":137,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"defaultValue":"DatabaseNode","volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"DatabaseNode","unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"lowerBound":0,"iD":false,"id":138,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"JDBC_DriverClass","changeable":true,"lowerBound":0,"iD":false,"id":139,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"UserName","changeable":true,"lowerBound":0,"iD":false,"id":140,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"DB_dbUrl","changeable":true,"lowerBound":0,"iD":false,"id":141,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"password","changeable":true,"lowerBound":0,"iD":false,"id":142,"derived":false},{"id":143,"eClass":"EGenericType"},{"id":144,"eClass":"EGenericType"},{"id":145,"eClass":"EGenericType"},{"id":146,"eClass":"EGenericType"},{"id":147,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"setInputPaths","lowerBound":0,"id":148,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"MinSplitSize","changeable":true,"lowerBound":0,"iD":false,"id":149,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"MaxSplitSize","changeable":true,"lowerBound":0,"iD":false,"id":150,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"FiltersInputFilesBy","changeable":true,"resolveProxies":true,"lowerBound":0,"id":151,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isSplitable","changeable":true,"lowerBound":0,"iD":false,"id":152,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"uses_RecordReader","changeable":true,"resolveProxies":true,"lowerBound":1,"id":153,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"setInputPaths","changeable":true,"resolveProxies":true,"lowerBound":0,"id":154,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":"DataNode","volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"DataNode","unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"lowerBound":0,"iD":false,"id":155,"derived":false},{"id":156,"eClass":"EGenericType"},{"id":157,"eClass":"EGenericType"},{"id":158,"eClass":"EGenericType"},{"id":159,"eClass":"EGenericType"},{"id":160,"eClass":"EGenericType"},{"id":161,"eClass":"EGenericType"},{"id":162,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"SetOutputPath","lowerBound":0,"id":163,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"setOutputName","lowerBound":0,"id":164,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"setOutputCompressorClass","lowerBound":0,"id":165,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"setCompressOutput","lowerBound":0,"id":166,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"defaultValue":"DataNode","volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"DataNode","unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"lowerBound":0,"iD":false,"id":167,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"IsOutputCompressed","changeable":true,"lowerBound":0,"iD":false,"id":168,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"Compression_Codec","changeable":true,"lowerBound":0,"iD":false,"id":169,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"OutPath","changeable":true,"lowerBound":0,"iD":false,"id":170,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"Output_Name","changeable":true,"lowerBound":0,"iD":false,"id":171,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"setOutputPath","changeable":true,"resolveProxies":true,"lowerBound":0,"id":172,"derived":false},{"id":173,"eClass":"EGenericType"},{"id":174,"eClass":"EGenericType"},{"id":175,"eClass":"EGenericType"},{"id":176,"eClass":"EGenericType"},{"id":177,"eClass":"EGenericType"},{"id":178,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"runJob","lowerBound":0,"id":179,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"close","lowerBound":0,"id":180,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"displayTasks","lowerBound":0,"id":181,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getAllJobs","lowerBound":0,"id":182,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getChildQueues","lowerBound":0,"id":183,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getCleanupTaskReports","lowerBound":0,"id":184,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getClusterHandle","lowerBound":0,"id":185,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getClusterStatus","lowerBound":0,"id":186,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getCounter","lowerBound":0,"id":187,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getDefaultMaps","lowerBound":0,"id":188,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getDefaultReduces","lowerBound":0,"id":189,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getFs","lowerBound":0,"id":190,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getJob","lowerBound":0,"id":191,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getJobsFromQueue","lowerBound":0,"id":192,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"MapTaskReport","changeable":true,"lowerBound":0,"iD":false,"id":193,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"ReduceTaskReport","changeable":true,"lowerBound":0,"iD":false,"id":194,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"JobID","changeable":true,"lowerBound":0,"iD":false,"id":195,"derived":false},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"runningJobs","changeable":true,"lowerBound":0,"iD":false,"id":196,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"jobProgress","changeable":true,"lowerBound":0,"iD":false,"id":197,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"jobQueue","changeable":true,"lowerBound":0,"iD":false,"id":198,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":"MasterNode","volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"MasterNode","unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"lowerBound":0,"iD":false,"id":199,"derived":false},{"id":200,"eClass":"EGenericType"},{"id":201,"eClass":"EGenericType"},{"id":202,"eClass":"EGenericType"},{"id":203,"eClass":"EGenericType"},{"id":204,"eClass":"EGenericType"},{"id":205,"eClass":"EGenericType"},{"id":206,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"getPartition","lowerBound":0,"id":207,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"defaultValue":"SlaveNode","volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"SlaveNode","unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"lowerBound":0,"iD":false,"id":208,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"partitioneNumber","changeable":true,"lowerBound":0,"iD":false,"id":209,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"assigne_IntermediateKeyValTo","changeable":true,"resolveProxies":true,"lowerBound":0,"id":210,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"uses_intermediateMapKeyVal","changeable":true,"resolveProxies":true,"lowerBound":0,"id":211,"derived":false},{"id":212,"eClass":"EGenericType"},{"id":213,"eClass":"EGenericType"},{"id":214,"eClass":"EGenericType"},{"id":215,"eClass":"EGenericType"},{"id":216,"eClass":"EGenericType"},{"id":217,"eClass":"EGenericType"},{"id":218,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"setConfig","lowerBound":0,"id":219,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"accept","lowerBound":0,"id":220,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"defaultValue":"DataNode","volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"DataNode","unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"lowerBound":0,"iD":false,"id":221,"derived":false},{"id":222,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":"DataNode","volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"DataNode","unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"lowerBound":0,"iD":false,"id":223,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"length","changeable":true,"lowerBound":0,"iD":false,"id":224,"derived":false},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"location","changeable":true,"lowerBound":0,"iD":false,"id":225,"derived":false},{"id":226,"eClass":"EGenericType"},{"id":227,"eClass":"EGenericType"},{"id":228,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":"SlaveNode","volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"SlaveNode","unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"lowerBound":0,"iD":false,"id":229,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"Progress","changeable":true,"lowerBound":0,"iD":false,"id":230,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"pos","changeable":true,"lowerBound":0,"iD":false,"id":231,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"generates_KeyValPair","changeable":true,"resolveProxies":true,"lowerBound":1,"id":232,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"consumesInputSplit","changeable":true,"resolveProxies":true,"lowerBound":1,"id":233,"derived":false},{"id":234,"eClass":"EGenericType"},{"id":235,"eClass":"EGenericType"},{"id":236,"eClass":"EGenericType"},{"id":237,"eClass":"EGenericType"},{"id":238,"eClass":"EGenericType"},{"id":239,"eClass":"EGenericType"},{"id":240,"eClass":"EGenericType"},{"id":241,"eClass":"EGenericType"},{"id":242,"eClass":"EGenericType"},{"id":243,"eClass":"EGenericType"},{"id":244,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"assignedToMapper","changeable":true,"resolveProxies":true,"lowerBound":1,"id":245,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":"SlaveNode","volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"SlaveNode","unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"lowerBound":0,"iD":false,"id":246,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"key","changeable":true,"lowerBound":0,"iD":false,"id":247,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":0,"iD":false,"id":248,"derived":false},{"id":249,"eClass":"EGenericType"},{"id":250,"eClass":"EGenericType"},{"id":251,"eClass":"EGenericType"},{"id":252,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"setInput","lowerBound":0,"id":253,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"closeConnection","lowerBound":0,"id":254,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"tableName","changeable":true,"lowerBound":0,"iD":false,"id":255,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"conditions","changeable":true,"lowerBound":0,"iD":false,"id":256,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"Orderby","changeable":true,"lowerBound":0,"iD":false,"id":257,"derived":false},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"fieldNames","changeable":true,"lowerBound":1,"iD":false,"id":258,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"connection","changeable":true,"lowerBound":0,"iD":false,"id":259,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"dbProductName","changeable":true,"lowerBound":0,"iD":false,"id":260,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"inputQuery","changeable":true,"lowerBound":0,"iD":false,"id":261,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":"DatabaseNode","volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"DatabaseNode","unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"lowerBound":0,"iD":false,"id":262,"derived":false},{"id":263,"eClass":"EGenericType"},{"id":264,"eClass":"EGenericType"},{"id":265,"eClass":"EGenericType"},{"id":266,"eClass":"EGenericType"},{"id":267,"eClass":"EGenericType"},{"id":268,"eClass":"EGenericType"},{"id":269,"eClass":"EGenericType"},{"id":270,"eClass":"EGenericType"},{"name":"ORACLE","id":271,"value":0,"literal":"ORACLE","eClass":"EEnumLiteral"},{"name":"MYSQL","id":272,"value":1,"literal":"MYSQL","eClass":"EEnumLiteral"},{"name":"DEFAULT","id":273,"value":2,"literal":"DEFAULT","eClass":"EEnumLiteral"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":0,"target":8},{"source":0,"target":9},{"source":0,"target":10},{"source":0,"target":11},{"source":0,"target":12},{"source":0,"target":13},{"source":0,"target":14},{"source":0,"target":15},{"source":0,"target":16},{"source":0,"target":17},{"source":0,"target":18},{"source":0,"target":19},{"source":0,"target":20},{"source":0,"target":21},{"source":0,"target":22},{"source":0,"target":23},{"source":0,"target":24},{"source":0,"target":25},{"source":0,"target":26},{"source":0,"target":27},{"source":0,"target":28},{"source":0,"target":29},{"source":1,"target":0},{"source":1,"target":30},{"source":1,"target":31},{"source":1,"target":32},{"source":1,"target":33},{"source":30,"target":1},{"source":31,"target":34},{"source":31,"target":1},{"source":32,"target":27},{"source":32,"target":35},{"source":32,"target":1},{"source":35,"target":27},{"source":33,"target":36},{"source":33,"target":1},{"source":2,"target":0},{"source":2,"target":37},{"source":2,"target":38},{"source":2,"target":39},{"source":37,"target":2},{"source":38,"target":40},{"source":38,"target":2},{"source":39,"target":41},{"source":39,"target":2},{"source":3,"target":0},{"source":3,"target":42},{"source":3,"target":43},{"source":3,"target":44},{"source":42,"target":3},{"source":43,"target":1},{"source":43,"target":45},{"source":43,"target":3},{"source":45,"target":1},{"source":44,"target":46},{"source":44,"target":3},{"source":4,"target":0},{"source":4,"target":47},{"source":4,"target":48},{"source":4,"target":49},{"source":47,"target":4},{"source":48,"target":2},{"source":48,"target":50},{"source":48,"target":4},{"source":50,"target":2},{"source":49,"target":51},{"source":49,"target":4},{"source":5,"target":0},{"source":5,"target":52},{"source":5,"target":53},{"source":5,"target":54},{"source":5,"target":55},{"source":5,"target":56},{"source":5,"target":57},{"source":5,"target":58},{"source":5,"target":59},{"source":5,"target":60},{"source":5,"target":61},{"source":5,"target":62},{"source":5,"target":63},{"source":5,"target":64},{"source":5,"target":65},{"source":5,"target":66},{"source":5,"target":67},{"source":5,"target":68},{"source":5,"target":69},{"source":5,"target":70},{"source":5,"target":71},{"source":5,"target":72},{"source":5,"target":73},{"source":5,"target":74},{"source":5,"target":75},{"source":52,"target":5},{"source":52,"target":76},{"source":76,"target":77},{"source":76,"target":52},{"source":53,"target":5},{"source":54,"target":5},{"source":55,"target":5},{"source":56,"target":5},{"source":57,"target":5},{"source":58,"target":5},{"source":59,"target":5},{"source":60,"target":5},{"source":61,"target":5},{"source":62,"target":78},{"source":62,"target":5},{"source":63,"target":79},{"source":63,"target":5},{"source":64,"target":80},{"source":64,"target":5},{"source":65,"target":81},{"source":65,"target":5},{"source":66,"target":82},{"source":66,"target":5},{"source":67,"target":83},{"source":67,"target":5},{"source":68,"target":84},{"source":68,"target":5},{"source":69,"target":85},{"source":69,"target":5},{"source":70,"target":86},{"source":70,"target":5},{"source":71,"target":87},{"source":71,"target":5},{"source":72,"target":10},{"source":72,"target":88},{"source":72,"target":5},{"source":88,"target":10},{"source":73,"target":8},{"source":73,"target":89},{"source":73,"target":5},{"source":89,"target":8},{"source":74,"target":28},{"source":74,"target":90},{"source":74,"target":5},{"source":90,"target":28},{"source":75,"target":91},{"source":75,"target":5},{"source":6,"target":0},{"source":6,"target":92},{"source":6,"target":93},{"source":6,"target":94},{"source":6,"target":95},{"source":6,"target":96},{"source":6,"target":97},{"source":6,"target":98},{"source":6,"target":99},{"source":6,"target":100},{"source":6,"target":101},{"source":6,"target":102},{"source":6,"target":103},{"source":6,"target":104},{"source":6,"target":105},{"source":6,"target":106},{"source":92,"target":6},{"source":93,"target":5},{"source":93,"target":107},{"source":93,"target":6},{"source":107,"target":5},{"source":94,"target":7},{"source":94,"target":108},{"source":94,"target":6},{"source":108,"target":7},{"source":95,"target":8},{"source":95,"target":109},{"source":95,"target":6},{"source":109,"target":8},{"source":96,"target":9},{"source":96,"target":110},{"source":96,"target":6},{"source":110,"target":9},{"source":97,"target":10},{"source":97,"target":111},{"source":97,"target":6},{"source":111,"target":10},{"source":98,"target":11},{"source":98,"target":112},{"source":98,"target":6},{"source":112,"target":11},{"source":99,"target":12},{"source":99,"target":113},{"source":99,"target":6},{"source":113,"target":12},{"source":100,"target":14},{"source":100,"target":114},{"source":100,"target":6},{"source":114,"target":14},{"source":101,"target":1},{"source":101,"target":115},{"source":101,"target":6},{"source":115,"target":1},{"source":102,"target":2},{"source":102,"target":116},{"source":102,"target":6},{"source":116,"target":2},{"source":103,"target":13},{"source":103,"target":117},{"source":103,"target":6},{"source":117,"target":13},{"source":104,"target":118},{"source":104,"target":6},{"source":105,"target":5},{"source":105,"target":119},{"source":105,"target":6},{"source":119,"target":5},{"source":106,"target":28},{"source":106,"target":120},{"source":106,"target":6},{"source":120,"target":28},{"source":7,"target":0},{"source":7,"target":121},{"source":7,"target":122},{"source":121,"target":123},{"source":121,"target":7},{"source":122,"target":124},{"source":122,"target":7},{"source":8,"target":0},{"source":8,"target":125},{"source":8,"target":126},{"source":8,"target":127},{"source":8,"target":128},{"source":8,"target":129},{"source":125,"target":8},{"source":126,"target":130},{"source":126,"target":8},{"source":127,"target":131},{"source":127,"target":8},{"source":128,"target":132},{"source":128,"target":8},{"source":129,"target":133},{"source":129,"target":8},{"source":9,"target":0},{"source":9,"target":134},{"source":9,"target":135},{"source":134,"target":9},{"source":135,"target":136},{"source":135,"target":9},{"source":10,"target":0},{"source":10,"target":137},{"source":10,"target":138},{"source":10,"target":139},{"source":10,"target":140},{"source":10,"target":141},{"source":10,"target":142},{"source":137,"target":10},{"source":138,"target":143},{"source":138,"target":10},{"source":139,"target":144},{"source":139,"target":10},{"source":140,"target":145},{"source":140,"target":10},{"source":141,"target":146},{"source":141,"target":10},{"source":142,"target":147},{"source":142,"target":10},{"source":11,"target":0},{"source":11,"target":148},{"source":11,"target":149},{"source":11,"target":150},{"source":11,"target":151},{"source":11,"target":152},{"source":11,"target":153},{"source":11,"target":154},{"source":11,"target":155},{"source":148,"target":11},{"source":149,"target":156},{"source":149,"target":11},{"source":150,"target":157},{"source":150,"target":11},{"source":151,"target":18},{"source":151,"target":158},{"source":151,"target":11},{"source":158,"target":18},{"source":152,"target":159},{"source":152,"target":11},{"source":153,"target":20},{"source":153,"target":160},{"source":153,"target":11},{"source":160,"target":20},{"source":154,"target":7},{"source":154,"target":161},{"source":154,"target":11},{"source":161,"target":7},{"source":155,"target":162},{"source":155,"target":11},{"source":12,"target":0},{"source":12,"target":163},{"source":12,"target":164},{"source":12,"target":165},{"source":12,"target":166},{"source":12,"target":167},{"source":12,"target":168},{"source":12,"target":169},{"source":12,"target":170},{"source":12,"target":171},{"source":12,"target":172},{"source":163,"target":12},{"source":164,"target":12},{"source":165,"target":12},{"source":166,"target":12},{"source":167,"target":173},{"source":167,"target":12},{"source":168,"target":174},{"source":168,"target":12},{"source":169,"target":175},{"source":169,"target":12},{"source":170,"target":176},{"source":170,"target":12},{"source":171,"target":177},{"source":171,"target":12},{"source":172,"target":7},{"source":172,"target":178},{"source":172,"target":12},{"source":178,"target":7},{"source":13,"target":0},{"source":13,"target":179},{"source":13,"target":180},{"source":13,"target":181},{"source":13,"target":182},{"source":13,"target":183},{"source":13,"target":184},{"source":13,"target":185},{"source":13,"target":186},{"source":13,"target":187},{"source":13,"target":188},{"source":13,"target":189},{"source":13,"target":190},{"source":13,"target":191},{"source":13,"target":192},{"source":13,"target":193},{"source":13,"target":194},{"source":13,"target":195},{"source":13,"target":196},{"source":13,"target":197},{"source":13,"target":198},{"source":13,"target":199},{"source":179,"target":13},{"source":180,"target":13},{"source":181,"target":13},{"source":182,"target":13},{"source":183,"target":13},{"source":184,"target":13},{"source":185,"target":13},{"source":186,"target":13},{"source":187,"target":13},{"source":188,"target":13},{"source":189,"target":13},{"source":190,"target":13},{"source":191,"target":13},{"source":192,"target":13},{"source":193,"target":200},{"source":193,"target":13},{"source":194,"target":201},{"source":194,"target":13},{"source":195,"target":202},{"source":195,"target":13},{"source":196,"target":203},{"source":196,"target":13},{"source":197,"target":204},{"source":197,"target":13},{"source":198,"target":205},{"source":198,"target":13},{"source":199,"target":206},{"source":199,"target":13},{"source":14,"target":0},{"source":14,"target":207},{"source":14,"target":208},{"source":14,"target":209},{"source":14,"target":210},{"source":14,"target":211},{"source":207,"target":14},{"source":208,"target":212},{"source":208,"target":14},{"source":209,"target":213},{"source":209,"target":14},{"source":210,"target":2},{"source":210,"target":214},{"source":210,"target":14},{"source":214,"target":2},{"source":211,"target":27},{"source":211,"target":215},{"source":211,"target":14},{"source":215,"target":27},{"source":15,"target":0},{"source":15,"target":12},{"source":15,"target":216},{"source":216,"target":12},{"source":16,"target":0},{"source":16,"target":12},{"source":16,"target":217},{"source":217,"target":12},{"source":17,"target":0},{"source":17,"target":12},{"source":17,"target":218},{"source":218,"target":12},{"source":18,"target":0},{"source":18,"target":219},{"source":18,"target":220},{"source":18,"target":221},{"source":219,"target":18},{"source":220,"target":18},{"source":221,"target":222},{"source":221,"target":18},{"source":19,"target":0},{"source":19,"target":223},{"source":19,"target":224},{"source":19,"target":225},{"source":223,"target":226},{"source":223,"target":19},{"source":224,"target":227},{"source":224,"target":19},{"source":225,"target":228},{"source":225,"target":19},{"source":20,"target":0},{"source":20,"target":229},{"source":20,"target":230},{"source":20,"target":231},{"source":20,"target":232},{"source":20,"target":233},{"source":229,"target":234},{"source":229,"target":20},{"source":230,"target":235},{"source":230,"target":20},{"source":231,"target":236},{"source":231,"target":20},{"source":232,"target":27},{"source":232,"target":237},{"source":232,"target":20},{"source":237,"target":27},{"source":233,"target":19},{"source":233,"target":238},{"source":233,"target":20},{"source":238,"target":19},{"source":21,"target":0},{"source":21,"target":11},{"source":21,"target":239},{"source":239,"target":11},{"source":22,"target":0},{"source":22,"target":11},{"source":22,"target":240},{"source":240,"target":11},{"source":23,"target":0},{"source":23,"target":11},{"source":23,"target":241},{"source":241,"target":11},{"source":24,"target":0},{"source":24,"target":11},{"source":24,"target":242},{"source":242,"target":11},{"source":25,"target":0},{"source":25,"target":11},{"source":25,"target":243},{"source":243,"target":11},{"source":26,"target":0},{"source":26,"target":11},{"source":26,"target":244},{"source":244,"target":11},{"source":27,"target":0},{"source":27,"target":245},{"source":27,"target":246},{"source":27,"target":247},{"source":27,"target":248},{"source":245,"target":1},{"source":245,"target":249},{"source":245,"target":27},{"source":249,"target":1},{"source":246,"target":250},{"source":246,"target":27},{"source":247,"target":251},{"source":247,"target":27},{"source":248,"target":252},{"source":248,"target":27},{"source":28,"target":0},{"source":28,"target":253},{"source":28,"target":254},{"source":28,"target":255},{"source":28,"target":256},{"source":28,"target":257},{"source":28,"target":258},{"source":28,"target":259},{"source":28,"target":260},{"source":28,"target":261},{"source":28,"target":262},{"source":253,"target":28},{"source":254,"target":28},{"source":255,"target":263},{"source":255,"target":28},{"source":256,"target":264},{"source":256,"target":28},{"source":257,"target":265},{"source":257,"target":28},{"source":258,"target":266},{"source":258,"target":28},{"source":259,"target":267},{"source":259,"target":28},{"source":260,"target":29},{"source":260,"target":268},{"source":260,"target":28},{"source":268,"target":29},{"source":261,"target":269},{"source":261,"target":28},{"source":262,"target":270},{"source":262,"target":28},{"source":29,"target":0},{"source":29,"target":271},{"source":29,"target":272},{"source":29,"target":273},{"source":271,"target":29},{"source":272,"target":29},{"source":273,"target":29}],"multigraph":true} |
false | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="spellDatabase" nsURI="http://www.ses.lu/engineering/spell/SpellDatabase"
nsPrefix="spellDatabase">
<eClassifiers xsi:type="ecore:EClass" name="SpellDatabase">
<eStructuralFeatures xsi:type="ecore:EReference" name="databaseEntry" upperBound="-1"
eType="#//DatabaseEntry" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="AstriumDatabase">
<eStructuralFeatures xsi:type="ecore:EReference" name="entries" upperBound="-1"
eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EObject" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="AstriumVariableEntry">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="astriumTime" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="value" eType="#//Atom"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="simpleValue" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="AstriumHeaderEntry">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="astriumTime" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="value" eType="#//Atom"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="simpleValue" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CSVEntry"/>
<eClassifiers xsi:type="ecore:EClass" name="CSVCommand" eSuperTypes="#//CSVEntry">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="command" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="args" upperBound="-1" eType="#//TCArgs"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="TCArgs">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="tcName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="tcValue" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="tcMod" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="tolerance" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CSVTelemetry" eSuperTypes="#//CSVEntry">
<eStructuralFeatures xsi:type="ecore:EReference" name="tmArg" eType="#//TCArgs"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CSVSpell" eSuperTypes="#//CSVEntry">
<eStructuralFeatures xsi:type="ecore:EReference" name="cmd" eType="#//SpellCommand"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="SpellCommand"/>
<eClassifiers xsi:type="ecore:EClass" name="DatabaseEntry">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="value" eType="#//DatabaseValue"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="DatabaseValue"/>
<eClassifiers xsi:type="ecore:EClass" name="Lambda_Stmt" eSuperTypes="#//Atom">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="variables" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ComplexValue" eSuperTypes="#//DatabaseValue"/>
<eClassifiers xsi:type="ecore:EClass" name="Tuple" eSuperTypes="#//ComplexValue">
<eStructuralFeatures xsi:type="ecore:EReference" name="values" upperBound="-1"
eType="#//DatabaseValue" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="List" eSuperTypes="#//ComplexValue">
<eStructuralFeatures xsi:type="ecore:EReference" name="values" upperBound="-1"
eType="#//DatabaseValue" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Dictionary" eSuperTypes="#//ComplexValue"/>
<eClassifiers xsi:type="ecore:EClass" name="DictionaryEntry">
<eStructuralFeatures xsi:type="ecore:EReference" name="key" eType="#//DatabaseValue"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="value" eType="#//DatabaseValue"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Atom" eSuperTypes="#//DatabaseValue">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="val" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="RelDate" eSuperTypes="#//DatabaseValue">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="val" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Date" eSuperTypes="#//DatabaseValue">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="val" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Boolean" eSuperTypes="#//Atom"/>
<eClassifiers xsi:type="ecore:EClass" name="StringValue" eSuperTypes="#//Atom"/>
<eClassifiers xsi:type="ecore:EClass" name="Number" eSuperTypes="#//Atom">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="valInt" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="valStr" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="AstriumSpellDatabase" eSuperTypes="#//SpellDatabase">
<eStructuralFeatures xsi:type="ecore:EReference" name="database" eType="#//AstriumDatabase"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CSVFile" eSuperTypes="#//SpellDatabase">
<eStructuralFeatures xsi:type="ecore:EReference" name="csvEntries" upperBound="-1"
eType="#//CSVEntry" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="AstriumVariableComment" eSuperTypes="#//AstriumVariableEntry">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="comment" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="AstriumHeaderComment" eSuperTypes="#//AstriumHeaderEntry">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="comment" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="WaitCommand" eSuperTypes="#//SpellCommand">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="unit" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="PauseCommand" eSuperTypes="#//SpellCommand"/>
<eClassifiers xsi:type="ecore:EClass" name="Dicitonary" eSuperTypes="#//Dictionary">
<eStructuralFeatures xsi:type="ecore:EReference" name="entries" upperBound="-1"
eType="#//DictionaryEntry" containment="true"/>
</eClassifiers>
</ecore:EPackage>
| github:ecore:/data/CalypsoCubesat/SPELL_Dev_1.4.0_SRC/opatools/lu.ses.engineering.spell.SpellDatabase/model/generated/SpellDatabase.ecore | ecore | spellDatabase
SpellDatabase
databaseEntry
AstriumDatabase
entries
AstriumVariableEntry
name
astriumTime
value
simpleValue
AstriumHeaderEntry
name
astriumTime
value
simpleValue
CSVEntry
CSVCommand
command
args
TCArgs
tcName
tcValue
tcMod
tolerance
CSVTelemetry
tmArg
CSVSpell
cmd
SpellCommand
DatabaseEntry
name
value
DatabaseValue
Lambda_Stmt
variables
ComplexValue
Tuple
values
List
values
Dictionary
DictionaryEntry
key
value
Atom
val
RelDate
val
Date
val
Boolean
StringValue
Number
valInt
valStr
AstriumSpellDatabase
database
CSVFile
csvEntries
AstriumVariableComment
comment
AstriumHeaderComment
comment
WaitCommand
value
unit
PauseCommand
Dicitonary
entries | null | {"directed":true,"nodes":[{"nsPrefix":"spellDatabase","nsURI":"http://www.ses.lu/engineering/spell/SpellDatabase","name":"spellDatabase","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SpellDatabase","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AstriumDatabase","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AstriumVariableEntry","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AstriumHeaderEntry","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CSVEntry","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CSVCommand","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TCArgs","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CSVTelemetry","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CSVSpell","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SpellCommand","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DatabaseEntry","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DatabaseValue","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Lambda_Stmt","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ComplexValue","instanceClass":null,"abstract":false,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Tuple","instanceClass":null,"abstract":false,"id":15,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"List","instanceClass":null,"abstract":false,"id":16,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Dictionary","instanceClass":null,"abstract":false,"id":17,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DictionaryEntry","instanceClass":null,"abstract":false,"id":18,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Atom","instanceClass":null,"abstract":false,"id":19,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RelDate","instanceClass":null,"abstract":false,"id":20,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Date","instanceClass":null,"abstract":false,"id":21,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Boolean","instanceClass":null,"abstract":false,"id":22,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StringValue","instanceClass":null,"abstract":false,"id":23,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Number","instanceClass":null,"abstract":false,"id":24,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AstriumSpellDatabase","instanceClass":null,"abstract":false,"id":25,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CSVFile","instanceClass":null,"abstract":false,"id":26,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AstriumVariableComment","instanceClass":null,"abstract":false,"id":27,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AstriumHeaderComment","instanceClass":null,"abstract":false,"id":28,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"WaitCommand","instanceClass":null,"abstract":false,"id":29,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PauseCommand","instanceClass":null,"abstract":false,"id":30,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Dicitonary","instanceClass":null,"abstract":false,"id":31,"interface":false,"eClass":"EClass"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"databaseEntry","changeable":true,"resolveProxies":true,"lowerBound":0,"id":32,"derived":false},{"id":33,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"entries","changeable":true,"resolveProxies":true,"lowerBound":0,"id":34,"derived":false},{"id":35,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":36,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"astriumTime","changeable":true,"lowerBound":0,"iD":false,"id":37,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"resolveProxies":true,"lowerBound":0,"id":38,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"simpleValue","changeable":true,"lowerBound":0,"iD":false,"id":39,"derived":false},{"id":40,"eClass":"EGenericType"},{"id":41,"eClass":"EGenericType"},{"id":42,"eClass":"EGenericType"},{"id":43,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":44,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"astriumTime","changeable":true,"lowerBound":0,"iD":false,"id":45,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"resolveProxies":true,"lowerBound":0,"id":46,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"simpleValue","changeable":true,"lowerBound":0,"iD":false,"id":47,"derived":false},{"id":48,"eClass":"EGenericType"},{"id":49,"eClass":"EGenericType"},{"id":50,"eClass":"EGenericType"},{"id":51,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"command","changeable":true,"lowerBound":0,"iD":false,"id":52,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"args","changeable":true,"resolveProxies":true,"lowerBound":0,"id":53,"derived":false},{"id":54,"eClass":"EGenericType"},{"id":55,"eClass":"EGenericType"},{"id":56,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"tcName","changeable":true,"lowerBound":0,"iD":false,"id":57,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"tcValue","changeable":true,"lowerBound":0,"iD":false,"id":58,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"tcMod","changeable":true,"lowerBound":0,"iD":false,"id":59,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"tolerance","changeable":true,"lowerBound":0,"iD":false,"id":60,"derived":false},{"id":61,"eClass":"EGenericType"},{"id":62,"eClass":"EGenericType"},{"id":63,"eClass":"EGenericType"},{"id":64,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"tmArg","changeable":true,"resolveProxies":true,"lowerBound":0,"id":65,"derived":false},{"id":66,"eClass":"EGenericType"},{"id":67,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"cmd","changeable":true,"resolveProxies":true,"lowerBound":0,"id":68,"derived":false},{"id":69,"eClass":"EGenericType"},{"id":70,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":71,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"resolveProxies":true,"lowerBound":0,"id":72,"derived":false},{"id":73,"eClass":"EGenericType"},{"id":74,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"variables","changeable":true,"lowerBound":0,"iD":false,"id":75,"derived":false},{"id":76,"eClass":"EGenericType"},{"id":77,"eClass":"EGenericType"},{"id":78,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"values","changeable":true,"resolveProxies":true,"lowerBound":0,"id":79,"derived":false},{"id":80,"eClass":"EGenericType"},{"id":81,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"values","changeable":true,"resolveProxies":true,"lowerBound":0,"id":82,"derived":false},{"id":83,"eClass":"EGenericType"},{"id":84,"eClass":"EGenericType"},{"id":85,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"key","changeable":true,"resolveProxies":true,"lowerBound":0,"id":86,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"resolveProxies":true,"lowerBound":0,"id":87,"derived":false},{"id":88,"eClass":"EGenericType"},{"id":89,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"val","changeable":true,"lowerBound":0,"iD":false,"id":90,"derived":false},{"id":91,"eClass":"EGenericType"},{"id":92,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"val","changeable":true,"lowerBound":0,"iD":false,"id":93,"derived":false},{"id":94,"eClass":"EGenericType"},{"id":95,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"val","changeable":true,"lowerBound":0,"iD":false,"id":96,"derived":false},{"id":97,"eClass":"EGenericType"},{"id":98,"eClass":"EGenericType"},{"id":99,"eClass":"EGenericType"},{"id":100,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"valInt","changeable":true,"lowerBound":0,"iD":false,"id":101,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"valStr","changeable":true,"lowerBound":0,"iD":false,"id":102,"derived":false},{"id":103,"eClass":"EGenericType"},{"id":104,"eClass":"EGenericType"},{"id":105,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"database","changeable":true,"resolveProxies":true,"lowerBound":0,"id":106,"derived":false},{"id":107,"eClass":"EGenericType"},{"id":108,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"csvEntries","changeable":true,"resolveProxies":true,"lowerBound":0,"id":109,"derived":false},{"id":110,"eClass":"EGenericType"},{"id":111,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"comment","changeable":true,"lowerBound":0,"iD":false,"id":112,"derived":false},{"id":113,"eClass":"EGenericType"},{"id":114,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"comment","changeable":true,"lowerBound":0,"iD":false,"id":115,"derived":false},{"id":116,"eClass":"EGenericType"},{"id":117,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":0,"iD":false,"id":118,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"unit","changeable":true,"lowerBound":0,"iD":false,"id":119,"derived":false},{"id":120,"eClass":"EGenericType"},{"id":121,"eClass":"EGenericType"},{"id":122,"eClass":"EGenericType"},{"id":123,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"entries","changeable":true,"resolveProxies":true,"lowerBound":0,"id":124,"derived":false},{"id":125,"eClass":"EGenericType"},{"id":126,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":0,"target":8},{"source":0,"target":9},{"source":0,"target":10},{"source":0,"target":11},{"source":0,"target":12},{"source":0,"target":13},{"source":0,"target":14},{"source":0,"target":15},{"source":0,"target":16},{"source":0,"target":17},{"source":0,"target":18},{"source":0,"target":19},{"source":0,"target":20},{"source":0,"target":21},{"source":0,"target":22},{"source":0,"target":23},{"source":0,"target":24},{"source":0,"target":25},{"source":0,"target":26},{"source":0,"target":27},{"source":0,"target":28},{"source":0,"target":29},{"source":0,"target":30},{"source":0,"target":31},{"source":1,"target":0},{"source":1,"target":32},{"source":32,"target":11},{"source":32,"target":33},{"source":32,"target":1},{"source":33,"target":11},{"source":2,"target":0},{"source":2,"target":34},{"source":34,"target":35},{"source":34,"target":2},{"source":3,"target":0},{"source":3,"target":36},{"source":3,"target":37},{"source":3,"target":38},{"source":3,"target":39},{"source":36,"target":40},{"source":36,"target":3},{"source":37,"target":41},{"source":37,"target":3},{"source":38,"target":19},{"source":38,"target":42},{"source":38,"target":3},{"source":42,"target":19},{"source":39,"target":43},{"source":39,"target":3},{"source":4,"target":0},{"source":4,"target":44},{"source":4,"target":45},{"source":4,"target":46},{"source":4,"target":47},{"source":44,"target":48},{"source":44,"target":4},{"source":45,"target":49},{"source":45,"target":4},{"source":46,"target":19},{"source":46,"target":50},{"source":46,"target":4},{"source":50,"target":19},{"source":47,"target":51},{"source":47,"target":4},{"source":5,"target":0},{"source":6,"target":0},{"source":6,"target":5},{"source":6,"target":52},{"source":6,"target":53},{"source":6,"target":54},{"source":52,"target":55},{"source":52,"target":6},{"source":53,"target":7},{"source":53,"target":56},{"source":53,"target":6},{"source":56,"target":7},{"source":54,"target":5},{"source":7,"target":0},{"source":7,"target":57},{"source":7,"target":58},{"source":7,"target":59},{"source":7,"target":60},{"source":57,"target":61},{"source":57,"target":7},{"source":58,"target":62},{"source":58,"target":7},{"source":59,"target":63},{"source":59,"target":7},{"source":60,"target":64},{"source":60,"target":7},{"source":8,"target":0},{"source":8,"target":5},{"source":8,"target":65},{"source":8,"target":66},{"source":65,"target":7},{"source":65,"target":67},{"source":65,"target":8},{"source":67,"target":7},{"source":66,"target":5},{"source":9,"target":0},{"source":9,"target":5},{"source":9,"target":68},{"source":9,"target":69},{"source":68,"target":10},{"source":68,"target":70},{"source":68,"target":9},{"source":70,"target":10},{"source":69,"target":5},{"source":10,"target":0},{"source":11,"target":0},{"source":11,"target":71},{"source":11,"target":72},{"source":71,"target":73},{"source":71,"target":11},{"source":72,"target":12},{"source":72,"target":74},{"source":72,"target":11},{"source":74,"target":12},{"source":12,"target":0},{"source":13,"target":0},{"source":13,"target":19},{"source":13,"target":75},{"source":13,"target":76},{"source":75,"target":77},{"source":75,"target":13},{"source":76,"target":19},{"source":14,"target":0},{"source":14,"target":12},{"source":14,"target":78},{"source":78,"target":12},{"source":15,"target":0},{"source":15,"target":14},{"source":15,"target":79},{"source":15,"target":80},{"source":79,"target":12},{"source":79,"target":81},{"source":79,"target":15},{"source":81,"target":12},{"source":80,"target":14},{"source":16,"target":0},{"source":16,"target":14},{"source":16,"target":82},{"source":16,"target":83},{"source":82,"target":12},{"source":82,"target":84},{"source":82,"target":16},{"source":84,"target":12},{"source":83,"target":14},{"source":17,"target":0},{"source":17,"target":14},{"source":17,"target":85},{"source":85,"target":14},{"source":18,"target":0},{"source":18,"target":86},{"source":18,"target":87},{"source":86,"target":12},{"source":86,"target":88},{"source":86,"target":18},{"source":88,"target":12},{"source":87,"target":12},{"source":87,"target":89},{"source":87,"target":18},{"source":89,"target":12},{"source":19,"target":0},{"source":19,"target":12},{"source":19,"target":90},{"source":19,"target":91},{"source":90,"target":92},{"source":90,"target":19},{"source":91,"target":12},{"source":20,"target":0},{"source":20,"target":12},{"source":20,"target":93},{"source":20,"target":94},{"source":93,"target":95},{"source":93,"target":20},{"source":94,"target":12},{"source":21,"target":0},{"source":21,"target":12},{"source":21,"target":96},{"source":21,"target":97},{"source":96,"target":98},{"source":96,"target":21},{"source":97,"target":12},{"source":22,"target":0},{"source":22,"target":19},{"source":22,"target":99},{"source":99,"target":19},{"source":23,"target":0},{"source":23,"target":19},{"source":23,"target":100},{"source":100,"target":19},{"source":24,"target":0},{"source":24,"target":19},{"source":24,"target":101},{"source":24,"target":102},{"source":24,"target":103},{"source":101,"target":104},{"source":101,"target":24},{"source":102,"target":105},{"source":102,"target":24},{"source":103,"target":19},{"source":25,"target":0},{"source":25,"target":1},{"source":25,"target":106},{"source":25,"target":107},{"source":106,"target":2},{"source":106,"target":108},{"source":106,"target":25},{"source":108,"target":2},{"source":107,"target":1},{"source":26,"target":0},{"source":26,"target":1},{"source":26,"target":109},{"source":26,"target":110},{"source":109,"target":5},{"source":109,"target":111},{"source":109,"target":26},{"source":111,"target":5},{"source":110,"target":1},{"source":27,"target":0},{"source":27,"target":3},{"source":27,"target":112},{"source":27,"target":113},{"source":112,"target":114},{"source":112,"target":27},{"source":113,"target":3},{"source":28,"target":0},{"source":28,"target":4},{"source":28,"target":115},{"source":28,"target":116},{"source":115,"target":117},{"source":115,"target":28},{"source":116,"target":4},{"source":29,"target":0},{"source":29,"target":10},{"source":29,"target":118},{"source":29,"target":119},{"source":29,"target":120},{"source":118,"target":121},{"source":118,"target":29},{"source":119,"target":122},{"source":119,"target":29},{"source":120,"target":10},{"source":30,"target":0},{"source":30,"target":10},{"source":30,"target":123},{"source":123,"target":10},{"source":31,"target":0},{"source":31,"target":17},{"source":31,"target":124},{"source":31,"target":125},{"source":124,"target":18},{"source":124,"target":126},{"source":124,"target":31},{"source":126,"target":18},{"source":125,"target":17}],"multigraph":true} |
true | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="simplepdl" nsURI="http://simplepdl" nsPrefix="simplepdl">
<eClassifiers xsi:type="ecore:EEnum" name="WorkSequenceType">
<eLiterals name="startToStart"/>
<eLiterals name="finishToStart" value="1"/>
<eLiterals name="startToFinish" value="2"/>
<eLiterals name="finishToFinish" value="3"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Process">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="workDefinitions" lowerBound="1"
upperBound="-1" eType="#//WorkDefinition" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="workSequences" upperBound="-1"
eType="#//WorkSequence" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="guidance" upperBound="-1"
eType="#//Guidance" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="resource" upperBound="-1"
eType="#//Resource" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="WorkDefinition">
<eStructuralFeatures xsi:type="ecore:EReference" name="linksToPredecessors" upperBound="-1"
eType="#//WorkSequence" eOpposite="#//WorkSequence/successor"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="linksToSuccessors" upperBound="-1"
eType="#//WorkSequence" eOpposite="#//WorkSequence/predecessor"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="parameters" upperBound="-1"
eType="#//parameter" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="guidance" upperBound="-1"
eType="#//Guidance"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="WorkSequence">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="linkType" lowerBound="1"
eType="#//WorkSequenceType"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="predecessor" lowerBound="1"
eType="#//WorkDefinition" eOpposite="#//WorkDefinition/linksToSuccessors"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="successor" lowerBound="1"
eType="#//WorkDefinition" eOpposite="#//WorkDefinition/linksToPredecessors"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Guidance">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="description" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="parameter">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="quantity" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="resource" unique="false"
lowerBound="1" eType="#//Resource"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Resource">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="OccuranceNb" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
</eClassifiers>
</ecore:EPackage>
| github:ecore:/data/Ssouh/Projet_IDM/GL/SimplePDL_ProjetGL/SimplePDL.ecore | ecore | simplepdl
WorkSequenceType
startToStart
startToStart
finishToStart
finishToStart
startToFinish
startToFinish
finishToFinish
finishToFinish
Process
name
workDefinitions
workSequences
guidance
resource
WorkDefinition
linksToPredecessors
linksToSuccessors
name
parameters
guidance
WorkSequence
linkType
predecessor
successor
Guidance
description
parameter
quantity
resource
Resource
name
OccuranceNb | null | {"directed":true,"nodes":[{"nsPrefix":"simplepdl","nsURI":"http://simplepdl","name":"simplepdl","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"instanceClassName":null,"name":"WorkSequenceType","instanceClass":null,"id":1,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Process","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"WorkDefinition","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"WorkSequence","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Guidance","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"parameter","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Resource","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"name":"startToStart","id":8,"value":0,"literal":"startToStart","eClass":"EEnumLiteral"},{"name":"finishToStart","id":9,"value":1,"literal":"finishToStart","eClass":"EEnumLiteral"},{"name":"startToFinish","id":10,"value":2,"literal":"startToFinish","eClass":"EEnumLiteral"},{"name":"finishToFinish","id":11,"value":3,"literal":"finishToFinish","eClass":"EEnumLiteral"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":12,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"workDefinitions","changeable":true,"resolveProxies":true,"lowerBound":1,"id":13,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"workSequences","changeable":true,"resolveProxies":true,"lowerBound":0,"id":14,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"guidance","changeable":true,"resolveProxies":true,"lowerBound":0,"id":15,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"resource","changeable":true,"resolveProxies":true,"lowerBound":0,"id":16,"derived":false},{"id":17,"eClass":"EGenericType"},{"id":18,"eClass":"EGenericType"},{"id":19,"eClass":"EGenericType"},{"id":20,"eClass":"EGenericType"},{"id":21,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"linksToPredecessors","changeable":true,"resolveProxies":true,"lowerBound":0,"id":22,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"linksToSuccessors","changeable":true,"resolveProxies":true,"lowerBound":0,"id":23,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":24,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"parameters","changeable":true,"resolveProxies":true,"lowerBound":0,"id":25,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"guidance","changeable":true,"resolveProxies":true,"lowerBound":0,"id":26,"derived":false},{"id":27,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"successor","changeable":true,"resolveProxies":true,"lowerBound":1,"id":28,"derived":false},{"id":29,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"predecessor","changeable":true,"resolveProxies":true,"lowerBound":1,"id":30,"derived":false},{"id":31,"eClass":"EGenericType"},{"id":32,"eClass":"EGenericType"},{"id":33,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"linkType","changeable":true,"lowerBound":1,"iD":false,"id":34,"derived":false},{"id":35,"eClass":"EGenericType"},{"id":36,"eClass":"EGenericType"},{"id":37,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"description","changeable":true,"lowerBound":1,"iD":false,"id":38,"derived":false},{"id":39,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"quantity","changeable":true,"lowerBound":0,"iD":false,"id":40,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":false,"name":"resource","changeable":true,"resolveProxies":true,"lowerBound":1,"id":41,"derived":false},{"id":42,"eClass":"EGenericType"},{"id":43,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":44,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"OccuranceNb","changeable":true,"lowerBound":0,"iD":false,"id":45,"derived":false},{"id":46,"eClass":"EGenericType"},{"id":47,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":1,"target":0},{"source":1,"target":8},{"source":1,"target":9},{"source":1,"target":10},{"source":1,"target":11},{"source":8,"target":1},{"source":9,"target":1},{"source":10,"target":1},{"source":11,"target":1},{"source":2,"target":0},{"source":2,"target":12},{"source":2,"target":13},{"source":2,"target":14},{"source":2,"target":15},{"source":2,"target":16},{"source":12,"target":17},{"source":12,"target":2},{"source":13,"target":3},{"source":13,"target":18},{"source":13,"target":2},{"source":18,"target":3},{"source":14,"target":4},{"source":14,"target":19},{"source":14,"target":2},{"source":19,"target":4},{"source":15,"target":5},{"source":15,"target":20},{"source":15,"target":2},{"source":20,"target":5},{"source":16,"target":7},{"source":16,"target":21},{"source":16,"target":2},{"source":21,"target":7},{"source":3,"target":0},{"source":3,"target":22},{"source":3,"target":23},{"source":3,"target":24},{"source":3,"target":25},{"source":3,"target":26},{"source":22,"target":4},{"source":22,"target":27},{"source":22,"target":3},{"source":22,"target":28},{"source":27,"target":4},{"source":23,"target":4},{"source":23,"target":29},{"source":23,"target":3},{"source":23,"target":30},{"source":29,"target":4},{"source":24,"target":31},{"source":24,"target":3},{"source":25,"target":6},{"source":25,"target":32},{"source":25,"target":3},{"source":32,"target":6},{"source":26,"target":5},{"source":26,"target":33},{"source":26,"target":3},{"source":33,"target":5},{"source":4,"target":0},{"source":4,"target":34},{"source":4,"target":30},{"source":4,"target":28},{"source":34,"target":1},{"source":34,"target":35},{"source":34,"target":4},{"source":35,"target":1},{"source":30,"target":3},{"source":30,"target":36},{"source":30,"target":4},{"source":30,"target":23},{"source":36,"target":3},{"source":28,"target":3},{"source":28,"target":37},{"source":28,"target":4},{"source":28,"target":22},{"source":37,"target":3},{"source":5,"target":0},{"source":5,"target":38},{"source":38,"target":39},{"source":38,"target":5},{"source":6,"target":0},{"source":6,"target":40},{"source":6,"target":41},{"source":40,"target":42},{"source":40,"target":6},{"source":41,"target":7},{"source":41,"target":43},{"source":41,"target":6},{"source":43,"target":7},{"source":7,"target":0},{"source":7,"target":44},{"source":7,"target":45},{"source":44,"target":46},{"source":44,"target":7},{"source":45,"target":47},{"source":45,"target":7}],"multigraph":true} |
true | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="scribble" nsURI="http://www.scribble.org/Scribble" nsPrefix="scribble">
<eClassifiers xsi:type="ecore:EClass" name="ScribbleProgram">
<eStructuralFeatures xsi:type="ecore:EReference" name="includeDecl" upperBound="-1"
eType="#//IncludeDecl" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="typeDecl" upperBound="-1"
eType="#//TypeDecl" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="globalProtocolDecl" upperBound="-1"
eType="#//GlobalProtocolDecl" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="instGlobalProtocolDecl"
upperBound="-1" eType="#//InstGlobalProtocolDecl" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="IncludeDecl">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="importURI" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="InstGlobalProtocolDecl">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="protocolName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="roles" unique="false" upperBound="-1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="instantiatedProtocol" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="TypeDecl">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="typeName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="schema" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="file" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="alias" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="GlobalProtocolDecl">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="protocolName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="parameters" unique="false"
upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="roles" unique="false" upperBound="-1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="body" eType="#//GlobalInteractionBlock"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="GlobalInteractionBlock">
<eStructuralFeatures xsi:type="ecore:EReference" name="interactionsequence" upperBound="-1"
eType="#//GlobalInteraction" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="GlobalInteraction"/>
<eClassifiers xsi:type="ecore:EClass" name="Spawn" eSuperTypes="#//GlobalInteraction">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="roleName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="targetProtocolName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="parameters" unique="false"
upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="currentRoles" unique="false"
upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="targetRoles" unique="false"
upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Do" eSuperTypes="#//GlobalInteraction">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="targetProtocolName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="arguments" upperBound="-1"
eType="#//MessageSignature" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="currentRoles" unique="false"
upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="targetRoles" unique="false"
upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Interruptible" eSuperTypes="#//GlobalInteraction">
<eStructuralFeatures xsi:type="ecore:EReference" name="body" eType="#//GlobalInteractionBlock"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="roleNames" unique="false"
upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="signatures" upperBound="-1"
eType="#//MessageSignature" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Continue" eSuperTypes="#//GlobalInteraction">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="loopName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Recursion" eSuperTypes="#//GlobalInteraction">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="loopName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="body" eType="#//GlobalInteractionBlock"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Parallel" eSuperTypes="#//GlobalInteraction">
<eStructuralFeatures xsi:type="ecore:EReference" name="branches" upperBound="-1"
eType="#//GlobalInteractionBlock" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Choice" eSuperTypes="#//GlobalInteraction">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="role" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="branches" upperBound="-1"
eType="#//GlobalInteractionBlock" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Message" eSuperTypes="#//GlobalInteraction">
<eStructuralFeatures xsi:type="ecore:EReference" name="signature" eType="#//MessageSignature"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="sender" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="receiver" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="MessageSignature">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="operator" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="payloadTypes" upperBound="-1"
eType="#//PayloadType" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="PayloadType">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="payload" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="dataType" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
</ecore:EPackage>
| github:ecore:/data/glozachm/scribble-plug-in/scribble/bin/org/scribble/Scribble.ecore | ecore | scribble
ScribbleProgram
includeDecl
typeDecl
globalProtocolDecl
instGlobalProtocolDecl
IncludeDecl
importURI
InstGlobalProtocolDecl
protocolName
roles
instantiatedProtocol
TypeDecl
typeName
schema
file
alias
GlobalProtocolDecl
protocolName
parameters
roles
body
GlobalInteractionBlock
interactionsequence
GlobalInteraction
Spawn
roleName
targetProtocolName
parameters
currentRoles
targetRoles
Do
targetProtocolName
arguments
currentRoles
targetRoles
Interruptible
body
roleNames
signatures
Continue
loopName
Recursion
loopName
body
Parallel
branches
Choice
role
branches
Message
signature
sender
receiver
MessageSignature
operator
payloadTypes
PayloadType
payload
dataType | null | {"directed":true,"nodes":[{"nsPrefix":"scribble","nsURI":"http://www.scribble.org/Scribble","name":"scribble","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ScribbleProgram","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IncludeDecl","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InstGlobalProtocolDecl","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TypeDecl","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"GlobalProtocolDecl","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"GlobalInteractionBlock","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"GlobalInteraction","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Spawn","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Do","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Interruptible","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Continue","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Recursion","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Parallel","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Choice","instanceClass":null,"abstract":false,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Message","instanceClass":null,"abstract":false,"id":15,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MessageSignature","instanceClass":null,"abstract":false,"id":16,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PayloadType","instanceClass":null,"abstract":false,"id":17,"interface":false,"eClass":"EClass"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"includeDecl","changeable":true,"resolveProxies":true,"lowerBound":0,"id":18,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"typeDecl","changeable":true,"resolveProxies":true,"lowerBound":0,"id":19,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"globalProtocolDecl","changeable":true,"resolveProxies":true,"lowerBound":0,"id":20,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"instGlobalProtocolDecl","changeable":true,"resolveProxies":true,"lowerBound":0,"id":21,"derived":false},{"id":22,"eClass":"EGenericType"},{"id":23,"eClass":"EGenericType"},{"id":24,"eClass":"EGenericType"},{"id":25,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"importURI","changeable":true,"lowerBound":0,"iD":false,"id":26,"derived":false},{"id":27,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"protocolName","changeable":true,"lowerBound":0,"iD":false,"id":28,"derived":false},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"roles","changeable":true,"lowerBound":0,"iD":false,"id":29,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"instantiatedProtocol","changeable":true,"lowerBound":0,"iD":false,"id":30,"derived":false},{"id":31,"eClass":"EGenericType"},{"id":32,"eClass":"EGenericType"},{"id":33,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"typeName","changeable":true,"lowerBound":0,"iD":false,"id":34,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"schema","changeable":true,"lowerBound":0,"iD":false,"id":35,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"file","changeable":true,"lowerBound":0,"iD":false,"id":36,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"alias","changeable":true,"lowerBound":0,"iD":false,"id":37,"derived":false},{"id":38,"eClass":"EGenericType"},{"id":39,"eClass":"EGenericType"},{"id":40,"eClass":"EGenericType"},{"id":41,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"protocolName","changeable":true,"lowerBound":0,"iD":false,"id":42,"derived":false},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"parameters","changeable":true,"lowerBound":0,"iD":false,"id":43,"derived":false},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"roles","changeable":true,"lowerBound":0,"iD":false,"id":44,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"body","changeable":true,"resolveProxies":true,"lowerBound":0,"id":45,"derived":false},{"id":46,"eClass":"EGenericType"},{"id":47,"eClass":"EGenericType"},{"id":48,"eClass":"EGenericType"},{"id":49,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"interactionsequence","changeable":true,"resolveProxies":true,"lowerBound":0,"id":50,"derived":false},{"id":51,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"roleName","changeable":true,"lowerBound":0,"iD":false,"id":52,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"targetProtocolName","changeable":true,"lowerBound":0,"iD":false,"id":53,"derived":false},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"parameters","changeable":true,"lowerBound":0,"iD":false,"id":54,"derived":false},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"currentRoles","changeable":true,"lowerBound":0,"iD":false,"id":55,"derived":false},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"targetRoles","changeable":true,"lowerBound":0,"iD":false,"id":56,"derived":false},{"id":57,"eClass":"EGenericType"},{"id":58,"eClass":"EGenericType"},{"id":59,"eClass":"EGenericType"},{"id":60,"eClass":"EGenericType"},{"id":61,"eClass":"EGenericType"},{"id":62,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"targetProtocolName","changeable":true,"lowerBound":0,"iD":false,"id":63,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"arguments","changeable":true,"resolveProxies":true,"lowerBound":0,"id":64,"derived":false},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"currentRoles","changeable":true,"lowerBound":0,"iD":false,"id":65,"derived":false},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"targetRoles","changeable":true,"lowerBound":0,"iD":false,"id":66,"derived":false},{"id":67,"eClass":"EGenericType"},{"id":68,"eClass":"EGenericType"},{"id":69,"eClass":"EGenericType"},{"id":70,"eClass":"EGenericType"},{"id":71,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"body","changeable":true,"resolveProxies":true,"lowerBound":0,"id":72,"derived":false},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"roleNames","changeable":true,"lowerBound":0,"iD":false,"id":73,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"signatures","changeable":true,"resolveProxies":true,"lowerBound":0,"id":74,"derived":false},{"id":75,"eClass":"EGenericType"},{"id":76,"eClass":"EGenericType"},{"id":77,"eClass":"EGenericType"},{"id":78,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"loopName","changeable":true,"lowerBound":0,"iD":false,"id":79,"derived":false},{"id":80,"eClass":"EGenericType"},{"id":81,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"loopName","changeable":true,"lowerBound":0,"iD":false,"id":82,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"body","changeable":true,"resolveProxies":true,"lowerBound":0,"id":83,"derived":false},{"id":84,"eClass":"EGenericType"},{"id":85,"eClass":"EGenericType"},{"id":86,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"branches","changeable":true,"resolveProxies":true,"lowerBound":0,"id":87,"derived":false},{"id":88,"eClass":"EGenericType"},{"id":89,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"role","changeable":true,"lowerBound":0,"iD":false,"id":90,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"branches","changeable":true,"resolveProxies":true,"lowerBound":0,"id":91,"derived":false},{"id":92,"eClass":"EGenericType"},{"id":93,"eClass":"EGenericType"},{"id":94,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"signature","changeable":true,"resolveProxies":true,"lowerBound":0,"id":95,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"sender","changeable":true,"lowerBound":0,"iD":false,"id":96,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"receiver","changeable":true,"lowerBound":0,"iD":false,"id":97,"derived":false},{"id":98,"eClass":"EGenericType"},{"id":99,"eClass":"EGenericType"},{"id":100,"eClass":"EGenericType"},{"id":101,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"operator","changeable":true,"lowerBound":0,"iD":false,"id":102,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"payloadTypes","changeable":true,"resolveProxies":true,"lowerBound":0,"id":103,"derived":false},{"id":104,"eClass":"EGenericType"},{"id":105,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"payload","changeable":true,"lowerBound":0,"iD":false,"id":106,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"dataType","changeable":true,"lowerBound":0,"iD":false,"id":107,"derived":false},{"id":108,"eClass":"EGenericType"},{"id":109,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":0,"target":8},{"source":0,"target":9},{"source":0,"target":10},{"source":0,"target":11},{"source":0,"target":12},{"source":0,"target":13},{"source":0,"target":14},{"source":0,"target":15},{"source":0,"target":16},{"source":0,"target":17},{"source":1,"target":0},{"source":1,"target":18},{"source":1,"target":19},{"source":1,"target":20},{"source":1,"target":21},{"source":18,"target":2},{"source":18,"target":22},{"source":18,"target":1},{"source":22,"target":2},{"source":19,"target":4},{"source":19,"target":23},{"source":19,"target":1},{"source":23,"target":4},{"source":20,"target":5},{"source":20,"target":24},{"source":20,"target":1},{"source":24,"target":5},{"source":21,"target":3},{"source":21,"target":25},{"source":21,"target":1},{"source":25,"target":3},{"source":2,"target":0},{"source":2,"target":26},{"source":26,"target":27},{"source":26,"target":2},{"source":3,"target":0},{"source":3,"target":28},{"source":3,"target":29},{"source":3,"target":30},{"source":28,"target":31},{"source":28,"target":3},{"source":29,"target":32},{"source":29,"target":3},{"source":30,"target":33},{"source":30,"target":3},{"source":4,"target":0},{"source":4,"target":34},{"source":4,"target":35},{"source":4,"target":36},{"source":4,"target":37},{"source":34,"target":38},{"source":34,"target":4},{"source":35,"target":39},{"source":35,"target":4},{"source":36,"target":40},{"source":36,"target":4},{"source":37,"target":41},{"source":37,"target":4},{"source":5,"target":0},{"source":5,"target":42},{"source":5,"target":43},{"source":5,"target":44},{"source":5,"target":45},{"source":42,"target":46},{"source":42,"target":5},{"source":43,"target":47},{"source":43,"target":5},{"source":44,"target":48},{"source":44,"target":5},{"source":45,"target":6},{"source":45,"target":49},{"source":45,"target":5},{"source":49,"target":6},{"source":6,"target":0},{"source":6,"target":50},{"source":50,"target":7},{"source":50,"target":51},{"source":50,"target":6},{"source":51,"target":7},{"source":7,"target":0},{"source":8,"target":0},{"source":8,"target":7},{"source":8,"target":52},{"source":8,"target":53},{"source":8,"target":54},{"source":8,"target":55},{"source":8,"target":56},{"source":8,"target":57},{"source":52,"target":58},{"source":52,"target":8},{"source":53,"target":59},{"source":53,"target":8},{"source":54,"target":60},{"source":54,"target":8},{"source":55,"target":61},{"source":55,"target":8},{"source":56,"target":62},{"source":56,"target":8},{"source":57,"target":7},{"source":9,"target":0},{"source":9,"target":7},{"source":9,"target":63},{"source":9,"target":64},{"source":9,"target":65},{"source":9,"target":66},{"source":9,"target":67},{"source":63,"target":68},{"source":63,"target":9},{"source":64,"target":16},{"source":64,"target":69},{"source":64,"target":9},{"source":69,"target":16},{"source":65,"target":70},{"source":65,"target":9},{"source":66,"target":71},{"source":66,"target":9},{"source":67,"target":7},{"source":10,"target":0},{"source":10,"target":7},{"source":10,"target":72},{"source":10,"target":73},{"source":10,"target":74},{"source":10,"target":75},{"source":72,"target":6},{"source":72,"target":76},{"source":72,"target":10},{"source":76,"target":6},{"source":73,"target":77},{"source":73,"target":10},{"source":74,"target":16},{"source":74,"target":78},{"source":74,"target":10},{"source":78,"target":16},{"source":75,"target":7},{"source":11,"target":0},{"source":11,"target":7},{"source":11,"target":79},{"source":11,"target":80},{"source":79,"target":81},{"source":79,"target":11},{"source":80,"target":7},{"source":12,"target":0},{"source":12,"target":7},{"source":12,"target":82},{"source":12,"target":83},{"source":12,"target":84},{"source":82,"target":85},{"source":82,"target":12},{"source":83,"target":6},{"source":83,"target":86},{"source":83,"target":12},{"source":86,"target":6},{"source":84,"target":7},{"source":13,"target":0},{"source":13,"target":7},{"source":13,"target":87},{"source":13,"target":88},{"source":87,"target":6},{"source":87,"target":89},{"source":87,"target":13},{"source":89,"target":6},{"source":88,"target":7},{"source":14,"target":0},{"source":14,"target":7},{"source":14,"target":90},{"source":14,"target":91},{"source":14,"target":92},{"source":90,"target":93},{"source":90,"target":14},{"source":91,"target":6},{"source":91,"target":94},{"source":91,"target":14},{"source":94,"target":6},{"source":92,"target":7},{"source":15,"target":0},{"source":15,"target":7},{"source":15,"target":95},{"source":15,"target":96},{"source":15,"target":97},{"source":15,"target":98},{"source":95,"target":16},{"source":95,"target":99},{"source":95,"target":15},{"source":99,"target":16},{"source":96,"target":100},{"source":96,"target":15},{"source":97,"target":101},{"source":97,"target":15},{"source":98,"target":7},{"source":16,"target":0},{"source":16,"target":102},{"source":16,"target":103},{"source":102,"target":104},{"source":102,"target":16},{"source":103,"target":17},{"source":103,"target":105},{"source":103,"target":16},{"source":105,"target":17},{"source":17,"target":0},{"source":17,"target":106},{"source":17,"target":107},{"source":106,"target":108},{"source":106,"target":17},{"source":107,"target":109},{"source":107,"target":17}],"multigraph":true} |
true | <?xml version="1.0" encoding="UTF-8"?>
<!--
This file is protected by Copyright.
Please refer to the COPYRIGHT file distributed with this source distribution.
This file is part of REDHAWK IDE.
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.
-->
<ecore:EPackage xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="dpd" nsURI="http://sca.jpeojtrs.mil/dpd" nsPrefix="">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="DEVICE PACKAGE DESCRIPTOR.
The SCA Device Package Descriptor (DPD) is the part of a Device Profile that contains
hardware device Registration attributes, which are typically used by a Human Computer
Interface application to display information about the device(s) resident in an SCA-compliant
radio system. DPD information is intended to provide hardware configuration and revision
information to a radio operator or to radio maintenance personnel. A DPD may be used to
describe a single hardware element residing in a radio or it may be used to describe the complete
hardware structure of a radio. In either case, the description of the hardware structure should be
consistent with hardware partitioning as described in the Hardware Architecture Definition in
section 4.0 of the SCA."/>
</eAnnotations>
<eClassifiers xsi:type="ecore:EClass" name="Author">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="author"/>
<details key="kind" value="elementOnly"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" unique="false" upperBound="-1"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="name"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="company" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="company"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="webpage" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//AnyURI">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="webpage"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ChildHwDevice">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The childhwdevice element (see Figure D-10) indicates additional device-specific information
for hardware devices that make up the root or parent hardware device registration. An example
of childhwdevice would be a radio's RF module that has receiver and exciter functions within it.
In this case, a CF Device representing the RF module itself would be a parent Device with its
DPD, and the receiver and exciter are child devices to the module. The parent / child
relationship indicates that when the RF module is removed from the system, the receiver and
exciter devices are also removed."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="childhwdevice"/>
<details key="kind" value="elementOnly"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="hwDeviceRegistration" eType="#//HwDeviceRegistration"
containment="true" resolveProxies="false">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The hwdeviceregistration element provides device-specific information for the child hardware
device. See D.3.1.4 for definition of the hwdeviceregistration element."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="hwdeviceregistration"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="devicePkgRef" eType="#//DevicePkgRef"
containment="true" resolveProxies="false">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The devicepkgref element is used to indicate the local filename of a Device Package Descriptor
file pointed to by Device Package Descriptor (e.g., a devicepkg within a devicepkg)."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="devicepkgref"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="DeviceClass">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The deviceclass element is used to identify one or more hardware classes that make up the device
being installed (e.g., RF, Modem, I/O, as defined in SCA section 4.2.2 HWModule(s) Class
Structure)."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="deviceclass"/>
<details key="kind" value="elementOnly"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="class" unique="false" lowerBound="1"
upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="class"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="DevicePkg">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="DEVICE PACKAGE 
The SCA Device Package Descriptor (DPD) is the part of a Device Profile that contains
hardware device Registration attributes, which are typically used by a Human Computer
Interface application to display information about the device(s) resident in an SCA-compliant
radio system. DPD information is intended to provide hardware configuration and revision
information to a radio operator or to radio maintenance personnel. A DPD may be used to
describe a single hardware element residing in a radio or it may be used to describe the complete
hardware structure of a radio. In either case, the description of the hardware structure should be
consistent with hardware partitioning as described in the Hardware Architecture Definition in
section 4.0 of the SCA.

The devicepkg element (see Figure D-8) is the root element of the DPD.
"/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="devicepkg"/>
<details key="kind" value="elementOnly"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="title" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The title element is used for indicating a title for the hardware device being described by
devicepkg."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="title"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="author" lowerBound="1"
upperBound="-1" eType="#//Author" containment="true" resolveProxies="false">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="See D.2.1.3 for a definition of the author element."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="author"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="description" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The description element is used to describe any pertinent information about the device
implementation that the hardware developer wishes to document within the Device Package."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="description"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="hwDeviceRegistration" lowerBound="1"
eType="#//HwDeviceRegistration" containment="true" resolveProxies="false">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The hwdeviceregistration element (see Figure D-9) provides device-specific information for a
hardware device."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="hwdeviceregistration"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="id" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The devicepkg id
attribute uniquely identifies the package and is a DCE UUID, as defined in paragraph D.2.1."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="id"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The name
attribute is a user-friendly label for the devicepkg."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="name"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="version" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The
version attribute specifies the version of the devicepkg.

The format of the version string is
numerical major and minor version numbers separated by commas (e.g., \"1,0,0,0\")."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="version"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="DevicePkgRef">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="devicepkgref"/>
<details key="kind" value="elementOnly"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="localFile" lowerBound="1"
eType="#//LocalFile" containment="true" resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="localfile"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="type" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="type"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="DocumentRoot">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value=""/>
<details key="kind" value="mixed"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="mixed" unique="false" upperBound="-1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFeatureMapEntry">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="elementWildcard"/>
<details key="name" value=":mixed"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="xMLNSPrefixMap" upperBound="-1"
eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EStringToStringMapEntry"
transient="true" containment="true" resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="xmlns:prefix"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="xSISchemaLocation" upperBound="-1"
eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EStringToStringMapEntry"
transient="true" containment="true" resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="xsi:schemaLocation"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="author" upperBound="-2"
eType="#//Author" volatile="true" transient="true" derived="true" containment="true"
resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="author"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="childhwdevice" upperBound="-2"
eType="#//ChildHwDevice" volatile="true" transient="true" derived="true" containment="true"
resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="childhwdevice"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="class" unique="false" upperBound="-2"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String" volatile="true"
transient="true" derived="true">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="class"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="company" unique="false"
upperBound="-2" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"
volatile="true" transient="true" derived="true">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="company"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="description" unique="false"
upperBound="-2" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"
volatile="true" transient="true" derived="true">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="description"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="deviceclass" upperBound="-2"
eType="#//DeviceClass" volatile="true" transient="true" derived="true" containment="true"
resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="deviceclass"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="devicepkg" upperBound="-2"
eType="#//DevicePkg" volatile="true" transient="true" derived="true" containment="true"
resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="devicepkg"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="devicepkgref" upperBound="-2"
eType="#//DevicePkgRef" volatile="true" transient="true" derived="true" containment="true"
resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="devicepkgref"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="hwdeviceregistration" upperBound="-2"
eType="#//HwDeviceRegistration" volatile="true" transient="true" derived="true"
containment="true" resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="hwdeviceregistration"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="localfile" upperBound="-2"
eType="#//LocalFile" volatile="true" transient="true" derived="true" containment="true"
resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="localfile"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="manufacturer" unique="false"
upperBound="-2" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"
volatile="true" transient="true" derived="true">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="manufacturer"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="modelnumber" unique="false"
upperBound="-2" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"
volatile="true" transient="true" derived="true">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="modelnumber"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" unique="false" upperBound="-2"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String" volatile="true"
transient="true" derived="true">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="name"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="propertyfile" upperBound="-2"
eType="#//PropertyFile" volatile="true" transient="true" derived="true" containment="true"
resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="propertyfile"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="title" unique="false" upperBound="-2"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String" volatile="true"
transient="true" derived="true">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="title"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="webpage" unique="false"
upperBound="-2" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//AnyURI"
volatile="true" transient="true" derived="true">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="webpage"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="HwDeviceRegistration">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="
At a minimum, the hwdeviceregistration
element must include a description, the manufacturer, the model number and the device's
hardware class(es) (Refer to SCA section 4, Hardware Architecture Definition)."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="hwdeviceregistration"/>
<details key="kind" value="elementOnly"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="propertyFile" eType="#//PropertyFile"
containment="true" resolveProxies="false">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The propertyfile element is used to indicate the local filename of the property file associated with
the hwdeviceregistration element. The format of a property file is described in the Properties
Descriptor (Section D.4).

The intent of the property file is to provide the definition of properties elements for the hardware
device being deployed and described in the Device Package (devicepkg) or hwdeviceregistration
element."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="propertyfile"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="description" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="See D.2.1.4 for definition of the description element."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="description"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="manufacturer" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The manufacturer element is used to convey the name of manufacturer of the device being
installed."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="manufacturer"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="modelNumber" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The modelnumber element is used to indicate the manufacture's model number, for the device
being installed."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="modelnumber"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="deviceClass" lowerBound="1"
eType="#//DeviceClass" containment="true" resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="deviceclass"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="childHwDevice" upperBound="-1"
eType="#//ChildHwDevice" containment="true" resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="childhwdevice"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="id" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The hwdeviceregistration id attribute uniquely identifies the device and is a
DCE UUID, as defined in paragraph D.2.1."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="id"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The name attribute is a userfriendlylabel
for the hardware device being registered."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="name"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="version" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The version attribute specifies the version of the
hwdeviceregistration element. The format of the version string is numerical major and minor
version numbers separated by commas (e.g., \"1,0,0,0\")."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="version"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="LocalFile">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="localfile"/>
<details key="kind" value="empty"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="name"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="PropertyFile">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="propertyfile"/>
<details key="kind" value="elementOnly"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="localFile" lowerBound="1"
eType="#//LocalFile" containment="true" resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="localfile"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="type" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="type"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
</ecore:EPackage>
| github:ecore:/data/RedhawkSDR/mil.jpeojtrs.sca/plugins/mil.jpeojtrs.sca.dpd/model/dpd.ecore | ecore | dpd
Author
name
company
webpage
ChildHwDevice
hwDeviceRegistration
devicePkgRef
DeviceClass
class
DevicePkg
title
author
description
hwDeviceRegistration
id
name
version
DevicePkgRef
localFile
type
DocumentRoot
mixed
xMLNSPrefixMap
xSISchemaLocation
author
childhwdevice
class
company
description
deviceclass
devicepkg
devicepkgref
hwdeviceregistration
localfile
manufacturer
modelnumber
name
propertyfile
title
webpage
HwDeviceRegistration
propertyFile
description
manufacturer
modelNumber
deviceClass
childHwDevice
id
name
version
LocalFile
name
PropertyFile
localFile
type | null | {"directed":true,"nodes":[{"nsPrefix":"","nsURI":"http://sca.jpeojtrs.mil/dpd","name":"dpd","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Author","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ChildHwDevice","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DeviceClass","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DevicePkg","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DevicePkgRef","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DocumentRoot","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"HwDeviceRegistration","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LocalFile","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PropertyFile","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":10,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"company","changeable":true,"lowerBound":0,"iD":false,"id":11,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"webpage","changeable":true,"lowerBound":0,"iD":false,"id":12,"derived":false},{"id":13,"eClass":"EGenericType"},{"id":14,"eClass":"EGenericType"},{"id":15,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"hwDeviceRegistration","changeable":true,"resolveProxies":false,"lowerBound":0,"id":16,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"devicePkgRef","changeable":true,"resolveProxies":false,"lowerBound":0,"id":17,"derived":false},{"id":18,"eClass":"EGenericType"},{"id":19,"eClass":"EGenericType"},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"class","changeable":true,"lowerBound":1,"iD":false,"id":20,"derived":false},{"id":21,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"title","changeable":true,"lowerBound":0,"iD":false,"id":22,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"author","changeable":true,"resolveProxies":false,"lowerBound":1,"id":23,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"description","changeable":true,"lowerBound":0,"iD":false,"id":24,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"hwDeviceRegistration","changeable":true,"resolveProxies":false,"lowerBound":1,"id":25,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"id","changeable":true,"lowerBound":1,"iD":false,"id":26,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":27,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"version","changeable":true,"lowerBound":0,"iD":false,"id":28,"derived":false},{"id":29,"eClass":"EGenericType"},{"id":30,"eClass":"EGenericType"},{"id":31,"eClass":"EGenericType"},{"id":32,"eClass":"EGenericType"},{"id":33,"eClass":"EGenericType"},{"id":34,"eClass":"EGenericType"},{"id":35,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"localFile","changeable":true,"resolveProxies":false,"lowerBound":1,"id":36,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"lowerBound":0,"iD":false,"id":37,"derived":false},{"id":38,"eClass":"EGenericType"},{"id":39,"eClass":"EGenericType"},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"mixed","changeable":true,"lowerBound":0,"iD":false,"id":40,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":true,"unique":true,"name":"xMLNSPrefixMap","changeable":true,"resolveProxies":false,"lowerBound":0,"id":41,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":true,"unique":true,"name":"xSISchemaLocation","changeable":true,"resolveProxies":false,"lowerBound":0,"id":42,"derived":false},{"container":false,"ordered":true,"upperBound":-2,"defaultValue":null,"volatile":true,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":true,"unique":true,"name":"author","changeable":true,"resolveProxies":false,"lowerBound":0,"id":43,"derived":true},{"container":false,"ordered":true,"upperBound":-2,"defaultValue":null,"volatile":true,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":true,"unique":true,"name":"childhwdevice","changeable":true,"resolveProxies":false,"lowerBound":0,"id":44,"derived":true},{"ordered":true,"upperBound":-2,"defaultValue":null,"volatile":true,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":true,"unique":false,"name":"class","changeable":true,"lowerBound":0,"iD":false,"id":45,"derived":true},{"ordered":true,"upperBound":-2,"defaultValue":null,"volatile":true,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":true,"unique":false,"name":"company","changeable":true,"lowerBound":0,"iD":false,"id":46,"derived":true},{"ordered":true,"upperBound":-2,"defaultValue":null,"volatile":true,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":true,"unique":false,"name":"description","changeable":true,"lowerBound":0,"iD":false,"id":47,"derived":true},{"container":false,"ordered":true,"upperBound":-2,"defaultValue":null,"volatile":true,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":true,"unique":true,"name":"deviceclass","changeable":true,"resolveProxies":false,"lowerBound":0,"id":48,"derived":true},{"container":false,"ordered":true,"upperBound":-2,"defaultValue":null,"volatile":true,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":true,"unique":true,"name":"devicepkg","changeable":true,"resolveProxies":false,"lowerBound":0,"id":49,"derived":true},{"container":false,"ordered":true,"upperBound":-2,"defaultValue":null,"volatile":true,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":true,"unique":true,"name":"devicepkgref","changeable":true,"resolveProxies":false,"lowerBound":0,"id":50,"derived":true},{"container":false,"ordered":true,"upperBound":-2,"defaultValue":null,"volatile":true,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":true,"unique":true,"name":"hwdeviceregistration","changeable":true,"resolveProxies":false,"lowerBound":0,"id":51,"derived":true},{"container":false,"ordered":true,"upperBound":-2,"defaultValue":null,"volatile":true,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":true,"unique":true,"name":"localfile","changeable":true,"resolveProxies":false,"lowerBound":0,"id":52,"derived":true},{"ordered":true,"upperBound":-2,"defaultValue":null,"volatile":true,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":true,"unique":false,"name":"manufacturer","changeable":true,"lowerBound":0,"iD":false,"id":53,"derived":true},{"ordered":true,"upperBound":-2,"defaultValue":null,"volatile":true,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":true,"unique":false,"name":"modelnumber","changeable":true,"lowerBound":0,"iD":false,"id":54,"derived":true},{"ordered":true,"upperBound":-2,"defaultValue":null,"volatile":true,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":true,"unique":false,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":55,"derived":true},{"container":false,"ordered":true,"upperBound":-2,"defaultValue":null,"volatile":true,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":true,"unique":true,"name":"propertyfile","changeable":true,"resolveProxies":false,"lowerBound":0,"id":56,"derived":true},{"ordered":true,"upperBound":-2,"defaultValue":null,"volatile":true,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":true,"unique":false,"name":"title","changeable":true,"lowerBound":0,"iD":false,"id":57,"derived":true},{"ordered":true,"upperBound":-2,"defaultValue":null,"volatile":true,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":true,"unique":false,"name":"webpage","changeable":true,"lowerBound":0,"iD":false,"id":58,"derived":true},{"id":59,"eClass":"EGenericType"},{"id":60,"eClass":"EGenericType"},{"id":61,"eClass":"EGenericType"},{"id":62,"eClass":"EGenericType"},{"id":63,"eClass":"EGenericType"},{"id":64,"eClass":"EGenericType"},{"id":65,"eClass":"EGenericType"},{"id":66,"eClass":"EGenericType"},{"id":67,"eClass":"EGenericType"},{"id":68,"eClass":"EGenericType"},{"id":69,"eClass":"EGenericType"},{"id":70,"eClass":"EGenericType"},{"id":71,"eClass":"EGenericType"},{"id":72,"eClass":"EGenericType"},{"id":73,"eClass":"EGenericType"},{"id":74,"eClass":"EGenericType"},{"id":75,"eClass":"EGenericType"},{"id":76,"eClass":"EGenericType"},{"id":77,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"propertyFile","changeable":true,"resolveProxies":false,"lowerBound":0,"id":78,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"description","changeable":true,"lowerBound":1,"iD":false,"id":79,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"manufacturer","changeable":true,"lowerBound":1,"iD":false,"id":80,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"modelNumber","changeable":true,"lowerBound":1,"iD":false,"id":81,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"deviceClass","changeable":true,"resolveProxies":false,"lowerBound":1,"id":82,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"childHwDevice","changeable":true,"resolveProxies":false,"lowerBound":0,"id":83,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"id","changeable":true,"lowerBound":1,"iD":false,"id":84,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":85,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"version","changeable":true,"lowerBound":0,"iD":false,"id":86,"derived":false},{"id":87,"eClass":"EGenericType"},{"id":88,"eClass":"EGenericType"},{"id":89,"eClass":"EGenericType"},{"id":90,"eClass":"EGenericType"},{"id":91,"eClass":"EGenericType"},{"id":92,"eClass":"EGenericType"},{"id":93,"eClass":"EGenericType"},{"id":94,"eClass":"EGenericType"},{"id":95,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":96,"derived":false},{"id":97,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"localFile","changeable":true,"resolveProxies":false,"lowerBound":1,"id":98,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"lowerBound":0,"iD":false,"id":99,"derived":false},{"id":100,"eClass":"EGenericType"},{"id":101,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":0,"target":8},{"source":0,"target":9},{"source":1,"target":0},{"source":1,"target":10},{"source":1,"target":11},{"source":1,"target":12},{"source":10,"target":13},{"source":10,"target":1},{"source":11,"target":14},{"source":11,"target":1},{"source":12,"target":15},{"source":12,"target":1},{"source":2,"target":0},{"source":2,"target":16},{"source":2,"target":17},{"source":16,"target":7},{"source":16,"target":18},{"source":16,"target":2},{"source":18,"target":7},{"source":17,"target":5},{"source":17,"target":19},{"source":17,"target":2},{"source":19,"target":5},{"source":3,"target":0},{"source":3,"target":20},{"source":20,"target":21},{"source":20,"target":3},{"source":4,"target":0},{"source":4,"target":22},{"source":4,"target":23},{"source":4,"target":24},{"source":4,"target":25},{"source":4,"target":26},{"source":4,"target":27},{"source":4,"target":28},{"source":22,"target":29},{"source":22,"target":4},{"source":23,"target":1},{"source":23,"target":30},{"source":23,"target":4},{"source":30,"target":1},{"source":24,"target":31},{"source":24,"target":4},{"source":25,"target":7},{"source":25,"target":32},{"source":25,"target":4},{"source":32,"target":7},{"source":26,"target":33},{"source":26,"target":4},{"source":27,"target":34},{"source":27,"target":4},{"source":28,"target":35},{"source":28,"target":4},{"source":5,"target":0},{"source":5,"target":36},{"source":5,"target":37},{"source":36,"target":8},{"source":36,"target":38},{"source":36,"target":5},{"source":38,"target":8},{"source":37,"target":39},{"source":37,"target":5},{"source":6,"target":0},{"source":6,"target":40},{"source":6,"target":41},{"source":6,"target":42},{"source":6,"target":43},{"source":6,"target":44},{"source":6,"target":45},{"source":6,"target":46},{"source":6,"target":47},{"source":6,"target":48},{"source":6,"target":49},{"source":6,"target":50},{"source":6,"target":51},{"source":6,"target":52},{"source":6,"target":53},{"source":6,"target":54},{"source":6,"target":55},{"source":6,"target":56},{"source":6,"target":57},{"source":6,"target":58},{"source":40,"target":59},{"source":40,"target":6},{"source":41,"target":60},{"source":41,"target":6},{"source":42,"target":61},{"source":42,"target":6},{"source":43,"target":1},{"source":43,"target":62},{"source":43,"target":6},{"source":62,"target":1},{"source":44,"target":2},{"source":44,"target":63},{"source":44,"target":6},{"source":63,"target":2},{"source":45,"target":64},{"source":45,"target":6},{"source":46,"target":65},{"source":46,"target":6},{"source":47,"target":66},{"source":47,"target":6},{"source":48,"target":3},{"source":48,"target":67},{"source":48,"target":6},{"source":67,"target":3},{"source":49,"target":4},{"source":49,"target":68},{"source":49,"target":6},{"source":68,"target":4},{"source":50,"target":5},{"source":50,"target":69},{"source":50,"target":6},{"source":69,"target":5},{"source":51,"target":7},{"source":51,"target":70},{"source":51,"target":6},{"source":70,"target":7},{"source":52,"target":8},{"source":52,"target":71},{"source":52,"target":6},{"source":71,"target":8},{"source":53,"target":72},{"source":53,"target":6},{"source":54,"target":73},{"source":54,"target":6},{"source":55,"target":74},{"source":55,"target":6},{"source":56,"target":9},{"source":56,"target":75},{"source":56,"target":6},{"source":75,"target":9},{"source":57,"target":76},{"source":57,"target":6},{"source":58,"target":77},{"source":58,"target":6},{"source":7,"target":0},{"source":7,"target":78},{"source":7,"target":79},{"source":7,"target":80},{"source":7,"target":81},{"source":7,"target":82},{"source":7,"target":83},{"source":7,"target":84},{"source":7,"target":85},{"source":7,"target":86},{"source":78,"target":9},{"source":78,"target":87},{"source":78,"target":7},{"source":87,"target":9},{"source":79,"target":88},{"source":79,"target":7},{"source":80,"target":89},{"source":80,"target":7},{"source":81,"target":90},{"source":81,"target":7},{"source":82,"target":3},{"source":82,"target":91},{"source":82,"target":7},{"source":91,"target":3},{"source":83,"target":2},{"source":83,"target":92},{"source":83,"target":7},{"source":92,"target":2},{"source":84,"target":93},{"source":84,"target":7},{"source":85,"target":94},{"source":85,"target":7},{"source":86,"target":95},{"source":86,"target":7},{"source":8,"target":0},{"source":8,"target":96},{"source":96,"target":97},{"source":96,"target":8},{"source":9,"target":0},{"source":9,"target":98},{"source":9,"target":99},{"source":98,"target":8},{"source":98,"target":100},{"source":98,"target":9},{"source":100,"target":8},{"source":99,"target":101},{"source":99,"target":9}],"multigraph":true} |
false | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="fractalIDL" nsURI="http://www.ow2.org/mindEd/itf/" nsPrefix="fractalIDL">
<eClassifiers xsi:type="ecore:EClass" name="ItfFile">
<eStructuralFeatures xsi:type="ecore:EReference" name="includes" upperBound="-1"
eType="#//IncludeDirective" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="constant" upperBound="-1"
eType="#//ConstantDefinition" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="type" upperBound="-1" eType="#//TypeDefinition"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="interface" eType="#//InterfaceDefinition"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="TypeDefinition"/>
<eClassifiers xsi:type="ecore:EClass" name="TypedefSpecification" eSuperTypes="#//TypeDefinition">
<eStructuralFeatures xsi:type="ecore:EReference" name="qualifedType" eType="#//QualifiedTypeSpecification"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="dec" eType="#//Declarators"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="QualifiedTypeSpecification">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="typeQualifier" unique="false"
upperBound="-1" eType="#//TypeQualifier"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="typeSpec" eType="#//TypeSpecification"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="TypeQualifier">
<eLiterals name="const" literal="const"/>
<eLiterals name="volatile" value="1" literal="volatile"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="TypeSpecification">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="typeDefName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="typeSpecifier" unique="false"
upperBound="-1" eType="#//TypeSpecifier"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="TypeSpecifier">
<eLiterals name="void" literal="void"/>
<eLiterals name="char" value="1" literal="char"/>
<eLiterals name="short" value="2" literal="short"/>
<eLiterals name="int" value="3" literal="int"/>
<eLiterals name="long" value="4" literal="long"/>
<eLiterals name="float" value="5" literal="float"/>
<eLiterals name="double" value="6" literal="double"/>
<eLiterals name="signed" value="7" literal="signed"/>
<eLiterals name="unsigned" value="8" literal="unsigned"/>
<eLiterals name="string" value="9" literal="string"/>
<eLiterals name="int8_t" value="10" literal="int8_t"/>
<eLiterals name="uint8_t" value="11" literal="uint8_t"/>
<eLiterals name="int16_t" value="12" literal="int16_t"/>
<eLiterals name="uint16_t" value="13" literal="uint16_t"/>
<eLiterals name="int32_t" value="14" literal="int32_t"/>
<eLiterals name="uint32_t" value="15" literal="uint32_t"/>
<eLiterals name="int64_t" value="16" literal="int64_t"/>
<eLiterals name="uint64_t" value="17" literal="uint64_t"/>
<eLiterals name="intptr_t" value="18" literal="intptr_t"/>
<eLiterals name="uintptr_t" value="19" literal="uintptr_t"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="StructOrUnionSpecification" eSuperTypes="#//TypeDefinition #//TypeSpecification">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="struct" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="id" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="StructOrUnionDefinition" eSuperTypes="#//StructOrUnionSpecification">
<eStructuralFeatures xsi:type="ecore:EReference" name="structMember" upperBound="-1"
eType="#//StructMember" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="StructorUnionReference" eSuperTypes="#//StructOrUnionSpecification"/>
<eClassifiers xsi:type="ecore:EClass" name="StructMember">
<eStructuralFeatures xsi:type="ecore:EReference" name="annotations" eType="#//Annotations"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="qualType" eType="#//QualifiedTypeSpecification"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="dec" eType="#//Declarators"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="constExpr" eType="#//ConstantExpression"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EnumSpecification" eSuperTypes="#//TypeDefinition #//TypeSpecification">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="id" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EnumDefinition" eSuperTypes="#//EnumSpecification">
<eStructuralFeatures xsi:type="ecore:EReference" name="enumMemberList" eType="#//EnumMemberList"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EnumReference" eSuperTypes="#//EnumSpecification"/>
<eClassifiers xsi:type="ecore:EClass" name="EnumMemberList"/>
<eClassifiers xsi:type="ecore:EClass" name="EnumMember" eSuperTypes="#//EnumMemberList">
<eStructuralFeatures xsi:type="ecore:EReference" name="enumMember" upperBound="-1"
eType="#//EnumMember" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="annotations" eType="#//Annotations"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="id" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="constExpr" eType="#//ConstantExpression"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Declarators">
<eStructuralFeatures xsi:type="ecore:EReference" name="dec" eType="#//Declarator"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="declaratorList" upperBound="-1"
eType="#//Declarator" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Declarator">
<eStructuralFeatures xsi:type="ecore:EReference" name="pointer" eType="#//PointerSpecification"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="dc" eType="#//DirectDeclarator"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="AbstractDeclarator">
<eStructuralFeatures xsi:type="ecore:EReference" name="pointer" eType="#//PointerSpecification"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="dc" eType="#//AbstractDirectDeclarator"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="PointerSpecification">
<eStructuralFeatures xsi:type="ecore:EReference" name="qualifiedPointer" upperBound="-1"
eType="#//Qualified_PointerSpecification" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Qualified_PointerSpecification">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="typeQualifier" unique="false"
upperBound="-1" eType="#//TypeQualifier"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="DirectDeclarator">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="id" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="dec" eType="#//Declarator"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="array" upperBound="-1"
eType="#//ArraySpecification" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="AbstractDirectDeclarator">
<eStructuralFeatures xsi:type="ecore:EReference" name="dec" eType="#//AbstractDeclarator"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="arrays" upperBound="-1"
eType="#//ArraySpecification" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="array" upperBound="-1"
eType="#//ArraySpecification" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ArraySpecification">
<eStructuralFeatures xsi:type="ecore:EReference" name="constExpr" eType="#//ConstantExpression"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ConstantDefinition">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="id" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="expr" eType="#//ConstantExpression"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="InterfaceDefinition">
<eStructuralFeatures xsi:type="ecore:EReference" name="annotations" eType="#//Annotations"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="fqn2" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="methodDef" upperBound="-1"
eType="#//MethodDefinition" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="MethodDefinition">
<eStructuralFeatures xsi:type="ecore:EReference" name="annotations" eType="#//Annotations"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="qualifiedTypeSpec" eType="#//QualifiedTypeSpecification"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="pointerSpecification" eType="#//PointerSpecification"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="id" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="ParameterList" eType="#//ParameterList"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ParameterList">
<eStructuralFeatures xsi:type="ecore:EReference" name="param" eType="#//Parameter"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="params" upperBound="-1"
eType="#//Parameter" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Parameter">
<eStructuralFeatures xsi:type="ecore:EReference" name="annotations" eType="#//Annotations"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="ParameterQualifier" unique="false"
upperBound="-1" eType="#//ParameterQualifier"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="qualifiedTypeSpec" eType="#//QualifiedTypeSpecification"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="dec" eType="#//Declarator"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="absDec" eType="#//AbstractDeclarator"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="ParameterQualifier">
<eLiterals name="in" literal="in"/>
<eLiterals name="out" value="1" literal="out"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="IncludeDirective">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="importedURI" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="includeID" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Annotations">
<eStructuralFeatures xsi:type="ecore:EReference" name="annotations" upperBound="-1"
eType="#//Annotation" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Annotation" eSuperTypes="#//AnnotationValue">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="fqn" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="annotationParamaters" eType="#//AnnotationParameters"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="AnnotationParameters">
<eStructuralFeatures xsi:type="ecore:EReference" name="valuePair" eType="#//AnnotationValuePairs"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="value" eType="#//AnnotationValue"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="AnnotationValuePairs">
<eStructuralFeatures xsi:type="ecore:EReference" name="first" eType="#//AnnotationValuePair"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="listValue" upperBound="-1"
eType="#//AnnotationValuePair" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="AnnotationValuePair">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="id" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="value" eType="#//AnnotationValue"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="AnnotationValue"/>
<eClassifiers xsi:type="ecore:EClass" name="ArrayAnnotationValue" eSuperTypes="#//AnnotationValue">
<eStructuralFeatures xsi:type="ecore:EReference" name="firstValue" eType="#//AnnotationValue"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="values" upperBound="-1"
eType="#//AnnotationValue" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ConstantExpression" eSuperTypes="#//PrimaryExpression"/>
<eClassifiers xsi:type="ecore:EClass" name="LogicalOrExpression" eSuperTypes="#//ConstantExpression">
<eStructuralFeatures xsi:type="ecore:EReference" name="leftExpr" eType="#//LogicalAndExpression"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="rightExpr" eType="#//LogicalOrExpression"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="LogicalAndExpression">
<eStructuralFeatures xsi:type="ecore:EReference" name="leftExpr" eType="#//OrExpression"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="rightExpr" eType="#//LogicalAndExpression"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="OrExpression">
<eStructuralFeatures xsi:type="ecore:EReference" name="leftExpr" eType="#//XorExpression"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="rightExpr" eType="#//OrExpression"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="XorExpression">
<eStructuralFeatures xsi:type="ecore:EReference" name="leftExpr" eType="#//AndExpression"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="rightExpr" eType="#//XorExpression"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="AndExpression">
<eStructuralFeatures xsi:type="ecore:EReference" name="leftExpr" eType="#//ShiftExpression"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="rightExpr" eType="#//AndExpression"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ShiftExpression">
<eStructuralFeatures xsi:type="ecore:EReference" name="leftExpr" eType="#//AdditiveExpression"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="op" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="rightExpr" eType="#//ShiftExpression"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="AdditiveExpression">
<eStructuralFeatures xsi:type="ecore:EReference" name="leftExpr" eType="#//MulExpression"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="op" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="rightExpr" eType="#//AdditiveExpression"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="MulExpression">
<eStructuralFeatures xsi:type="ecore:EReference" name="leftExpr" eType="#//CastExpression"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="op" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="rightExpr" eType="#//MulExpression"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CastExpression">
<eStructuralFeatures xsi:type="ecore:EReference" name="type" eType="#//QualifiedTypeSpecification"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="expr" eType="#//CastExpression"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="unaryExpr" eType="#//UnaryExpression"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="UnaryExpression">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="unaryExpr" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="primaryExpr" eType="#//PrimaryExpression"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="PrimaryExpression">
<eStructuralFeatures xsi:type="ecore:EReference" name="literal" eType="#//Literal"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Literal">
<eStructuralFeatures xsi:type="ecore:EReference" name="ref" eType="#//ConstantDefinition"/>
</eClassifiers>
</ecore:EPackage>
| github:ecore:/data/MDEGroup/QMM-COMLAN-data/validation-subjects/metamodels/FractalItf.ecore | ecore | fractalIDL
ItfFile
includes
constant
type
interface
TypeDefinition
TypedefSpecification
qualifedType
dec
QualifiedTypeSpecification
typeQualifier
typeSpec
TypeQualifier
const
const
volatile
volatile
TypeSpecification
typeDefName
typeSpecifier
TypeSpecifier
void
void
char
char
short
short
int
int
long
long
float
float
double
double
signed
signed
unsigned
unsigned
string
string
int8_t
int8_t
uint8_t
uint8_t
int16_t
int16_t
uint16_t
uint16_t
int32_t
int32_t
uint32_t
uint32_t
int64_t
int64_t
uint64_t
uint64_t
intptr_t
intptr_t
uintptr_t
uintptr_t
StructOrUnionSpecification
struct
id
StructOrUnionDefinition
structMember
StructorUnionReference
StructMember
annotations
qualType
dec
constExpr
EnumSpecification
id
EnumDefinition
enumMemberList
EnumReference
EnumMemberList
EnumMember
enumMember
annotations
id
constExpr
Declarators
dec
declaratorList
Declarator
pointer
dc
AbstractDeclarator
pointer
dc
PointerSpecification
qualifiedPointer
Qualified_PointerSpecification
typeQualifier
DirectDeclarator
id
dec
array
AbstractDirectDeclarator
dec
arrays
array
ArraySpecification
constExpr
ConstantDefinition
id
expr
InterfaceDefinition
annotations
name
fqn2
methodDef
MethodDefinition
annotations
qualifiedTypeSpec
pointerSpecification
id
ParameterList
ParameterList
param
params
Parameter
annotations
ParameterQualifier
qualifiedTypeSpec
dec
absDec
ParameterQualifier
in
in
out
out
IncludeDirective
importedURI
includeID
Annotations
annotations
Annotation
fqn
annotationParamaters
AnnotationParameters
valuePair
value
AnnotationValuePairs
first
listValue
AnnotationValuePair
id
value
AnnotationValue
ArrayAnnotationValue
firstValue
values
ConstantExpression
LogicalOrExpression
leftExpr
rightExpr
LogicalAndExpression
leftExpr
rightExpr
OrExpression
leftExpr
rightExpr
XorExpression
leftExpr
rightExpr
AndExpression
leftExpr
rightExpr
ShiftExpression
leftExpr
op
rightExpr
AdditiveExpression
leftExpr
op
rightExpr
MulExpression
leftExpr
op
rightExpr
CastExpression
type
expr
unaryExpr
UnaryExpression
unaryExpr
primaryExpr
PrimaryExpression
literal
Literal
ref | null | {"directed":true,"nodes":[{"nsPrefix":"fractalIDL","nsURI":"http://www.ow2.org/mindEd/itf/","name":"fractalIDL","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ItfFile","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TypeDefinition","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TypedefSpecification","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"QualifiedTypeSpecification","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"TypeQualifier","instanceClass":null,"id":5,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TypeSpecification","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"TypeSpecifier","instanceClass":null,"id":7,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StructOrUnionSpecification","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StructOrUnionDefinition","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StructorUnionReference","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StructMember","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EnumSpecification","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EnumDefinition","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EnumReference","instanceClass":null,"abstract":false,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EnumMemberList","instanceClass":null,"abstract":false,"id":15,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EnumMember","instanceClass":null,"abstract":false,"id":16,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Declarators","instanceClass":null,"abstract":false,"id":17,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Declarator","instanceClass":null,"abstract":false,"id":18,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AbstractDeclarator","instanceClass":null,"abstract":false,"id":19,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PointerSpecification","instanceClass":null,"abstract":false,"id":20,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Qualified_PointerSpecification","instanceClass":null,"abstract":false,"id":21,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DirectDeclarator","instanceClass":null,"abstract":false,"id":22,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AbstractDirectDeclarator","instanceClass":null,"abstract":false,"id":23,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ArraySpecification","instanceClass":null,"abstract":false,"id":24,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ConstantDefinition","instanceClass":null,"abstract":false,"id":25,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InterfaceDefinition","instanceClass":null,"abstract":false,"id":26,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MethodDefinition","instanceClass":null,"abstract":false,"id":27,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ParameterList","instanceClass":null,"abstract":false,"id":28,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Parameter","instanceClass":null,"abstract":false,"id":29,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"ParameterQualifier","instanceClass":null,"id":30,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IncludeDirective","instanceClass":null,"abstract":false,"id":31,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Annotations","instanceClass":null,"abstract":false,"id":32,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Annotation","instanceClass":null,"abstract":false,"id":33,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AnnotationParameters","instanceClass":null,"abstract":false,"id":34,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AnnotationValuePairs","instanceClass":null,"abstract":false,"id":35,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AnnotationValuePair","instanceClass":null,"abstract":false,"id":36,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AnnotationValue","instanceClass":null,"abstract":false,"id":37,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ArrayAnnotationValue","instanceClass":null,"abstract":false,"id":38,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ConstantExpression","instanceClass":null,"abstract":false,"id":39,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LogicalOrExpression","instanceClass":null,"abstract":false,"id":40,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LogicalAndExpression","instanceClass":null,"abstract":false,"id":41,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OrExpression","instanceClass":null,"abstract":false,"id":42,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"XorExpression","instanceClass":null,"abstract":false,"id":43,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AndExpression","instanceClass":null,"abstract":false,"id":44,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ShiftExpression","instanceClass":null,"abstract":false,"id":45,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AdditiveExpression","instanceClass":null,"abstract":false,"id":46,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MulExpression","instanceClass":null,"abstract":false,"id":47,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CastExpression","instanceClass":null,"abstract":false,"id":48,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"UnaryExpression","instanceClass":null,"abstract":false,"id":49,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PrimaryExpression","instanceClass":null,"abstract":false,"id":50,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Literal","instanceClass":null,"abstract":false,"id":51,"interface":false,"eClass":"EClass"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"includes","changeable":true,"resolveProxies":true,"lowerBound":0,"id":52,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"constant","changeable":true,"resolveProxies":true,"lowerBound":0,"id":53,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"resolveProxies":true,"lowerBound":0,"id":54,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"interface","changeable":true,"resolveProxies":true,"lowerBound":0,"id":55,"derived":false},{"id":56,"eClass":"EGenericType"},{"id":57,"eClass":"EGenericType"},{"id":58,"eClass":"EGenericType"},{"id":59,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"qualifedType","changeable":true,"resolveProxies":true,"lowerBound":0,"id":60,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"dec","changeable":true,"resolveProxies":true,"lowerBound":0,"id":61,"derived":false},{"id":62,"eClass":"EGenericType"},{"id":63,"eClass":"EGenericType"},{"id":64,"eClass":"EGenericType"},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"typeQualifier","changeable":true,"lowerBound":0,"iD":false,"id":65,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"typeSpec","changeable":true,"resolveProxies":true,"lowerBound":0,"id":66,"derived":false},{"id":67,"eClass":"EGenericType"},{"id":68,"eClass":"EGenericType"},{"name":"const","id":69,"value":0,"literal":"const","eClass":"EEnumLiteral"},{"name":"volatile","id":70,"value":1,"literal":"volatile","eClass":"EEnumLiteral"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"typeDefName","changeable":true,"lowerBound":0,"iD":false,"id":71,"derived":false},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"typeSpecifier","changeable":true,"lowerBound":0,"iD":false,"id":72,"derived":false},{"id":73,"eClass":"EGenericType"},{"id":74,"eClass":"EGenericType"},{"name":"void","id":75,"value":0,"literal":"void","eClass":"EEnumLiteral"},{"name":"char","id":76,"value":1,"literal":"char","eClass":"EEnumLiteral"},{"name":"short","id":77,"value":2,"literal":"short","eClass":"EEnumLiteral"},{"name":"int","id":78,"value":3,"literal":"int","eClass":"EEnumLiteral"},{"name":"long","id":79,"value":4,"literal":"long","eClass":"EEnumLiteral"},{"name":"float","id":80,"value":5,"literal":"float","eClass":"EEnumLiteral"},{"name":"double","id":81,"value":6,"literal":"double","eClass":"EEnumLiteral"},{"name":"signed","id":82,"value":7,"literal":"signed","eClass":"EEnumLiteral"},{"name":"unsigned","id":83,"value":8,"literal":"unsigned","eClass":"EEnumLiteral"},{"name":"string","id":84,"value":9,"literal":"string","eClass":"EEnumLiteral"},{"name":"int8_t","id":85,"value":10,"literal":"int8_t","eClass":"EEnumLiteral"},{"name":"uint8_t","id":86,"value":11,"literal":"uint8_t","eClass":"EEnumLiteral"},{"name":"int16_t","id":87,"value":12,"literal":"int16_t","eClass":"EEnumLiteral"},{"name":"uint16_t","id":88,"value":13,"literal":"uint16_t","eClass":"EEnumLiteral"},{"name":"int32_t","id":89,"value":14,"literal":"int32_t","eClass":"EEnumLiteral"},{"name":"uint32_t","id":90,"value":15,"literal":"uint32_t","eClass":"EEnumLiteral"},{"name":"int64_t","id":91,"value":16,"literal":"int64_t","eClass":"EEnumLiteral"},{"name":"uint64_t","id":92,"value":17,"literal":"uint64_t","eClass":"EEnumLiteral"},{"name":"intptr_t","id":93,"value":18,"literal":"intptr_t","eClass":"EEnumLiteral"},{"name":"uintptr_t","id":94,"value":19,"literal":"uintptr_t","eClass":"EEnumLiteral"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"struct","changeable":true,"lowerBound":0,"iD":false,"id":95,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"id","changeable":true,"lowerBound":0,"iD":false,"id":96,"derived":false},{"id":97,"eClass":"EGenericType"},{"id":98,"eClass":"EGenericType"},{"id":99,"eClass":"EGenericType"},{"id":100,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"structMember","changeable":true,"resolveProxies":true,"lowerBound":0,"id":101,"derived":false},{"id":102,"eClass":"EGenericType"},{"id":103,"eClass":"EGenericType"},{"id":104,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"annotations","changeable":true,"resolveProxies":true,"lowerBound":0,"id":105,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"qualType","changeable":true,"resolveProxies":true,"lowerBound":0,"id":106,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"dec","changeable":true,"resolveProxies":true,"lowerBound":0,"id":107,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"constExpr","changeable":true,"resolveProxies":true,"lowerBound":0,"id":108,"derived":false},{"id":109,"eClass":"EGenericType"},{"id":110,"eClass":"EGenericType"},{"id":111,"eClass":"EGenericType"},{"id":112,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"id","changeable":true,"lowerBound":0,"iD":false,"id":113,"derived":false},{"id":114,"eClass":"EGenericType"},{"id":115,"eClass":"EGenericType"},{"id":116,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"enumMemberList","changeable":true,"resolveProxies":true,"lowerBound":0,"id":117,"derived":false},{"id":118,"eClass":"EGenericType"},{"id":119,"eClass":"EGenericType"},{"id":120,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"enumMember","changeable":true,"resolveProxies":true,"lowerBound":0,"id":121,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"annotations","changeable":true,"resolveProxies":true,"lowerBound":0,"id":122,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"id","changeable":true,"lowerBound":0,"iD":false,"id":123,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"constExpr","changeable":true,"resolveProxies":true,"lowerBound":0,"id":124,"derived":false},{"id":125,"eClass":"EGenericType"},{"id":126,"eClass":"EGenericType"},{"id":127,"eClass":"EGenericType"},{"id":128,"eClass":"EGenericType"},{"id":129,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"dec","changeable":true,"resolveProxies":true,"lowerBound":0,"id":130,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"declaratorList","changeable":true,"resolveProxies":true,"lowerBound":0,"id":131,"derived":false},{"id":132,"eClass":"EGenericType"},{"id":133,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"pointer","changeable":true,"resolveProxies":true,"lowerBound":0,"id":134,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"dc","changeable":true,"resolveProxies":true,"lowerBound":0,"id":135,"derived":false},{"id":136,"eClass":"EGenericType"},{"id":137,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"pointer","changeable":true,"resolveProxies":true,"lowerBound":0,"id":138,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"dc","changeable":true,"resolveProxies":true,"lowerBound":0,"id":139,"derived":false},{"id":140,"eClass":"EGenericType"},{"id":141,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"qualifiedPointer","changeable":true,"resolveProxies":true,"lowerBound":0,"id":142,"derived":false},{"id":143,"eClass":"EGenericType"},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"typeQualifier","changeable":true,"lowerBound":0,"iD":false,"id":144,"derived":false},{"id":145,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"id","changeable":true,"lowerBound":0,"iD":false,"id":146,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"dec","changeable":true,"resolveProxies":true,"lowerBound":0,"id":147,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"array","changeable":true,"resolveProxies":true,"lowerBound":0,"id":148,"derived":false},{"id":149,"eClass":"EGenericType"},{"id":150,"eClass":"EGenericType"},{"id":151,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"dec","changeable":true,"resolveProxies":true,"lowerBound":0,"id":152,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"arrays","changeable":true,"resolveProxies":true,"lowerBound":0,"id":153,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"array","changeable":true,"resolveProxies":true,"lowerBound":0,"id":154,"derived":false},{"id":155,"eClass":"EGenericType"},{"id":156,"eClass":"EGenericType"},{"id":157,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"constExpr","changeable":true,"resolveProxies":true,"lowerBound":0,"id":158,"derived":false},{"id":159,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"id","changeable":true,"lowerBound":0,"iD":false,"id":160,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"expr","changeable":true,"resolveProxies":true,"lowerBound":0,"id":161,"derived":false},{"id":162,"eClass":"EGenericType"},{"id":163,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"annotations","changeable":true,"resolveProxies":true,"lowerBound":0,"id":164,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":165,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"fqn2","changeable":true,"lowerBound":0,"iD":false,"id":166,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"methodDef","changeable":true,"resolveProxies":true,"lowerBound":0,"id":167,"derived":false},{"id":168,"eClass":"EGenericType"},{"id":169,"eClass":"EGenericType"},{"id":170,"eClass":"EGenericType"},{"id":171,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"annotations","changeable":true,"resolveProxies":true,"lowerBound":0,"id":172,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"qualifiedTypeSpec","changeable":true,"resolveProxies":true,"lowerBound":0,"id":173,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"pointerSpecification","changeable":true,"resolveProxies":true,"lowerBound":0,"id":174,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"id","changeable":true,"lowerBound":0,"iD":false,"id":175,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"ParameterList","changeable":true,"resolveProxies":true,"lowerBound":0,"id":176,"derived":false},{"id":177,"eClass":"EGenericType"},{"id":178,"eClass":"EGenericType"},{"id":179,"eClass":"EGenericType"},{"id":180,"eClass":"EGenericType"},{"id":181,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"param","changeable":true,"resolveProxies":true,"lowerBound":0,"id":182,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"params","changeable":true,"resolveProxies":true,"lowerBound":0,"id":183,"derived":false},{"id":184,"eClass":"EGenericType"},{"id":185,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"annotations","changeable":true,"resolveProxies":true,"lowerBound":0,"id":186,"derived":false},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"ParameterQualifier","changeable":true,"lowerBound":0,"iD":false,"id":187,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"qualifiedTypeSpec","changeable":true,"resolveProxies":true,"lowerBound":0,"id":188,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"dec","changeable":true,"resolveProxies":true,"lowerBound":0,"id":189,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"absDec","changeable":true,"resolveProxies":true,"lowerBound":0,"id":190,"derived":false},{"id":191,"eClass":"EGenericType"},{"id":192,"eClass":"EGenericType"},{"id":193,"eClass":"EGenericType"},{"id":194,"eClass":"EGenericType"},{"id":195,"eClass":"EGenericType"},{"name":"in","id":196,"value":0,"literal":"in","eClass":"EEnumLiteral"},{"name":"out","id":197,"value":1,"literal":"out","eClass":"EEnumLiteral"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"importedURI","changeable":true,"lowerBound":0,"iD":false,"id":198,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"includeID","changeable":true,"lowerBound":0,"iD":false,"id":199,"derived":false},{"id":200,"eClass":"EGenericType"},{"id":201,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"annotations","changeable":true,"resolveProxies":true,"lowerBound":0,"id":202,"derived":false},{"id":203,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"fqn","changeable":true,"lowerBound":0,"iD":false,"id":204,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"annotationParamaters","changeable":true,"resolveProxies":true,"lowerBound":0,"id":205,"derived":false},{"id":206,"eClass":"EGenericType"},{"id":207,"eClass":"EGenericType"},{"id":208,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"valuePair","changeable":true,"resolveProxies":true,"lowerBound":0,"id":209,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"resolveProxies":true,"lowerBound":0,"id":210,"derived":false},{"id":211,"eClass":"EGenericType"},{"id":212,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"first","changeable":true,"resolveProxies":true,"lowerBound":0,"id":213,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"listValue","changeable":true,"resolveProxies":true,"lowerBound":0,"id":214,"derived":false},{"id":215,"eClass":"EGenericType"},{"id":216,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"id","changeable":true,"lowerBound":0,"iD":false,"id":217,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"resolveProxies":true,"lowerBound":0,"id":218,"derived":false},{"id":219,"eClass":"EGenericType"},{"id":220,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"firstValue","changeable":true,"resolveProxies":true,"lowerBound":0,"id":221,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"values","changeable":true,"resolveProxies":true,"lowerBound":0,"id":222,"derived":false},{"id":223,"eClass":"EGenericType"},{"id":224,"eClass":"EGenericType"},{"id":225,"eClass":"EGenericType"},{"id":226,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"leftExpr","changeable":true,"resolveProxies":true,"lowerBound":0,"id":227,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"rightExpr","changeable":true,"resolveProxies":true,"lowerBound":0,"id":228,"derived":false},{"id":229,"eClass":"EGenericType"},{"id":230,"eClass":"EGenericType"},{"id":231,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"leftExpr","changeable":true,"resolveProxies":true,"lowerBound":0,"id":232,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"rightExpr","changeable":true,"resolveProxies":true,"lowerBound":0,"id":233,"derived":false},{"id":234,"eClass":"EGenericType"},{"id":235,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"leftExpr","changeable":true,"resolveProxies":true,"lowerBound":0,"id":236,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"rightExpr","changeable":true,"resolveProxies":true,"lowerBound":0,"id":237,"derived":false},{"id":238,"eClass":"EGenericType"},{"id":239,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"leftExpr","changeable":true,"resolveProxies":true,"lowerBound":0,"id":240,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"rightExpr","changeable":true,"resolveProxies":true,"lowerBound":0,"id":241,"derived":false},{"id":242,"eClass":"EGenericType"},{"id":243,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"leftExpr","changeable":true,"resolveProxies":true,"lowerBound":0,"id":244,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"rightExpr","changeable":true,"resolveProxies":true,"lowerBound":0,"id":245,"derived":false},{"id":246,"eClass":"EGenericType"},{"id":247,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"leftExpr","changeable":true,"resolveProxies":true,"lowerBound":0,"id":248,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"op","changeable":true,"lowerBound":0,"iD":false,"id":249,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"rightExpr","changeable":true,"resolveProxies":true,"lowerBound":0,"id":250,"derived":false},{"id":251,"eClass":"EGenericType"},{"id":252,"eClass":"EGenericType"},{"id":253,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"leftExpr","changeable":true,"resolveProxies":true,"lowerBound":0,"id":254,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"op","changeable":true,"lowerBound":0,"iD":false,"id":255,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"rightExpr","changeable":true,"resolveProxies":true,"lowerBound":0,"id":256,"derived":false},{"id":257,"eClass":"EGenericType"},{"id":258,"eClass":"EGenericType"},{"id":259,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"leftExpr","changeable":true,"resolveProxies":true,"lowerBound":0,"id":260,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"op","changeable":true,"lowerBound":0,"iD":false,"id":261,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"rightExpr","changeable":true,"resolveProxies":true,"lowerBound":0,"id":262,"derived":false},{"id":263,"eClass":"EGenericType"},{"id":264,"eClass":"EGenericType"},{"id":265,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"resolveProxies":true,"lowerBound":0,"id":266,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"expr","changeable":true,"resolveProxies":true,"lowerBound":0,"id":267,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"unaryExpr","changeable":true,"resolveProxies":true,"lowerBound":0,"id":268,"derived":false},{"id":269,"eClass":"EGenericType"},{"id":270,"eClass":"EGenericType"},{"id":271,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"unaryExpr","changeable":true,"lowerBound":0,"iD":false,"id":272,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"primaryExpr","changeable":true,"resolveProxies":true,"lowerBound":0,"id":273,"derived":false},{"id":274,"eClass":"EGenericType"},{"id":275,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"literal","changeable":true,"resolveProxies":true,"lowerBound":0,"id":276,"derived":false},{"id":277,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"ref","changeable":true,"resolveProxies":true,"lowerBound":0,"id":278,"derived":false},{"id":279,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":0,"target":8},{"source":0,"target":9},{"source":0,"target":10},{"source":0,"target":11},{"source":0,"target":12},{"source":0,"target":13},{"source":0,"target":14},{"source":0,"target":15},{"source":0,"target":16},{"source":0,"target":17},{"source":0,"target":18},{"source":0,"target":19},{"source":0,"target":20},{"source":0,"target":21},{"source":0,"target":22},{"source":0,"target":23},{"source":0,"target":24},{"source":0,"target":25},{"source":0,"target":26},{"source":0,"target":27},{"source":0,"target":28},{"source":0,"target":29},{"source":0,"target":30},{"source":0,"target":31},{"source":0,"target":32},{"source":0,"target":33},{"source":0,"target":34},{"source":0,"target":35},{"source":0,"target":36},{"source":0,"target":37},{"source":0,"target":38},{"source":0,"target":39},{"source":0,"target":40},{"source":0,"target":41},{"source":0,"target":42},{"source":0,"target":43},{"source":0,"target":44},{"source":0,"target":45},{"source":0,"target":46},{"source":0,"target":47},{"source":0,"target":48},{"source":0,"target":49},{"source":0,"target":50},{"source":0,"target":51},{"source":1,"target":0},{"source":1,"target":52},{"source":1,"target":53},{"source":1,"target":54},{"source":1,"target":55},{"source":52,"target":31},{"source":52,"target":56},{"source":52,"target":1},{"source":56,"target":31},{"source":53,"target":25},{"source":53,"target":57},{"source":53,"target":1},{"source":57,"target":25},{"source":54,"target":2},{"source":54,"target":58},{"source":54,"target":1},{"source":58,"target":2},{"source":55,"target":26},{"source":55,"target":59},{"source":55,"target":1},{"source":59,"target":26},{"source":2,"target":0},{"source":3,"target":0},{"source":3,"target":2},{"source":3,"target":60},{"source":3,"target":61},{"source":3,"target":62},{"source":60,"target":4},{"source":60,"target":63},{"source":60,"target":3},{"source":63,"target":4},{"source":61,"target":17},{"source":61,"target":64},{"source":61,"target":3},{"source":64,"target":17},{"source":62,"target":2},{"source":4,"target":0},{"source":4,"target":65},{"source":4,"target":66},{"source":65,"target":5},{"source":65,"target":67},{"source":65,"target":4},{"source":67,"target":5},{"source":66,"target":6},{"source":66,"target":68},{"source":66,"target":4},{"source":68,"target":6},{"source":5,"target":0},{"source":5,"target":69},{"source":5,"target":70},{"source":69,"target":5},{"source":70,"target":5},{"source":6,"target":0},{"source":6,"target":71},{"source":6,"target":72},{"source":71,"target":73},{"source":71,"target":6},{"source":72,"target":7},{"source":72,"target":74},{"source":72,"target":6},{"source":74,"target":7},{"source":7,"target":0},{"source":7,"target":75},{"source":7,"target":76},{"source":7,"target":77},{"source":7,"target":78},{"source":7,"target":79},{"source":7,"target":80},{"source":7,"target":81},{"source":7,"target":82},{"source":7,"target":83},{"source":7,"target":84},{"source":7,"target":85},{"source":7,"target":86},{"source":7,"target":87},{"source":7,"target":88},{"source":7,"target":89},{"source":7,"target":90},{"source":7,"target":91},{"source":7,"target":92},{"source":7,"target":93},{"source":7,"target":94},{"source":75,"target":7},{"source":76,"target":7},{"source":77,"target":7},{"source":78,"target":7},{"source":79,"target":7},{"source":80,"target":7},{"source":81,"target":7},{"source":82,"target":7},{"source":83,"target":7},{"source":84,"target":7},{"source":85,"target":7},{"source":86,"target":7},{"source":87,"target":7},{"source":88,"target":7},{"source":89,"target":7},{"source":90,"target":7},{"source":91,"target":7},{"source":92,"target":7},{"source":93,"target":7},{"source":94,"target":7},{"source":8,"target":0},{"source":8,"target":2},{"source":8,"target":6},{"source":8,"target":95},{"source":8,"target":96},{"source":8,"target":97},{"source":8,"target":98},{"source":95,"target":99},{"source":95,"target":8},{"source":96,"target":100},{"source":96,"target":8},{"source":97,"target":2},{"source":98,"target":6},{"source":9,"target":0},{"source":9,"target":8},{"source":9,"target":101},{"source":9,"target":102},{"source":101,"target":11},{"source":101,"target":103},{"source":101,"target":9},{"source":103,"target":11},{"source":102,"target":8},{"source":10,"target":0},{"source":10,"target":8},{"source":10,"target":104},{"source":104,"target":8},{"source":11,"target":0},{"source":11,"target":105},{"source":11,"target":106},{"source":11,"target":107},{"source":11,"target":108},{"source":105,"target":32},{"source":105,"target":109},{"source":105,"target":11},{"source":109,"target":32},{"source":106,"target":4},{"source":106,"target":110},{"source":106,"target":11},{"source":110,"target":4},{"source":107,"target":17},{"source":107,"target":111},{"source":107,"target":11},{"source":111,"target":17},{"source":108,"target":39},{"source":108,"target":112},{"source":108,"target":11},{"source":112,"target":39},{"source":12,"target":0},{"source":12,"target":2},{"source":12,"target":6},{"source":12,"target":113},{"source":12,"target":114},{"source":12,"target":115},{"source":113,"target":116},{"source":113,"target":12},{"source":114,"target":2},{"source":115,"target":6},{"source":13,"target":0},{"source":13,"target":12},{"source":13,"target":117},{"source":13,"target":118},{"source":117,"target":15},{"source":117,"target":119},{"source":117,"target":13},{"source":119,"target":15},{"source":118,"target":12},{"source":14,"target":0},{"source":14,"target":12},{"source":14,"target":120},{"source":120,"target":12},{"source":15,"target":0},{"source":16,"target":0},{"source":16,"target":15},{"source":16,"target":121},{"source":16,"target":122},{"source":16,"target":123},{"source":16,"target":124},{"source":16,"target":125},{"source":121,"target":16},{"source":121,"target":126},{"source":121,"target":16},{"source":126,"target":16},{"source":122,"target":32},{"source":122,"target":127},{"source":122,"target":16},{"source":127,"target":32},{"source":123,"target":128},{"source":123,"target":16},{"source":124,"target":39},{"source":124,"target":129},{"source":124,"target":16},{"source":129,"target":39},{"source":125,"target":15},{"source":17,"target":0},{"source":17,"target":130},{"source":17,"target":131},{"source":130,"target":18},{"source":130,"target":132},{"source":130,"target":17},{"source":132,"target":18},{"source":131,"target":18},{"source":131,"target":133},{"source":131,"target":17},{"source":133,"target":18},{"source":18,"target":0},{"source":18,"target":134},{"source":18,"target":135},{"source":134,"target":20},{"source":134,"target":136},{"source":134,"target":18},{"source":136,"target":20},{"source":135,"target":22},{"source":135,"target":137},{"source":135,"target":18},{"source":137,"target":22},{"source":19,"target":0},{"source":19,"target":138},{"source":19,"target":139},{"source":138,"target":20},{"source":138,"target":140},{"source":138,"target":19},{"source":140,"target":20},{"source":139,"target":23},{"source":139,"target":141},{"source":139,"target":19},{"source":141,"target":23},{"source":20,"target":0},{"source":20,"target":142},{"source":142,"target":21},{"source":142,"target":143},{"source":142,"target":20},{"source":143,"target":21},{"source":21,"target":0},{"source":21,"target":144},{"source":144,"target":5},{"source":144,"target":145},{"source":144,"target":21},{"source":145,"target":5},{"source":22,"target":0},{"source":22,"target":146},{"source":22,"target":147},{"source":22,"target":148},{"source":146,"target":149},{"source":146,"target":22},{"source":147,"target":18},{"source":147,"target":150},{"source":147,"target":22},{"source":150,"target":18},{"source":148,"target":24},{"source":148,"target":151},{"source":148,"target":22},{"source":151,"target":24},{"source":23,"target":0},{"source":23,"target":152},{"source":23,"target":153},{"source":23,"target":154},{"source":152,"target":19},{"source":152,"target":155},{"source":152,"target":23},{"source":155,"target":19},{"source":153,"target":24},{"source":153,"target":156},{"source":153,"target":23},{"source":156,"target":24},{"source":154,"target":24},{"source":154,"target":157},{"source":154,"target":23},{"source":157,"target":24},{"source":24,"target":0},{"source":24,"target":158},{"source":158,"target":39},{"source":158,"target":159},{"source":158,"target":24},{"source":159,"target":39},{"source":25,"target":0},{"source":25,"target":160},{"source":25,"target":161},{"source":160,"target":162},{"source":160,"target":25},{"source":161,"target":39},{"source":161,"target":163},{"source":161,"target":25},{"source":163,"target":39},{"source":26,"target":0},{"source":26,"target":164},{"source":26,"target":165},{"source":26,"target":166},{"source":26,"target":167},{"source":164,"target":32},{"source":164,"target":168},{"source":164,"target":26},{"source":168,"target":32},{"source":165,"target":169},{"source":165,"target":26},{"source":166,"target":170},{"source":166,"target":26},{"source":167,"target":27},{"source":167,"target":171},{"source":167,"target":26},{"source":171,"target":27},{"source":27,"target":0},{"source":27,"target":172},{"source":27,"target":173},{"source":27,"target":174},{"source":27,"target":175},{"source":27,"target":176},{"source":172,"target":32},{"source":172,"target":177},{"source":172,"target":27},{"source":177,"target":32},{"source":173,"target":4},{"source":173,"target":178},{"source":173,"target":27},{"source":178,"target":4},{"source":174,"target":20},{"source":174,"target":179},{"source":174,"target":27},{"source":179,"target":20},{"source":175,"target":180},{"source":175,"target":27},{"source":176,"target":28},{"source":176,"target":181},{"source":176,"target":27},{"source":181,"target":28},{"source":28,"target":0},{"source":28,"target":182},{"source":28,"target":183},{"source":182,"target":29},{"source":182,"target":184},{"source":182,"target":28},{"source":184,"target":29},{"source":183,"target":29},{"source":183,"target":185},{"source":183,"target":28},{"source":185,"target":29},{"source":29,"target":0},{"source":29,"target":186},{"source":29,"target":187},{"source":29,"target":188},{"source":29,"target":189},{"source":29,"target":190},{"source":186,"target":32},{"source":186,"target":191},{"source":186,"target":29},{"source":191,"target":32},{"source":187,"target":30},{"source":187,"target":192},{"source":187,"target":29},{"source":192,"target":30},{"source":188,"target":4},{"source":188,"target":193},{"source":188,"target":29},{"source":193,"target":4},{"source":189,"target":18},{"source":189,"target":194},{"source":189,"target":29},{"source":194,"target":18},{"source":190,"target":19},{"source":190,"target":195},{"source":190,"target":29},{"source":195,"target":19},{"source":30,"target":0},{"source":30,"target":196},{"source":30,"target":197},{"source":196,"target":30},{"source":197,"target":30},{"source":31,"target":0},{"source":31,"target":198},{"source":31,"target":199},{"source":198,"target":200},{"source":198,"target":31},{"source":199,"target":201},{"source":199,"target":31},{"source":32,"target":0},{"source":32,"target":202},{"source":202,"target":33},{"source":202,"target":203},{"source":202,"target":32},{"source":203,"target":33},{"source":33,"target":0},{"source":33,"target":37},{"source":33,"target":204},{"source":33,"target":205},{"source":33,"target":206},{"source":204,"target":207},{"source":204,"target":33},{"source":205,"target":34},{"source":205,"target":208},{"source":205,"target":33},{"source":208,"target":34},{"source":206,"target":37},{"source":34,"target":0},{"source":34,"target":209},{"source":34,"target":210},{"source":209,"target":35},{"source":209,"target":211},{"source":209,"target":34},{"source":211,"target":35},{"source":210,"target":37},{"source":210,"target":212},{"source":210,"target":34},{"source":212,"target":37},{"source":35,"target":0},{"source":35,"target":213},{"source":35,"target":214},{"source":213,"target":36},{"source":213,"target":215},{"source":213,"target":35},{"source":215,"target":36},{"source":214,"target":36},{"source":214,"target":216},{"source":214,"target":35},{"source":216,"target":36},{"source":36,"target":0},{"source":36,"target":217},{"source":36,"target":218},{"source":217,"target":219},{"source":217,"target":36},{"source":218,"target":37},{"source":218,"target":220},{"source":218,"target":36},{"source":220,"target":37},{"source":37,"target":0},{"source":38,"target":0},{"source":38,"target":37},{"source":38,"target":221},{"source":38,"target":222},{"source":38,"target":223},{"source":221,"target":37},{"source":221,"target":224},{"source":221,"target":38},{"source":224,"target":37},{"source":222,"target":37},{"source":222,"target":225},{"source":222,"target":38},{"source":225,"target":37},{"source":223,"target":37},{"source":39,"target":0},{"source":39,"target":50},{"source":39,"target":226},{"source":226,"target":50},{"source":40,"target":0},{"source":40,"target":39},{"source":40,"target":227},{"source":40,"target":228},{"source":40,"target":229},{"source":227,"target":41},{"source":227,"target":230},{"source":227,"target":40},{"source":230,"target":41},{"source":228,"target":40},{"source":228,"target":231},{"source":228,"target":40},{"source":231,"target":40},{"source":229,"target":39},{"source":41,"target":0},{"source":41,"target":232},{"source":41,"target":233},{"source":232,"target":42},{"source":232,"target":234},{"source":232,"target":41},{"source":234,"target":42},{"source":233,"target":41},{"source":233,"target":235},{"source":233,"target":41},{"source":235,"target":41},{"source":42,"target":0},{"source":42,"target":236},{"source":42,"target":237},{"source":236,"target":43},{"source":236,"target":238},{"source":236,"target":42},{"source":238,"target":43},{"source":237,"target":42},{"source":237,"target":239},{"source":237,"target":42},{"source":239,"target":42},{"source":43,"target":0},{"source":43,"target":240},{"source":43,"target":241},{"source":240,"target":44},{"source":240,"target":242},{"source":240,"target":43},{"source":242,"target":44},{"source":241,"target":43},{"source":241,"target":243},{"source":241,"target":43},{"source":243,"target":43},{"source":44,"target":0},{"source":44,"target":244},{"source":44,"target":245},{"source":244,"target":45},{"source":244,"target":246},{"source":244,"target":44},{"source":246,"target":45},{"source":245,"target":44},{"source":245,"target":247},{"source":245,"target":44},{"source":247,"target":44},{"source":45,"target":0},{"source":45,"target":248},{"source":45,"target":249},{"source":45,"target":250},{"source":248,"target":46},{"source":248,"target":251},{"source":248,"target":45},{"source":251,"target":46},{"source":249,"target":252},{"source":249,"target":45},{"source":250,"target":45},{"source":250,"target":253},{"source":250,"target":45},{"source":253,"target":45},{"source":46,"target":0},{"source":46,"target":254},{"source":46,"target":255},{"source":46,"target":256},{"source":254,"target":47},{"source":254,"target":257},{"source":254,"target":46},{"source":257,"target":47},{"source":255,"target":258},{"source":255,"target":46},{"source":256,"target":46},{"source":256,"target":259},{"source":256,"target":46},{"source":259,"target":46},{"source":47,"target":0},{"source":47,"target":260},{"source":47,"target":261},{"source":47,"target":262},{"source":260,"target":48},{"source":260,"target":263},{"source":260,"target":47},{"source":263,"target":48},{"source":261,"target":264},{"source":261,"target":47},{"source":262,"target":47},{"source":262,"target":265},{"source":262,"target":47},{"source":265,"target":47},{"source":48,"target":0},{"source":48,"target":266},{"source":48,"target":267},{"source":48,"target":268},{"source":266,"target":4},{"source":266,"target":269},{"source":266,"target":48},{"source":269,"target":4},{"source":267,"target":48},{"source":267,"target":270},{"source":267,"target":48},{"source":270,"target":48},{"source":268,"target":49},{"source":268,"target":271},{"source":268,"target":48},{"source":271,"target":49},{"source":49,"target":0},{"source":49,"target":272},{"source":49,"target":273},{"source":272,"target":274},{"source":272,"target":49},{"source":273,"target":50},{"source":273,"target":275},{"source":273,"target":49},{"source":275,"target":50},{"source":50,"target":0},{"source":50,"target":276},{"source":276,"target":51},{"source":276,"target":277},{"source":276,"target":50},{"source":277,"target":51},{"source":51,"target":0},{"source":51,"target":278},{"source":278,"target":25},{"source":278,"target":279},{"source":278,"target":51},{"source":279,"target":25}],"multigraph":true} |
true | <?xml version="1.0" encoding="ISO-8859-1"?>
<xmi:XMI xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore">
<ecore:EPackage name="J2SE5">
<eClassifiers xsi:type="ecore:EClass" name="AbstractTypeDeclaration" abstract="true" eSuperTypes="/0/NamedElement /0/BodyDeclaration">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="originalFileContent" ordered="false" lowerBound="1" eType="/1/String"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="package" ordered="false" lowerBound="1" eType="/0/PackageDeclaration" eOpposite="/0/PackageDeclaration/ownedElements"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="bodyDeclarations" ordered="false" upperBound="-1" eType="/0/BodyDeclaration" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="superInterfaces" ordered="false" upperBound="-1" eType="/0/NamedElementRef" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="commentsAfterBody" ordered="false" upperBound="-1" eType="/0/Comment" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="imports" ordered="false" upperBound="-1" eType="/0/ImportDeclaration" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="commentsBeforeBody" ordered="false" upperBound="-1" eType="/0/Comment" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Annotation" eSuperTypes="/0/Expression">
<eStructuralFeatures xsi:type="ecore:EReference" name="type" ordered="false" lowerBound="1" eType="/0/NamedElementRef" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="values" ordered="false" upperBound="-1" eType="/0/AnnotationMemberValuePair" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="AnnotationMemberValuePair" eSuperTypes="/0/ASTNode">
<eStructuralFeatures xsi:type="ecore:EReference" name="member" ordered="false" lowerBound="1" eType="/0/NamedElementRef" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="value" ordered="false" lowerBound="1" eType="/0/Expression" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="AnnotationTypeDeclaration" eSuperTypes="/0/AbstractTypeDeclaration"/>
<eClassifiers xsi:type="ecore:EClass" name="AnnotationTypeMemberDeclaration" eSuperTypes="/0/NamedElement /0/BodyDeclaration">
<eStructuralFeatures xsi:type="ecore:EReference" name="type" ordered="false" lowerBound="1" eType="/0/NamedElementRef" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="default" ordered="false" eType="/0/Expression" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="AnonymousClassDeclaration" eSuperTypes="/0/ASTNode">
<eStructuralFeatures xsi:type="ecore:EReference" name="bodyDeclarations" ordered="false" upperBound="-1" eType="/0/BodyDeclaration" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ArrayAccess" eSuperTypes="/0/Expression">
<eStructuralFeatures xsi:type="ecore:EReference" name="index" ordered="false" lowerBound="1" eType="/0/Expression" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="array" ordered="false" lowerBound="1" eType="/0/Expression" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ArrayCreation" eSuperTypes="/0/Expression">
<eStructuralFeatures xsi:type="ecore:EReference" name="dimensions" ordered="false" upperBound="-1" eType="/0/Expression" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="initializer" ordered="false" eType="/0/ArrayInitializer" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="type" ordered="false" lowerBound="1" eType="/0/NamedElementRef" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ArrayInitializer" eSuperTypes="/0/Expression">
<eStructuralFeatures xsi:type="ecore:EReference" name="expressions" ordered="false" upperBound="-1" eType="/0/Expression" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ArrayLengthAccess" eSuperTypes="/0/Expression">
<eStructuralFeatures xsi:type="ecore:EReference" name="array" ordered="false" lowerBound="1" eType="/0/Expression" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="AssertStatement" eSuperTypes="/0/Statement">
<eStructuralFeatures xsi:type="ecore:EReference" name="message" ordered="false" eType="/0/Expression" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="expression" ordered="false" lowerBound="1" eType="/0/Expression" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Assignment" eSuperTypes="/0/Expression">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="operator" ordered="false" lowerBound="1" eType="/1/String"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="rightHandSide" ordered="false" lowerBound="1" eType="/0/Expression" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="leftHandSide" ordered="false" lowerBound="1" eType="/0/Expression" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ASTNode" abstract="true">
<eStructuralFeatures xsi:type="ecore:EReference" name="comments" ordered="false" upperBound="-1" eType="/0/Comment" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="BodyDeclaration" abstract="true" eSuperTypes="/0/ASTNode">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="modifiers" ordered="false" lowerBound="1" eType="/1/String"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="annotations" ordered="false" upperBound="-1" eType="/0/Annotation" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Block" eSuperTypes="/0/Statement">
<eStructuralFeatures xsi:type="ecore:EReference" name="statements" ordered="false" upperBound="-1" eType="/0/Statement" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="BlockComment" eSuperTypes="/0/Comment"/>
<eClassifiers xsi:type="ecore:EClass" name="BreakStatement" eSuperTypes="/0/Statement">
<eStructuralFeatures xsi:type="ecore:EReference" name="label" ordered="false" eType="/0/NamedElementRef" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CastExpression" eSuperTypes="/0/Expression">
<eStructuralFeatures xsi:type="ecore:EReference" name="type" ordered="false" lowerBound="1" eType="/0/NamedElementRef" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="expression" ordered="false" lowerBound="1" eType="/0/Expression" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CatchClause" eSuperTypes="/0/ASTNode">
<eStructuralFeatures xsi:type="ecore:EReference" name="exception" ordered="false" lowerBound="1" eType="/0/SingleVariableDeclaration" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="body" ordered="false" lowerBound="1" eType="/0/Block" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ClassInstanceCreation" eSuperTypes="/0/Expression">
<eStructuralFeatures xsi:type="ecore:EReference" name="arguments" ordered="false" upperBound="-1" eType="/0/Expression" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="type" ordered="false" lowerBound="1" eType="/0/NamedElementRef" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="expression" ordered="false" eType="/0/Expression" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="anonymousClassDeclaration" ordered="false" eType="/0/AnonymousClassDeclaration" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Comment" abstract="true" eSuperTypes="/0/ASTNode">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="content" ordered="false" lowerBound="1" eType="/1/String"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isEnclosedByParent" ordered="false" lowerBound="1" eType="/1/Boolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isPrefixOfParent" ordered="false" lowerBound="1" eType="/1/Boolean"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ConditionalExpression" eSuperTypes="/0/Expression">
<eStructuralFeatures xsi:type="ecore:EReference" name="elseExpression" ordered="false" lowerBound="1" eType="/0/Expression" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="thenExpression" ordered="false" lowerBound="1" eType="/0/Expression" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="expression" ordered="false" lowerBound="1" eType="/0/Expression" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ContinueStatement" eSuperTypes="/0/Statement">
<eStructuralFeatures xsi:type="ecore:EReference" name="label" ordered="false" eType="/0/NamedElementRef" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ConstructorInvocation" eSuperTypes="/0/Statement">
<eStructuralFeatures xsi:type="ecore:EReference" name="arguments" ordered="false" upperBound="-1" eType="/0/Expression" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="DoStatement" eSuperTypes="/0/Statement">
<eStructuralFeatures xsi:type="ecore:EReference" name="expression" ordered="false" lowerBound="1" eType="/0/Expression" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="body" ordered="false" lowerBound="1" eType="/0/Statement" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EmptyStatement" eSuperTypes="/0/Statement"/>
<eClassifiers xsi:type="ecore:EClass" name="EnhancedForStatement" eSuperTypes="/0/Statement">
<eStructuralFeatures xsi:type="ecore:EReference" name="parameter" ordered="false" lowerBound="1" eType="/0/SingleVariableDeclaration" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="expression" ordered="false" lowerBound="1" eType="/0/Expression" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="body" ordered="false" lowerBound="1" eType="/0/Statement" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EnumConstantDeclaration" eSuperTypes="/0/BodyDeclaration /0/NamedElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="arguments" ordered="false" upperBound="-1" eType="/0/Expression" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="anonymousClassDeclaration" ordered="false" eType="/0/AnonymousClassDeclaration" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EnumDeclaration" eSuperTypes="/0/AbstractTypeDeclaration">
<eStructuralFeatures xsi:type="ecore:EReference" name="enumConstants" ordered="false" upperBound="-1" eType="/0/EnumConstantDeclaration" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Expression" abstract="true" eSuperTypes="/0/ASTNode"/>
<eClassifiers xsi:type="ecore:EClass" name="ExpressionStatement" eSuperTypes="/0/Statement">
<eStructuralFeatures xsi:type="ecore:EReference" name="expression" ordered="false" lowerBound="1" eType="/0/Expression" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="FieldAccess" eSuperTypes="/0/Expression">
<eStructuralFeatures xsi:type="ecore:EReference" name="field" ordered="false" lowerBound="1" eType="/0/NamedElementRef" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="expression" ordered="false" lowerBound="1" eType="/0/Expression" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="FieldDeclaration" eSuperTypes="/0/BodyDeclaration /0/MultipleValuedNamedElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="type" ordered="false" lowerBound="1" eType="/0/NamedElementRef" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ForStatement" eSuperTypes="/0/Statement">
<eStructuralFeatures xsi:type="ecore:EReference" name="body" ordered="false" lowerBound="1" eType="/0/Statement" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="expression" ordered="false" eType="/0/Expression" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="initializers" ordered="false" upperBound="-1" eType="/0/Expression" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="updaters" ordered="false" upperBound="-1" eType="/0/Expression" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="InfixExpression" eSuperTypes="/0/Expression">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="operator" ordered="false" lowerBound="1" eType="/1/String"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="extendedOperands" ordered="false" upperBound="-1" eType="/0/Expression" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="rightOperand" ordered="false" lowerBound="1" eType="/0/Expression" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="leftOperand" ordered="false" lowerBound="1" eType="/0/Expression" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="IfStatement" eSuperTypes="/0/Statement">
<eStructuralFeatures xsi:type="ecore:EReference" name="expression" ordered="false" lowerBound="1" eType="/0/Expression" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="elseStatement" ordered="false" eType="/0/Statement" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="thenStatement" ordered="false" lowerBound="1" eType="/0/Statement" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ImportDeclaration" eSuperTypes="/0/ASTNode">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="static" ordered="false" lowerBound="1" eType="/1/Boolean"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="importedElement" ordered="false" lowerBound="1" eType="/0/NamedElementRef" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Initializer" eSuperTypes="/0/BodyDeclaration">
<eStructuralFeatures xsi:type="ecore:EReference" name="body" ordered="false" lowerBound="1" eType="/0/Block" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="InstanceofExpression" eSuperTypes="/0/Expression">
<eStructuralFeatures xsi:type="ecore:EReference" name="leftOperand" ordered="false" lowerBound="1" eType="/0/Expression" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="rightOperand" ordered="false" lowerBound="1" eType="/0/NamedElementRef" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Javadoc" eSuperTypes="/0/Comment">
<eStructuralFeatures xsi:type="ecore:EReference" name="tags" ordered="false" upperBound="-1" eType="/0/TagElement" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="LabeledStatement" eSuperTypes="/0/Statement /0/NamedElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="body" ordered="false" lowerBound="1" eType="/0/Statement" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="LineComment" eSuperTypes="/0/Comment"/>
<eClassifiers xsi:type="ecore:EClass" name="MemberRef" eSuperTypes="/0/ASTNode">
<eStructuralFeatures xsi:type="ecore:EReference" name="qualifier" ordered="false" eType="/0/NamedElementRef" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="member" ordered="false" lowerBound="1" eType="/0/NamedElementRef" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="MethodDeclaration" eSuperTypes="/0/NamedElement /0/BodyDeclaration">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="extraArrayDimensions" ordered="false" lowerBound="1" eType="/1/Integer"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="constructor" ordered="false" lowerBound="1" eType="/1/Boolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="varargs" ordered="false" lowerBound="1" eType="/1/Boolean"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="body" ordered="false" eType="/0/Block" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="parameters" ordered="false" upperBound="-1" eType="/0/SingleVariableDeclaration" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="typeParameters" ordered="false" upperBound="-1" eType="/0/TypeParameter" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="thrownExceptions" ordered="false" upperBound="-1" eType="/0/NamedElementRef" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="returnType" ordered="false" lowerBound="1" eType="/0/NamedElementRef" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="MethodInvocation" eSuperTypes="/0/Expression">
<eStructuralFeatures xsi:type="ecore:EReference" name="method" ordered="false" lowerBound="1" eType="/0/NamedElementRef" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="arguments" ordered="false" upperBound="-1" eType="/0/Expression" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="expression" ordered="false" eType="/0/Expression" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="MethodRef" eSuperTypes="/0/ASTNode">
<eStructuralFeatures xsi:type="ecore:EReference" name="qualifier" ordered="false" eType="/0/NamedElementRef" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="parameters" ordered="false" upperBound="-1" eType="/0/MethodRefParameter" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="method" ordered="false" lowerBound="1" eType="/0/NamedElementRef" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="MethodRefParameter" eSuperTypes="/0/ASTNode">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" ordered="false" lowerBound="1" eType="/1/String"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isVarargs" ordered="false" lowerBound="1" eType="/1/Boolean"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="type" ordered="false" eType="/0/NamedElementRef" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Model">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" ordered="false" lowerBound="1" eType="/1/String"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="ownedElements" ordered="false" upperBound="-1" eType="/0/PackageDeclaration" containment="true" eOpposite="/0/PackageDeclaration/model"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="orphanTypes" ordered="false" upperBound="-1" eType="/0/OrphanType" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="MultipleValuedNamedElement" abstract="true" eSuperTypes="/0/ValuedNamedElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="fragments" ordered="false" upperBound="-1" eType="/0/SingleVariableDeclaration" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="NamedElement" abstract="true">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" ordered="false" lowerBound="1" eType="/1/String"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="proxy" ordered="false" lowerBound="1" eType="/1/Boolean"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="NamedElementRef" eSuperTypes="/0/Expression">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="extraArrayDimensions" ordered="false" lowerBound="1" eType="/1/Integer"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="element" ordered="false" eType="/0/NamedElement"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="qualifier" ordered="false" eType="/0/NamedElementRef" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="OrphanType" eSuperTypes="/0/NamedElement"/>
<eClassifiers xsi:type="ecore:EClass" name="PackageDeclaration" eSuperTypes="/0/ASTNode /0/NamedElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="model" ordered="false" lowerBound="1" eType="/0/Model" eOpposite="/0/Model/ownedElements"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="ownedElements" ordered="false" upperBound="-1" eType="/0/AbstractTypeDeclaration" containment="true" eOpposite="/0/AbstractTypeDeclaration/package"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ParameterizedType" eSuperTypes="/0/ASTNode /0/OrphanType">
<eStructuralFeatures xsi:type="ecore:EReference" name="typeArguments" ordered="false" upperBound="-1" eType="/0/NamedElementRef" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="type" ordered="false" lowerBound="1" eType="/0/NamedElementRef" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ParenthesizedExpression" eSuperTypes="/0/Expression">
<eStructuralFeatures xsi:type="ecore:EReference" name="expression" ordered="false" lowerBound="1" eType="/0/Expression" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="PostfixExpression" eSuperTypes="/0/Expression">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="operator" ordered="false" lowerBound="1" eType="/1/String"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="operand" ordered="false" lowerBound="1" eType="/0/Expression" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="PrefixExpression" eSuperTypes="/0/Expression">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="operator" ordered="false" lowerBound="1" eType="/1/String"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="operand" ordered="false" lowerBound="1" eType="/0/Expression" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="PrimitiveType" eSuperTypes="/0/ASTNode /0/OrphanType"/>
<eClassifiers xsi:type="ecore:EClass" name="ReturnStatement" eSuperTypes="/0/Statement">
<eStructuralFeatures xsi:type="ecore:EReference" name="expression" ordered="false" eType="/0/Expression" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ThrowStatement" eSuperTypes="/0/Statement">
<eStructuralFeatures xsi:type="ecore:EReference" name="expression" ordered="false" lowerBound="1" eType="/0/Expression" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="SingleVariableDeclaration" eSuperTypes="/0/ASTNode /0/ValuedNamedElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="modifiers" ordered="false" lowerBound="1" eType="/1/String"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isVarargs" ordered="false" lowerBound="1" eType="/1/Boolean"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="type" ordered="false" lowerBound="1" eType="/0/NamedElementRef" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Statement" abstract="true" eSuperTypes="/0/ASTNode"/>
<eClassifiers xsi:type="ecore:EClass" name="SuperConstructorInvocation" eSuperTypes="/0/Statement">
<eStructuralFeatures xsi:type="ecore:EReference" name="arguments" ordered="false" upperBound="-1" eType="/0/Expression" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="expression" ordered="false" eType="/0/Expression" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="SuperFieldAccess" eSuperTypes="/0/Expression">
<eStructuralFeatures xsi:type="ecore:EReference" name="qualifier" ordered="false" eType="/0/NamedElementRef" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="field" ordered="false" lowerBound="1" eType="/0/NamedElementRef" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="SuperMethodInvocation" eSuperTypes="/0/Expression">
<eStructuralFeatures xsi:type="ecore:EReference" name="arguments" ordered="false" upperBound="-1" eType="/0/Expression" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="qualifier" ordered="false" eType="/0/NamedElementRef" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="method" ordered="false" lowerBound="1" eType="/0/NamedElementRef" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="SwitchCase" eSuperTypes="/0/Statement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="expressionInitialized" ordered="false" lowerBound="1" eType="/1/Boolean"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="expression" ordered="false" eType="/0/Expression" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="SwitchStatement" eSuperTypes="/0/Statement">
<eStructuralFeatures xsi:type="ecore:EReference" name="statements" ordered="false" upperBound="-1" eType="/0/Statement" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="expression" ordered="false" lowerBound="1" eType="/0/Expression" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="SynchronizedStatement" eSuperTypes="/0/Statement">
<eStructuralFeatures xsi:type="ecore:EReference" name="body" ordered="false" lowerBound="1" eType="/0/Block" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="expression" ordered="false" lowerBound="1" eType="/0/Expression" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="TagElement" eSuperTypes="/0/ASTNode">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="tagName" ordered="false" lowerBound="1" eType="/1/String"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="fragments" ordered="false" upperBound="-1" eType="/0/ASTNode" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="TextElement" eSuperTypes="/0/ASTNode">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="text" ordered="false" lowerBound="1" eType="/1/String"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ThisExpression" eSuperTypes="/0/Expression">
<eStructuralFeatures xsi:type="ecore:EReference" name="qualifier" ordered="false" eType="/0/NamedElementRef" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="TryStatement" eSuperTypes="/0/Statement">
<eStructuralFeatures xsi:type="ecore:EReference" name="finally" ordered="false" eType="/0/Block" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="body" ordered="false" lowerBound="1" eType="/0/Block" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="catchClauses" ordered="false" upperBound="-1" eType="/0/CatchClause" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="TypeDeclaration" eSuperTypes="/0/AbstractTypeDeclaration">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isInterface" ordered="false" lowerBound="1" eType="/1/Boolean"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="typeParameters" ordered="false" upperBound="-1" eType="/0/TypeParameter" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="superclass" ordered="false" eType="/0/NamedElementRef" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="TypeDeclarationStatement" eSuperTypes="/0/Statement">
<eStructuralFeatures xsi:type="ecore:EReference" name="declaration" ordered="false" lowerBound="1" eType="/0/AbstractTypeDeclaration" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="TypeLiteral" eSuperTypes="/0/Expression">
<eStructuralFeatures xsi:type="ecore:EReference" name="type" ordered="false" lowerBound="1" eType="/0/NamedElementRef" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="TypeParameter" eSuperTypes="/0/ASTNode /0/NamedElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="bounds" ordered="false" upperBound="-1" eType="/0/NamedElementRef" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="UnresolvedItem" eSuperTypes="/0/NamedElement /0/ASTNode"/>
<eClassifiers xsi:type="ecore:EClass" name="ValuedNamedElement" abstract="true" eSuperTypes="/0/NamedElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="extraArrayDimensions" ordered="false" lowerBound="1" eType="/1/Integer"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="initializer" ordered="false" eType="/0/Expression" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="VariableDeclarationExpression" eSuperTypes="/0/Expression /0/MultipleValuedNamedElement /0/ValuedNamedElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="modifiers" ordered="false" lowerBound="1" eType="/1/String"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="type" ordered="false" lowerBound="1" eType="/0/NamedElementRef" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="VariableDeclarationStatement" eSuperTypes="/0/Statement /0/MultipleValuedNamedElement /0/ValuedNamedElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="modifiers" ordered="false" lowerBound="1" eType="/1/String"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="type" ordered="false" lowerBound="1" eType="/0/NamedElementRef" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="WildCardType" eSuperTypes="/0/OrphanType /0/ASTNode">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isUpperBound" ordered="false" lowerBound="1" eType="/1/Boolean"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="bound" ordered="false" eType="/0/NamedElementRef" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="WhileStatement" eSuperTypes="/0/Statement">
<eStructuralFeatures xsi:type="ecore:EReference" name="expression" ordered="false" lowerBound="1" eType="/0/Expression" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="body" ordered="false" lowerBound="1" eType="/0/Statement" containment="true"/>
</eClassifiers>
</ecore:EPackage>
<ecore:EPackage name="PrimitiveType">
<eClassifiers xsi:type="ecore:EDataType" name="String"/>
<eClassifiers xsi:type="ecore:EDataType" name="Boolean"/>
<eClassifiers xsi:type="ecore:EDataType" name="Integer"/>
</ecore:EPackage>
</xmi:XMI>
| github:ecore:/data/MDEGroup/QMM-COMLAN-data/validation-subjects/metamodels/J2SE5.ecore | ecore | J2SE5
AbstractTypeDeclaration
originalFileContent
package
bodyDeclarations
superInterfaces
commentsAfterBody
imports
commentsBeforeBody
Annotation
type
values
AnnotationMemberValuePair
member
value
AnnotationTypeDeclaration
AnnotationTypeMemberDeclaration
type
default
AnonymousClassDeclaration
bodyDeclarations
ArrayAccess
index
array
ArrayCreation
dimensions
initializer
type
ArrayInitializer
expressions
ArrayLengthAccess
array
AssertStatement
message
expression
Assignment
operator
rightHandSide
leftHandSide
ASTNode
comments
BodyDeclaration
modifiers
annotations
Block
statements
BlockComment
BreakStatement
label
CastExpression
type
expression
CatchClause
exception
body
ClassInstanceCreation
arguments
type
expression
anonymousClassDeclaration
Comment
content
isEnclosedByParent
isPrefixOfParent
ConditionalExpression
elseExpression
thenExpression
expression
ContinueStatement
label
ConstructorInvocation
arguments
DoStatement
expression
body
EmptyStatement
EnhancedForStatement
parameter
expression
body
EnumConstantDeclaration
arguments
anonymousClassDeclaration
EnumDeclaration
enumConstants
Expression
ExpressionStatement
expression
FieldAccess
field
expression
FieldDeclaration
type
ForStatement
body
expression
initializers
updaters
InfixExpression
operator
extendedOperands
rightOperand
leftOperand
IfStatement
expression
elseStatement
thenStatement
ImportDeclaration
static
importedElement
Initializer
body
InstanceofExpression
leftOperand
rightOperand
Javadoc
tags
LabeledStatement
body
LineComment
MemberRef
qualifier
member
MethodDeclaration
extraArrayDimensions
constructor
varargs
body
parameters
typeParameters
thrownExceptions
returnType
MethodInvocation
method
arguments
expression
MethodRef
qualifier
parameters
method
MethodRefParameter
name
isVarargs
type
Model
name
ownedElements
orphanTypes
MultipleValuedNamedElement
fragments
NamedElement
name
proxy
NamedElementRef
extraArrayDimensions
element
qualifier
OrphanType
PackageDeclaration
model
ownedElements
ParameterizedType
typeArguments
type
ParenthesizedExpression
expression
PostfixExpression
operator
operand
PrefixExpression
operator
operand
PrimitiveType
ReturnStatement
expression
ThrowStatement
expression
SingleVariableDeclaration
modifiers
isVarargs
type
Statement
SuperConstructorInvocation
arguments
expression
SuperFieldAccess
qualifier
field
SuperMethodInvocation
arguments
qualifier
method
SwitchCase
expressionInitialized
expression
SwitchStatement
statements
expression
SynchronizedStatement
body
expression
TagElement
tagName
fragments
TextElement
text
ThisExpression
qualifier
TryStatement
finally
body
catchClauses
TypeDeclaration
isInterface
typeParameters
superclass
TypeDeclarationStatement
declaration
TypeLiteral
type
TypeParameter
bounds
UnresolvedItem
ValuedNamedElement
extraArrayDimensions
initializer
VariableDeclarationExpression
modifiers
type
VariableDeclarationStatement
modifiers
type
WildCardType
isUpperBound
bound
WhileStatement
expression
body
PrimitiveType
String
Boolean
Integer | null | {"directed":true,"nodes":[{"nsPrefix":null,"nsURI":null,"name":"J2SE5","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AbstractTypeDeclaration","instanceClass":null,"abstract":true,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Annotation","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AnnotationMemberValuePair","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AnnotationTypeDeclaration","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AnnotationTypeMemberDeclaration","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AnonymousClassDeclaration","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ArrayAccess","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ArrayCreation","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ArrayInitializer","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ArrayLengthAccess","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AssertStatement","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Assignment","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ASTNode","instanceClass":null,"abstract":true,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BodyDeclaration","instanceClass":null,"abstract":true,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Block","instanceClass":null,"abstract":false,"id":15,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BlockComment","instanceClass":null,"abstract":false,"id":16,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BreakStatement","instanceClass":null,"abstract":false,"id":17,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CastExpression","instanceClass":null,"abstract":false,"id":18,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CatchClause","instanceClass":null,"abstract":false,"id":19,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ClassInstanceCreation","instanceClass":null,"abstract":false,"id":20,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Comment","instanceClass":null,"abstract":true,"id":21,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ConditionalExpression","instanceClass":null,"abstract":false,"id":22,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ContinueStatement","instanceClass":null,"abstract":false,"id":23,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ConstructorInvocation","instanceClass":null,"abstract":false,"id":24,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DoStatement","instanceClass":null,"abstract":false,"id":25,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EmptyStatement","instanceClass":null,"abstract":false,"id":26,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EnhancedForStatement","instanceClass":null,"abstract":false,"id":27,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EnumConstantDeclaration","instanceClass":null,"abstract":false,"id":28,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EnumDeclaration","instanceClass":null,"abstract":false,"id":29,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Expression","instanceClass":null,"abstract":true,"id":30,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExpressionStatement","instanceClass":null,"abstract":false,"id":31,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FieldAccess","instanceClass":null,"abstract":false,"id":32,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FieldDeclaration","instanceClass":null,"abstract":false,"id":33,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ForStatement","instanceClass":null,"abstract":false,"id":34,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InfixExpression","instanceClass":null,"abstract":false,"id":35,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IfStatement","instanceClass":null,"abstract":false,"id":36,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ImportDeclaration","instanceClass":null,"abstract":false,"id":37,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Initializer","instanceClass":null,"abstract":false,"id":38,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InstanceofExpression","instanceClass":null,"abstract":false,"id":39,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Javadoc","instanceClass":null,"abstract":false,"id":40,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LabeledStatement","instanceClass":null,"abstract":false,"id":41,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LineComment","instanceClass":null,"abstract":false,"id":42,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MemberRef","instanceClass":null,"abstract":false,"id":43,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MethodDeclaration","instanceClass":null,"abstract":false,"id":44,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MethodInvocation","instanceClass":null,"abstract":false,"id":45,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MethodRef","instanceClass":null,"abstract":false,"id":46,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MethodRefParameter","instanceClass":null,"abstract":false,"id":47,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Model","instanceClass":null,"abstract":false,"id":48,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MultipleValuedNamedElement","instanceClass":null,"abstract":true,"id":49,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NamedElement","instanceClass":null,"abstract":true,"id":50,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NamedElementRef","instanceClass":null,"abstract":false,"id":51,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OrphanType","instanceClass":null,"abstract":false,"id":52,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PackageDeclaration","instanceClass":null,"abstract":false,"id":53,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ParameterizedType","instanceClass":null,"abstract":false,"id":54,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ParenthesizedExpression","instanceClass":null,"abstract":false,"id":55,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PostfixExpression","instanceClass":null,"abstract":false,"id":56,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PrefixExpression","instanceClass":null,"abstract":false,"id":57,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PrimitiveType","instanceClass":null,"abstract":false,"id":58,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ReturnStatement","instanceClass":null,"abstract":false,"id":59,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ThrowStatement","instanceClass":null,"abstract":false,"id":60,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SingleVariableDeclaration","instanceClass":null,"abstract":false,"id":61,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Statement","instanceClass":null,"abstract":true,"id":62,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SuperConstructorInvocation","instanceClass":null,"abstract":false,"id":63,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SuperFieldAccess","instanceClass":null,"abstract":false,"id":64,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SuperMethodInvocation","instanceClass":null,"abstract":false,"id":65,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SwitchCase","instanceClass":null,"abstract":false,"id":66,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SwitchStatement","instanceClass":null,"abstract":false,"id":67,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SynchronizedStatement","instanceClass":null,"abstract":false,"id":68,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TagElement","instanceClass":null,"abstract":false,"id":69,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TextElement","instanceClass":null,"abstract":false,"id":70,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ThisExpression","instanceClass":null,"abstract":false,"id":71,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TryStatement","instanceClass":null,"abstract":false,"id":72,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TypeDeclaration","instanceClass":null,"abstract":false,"id":73,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TypeDeclarationStatement","instanceClass":null,"abstract":false,"id":74,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TypeLiteral","instanceClass":null,"abstract":false,"id":75,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TypeParameter","instanceClass":null,"abstract":false,"id":76,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"UnresolvedItem","instanceClass":null,"abstract":false,"id":77,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ValuedNamedElement","instanceClass":null,"abstract":true,"id":78,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"VariableDeclarationExpression","instanceClass":null,"abstract":false,"id":79,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"VariableDeclarationStatement","instanceClass":null,"abstract":false,"id":80,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"WildCardType","instanceClass":null,"abstract":false,"id":81,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"WhileStatement","instanceClass":null,"abstract":false,"id":82,"interface":false,"eClass":"EClass"},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"originalFileContent","changeable":true,"lowerBound":1,"iD":false,"id":83,"derived":false},{"container":true,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"package","changeable":true,"resolveProxies":true,"lowerBound":1,"id":84,"derived":false},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"bodyDeclarations","changeable":true,"resolveProxies":true,"lowerBound":0,"id":85,"derived":false},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"superInterfaces","changeable":true,"resolveProxies":true,"lowerBound":0,"id":86,"derived":false},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"commentsAfterBody","changeable":true,"resolveProxies":true,"lowerBound":0,"id":87,"derived":false},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"imports","changeable":true,"resolveProxies":true,"lowerBound":0,"id":88,"derived":false},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"commentsBeforeBody","changeable":true,"resolveProxies":true,"lowerBound":0,"id":89,"derived":false},{"id":90,"eClass":"EGenericType"},{"id":91,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"String","instanceClass":null,"id":92,"serializable":true,"eClass":"EDataType"},{"id":93,"eClass":"EGenericType"},{"id":94,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"ownedElements","changeable":true,"resolveProxies":true,"lowerBound":0,"id":95,"derived":false},{"id":96,"eClass":"EGenericType"},{"id":97,"eClass":"EGenericType"},{"id":98,"eClass":"EGenericType"},{"id":99,"eClass":"EGenericType"},{"id":100,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"resolveProxies":true,"lowerBound":1,"id":101,"derived":false},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"values","changeable":true,"resolveProxies":true,"lowerBound":0,"id":102,"derived":false},{"id":103,"eClass":"EGenericType"},{"id":104,"eClass":"EGenericType"},{"id":105,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"member","changeable":true,"resolveProxies":true,"lowerBound":1,"id":106,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"resolveProxies":true,"lowerBound":1,"id":107,"derived":false},{"id":108,"eClass":"EGenericType"},{"id":109,"eClass":"EGenericType"},{"id":110,"eClass":"EGenericType"},{"id":111,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"resolveProxies":true,"lowerBound":1,"id":112,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"default","changeable":true,"resolveProxies":true,"lowerBound":0,"id":113,"derived":false},{"id":114,"eClass":"EGenericType"},{"id":115,"eClass":"EGenericType"},{"id":116,"eClass":"EGenericType"},{"id":117,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"bodyDeclarations","changeable":true,"resolveProxies":true,"lowerBound":0,"id":118,"derived":false},{"id":119,"eClass":"EGenericType"},{"id":120,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"index","changeable":true,"resolveProxies":true,"lowerBound":1,"id":121,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"array","changeable":true,"resolveProxies":true,"lowerBound":1,"id":122,"derived":false},{"id":123,"eClass":"EGenericType"},{"id":124,"eClass":"EGenericType"},{"id":125,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"dimensions","changeable":true,"resolveProxies":true,"lowerBound":0,"id":126,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"initializer","changeable":true,"resolveProxies":true,"lowerBound":0,"id":127,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"resolveProxies":true,"lowerBound":1,"id":128,"derived":false},{"id":129,"eClass":"EGenericType"},{"id":130,"eClass":"EGenericType"},{"id":131,"eClass":"EGenericType"},{"id":132,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"expressions","changeable":true,"resolveProxies":true,"lowerBound":0,"id":133,"derived":false},{"id":134,"eClass":"EGenericType"},{"id":135,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"array","changeable":true,"resolveProxies":true,"lowerBound":1,"id":136,"derived":false},{"id":137,"eClass":"EGenericType"},{"id":138,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"message","changeable":true,"resolveProxies":true,"lowerBound":0,"id":139,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"expression","changeable":true,"resolveProxies":true,"lowerBound":1,"id":140,"derived":false},{"id":141,"eClass":"EGenericType"},{"id":142,"eClass":"EGenericType"},{"id":143,"eClass":"EGenericType"},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"operator","changeable":true,"lowerBound":1,"iD":false,"id":144,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"rightHandSide","changeable":true,"resolveProxies":true,"lowerBound":1,"id":145,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"leftHandSide","changeable":true,"resolveProxies":true,"lowerBound":1,"id":146,"derived":false},{"id":147,"eClass":"EGenericType"},{"id":148,"eClass":"EGenericType"},{"id":149,"eClass":"EGenericType"},{"id":150,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"comments","changeable":true,"resolveProxies":true,"lowerBound":0,"id":151,"derived":false},{"id":152,"eClass":"EGenericType"},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"modifiers","changeable":true,"lowerBound":1,"iD":false,"id":153,"derived":false},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"annotations","changeable":true,"resolveProxies":true,"lowerBound":0,"id":154,"derived":false},{"id":155,"eClass":"EGenericType"},{"id":156,"eClass":"EGenericType"},{"id":157,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"statements","changeable":true,"resolveProxies":true,"lowerBound":0,"id":158,"derived":false},{"id":159,"eClass":"EGenericType"},{"id":160,"eClass":"EGenericType"},{"id":161,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"label","changeable":true,"resolveProxies":true,"lowerBound":0,"id":162,"derived":false},{"id":163,"eClass":"EGenericType"},{"id":164,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"resolveProxies":true,"lowerBound":1,"id":165,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"expression","changeable":true,"resolveProxies":true,"lowerBound":1,"id":166,"derived":false},{"id":167,"eClass":"EGenericType"},{"id":168,"eClass":"EGenericType"},{"id":169,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"exception","changeable":true,"resolveProxies":true,"lowerBound":1,"id":170,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"body","changeable":true,"resolveProxies":true,"lowerBound":1,"id":171,"derived":false},{"id":172,"eClass":"EGenericType"},{"id":173,"eClass":"EGenericType"},{"id":174,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"arguments","changeable":true,"resolveProxies":true,"lowerBound":0,"id":175,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"resolveProxies":true,"lowerBound":1,"id":176,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"expression","changeable":true,"resolveProxies":true,"lowerBound":0,"id":177,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"anonymousClassDeclaration","changeable":true,"resolveProxies":true,"lowerBound":0,"id":178,"derived":false},{"id":179,"eClass":"EGenericType"},{"id":180,"eClass":"EGenericType"},{"id":181,"eClass":"EGenericType"},{"id":182,"eClass":"EGenericType"},{"id":183,"eClass":"EGenericType"},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"content","changeable":true,"lowerBound":1,"iD":false,"id":184,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isEnclosedByParent","changeable":true,"lowerBound":1,"iD":false,"id":185,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isPrefixOfParent","changeable":true,"lowerBound":1,"iD":false,"id":186,"derived":false},{"id":187,"eClass":"EGenericType"},{"id":188,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Boolean","instanceClass":null,"id":189,"serializable":true,"eClass":"EDataType"},{"id":190,"eClass":"EGenericType"},{"id":191,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"elseExpression","changeable":true,"resolveProxies":true,"lowerBound":1,"id":192,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"thenExpression","changeable":true,"resolveProxies":true,"lowerBound":1,"id":193,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"expression","changeable":true,"resolveProxies":true,"lowerBound":1,"id":194,"derived":false},{"id":195,"eClass":"EGenericType"},{"id":196,"eClass":"EGenericType"},{"id":197,"eClass":"EGenericType"},{"id":198,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"label","changeable":true,"resolveProxies":true,"lowerBound":0,"id":199,"derived":false},{"id":200,"eClass":"EGenericType"},{"id":201,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"arguments","changeable":true,"resolveProxies":true,"lowerBound":0,"id":202,"derived":false},{"id":203,"eClass":"EGenericType"},{"id":204,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"expression","changeable":true,"resolveProxies":true,"lowerBound":1,"id":205,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"body","changeable":true,"resolveProxies":true,"lowerBound":1,"id":206,"derived":false},{"id":207,"eClass":"EGenericType"},{"id":208,"eClass":"EGenericType"},{"id":209,"eClass":"EGenericType"},{"id":210,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"parameter","changeable":true,"resolveProxies":true,"lowerBound":1,"id":211,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"expression","changeable":true,"resolveProxies":true,"lowerBound":1,"id":212,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"body","changeable":true,"resolveProxies":true,"lowerBound":1,"id":213,"derived":false},{"id":214,"eClass":"EGenericType"},{"id":215,"eClass":"EGenericType"},{"id":216,"eClass":"EGenericType"},{"id":217,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"arguments","changeable":true,"resolveProxies":true,"lowerBound":0,"id":218,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"anonymousClassDeclaration","changeable":true,"resolveProxies":true,"lowerBound":0,"id":219,"derived":false},{"id":220,"eClass":"EGenericType"},{"id":221,"eClass":"EGenericType"},{"id":222,"eClass":"EGenericType"},{"id":223,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"enumConstants","changeable":true,"resolveProxies":true,"lowerBound":0,"id":224,"derived":false},{"id":225,"eClass":"EGenericType"},{"id":226,"eClass":"EGenericType"},{"id":227,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"expression","changeable":true,"resolveProxies":true,"lowerBound":1,"id":228,"derived":false},{"id":229,"eClass":"EGenericType"},{"id":230,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"field","changeable":true,"resolveProxies":true,"lowerBound":1,"id":231,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"expression","changeable":true,"resolveProxies":true,"lowerBound":1,"id":232,"derived":false},{"id":233,"eClass":"EGenericType"},{"id":234,"eClass":"EGenericType"},{"id":235,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"resolveProxies":true,"lowerBound":1,"id":236,"derived":false},{"id":237,"eClass":"EGenericType"},{"id":238,"eClass":"EGenericType"},{"id":239,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"body","changeable":true,"resolveProxies":true,"lowerBound":1,"id":240,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"expression","changeable":true,"resolveProxies":true,"lowerBound":0,"id":241,"derived":false},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"initializers","changeable":true,"resolveProxies":true,"lowerBound":0,"id":242,"derived":false},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"updaters","changeable":true,"resolveProxies":true,"lowerBound":0,"id":243,"derived":false},{"id":244,"eClass":"EGenericType"},{"id":245,"eClass":"EGenericType"},{"id":246,"eClass":"EGenericType"},{"id":247,"eClass":"EGenericType"},{"id":248,"eClass":"EGenericType"},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"operator","changeable":true,"lowerBound":1,"iD":false,"id":249,"derived":false},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"extendedOperands","changeable":true,"resolveProxies":true,"lowerBound":0,"id":250,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"rightOperand","changeable":true,"resolveProxies":true,"lowerBound":1,"id":251,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"leftOperand","changeable":true,"resolveProxies":true,"lowerBound":1,"id":252,"derived":false},{"id":253,"eClass":"EGenericType"},{"id":254,"eClass":"EGenericType"},{"id":255,"eClass":"EGenericType"},{"id":256,"eClass":"EGenericType"},{"id":257,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"expression","changeable":true,"resolveProxies":true,"lowerBound":1,"id":258,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"elseStatement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":259,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"thenStatement","changeable":true,"resolveProxies":true,"lowerBound":1,"id":260,"derived":false},{"id":261,"eClass":"EGenericType"},{"id":262,"eClass":"EGenericType"},{"id":263,"eClass":"EGenericType"},{"id":264,"eClass":"EGenericType"},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"static","changeable":true,"lowerBound":1,"iD":false,"id":265,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"importedElement","changeable":true,"resolveProxies":true,"lowerBound":1,"id":266,"derived":false},{"id":267,"eClass":"EGenericType"},{"id":268,"eClass":"EGenericType"},{"id":269,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"body","changeable":true,"resolveProxies":true,"lowerBound":1,"id":270,"derived":false},{"id":271,"eClass":"EGenericType"},{"id":272,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"leftOperand","changeable":true,"resolveProxies":true,"lowerBound":1,"id":273,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"rightOperand","changeable":true,"resolveProxies":true,"lowerBound":1,"id":274,"derived":false},{"id":275,"eClass":"EGenericType"},{"id":276,"eClass":"EGenericType"},{"id":277,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"tags","changeable":true,"resolveProxies":true,"lowerBound":0,"id":278,"derived":false},{"id":279,"eClass":"EGenericType"},{"id":280,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"body","changeable":true,"resolveProxies":true,"lowerBound":1,"id":281,"derived":false},{"id":282,"eClass":"EGenericType"},{"id":283,"eClass":"EGenericType"},{"id":284,"eClass":"EGenericType"},{"id":285,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"qualifier","changeable":true,"resolveProxies":true,"lowerBound":0,"id":286,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"member","changeable":true,"resolveProxies":true,"lowerBound":1,"id":287,"derived":false},{"id":288,"eClass":"EGenericType"},{"id":289,"eClass":"EGenericType"},{"id":290,"eClass":"EGenericType"},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"extraArrayDimensions","changeable":true,"lowerBound":1,"iD":false,"id":291,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"constructor","changeable":true,"lowerBound":1,"iD":false,"id":292,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"varargs","changeable":true,"lowerBound":1,"iD":false,"id":293,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"body","changeable":true,"resolveProxies":true,"lowerBound":0,"id":294,"derived":false},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"parameters","changeable":true,"resolveProxies":true,"lowerBound":0,"id":295,"derived":false},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"typeParameters","changeable":true,"resolveProxies":true,"lowerBound":0,"id":296,"derived":false},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"thrownExceptions","changeable":true,"resolveProxies":true,"lowerBound":0,"id":297,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"returnType","changeable":true,"resolveProxies":true,"lowerBound":1,"id":298,"derived":false},{"id":299,"eClass":"EGenericType"},{"id":300,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Integer","instanceClass":null,"id":301,"serializable":true,"eClass":"EDataType"},{"id":302,"eClass":"EGenericType"},{"id":303,"eClass":"EGenericType"},{"id":304,"eClass":"EGenericType"},{"id":305,"eClass":"EGenericType"},{"id":306,"eClass":"EGenericType"},{"id":307,"eClass":"EGenericType"},{"id":308,"eClass":"EGenericType"},{"id":309,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"method","changeable":true,"resolveProxies":true,"lowerBound":1,"id":310,"derived":false},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"arguments","changeable":true,"resolveProxies":true,"lowerBound":0,"id":311,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"expression","changeable":true,"resolveProxies":true,"lowerBound":0,"id":312,"derived":false},{"id":313,"eClass":"EGenericType"},{"id":314,"eClass":"EGenericType"},{"id":315,"eClass":"EGenericType"},{"id":316,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"qualifier","changeable":true,"resolveProxies":true,"lowerBound":0,"id":317,"derived":false},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"parameters","changeable":true,"resolveProxies":true,"lowerBound":0,"id":318,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"method","changeable":true,"resolveProxies":true,"lowerBound":1,"id":319,"derived":false},{"id":320,"eClass":"EGenericType"},{"id":321,"eClass":"EGenericType"},{"id":322,"eClass":"EGenericType"},{"id":323,"eClass":"EGenericType"},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":324,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isVarargs","changeable":true,"lowerBound":1,"iD":false,"id":325,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"resolveProxies":true,"lowerBound":0,"id":326,"derived":false},{"id":327,"eClass":"EGenericType"},{"id":328,"eClass":"EGenericType"},{"id":329,"eClass":"EGenericType"},{"id":330,"eClass":"EGenericType"},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":331,"derived":false},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"ownedElements","changeable":true,"resolveProxies":true,"lowerBound":0,"id":332,"derived":false},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"orphanTypes","changeable":true,"resolveProxies":true,"lowerBound":0,"id":333,"derived":false},{"id":334,"eClass":"EGenericType"},{"id":335,"eClass":"EGenericType"},{"container":true,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"model","changeable":true,"resolveProxies":true,"lowerBound":1,"id":336,"derived":false},{"id":337,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"fragments","changeable":true,"resolveProxies":true,"lowerBound":0,"id":338,"derived":false},{"id":339,"eClass":"EGenericType"},{"id":340,"eClass":"EGenericType"},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":341,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"proxy","changeable":true,"lowerBound":1,"iD":false,"id":342,"derived":false},{"id":343,"eClass":"EGenericType"},{"id":344,"eClass":"EGenericType"},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"extraArrayDimensions","changeable":true,"lowerBound":1,"iD":false,"id":345,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"element","changeable":true,"resolveProxies":true,"lowerBound":0,"id":346,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"qualifier","changeable":true,"resolveProxies":true,"lowerBound":0,"id":347,"derived":false},{"id":348,"eClass":"EGenericType"},{"id":349,"eClass":"EGenericType"},{"id":350,"eClass":"EGenericType"},{"id":351,"eClass":"EGenericType"},{"id":352,"eClass":"EGenericType"},{"id":353,"eClass":"EGenericType"},{"id":354,"eClass":"EGenericType"},{"id":355,"eClass":"EGenericType"},{"id":356,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"typeArguments","changeable":true,"resolveProxies":true,"lowerBound":0,"id":357,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"resolveProxies":true,"lowerBound":1,"id":358,"derived":false},{"id":359,"eClass":"EGenericType"},{"id":360,"eClass":"EGenericType"},{"id":361,"eClass":"EGenericType"},{"id":362,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"expression","changeable":true,"resolveProxies":true,"lowerBound":1,"id":363,"derived":false},{"id":364,"eClass":"EGenericType"},{"id":365,"eClass":"EGenericType"},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"operator","changeable":true,"lowerBound":1,"iD":false,"id":366,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"operand","changeable":true,"resolveProxies":true,"lowerBound":1,"id":367,"derived":false},{"id":368,"eClass":"EGenericType"},{"id":369,"eClass":"EGenericType"},{"id":370,"eClass":"EGenericType"},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"operator","changeable":true,"lowerBound":1,"iD":false,"id":371,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"operand","changeable":true,"resolveProxies":true,"lowerBound":1,"id":372,"derived":false},{"id":373,"eClass":"EGenericType"},{"id":374,"eClass":"EGenericType"},{"id":375,"eClass":"EGenericType"},{"id":376,"eClass":"EGenericType"},{"id":377,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"expression","changeable":true,"resolveProxies":true,"lowerBound":0,"id":378,"derived":false},{"id":379,"eClass":"EGenericType"},{"id":380,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"expression","changeable":true,"resolveProxies":true,"lowerBound":1,"id":381,"derived":false},{"id":382,"eClass":"EGenericType"},{"id":383,"eClass":"EGenericType"},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"modifiers","changeable":true,"lowerBound":1,"iD":false,"id":384,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isVarargs","changeable":true,"lowerBound":1,"iD":false,"id":385,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"resolveProxies":true,"lowerBound":1,"id":386,"derived":false},{"id":387,"eClass":"EGenericType"},{"id":388,"eClass":"EGenericType"},{"id":389,"eClass":"EGenericType"},{"id":390,"eClass":"EGenericType"},{"id":391,"eClass":"EGenericType"},{"id":392,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"arguments","changeable":true,"resolveProxies":true,"lowerBound":0,"id":393,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"expression","changeable":true,"resolveProxies":true,"lowerBound":0,"id":394,"derived":false},{"id":395,"eClass":"EGenericType"},{"id":396,"eClass":"EGenericType"},{"id":397,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"qualifier","changeable":true,"resolveProxies":true,"lowerBound":0,"id":398,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"field","changeable":true,"resolveProxies":true,"lowerBound":1,"id":399,"derived":false},{"id":400,"eClass":"EGenericType"},{"id":401,"eClass":"EGenericType"},{"id":402,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"arguments","changeable":true,"resolveProxies":true,"lowerBound":0,"id":403,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"qualifier","changeable":true,"resolveProxies":true,"lowerBound":0,"id":404,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"method","changeable":true,"resolveProxies":true,"lowerBound":1,"id":405,"derived":false},{"id":406,"eClass":"EGenericType"},{"id":407,"eClass":"EGenericType"},{"id":408,"eClass":"EGenericType"},{"id":409,"eClass":"EGenericType"},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"expressionInitialized","changeable":true,"lowerBound":1,"iD":false,"id":410,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"expression","changeable":true,"resolveProxies":true,"lowerBound":0,"id":411,"derived":false},{"id":412,"eClass":"EGenericType"},{"id":413,"eClass":"EGenericType"},{"id":414,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"statements","changeable":true,"resolveProxies":true,"lowerBound":0,"id":415,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"expression","changeable":true,"resolveProxies":true,"lowerBound":1,"id":416,"derived":false},{"id":417,"eClass":"EGenericType"},{"id":418,"eClass":"EGenericType"},{"id":419,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"body","changeable":true,"resolveProxies":true,"lowerBound":1,"id":420,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"expression","changeable":true,"resolveProxies":true,"lowerBound":1,"id":421,"derived":false},{"id":422,"eClass":"EGenericType"},{"id":423,"eClass":"EGenericType"},{"id":424,"eClass":"EGenericType"},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"tagName","changeable":true,"lowerBound":1,"iD":false,"id":425,"derived":false},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"fragments","changeable":true,"resolveProxies":true,"lowerBound":0,"id":426,"derived":false},{"id":427,"eClass":"EGenericType"},{"id":428,"eClass":"EGenericType"},{"id":429,"eClass":"EGenericType"},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"text","changeable":true,"lowerBound":1,"iD":false,"id":430,"derived":false},{"id":431,"eClass":"EGenericType"},{"id":432,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"qualifier","changeable":true,"resolveProxies":true,"lowerBound":0,"id":433,"derived":false},{"id":434,"eClass":"EGenericType"},{"id":435,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"finally","changeable":true,"resolveProxies":true,"lowerBound":0,"id":436,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"body","changeable":true,"resolveProxies":true,"lowerBound":1,"id":437,"derived":false},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"catchClauses","changeable":true,"resolveProxies":true,"lowerBound":0,"id":438,"derived":false},{"id":439,"eClass":"EGenericType"},{"id":440,"eClass":"EGenericType"},{"id":441,"eClass":"EGenericType"},{"id":442,"eClass":"EGenericType"},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isInterface","changeable":true,"lowerBound":1,"iD":false,"id":443,"derived":false},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"typeParameters","changeable":true,"resolveProxies":true,"lowerBound":0,"id":444,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"superclass","changeable":true,"resolveProxies":true,"lowerBound":0,"id":445,"derived":false},{"id":446,"eClass":"EGenericType"},{"id":447,"eClass":"EGenericType"},{"id":448,"eClass":"EGenericType"},{"id":449,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"declaration","changeable":true,"resolveProxies":true,"lowerBound":1,"id":450,"derived":false},{"id":451,"eClass":"EGenericType"},{"id":452,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"resolveProxies":true,"lowerBound":1,"id":453,"derived":false},{"id":454,"eClass":"EGenericType"},{"id":455,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"bounds","changeable":true,"resolveProxies":true,"lowerBound":0,"id":456,"derived":false},{"id":457,"eClass":"EGenericType"},{"id":458,"eClass":"EGenericType"},{"id":459,"eClass":"EGenericType"},{"id":460,"eClass":"EGenericType"},{"id":461,"eClass":"EGenericType"},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"extraArrayDimensions","changeable":true,"lowerBound":1,"iD":false,"id":462,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"initializer","changeable":true,"resolveProxies":true,"lowerBound":0,"id":463,"derived":false},{"id":464,"eClass":"EGenericType"},{"id":465,"eClass":"EGenericType"},{"id":466,"eClass":"EGenericType"},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"modifiers","changeable":true,"lowerBound":1,"iD":false,"id":467,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"resolveProxies":true,"lowerBound":1,"id":468,"derived":false},{"id":469,"eClass":"EGenericType"},{"id":470,"eClass":"EGenericType"},{"id":471,"eClass":"EGenericType"},{"id":472,"eClass":"EGenericType"},{"id":473,"eClass":"EGenericType"},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"modifiers","changeable":true,"lowerBound":1,"iD":false,"id":474,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"resolveProxies":true,"lowerBound":1,"id":475,"derived":false},{"id":476,"eClass":"EGenericType"},{"id":477,"eClass":"EGenericType"},{"id":478,"eClass":"EGenericType"},{"id":479,"eClass":"EGenericType"},{"id":480,"eClass":"EGenericType"},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isUpperBound","changeable":true,"lowerBound":1,"iD":false,"id":481,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"bound","changeable":true,"resolveProxies":true,"lowerBound":0,"id":482,"derived":false},{"id":483,"eClass":"EGenericType"},{"id":484,"eClass":"EGenericType"},{"id":485,"eClass":"EGenericType"},{"id":486,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"expression","changeable":true,"resolveProxies":true,"lowerBound":1,"id":487,"derived":false},{"container":false,"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"body","changeable":true,"resolveProxies":true,"lowerBound":1,"id":488,"derived":false},{"id":489,"eClass":"EGenericType"},{"id":490,"eClass":"EGenericType"},{"id":491,"eClass":"EGenericType"},{"nsPrefix":null,"nsURI":null,"name":"PrimitiveType","id":492,"eClass":"EPackage"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":0,"target":8},{"source":0,"target":9},{"source":0,"target":10},{"source":0,"target":11},{"source":0,"target":12},{"source":0,"target":13},{"source":0,"target":14},{"source":0,"target":15},{"source":0,"target":16},{"source":0,"target":17},{"source":0,"target":18},{"source":0,"target":19},{"source":0,"target":20},{"source":0,"target":21},{"source":0,"target":22},{"source":0,"target":23},{"source":0,"target":24},{"source":0,"target":25},{"source":0,"target":26},{"source":0,"target":27},{"source":0,"target":28},{"source":0,"target":29},{"source":0,"target":30},{"source":0,"target":31},{"source":0,"target":32},{"source":0,"target":33},{"source":0,"target":34},{"source":0,"target":35},{"source":0,"target":36},{"source":0,"target":37},{"source":0,"target":38},{"source":0,"target":39},{"source":0,"target":40},{"source":0,"target":41},{"source":0,"target":42},{"source":0,"target":43},{"source":0,"target":44},{"source":0,"target":45},{"source":0,"target":46},{"source":0,"target":47},{"source":0,"target":48},{"source":0,"target":49},{"source":0,"target":50},{"source":0,"target":51},{"source":0,"target":52},{"source":0,"target":53},{"source":0,"target":54},{"source":0,"target":55},{"source":0,"target":56},{"source":0,"target":57},{"source":0,"target":58},{"source":0,"target":59},{"source":0,"target":60},{"source":0,"target":61},{"source":0,"target":62},{"source":0,"target":63},{"source":0,"target":64},{"source":0,"target":65},{"source":0,"target":66},{"source":0,"target":67},{"source":0,"target":68},{"source":0,"target":69},{"source":0,"target":70},{"source":0,"target":71},{"source":0,"target":72},{"source":0,"target":73},{"source":0,"target":74},{"source":0,"target":75},{"source":0,"target":76},{"source":0,"target":77},{"source":0,"target":78},{"source":0,"target":79},{"source":0,"target":80},{"source":0,"target":81},{"source":0,"target":82},{"source":1,"target":0},{"source":1,"target":50},{"source":1,"target":14},{"source":1,"target":83},{"source":1,"target":84},{"source":1,"target":85},{"source":1,"target":86},{"source":1,"target":87},{"source":1,"target":88},{"source":1,"target":89},{"source":1,"target":90},{"source":1,"target":91},{"source":83,"target":92},{"source":83,"target":93},{"source":83,"target":1},{"source":93,"target":92},{"source":84,"target":53},{"source":84,"target":94},{"source":84,"target":1},{"source":84,"target":95},{"source":94,"target":53},{"source":85,"target":14},{"source":85,"target":96},{"source":85,"target":1},{"source":96,"target":14},{"source":86,"target":51},{"source":86,"target":97},{"source":86,"target":1},{"source":97,"target":51},{"source":87,"target":21},{"source":87,"target":98},{"source":87,"target":1},{"source":98,"target":21},{"source":88,"target":37},{"source":88,"target":99},{"source":88,"target":1},{"source":99,"target":37},{"source":89,"target":21},{"source":89,"target":100},{"source":89,"target":1},{"source":100,"target":21},{"source":90,"target":50},{"source":91,"target":14},{"source":2,"target":0},{"source":2,"target":30},{"source":2,"target":101},{"source":2,"target":102},{"source":2,"target":103},{"source":101,"target":51},{"source":101,"target":104},{"source":101,"target":2},{"source":104,"target":51},{"source":102,"target":3},{"source":102,"target":105},{"source":102,"target":2},{"source":105,"target":3},{"source":103,"target":30},{"source":3,"target":0},{"source":3,"target":13},{"source":3,"target":106},{"source":3,"target":107},{"source":3,"target":108},{"source":106,"target":51},{"source":106,"target":109},{"source":106,"target":3},{"source":109,"target":51},{"source":107,"target":30},{"source":107,"target":110},{"source":107,"target":3},{"source":110,"target":30},{"source":108,"target":13},{"source":4,"target":0},{"source":4,"target":1},{"source":4,"target":111},{"source":111,"target":1},{"source":5,"target":0},{"source":5,"target":50},{"source":5,"target":14},{"source":5,"target":112},{"source":5,"target":113},{"source":5,"target":114},{"source":5,"target":115},{"source":112,"target":51},{"source":112,"target":116},{"source":112,"target":5},{"source":116,"target":51},{"source":113,"target":30},{"source":113,"target":117},{"source":113,"target":5},{"source":117,"target":30},{"source":114,"target":50},{"source":115,"target":14},{"source":6,"target":0},{"source":6,"target":13},{"source":6,"target":118},{"source":6,"target":119},{"source":118,"target":14},{"source":118,"target":120},{"source":118,"target":6},{"source":120,"target":14},{"source":119,"target":13},{"source":7,"target":0},{"source":7,"target":30},{"source":7,"target":121},{"source":7,"target":122},{"source":7,"target":123},{"source":121,"target":30},{"source":121,"target":124},{"source":121,"target":7},{"source":124,"target":30},{"source":122,"target":30},{"source":122,"target":125},{"source":122,"target":7},{"source":125,"target":30},{"source":123,"target":30},{"source":8,"target":0},{"source":8,"target":30},{"source":8,"target":126},{"source":8,"target":127},{"source":8,"target":128},{"source":8,"target":129},{"source":126,"target":30},{"source":126,"target":130},{"source":126,"target":8},{"source":130,"target":30},{"source":127,"target":9},{"source":127,"target":131},{"source":127,"target":8},{"source":131,"target":9},{"source":128,"target":51},{"source":128,"target":132},{"source":128,"target":8},{"source":132,"target":51},{"source":129,"target":30},{"source":9,"target":0},{"source":9,"target":30},{"source":9,"target":133},{"source":9,"target":134},{"source":133,"target":30},{"source":133,"target":135},{"source":133,"target":9},{"source":135,"target":30},{"source":134,"target":30},{"source":10,"target":0},{"source":10,"target":30},{"source":10,"target":136},{"source":10,"target":137},{"source":136,"target":30},{"source":136,"target":138},{"source":136,"target":10},{"source":138,"target":30},{"source":137,"target":30},{"source":11,"target":0},{"source":11,"target":62},{"source":11,"target":139},{"source":11,"target":140},{"source":11,"target":141},{"source":139,"target":30},{"source":139,"target":142},{"source":139,"target":11},{"source":142,"target":30},{"source":140,"target":30},{"source":140,"target":143},{"source":140,"target":11},{"source":143,"target":30},{"source":141,"target":62},{"source":12,"target":0},{"source":12,"target":30},{"source":12,"target":144},{"source":12,"target":145},{"source":12,"target":146},{"source":12,"target":147},{"source":144,"target":92},{"source":144,"target":148},{"source":144,"target":12},{"source":148,"target":92},{"source":145,"target":30},{"source":145,"target":149},{"source":145,"target":12},{"source":149,"target":30},{"source":146,"target":30},{"source":146,"target":150},{"source":146,"target":12},{"source":150,"target":30},{"source":147,"target":30},{"source":13,"target":0},{"source":13,"target":151},{"source":151,"target":21},{"source":151,"target":152},{"source":151,"target":13},{"source":152,"target":21},{"source":14,"target":0},{"source":14,"target":13},{"source":14,"target":153},{"source":14,"target":154},{"source":14,"target":155},{"source":153,"target":92},{"source":153,"target":156},{"source":153,"target":14},{"source":156,"target":92},{"source":154,"target":2},{"source":154,"target":157},{"source":154,"target":14},{"source":157,"target":2},{"source":155,"target":13},{"source":15,"target":0},{"source":15,"target":62},{"source":15,"target":158},{"source":15,"target":159},{"source":158,"target":62},{"source":158,"target":160},{"source":158,"target":15},{"source":160,"target":62},{"source":159,"target":62},{"source":16,"target":0},{"source":16,"target":21},{"source":16,"target":161},{"source":161,"target":21},{"source":17,"target":0},{"source":17,"target":62},{"source":17,"target":162},{"source":17,"target":163},{"source":162,"target":51},{"source":162,"target":164},{"source":162,"target":17},{"source":164,"target":51},{"source":163,"target":62},{"source":18,"target":0},{"source":18,"target":30},{"source":18,"target":165},{"source":18,"target":166},{"source":18,"target":167},{"source":165,"target":51},{"source":165,"target":168},{"source":165,"target":18},{"source":168,"target":51},{"source":166,"target":30},{"source":166,"target":169},{"source":166,"target":18},{"source":169,"target":30},{"source":167,"target":30},{"source":19,"target":0},{"source":19,"target":13},{"source":19,"target":170},{"source":19,"target":171},{"source":19,"target":172},{"source":170,"target":61},{"source":170,"target":173},{"source":170,"target":19},{"source":173,"target":61},{"source":171,"target":15},{"source":171,"target":174},{"source":171,"target":19},{"source":174,"target":15},{"source":172,"target":13},{"source":20,"target":0},{"source":20,"target":30},{"source":20,"target":175},{"source":20,"target":176},{"source":20,"target":177},{"source":20,"target":178},{"source":20,"target":179},{"source":175,"target":30},{"source":175,"target":180},{"source":175,"target":20},{"source":180,"target":30},{"source":176,"target":51},{"source":176,"target":181},{"source":176,"target":20},{"source":181,"target":51},{"source":177,"target":30},{"source":177,"target":182},{"source":177,"target":20},{"source":182,"target":30},{"source":178,"target":6},{"source":178,"target":183},{"source":178,"target":20},{"source":183,"target":6},{"source":179,"target":30},{"source":21,"target":0},{"source":21,"target":13},{"source":21,"target":184},{"source":21,"target":185},{"source":21,"target":186},{"source":21,"target":187},{"source":184,"target":92},{"source":184,"target":188},{"source":184,"target":21},{"source":188,"target":92},{"source":185,"target":189},{"source":185,"target":190},{"source":185,"target":21},{"source":190,"target":189},{"source":186,"target":189},{"source":186,"target":191},{"source":186,"target":21},{"source":191,"target":189},{"source":187,"target":13},{"source":22,"target":0},{"source":22,"target":30},{"source":22,"target":192},{"source":22,"target":193},{"source":22,"target":194},{"source":22,"target":195},{"source":192,"target":30},{"source":192,"target":196},{"source":192,"target":22},{"source":196,"target":30},{"source":193,"target":30},{"source":193,"target":197},{"source":193,"target":22},{"source":197,"target":30},{"source":194,"target":30},{"source":194,"target":198},{"source":194,"target":22},{"source":198,"target":30},{"source":195,"target":30},{"source":23,"target":0},{"source":23,"target":62},{"source":23,"target":199},{"source":23,"target":200},{"source":199,"target":51},{"source":199,"target":201},{"source":199,"target":23},{"source":201,"target":51},{"source":200,"target":62},{"source":24,"target":0},{"source":24,"target":62},{"source":24,"target":202},{"source":24,"target":203},{"source":202,"target":30},{"source":202,"target":204},{"source":202,"target":24},{"source":204,"target":30},{"source":203,"target":62},{"source":25,"target":0},{"source":25,"target":62},{"source":25,"target":205},{"source":25,"target":206},{"source":25,"target":207},{"source":205,"target":30},{"source":205,"target":208},{"source":205,"target":25},{"source":208,"target":30},{"source":206,"target":62},{"source":206,"target":209},{"source":206,"target":25},{"source":209,"target":62},{"source":207,"target":62},{"source":26,"target":0},{"source":26,"target":62},{"source":26,"target":210},{"source":210,"target":62},{"source":27,"target":0},{"source":27,"target":62},{"source":27,"target":211},{"source":27,"target":212},{"source":27,"target":213},{"source":27,"target":214},{"source":211,"target":61},{"source":211,"target":215},{"source":211,"target":27},{"source":215,"target":61},{"source":212,"target":30},{"source":212,"target":216},{"source":212,"target":27},{"source":216,"target":30},{"source":213,"target":62},{"source":213,"target":217},{"source":213,"target":27},{"source":217,"target":62},{"source":214,"target":62},{"source":28,"target":0},{"source":28,"target":14},{"source":28,"target":50},{"source":28,"target":218},{"source":28,"target":219},{"source":28,"target":220},{"source":28,"target":221},{"source":218,"target":30},{"source":218,"target":222},{"source":218,"target":28},{"source":222,"target":30},{"source":219,"target":6},{"source":219,"target":223},{"source":219,"target":28},{"source":223,"target":6},{"source":220,"target":14},{"source":221,"target":50},{"source":29,"target":0},{"source":29,"target":1},{"source":29,"target":224},{"source":29,"target":225},{"source":224,"target":28},{"source":224,"target":226},{"source":224,"target":29},{"source":226,"target":28},{"source":225,"target":1},{"source":30,"target":0},{"source":30,"target":13},{"source":30,"target":227},{"source":227,"target":13},{"source":31,"target":0},{"source":31,"target":62},{"source":31,"target":228},{"source":31,"target":229},{"source":228,"target":30},{"source":228,"target":230},{"source":228,"target":31},{"source":230,"target":30},{"source":229,"target":62},{"source":32,"target":0},{"source":32,"target":30},{"source":32,"target":231},{"source":32,"target":232},{"source":32,"target":233},{"source":231,"target":51},{"source":231,"target":234},{"source":231,"target":32},{"source":234,"target":51},{"source":232,"target":30},{"source":232,"target":235},{"source":232,"target":32},{"source":235,"target":30},{"source":233,"target":30},{"source":33,"target":0},{"source":33,"target":14},{"source":33,"target":49},{"source":33,"target":236},{"source":33,"target":237},{"source":33,"target":238},{"source":236,"target":51},{"source":236,"target":239},{"source":236,"target":33},{"source":239,"target":51},{"source":237,"target":14},{"source":238,"target":49},{"source":34,"target":0},{"source":34,"target":62},{"source":34,"target":240},{"source":34,"target":241},{"source":34,"target":242},{"source":34,"target":243},{"source":34,"target":244},{"source":240,"target":62},{"source":240,"target":245},{"source":240,"target":34},{"source":245,"target":62},{"source":241,"target":30},{"source":241,"target":246},{"source":241,"target":34},{"source":246,"target":30},{"source":242,"target":30},{"source":242,"target":247},{"source":242,"target":34},{"source":247,"target":30},{"source":243,"target":30},{"source":243,"target":248},{"source":243,"target":34},{"source":248,"target":30},{"source":244,"target":62},{"source":35,"target":0},{"source":35,"target":30},{"source":35,"target":249},{"source":35,"target":250},{"source":35,"target":251},{"source":35,"target":252},{"source":35,"target":253},{"source":249,"target":92},{"source":249,"target":254},{"source":249,"target":35},{"source":254,"target":92},{"source":250,"target":30},{"source":250,"target":255},{"source":250,"target":35},{"source":255,"target":30},{"source":251,"target":30},{"source":251,"target":256},{"source":251,"target":35},{"source":256,"target":30},{"source":252,"target":30},{"source":252,"target":257},{"source":252,"target":35},{"source":257,"target":30},{"source":253,"target":30},{"source":36,"target":0},{"source":36,"target":62},{"source":36,"target":258},{"source":36,"target":259},{"source":36,"target":260},{"source":36,"target":261},{"source":258,"target":30},{"source":258,"target":262},{"source":258,"target":36},{"source":262,"target":30},{"source":259,"target":62},{"source":259,"target":263},{"source":259,"target":36},{"source":263,"target":62},{"source":260,"target":62},{"source":260,"target":264},{"source":260,"target":36},{"source":264,"target":62},{"source":261,"target":62},{"source":37,"target":0},{"source":37,"target":13},{"source":37,"target":265},{"source":37,"target":266},{"source":37,"target":267},{"source":265,"target":189},{"source":265,"target":268},{"source":265,"target":37},{"source":268,"target":189},{"source":266,"target":51},{"source":266,"target":269},{"source":266,"target":37},{"source":269,"target":51},{"source":267,"target":13},{"source":38,"target":0},{"source":38,"target":14},{"source":38,"target":270},{"source":38,"target":271},{"source":270,"target":15},{"source":270,"target":272},{"source":270,"target":38},{"source":272,"target":15},{"source":271,"target":14},{"source":39,"target":0},{"source":39,"target":30},{"source":39,"target":273},{"source":39,"target":274},{"source":39,"target":275},{"source":273,"target":30},{"source":273,"target":276},{"source":273,"target":39},{"source":276,"target":30},{"source":274,"target":51},{"source":274,"target":277},{"source":274,"target":39},{"source":277,"target":51},{"source":275,"target":30},{"source":40,"target":0},{"source":40,"target":21},{"source":40,"target":278},{"source":40,"target":279},{"source":278,"target":69},{"source":278,"target":280},{"source":278,"target":40},{"source":280,"target":69},{"source":279,"target":21},{"source":41,"target":0},{"source":41,"target":62},{"source":41,"target":50},{"source":41,"target":281},{"source":41,"target":282},{"source":41,"target":283},{"source":281,"target":62},{"source":281,"target":284},{"source":281,"target":41},{"source":284,"target":62},{"source":282,"target":62},{"source":283,"target":50},{"source":42,"target":0},{"source":42,"target":21},{"source":42,"target":285},{"source":285,"target":21},{"source":43,"target":0},{"source":43,"target":13},{"source":43,"target":286},{"source":43,"target":287},{"source":43,"target":288},{"source":286,"target":51},{"source":286,"target":289},{"source":286,"target":43},{"source":289,"target":51},{"source":287,"target":51},{"source":287,"target":290},{"source":287,"target":43},{"source":290,"target":51},{"source":288,"target":13},{"source":44,"target":0},{"source":44,"target":50},{"source":44,"target":14},{"source":44,"target":291},{"source":44,"target":292},{"source":44,"target":293},{"source":44,"target":294},{"source":44,"target":295},{"source":44,"target":296},{"source":44,"target":297},{"source":44,"target":298},{"source":44,"target":299},{"source":44,"target":300},{"source":291,"target":301},{"source":291,"target":302},{"source":291,"target":44},{"source":302,"target":301},{"source":292,"target":189},{"source":292,"target":303},{"source":292,"target":44},{"source":303,"target":189},{"source":293,"target":189},{"source":293,"target":304},{"source":293,"target":44},{"source":304,"target":189},{"source":294,"target":15},{"source":294,"target":305},{"source":294,"target":44},{"source":305,"target":15},{"source":295,"target":61},{"source":295,"target":306},{"source":295,"target":44},{"source":306,"target":61},{"source":296,"target":76},{"source":296,"target":307},{"source":296,"target":44},{"source":307,"target":76},{"source":297,"target":51},{"source":297,"target":308},{"source":297,"target":44},{"source":308,"target":51},{"source":298,"target":51},{"source":298,"target":309},{"source":298,"target":44},{"source":309,"target":51},{"source":299,"target":50},{"source":300,"target":14},{"source":45,"target":0},{"source":45,"target":30},{"source":45,"target":310},{"source":45,"target":311},{"source":45,"target":312},{"source":45,"target":313},{"source":310,"target":51},{"source":310,"target":314},{"source":310,"target":45},{"source":314,"target":51},{"source":311,"target":30},{"source":311,"target":315},{"source":311,"target":45},{"source":315,"target":30},{"source":312,"target":30},{"source":312,"target":316},{"source":312,"target":45},{"source":316,"target":30},{"source":313,"target":30},{"source":46,"target":0},{"source":46,"target":13},{"source":46,"target":317},{"source":46,"target":318},{"source":46,"target":319},{"source":46,"target":320},{"source":317,"target":51},{"source":317,"target":321},{"source":317,"target":46},{"source":321,"target":51},{"source":318,"target":47},{"source":318,"target":322},{"source":318,"target":46},{"source":322,"target":47},{"source":319,"target":51},{"source":319,"target":323},{"source":319,"target":46},{"source":323,"target":51},{"source":320,"target":13},{"source":47,"target":0},{"source":47,"target":13},{"source":47,"target":324},{"source":47,"target":325},{"source":47,"target":326},{"source":47,"target":327},{"source":324,"target":92},{"source":324,"target":328},{"source":324,"target":47},{"source":328,"target":92},{"source":325,"target":189},{"source":325,"target":329},{"source":325,"target":47},{"source":329,"target":189},{"source":326,"target":51},{"source":326,"target":330},{"source":326,"target":47},{"source":330,"target":51},{"source":327,"target":13},{"source":48,"target":0},{"source":48,"target":331},{"source":48,"target":332},{"source":48,"target":333},{"source":331,"target":92},{"source":331,"target":334},{"source":331,"target":48},{"source":334,"target":92},{"source":332,"target":53},{"source":332,"target":335},{"source":332,"target":48},{"source":332,"target":336},{"source":335,"target":53},{"source":333,"target":52},{"source":333,"target":337},{"source":333,"target":48},{"source":337,"target":52},{"source":49,"target":0},{"source":49,"target":78},{"source":49,"target":338},{"source":49,"target":339},{"source":338,"target":61},{"source":338,"target":340},{"source":338,"target":49},{"source":340,"target":61},{"source":339,"target":78},{"source":50,"target":0},{"source":50,"target":341},{"source":50,"target":342},{"source":341,"target":92},{"source":341,"target":343},{"source":341,"target":50},{"source":343,"target":92},{"source":342,"target":189},{"source":342,"target":344},{"source":342,"target":50},{"source":344,"target":189},{"source":51,"target":0},{"source":51,"target":30},{"source":51,"target":345},{"source":51,"target":346},{"source":51,"target":347},{"source":51,"target":348},{"source":345,"target":301},{"source":345,"target":349},{"source":345,"target":51},{"source":349,"target":301},{"source":346,"target":50},{"source":346,"target":350},{"source":346,"target":51},{"source":350,"target":50},{"source":347,"target":51},{"source":347,"target":351},{"source":347,"target":51},{"source":351,"target":51},{"source":348,"target":30},{"source":52,"target":0},{"source":52,"target":50},{"source":52,"target":352},{"source":352,"target":50},{"source":53,"target":0},{"source":53,"target":13},{"source":53,"target":50},{"source":53,"target":336},{"source":53,"target":95},{"source":53,"target":353},{"source":53,"target":354},{"source":336,"target":48},{"source":336,"target":355},{"source":336,"target":53},{"source":336,"target":332},{"source":355,"target":48},{"source":95,"target":1},{"source":95,"target":356},{"source":95,"target":53},{"source":95,"target":84},{"source":356,"target":1},{"source":353,"target":13},{"source":354,"target":50},{"source":54,"target":0},{"source":54,"target":13},{"source":54,"target":52},{"source":54,"target":357},{"source":54,"target":358},{"source":54,"target":359},{"source":54,"target":360},{"source":357,"target":51},{"source":357,"target":361},{"source":357,"target":54},{"source":361,"target":51},{"source":358,"target":51},{"source":358,"target":362},{"source":358,"target":54},{"source":362,"target":51},{"source":359,"target":13},{"source":360,"target":52},{"source":55,"target":0},{"source":55,"target":30},{"source":55,"target":363},{"source":55,"target":364},{"source":363,"target":30},{"source":363,"target":365},{"source":363,"target":55},{"source":365,"target":30},{"source":364,"target":30},{"source":56,"target":0},{"source":56,"target":30},{"source":56,"target":366},{"source":56,"target":367},{"source":56,"target":368},{"source":366,"target":92},{"source":366,"target":369},{"source":366,"target":56},{"source":369,"target":92},{"source":367,"target":30},{"source":367,"target":370},{"source":367,"target":56},{"source":370,"target":30},{"source":368,"target":30},{"source":57,"target":0},{"source":57,"target":30},{"source":57,"target":371},{"source":57,"target":372},{"source":57,"target":373},{"source":371,"target":92},{"source":371,"target":374},{"source":371,"target":57},{"source":374,"target":92},{"source":372,"target":30},{"source":372,"target":375},{"source":372,"target":57},{"source":375,"target":30},{"source":373,"target":30},{"source":58,"target":0},{"source":58,"target":13},{"source":58,"target":52},{"source":58,"target":376},{"source":58,"target":377},{"source":376,"target":13},{"source":377,"target":52},{"source":59,"target":0},{"source":59,"target":62},{"source":59,"target":378},{"source":59,"target":379},{"source":378,"target":30},{"source":378,"target":380},{"source":378,"target":59},{"source":380,"target":30},{"source":379,"target":62},{"source":60,"target":0},{"source":60,"target":62},{"source":60,"target":381},{"source":60,"target":382},{"source":381,"target":30},{"source":381,"target":383},{"source":381,"target":60},{"source":383,"target":30},{"source":382,"target":62},{"source":61,"target":0},{"source":61,"target":13},{"source":61,"target":78},{"source":61,"target":384},{"source":61,"target":385},{"source":61,"target":386},{"source":61,"target":387},{"source":61,"target":388},{"source":384,"target":92},{"source":384,"target":389},{"source":384,"target":61},{"source":389,"target":92},{"source":385,"target":189},{"source":385,"target":390},{"source":385,"target":61},{"source":390,"target":189},{"source":386,"target":51},{"source":386,"target":391},{"source":386,"target":61},{"source":391,"target":51},{"source":387,"target":13},{"source":388,"target":78},{"source":62,"target":0},{"source":62,"target":13},{"source":62,"target":392},{"source":392,"target":13},{"source":63,"target":0},{"source":63,"target":62},{"source":63,"target":393},{"source":63,"target":394},{"source":63,"target":395},{"source":393,"target":30},{"source":393,"target":396},{"source":393,"target":63},{"source":396,"target":30},{"source":394,"target":30},{"source":394,"target":397},{"source":394,"target":63},{"source":397,"target":30},{"source":395,"target":62},{"source":64,"target":0},{"source":64,"target":30},{"source":64,"target":398},{"source":64,"target":399},{"source":64,"target":400},{"source":398,"target":51},{"source":398,"target":401},{"source":398,"target":64},{"source":401,"target":51},{"source":399,"target":51},{"source":399,"target":402},{"source":399,"target":64},{"source":402,"target":51},{"source":400,"target":30},{"source":65,"target":0},{"source":65,"target":30},{"source":65,"target":403},{"source":65,"target":404},{"source":65,"target":405},{"source":65,"target":406},{"source":403,"target":30},{"source":403,"target":407},{"source":403,"target":65},{"source":407,"target":30},{"source":404,"target":51},{"source":404,"target":408},{"source":404,"target":65},{"source":408,"target":51},{"source":405,"target":51},{"source":405,"target":409},{"source":405,"target":65},{"source":409,"target":51},{"source":406,"target":30},{"source":66,"target":0},{"source":66,"target":62},{"source":66,"target":410},{"source":66,"target":411},{"source":66,"target":412},{"source":410,"target":189},{"source":410,"target":413},{"source":410,"target":66},{"source":413,"target":189},{"source":411,"target":30},{"source":411,"target":414},{"source":411,"target":66},{"source":414,"target":30},{"source":412,"target":62},{"source":67,"target":0},{"source":67,"target":62},{"source":67,"target":415},{"source":67,"target":416},{"source":67,"target":417},{"source":415,"target":62},{"source":415,"target":418},{"source":415,"target":67},{"source":418,"target":62},{"source":416,"target":30},{"source":416,"target":419},{"source":416,"target":67},{"source":419,"target":30},{"source":417,"target":62},{"source":68,"target":0},{"source":68,"target":62},{"source":68,"target":420},{"source":68,"target":421},{"source":68,"target":422},{"source":420,"target":15},{"source":420,"target":423},{"source":420,"target":68},{"source":423,"target":15},{"source":421,"target":30},{"source":421,"target":424},{"source":421,"target":68},{"source":424,"target":30},{"source":422,"target":62},{"source":69,"target":0},{"source":69,"target":13},{"source":69,"target":425},{"source":69,"target":426},{"source":69,"target":427},{"source":425,"target":92},{"source":425,"target":428},{"source":425,"target":69},{"source":428,"target":92},{"source":426,"target":13},{"source":426,"target":429},{"source":426,"target":69},{"source":429,"target":13},{"source":427,"target":13},{"source":70,"target":0},{"source":70,"target":13},{"source":70,"target":430},{"source":70,"target":431},{"source":430,"target":92},{"source":430,"target":432},{"source":430,"target":70},{"source":432,"target":92},{"source":431,"target":13},{"source":71,"target":0},{"source":71,"target":30},{"source":71,"target":433},{"source":71,"target":434},{"source":433,"target":51},{"source":433,"target":435},{"source":433,"target":71},{"source":435,"target":51},{"source":434,"target":30},{"source":72,"target":0},{"source":72,"target":62},{"source":72,"target":436},{"source":72,"target":437},{"source":72,"target":438},{"source":72,"target":439},{"source":436,"target":15},{"source":436,"target":440},{"source":436,"target":72},{"source":440,"target":15},{"source":437,"target":15},{"source":437,"target":441},{"source":437,"target":72},{"source":441,"target":15},{"source":438,"target":19},{"source":438,"target":442},{"source":438,"target":72},{"source":442,"target":19},{"source":439,"target":62},{"source":73,"target":0},{"source":73,"target":1},{"source":73,"target":443},{"source":73,"target":444},{"source":73,"target":445},{"source":73,"target":446},{"source":443,"target":189},{"source":443,"target":447},{"source":443,"target":73},{"source":447,"target":189},{"source":444,"target":76},{"source":444,"target":448},{"source":444,"target":73},{"source":448,"target":76},{"source":445,"target":51},{"source":445,"target":449},{"source":445,"target":73},{"source":449,"target":51},{"source":446,"target":1},{"source":74,"target":0},{"source":74,"target":62},{"source":74,"target":450},{"source":74,"target":451},{"source":450,"target":1},{"source":450,"target":452},{"source":450,"target":74},{"source":452,"target":1},{"source":451,"target":62},{"source":75,"target":0},{"source":75,"target":30},{"source":75,"target":453},{"source":75,"target":454},{"source":453,"target":51},{"source":453,"target":455},{"source":453,"target":75},{"source":455,"target":51},{"source":454,"target":30},{"source":76,"target":0},{"source":76,"target":13},{"source":76,"target":50},{"source":76,"target":456},{"source":76,"target":457},{"source":76,"target":458},{"source":456,"target":51},{"source":456,"target":459},{"source":456,"target":76},{"source":459,"target":51},{"source":457,"target":13},{"source":458,"target":50},{"source":77,"target":0},{"source":77,"target":50},{"source":77,"target":13},{"source":77,"target":460},{"source":77,"target":461},{"source":460,"target":50},{"source":461,"target":13},{"source":78,"target":0},{"source":78,"target":50},{"source":78,"target":462},{"source":78,"target":463},{"source":78,"target":464},{"source":462,"target":301},{"source":462,"target":465},{"source":462,"target":78},{"source":465,"target":301},{"source":463,"target":30},{"source":463,"target":466},{"source":463,"target":78},{"source":466,"target":30},{"source":464,"target":50},{"source":79,"target":0},{"source":79,"target":30},{"source":79,"target":49},{"source":79,"target":78},{"source":79,"target":467},{"source":79,"target":468},{"source":79,"target":469},{"source":79,"target":470},{"source":79,"target":471},{"source":467,"target":92},{"source":467,"target":472},{"source":467,"target":79},{"source":472,"target":92},{"source":468,"target":51},{"source":468,"target":473},{"source":468,"target":79},{"source":473,"target":51},{"source":469,"target":30},{"source":470,"target":49},{"source":471,"target":78},{"source":80,"target":0},{"source":80,"target":62},{"source":80,"target":49},{"source":80,"target":78},{"source":80,"target":474},{"source":80,"target":475},{"source":80,"target":476},{"source":80,"target":477},{"source":80,"target":478},{"source":474,"target":92},{"source":474,"target":479},{"source":474,"target":80},{"source":479,"target":92},{"source":475,"target":51},{"source":475,"target":480},{"source":475,"target":80},{"source":480,"target":51},{"source":476,"target":62},{"source":477,"target":49},{"source":478,"target":78},{"source":81,"target":0},{"source":81,"target":52},{"source":81,"target":13},{"source":81,"target":481},{"source":81,"target":482},{"source":81,"target":483},{"source":81,"target":484},{"source":481,"target":189},{"source":481,"target":485},{"source":481,"target":81},{"source":485,"target":189},{"source":482,"target":51},{"source":482,"target":486},{"source":482,"target":81},{"source":486,"target":51},{"source":483,"target":52},{"source":484,"target":13},{"source":82,"target":0},{"source":82,"target":62},{"source":82,"target":487},{"source":82,"target":488},{"source":82,"target":489},{"source":487,"target":30},{"source":487,"target":490},{"source":487,"target":82},{"source":490,"target":30},{"source":488,"target":62},{"source":488,"target":491},{"source":488,"target":82},{"source":491,"target":62},{"source":489,"target":62},{"source":492,"target":92},{"source":492,"target":189},{"source":492,"target":301},{"source":92,"target":492},{"source":189,"target":492},{"source":301,"target":492}],"multigraph":true} |
true | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0"
xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="ctx"
nsURI="http://www.example.org/ctx" nsPrefix="ctx">
<eClassifiers xsi:type="ecore:EClass" name="ContextModel">
<eStructuralFeatures xsi:type="ecore:EReference" name="elements" upperBound="-1"
eType="#//ContextModelElement" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ModelClass" abstract="true" eSuperTypes="#//ContextModelElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="attribute" upperBound="-1"
eType="#//Attribute" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EntityClass" eSuperTypes="#//ModelClass #//ComparableElements">
<eStructuralFeatures xsi:type="ecore:EReference" name="superclass" eType="#//EntityClass"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isAbstract" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="RelatorClass" eSuperTypes="#//ModelClass"/>
<eClassifiers xsi:type="ecore:EClass" name="Attribute" eSuperTypes="#//NamedElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="datatype" lowerBound="1"
eType="#//DataType"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="NamedElement" abstract="true">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="DataType" eSuperTypes="#//ContextModelElement #//ComparableElements"/>
<eClassifiers xsi:type="ecore:EClass" name="ComparativeFormalRelation" eSuperTypes="#//ContextModelElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="target" lowerBound="1"
upperBound="-1" eType="#//ComparableElements"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="source" lowerBound="1"
upperBound="-1" eType="#//ComparableElements"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Association" eSuperTypes="#//ContextModelElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="source" lowerBound="1"
eType="#//RelatorClass"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="target" lowerBound="1"
eType="#//EntityClass"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ContextModelElement" abstract="true"
eSuperTypes="#//NamedElement"/>
<eClassifiers xsi:type="ecore:EClass" name="QualitativeFormalRelation" eSuperTypes="#//ContextModelElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="parameter" lowerBound="1"
upperBound="-1" eType="#//QualitativeParameter" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="datatype" lowerBound="1"
eType="#//DataType"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="QualitativeParameter" eSuperTypes="#//NamedElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="element" lowerBound="1"
eType="#//ComparableElements"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ComparableElements" abstract="true"/>
<eClassifiers xsi:type="ecore:EClass" name="PrimitiveFormalRelation" eSuperTypes="#//ComparativeFormalRelation"/>
<eClassifiers xsi:type="ecore:EClass" name="PrimitiveDataType" eSuperTypes="#//DataType"/>
</ecore:EPackage>
| github:ecore:/data/gssi/metamodel-dataset-analysis-toolchain/metamodels/ctx.ecore | ecore | ctx
ContextModel
elements
ModelClass
attribute
EntityClass
superclass
isAbstract
RelatorClass
Attribute
datatype
NamedElement
name
DataType
ComparativeFormalRelation
target
source
Association
source
target
ContextModelElement
QualitativeFormalRelation
parameter
datatype
QualitativeParameter
element
ComparableElements
PrimitiveFormalRelation
PrimitiveDataType | null | {"directed":true,"nodes":[{"nsPrefix":"ctx","nsURI":"http://www.example.org/ctx","name":"ctx","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ContextModel","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ModelClass","instanceClass":null,"abstract":true,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EntityClass","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RelatorClass","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Attribute","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NamedElement","instanceClass":null,"abstract":true,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DataType","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ComparativeFormalRelation","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Association","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ContextModelElement","instanceClass":null,"abstract":true,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"QualitativeFormalRelation","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"QualitativeParameter","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ComparableElements","instanceClass":null,"abstract":true,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PrimitiveFormalRelation","instanceClass":null,"abstract":false,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PrimitiveDataType","instanceClass":null,"abstract":false,"id":15,"interface":false,"eClass":"EClass"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"elements","changeable":true,"resolveProxies":true,"lowerBound":0,"id":16,"derived":false},{"id":17,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"attribute","changeable":true,"resolveProxies":true,"lowerBound":0,"id":18,"derived":false},{"id":19,"eClass":"EGenericType"},{"id":20,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"superclass","changeable":true,"resolveProxies":true,"lowerBound":0,"id":21,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isAbstract","changeable":true,"lowerBound":0,"iD":false,"id":22,"derived":false},{"id":23,"eClass":"EGenericType"},{"id":24,"eClass":"EGenericType"},{"id":25,"eClass":"EGenericType"},{"id":26,"eClass":"EGenericType"},{"id":27,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"datatype","changeable":true,"resolveProxies":true,"lowerBound":1,"id":28,"derived":false},{"id":29,"eClass":"EGenericType"},{"id":30,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":31,"derived":false},{"id":32,"eClass":"EGenericType"},{"id":33,"eClass":"EGenericType"},{"id":34,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"target","changeable":true,"resolveProxies":true,"lowerBound":1,"id":35,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"source","changeable":true,"resolveProxies":true,"lowerBound":1,"id":36,"derived":false},{"id":37,"eClass":"EGenericType"},{"id":38,"eClass":"EGenericType"},{"id":39,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"source","changeable":true,"resolveProxies":true,"lowerBound":1,"id":40,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"target","changeable":true,"resolveProxies":true,"lowerBound":1,"id":41,"derived":false},{"id":42,"eClass":"EGenericType"},{"id":43,"eClass":"EGenericType"},{"id":44,"eClass":"EGenericType"},{"id":45,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"parameter","changeable":true,"resolveProxies":true,"lowerBound":1,"id":46,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"datatype","changeable":true,"resolveProxies":true,"lowerBound":1,"id":47,"derived":false},{"id":48,"eClass":"EGenericType"},{"id":49,"eClass":"EGenericType"},{"id":50,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"element","changeable":true,"resolveProxies":true,"lowerBound":1,"id":51,"derived":false},{"id":52,"eClass":"EGenericType"},{"id":53,"eClass":"EGenericType"},{"id":54,"eClass":"EGenericType"},{"id":55,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":0,"target":8},{"source":0,"target":9},{"source":0,"target":10},{"source":0,"target":11},{"source":0,"target":12},{"source":0,"target":13},{"source":0,"target":14},{"source":0,"target":15},{"source":1,"target":0},{"source":1,"target":16},{"source":16,"target":10},{"source":16,"target":17},{"source":16,"target":1},{"source":17,"target":10},{"source":2,"target":0},{"source":2,"target":10},{"source":2,"target":18},{"source":2,"target":19},{"source":18,"target":5},{"source":18,"target":20},{"source":18,"target":2},{"source":20,"target":5},{"source":19,"target":10},{"source":3,"target":0},{"source":3,"target":2},{"source":3,"target":13},{"source":3,"target":21},{"source":3,"target":22},{"source":3,"target":23},{"source":3,"target":24},{"source":21,"target":3},{"source":21,"target":25},{"source":21,"target":3},{"source":25,"target":3},{"source":22,"target":26},{"source":22,"target":3},{"source":23,"target":2},{"source":24,"target":13},{"source":4,"target":0},{"source":4,"target":2},{"source":4,"target":27},{"source":27,"target":2},{"source":5,"target":0},{"source":5,"target":6},{"source":5,"target":28},{"source":5,"target":29},{"source":28,"target":7},{"source":28,"target":30},{"source":28,"target":5},{"source":30,"target":7},{"source":29,"target":6},{"source":6,"target":0},{"source":6,"target":31},{"source":31,"target":32},{"source":31,"target":6},{"source":7,"target":0},{"source":7,"target":10},{"source":7,"target":13},{"source":7,"target":33},{"source":7,"target":34},{"source":33,"target":10},{"source":34,"target":13},{"source":8,"target":0},{"source":8,"target":10},{"source":8,"target":35},{"source":8,"target":36},{"source":8,"target":37},{"source":35,"target":13},{"source":35,"target":38},{"source":35,"target":8},{"source":38,"target":13},{"source":36,"target":13},{"source":36,"target":39},{"source":36,"target":8},{"source":39,"target":13},{"source":37,"target":10},{"source":9,"target":0},{"source":9,"target":10},{"source":9,"target":40},{"source":9,"target":41},{"source":9,"target":42},{"source":40,"target":4},{"source":40,"target":43},{"source":40,"target":9},{"source":43,"target":4},{"source":41,"target":3},{"source":41,"target":44},{"source":41,"target":9},{"source":44,"target":3},{"source":42,"target":10},{"source":10,"target":0},{"source":10,"target":6},{"source":10,"target":45},{"source":45,"target":6},{"source":11,"target":0},{"source":11,"target":10},{"source":11,"target":46},{"source":11,"target":47},{"source":11,"target":48},{"source":46,"target":12},{"source":46,"target":49},{"source":46,"target":11},{"source":49,"target":12},{"source":47,"target":7},{"source":47,"target":50},{"source":47,"target":11},{"source":50,"target":7},{"source":48,"target":10},{"source":12,"target":0},{"source":12,"target":6},{"source":12,"target":51},{"source":12,"target":52},{"source":51,"target":13},{"source":51,"target":53},{"source":51,"target":12},{"source":53,"target":13},{"source":52,"target":6},{"source":13,"target":0},{"source":14,"target":0},{"source":14,"target":8},{"source":14,"target":54},{"source":54,"target":8},{"source":15,"target":0},{"source":15,"target":7},{"source":15,"target":55},{"source":55,"target":7}],"multigraph":true} |
false | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="edroomdclass" nsURI="http://srg.aut.uah.es/micobs/mclev/domain/edroom/edroomdclass"
nsPrefix="micobs.mclev.domain.edroom">
<eClassifiers xsi:type="ecore:EClass" name="EDROOMDataClass" eSuperTypes="#//EDROOMDCLASSPackageElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="fields" lowerBound="1"
upperBound="-1" eType="#//EDROOMDataField" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="definitions" upperBound="-1"
eType="#//EDROOMDataDefinition" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="inherits" upperBound="-1"
eType="#//EDROOMDataClass"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EDROOMDataField" abstract="true">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EDROOMDataFieldBasic" eSuperTypes="#//EDROOMDataField">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="type" lowerBound="1" eType="#//EDROOMBasicType"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="EDROOMBasicType">
<eLiterals name="TEDROOMBool"/>
<eLiterals name="TEDROOMByte" value="1"/>
<eLiterals name="TEDROOMWord16" value="2"/>
<eLiterals name="TEDROOMWord32" value="3"/>
<eLiterals name="TEDROOMWord64" value="4"/>
<eLiterals name="TEDROOMUInt8" value="5"/>
<eLiterals name="TEDROOMUInt16" value="6"/>
<eLiterals name="TEDROOMUInt32" value="7" literal="TEDROOMUInt32"/>
<eLiterals name="TEDROOMUInt64" value="8"/>
<eLiterals name="TEDROOMInt8" value="9"/>
<eLiterals name="TEDROOMInt16" value="10"/>
<eLiterals name="TEDROOMInt32" value="11"/>
<eLiterals name="TEDROOMInt64" value="12"/>
<eLiterals name="TEDROOMFloat" value="13"/>
<eLiterals name="TEDROOMDouble" value="14"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EDROOMDataFieldBasicArray" eSuperTypes="#//EDROOMDataFieldBasic">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="elements" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EDROOMDataFieldClass" eSuperTypes="#//EDROOMDataField">
<eStructuralFeatures xsi:type="ecore:EReference" name="type" lowerBound="1" eType="#//EDROOMDataClass"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EDROOMDataFieldClassArray" eSuperTypes="#//EDROOMDataFieldClass">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="elements" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EDROOMDataFieldUnionArray" eSuperTypes="#//EDROOMDataFieldUnion">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="elements" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EDROOMDataFieldUnion" eSuperTypes="#//EDROOMDataField">
<eStructuralFeatures xsi:type="ecore:EReference" name="type" lowerBound="1" eType="#//EDROOMDataDefinitionUnion"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EDROOMDataFieldEnumArray" eSuperTypes="#//EDROOMDataFieldEnum">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="elements" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EDROOMDataFieldEnum" eSuperTypes="#//EDROOMDataField">
<eStructuralFeatures xsi:type="ecore:EReference" name="type" lowerBound="1" eType="#//EDROOMDataDefinitionEnum"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EDROOMDataDefinition" abstract="true"
eSuperTypes="../../es.uah.aut.srg.micobs/model/common.ecore#//MCommonReferenceableObj"/>
<eClassifiers xsi:type="ecore:EClass" name="EDROOMDataDefinitionUnion" eSuperTypes="#//EDROOMDataDefinition">
<eStructuralFeatures xsi:type="ecore:EReference" name="elements" lowerBound="2"
upperBound="-1" eType="#//EDROOMDataDefinitionUnionElement" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EDROOMDataDefinitionUnionElement" abstract="true">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EDROOMDataDefinitionUnionElementBasic"
eSuperTypes="#//EDROOMDataDefinitionUnionElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="type" lowerBound="1" eType="#//EDROOMBasicType"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EDROOMDataDefinitionUnionElementClass"
eSuperTypes="#//EDROOMDataDefinitionUnionElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="type" lowerBound="1" eType="#//EDROOMDataClass"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EDROOMDataDefinitionUnionElementBasicArray"
eSuperTypes="#//EDROOMDataDefinitionUnionElementBasic">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="elements" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EDROOMDataDefinitionUnionElementClassArray"
eSuperTypes="#//EDROOMDataDefinitionUnionElementClass">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="elements" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EDROOMDataDefinitionUnionElementUnion"
eSuperTypes="#//EDROOMDataDefinitionUnionElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="type" lowerBound="1" eType="#//EDROOMDataDefinitionUnion"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EDROOMDataDefinitionUnionElementUnionArray"
eSuperTypes="#//EDROOMDataDefinitionUnionElementUnion">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="elements" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EDROOMDataDefinitionEnum" eSuperTypes="#//EDROOMDataDefinition">
<eStructuralFeatures xsi:type="ecore:EReference" name="elements" lowerBound="1"
upperBound="-1" eType="#//EDROOMDataDefinitionEnumElement" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EDROOMDataDefinitionEnumElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EDROOMDataDefinitionUnionElementEnum"
eSuperTypes="#//EDROOMDataDefinitionUnionElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="type" lowerBound="1" eType="#//EDROOMDataDefinitionEnum"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EDROOMDataDefinitionUnionElementEnumArray"
eSuperTypes="#//EDROOMDataDefinitionUnionElementEnum">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="elements" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EDROOMDCLASSPackageFile" eSuperTypes="../../es.uah.aut.srg.micobs/model/common.ecore#//MCommonPackageFile"/>
<eClassifiers xsi:type="ecore:EClass" name="EDROOMDCLASSPackageElement" abstract="true"
eSuperTypes="../../es.uah.aut.srg.micobs/model/common.ecore#//MCommonPackageElement"/>
</ecore:EPackage>
| github:ecore:/data/parraman/micobs/mclev/domains/edroom/es.uah.aut.srg.micobs.mclev.domain.edroom/model/dclass.ecore | ecore | edroomdclass
EDROOMDataClass
fields
definitions
inherits
EDROOMDataField
name
EDROOMDataFieldBasic
type
EDROOMBasicType
TEDROOMBool
TEDROOMBool
TEDROOMByte
TEDROOMByte
TEDROOMWord16
TEDROOMWord16
TEDROOMWord32
TEDROOMWord32
TEDROOMWord64
TEDROOMWord64
TEDROOMUInt8
TEDROOMUInt8
TEDROOMUInt16
TEDROOMUInt16
TEDROOMUInt32
TEDROOMUInt32
TEDROOMUInt64
TEDROOMUInt64
TEDROOMInt8
TEDROOMInt8
TEDROOMInt16
TEDROOMInt16
TEDROOMInt32
TEDROOMInt32
TEDROOMInt64
TEDROOMInt64
TEDROOMFloat
TEDROOMFloat
TEDROOMDouble
TEDROOMDouble
EDROOMDataFieldBasicArray
elements
EDROOMDataFieldClass
type
EDROOMDataFieldClassArray
elements
EDROOMDataFieldUnionArray
elements
EDROOMDataFieldUnion
type
EDROOMDataFieldEnumArray
elements
EDROOMDataFieldEnum
type
EDROOMDataDefinition
EDROOMDataDefinitionUnion
elements
EDROOMDataDefinitionUnionElement
name
EDROOMDataDefinitionUnionElementBasic
type
EDROOMDataDefinitionUnionElementClass
type
EDROOMDataDefinitionUnionElementBasicArray
elements
EDROOMDataDefinitionUnionElementClassArray
elements
EDROOMDataDefinitionUnionElementUnion
type
EDROOMDataDefinitionUnionElementUnionArray
elements
EDROOMDataDefinitionEnum
elements
EDROOMDataDefinitionEnumElement
name
value
EDROOMDataDefinitionUnionElementEnum
type
EDROOMDataDefinitionUnionElementEnumArray
elements
EDROOMDCLASSPackageFile
EDROOMDCLASSPackageElement | null | {"directed":true,"nodes":[{"nsPrefix":"micobs.mclev.domain.edroom","nsURI":"http://srg.aut.uah.es/micobs/mclev/domain/edroom/edroomdclass","name":"edroomdclass","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EDROOMDataClass","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EDROOMDataField","instanceClass":null,"abstract":true,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EDROOMDataFieldBasic","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"EDROOMBasicType","instanceClass":null,"id":4,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EDROOMDataFieldBasicArray","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EDROOMDataFieldClass","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EDROOMDataFieldClassArray","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EDROOMDataFieldUnionArray","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EDROOMDataFieldUnion","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EDROOMDataFieldEnumArray","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EDROOMDataFieldEnum","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EDROOMDataDefinition","instanceClass":null,"abstract":true,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EDROOMDataDefinitionUnion","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EDROOMDataDefinitionUnionElement","instanceClass":null,"abstract":true,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EDROOMDataDefinitionUnionElementBasic","instanceClass":null,"abstract":false,"id":15,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EDROOMDataDefinitionUnionElementClass","instanceClass":null,"abstract":false,"id":16,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EDROOMDataDefinitionUnionElementBasicArray","instanceClass":null,"abstract":false,"id":17,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EDROOMDataDefinitionUnionElementClassArray","instanceClass":null,"abstract":false,"id":18,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EDROOMDataDefinitionUnionElementUnion","instanceClass":null,"abstract":false,"id":19,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EDROOMDataDefinitionUnionElementUnionArray","instanceClass":null,"abstract":false,"id":20,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EDROOMDataDefinitionEnum","instanceClass":null,"abstract":false,"id":21,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EDROOMDataDefinitionEnumElement","instanceClass":null,"abstract":false,"id":22,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EDROOMDataDefinitionUnionElementEnum","instanceClass":null,"abstract":false,"id":23,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EDROOMDataDefinitionUnionElementEnumArray","instanceClass":null,"abstract":false,"id":24,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EDROOMDCLASSPackageFile","instanceClass":null,"abstract":false,"id":25,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EDROOMDCLASSPackageElement","instanceClass":null,"abstract":true,"id":26,"interface":false,"eClass":"EClass"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"fields","changeable":true,"resolveProxies":true,"lowerBound":1,"id":27,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"definitions","changeable":true,"resolveProxies":true,"lowerBound":0,"id":28,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"inherits","changeable":true,"resolveProxies":true,"lowerBound":0,"id":29,"derived":false},{"id":30,"eClass":"EGenericType"},{"id":31,"eClass":"EGenericType"},{"id":32,"eClass":"EGenericType"},{"id":33,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":34,"derived":false},{"id":35,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"lowerBound":1,"iD":false,"id":36,"derived":false},{"id":37,"eClass":"EGenericType"},{"id":38,"eClass":"EGenericType"},{"name":"TEDROOMBool","id":39,"value":0,"literal":"TEDROOMBool","eClass":"EEnumLiteral"},{"name":"TEDROOMByte","id":40,"value":1,"literal":"TEDROOMByte","eClass":"EEnumLiteral"},{"name":"TEDROOMWord16","id":41,"value":2,"literal":"TEDROOMWord16","eClass":"EEnumLiteral"},{"name":"TEDROOMWord32","id":42,"value":3,"literal":"TEDROOMWord32","eClass":"EEnumLiteral"},{"name":"TEDROOMWord64","id":43,"value":4,"literal":"TEDROOMWord64","eClass":"EEnumLiteral"},{"name":"TEDROOMUInt8","id":44,"value":5,"literal":"TEDROOMUInt8","eClass":"EEnumLiteral"},{"name":"TEDROOMUInt16","id":45,"value":6,"literal":"TEDROOMUInt16","eClass":"EEnumLiteral"},{"name":"TEDROOMUInt32","id":46,"value":7,"literal":"TEDROOMUInt32","eClass":"EEnumLiteral"},{"name":"TEDROOMUInt64","id":47,"value":8,"literal":"TEDROOMUInt64","eClass":"EEnumLiteral"},{"name":"TEDROOMInt8","id":48,"value":9,"literal":"TEDROOMInt8","eClass":"EEnumLiteral"},{"name":"TEDROOMInt16","id":49,"value":10,"literal":"TEDROOMInt16","eClass":"EEnumLiteral"},{"name":"TEDROOMInt32","id":50,"value":11,"literal":"TEDROOMInt32","eClass":"EEnumLiteral"},{"name":"TEDROOMInt64","id":51,"value":12,"literal":"TEDROOMInt64","eClass":"EEnumLiteral"},{"name":"TEDROOMFloat","id":52,"value":13,"literal":"TEDROOMFloat","eClass":"EEnumLiteral"},{"name":"TEDROOMDouble","id":53,"value":14,"literal":"TEDROOMDouble","eClass":"EEnumLiteral"},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"elements","changeable":true,"lowerBound":1,"iD":false,"id":54,"derived":false},{"id":55,"eClass":"EGenericType"},{"id":56,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"resolveProxies":true,"lowerBound":1,"id":57,"derived":false},{"id":58,"eClass":"EGenericType"},{"id":59,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"elements","changeable":true,"lowerBound":1,"iD":false,"id":60,"derived":false},{"id":61,"eClass":"EGenericType"},{"id":62,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"elements","changeable":true,"lowerBound":1,"iD":false,"id":63,"derived":false},{"id":64,"eClass":"EGenericType"},{"id":65,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"resolveProxies":true,"lowerBound":1,"id":66,"derived":false},{"id":67,"eClass":"EGenericType"},{"id":68,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"elements","changeable":true,"lowerBound":1,"iD":false,"id":69,"derived":false},{"id":70,"eClass":"EGenericType"},{"id":71,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"resolveProxies":true,"lowerBound":1,"id":72,"derived":false},{"id":73,"eClass":"EGenericType"},{"id":74,"eClass":"EGenericType"},{"id":75,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"elements","changeable":true,"resolveProxies":true,"lowerBound":2,"id":76,"derived":false},{"id":77,"eClass":"EGenericType"},{"id":78,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":79,"derived":false},{"id":80,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"lowerBound":1,"iD":false,"id":81,"derived":false},{"id":82,"eClass":"EGenericType"},{"id":83,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"resolveProxies":true,"lowerBound":1,"id":84,"derived":false},{"id":85,"eClass":"EGenericType"},{"id":86,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"elements","changeable":true,"lowerBound":1,"iD":false,"id":87,"derived":false},{"id":88,"eClass":"EGenericType"},{"id":89,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"elements","changeable":true,"lowerBound":1,"iD":false,"id":90,"derived":false},{"id":91,"eClass":"EGenericType"},{"id":92,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"resolveProxies":true,"lowerBound":1,"id":93,"derived":false},{"id":94,"eClass":"EGenericType"},{"id":95,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"elements","changeable":true,"lowerBound":1,"iD":false,"id":96,"derived":false},{"id":97,"eClass":"EGenericType"},{"id":98,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"elements","changeable":true,"resolveProxies":true,"lowerBound":1,"id":99,"derived":false},{"id":100,"eClass":"EGenericType"},{"id":101,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":102,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":0,"iD":false,"id":103,"derived":false},{"id":104,"eClass":"EGenericType"},{"id":105,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"resolveProxies":true,"lowerBound":1,"id":106,"derived":false},{"id":107,"eClass":"EGenericType"},{"id":108,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"elements","changeable":true,"lowerBound":1,"iD":false,"id":109,"derived":false},{"id":110,"eClass":"EGenericType"},{"id":111,"eClass":"EGenericType"},{"id":112,"eClass":"EGenericType"},{"id":113,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":0,"target":8},{"source":0,"target":9},{"source":0,"target":10},{"source":0,"target":11},{"source":0,"target":12},{"source":0,"target":13},{"source":0,"target":14},{"source":0,"target":15},{"source":0,"target":16},{"source":0,"target":17},{"source":0,"target":18},{"source":0,"target":19},{"source":0,"target":20},{"source":0,"target":21},{"source":0,"target":22},{"source":0,"target":23},{"source":0,"target":24},{"source":0,"target":25},{"source":0,"target":26},{"source":1,"target":0},{"source":1,"target":26},{"source":1,"target":27},{"source":1,"target":28},{"source":1,"target":29},{"source":1,"target":30},{"source":27,"target":2},{"source":27,"target":31},{"source":27,"target":1},{"source":31,"target":2},{"source":28,"target":12},{"source":28,"target":32},{"source":28,"target":1},{"source":32,"target":12},{"source":29,"target":1},{"source":29,"target":33},{"source":29,"target":1},{"source":33,"target":1},{"source":30,"target":26},{"source":2,"target":0},{"source":2,"target":34},{"source":34,"target":35},{"source":34,"target":2},{"source":3,"target":0},{"source":3,"target":2},{"source":3,"target":36},{"source":3,"target":37},{"source":36,"target":4},{"source":36,"target":38},{"source":36,"target":3},{"source":38,"target":4},{"source":37,"target":2},{"source":4,"target":0},{"source":4,"target":39},{"source":4,"target":40},{"source":4,"target":41},{"source":4,"target":42},{"source":4,"target":43},{"source":4,"target":44},{"source":4,"target":45},{"source":4,"target":46},{"source":4,"target":47},{"source":4,"target":48},{"source":4,"target":49},{"source":4,"target":50},{"source":4,"target":51},{"source":4,"target":52},{"source":4,"target":53},{"source":39,"target":4},{"source":40,"target":4},{"source":41,"target":4},{"source":42,"target":4},{"source":43,"target":4},{"source":44,"target":4},{"source":45,"target":4},{"source":46,"target":4},{"source":47,"target":4},{"source":48,"target":4},{"source":49,"target":4},{"source":50,"target":4},{"source":51,"target":4},{"source":52,"target":4},{"source":53,"target":4},{"source":5,"target":0},{"source":5,"target":3},{"source":5,"target":54},{"source":5,"target":55},{"source":54,"target":56},{"source":54,"target":5},{"source":55,"target":3},{"source":6,"target":0},{"source":6,"target":2},{"source":6,"target":57},{"source":6,"target":58},{"source":57,"target":1},{"source":57,"target":59},{"source":57,"target":6},{"source":59,"target":1},{"source":58,"target":2},{"source":7,"target":0},{"source":7,"target":6},{"source":7,"target":60},{"source":7,"target":61},{"source":60,"target":62},{"source":60,"target":7},{"source":61,"target":6},{"source":8,"target":0},{"source":8,"target":9},{"source":8,"target":63},{"source":8,"target":64},{"source":63,"target":65},{"source":63,"target":8},{"source":64,"target":9},{"source":9,"target":0},{"source":9,"target":2},{"source":9,"target":66},{"source":9,"target":67},{"source":66,"target":13},{"source":66,"target":68},{"source":66,"target":9},{"source":68,"target":13},{"source":67,"target":2},{"source":10,"target":0},{"source":10,"target":11},{"source":10,"target":69},{"source":10,"target":70},{"source":69,"target":71},{"source":69,"target":10},{"source":70,"target":11},{"source":11,"target":0},{"source":11,"target":2},{"source":11,"target":72},{"source":11,"target":73},{"source":72,"target":21},{"source":72,"target":74},{"source":72,"target":11},{"source":74,"target":21},{"source":73,"target":2},{"source":12,"target":0},{"source":12,"target":75},{"source":13,"target":0},{"source":13,"target":12},{"source":13,"target":76},{"source":13,"target":77},{"source":76,"target":14},{"source":76,"target":78},{"source":76,"target":13},{"source":78,"target":14},{"source":77,"target":12},{"source":14,"target":0},{"source":14,"target":79},{"source":79,"target":80},{"source":79,"target":14},{"source":15,"target":0},{"source":15,"target":14},{"source":15,"target":81},{"source":15,"target":82},{"source":81,"target":4},{"source":81,"target":83},{"source":81,"target":15},{"source":83,"target":4},{"source":82,"target":14},{"source":16,"target":0},{"source":16,"target":14},{"source":16,"target":84},{"source":16,"target":85},{"source":84,"target":1},{"source":84,"target":86},{"source":84,"target":16},{"source":86,"target":1},{"source":85,"target":14},{"source":17,"target":0},{"source":17,"target":15},{"source":17,"target":87},{"source":17,"target":88},{"source":87,"target":89},{"source":87,"target":17},{"source":88,"target":15},{"source":18,"target":0},{"source":18,"target":16},{"source":18,"target":90},{"source":18,"target":91},{"source":90,"target":92},{"source":90,"target":18},{"source":91,"target":16},{"source":19,"target":0},{"source":19,"target":14},{"source":19,"target":93},{"source":19,"target":94},{"source":93,"target":13},{"source":93,"target":95},{"source":93,"target":19},{"source":95,"target":13},{"source":94,"target":14},{"source":20,"target":0},{"source":20,"target":19},{"source":20,"target":96},{"source":20,"target":97},{"source":96,"target":98},{"source":96,"target":20},{"source":97,"target":19},{"source":21,"target":0},{"source":21,"target":12},{"source":21,"target":99},{"source":21,"target":100},{"source":99,"target":22},{"source":99,"target":101},{"source":99,"target":21},{"source":101,"target":22},{"source":100,"target":12},{"source":22,"target":0},{"source":22,"target":102},{"source":22,"target":103},{"source":102,"target":104},{"source":102,"target":22},{"source":103,"target":105},{"source":103,"target":22},{"source":23,"target":0},{"source":23,"target":14},{"source":23,"target":106},{"source":23,"target":107},{"source":106,"target":21},{"source":106,"target":108},{"source":106,"target":23},{"source":108,"target":21},{"source":107,"target":14},{"source":24,"target":0},{"source":24,"target":23},{"source":24,"target":109},{"source":24,"target":110},{"source":109,"target":111},{"source":109,"target":24},{"source":110,"target":23},{"source":25,"target":0},{"source":25,"target":112},{"source":26,"target":0},{"source":26,"target":113}],"multigraph":true} |
true | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="modelica" nsURI="http://www.femto-st.fr/disc/Modelica.ecore"
nsPrefix="Modelica">
<eClassifiers xsi:type="ecore:EClass" name="ModelicaClassDefinition" abstract="true">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isPartial" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isFinal" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isModelicaEncapsulated"
lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="fromLibrary" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isReplaceable" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="extends" upperBound="-1"
eType="#//ExtendsClause" containment="true" eOpposite="#//ExtendsClause/ownerModelicaClassDefinition"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="ownerModel" eType="#//ModelicaModel"
eOpposite="#//ModelicaModel/modelicaClasses"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="ownerPackage" eType="#//Package"
eOpposite="#//Package/modelicaClasses"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="modelicaComponents" upperBound="-1"
eType="#//ModelicaComponent" containment="true" eOpposite="#//ModelicaComponent/ownerModelicaClassDefinition"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="equationSection" eType="#//EquationSection"
containment="true" eOpposite="#//EquationSection/ownerModelicaClassDefinition"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="algorithmSections" upperBound="-1"
eType="#//AlgorithmSection" containment="true" eOpposite="#//AlgorithmSection/ownerModelicaClassDefinition"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="annotations" upperBound="-1"
eType="#//Annotation" containment="true" eOpposite="#//Annotation/ownerMCD"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="comments" upperBound="-1"
eType="#//Comment" containment="true" eOpposite="#//Comment/ownerModelicaClassDefinition"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="records" upperBound="-1"
eType="#//Record" containment="true" eOpposite="#//Record/ownerModelicaClassDefinition"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Class" eSuperTypes="#//ModelicaClassDefinition"/>
<eClassifiers xsi:type="ecore:EClass" name="Connector" eSuperTypes="#//ModelicaClassDefinition">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isExpandable" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Model" eSuperTypes="#//ModelicaClassDefinition"/>
<eClassifiers xsi:type="ecore:EClass" name="Record" eSuperTypes="#//ModelicaClassDefinition">
<eStructuralFeatures xsi:type="ecore:EReference" name="ownerModelicaClassDefinition"
eType="#//ModelicaClassDefinition" eOpposite="#//ModelicaClassDefinition/records"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Block" eSuperTypes="#//ModelicaClassDefinition"/>
<eClassifiers xsi:type="ecore:EClass" name="Package" eSuperTypes="#//ModelicaClassDefinition">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="withinClause" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="modelicaClasses" upperBound="-1"
eType="#//ModelicaClassDefinition" containment="true" eOpposite="#//ModelicaClassDefinition/ownerPackage"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Function" eSuperTypes="#//ModelicaClassDefinition">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="externalLanguage" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="externalInclude" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="externalLibrary" upperBound="-1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="parameters" upperBound="-1"
eType="#//ModelicaFunctionParameter" containment="true" eOpposite="#//ModelicaFunctionParameter/ownerFunction"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="DerFunction" eSuperTypes="#//Function">
<eStructuralFeatures xsi:type="ecore:EReference" name="der" eType="#//Function"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="variable" lowerBound="1"
upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="VisibilityKind">
<eLiterals name="public"/>
<eLiterals name="protected" value="1"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ExtendsClause">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="modification" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="arraySize" upperBound="-1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="ownerModelicaClassDefinition"
eType="#//ModelicaClassDefinition" eOpposite="#//ModelicaClassDefinition/extends"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="visibility" lowerBound="1"
eType="#//VisibilityKind"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="extendedModelicaClass"
eType="#//ModelicaClassDefinition"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="from_modelica_standard_library"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="from_modelica_primitive_types"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ModelicaModel">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="modelicaClasses" upperBound="-1"
eType="#//ModelicaClassDefinition" containment="true" eOpposite="#//ModelicaClassDefinition/ownerModel"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ModelicaComponent" abstract="true">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="conditionalExpression"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isFinal" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="modification" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isReplaceable" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="arraySize" upperBound="-1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="ownerModelicaClassDefinition"
eType="#//ModelicaClassDefinition" eOpposite="#//ModelicaClassDefinition/modelicaComponents"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="type_specifier" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="ModelicaCausalityKind">
<eLiterals name="none"/>
<eLiterals name="input" value="1"/>
<eLiterals name="output" value="2"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ModelicaValueProperty" eSuperTypes="#//ModelicaComponent">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="visibility" lowerBound="1"
eType="#//VisibilityKind"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="causality" lowerBound="1"
eType="#//ModelicaCausalityKind"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="variability" lowerBound="1"
eType="#//ModelicaVariabilityKind"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="flowFlag" lowerBound="1"
eType="#//ModelicaFlowFlag"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="scope" lowerBound="1" eType="#//ModelicaScopeKind"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="default_value" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="ModelicaVariabilityKind">
<eLiterals name="continuous"/>
<eLiterals name="constant" value="1"/>
<eLiterals name="parameter" value="2"/>
<eLiterals name="discrete" value="3"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="ModelicaFlowFlag">
<eLiterals name="none"/>
<eLiterals name="flow" value="1"/>
<eLiterals name="stream" value="2"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="ModelicaScopeKind">
<eLiterals name="none"/>
<eLiterals name="innerouter" value="1"/>
<eLiterals name="outer" value="2"/>
<eLiterals name="inner" value="3"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ModelicaPart" eSuperTypes="#//ModelicaComponent">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="visibility" lowerBound="1"
eType="#//VisibilityKind"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="scope" lowerBound="1" eType="#//ModelicaScopeKind"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="type_part" eType="#//ModelicaClassDefinition"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="constrainedBy" eType="#//ConstrainedByClause"
containment="true" eOpposite="#//ConstrainedByClause/ownerInstance"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ModelicaPort" eSuperTypes="#//ModelicaComponent">
<eStructuralFeatures xsi:type="ecore:EReference" name="type_connector" eType="#//Connector"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="causality" lowerBound="1"
eType="#//ModelicaCausalityKind"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Equation">
<eStructuralFeatures xsi:type="ecore:EReference" name="ownerEquationSection" eType="#//EquationSection"
eOpposite="#//EquationSection/equations"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isInitial" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="body" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Connect">
<eStructuralFeatures xsi:type="ecore:EReference" name="ownerEquationSection" eType="#//EquationSection"
eOpposite="#//EquationSection/connects"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="from" lowerBound="1" eType="#//ModelicaPort"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="to" lowerBound="1" eType="#//ModelicaPort"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="fromModelicaPart" lowerBound="1"
eType="#//ModelicaPart"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="toModelicaPart" lowerBound="1"
eType="#//ModelicaPart"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="fromPort" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="toPort" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="fromPart" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="toPart" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EquationSection">
<eStructuralFeatures xsi:type="ecore:EReference" name="ownerModelicaClassDefinition"
lowerBound="1" eType="#//ModelicaClassDefinition" eOpposite="#//ModelicaClassDefinition/equationSection"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="equations" upperBound="-1"
eType="#//Equation" containment="true" eOpposite="#//Equation/ownerEquationSection"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="connects" upperBound="-1"
eType="#//Connect" containment="true" eOpposite="#//Connect/ownerEquationSection"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ModelicaFunctionParameter">
<eStructuralFeatures xsi:type="ecore:EReference" name="ownerFunction" eType="#//Function"
eOpposite="#//Function/parameters"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="causality" lowerBound="1"
eType="#//ModelicaCausalityKind"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="modification" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isReplaceable" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="declarationEquation" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isFinal" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="arraySize" upperBound="-1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="variability" lowerBound="1"
eType="#//ModelicaVariabilityKind"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="type_specifier" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isProtected" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="default_value" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="AlgorithmSection">
<eStructuralFeatures xsi:type="ecore:EReference" name="ownerModelicaClassDefinition"
lowerBound="1" eType="#//ModelicaClassDefinition" eOpposite="#//ModelicaClassDefinition/algorithmSections"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="algorithm" upperBound="-1"
eType="#//Algorithm" containment="true" eOpposite="#//Algorithm/algorithmsection"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ConstrainedByClause">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="modification" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="ownerInstance" eType="#//ModelicaPart"
eOpposite="#//ModelicaPart/constrainedBy"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="instanceForConstrainedBy"
eType="#//ModelicaPart"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Annotation">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="body" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="ownerMCD" eType="#//ModelicaClassDefinition"
eOpposite="#//ModelicaClassDefinition/annotations"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Comment">
<eStructuralFeatures xsi:type="ecore:EReference" name="ownerModelicaClassDefinition"
eType="#//ModelicaClassDefinition" eOpposite="#//ModelicaClassDefinition/comments"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="body" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Type" eSuperTypes="#//ModelicaClassDefinition"/>
<eClassifiers xsi:type="ecore:EClass" name="Algorithm">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="body" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="algorithmsection" eType="#//AlgorithmSection"
eOpposite="#//AlgorithmSection/algorithm"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Enumeration" eSuperTypes="#//Type">
<eStructuralFeatures xsi:type="ecore:EReference" name="enumerationLiterals" upperBound="-1"
eType="#//EnumerationLiteral" containment="true" eOpposite="#//EnumerationLiteral/enumeration"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EnumerationLiteral">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="enumeration" eType="#//Enumeration"
eOpposite="#//Enumeration/enumerationLiterals"/>
</eClassifiers>
</ecore:EPackage>
| github:ecore:/data/tue-mdse/ocl-dataset/dataset-mtl/repos/SysMLModelicaIntegration/edu.ufc.femtost.disc.sysml2modelica/papyrus_neon_release/edu.ufc.femtost.disc.sysml4modelica.modelicametamodel/metamodel/modelica.ecore | ecore | modelica
ModelicaClassDefinition
name
isPartial
isFinal
isModelicaEncapsulated
fromLibrary
isReplaceable
extends
ownerModel
ownerPackage
modelicaComponents
equationSection
algorithmSections
annotations
comments
records
Class
Connector
isExpandable
Model
Record
ownerModelicaClassDefinition
Block
Package
withinClause
modelicaClasses
Function
externalLanguage
externalInclude
externalLibrary
parameters
DerFunction
der
variable
VisibilityKind
public
public
protected
protected
ExtendsClause
modification
arraySize
ownerModelicaClassDefinition
visibility
extendedModelicaClass
from_modelica_standard_library
from_modelica_primitive_types
ModelicaModel
name
modelicaClasses
ModelicaComponent
conditionalExpression
name
isFinal
modification
isReplaceable
arraySize
ownerModelicaClassDefinition
type_specifier
ModelicaCausalityKind
none
none
input
input
output
output
ModelicaValueProperty
visibility
causality
variability
flowFlag
scope
default_value
ModelicaVariabilityKind
continuous
continuous
constant
constant
parameter
parameter
discrete
discrete
ModelicaFlowFlag
none
none
flow
flow
stream
stream
ModelicaScopeKind
none
none
innerouter
innerouter
outer
outer
inner
inner
ModelicaPart
visibility
scope
type_part
constrainedBy
ModelicaPort
type_connector
causality
Equation
ownerEquationSection
isInitial
body
Connect
ownerEquationSection
from
to
fromModelicaPart
toModelicaPart
fromPort
toPort
fromPart
toPart
EquationSection
ownerModelicaClassDefinition
equations
connects
ModelicaFunctionParameter
ownerFunction
name
causality
modification
isReplaceable
declarationEquation
isFinal
arraySize
variability
type_specifier
isProtected
default_value
AlgorithmSection
ownerModelicaClassDefinition
algorithm
ConstrainedByClause
modification
ownerInstance
instanceForConstrainedBy
Annotation
body
ownerMCD
Comment
ownerModelicaClassDefinition
body
Type
Algorithm
body
algorithmsection
Enumeration
enumerationLiterals
EnumerationLiteral
name
enumeration | null | {"directed":true,"nodes":[{"nsPrefix":"Modelica","nsURI":"http://www.femto-st.fr/disc/Modelica.ecore","name":"modelica","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ModelicaClassDefinition","instanceClass":null,"abstract":true,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Class","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Connector","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Model","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Record","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Block","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Package","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Function","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DerFunction","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"VisibilityKind","instanceClass":null,"id":10,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExtendsClause","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ModelicaModel","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ModelicaComponent","instanceClass":null,"abstract":true,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"ModelicaCausalityKind","instanceClass":null,"id":14,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ModelicaValueProperty","instanceClass":null,"abstract":false,"id":15,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"ModelicaVariabilityKind","instanceClass":null,"id":16,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"ModelicaFlowFlag","instanceClass":null,"id":17,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"ModelicaScopeKind","instanceClass":null,"id":18,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ModelicaPart","instanceClass":null,"abstract":false,"id":19,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ModelicaPort","instanceClass":null,"abstract":false,"id":20,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Equation","instanceClass":null,"abstract":false,"id":21,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Connect","instanceClass":null,"abstract":false,"id":22,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EquationSection","instanceClass":null,"abstract":false,"id":23,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ModelicaFunctionParameter","instanceClass":null,"abstract":false,"id":24,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AlgorithmSection","instanceClass":null,"abstract":false,"id":25,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ConstrainedByClause","instanceClass":null,"abstract":false,"id":26,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Annotation","instanceClass":null,"abstract":false,"id":27,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Comment","instanceClass":null,"abstract":false,"id":28,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Type","instanceClass":null,"abstract":false,"id":29,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Algorithm","instanceClass":null,"abstract":false,"id":30,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Enumeration","instanceClass":null,"abstract":false,"id":31,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EnumerationLiteral","instanceClass":null,"abstract":false,"id":32,"interface":false,"eClass":"EClass"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":33,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isPartial","changeable":true,"lowerBound":1,"iD":false,"id":34,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isFinal","changeable":true,"lowerBound":1,"iD":false,"id":35,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isModelicaEncapsulated","changeable":true,"lowerBound":1,"iD":false,"id":36,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"fromLibrary","changeable":true,"lowerBound":0,"iD":false,"id":37,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isReplaceable","changeable":true,"lowerBound":1,"iD":false,"id":38,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"extends","changeable":true,"resolveProxies":true,"lowerBound":0,"id":39,"derived":false},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"ownerModel","changeable":true,"resolveProxies":true,"lowerBound":0,"id":40,"derived":false},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"ownerPackage","changeable":true,"resolveProxies":true,"lowerBound":0,"id":41,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"modelicaComponents","changeable":true,"resolveProxies":true,"lowerBound":0,"id":42,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"equationSection","changeable":true,"resolveProxies":true,"lowerBound":0,"id":43,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"algorithmSections","changeable":true,"resolveProxies":true,"lowerBound":0,"id":44,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"annotations","changeable":true,"resolveProxies":true,"lowerBound":0,"id":45,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"comments","changeable":true,"resolveProxies":true,"lowerBound":0,"id":46,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"records","changeable":true,"resolveProxies":true,"lowerBound":0,"id":47,"derived":false},{"id":48,"eClass":"EGenericType"},{"id":49,"eClass":"EGenericType"},{"id":50,"eClass":"EGenericType"},{"id":51,"eClass":"EGenericType"},{"id":52,"eClass":"EGenericType"},{"id":53,"eClass":"EGenericType"},{"id":54,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"ownerModelicaClassDefinition","changeable":true,"resolveProxies":true,"lowerBound":0,"id":55,"derived":false},{"id":56,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"modelicaClasses","changeable":true,"resolveProxies":true,"lowerBound":0,"id":57,"derived":false},{"id":58,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"modelicaClasses","changeable":true,"resolveProxies":true,"lowerBound":0,"id":59,"derived":false},{"id":60,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"ownerModelicaClassDefinition","changeable":true,"resolveProxies":true,"lowerBound":0,"id":61,"derived":false},{"id":62,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"ownerModelicaClassDefinition","changeable":true,"resolveProxies":true,"lowerBound":1,"id":63,"derived":false},{"id":64,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"ownerModelicaClassDefinition","changeable":true,"resolveProxies":true,"lowerBound":1,"id":65,"derived":false},{"id":66,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"ownerMCD","changeable":true,"resolveProxies":true,"lowerBound":0,"id":67,"derived":false},{"id":68,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"ownerModelicaClassDefinition","changeable":true,"resolveProxies":true,"lowerBound":0,"id":69,"derived":false},{"id":70,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"ownerModelicaClassDefinition","changeable":true,"resolveProxies":true,"lowerBound":0,"id":71,"derived":false},{"id":72,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isExpandable","changeable":true,"lowerBound":1,"iD":false,"id":73,"derived":false},{"id":74,"eClass":"EGenericType"},{"id":75,"eClass":"EGenericType"},{"id":76,"eClass":"EGenericType"},{"id":77,"eClass":"EGenericType"},{"id":78,"eClass":"EGenericType"},{"id":79,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"withinClause","changeable":true,"lowerBound":0,"iD":false,"id":80,"derived":false},{"id":81,"eClass":"EGenericType"},{"id":82,"eClass":"EGenericType"},{"id":83,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"externalLanguage","changeable":true,"lowerBound":1,"iD":false,"id":84,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"externalInclude","changeable":true,"lowerBound":0,"iD":false,"id":85,"derived":false},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"externalLibrary","changeable":true,"lowerBound":0,"iD":false,"id":86,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"parameters","changeable":true,"resolveProxies":true,"lowerBound":0,"id":87,"derived":false},{"id":88,"eClass":"EGenericType"},{"id":89,"eClass":"EGenericType"},{"id":90,"eClass":"EGenericType"},{"id":91,"eClass":"EGenericType"},{"id":92,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"ownerFunction","changeable":true,"resolveProxies":true,"lowerBound":0,"id":93,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"der","changeable":true,"resolveProxies":true,"lowerBound":0,"id":94,"derived":false},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"variable","changeable":true,"lowerBound":1,"iD":false,"id":95,"derived":false},{"id":96,"eClass":"EGenericType"},{"id":97,"eClass":"EGenericType"},{"id":98,"eClass":"EGenericType"},{"name":"public","id":99,"value":0,"literal":"public","eClass":"EEnumLiteral"},{"name":"protected","id":100,"value":1,"literal":"protected","eClass":"EEnumLiteral"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"modification","changeable":true,"lowerBound":0,"iD":false,"id":101,"derived":false},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"arraySize","changeable":true,"lowerBound":0,"iD":false,"id":102,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"visibility","changeable":true,"lowerBound":1,"iD":false,"id":103,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"extendedModelicaClass","changeable":true,"resolveProxies":true,"lowerBound":0,"id":104,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"from_modelica_standard_library","changeable":true,"lowerBound":0,"iD":false,"id":105,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"from_modelica_primitive_types","changeable":true,"lowerBound":0,"iD":false,"id":106,"derived":false},{"id":107,"eClass":"EGenericType"},{"id":108,"eClass":"EGenericType"},{"id":109,"eClass":"EGenericType"},{"id":110,"eClass":"EGenericType"},{"id":111,"eClass":"EGenericType"},{"id":112,"eClass":"EGenericType"},{"id":113,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":114,"derived":false},{"id":115,"eClass":"EGenericType"},{"id":116,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"conditionalExpression","changeable":true,"lowerBound":0,"iD":false,"id":117,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":118,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isFinal","changeable":true,"lowerBound":1,"iD":false,"id":119,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"modification","changeable":true,"lowerBound":0,"iD":false,"id":120,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isReplaceable","changeable":true,"lowerBound":1,"iD":false,"id":121,"derived":false},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"arraySize","changeable":true,"lowerBound":0,"iD":false,"id":122,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"type_specifier","changeable":true,"lowerBound":0,"iD":false,"id":123,"derived":false},{"id":124,"eClass":"EGenericType"},{"id":125,"eClass":"EGenericType"},{"id":126,"eClass":"EGenericType"},{"id":127,"eClass":"EGenericType"},{"id":128,"eClass":"EGenericType"},{"id":129,"eClass":"EGenericType"},{"id":130,"eClass":"EGenericType"},{"id":131,"eClass":"EGenericType"},{"name":"none","id":132,"value":0,"literal":"none","eClass":"EEnumLiteral"},{"name":"input","id":133,"value":1,"literal":"input","eClass":"EEnumLiteral"},{"name":"output","id":134,"value":2,"literal":"output","eClass":"EEnumLiteral"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"visibility","changeable":true,"lowerBound":1,"iD":false,"id":135,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"causality","changeable":true,"lowerBound":1,"iD":false,"id":136,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"variability","changeable":true,"lowerBound":1,"iD":false,"id":137,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"flowFlag","changeable":true,"lowerBound":1,"iD":false,"id":138,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"scope","changeable":true,"lowerBound":1,"iD":false,"id":139,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"default_value","changeable":true,"lowerBound":0,"iD":false,"id":140,"derived":false},{"id":141,"eClass":"EGenericType"},{"id":142,"eClass":"EGenericType"},{"id":143,"eClass":"EGenericType"},{"id":144,"eClass":"EGenericType"},{"id":145,"eClass":"EGenericType"},{"id":146,"eClass":"EGenericType"},{"id":147,"eClass":"EGenericType"},{"name":"continuous","id":148,"value":0,"literal":"continuous","eClass":"EEnumLiteral"},{"name":"constant","id":149,"value":1,"literal":"constant","eClass":"EEnumLiteral"},{"name":"parameter","id":150,"value":2,"literal":"parameter","eClass":"EEnumLiteral"},{"name":"discrete","id":151,"value":3,"literal":"discrete","eClass":"EEnumLiteral"},{"name":"none","id":152,"value":0,"literal":"none","eClass":"EEnumLiteral"},{"name":"flow","id":153,"value":1,"literal":"flow","eClass":"EEnumLiteral"},{"name":"stream","id":154,"value":2,"literal":"stream","eClass":"EEnumLiteral"},{"name":"none","id":155,"value":0,"literal":"none","eClass":"EEnumLiteral"},{"name":"innerouter","id":156,"value":1,"literal":"innerouter","eClass":"EEnumLiteral"},{"name":"outer","id":157,"value":2,"literal":"outer","eClass":"EEnumLiteral"},{"name":"inner","id":158,"value":3,"literal":"inner","eClass":"EEnumLiteral"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"visibility","changeable":true,"lowerBound":1,"iD":false,"id":159,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"scope","changeable":true,"lowerBound":1,"iD":false,"id":160,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"type_part","changeable":true,"resolveProxies":true,"lowerBound":0,"id":161,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"constrainedBy","changeable":true,"resolveProxies":true,"lowerBound":0,"id":162,"derived":false},{"id":163,"eClass":"EGenericType"},{"id":164,"eClass":"EGenericType"},{"id":165,"eClass":"EGenericType"},{"id":166,"eClass":"EGenericType"},{"id":167,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"ownerInstance","changeable":true,"resolveProxies":true,"lowerBound":0,"id":168,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"type_connector","changeable":true,"resolveProxies":true,"lowerBound":0,"id":169,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"causality","changeable":true,"lowerBound":1,"iD":false,"id":170,"derived":false},{"id":171,"eClass":"EGenericType"},{"id":172,"eClass":"EGenericType"},{"id":173,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"ownerEquationSection","changeable":true,"resolveProxies":true,"lowerBound":0,"id":174,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isInitial","changeable":true,"lowerBound":1,"iD":false,"id":175,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"body","changeable":true,"lowerBound":1,"iD":false,"id":176,"derived":false},{"id":177,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"equations","changeable":true,"resolveProxies":true,"lowerBound":0,"id":178,"derived":false},{"id":179,"eClass":"EGenericType"},{"id":180,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"ownerEquationSection","changeable":true,"resolveProxies":true,"lowerBound":0,"id":181,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"from","changeable":true,"resolveProxies":true,"lowerBound":1,"id":182,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"to","changeable":true,"resolveProxies":true,"lowerBound":1,"id":183,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"fromModelicaPart","changeable":true,"resolveProxies":true,"lowerBound":1,"id":184,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"toModelicaPart","changeable":true,"resolveProxies":true,"lowerBound":1,"id":185,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"fromPort","changeable":true,"lowerBound":0,"iD":false,"id":186,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"toPort","changeable":true,"lowerBound":0,"iD":false,"id":187,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"fromPart","changeable":true,"lowerBound":0,"iD":false,"id":188,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"toPart","changeable":true,"lowerBound":0,"iD":false,"id":189,"derived":false},{"id":190,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"connects","changeable":true,"resolveProxies":true,"lowerBound":0,"id":191,"derived":false},{"id":192,"eClass":"EGenericType"},{"id":193,"eClass":"EGenericType"},{"id":194,"eClass":"EGenericType"},{"id":195,"eClass":"EGenericType"},{"id":196,"eClass":"EGenericType"},{"id":197,"eClass":"EGenericType"},{"id":198,"eClass":"EGenericType"},{"id":199,"eClass":"EGenericType"},{"id":200,"eClass":"EGenericType"},{"id":201,"eClass":"EGenericType"},{"id":202,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":203,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"causality","changeable":true,"lowerBound":1,"iD":false,"id":204,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"modification","changeable":true,"lowerBound":0,"iD":false,"id":205,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isReplaceable","changeable":true,"lowerBound":1,"iD":false,"id":206,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"declarationEquation","changeable":true,"lowerBound":0,"iD":false,"id":207,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isFinal","changeable":true,"lowerBound":1,"iD":false,"id":208,"derived":false},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"arraySize","changeable":true,"lowerBound":0,"iD":false,"id":209,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"variability","changeable":true,"lowerBound":1,"iD":false,"id":210,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"type_specifier","changeable":true,"lowerBound":1,"iD":false,"id":211,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isProtected","changeable":true,"lowerBound":1,"iD":false,"id":212,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"default_value","changeable":true,"lowerBound":0,"iD":false,"id":213,"derived":false},{"id":214,"eClass":"EGenericType"},{"id":215,"eClass":"EGenericType"},{"id":216,"eClass":"EGenericType"},{"id":217,"eClass":"EGenericType"},{"id":218,"eClass":"EGenericType"},{"id":219,"eClass":"EGenericType"},{"id":220,"eClass":"EGenericType"},{"id":221,"eClass":"EGenericType"},{"id":222,"eClass":"EGenericType"},{"id":223,"eClass":"EGenericType"},{"id":224,"eClass":"EGenericType"},{"id":225,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"algorithm","changeable":true,"resolveProxies":true,"lowerBound":0,"id":226,"derived":false},{"id":227,"eClass":"EGenericType"},{"id":228,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"algorithmsection","changeable":true,"resolveProxies":true,"lowerBound":0,"id":229,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"modification","changeable":true,"lowerBound":0,"iD":false,"id":230,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"instanceForConstrainedBy","changeable":true,"resolveProxies":true,"lowerBound":0,"id":231,"derived":false},{"id":232,"eClass":"EGenericType"},{"id":233,"eClass":"EGenericType"},{"id":234,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"body","changeable":true,"lowerBound":0,"iD":false,"id":235,"derived":false},{"id":236,"eClass":"EGenericType"},{"id":237,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"body","changeable":true,"lowerBound":0,"iD":false,"id":238,"derived":false},{"id":239,"eClass":"EGenericType"},{"id":240,"eClass":"EGenericType"},{"id":241,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"body","changeable":true,"lowerBound":0,"iD":false,"id":242,"derived":false},{"id":243,"eClass":"EGenericType"},{"id":244,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"enumerationLiterals","changeable":true,"resolveProxies":true,"lowerBound":0,"id":245,"derived":false},{"id":246,"eClass":"EGenericType"},{"id":247,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"enumeration","changeable":true,"resolveProxies":true,"lowerBound":0,"id":248,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":249,"derived":false},{"id":250,"eClass":"EGenericType"},{"id":251,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":0,"target":8},{"source":0,"target":9},{"source":0,"target":10},{"source":0,"target":11},{"source":0,"target":12},{"source":0,"target":13},{"source":0,"target":14},{"source":0,"target":15},{"source":0,"target":16},{"source":0,"target":17},{"source":0,"target":18},{"source":0,"target":19},{"source":0,"target":20},{"source":0,"target":21},{"source":0,"target":22},{"source":0,"target":23},{"source":0,"target":24},{"source":0,"target":25},{"source":0,"target":26},{"source":0,"target":27},{"source":0,"target":28},{"source":0,"target":29},{"source":0,"target":30},{"source":0,"target":31},{"source":0,"target":32},{"source":1,"target":0},{"source":1,"target":33},{"source":1,"target":34},{"source":1,"target":35},{"source":1,"target":36},{"source":1,"target":37},{"source":1,"target":38},{"source":1,"target":39},{"source":1,"target":40},{"source":1,"target":41},{"source":1,"target":42},{"source":1,"target":43},{"source":1,"target":44},{"source":1,"target":45},{"source":1,"target":46},{"source":1,"target":47},{"source":33,"target":48},{"source":33,"target":1},{"source":34,"target":49},{"source":34,"target":1},{"source":35,"target":50},{"source":35,"target":1},{"source":36,"target":51},{"source":36,"target":1},{"source":37,"target":52},{"source":37,"target":1},{"source":38,"target":53},{"source":38,"target":1},{"source":39,"target":11},{"source":39,"target":54},{"source":39,"target":1},{"source":39,"target":55},{"source":54,"target":11},{"source":40,"target":12},{"source":40,"target":56},{"source":40,"target":1},{"source":40,"target":57},{"source":56,"target":12},{"source":41,"target":7},{"source":41,"target":58},{"source":41,"target":1},{"source":41,"target":59},{"source":58,"target":7},{"source":42,"target":13},{"source":42,"target":60},{"source":42,"target":1},{"source":42,"target":61},{"source":60,"target":13},{"source":43,"target":23},{"source":43,"target":62},{"source":43,"target":1},{"source":43,"target":63},{"source":62,"target":23},{"source":44,"target":25},{"source":44,"target":64},{"source":44,"target":1},{"source":44,"target":65},{"source":64,"target":25},{"source":45,"target":27},{"source":45,"target":66},{"source":45,"target":1},{"source":45,"target":67},{"source":66,"target":27},{"source":46,"target":28},{"source":46,"target":68},{"source":46,"target":1},{"source":46,"target":69},{"source":68,"target":28},{"source":47,"target":5},{"source":47,"target":70},{"source":47,"target":1},{"source":47,"target":71},{"source":70,"target":5},{"source":2,"target":0},{"source":2,"target":1},{"source":2,"target":72},{"source":72,"target":1},{"source":3,"target":0},{"source":3,"target":1},{"source":3,"target":73},{"source":3,"target":74},{"source":73,"target":75},{"source":73,"target":3},{"source":74,"target":1},{"source":4,"target":0},{"source":4,"target":1},{"source":4,"target":76},{"source":76,"target":1},{"source":5,"target":0},{"source":5,"target":1},{"source":5,"target":71},{"source":5,"target":77},{"source":71,"target":1},{"source":71,"target":78},{"source":71,"target":5},{"source":71,"target":47},{"source":78,"target":1},{"source":77,"target":1},{"source":6,"target":0},{"source":6,"target":1},{"source":6,"target":79},{"source":79,"target":1},{"source":7,"target":0},{"source":7,"target":1},{"source":7,"target":80},{"source":7,"target":59},{"source":7,"target":81},{"source":80,"target":82},{"source":80,"target":7},{"source":59,"target":1},{"source":59,"target":83},{"source":59,"target":7},{"source":59,"target":41},{"source":83,"target":1},{"source":81,"target":1},{"source":8,"target":0},{"source":8,"target":1},{"source":8,"target":84},{"source":8,"target":85},{"source":8,"target":86},{"source":8,"target":87},{"source":8,"target":88},{"source":84,"target":89},{"source":84,"target":8},{"source":85,"target":90},{"source":85,"target":8},{"source":86,"target":91},{"source":86,"target":8},{"source":87,"target":24},{"source":87,"target":92},{"source":87,"target":8},{"source":87,"target":93},{"source":92,"target":24},{"source":88,"target":1},{"source":9,"target":0},{"source":9,"target":8},{"source":9,"target":94},{"source":9,"target":95},{"source":9,"target":96},{"source":94,"target":8},{"source":94,"target":97},{"source":94,"target":9},{"source":97,"target":8},{"source":95,"target":98},{"source":95,"target":9},{"source":96,"target":8},{"source":10,"target":0},{"source":10,"target":99},{"source":10,"target":100},{"source":99,"target":10},{"source":100,"target":10},{"source":11,"target":0},{"source":11,"target":101},{"source":11,"target":102},{"source":11,"target":55},{"source":11,"target":103},{"source":11,"target":104},{"source":11,"target":105},{"source":11,"target":106},{"source":101,"target":107},{"source":101,"target":11},{"source":102,"target":108},{"source":102,"target":11},{"source":55,"target":1},{"source":55,"target":109},{"source":55,"target":11},{"source":55,"target":39},{"source":109,"target":1},{"source":103,"target":10},{"source":103,"target":110},{"source":103,"target":11},{"source":110,"target":10},{"source":104,"target":1},{"source":104,"target":111},{"source":104,"target":11},{"source":111,"target":1},{"source":105,"target":112},{"source":105,"target":11},{"source":106,"target":113},{"source":106,"target":11},{"source":12,"target":0},{"source":12,"target":114},{"source":12,"target":57},{"source":114,"target":115},{"source":114,"target":12},{"source":57,"target":1},{"source":57,"target":116},{"source":57,"target":12},{"source":57,"target":40},{"source":116,"target":1},{"source":13,"target":0},{"source":13,"target":117},{"source":13,"target":118},{"source":13,"target":119},{"source":13,"target":120},{"source":13,"target":121},{"source":13,"target":122},{"source":13,"target":61},{"source":13,"target":123},{"source":117,"target":124},{"source":117,"target":13},{"source":118,"target":125},{"source":118,"target":13},{"source":119,"target":126},{"source":119,"target":13},{"source":120,"target":127},{"source":120,"target":13},{"source":121,"target":128},{"source":121,"target":13},{"source":122,"target":129},{"source":122,"target":13},{"source":61,"target":1},{"source":61,"target":130},{"source":61,"target":13},{"source":61,"target":42},{"source":130,"target":1},{"source":123,"target":131},{"source":123,"target":13},{"source":14,"target":0},{"source":14,"target":132},{"source":14,"target":133},{"source":14,"target":134},{"source":132,"target":14},{"source":133,"target":14},{"source":134,"target":14},{"source":15,"target":0},{"source":15,"target":13},{"source":15,"target":135},{"source":15,"target":136},{"source":15,"target":137},{"source":15,"target":138},{"source":15,"target":139},{"source":15,"target":140},{"source":15,"target":141},{"source":135,"target":10},{"source":135,"target":142},{"source":135,"target":15},{"source":142,"target":10},{"source":136,"target":14},{"source":136,"target":143},{"source":136,"target":15},{"source":143,"target":14},{"source":137,"target":16},{"source":137,"target":144},{"source":137,"target":15},{"source":144,"target":16},{"source":138,"target":17},{"source":138,"target":145},{"source":138,"target":15},{"source":145,"target":17},{"source":139,"target":18},{"source":139,"target":146},{"source":139,"target":15},{"source":146,"target":18},{"source":140,"target":147},{"source":140,"target":15},{"source":141,"target":13},{"source":16,"target":0},{"source":16,"target":148},{"source":16,"target":149},{"source":16,"target":150},{"source":16,"target":151},{"source":148,"target":16},{"source":149,"target":16},{"source":150,"target":16},{"source":151,"target":16},{"source":17,"target":0},{"source":17,"target":152},{"source":17,"target":153},{"source":17,"target":154},{"source":152,"target":17},{"source":153,"target":17},{"source":154,"target":17},{"source":18,"target":0},{"source":18,"target":155},{"source":18,"target":156},{"source":18,"target":157},{"source":18,"target":158},{"source":155,"target":18},{"source":156,"target":18},{"source":157,"target":18},{"source":158,"target":18},{"source":19,"target":0},{"source":19,"target":13},{"source":19,"target":159},{"source":19,"target":160},{"source":19,"target":161},{"source":19,"target":162},{"source":19,"target":163},{"source":159,"target":10},{"source":159,"target":164},{"source":159,"target":19},{"source":164,"target":10},{"source":160,"target":18},{"source":160,"target":165},{"source":160,"target":19},{"source":165,"target":18},{"source":161,"target":1},{"source":161,"target":166},{"source":161,"target":19},{"source":166,"target":1},{"source":162,"target":26},{"source":162,"target":167},{"source":162,"target":19},{"source":162,"target":168},{"source":167,"target":26},{"source":163,"target":13},{"source":20,"target":0},{"source":20,"target":13},{"source":20,"target":169},{"source":20,"target":170},{"source":20,"target":171},{"source":169,"target":3},{"source":169,"target":172},{"source":169,"target":20},{"source":172,"target":3},{"source":170,"target":14},{"source":170,"target":173},{"source":170,"target":20},{"source":173,"target":14},{"source":171,"target":13},{"source":21,"target":0},{"source":21,"target":174},{"source":21,"target":175},{"source":21,"target":176},{"source":174,"target":23},{"source":174,"target":177},{"source":174,"target":21},{"source":174,"target":178},{"source":177,"target":23},{"source":175,"target":179},{"source":175,"target":21},{"source":176,"target":180},{"source":176,"target":21},{"source":22,"target":0},{"source":22,"target":181},{"source":22,"target":182},{"source":22,"target":183},{"source":22,"target":184},{"source":22,"target":185},{"source":22,"target":186},{"source":22,"target":187},{"source":22,"target":188},{"source":22,"target":189},{"source":181,"target":23},{"source":181,"target":190},{"source":181,"target":22},{"source":181,"target":191},{"source":190,"target":23},{"source":182,"target":20},{"source":182,"target":192},{"source":182,"target":22},{"source":192,"target":20},{"source":183,"target":20},{"source":183,"target":193},{"source":183,"target":22},{"source":193,"target":20},{"source":184,"target":19},{"source":184,"target":194},{"source":184,"target":22},{"source":194,"target":19},{"source":185,"target":19},{"source":185,"target":195},{"source":185,"target":22},{"source":195,"target":19},{"source":186,"target":196},{"source":186,"target":22},{"source":187,"target":197},{"source":187,"target":22},{"source":188,"target":198},{"source":188,"target":22},{"source":189,"target":199},{"source":189,"target":22},{"source":23,"target":0},{"source":23,"target":63},{"source":23,"target":178},{"source":23,"target":191},{"source":63,"target":1},{"source":63,"target":200},{"source":63,"target":23},{"source":63,"target":43},{"source":200,"target":1},{"source":178,"target":21},{"source":178,"target":201},{"source":178,"target":23},{"source":178,"target":174},{"source":201,"target":21},{"source":191,"target":22},{"source":191,"target":202},{"source":191,"target":23},{"source":191,"target":181},{"source":202,"target":22},{"source":24,"target":0},{"source":24,"target":93},{"source":24,"target":203},{"source":24,"target":204},{"source":24,"target":205},{"source":24,"target":206},{"source":24,"target":207},{"source":24,"target":208},{"source":24,"target":209},{"source":24,"target":210},{"source":24,"target":211},{"source":24,"target":212},{"source":24,"target":213},{"source":93,"target":8},{"source":93,"target":214},{"source":93,"target":24},{"source":93,"target":87},{"source":214,"target":8},{"source":203,"target":215},{"source":203,"target":24},{"source":204,"target":14},{"source":204,"target":216},{"source":204,"target":24},{"source":216,"target":14},{"source":205,"target":217},{"source":205,"target":24},{"source":206,"target":218},{"source":206,"target":24},{"source":207,"target":219},{"source":207,"target":24},{"source":208,"target":220},{"source":208,"target":24},{"source":209,"target":221},{"source":209,"target":24},{"source":210,"target":16},{"source":210,"target":222},{"source":210,"target":24},{"source":222,"target":16},{"source":211,"target":223},{"source":211,"target":24},{"source":212,"target":224},{"source":212,"target":24},{"source":213,"target":225},{"source":213,"target":24},{"source":25,"target":0},{"source":25,"target":65},{"source":25,"target":226},{"source":65,"target":1},{"source":65,"target":227},{"source":65,"target":25},{"source":65,"target":44},{"source":227,"target":1},{"source":226,"target":30},{"source":226,"target":228},{"source":226,"target":25},{"source":226,"target":229},{"source":228,"target":30},{"source":26,"target":0},{"source":26,"target":230},{"source":26,"target":168},{"source":26,"target":231},{"source":230,"target":232},{"source":230,"target":26},{"source":168,"target":19},{"source":168,"target":233},{"source":168,"target":26},{"source":168,"target":162},{"source":233,"target":19},{"source":231,"target":19},{"source":231,"target":234},{"source":231,"target":26},{"source":234,"target":19},{"source":27,"target":0},{"source":27,"target":235},{"source":27,"target":67},{"source":235,"target":236},{"source":235,"target":27},{"source":67,"target":1},{"source":67,"target":237},{"source":67,"target":27},{"source":67,"target":45},{"source":237,"target":1},{"source":28,"target":0},{"source":28,"target":69},{"source":28,"target":238},{"source":69,"target":1},{"source":69,"target":239},{"source":69,"target":28},{"source":69,"target":46},{"source":239,"target":1},{"source":238,"target":240},{"source":238,"target":28},{"source":29,"target":0},{"source":29,"target":1},{"source":29,"target":241},{"source":241,"target":1},{"source":30,"target":0},{"source":30,"target":242},{"source":30,"target":229},{"source":242,"target":243},{"source":242,"target":30},{"source":229,"target":25},{"source":229,"target":244},{"source":229,"target":30},{"source":229,"target":226},{"source":244,"target":25},{"source":31,"target":0},{"source":31,"target":29},{"source":31,"target":245},{"source":31,"target":246},{"source":245,"target":32},{"source":245,"target":247},{"source":245,"target":31},{"source":245,"target":248},{"source":247,"target":32},{"source":246,"target":29},{"source":32,"target":0},{"source":32,"target":249},{"source":32,"target":248},{"source":249,"target":250},{"source":249,"target":32},{"source":248,"target":31},{"source":248,"target":251},{"source":248,"target":32},{"source":248,"target":245},{"source":251,"target":31}],"multigraph":true} |
false | <?xml version="1.0" encoding="ASCII"?>
<ecore:EPackage xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="herokuMM" nsURI="http://uniandes.edu.co/metamodels/herokuMM"
nsPrefix="hmm">
<eClassifiers xsi:type="ecore:EClass" name="HerokuMM">
<eAnnotations source="gmf.diagram">
<details key="foo" value="bar"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="haveRelationsPQ" upperBound="-1"
eType="#//AssociationPQ" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="haveRelationsPS" upperBound="-1"
eType="#//AssociationPS" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="haveWebPools" upperBound="-1"
eType="#//WebPool" containment="true">
<eAnnotations source="gmf.compartment">
<details key="foo" value="bar"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="haveWorkerPools" upperBound="-1"
eType="#//WorkerPool" containment="true">
<eAnnotations source="gmf.compartment">
<details key="foo" value="bar"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="haveBlobs" upperBound="-1"
eType="#//Blob" containment="true">
<eAnnotations source="gmf.compartment">
<details key="foo" value="bar"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="haveRMDBs" upperBound="-1"
eType="#//RMDB" containment="true">
<eAnnotations source="gmf.compartment">
<details key="foo" value="bar"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="haveAMPQQueues" upperBound="-1"
eType="#//AMPQQueue" containment="true">
<eAnnotations source="gmf.compartment">
<details key="foo" value="bar"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="HerokuArchitecturalElements" abstract="true">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="Name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="AMPQQueue" eSuperTypes="#//HerokuArchitecturalElements">
<eAnnotations source="gmf.node">
<details key="label" value="Name"/>
<details key="label.placement" value="internal"/>
<details key="label.icon" value="false"/>
<details key="phantom" value="false"/>
<details key="figure" value="org.eclipse.gmf.runtime.lite.svg.SVGFigure"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Dino" abstract="true" eSuperTypes="#//HerokuArchitecturalElements">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="IPAdress" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="Throughput" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="Memory" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="WebDino" eSuperTypes="#//Dino">
<eAnnotations source="gmf.node">
<details key="label" value="Name"/>
<details key="label.placement" value="internal"/>
<details key="label.icon" value="false"/>
<details key="phantom" value="false"/>
<details key="figure" value="org.eclipse.gmf.runtime.lite.svg.SVGFigure"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="WorkerDino" eSuperTypes="#//Dino">
<eAnnotations source="gmf.node">
<details key="label" value="Name"/>
<details key="label.placement" value="internal"/>
<details key="label.icon" value="false"/>
<details key="phantom" value="false"/>
<details key="figure" value="org.eclipse.gmf.runtime.lite.svg.SVGFigure"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Pool" abstract="true" eSuperTypes="#//HerokuArchitecturalElements"/>
<eClassifiers xsi:type="ecore:EClass" name="WebPool" eSuperTypes="#//Pool">
<eAnnotations source="gmf.node">
<details key="label" value="Name"/>
<details key="label.placement" value="internal"/>
<details key="label.icon" value="false"/>
<details key="phantom" value="false"/>
<details key="figure" value="org.eclipse.gmf.runtime.lite.svg.SVGFigure"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="haveWebDinos" upperBound="-1"
eType="#//WebDino" containment="true">
<eAnnotations source="gmf.compartment">
<details key="foo" value="bar"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="WorkerPool" eSuperTypes="#//Pool">
<eAnnotations source="gmf.node">
<details key="label" value="Name"/>
<details key="label.placement" value="internal"/>
<details key="label.icon" value="false"/>
<details key="phantom" value="false"/>
<details key="figure" value="org.eclipse.gmf.runtime.lite.svg.SVGFigure"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="haveWorkerDinos" upperBound="-1"
eType="#//WorkerDino" containment="true">
<eAnnotations source="gmf.compartment">
<details key="foo" value="bar"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="StorageElement" abstract="true" eSuperTypes="#//HerokuArchitecturalElements"/>
<eClassifiers xsi:type="ecore:EClass" name="Blob" eSuperTypes="#//StorageElement">
<eAnnotations source="gmf.node">
<details key="label" value="Name"/>
<details key="label.placement" value="internal"/>
<details key="label.icon" value="false"/>
<details key="phantom" value="false"/>
<details key="figure" value="org.eclipse.gmf.runtime.lite.svg.SVGFigure"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="RMDB" eSuperTypes="#//StorageElement">
<eAnnotations source="gmf.node">
<details key="label" value="Name"/>
<details key="label.placement" value="internal"/>
<details key="label.icon" value="false"/>
<details key="phantom" value="false"/>
<details key="figure" value="org.eclipse.gmf.runtime.lite.svg.SVGFigure"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="HerokuRelation" abstract="true">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="elementName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="description" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="AssociationPQ" eSuperTypes="#//HerokuRelation">
<eAnnotations source="gmf.link">
<details key="label" value="connectorName"/>
<details key="source" value="SourceC"/>
<details key="target" value="TargetC"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="SourceC" eType="#//Pool"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="TargetC" eType="#//AMPQQueue"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="AssociationPS" eSuperTypes="#//HerokuRelation">
<eAnnotations source="gmf.link">
<details key="label" value="connectorName"/>
<details key="source" value="SourceC"/>
<details key="target" value="TargetC"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="SourceC" eType="#//Pool"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="TargetC" eType="#//StorageElement"/>
</eClassifiers>
</ecore:EPackage>
| github:ecore:/data/hellspawn14/WebPicture-Samples/HerokuEditor/Descriptors/HerokuDsl.ecore | ecore | herokuMM
HerokuMM
haveRelationsPQ
haveRelationsPS
haveWebPools
haveWorkerPools
haveBlobs
haveRMDBs
haveAMPQQueues
HerokuArchitecturalElements
Name
AMPQQueue
Dino
IPAdress
Throughput
Memory
WebDino
WorkerDino
Pool
WebPool
haveWebDinos
WorkerPool
haveWorkerDinos
StorageElement
Blob
RMDB
HerokuRelation
elementName
description
AssociationPQ
SourceC
TargetC
AssociationPS
SourceC
TargetC | null | {"directed":true,"nodes":[{"nsPrefix":"hmm","nsURI":"http://uniandes.edu.co/metamodels/herokuMM","name":"herokuMM","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"HerokuMM","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"HerokuArchitecturalElements","instanceClass":null,"abstract":true,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AMPQQueue","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Dino","instanceClass":null,"abstract":true,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"WebDino","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"WorkerDino","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Pool","instanceClass":null,"abstract":true,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"WebPool","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"WorkerPool","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StorageElement","instanceClass":null,"abstract":true,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Blob","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RMDB","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"HerokuRelation","instanceClass":null,"abstract":true,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AssociationPQ","instanceClass":null,"abstract":false,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AssociationPS","instanceClass":null,"abstract":false,"id":15,"interface":false,"eClass":"EClass"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"haveRelationsPQ","changeable":true,"resolveProxies":true,"lowerBound":0,"id":16,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"haveRelationsPS","changeable":true,"resolveProxies":true,"lowerBound":0,"id":17,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"haveWebPools","changeable":true,"resolveProxies":true,"lowerBound":0,"id":18,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"haveWorkerPools","changeable":true,"resolveProxies":true,"lowerBound":0,"id":19,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"haveBlobs","changeable":true,"resolveProxies":true,"lowerBound":0,"id":20,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"haveRMDBs","changeable":true,"resolveProxies":true,"lowerBound":0,"id":21,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"haveAMPQQueues","changeable":true,"resolveProxies":true,"lowerBound":0,"id":22,"derived":false},{"id":23,"eClass":"EGenericType"},{"id":24,"eClass":"EGenericType"},{"id":25,"eClass":"EGenericType"},{"id":26,"eClass":"EGenericType"},{"id":27,"eClass":"EGenericType"},{"id":28,"eClass":"EGenericType"},{"id":29,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"Name","changeable":true,"lowerBound":0,"iD":false,"id":30,"derived":false},{"id":31,"eClass":"EGenericType"},{"id":32,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"IPAdress","changeable":true,"lowerBound":0,"iD":false,"id":33,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"Throughput","changeable":true,"lowerBound":0,"iD":false,"id":34,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"Memory","changeable":true,"lowerBound":0,"iD":false,"id":35,"derived":false},{"id":36,"eClass":"EGenericType"},{"id":37,"eClass":"EGenericType"},{"id":38,"eClass":"EGenericType"},{"id":39,"eClass":"EGenericType"},{"id":40,"eClass":"EGenericType"},{"id":41,"eClass":"EGenericType"},{"id":42,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"haveWebDinos","changeable":true,"resolveProxies":true,"lowerBound":0,"id":43,"derived":false},{"id":44,"eClass":"EGenericType"},{"id":45,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"haveWorkerDinos","changeable":true,"resolveProxies":true,"lowerBound":0,"id":46,"derived":false},{"id":47,"eClass":"EGenericType"},{"id":48,"eClass":"EGenericType"},{"id":49,"eClass":"EGenericType"},{"id":50,"eClass":"EGenericType"},{"id":51,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"elementName","changeable":true,"lowerBound":0,"iD":false,"id":52,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"description","changeable":true,"lowerBound":0,"iD":false,"id":53,"derived":false},{"id":54,"eClass":"EGenericType"},{"id":55,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"SourceC","changeable":true,"resolveProxies":true,"lowerBound":0,"id":56,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"TargetC","changeable":true,"resolveProxies":true,"lowerBound":0,"id":57,"derived":false},{"id":58,"eClass":"EGenericType"},{"id":59,"eClass":"EGenericType"},{"id":60,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"SourceC","changeable":true,"resolveProxies":true,"lowerBound":0,"id":61,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"TargetC","changeable":true,"resolveProxies":true,"lowerBound":0,"id":62,"derived":false},{"id":63,"eClass":"EGenericType"},{"id":64,"eClass":"EGenericType"},{"id":65,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":0,"target":8},{"source":0,"target":9},{"source":0,"target":10},{"source":0,"target":11},{"source":0,"target":12},{"source":0,"target":13},{"source":0,"target":14},{"source":0,"target":15},{"source":1,"target":0},{"source":1,"target":16},{"source":1,"target":17},{"source":1,"target":18},{"source":1,"target":19},{"source":1,"target":20},{"source":1,"target":21},{"source":1,"target":22},{"source":16,"target":14},{"source":16,"target":23},{"source":16,"target":1},{"source":23,"target":14},{"source":17,"target":15},{"source":17,"target":24},{"source":17,"target":1},{"source":24,"target":15},{"source":18,"target":8},{"source":18,"target":25},{"source":18,"target":1},{"source":25,"target":8},{"source":19,"target":9},{"source":19,"target":26},{"source":19,"target":1},{"source":26,"target":9},{"source":20,"target":11},{"source":20,"target":27},{"source":20,"target":1},{"source":27,"target":11},{"source":21,"target":12},{"source":21,"target":28},{"source":21,"target":1},{"source":28,"target":12},{"source":22,"target":3},{"source":22,"target":29},{"source":22,"target":1},{"source":29,"target":3},{"source":2,"target":0},{"source":2,"target":30},{"source":30,"target":31},{"source":30,"target":2},{"source":3,"target":0},{"source":3,"target":2},{"source":3,"target":32},{"source":32,"target":2},{"source":4,"target":0},{"source":4,"target":2},{"source":4,"target":33},{"source":4,"target":34},{"source":4,"target":35},{"source":4,"target":36},{"source":33,"target":37},{"source":33,"target":4},{"source":34,"target":38},{"source":34,"target":4},{"source":35,"target":39},{"source":35,"target":4},{"source":36,"target":2},{"source":5,"target":0},{"source":5,"target":4},{"source":5,"target":40},{"source":40,"target":4},{"source":6,"target":0},{"source":6,"target":4},{"source":6,"target":41},{"source":41,"target":4},{"source":7,"target":0},{"source":7,"target":2},{"source":7,"target":42},{"source":42,"target":2},{"source":8,"target":0},{"source":8,"target":7},{"source":8,"target":43},{"source":8,"target":44},{"source":43,"target":5},{"source":43,"target":45},{"source":43,"target":8},{"source":45,"target":5},{"source":44,"target":7},{"source":9,"target":0},{"source":9,"target":7},{"source":9,"target":46},{"source":9,"target":47},{"source":46,"target":6},{"source":46,"target":48},{"source":46,"target":9},{"source":48,"target":6},{"source":47,"target":7},{"source":10,"target":0},{"source":10,"target":2},{"source":10,"target":49},{"source":49,"target":2},{"source":11,"target":0},{"source":11,"target":10},{"source":11,"target":50},{"source":50,"target":10},{"source":12,"target":0},{"source":12,"target":10},{"source":12,"target":51},{"source":51,"target":10},{"source":13,"target":0},{"source":13,"target":52},{"source":13,"target":53},{"source":52,"target":54},{"source":52,"target":13},{"source":53,"target":55},{"source":53,"target":13},{"source":14,"target":0},{"source":14,"target":13},{"source":14,"target":56},{"source":14,"target":57},{"source":14,"target":58},{"source":56,"target":7},{"source":56,"target":59},{"source":56,"target":14},{"source":59,"target":7},{"source":57,"target":3},{"source":57,"target":60},{"source":57,"target":14},{"source":60,"target":3},{"source":58,"target":13},{"source":15,"target":0},{"source":15,"target":13},{"source":15,"target":61},{"source":15,"target":62},{"source":15,"target":63},{"source":61,"target":7},{"source":61,"target":64},{"source":61,"target":15},{"source":64,"target":7},{"source":62,"target":10},{"source":62,"target":65},{"source":62,"target":15},{"source":65,"target":10},{"source":63,"target":13}],"multigraph":true} |
true | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0"
xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="gmfgraph"
nsURI="http://www.eclipse.org/gmf/2005/GraphicalDefinition" nsPrefix="gmfgraph">
<eClassifiers xsi:type="ecore:EClass" name="Identity" interface="true">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="Easy and readable way to reference element of the model from another one"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
iD="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Canvas" eSuperTypes="#//Identity">
<eStructuralFeatures xsi:type="ecore:EReference" name="figures" upperBound="-1"
eType="#//FigureGallery" containment="true">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="containment here doesn't restrict nodes/connection from using figure galeries defined elsewhere. No assumption should be made whether or not node/connection figure is defined in the galery beloning to this canvas"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="nodes" upperBound="-1"
eType="#//Node" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="connections" upperBound="-1"
eType="#//Connection" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="compartments" upperBound="-1"
eType="#//Compartment" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="labels" upperBound="-1"
eType="#//DiagramLabel" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="FigureGallery" eSuperTypes="#//Identity">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="Kind of explicit figure library notion. Bundle of figures. Allows to specify plugin id (allows importing it later from gmfgen code) in addition to figures"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="implementationBundle" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="figures" upperBound="-1"
eType="#//Figure" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="DiagramElement" abstract="true" eSuperTypes="#//Identity">
<eOperations name="find" eType="#//VisualFacet">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="utility operation to get first visual facet assignable (in Java terms, {@link Class#isAssignableFrom(Class)}) to variables of designated class. Argument can't be null"/>
</eAnnotations>
<eParameters name="facetClass" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EJavaClass"/>
</eOperations>
<eStructuralFeatures xsi:type="ecore:EReference" name="facets" upperBound="-1"
eType="#//VisualFacet" containment="true">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="anything to further specify constraint or any other aspect of the element"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="figure" lowerBound="1"
eType="#//FigureHandle" eOpposite="#//FigureHandle/referencingElements"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Node" eSuperTypes="#//DiagramElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="resizeConstraint" eType="#//Direction"
defaultValueLiteral="NSEW"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="nodeFigure" lowerBound="1"
eType="#//Figure" changeable="false" volatile="true" transient="true" derived="true"
resolveProxies="false">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="Specializes DiagramElement.figure"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Connection" eSuperTypes="#//DiagramElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="connectionFigure" lowerBound="1"
eType="#//Figure" changeable="false" volatile="true" transient="true" derived="true"
resolveProxies="false">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="Specializes DiagramElement.figure"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Compartment" eSuperTypes="#//DiagramElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="collapsible" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="needsTitle" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="DiagramLabel" eSuperTypes="#//Node">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="elementIcon" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"
defaultValueLiteral="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="VisualFacet" interface="true"/>
<eClassifiers xsi:type="ecore:EClass" name="GeneralFacet" eSuperTypes="#//VisualFacet">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="provide means to attach arbitrary data to your diagram element definition. It's up to you (template author) to process it somehow."/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="identifier" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
iD="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="data" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="AlignmentFacet" eSuperTypes="#//VisualFacet">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="Makes sense for DiagramLabels of Links only (now). Constants from {@link org.eclipse.draw2d.ConnectionLocator} are: MIDDLE = Alignment.CENTER, TARGET = Alignment.END, SOURCE = Alignment.BEGINNING"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="alignment" eType="#//Alignment"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="GradientFacet" eSuperTypes="#//VisualFacet">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="direction" eType="#//Direction"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="LabelOffsetFacet" eSuperTypes="#//VisualFacet">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="x" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="y" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="FigureHandle" interface="true">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="Entry in the figure's hierarchy to reference from diagram element"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="referencingElements" upperBound="-1"
eType="#//DiagramElement" eOpposite="#//DiagramElement/figure"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CustomClass" interface="true">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="qualifiedClassName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="bundleName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="attributes" upperBound="-1"
eType="#//CustomAttribute" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CustomAttribute">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
defaultValueLiteral="null"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="directAccess" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean" defaultValueLiteral="false"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="multiStatementValue" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean" defaultValueLiteral="false"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="FigureAccessor" eSuperTypes="#//FigureHandle">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="accessor" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="typedFigure" eType="#//CustomFigure"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Color" interface="true"/>
<eClassifiers xsi:type="ecore:EClass" name="RGBColor" eSuperTypes="#//Color">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="red" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="green" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="blue" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ConstantColor" eSuperTypes="#//Color">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" lowerBound="1" eType="#//ColorConstants"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="ColorConstants">
<eLiterals name="white" literal="white"/>
<eLiterals name="black" value="1" literal="black"/>
<eLiterals name="lightGray" value="2" literal="lightGray"/>
<eLiterals name="gray" value="3" literal="gray"/>
<eLiterals name="darkGray" value="4" literal="darkGray"/>
<eLiterals name="red" value="5" literal="red"/>
<eLiterals name="orange" value="6" literal="orange"/>
<eLiterals name="yellow" value="7" literal="yellow"/>
<eLiterals name="green" value="8" literal="green"/>
<eLiterals name="lightGreen" value="9" literal="lightGreen"/>
<eLiterals name="darkGreen" value="10" literal="darkGreen"/>
<eLiterals name="cyan" value="11" literal="cyan"/>
<eLiterals name="lightBlue" value="12" literal="lightBlue"/>
<eLiterals name="blue" value="13" literal="blue"/>
<eLiterals name="darkBlue" value="14" literal="darkBlue"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Font" interface="true"/>
<eClassifiers xsi:type="ecore:EClass" name="BasicFont" eSuperTypes="#//Font">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="faceName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="height" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"
defaultValueLiteral="9"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="style" eType="#//FontStyle"
defaultValueLiteral="NORMAL"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="FontStyle">
<eLiterals name="NORMAL" literal="NORMAL"/>
<eLiterals name="BOLD" value="1" literal="BOLD"/>
<eLiterals name="ITALIC" value="2" literal="ITALIC"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Point">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="x" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="y" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Dimension">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="dx" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="dy" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Insets">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="top" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="left" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="bottom" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="right" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Border" interface="true"/>
<eClassifiers xsi:type="ecore:EClass" name="LineBorder" eSuperTypes="#//Border">
<eStructuralFeatures xsi:type="ecore:EReference" name="color" eType="#//Color"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="width" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"
defaultValueLiteral="1"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="MarginBorder" eSuperTypes="#//Border">
<eStructuralFeatures xsi:type="ecore:EReference" name="insets" eType="#//Insets"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CompoundBorder" eSuperTypes="#//Border">
<eStructuralFeatures xsi:type="ecore:EReference" name="outer" eType="#//Border"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="inner" eType="#//Border"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CustomBorder" eSuperTypes="#//Border #//CustomClass"/>
<eClassifiers xsi:type="ecore:EEnum" name="Direction">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="Geographical bit constants from org.eclipse.draw2d.PositionConstants"/>
</eAnnotations>
<eLiterals name="NONE" literal="NONE"/>
<eLiterals name="NORTH" value="1" literal="NORTH"/>
<eLiterals name="SOUTH" value="4" literal="SOUTH"/>
<eLiterals name="WEST" value="8" literal="WEST"/>
<eLiterals name="EAST" value="16" literal="EAST"/>
<eLiterals name="NORTH_EAST" value="17" literal="NORTH_EAST"/>
<eLiterals name="NORTH_WEST" value="9" literal="NORTH_WEST"/>
<eLiterals name="SOUTH_EAST" value="20" literal="SOUTH_EAST"/>
<eLiterals name="SOUTH_WEST" value="12" literal="SOUTH_WEST"/>
<eLiterals name="NORTH_SOUTH" value="5" literal="NORTH_SOUTH"/>
<eLiterals name="EAST_WEST" value="24" literal="EAST_WEST"/>
<eLiterals name="NSEW" value="29" literal="NSEW"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="LineKind">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="org.eclipse.draw2d.Graphics.LINE_* (== org.eclipse.swt.SWT.LINE_*. Values are same as SWT constants"/>
</eAnnotations>
<eLiterals name="LINE_SOLID" value="1" literal="LINE_SOLID"/>
<eLiterals name="LINE_DASH" value="2" literal="LINE_DASH"/>
<eLiterals name="LINE_DOT" value="3" literal="LINE_DOT"/>
<eLiterals name="LINE_DASHDOT" value="4" literal="LINE_DASHDOT"/>
<eLiterals name="LINE_DASHDOTDOT" value="5" literal="LINE_DASHDOTDOT"/>
<eLiterals name="LINE_CUSTOM" value="6" literal="LINE_CUSTOM"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="LayoutData" interface="true">
<eStructuralFeatures xsi:type="ecore:EReference" name="owner" lowerBound="1" eType="#//Layoutable"
eOpposite="#//Layoutable/layoutData"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CustomLayoutData" eSuperTypes="#//LayoutData #//CustomClass"/>
<eClassifiers xsi:type="ecore:EClass" name="GridLayoutData" eSuperTypes="#//LayoutData">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="grabExcessHorizontalSpace"
lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"
defaultValueLiteral="false"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="grabExcessVerticalSpace"
lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"
defaultValueLiteral="false"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="verticalSpan" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt" defaultValueLiteral="1"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="horizontalSpan" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt" defaultValueLiteral="1"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="horizontalIndent" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="sizeHint" eType="#//Dimension"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="verticalAlignment" lowerBound="1"
eType="#//Alignment" defaultValueLiteral="CENTER"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="horizontalAlignment" lowerBound="1"
eType="#//Alignment" defaultValueLiteral="CENTER"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="BorderLayoutData" eSuperTypes="#//LayoutData">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="vertical" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"
defaultValueLiteral="false"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="alignment" lowerBound="1"
eType="#//Alignment" defaultValueLiteral="CENTER"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="Alignment">
<eLiterals name="BEGINNING" literal="BEGINNING"/>
<eLiterals name="CENTER" value="1" literal="CENTER"/>
<eLiterals name="END" value="2" literal="END"/>
<eLiterals name="FILL" value="3" literal="FILL"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Layoutable" interface="true">
<eStructuralFeatures xsi:type="ecore:EReference" name="layoutData" eType="#//LayoutData"
containment="true" eOpposite="#//LayoutData/owner"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="layout" eType="#//Layout"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="FigureMarker" interface="true" eSuperTypes="#//Layoutable">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="Anything you could combine visual representation from. Ordinary GEF figures, custom-defined or references to defined elsewhere."/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="parent" eType="#//Figure"
changeable="false" resolveProxies="false" eOpposite="#//Figure/children"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Figure" interface="true" eSuperTypes="#//FigureMarker #//FigureHandle #//Identity">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="org.eclipse.draw2d.Figure"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="children" upperBound="-1"
eType="#//FigureMarker" containment="true" eOpposite="#//FigureMarker/parent"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="foregroundColor" eType="#//Color"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="backgroundColor" eType="#//Color"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="maximumSize" eType="#//Dimension"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="minimumSize" eType="#//Dimension"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="preferredSize" eType="#//Dimension"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="font" eType="#//Font" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="insets" eType="#//Insets"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="border" eType="#//Border"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="location" eType="#//Point"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="size" eType="#//Point"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="FigureRef" eSuperTypes="#//FigureMarker">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="Need this to facilitate reuse of figures while keeping (so nice looking) containment relationship in the Figure class"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="figure" lowerBound="1"
eType="#//Figure">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="not FigureMarker because don't want to reference figure references."/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ConnectionFigure" interface="true" eSuperTypes="#//Figure"/>
<eClassifiers xsi:type="ecore:EClass" name="DecorationFigure" interface="true" eSuperTypes="#//Figure"/>
<eClassifiers xsi:type="ecore:EClass" name="Shape" abstract="true" eSuperTypes="#//Figure">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="org.eclipse.draw2d.Shape"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="outline" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"
defaultValueLiteral="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="fill" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"
defaultValueLiteral="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="lineWidth" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"
defaultValueLiteral="1"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="lineKind" eType="#//LineKind"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="xorFill" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="xorOutline" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="resolvedChildren" upperBound="-1"
eType="#//Figure" changeable="false" volatile="true" transient="true" derived="true">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="Same as children, but resolves child FigureRefs, if any, to Figures"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Label" eSuperTypes="#//Figure">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="org.eclipse.draw2d.Label"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="text" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="LabeledContainer" eSuperTypes="#//Figure">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="org.eclipse.draw2d.LabeledContainer"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Rectangle" eSuperTypes="#//Shape">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="org.eclipse.draw2d.RectangleFigure"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="RoundedRectangle" eSuperTypes="#//Shape">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="org.eclipse.draw2d.RoundedRectangle"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="cornerWidth" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"
defaultValueLiteral="8"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="cornerHeight" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"
defaultValueLiteral="8"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Ellipse" eSuperTypes="#//Shape">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="org.eclipse.draw2d.Ellipse"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Polyline" eSuperTypes="#//Shape">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="org.eclipse.draw2d.Polyline"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="template" upperBound="-1"
eType="#//Point" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Polygon" eSuperTypes="#//Polyline">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="org.eclipse.draw2d.Polygon"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="PolylineConnection" eSuperTypes="#//Polyline #//ConnectionFigure">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="org.eclipse.draw2d.PolylineConnection"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="sourceDecoration" eType="#//DecorationFigure"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="targetDecoration" eType="#//DecorationFigure"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="PolylineDecoration" eSuperTypes="#//Polyline #//DecorationFigure">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="org.eclipse.draw2d.PolylineDecoration"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="PolygonDecoration" eSuperTypes="#//Polygon #//DecorationFigure">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="org.eclipse.draw2d.PolygonDecoration"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CustomFigure" eSuperTypes="#//Figure #//CustomClass">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="Any figure class provided by some bundle"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="customChildren" upperBound="-1"
eType="#//FigureAccessor" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CustomDecoration" eSuperTypes="#//CustomFigure #//DecorationFigure">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="Same as CustomFigure, but for Decorations"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CustomConnection" eSuperTypes="#//CustomFigure #//ConnectionFigure">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="Same as CustomFigure, but for Connections"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Layout" interface="true"/>
<eClassifiers xsi:type="ecore:EClass" name="CustomLayout" eSuperTypes="#//Layout #//CustomClass"/>
<eClassifiers xsi:type="ecore:EClass" name="GridLayout" eSuperTypes="#//Layout">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="numColumns" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt" defaultValueLiteral="1"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="equalWidth" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean" defaultValueLiteral="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="margins" eType="#//Dimension"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="spacing" eType="#//Dimension"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="BorderLayout" eSuperTypes="#//Layout">
<eStructuralFeatures xsi:type="ecore:EReference" name="spacing" eType="#//Dimension"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="FlowLayout" eSuperTypes="#//Layout">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="vertical" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"
defaultValueLiteral="false"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="matchMinorSize" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"
defaultValueLiteral="false"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="forceSingleLine" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"
defaultValueLiteral="false"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="majorAlignment" eType="#//Alignment"
defaultValueLiteral="BEGINNING"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="minorAlignment" eType="#//Alignment"
defaultValueLiteral="BEGINNING"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="majorSpacing" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"
defaultValueLiteral="5"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="minorSpacing" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"
defaultValueLiteral="5"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="XYLayout" eSuperTypes="#//Layout"/>
<eClassifiers xsi:type="ecore:EClass" name="XYLayoutData" eSuperTypes="#//LayoutData">
<eStructuralFeatures xsi:type="ecore:EReference" name="topLeft" lowerBound="1"
eType="#//Point" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="size" lowerBound="1" eType="#//Dimension"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="StackLayout" eSuperTypes="#//Layout"/>
</ecore:EPackage>
| github:ecore:/data/louismrose/migration_comparison/solutions/cope/gmfgraph/gmfgraph.migrator/migrator/release1/release0.ecore | ecore | gmfgraph
Identity
name
Canvas
figures
nodes
connections
compartments
labels
FigureGallery
implementationBundle
figures
DiagramElement
find
facetClass
facets
figure
Node
resizeConstraint
NSEW
nodeFigure
Connection
connectionFigure
Compartment
collapsible
needsTitle
DiagramLabel
elementIcon
true
VisualFacet
GeneralFacet
identifier
data
AlignmentFacet
alignment
GradientFacet
direction
LabelOffsetFacet
x
y
FigureHandle
referencingElements
CustomClass
qualifiedClassName
bundleName
attributes
CustomAttribute
name
value
null
directAccess
false
multiStatementValue
false
FigureAccessor
accessor
typedFigure
Color
RGBColor
red
green
blue
ConstantColor
value
ColorConstants
white
white
black
black
lightGray
lightGray
gray
gray
darkGray
darkGray
red
red
orange
orange
yellow
yellow
green
green
lightGreen
lightGreen
darkGreen
darkGreen
cyan
cyan
lightBlue
lightBlue
blue
blue
darkBlue
darkBlue
Font
BasicFont
faceName
height
9
style
NORMAL
FontStyle
NORMAL
NORMAL
BOLD
BOLD
ITALIC
ITALIC
Point
x
y
Dimension
dx
dy
Insets
top
left
bottom
right
Border
LineBorder
color
width
1
MarginBorder
insets
CompoundBorder
outer
inner
CustomBorder
Direction
NONE
NONE
NORTH
NORTH
SOUTH
SOUTH
WEST
WEST
EAST
EAST
NORTH_EAST
NORTH_EAST
NORTH_WEST
NORTH_WEST
SOUTH_EAST
SOUTH_EAST
SOUTH_WEST
SOUTH_WEST
NORTH_SOUTH
NORTH_SOUTH
EAST_WEST
EAST_WEST
NSEW
NSEW
LineKind
LINE_SOLID
LINE_SOLID
LINE_DASH
LINE_DASH
LINE_DOT
LINE_DOT
LINE_DASHDOT
LINE_DASHDOT
LINE_DASHDOTDOT
LINE_DASHDOTDOT
LINE_CUSTOM
LINE_CUSTOM
LayoutData
owner
CustomLayoutData
GridLayoutData
grabExcessHorizontalSpace
false
grabExcessVerticalSpace
false
verticalSpan
1
horizontalSpan
1
horizontalIndent
sizeHint
verticalAlignment
CENTER
horizontalAlignment
CENTER
BorderLayoutData
vertical
false
alignment
CENTER
Alignment
BEGINNING
BEGINNING
CENTER
CENTER
END
END
FILL
FILL
Layoutable
layoutData
layout
FigureMarker
parent
Figure
children
foregroundColor
backgroundColor
maximumSize
minimumSize
preferredSize
font
insets
border
location
size
FigureRef
figure
ConnectionFigure
DecorationFigure
Shape
outline
true
fill
true
lineWidth
1
lineKind
xorFill
xorOutline
resolvedChildren
Label
text
LabeledContainer
Rectangle
RoundedRectangle
cornerWidth
8
cornerHeight
8
Ellipse
Polyline
template
Polygon
PolylineConnection
sourceDecoration
targetDecoration
PolylineDecoration
PolygonDecoration
CustomFigure
customChildren
CustomDecoration
CustomConnection
Layout
CustomLayout
GridLayout
numColumns
1
equalWidth
true
margins
spacing
BorderLayout
spacing
FlowLayout
vertical
false
matchMinorSize
false
forceSingleLine
false
majorAlignment
BEGINNING
minorAlignment
BEGINNING
majorSpacing
5
minorSpacing
5
XYLayout
XYLayoutData
topLeft
size
StackLayout | null | {"directed":true,"nodes":[{"nsPrefix":"gmfgraph","nsURI":"http://www.eclipse.org/gmf/2005/GraphicalDefinition","name":"gmfgraph","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Identity","instanceClass":null,"abstract":false,"id":1,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Canvas","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FigureGallery","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DiagramElement","instanceClass":null,"abstract":true,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Node","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Connection","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Compartment","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DiagramLabel","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"VisualFacet","instanceClass":null,"abstract":false,"id":9,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"GeneralFacet","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AlignmentFacet","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"GradientFacet","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LabelOffsetFacet","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FigureHandle","instanceClass":null,"abstract":false,"id":14,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CustomClass","instanceClass":null,"abstract":false,"id":15,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CustomAttribute","instanceClass":null,"abstract":false,"id":16,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FigureAccessor","instanceClass":null,"abstract":false,"id":17,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Color","instanceClass":null,"abstract":false,"id":18,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RGBColor","instanceClass":null,"abstract":false,"id":19,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ConstantColor","instanceClass":null,"abstract":false,"id":20,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"ColorConstants","instanceClass":null,"id":21,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Font","instanceClass":null,"abstract":false,"id":22,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BasicFont","instanceClass":null,"abstract":false,"id":23,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"FontStyle","instanceClass":null,"id":24,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Point","instanceClass":null,"abstract":false,"id":25,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Dimension","instanceClass":null,"abstract":false,"id":26,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Insets","instanceClass":null,"abstract":false,"id":27,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Border","instanceClass":null,"abstract":false,"id":28,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LineBorder","instanceClass":null,"abstract":false,"id":29,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MarginBorder","instanceClass":null,"abstract":false,"id":30,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CompoundBorder","instanceClass":null,"abstract":false,"id":31,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CustomBorder","instanceClass":null,"abstract":false,"id":32,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"Direction","instanceClass":null,"id":33,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"LineKind","instanceClass":null,"id":34,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LayoutData","instanceClass":null,"abstract":false,"id":35,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CustomLayoutData","instanceClass":null,"abstract":false,"id":36,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"GridLayoutData","instanceClass":null,"abstract":false,"id":37,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BorderLayoutData","instanceClass":null,"abstract":false,"id":38,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"Alignment","instanceClass":null,"id":39,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Layoutable","instanceClass":null,"abstract":false,"id":40,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FigureMarker","instanceClass":null,"abstract":false,"id":41,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Figure","instanceClass":null,"abstract":false,"id":42,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FigureRef","instanceClass":null,"abstract":false,"id":43,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ConnectionFigure","instanceClass":null,"abstract":false,"id":44,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DecorationFigure","instanceClass":null,"abstract":false,"id":45,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Shape","instanceClass":null,"abstract":true,"id":46,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Label","instanceClass":null,"abstract":false,"id":47,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LabeledContainer","instanceClass":null,"abstract":false,"id":48,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Rectangle","instanceClass":null,"abstract":false,"id":49,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RoundedRectangle","instanceClass":null,"abstract":false,"id":50,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Ellipse","instanceClass":null,"abstract":false,"id":51,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Polyline","instanceClass":null,"abstract":false,"id":52,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Polygon","instanceClass":null,"abstract":false,"id":53,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PolylineConnection","instanceClass":null,"abstract":false,"id":54,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PolylineDecoration","instanceClass":null,"abstract":false,"id":55,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PolygonDecoration","instanceClass":null,"abstract":false,"id":56,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CustomFigure","instanceClass":null,"abstract":false,"id":57,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CustomDecoration","instanceClass":null,"abstract":false,"id":58,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CustomConnection","instanceClass":null,"abstract":false,"id":59,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Layout","instanceClass":null,"abstract":false,"id":60,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CustomLayout","instanceClass":null,"abstract":false,"id":61,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"GridLayout","instanceClass":null,"abstract":false,"id":62,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BorderLayout","instanceClass":null,"abstract":false,"id":63,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FlowLayout","instanceClass":null,"abstract":false,"id":64,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"XYLayout","instanceClass":null,"abstract":false,"id":65,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"XYLayoutData","instanceClass":null,"abstract":false,"id":66,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StackLayout","instanceClass":null,"abstract":false,"id":67,"interface":false,"eClass":"EClass"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":1,"iD":true,"id":68,"derived":false},{"id":69,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"figures","changeable":true,"resolveProxies":true,"lowerBound":0,"id":70,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"nodes","changeable":true,"resolveProxies":true,"lowerBound":0,"id":71,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"connections","changeable":true,"resolveProxies":true,"lowerBound":0,"id":72,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"compartments","changeable":true,"resolveProxies":true,"lowerBound":0,"id":73,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"labels","changeable":true,"resolveProxies":true,"lowerBound":0,"id":74,"derived":false},{"id":75,"eClass":"EGenericType"},{"id":76,"eClass":"EGenericType"},{"id":77,"eClass":"EGenericType"},{"id":78,"eClass":"EGenericType"},{"id":79,"eClass":"EGenericType"},{"id":80,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"implementationBundle","changeable":true,"lowerBound":0,"iD":false,"id":81,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"figures","changeable":true,"resolveProxies":true,"lowerBound":0,"id":82,"derived":false},{"id":83,"eClass":"EGenericType"},{"id":84,"eClass":"EGenericType"},{"id":85,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"find","lowerBound":0,"id":86,"many":false,"required":false,"eClass":"EOperation"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"facets","changeable":true,"resolveProxies":true,"lowerBound":0,"id":87,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"figure","changeable":true,"resolveProxies":true,"lowerBound":1,"id":88,"derived":false},{"id":89,"eClass":"EGenericType"},{"id":90,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"facetClass","lowerBound":0,"id":91,"many":false,"required":false,"eClass":"EParameter"},{"id":92,"eClass":"EGenericType"},{"id":93,"eClass":"EGenericType"},{"id":94,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"referencingElements","changeable":true,"resolveProxies":true,"lowerBound":0,"id":95,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"NSEW","unsettable":false,"transient":false,"unique":true,"name":"resizeConstraint","changeable":true,"lowerBound":0,"iD":false,"id":96,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":true,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"nodeFigure","changeable":false,"resolveProxies":false,"lowerBound":1,"id":97,"derived":true},{"id":98,"eClass":"EGenericType"},{"id":99,"eClass":"EGenericType"},{"id":100,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":true,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"connectionFigure","changeable":false,"resolveProxies":false,"lowerBound":1,"id":101,"derived":true},{"id":102,"eClass":"EGenericType"},{"id":103,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"collapsible","changeable":true,"lowerBound":0,"iD":false,"id":104,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"needsTitle","changeable":true,"lowerBound":0,"iD":false,"id":105,"derived":false},{"id":106,"eClass":"EGenericType"},{"id":107,"eClass":"EGenericType"},{"id":108,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":true,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"true","unsettable":false,"transient":false,"unique":true,"name":"elementIcon","changeable":true,"lowerBound":0,"iD":false,"id":109,"derived":false},{"id":110,"eClass":"EGenericType"},{"id":111,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"identifier","changeable":true,"lowerBound":0,"iD":true,"id":112,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"data","changeable":true,"lowerBound":0,"iD":false,"id":113,"derived":false},{"id":114,"eClass":"EGenericType"},{"id":115,"eClass":"EGenericType"},{"id":116,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"alignment","changeable":true,"lowerBound":0,"iD":false,"id":117,"derived":false},{"id":118,"eClass":"EGenericType"},{"id":119,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"direction","changeable":true,"lowerBound":0,"iD":false,"id":120,"derived":false},{"id":121,"eClass":"EGenericType"},{"id":122,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"x","changeable":true,"lowerBound":0,"iD":false,"id":123,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"y","changeable":true,"lowerBound":0,"iD":false,"id":124,"derived":false},{"id":125,"eClass":"EGenericType"},{"id":126,"eClass":"EGenericType"},{"id":127,"eClass":"EGenericType"},{"id":128,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"qualifiedClassName","changeable":true,"lowerBound":0,"iD":false,"id":129,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"bundleName","changeable":true,"lowerBound":0,"iD":false,"id":130,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"attributes","changeable":true,"resolveProxies":true,"lowerBound":0,"id":131,"derived":false},{"id":132,"eClass":"EGenericType"},{"id":133,"eClass":"EGenericType"},{"id":134,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":135,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":"null","volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"null","unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":1,"iD":false,"id":136,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"false","unsettable":false,"transient":false,"unique":true,"name":"directAccess","changeable":true,"lowerBound":1,"iD":false,"id":137,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"false","unsettable":false,"transient":false,"unique":true,"name":"multiStatementValue","changeable":true,"lowerBound":1,"iD":false,"id":138,"derived":false},{"id":139,"eClass":"EGenericType"},{"id":140,"eClass":"EGenericType"},{"id":141,"eClass":"EGenericType"},{"id":142,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"accessor","changeable":true,"lowerBound":1,"iD":false,"id":143,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"typedFigure","changeable":true,"resolveProxies":true,"lowerBound":0,"id":144,"derived":false},{"id":145,"eClass":"EGenericType"},{"id":146,"eClass":"EGenericType"},{"id":147,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"red","changeable":true,"lowerBound":1,"iD":false,"id":148,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"green","changeable":true,"lowerBound":1,"iD":false,"id":149,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"blue","changeable":true,"lowerBound":1,"iD":false,"id":150,"derived":false},{"id":151,"eClass":"EGenericType"},{"id":152,"eClass":"EGenericType"},{"id":153,"eClass":"EGenericType"},{"id":154,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":1,"iD":false,"id":155,"derived":false},{"id":156,"eClass":"EGenericType"},{"id":157,"eClass":"EGenericType"},{"name":"white","id":158,"value":0,"literal":"white","eClass":"EEnumLiteral"},{"name":"black","id":159,"value":1,"literal":"black","eClass":"EEnumLiteral"},{"name":"lightGray","id":160,"value":2,"literal":"lightGray","eClass":"EEnumLiteral"},{"name":"gray","id":161,"value":3,"literal":"gray","eClass":"EEnumLiteral"},{"name":"darkGray","id":162,"value":4,"literal":"darkGray","eClass":"EEnumLiteral"},{"name":"red","id":163,"value":5,"literal":"red","eClass":"EEnumLiteral"},{"name":"orange","id":164,"value":6,"literal":"orange","eClass":"EEnumLiteral"},{"name":"yellow","id":165,"value":7,"literal":"yellow","eClass":"EEnumLiteral"},{"name":"green","id":166,"value":8,"literal":"green","eClass":"EEnumLiteral"},{"name":"lightGreen","id":167,"value":9,"literal":"lightGreen","eClass":"EEnumLiteral"},{"name":"darkGreen","id":168,"value":10,"literal":"darkGreen","eClass":"EEnumLiteral"},{"name":"cyan","id":169,"value":11,"literal":"cyan","eClass":"EEnumLiteral"},{"name":"lightBlue","id":170,"value":12,"literal":"lightBlue","eClass":"EEnumLiteral"},{"name":"blue","id":171,"value":13,"literal":"blue","eClass":"EEnumLiteral"},{"name":"darkBlue","id":172,"value":14,"literal":"darkBlue","eClass":"EEnumLiteral"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"faceName","changeable":true,"lowerBound":0,"iD":false,"id":173,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":9,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"9","unsettable":false,"transient":false,"unique":true,"name":"height","changeable":true,"lowerBound":0,"iD":false,"id":174,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"NORMAL","unsettable":false,"transient":false,"unique":true,"name":"style","changeable":true,"lowerBound":0,"iD":false,"id":175,"derived":false},{"id":176,"eClass":"EGenericType"},{"id":177,"eClass":"EGenericType"},{"id":178,"eClass":"EGenericType"},{"id":179,"eClass":"EGenericType"},{"name":"NORMAL","id":180,"value":0,"literal":"NORMAL","eClass":"EEnumLiteral"},{"name":"BOLD","id":181,"value":1,"literal":"BOLD","eClass":"EEnumLiteral"},{"name":"ITALIC","id":182,"value":2,"literal":"ITALIC","eClass":"EEnumLiteral"},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"x","changeable":true,"lowerBound":0,"iD":false,"id":183,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"y","changeable":true,"lowerBound":0,"iD":false,"id":184,"derived":false},{"id":185,"eClass":"EGenericType"},{"id":186,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"dx","changeable":true,"lowerBound":0,"iD":false,"id":187,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"dy","changeable":true,"lowerBound":0,"iD":false,"id":188,"derived":false},{"id":189,"eClass":"EGenericType"},{"id":190,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"top","changeable":true,"lowerBound":0,"iD":false,"id":191,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"left","changeable":true,"lowerBound":0,"iD":false,"id":192,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"bottom","changeable":true,"lowerBound":0,"iD":false,"id":193,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"right","changeable":true,"lowerBound":0,"iD":false,"id":194,"derived":false},{"id":195,"eClass":"EGenericType"},{"id":196,"eClass":"EGenericType"},{"id":197,"eClass":"EGenericType"},{"id":198,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"color","changeable":true,"resolveProxies":true,"lowerBound":0,"id":199,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"1","unsettable":false,"transient":false,"unique":true,"name":"width","changeable":true,"lowerBound":0,"iD":false,"id":200,"derived":false},{"id":201,"eClass":"EGenericType"},{"id":202,"eClass":"EGenericType"},{"id":203,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"insets","changeable":true,"resolveProxies":true,"lowerBound":0,"id":204,"derived":false},{"id":205,"eClass":"EGenericType"},{"id":206,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"outer","changeable":true,"resolveProxies":true,"lowerBound":0,"id":207,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"inner","changeable":true,"resolveProxies":true,"lowerBound":0,"id":208,"derived":false},{"id":209,"eClass":"EGenericType"},{"id":210,"eClass":"EGenericType"},{"id":211,"eClass":"EGenericType"},{"id":212,"eClass":"EGenericType"},{"id":213,"eClass":"EGenericType"},{"name":"NONE","id":214,"value":0,"literal":"NONE","eClass":"EEnumLiteral"},{"name":"NORTH","id":215,"value":1,"literal":"NORTH","eClass":"EEnumLiteral"},{"name":"SOUTH","id":216,"value":4,"literal":"SOUTH","eClass":"EEnumLiteral"},{"name":"WEST","id":217,"value":8,"literal":"WEST","eClass":"EEnumLiteral"},{"name":"EAST","id":218,"value":16,"literal":"EAST","eClass":"EEnumLiteral"},{"name":"NORTH_EAST","id":219,"value":17,"literal":"NORTH_EAST","eClass":"EEnumLiteral"},{"name":"NORTH_WEST","id":220,"value":9,"literal":"NORTH_WEST","eClass":"EEnumLiteral"},{"name":"SOUTH_EAST","id":221,"value":20,"literal":"SOUTH_EAST","eClass":"EEnumLiteral"},{"name":"SOUTH_WEST","id":222,"value":12,"literal":"SOUTH_WEST","eClass":"EEnumLiteral"},{"name":"NORTH_SOUTH","id":223,"value":5,"literal":"NORTH_SOUTH","eClass":"EEnumLiteral"},{"name":"EAST_WEST","id":224,"value":24,"literal":"EAST_WEST","eClass":"EEnumLiteral"},{"name":"NSEW","id":225,"value":29,"literal":"NSEW","eClass":"EEnumLiteral"},{"name":"LINE_SOLID","id":226,"value":1,"literal":"LINE_SOLID","eClass":"EEnumLiteral"},{"name":"LINE_DASH","id":227,"value":2,"literal":"LINE_DASH","eClass":"EEnumLiteral"},{"name":"LINE_DOT","id":228,"value":3,"literal":"LINE_DOT","eClass":"EEnumLiteral"},{"name":"LINE_DASHDOT","id":229,"value":4,"literal":"LINE_DASHDOT","eClass":"EEnumLiteral"},{"name":"LINE_DASHDOTDOT","id":230,"value":5,"literal":"LINE_DASHDOTDOT","eClass":"EEnumLiteral"},{"name":"LINE_CUSTOM","id":231,"value":6,"literal":"LINE_CUSTOM","eClass":"EEnumLiteral"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"owner","changeable":true,"resolveProxies":true,"lowerBound":1,"id":232,"derived":false},{"id":233,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"layoutData","changeable":true,"resolveProxies":true,"lowerBound":0,"id":234,"derived":false},{"id":235,"eClass":"EGenericType"},{"id":236,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"false","unsettable":false,"transient":false,"unique":true,"name":"grabExcessHorizontalSpace","changeable":true,"lowerBound":1,"iD":false,"id":237,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"false","unsettable":false,"transient":false,"unique":true,"name":"grabExcessVerticalSpace","changeable":true,"lowerBound":1,"iD":false,"id":238,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"1","unsettable":false,"transient":false,"unique":true,"name":"verticalSpan","changeable":true,"lowerBound":1,"iD":false,"id":239,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"1","unsettable":false,"transient":false,"unique":true,"name":"horizontalSpan","changeable":true,"lowerBound":1,"iD":false,"id":240,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"horizontalIndent","changeable":true,"lowerBound":1,"iD":false,"id":241,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"sizeHint","changeable":true,"resolveProxies":true,"lowerBound":0,"id":242,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"CENTER","unsettable":false,"transient":false,"unique":true,"name":"verticalAlignment","changeable":true,"lowerBound":1,"iD":false,"id":243,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"CENTER","unsettable":false,"transient":false,"unique":true,"name":"horizontalAlignment","changeable":true,"lowerBound":1,"iD":false,"id":244,"derived":false},{"id":245,"eClass":"EGenericType"},{"id":246,"eClass":"EGenericType"},{"id":247,"eClass":"EGenericType"},{"id":248,"eClass":"EGenericType"},{"id":249,"eClass":"EGenericType"},{"id":250,"eClass":"EGenericType"},{"id":251,"eClass":"EGenericType"},{"id":252,"eClass":"EGenericType"},{"id":253,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"false","unsettable":false,"transient":false,"unique":true,"name":"vertical","changeable":true,"lowerBound":0,"iD":false,"id":254,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"CENTER","unsettable":false,"transient":false,"unique":true,"name":"alignment","changeable":true,"lowerBound":1,"iD":false,"id":255,"derived":false},{"id":256,"eClass":"EGenericType"},{"id":257,"eClass":"EGenericType"},{"id":258,"eClass":"EGenericType"},{"name":"BEGINNING","id":259,"value":0,"literal":"BEGINNING","eClass":"EEnumLiteral"},{"name":"CENTER","id":260,"value":1,"literal":"CENTER","eClass":"EEnumLiteral"},{"name":"END","id":261,"value":2,"literal":"END","eClass":"EEnumLiteral"},{"name":"FILL","id":262,"value":3,"literal":"FILL","eClass":"EEnumLiteral"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"layout","changeable":true,"resolveProxies":true,"lowerBound":0,"id":263,"derived":false},{"id":264,"eClass":"EGenericType"},{"id":265,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"parent","changeable":false,"resolveProxies":false,"lowerBound":0,"id":266,"derived":false},{"id":267,"eClass":"EGenericType"},{"id":268,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"children","changeable":true,"resolveProxies":true,"lowerBound":0,"id":269,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"foregroundColor","changeable":true,"resolveProxies":true,"lowerBound":0,"id":270,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"backgroundColor","changeable":true,"resolveProxies":true,"lowerBound":0,"id":271,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"maximumSize","changeable":true,"resolveProxies":true,"lowerBound":0,"id":272,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"minimumSize","changeable":true,"resolveProxies":true,"lowerBound":0,"id":273,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"preferredSize","changeable":true,"resolveProxies":true,"lowerBound":0,"id":274,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"font","changeable":true,"resolveProxies":true,"lowerBound":0,"id":275,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"insets","changeable":true,"resolveProxies":true,"lowerBound":0,"id":276,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"border","changeable":true,"resolveProxies":true,"lowerBound":0,"id":277,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"location","changeable":true,"resolveProxies":true,"lowerBound":0,"id":278,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"size","changeable":true,"resolveProxies":true,"lowerBound":0,"id":279,"derived":false},{"id":280,"eClass":"EGenericType"},{"id":281,"eClass":"EGenericType"},{"id":282,"eClass":"EGenericType"},{"id":283,"eClass":"EGenericType"},{"id":284,"eClass":"EGenericType"},{"id":285,"eClass":"EGenericType"},{"id":286,"eClass":"EGenericType"},{"id":287,"eClass":"EGenericType"},{"id":288,"eClass":"EGenericType"},{"id":289,"eClass":"EGenericType"},{"id":290,"eClass":"EGenericType"},{"id":291,"eClass":"EGenericType"},{"id":292,"eClass":"EGenericType"},{"id":293,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"figure","changeable":true,"resolveProxies":true,"lowerBound":1,"id":294,"derived":false},{"id":295,"eClass":"EGenericType"},{"id":296,"eClass":"EGenericType"},{"id":297,"eClass":"EGenericType"},{"id":298,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":true,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"true","unsettable":false,"transient":false,"unique":true,"name":"outline","changeable":true,"lowerBound":0,"iD":false,"id":299,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":true,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"true","unsettable":false,"transient":false,"unique":true,"name":"fill","changeable":true,"lowerBound":0,"iD":false,"id":300,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"1","unsettable":false,"transient":false,"unique":true,"name":"lineWidth","changeable":true,"lowerBound":0,"iD":false,"id":301,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"lineKind","changeable":true,"lowerBound":0,"iD":false,"id":302,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"xorFill","changeable":true,"lowerBound":0,"iD":false,"id":303,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"xorOutline","changeable":true,"lowerBound":0,"iD":false,"id":304,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":true,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"resolvedChildren","changeable":false,"resolveProxies":true,"lowerBound":0,"id":305,"derived":true},{"id":306,"eClass":"EGenericType"},{"id":307,"eClass":"EGenericType"},{"id":308,"eClass":"EGenericType"},{"id":309,"eClass":"EGenericType"},{"id":310,"eClass":"EGenericType"},{"id":311,"eClass":"EGenericType"},{"id":312,"eClass":"EGenericType"},{"id":313,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"text","changeable":true,"lowerBound":0,"iD":false,"id":314,"derived":false},{"id":315,"eClass":"EGenericType"},{"id":316,"eClass":"EGenericType"},{"id":317,"eClass":"EGenericType"},{"id":318,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":8,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"8","unsettable":false,"transient":false,"unique":true,"name":"cornerWidth","changeable":true,"lowerBound":0,"iD":false,"id":319,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":8,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"8","unsettable":false,"transient":false,"unique":true,"name":"cornerHeight","changeable":true,"lowerBound":0,"iD":false,"id":320,"derived":false},{"id":321,"eClass":"EGenericType"},{"id":322,"eClass":"EGenericType"},{"id":323,"eClass":"EGenericType"},{"id":324,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"template","changeable":true,"resolveProxies":true,"lowerBound":0,"id":325,"derived":false},{"id":326,"eClass":"EGenericType"},{"id":327,"eClass":"EGenericType"},{"id":328,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"sourceDecoration","changeable":true,"resolveProxies":true,"lowerBound":0,"id":329,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"targetDecoration","changeable":true,"resolveProxies":true,"lowerBound":0,"id":330,"derived":false},{"id":331,"eClass":"EGenericType"},{"id":332,"eClass":"EGenericType"},{"id":333,"eClass":"EGenericType"},{"id":334,"eClass":"EGenericType"},{"id":335,"eClass":"EGenericType"},{"id":336,"eClass":"EGenericType"},{"id":337,"eClass":"EGenericType"},{"id":338,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"customChildren","changeable":true,"resolveProxies":true,"lowerBound":0,"id":339,"derived":false},{"id":340,"eClass":"EGenericType"},{"id":341,"eClass":"EGenericType"},{"id":342,"eClass":"EGenericType"},{"id":343,"eClass":"EGenericType"},{"id":344,"eClass":"EGenericType"},{"id":345,"eClass":"EGenericType"},{"id":346,"eClass":"EGenericType"},{"id":347,"eClass":"EGenericType"},{"id":348,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"1","unsettable":false,"transient":false,"unique":true,"name":"numColumns","changeable":true,"lowerBound":1,"iD":false,"id":349,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":true,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"true","unsettable":false,"transient":false,"unique":true,"name":"equalWidth","changeable":true,"lowerBound":1,"iD":false,"id":350,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"margins","changeable":true,"resolveProxies":true,"lowerBound":0,"id":351,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"spacing","changeable":true,"resolveProxies":true,"lowerBound":0,"id":352,"derived":false},{"id":353,"eClass":"EGenericType"},{"id":354,"eClass":"EGenericType"},{"id":355,"eClass":"EGenericType"},{"id":356,"eClass":"EGenericType"},{"id":357,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"spacing","changeable":true,"resolveProxies":true,"lowerBound":0,"id":358,"derived":false},{"id":359,"eClass":"EGenericType"},{"id":360,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"false","unsettable":false,"transient":false,"unique":true,"name":"vertical","changeable":true,"lowerBound":0,"iD":false,"id":361,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"false","unsettable":false,"transient":false,"unique":true,"name":"matchMinorSize","changeable":true,"lowerBound":0,"iD":false,"id":362,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"false","unsettable":false,"transient":false,"unique":true,"name":"forceSingleLine","changeable":true,"lowerBound":0,"iD":false,"id":363,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"BEGINNING","unsettable":false,"transient":false,"unique":true,"name":"majorAlignment","changeable":true,"lowerBound":0,"iD":false,"id":364,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"BEGINNING","unsettable":false,"transient":false,"unique":true,"name":"minorAlignment","changeable":true,"lowerBound":0,"iD":false,"id":365,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":5,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"5","unsettable":false,"transient":false,"unique":true,"name":"majorSpacing","changeable":true,"lowerBound":0,"iD":false,"id":366,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":5,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"5","unsettable":false,"transient":false,"unique":true,"name":"minorSpacing","changeable":true,"lowerBound":0,"iD":false,"id":367,"derived":false},{"id":368,"eClass":"EGenericType"},{"id":369,"eClass":"EGenericType"},{"id":370,"eClass":"EGenericType"},{"id":371,"eClass":"EGenericType"},{"id":372,"eClass":"EGenericType"},{"id":373,"eClass":"EGenericType"},{"id":374,"eClass":"EGenericType"},{"id":375,"eClass":"EGenericType"},{"id":376,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"topLeft","changeable":true,"resolveProxies":true,"lowerBound":1,"id":377,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"size","changeable":true,"resolveProxies":true,"lowerBound":1,"id":378,"derived":false},{"id":379,"eClass":"EGenericType"},{"id":380,"eClass":"EGenericType"},{"id":381,"eClass":"EGenericType"},{"id":382,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":0,"target":8},{"source":0,"target":9},{"source":0,"target":10},{"source":0,"target":11},{"source":0,"target":12},{"source":0,"target":13},{"source":0,"target":14},{"source":0,"target":15},{"source":0,"target":16},{"source":0,"target":17},{"source":0,"target":18},{"source":0,"target":19},{"source":0,"target":20},{"source":0,"target":21},{"source":0,"target":22},{"source":0,"target":23},{"source":0,"target":24},{"source":0,"target":25},{"source":0,"target":26},{"source":0,"target":27},{"source":0,"target":28},{"source":0,"target":29},{"source":0,"target":30},{"source":0,"target":31},{"source":0,"target":32},{"source":0,"target":33},{"source":0,"target":34},{"source":0,"target":35},{"source":0,"target":36},{"source":0,"target":37},{"source":0,"target":38},{"source":0,"target":39},{"source":0,"target":40},{"source":0,"target":41},{"source":0,"target":42},{"source":0,"target":43},{"source":0,"target":44},{"source":0,"target":45},{"source":0,"target":46},{"source":0,"target":47},{"source":0,"target":48},{"source":0,"target":49},{"source":0,"target":50},{"source":0,"target":51},{"source":0,"target":52},{"source":0,"target":53},{"source":0,"target":54},{"source":0,"target":55},{"source":0,"target":56},{"source":0,"target":57},{"source":0,"target":58},{"source":0,"target":59},{"source":0,"target":60},{"source":0,"target":61},{"source":0,"target":62},{"source":0,"target":63},{"source":0,"target":64},{"source":0,"target":65},{"source":0,"target":66},{"source":0,"target":67},{"source":1,"target":0},{"source":1,"target":68},{"source":68,"target":69},{"source":68,"target":1},{"source":2,"target":0},{"source":2,"target":1},{"source":2,"target":70},{"source":2,"target":71},{"source":2,"target":72},{"source":2,"target":73},{"source":2,"target":74},{"source":2,"target":75},{"source":70,"target":3},{"source":70,"target":76},{"source":70,"target":2},{"source":76,"target":3},{"source":71,"target":5},{"source":71,"target":77},{"source":71,"target":2},{"source":77,"target":5},{"source":72,"target":6},{"source":72,"target":78},{"source":72,"target":2},{"source":78,"target":6},{"source":73,"target":7},{"source":73,"target":79},{"source":73,"target":2},{"source":79,"target":7},{"source":74,"target":8},{"source":74,"target":80},{"source":74,"target":2},{"source":80,"target":8},{"source":75,"target":1},{"source":3,"target":0},{"source":3,"target":1},{"source":3,"target":81},{"source":3,"target":82},{"source":3,"target":83},{"source":81,"target":84},{"source":81,"target":3},{"source":82,"target":42},{"source":82,"target":85},{"source":82,"target":3},{"source":85,"target":42},{"source":83,"target":1},{"source":4,"target":0},{"source":4,"target":1},{"source":4,"target":86},{"source":4,"target":87},{"source":4,"target":88},{"source":4,"target":89},{"source":86,"target":9},{"source":86,"target":90},{"source":86,"target":4},{"source":86,"target":91},{"source":90,"target":9},{"source":91,"target":92},{"source":91,"target":86},{"source":87,"target":9},{"source":87,"target":93},{"source":87,"target":4},{"source":93,"target":9},{"source":88,"target":14},{"source":88,"target":94},{"source":88,"target":4},{"source":88,"target":95},{"source":94,"target":14},{"source":89,"target":1},{"source":5,"target":0},{"source":5,"target":4},{"source":5,"target":96},{"source":5,"target":97},{"source":5,"target":98},{"source":96,"target":33},{"source":96,"target":99},{"source":96,"target":5},{"source":99,"target":33},{"source":97,"target":42},{"source":97,"target":100},{"source":97,"target":5},{"source":100,"target":42},{"source":98,"target":4},{"source":6,"target":0},{"source":6,"target":4},{"source":6,"target":101},{"source":6,"target":102},{"source":101,"target":42},{"source":101,"target":103},{"source":101,"target":6},{"source":103,"target":42},{"source":102,"target":4},{"source":7,"target":0},{"source":7,"target":4},{"source":7,"target":104},{"source":7,"target":105},{"source":7,"target":106},{"source":104,"target":107},{"source":104,"target":7},{"source":105,"target":108},{"source":105,"target":7},{"source":106,"target":4},{"source":8,"target":0},{"source":8,"target":5},{"source":8,"target":109},{"source":8,"target":110},{"source":109,"target":111},{"source":109,"target":8},{"source":110,"target":5},{"source":9,"target":0},{"source":10,"target":0},{"source":10,"target":9},{"source":10,"target":112},{"source":10,"target":113},{"source":10,"target":114},{"source":112,"target":115},{"source":112,"target":10},{"source":113,"target":116},{"source":113,"target":10},{"source":114,"target":9},{"source":11,"target":0},{"source":11,"target":9},{"source":11,"target":117},{"source":11,"target":118},{"source":117,"target":39},{"source":117,"target":119},{"source":117,"target":11},{"source":119,"target":39},{"source":118,"target":9},{"source":12,"target":0},{"source":12,"target":9},{"source":12,"target":120},{"source":12,"target":121},{"source":120,"target":33},{"source":120,"target":122},{"source":120,"target":12},{"source":122,"target":33},{"source":121,"target":9},{"source":13,"target":0},{"source":13,"target":9},{"source":13,"target":123},{"source":13,"target":124},{"source":13,"target":125},{"source":123,"target":126},{"source":123,"target":13},{"source":124,"target":127},{"source":124,"target":13},{"source":125,"target":9},{"source":14,"target":0},{"source":14,"target":95},{"source":95,"target":4},{"source":95,"target":128},{"source":95,"target":14},{"source":95,"target":88},{"source":128,"target":4},{"source":15,"target":0},{"source":15,"target":129},{"source":15,"target":130},{"source":15,"target":131},{"source":129,"target":132},{"source":129,"target":15},{"source":130,"target":133},{"source":130,"target":15},{"source":131,"target":16},{"source":131,"target":134},{"source":131,"target":15},{"source":134,"target":16},{"source":16,"target":0},{"source":16,"target":135},{"source":16,"target":136},{"source":16,"target":137},{"source":16,"target":138},{"source":135,"target":139},{"source":135,"target":16},{"source":136,"target":140},{"source":136,"target":16},{"source":137,"target":141},{"source":137,"target":16},{"source":138,"target":142},{"source":138,"target":16},{"source":17,"target":0},{"source":17,"target":14},{"source":17,"target":143},{"source":17,"target":144},{"source":17,"target":145},{"source":143,"target":146},{"source":143,"target":17},{"source":144,"target":57},{"source":144,"target":147},{"source":144,"target":17},{"source":147,"target":57},{"source":145,"target":14},{"source":18,"target":0},{"source":19,"target":0},{"source":19,"target":18},{"source":19,"target":148},{"source":19,"target":149},{"source":19,"target":150},{"source":19,"target":151},{"source":148,"target":152},{"source":148,"target":19},{"source":149,"target":153},{"source":149,"target":19},{"source":150,"target":154},{"source":150,"target":19},{"source":151,"target":18},{"source":20,"target":0},{"source":20,"target":18},{"source":20,"target":155},{"source":20,"target":156},{"source":155,"target":21},{"source":155,"target":157},{"source":155,"target":20},{"source":157,"target":21},{"source":156,"target":18},{"source":21,"target":0},{"source":21,"target":158},{"source":21,"target":159},{"source":21,"target":160},{"source":21,"target":161},{"source":21,"target":162},{"source":21,"target":163},{"source":21,"target":164},{"source":21,"target":165},{"source":21,"target":166},{"source":21,"target":167},{"source":21,"target":168},{"source":21,"target":169},{"source":21,"target":170},{"source":21,"target":171},{"source":21,"target":172},{"source":158,"target":21},{"source":159,"target":21},{"source":160,"target":21},{"source":161,"target":21},{"source":162,"target":21},{"source":163,"target":21},{"source":164,"target":21},{"source":165,"target":21},{"source":166,"target":21},{"source":167,"target":21},{"source":168,"target":21},{"source":169,"target":21},{"source":170,"target":21},{"source":171,"target":21},{"source":172,"target":21},{"source":22,"target":0},{"source":23,"target":0},{"source":23,"target":22},{"source":23,"target":173},{"source":23,"target":174},{"source":23,"target":175},{"source":23,"target":176},{"source":173,"target":177},{"source":173,"target":23},{"source":174,"target":178},{"source":174,"target":23},{"source":175,"target":24},{"source":175,"target":179},{"source":175,"target":23},{"source":179,"target":24},{"source":176,"target":22},{"source":24,"target":0},{"source":24,"target":180},{"source":24,"target":181},{"source":24,"target":182},{"source":180,"target":24},{"source":181,"target":24},{"source":182,"target":24},{"source":25,"target":0},{"source":25,"target":183},{"source":25,"target":184},{"source":183,"target":185},{"source":183,"target":25},{"source":184,"target":186},{"source":184,"target":25},{"source":26,"target":0},{"source":26,"target":187},{"source":26,"target":188},{"source":187,"target":189},{"source":187,"target":26},{"source":188,"target":190},{"source":188,"target":26},{"source":27,"target":0},{"source":27,"target":191},{"source":27,"target":192},{"source":27,"target":193},{"source":27,"target":194},{"source":191,"target":195},{"source":191,"target":27},{"source":192,"target":196},{"source":192,"target":27},{"source":193,"target":197},{"source":193,"target":27},{"source":194,"target":198},{"source":194,"target":27},{"source":28,"target":0},{"source":29,"target":0},{"source":29,"target":28},{"source":29,"target":199},{"source":29,"target":200},{"source":29,"target":201},{"source":199,"target":18},{"source":199,"target":202},{"source":199,"target":29},{"source":202,"target":18},{"source":200,"target":203},{"source":200,"target":29},{"source":201,"target":28},{"source":30,"target":0},{"source":30,"target":28},{"source":30,"target":204},{"source":30,"target":205},{"source":204,"target":27},{"source":204,"target":206},{"source":204,"target":30},{"source":206,"target":27},{"source":205,"target":28},{"source":31,"target":0},{"source":31,"target":28},{"source":31,"target":207},{"source":31,"target":208},{"source":31,"target":209},{"source":207,"target":28},{"source":207,"target":210},{"source":207,"target":31},{"source":210,"target":28},{"source":208,"target":28},{"source":208,"target":211},{"source":208,"target":31},{"source":211,"target":28},{"source":209,"target":28},{"source":32,"target":0},{"source":32,"target":28},{"source":32,"target":15},{"source":32,"target":212},{"source":32,"target":213},{"source":212,"target":28},{"source":213,"target":15},{"source":33,"target":0},{"source":33,"target":214},{"source":33,"target":215},{"source":33,"target":216},{"source":33,"target":217},{"source":33,"target":218},{"source":33,"target":219},{"source":33,"target":220},{"source":33,"target":221},{"source":33,"target":222},{"source":33,"target":223},{"source":33,"target":224},{"source":33,"target":225},{"source":214,"target":33},{"source":215,"target":33},{"source":216,"target":33},{"source":217,"target":33},{"source":218,"target":33},{"source":219,"target":33},{"source":220,"target":33},{"source":221,"target":33},{"source":222,"target":33},{"source":223,"target":33},{"source":224,"target":33},{"source":225,"target":33},{"source":34,"target":0},{"source":34,"target":226},{"source":34,"target":227},{"source":34,"target":228},{"source":34,"target":229},{"source":34,"target":230},{"source":34,"target":231},{"source":226,"target":34},{"source":227,"target":34},{"source":228,"target":34},{"source":229,"target":34},{"source":230,"target":34},{"source":231,"target":34},{"source":35,"target":0},{"source":35,"target":232},{"source":232,"target":40},{"source":232,"target":233},{"source":232,"target":35},{"source":232,"target":234},{"source":233,"target":40},{"source":36,"target":0},{"source":36,"target":35},{"source":36,"target":15},{"source":36,"target":235},{"source":36,"target":236},{"source":235,"target":35},{"source":236,"target":15},{"source":37,"target":0},{"source":37,"target":35},{"source":37,"target":237},{"source":37,"target":238},{"source":37,"target":239},{"source":37,"target":240},{"source":37,"target":241},{"source":37,"target":242},{"source":37,"target":243},{"source":37,"target":244},{"source":37,"target":245},{"source":237,"target":246},{"source":237,"target":37},{"source":238,"target":247},{"source":238,"target":37},{"source":239,"target":248},{"source":239,"target":37},{"source":240,"target":249},{"source":240,"target":37},{"source":241,"target":250},{"source":241,"target":37},{"source":242,"target":26},{"source":242,"target":251},{"source":242,"target":37},{"source":251,"target":26},{"source":243,"target":39},{"source":243,"target":252},{"source":243,"target":37},{"source":252,"target":39},{"source":244,"target":39},{"source":244,"target":253},{"source":244,"target":37},{"source":253,"target":39},{"source":245,"target":35},{"source":38,"target":0},{"source":38,"target":35},{"source":38,"target":254},{"source":38,"target":255},{"source":38,"target":256},{"source":254,"target":257},{"source":254,"target":38},{"source":255,"target":39},{"source":255,"target":258},{"source":255,"target":38},{"source":258,"target":39},{"source":256,"target":35},{"source":39,"target":0},{"source":39,"target":259},{"source":39,"target":260},{"source":39,"target":261},{"source":39,"target":262},{"source":259,"target":39},{"source":260,"target":39},{"source":261,"target":39},{"source":262,"target":39},{"source":40,"target":0},{"source":40,"target":234},{"source":40,"target":263},{"source":234,"target":35},{"source":234,"target":264},{"source":234,"target":40},{"source":234,"target":232},{"source":264,"target":35},{"source":263,"target":60},{"source":263,"target":265},{"source":263,"target":40},{"source":265,"target":60},{"source":41,"target":0},{"source":41,"target":40},{"source":41,"target":266},{"source":41,"target":267},{"source":266,"target":42},{"source":266,"target":268},{"source":266,"target":41},{"source":266,"target":269},{"source":268,"target":42},{"source":267,"target":40},{"source":42,"target":0},{"source":42,"target":41},{"source":42,"target":14},{"source":42,"target":1},{"source":42,"target":269},{"source":42,"target":270},{"source":42,"target":271},{"source":42,"target":272},{"source":42,"target":273},{"source":42,"target":274},{"source":42,"target":275},{"source":42,"target":276},{"source":42,"target":277},{"source":42,"target":278},{"source":42,"target":279},{"source":42,"target":280},{"source":42,"target":281},{"source":42,"target":282},{"source":269,"target":41},{"source":269,"target":283},{"source":269,"target":42},{"source":269,"target":266},{"source":283,"target":41},{"source":270,"target":18},{"source":270,"target":284},{"source":270,"target":42},{"source":284,"target":18},{"source":271,"target":18},{"source":271,"target":285},{"source":271,"target":42},{"source":285,"target":18},{"source":272,"target":26},{"source":272,"target":286},{"source":272,"target":42},{"source":286,"target":26},{"source":273,"target":26},{"source":273,"target":287},{"source":273,"target":42},{"source":287,"target":26},{"source":274,"target":26},{"source":274,"target":288},{"source":274,"target":42},{"source":288,"target":26},{"source":275,"target":22},{"source":275,"target":289},{"source":275,"target":42},{"source":289,"target":22},{"source":276,"target":27},{"source":276,"target":290},{"source":276,"target":42},{"source":290,"target":27},{"source":277,"target":28},{"source":277,"target":291},{"source":277,"target":42},{"source":291,"target":28},{"source":278,"target":25},{"source":278,"target":292},{"source":278,"target":42},{"source":292,"target":25},{"source":279,"target":25},{"source":279,"target":293},{"source":279,"target":42},{"source":293,"target":25},{"source":280,"target":41},{"source":281,"target":14},{"source":282,"target":1},{"source":43,"target":0},{"source":43,"target":41},{"source":43,"target":294},{"source":43,"target":295},{"source":294,"target":42},{"source":294,"target":296},{"source":294,"target":43},{"source":296,"target":42},{"source":295,"target":41},{"source":44,"target":0},{"source":44,"target":42},{"source":44,"target":297},{"source":297,"target":42},{"source":45,"target":0},{"source":45,"target":42},{"source":45,"target":298},{"source":298,"target":42},{"source":46,"target":0},{"source":46,"target":42},{"source":46,"target":299},{"source":46,"target":300},{"source":46,"target":301},{"source":46,"target":302},{"source":46,"target":303},{"source":46,"target":304},{"source":46,"target":305},{"source":46,"target":306},{"source":299,"target":307},{"source":299,"target":46},{"source":300,"target":308},{"source":300,"target":46},{"source":301,"target":309},{"source":301,"target":46},{"source":302,"target":34},{"source":302,"target":310},{"source":302,"target":46},{"source":310,"target":34},{"source":303,"target":311},{"source":303,"target":46},{"source":304,"target":312},{"source":304,"target":46},{"source":305,"target":42},{"source":305,"target":313},{"source":305,"target":46},{"source":313,"target":42},{"source":306,"target":42},{"source":47,"target":0},{"source":47,"target":42},{"source":47,"target":314},{"source":47,"target":315},{"source":314,"target":316},{"source":314,"target":47},{"source":315,"target":42},{"source":48,"target":0},{"source":48,"target":42},{"source":48,"target":317},{"source":317,"target":42},{"source":49,"target":0},{"source":49,"target":46},{"source":49,"target":318},{"source":318,"target":46},{"source":50,"target":0},{"source":50,"target":46},{"source":50,"target":319},{"source":50,"target":320},{"source":50,"target":321},{"source":319,"target":322},{"source":319,"target":50},{"source":320,"target":323},{"source":320,"target":50},{"source":321,"target":46},{"source":51,"target":0},{"source":51,"target":46},{"source":51,"target":324},{"source":324,"target":46},{"source":52,"target":0},{"source":52,"target":46},{"source":52,"target":325},{"source":52,"target":326},{"source":325,"target":25},{"source":325,"target":327},{"source":325,"target":52},{"source":327,"target":25},{"source":326,"target":46},{"source":53,"target":0},{"source":53,"target":52},{"source":53,"target":328},{"source":328,"target":52},{"source":54,"target":0},{"source":54,"target":52},{"source":54,"target":44},{"source":54,"target":329},{"source":54,"target":330},{"source":54,"target":331},{"source":54,"target":332},{"source":329,"target":45},{"source":329,"target":333},{"source":329,"target":54},{"source":333,"target":45},{"source":330,"target":45},{"source":330,"target":334},{"source":330,"target":54},{"source":334,"target":45},{"source":331,"target":52},{"source":332,"target":44},{"source":55,"target":0},{"source":55,"target":52},{"source":55,"target":45},{"source":55,"target":335},{"source":55,"target":336},{"source":335,"target":52},{"source":336,"target":45},{"source":56,"target":0},{"source":56,"target":53},{"source":56,"target":45},{"source":56,"target":337},{"source":56,"target":338},{"source":337,"target":53},{"source":338,"target":45},{"source":57,"target":0},{"source":57,"target":42},{"source":57,"target":15},{"source":57,"target":339},{"source":57,"target":340},{"source":57,"target":341},{"source":339,"target":17},{"source":339,"target":342},{"source":339,"target":57},{"source":342,"target":17},{"source":340,"target":42},{"source":341,"target":15},{"source":58,"target":0},{"source":58,"target":57},{"source":58,"target":45},{"source":58,"target":343},{"source":58,"target":344},{"source":343,"target":57},{"source":344,"target":45},{"source":59,"target":0},{"source":59,"target":57},{"source":59,"target":44},{"source":59,"target":345},{"source":59,"target":346},{"source":345,"target":57},{"source":346,"target":44},{"source":60,"target":0},{"source":61,"target":0},{"source":61,"target":60},{"source":61,"target":15},{"source":61,"target":347},{"source":61,"target":348},{"source":347,"target":60},{"source":348,"target":15},{"source":62,"target":0},{"source":62,"target":60},{"source":62,"target":349},{"source":62,"target":350},{"source":62,"target":351},{"source":62,"target":352},{"source":62,"target":353},{"source":349,"target":354},{"source":349,"target":62},{"source":350,"target":355},{"source":350,"target":62},{"source":351,"target":26},{"source":351,"target":356},{"source":351,"target":62},{"source":356,"target":26},{"source":352,"target":26},{"source":352,"target":357},{"source":352,"target":62},{"source":357,"target":26},{"source":353,"target":60},{"source":63,"target":0},{"source":63,"target":60},{"source":63,"target":358},{"source":63,"target":359},{"source":358,"target":26},{"source":358,"target":360},{"source":358,"target":63},{"source":360,"target":26},{"source":359,"target":60},{"source":64,"target":0},{"source":64,"target":60},{"source":64,"target":361},{"source":64,"target":362},{"source":64,"target":363},{"source":64,"target":364},{"source":64,"target":365},{"source":64,"target":366},{"source":64,"target":367},{"source":64,"target":368},{"source":361,"target":369},{"source":361,"target":64},{"source":362,"target":370},{"source":362,"target":64},{"source":363,"target":371},{"source":363,"target":64},{"source":364,"target":39},{"source":364,"target":372},{"source":364,"target":64},{"source":372,"target":39},{"source":365,"target":39},{"source":365,"target":373},{"source":365,"target":64},{"source":373,"target":39},{"source":366,"target":374},{"source":366,"target":64},{"source":367,"target":375},{"source":367,"target":64},{"source":368,"target":60},{"source":65,"target":0},{"source":65,"target":60},{"source":65,"target":376},{"source":376,"target":60},{"source":66,"target":0},{"source":66,"target":35},{"source":66,"target":377},{"source":66,"target":378},{"source":66,"target":379},{"source":377,"target":25},{"source":377,"target":380},{"source":377,"target":66},{"source":380,"target":25},{"source":378,"target":26},{"source":378,"target":381},{"source":378,"target":66},{"source":381,"target":26},{"source":379,"target":35},{"source":67,"target":0},{"source":67,"target":60},{"source":67,"target":382},{"source":382,"target":60}],"multigraph":true} |
false | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0"
xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="facet"
nsURI="http://www.eclipse.org/MoDisco/infra/facet/0.8.incubation" nsPrefix="facet">
<eClassifiers xsi:type="ecore:EClass" name="Facet" eSuperTypes="platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EClass">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="context Facet inv: self.conditionQuery.scope->exists(e|self.extendedClass.isSuperTypeOf(self.superType))

context Facet inv: self.conditionQuery.retrunType.name == "EBoolean"

context Facet inv: self.eStructuralFeature.isKindOf(FacetStructuralFeature)"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="conditionQuery" eType="ecore:EClass platform:/plugin/org.eclipse.gmt.modisco.infra.query/model/query.ecore#//ModelQuery"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="facetSet" eType="#//FacetSet"
changeable="false" volatile="true" transient="true" derived="true" eOpposite="#//FacetSet/facets"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="FacetAttribute" eSuperTypes="platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EAttribute #//FacetStructuralFeature">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="context FacetAttribute inv: self.valueQuery.type.isKindOf(EDataType)"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="FacetReference" eSuperTypes="platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EReference #//FacetStructuralFeature">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="context FacetReference inv: self.valueQuery.type.isKindOf(EClass)"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="FacetStructuralFeature" abstract="true">
<eStructuralFeatures xsi:type="ecore:EReference" name="valueQuery" lowerBound="1"
eType="ecore:EClass platform:/plugin/org.eclipse.gmt.modisco.infra.query/model/query.ecore#//ModelQuery"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="FacetSet" eSuperTypes="platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EPackage">
<eOperations name="getFacet" eType="#//Facet">
<eParameters name="name" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/>
</eOperations>
<eStructuralFeatures xsi:type="ecore:EReference" name="extendedPackage" lowerBound="1"
eType="ecore:EClass platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EPackage"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="facets" upperBound="-1"
eType="#//Facet" changeable="false" volatile="true" transient="true" derived="true"
eOpposite="#//Facet/facetSet"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Shortcut" eSuperTypes="platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EReference">
<eStructuralFeatures xsi:type="ecore:EReference" name="path" upperBound="-1" eType="ecore:EClass platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EReference"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="oppositeReference" eType="ecore:EClass platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EReference"/>
</eClassifiers>
</ecore:EPackage>
| github:ecore:/data/atlanmod/modisco/modisco-models/org.eclipse.gmt.modisco.infra.facet/src/main/resources/model/facet.ecore | ecore | facet
Facet
conditionQuery
facetSet
FacetAttribute
FacetReference
FacetStructuralFeature
valueQuery
FacetSet
getFacet
name
extendedPackage
facets
Shortcut
path
oppositeReference | null | {"directed":true,"nodes":[{"nsPrefix":"facet","nsURI":"http://www.eclipse.org/MoDisco/infra/facet/0.8.incubation","name":"facet","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Facet","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FacetAttribute","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FacetReference","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FacetStructuralFeature","instanceClass":null,"abstract":true,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FacetSet","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Shortcut","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"conditionQuery","changeable":true,"resolveProxies":true,"lowerBound":0,"id":7,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":true,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"facetSet","changeable":false,"resolveProxies":true,"lowerBound":0,"id":8,"derived":true},{"id":9,"eClass":"EGenericType"},{"id":10,"eClass":"EGenericType"},{"id":11,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":true,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"facets","changeable":false,"resolveProxies":true,"lowerBound":0,"id":12,"derived":true},{"id":13,"eClass":"EGenericType"},{"id":14,"eClass":"EGenericType"},{"id":15,"eClass":"EGenericType"},{"id":16,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"valueQuery","changeable":true,"resolveProxies":true,"lowerBound":1,"id":17,"derived":false},{"id":18,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"getFacet","lowerBound":0,"id":19,"many":false,"required":false,"eClass":"EOperation"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"extendedPackage","changeable":true,"resolveProxies":true,"lowerBound":1,"id":20,"derived":false},{"id":21,"eClass":"EGenericType"},{"id":22,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"name","lowerBound":0,"id":23,"many":false,"required":false,"eClass":"EParameter"},{"id":24,"eClass":"EGenericType"},{"id":25,"eClass":"EGenericType"},{"id":26,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"path","changeable":true,"resolveProxies":true,"lowerBound":0,"id":27,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"oppositeReference","changeable":true,"resolveProxies":true,"lowerBound":0,"id":28,"derived":false},{"id":29,"eClass":"EGenericType"},{"id":30,"eClass":"EGenericType"},{"id":31,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":1,"target":0},{"source":1,"target":7},{"source":1,"target":8},{"source":1,"target":9},{"source":7,"target":10},{"source":7,"target":1},{"source":8,"target":5},{"source":8,"target":11},{"source":8,"target":1},{"source":8,"target":12},{"source":11,"target":5},{"source":2,"target":0},{"source":2,"target":4},{"source":2,"target":13},{"source":2,"target":14},{"source":14,"target":4},{"source":3,"target":0},{"source":3,"target":4},{"source":3,"target":15},{"source":3,"target":16},{"source":16,"target":4},{"source":4,"target":0},{"source":4,"target":17},{"source":17,"target":18},{"source":17,"target":4},{"source":5,"target":0},{"source":5,"target":19},{"source":5,"target":20},{"source":5,"target":12},{"source":5,"target":21},{"source":19,"target":1},{"source":19,"target":22},{"source":19,"target":5},{"source":19,"target":23},{"source":22,"target":1},{"source":23,"target":24},{"source":23,"target":19},{"source":20,"target":25},{"source":20,"target":5},{"source":12,"target":1},{"source":12,"target":26},{"source":12,"target":5},{"source":12,"target":8},{"source":26,"target":1},{"source":6,"target":0},{"source":6,"target":27},{"source":6,"target":28},{"source":6,"target":29},{"source":27,"target":30},{"source":27,"target":6},{"source":28,"target":31},{"source":28,"target":6}],"multigraph":true} |
false | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0"
xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="fact"
nsURI="http://ict-alive.sourceforge.net/RunTime/facts" nsPrefix="fact">
<eClassifiers xsi:type="ecore:EClass" name="Fact" abstract="true">
<eStructuralFeatures xsi:type="ecore:EReference" name="dueTo" eType="ecore:EClass actions.ecore#//Action"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="effect" eType="ecore:EClass actions.ecore#//Action"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="relate" upperBound="-1"
eType="#//Fact"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="StartedAct" eSuperTypes="#//InvocativeAct"/>
<eClassifiers xsi:type="ecore:EClass" name="ExecutedAct" eSuperTypes="#//InvocativeAct"/>
<eClassifiers xsi:type="ecore:EClass" name="FailureAct" eSuperTypes="#//InvocativeAct">
<eStructuralFeatures xsi:type="ecore:EReference" name="reason" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EObject"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="failureReason" eType="#//FailureReasons"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Disaster" eSuperTypes="#//Fact">
<eStructuralFeatures xsi:type="ecore:EReference" name="reason" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EObject"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="NormAct" abstract="true" eSuperTypes="#//Fact">
<eStructuralFeatures xsi:type="ecore:EReference" name="who" eType="ecore:EClass events.ecore#//Actor"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="norm" eType="ecore:EClass platform:/plugin/net.sf.ictalive.operetta/model/OperA.ecore#//Norm"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CommunicativeAct" abstract="true" eSuperTypes="#//Fact">
<eStructuralFeatures xsi:type="ecore:EReference" name="sender" eType="ecore:EClass events.ecore#//Actor"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="receiver" eType="ecore:EClass events.ecore#//Actor"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ReceiveAct" eSuperTypes="#//CommunicativeAct">
<eStructuralFeatures xsi:type="ecore:EReference" name="receivedMessage" eType="#//Message"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="SendAct" eSuperTypes="#//CommunicativeAct">
<eStructuralFeatures xsi:type="ecore:EReference" name="sendMessage" eType="#//Message"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="InvocativeAct" abstract="true" eSuperTypes="#//Fact"/>
<eClassifiers xsi:type="ecore:EClass" name="Message">
<eStructuralFeatures xsi:type="ecore:EReference" name="object" lowerBound="1"
upperBound="-1" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EObject"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="body" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Content">
<eStructuralFeatures xsi:type="ecore:EReference" name="fact" lowerBound="1" eType="#//Fact"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="effect" upperBound="-1"
eType="ecore:EClass actions.ecore#//Action" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="DeadlineViolation" eSuperTypes="#//NormAct">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="dealine" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDate"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="TaskViolation" eSuperTypes="#//NormAct">
<eStructuralFeatures xsi:type="ecore:EReference" name="unmetRequirement" upperBound="-1"
eType="ecore:EClass platform:/plugin/net.sf.ictalive.operetta/model/OperA.ecore#//Objective"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="task" eType="ecore:EClass platform:/plugin/net.sf.ictalive.coordination/model/tasks.ecore#//Task"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Availability" eSuperTypes="#//Fact">
<eStructuralFeatures xsi:type="ecore:EReference" name="ofResource" eType="ecore:EClass enactment.ecore#//Resource"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="status" eType="#//AvailabilityKind"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="AvailabilityKind">
<eLiterals name="Available"/>
<eLiterals name="NoAvailable" value="1"/>
<eLiterals name="Busy" value="2"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="FulfilmentAct" abstract="true" eSuperTypes="#//Fact">
<eStructuralFeatures xsi:type="ecore:EReference" name="relatedEvent" lowerBound="1"
upperBound="-1" eType="ecore:EClass events.ecore#//Event"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="satisfy" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="LandmarkFulfilment" eSuperTypes="#//FulfilmentAct">
<eStructuralFeatures xsi:type="ecore:EReference" name="landmark" lowerBound="1"
eType="ecore:EClass platform:/plugin/net.sf.ictalive.operetta/model/OperA.ecore#//Landmark"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="NormConditionFulfilment" eSuperTypes="#//FulfilmentAct">
<eStructuralFeatures xsi:type="ecore:EReference" name="norm" lowerBound="1" eType="ecore:EClass platform:/plugin/net.sf.ictalive.operetta/model/OperA.ecore#//Norm"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="type" eType="#//NormType"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ObjectiveFulfilment" eSuperTypes="#//FulfilmentAct">
<eStructuralFeatures xsi:type="ecore:EReference" name="objective" lowerBound="1"
eType="ecore:EClass platform:/plugin/net.sf.ictalive.operetta/model/OperA.ecore#//Objective"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="NormType">
<eLiterals name="Deadline"/>
<eLiterals name="ActivationCondition" value="1"/>
<eLiterals name="ExpirationCondition" value="2"/>
<eLiterals name="MaintainanceCondition" value="3"/>
<eLiterals name="What" value="4"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="OrganisationAct" abstract="true" eSuperTypes="#//Fact"/>
<eClassifiers xsi:type="ecore:EClass" name="PlayerFulfilment" eSuperTypes="#//OrganisationAct">
<eStructuralFeatures xsi:type="ecore:EReference" name="player" eType="ecore:EClass platform:/plugin/net.sf.ictalive.operetta/model/OperA.ecore#//Player"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="satisfy" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="NormInstanceAct" abstract="true" eSuperTypes="#//Fact">
<eStructuralFeatures xsi:type="ecore:EReference" name="normInstance" eType="ecore:EClass platform:/plugin/net.sf.ictalive.runtime.NormInstances/model/NormInstance.ecore#//NormInstance"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="NormInstanceViolated" eSuperTypes="#//NormInstanceAct"/>
<eClassifiers xsi:type="ecore:EClass" name="NormInstanceActivated" eSuperTypes="#//NormInstanceAct"/>
<eClassifiers xsi:type="ecore:EClass" name="NormInstanceExpired" eSuperTypes="#//NormInstanceAct"/>
<eClassifiers xsi:type="ecore:EEnum" name="FailureReasons">
<eLiterals name="UnabletoPlanForTask" literal="UnabletoPlanForTask"/>
<eLiterals name="ActionNotPerformedByARole" value="1"/>
<eLiterals name="PreconditionFail" value="2"/>
<eLiterals name="ZeroServiceMatchesForAction" value="3"/>
<eLiterals name="NoUsableServiceMatchesForAction" value="4"/>
<eLiterals name="ServiceUnavailable" value="5"/>
<eLiterals name="ServiceFailure" value="6"/>
<eLiterals name="NullPointerException" value="7"/>
</eClassifiers>
</ecore:EPackage>
| github:ecore:/data/kemlg/aliveclipse/net.sf.ictalive.runtime/model/fact.ecore | ecore | fact
Fact
dueTo
effect
relate
StartedAct
ExecutedAct
FailureAct
reason
failureReason
Disaster
reason
NormAct
who
norm
CommunicativeAct
sender
receiver
ReceiveAct
receivedMessage
SendAct
sendMessage
InvocativeAct
Message
object
body
Content
fact
effect
DeadlineViolation
dealine
TaskViolation
unmetRequirement
task
Availability
ofResource
status
AvailabilityKind
Available
Available
NoAvailable
NoAvailable
Busy
Busy
FulfilmentAct
relatedEvent
satisfy
LandmarkFulfilment
landmark
NormConditionFulfilment
norm
type
ObjectiveFulfilment
objective
NormType
Deadline
Deadline
ActivationCondition
ActivationCondition
ExpirationCondition
ExpirationCondition
MaintainanceCondition
MaintainanceCondition
What
What
OrganisationAct
PlayerFulfilment
player
satisfy
NormInstanceAct
normInstance
NormInstanceViolated
NormInstanceActivated
NormInstanceExpired
FailureReasons
UnabletoPlanForTask
UnabletoPlanForTask
ActionNotPerformedByARole
ActionNotPerformedByARole
PreconditionFail
PreconditionFail
ZeroServiceMatchesForAction
ZeroServiceMatchesForAction
NoUsableServiceMatchesForAction
NoUsableServiceMatchesForAction
ServiceUnavailable
ServiceUnavailable
ServiceFailure
ServiceFailure
NullPointerException
NullPointerException | null | {"directed":true,"nodes":[{"nsPrefix":"fact","nsURI":"http://ict-alive.sourceforge.net/RunTime/facts","name":"fact","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Fact","instanceClass":null,"abstract":true,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StartedAct","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExecutedAct","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FailureAct","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Disaster","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NormAct","instanceClass":null,"abstract":true,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CommunicativeAct","instanceClass":null,"abstract":true,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ReceiveAct","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SendAct","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InvocativeAct","instanceClass":null,"abstract":true,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Message","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Content","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DeadlineViolation","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TaskViolation","instanceClass":null,"abstract":false,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Availability","instanceClass":null,"abstract":false,"id":15,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"AvailabilityKind","instanceClass":null,"id":16,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FulfilmentAct","instanceClass":null,"abstract":true,"id":17,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LandmarkFulfilment","instanceClass":null,"abstract":false,"id":18,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NormConditionFulfilment","instanceClass":null,"abstract":false,"id":19,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ObjectiveFulfilment","instanceClass":null,"abstract":false,"id":20,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"NormType","instanceClass":null,"id":21,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OrganisationAct","instanceClass":null,"abstract":true,"id":22,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PlayerFulfilment","instanceClass":null,"abstract":false,"id":23,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NormInstanceAct","instanceClass":null,"abstract":true,"id":24,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NormInstanceViolated","instanceClass":null,"abstract":false,"id":25,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NormInstanceActivated","instanceClass":null,"abstract":false,"id":26,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NormInstanceExpired","instanceClass":null,"abstract":false,"id":27,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"FailureReasons","instanceClass":null,"id":28,"serializable":true,"eClass":"EEnum"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"dueTo","changeable":true,"resolveProxies":true,"lowerBound":0,"id":29,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"effect","changeable":true,"resolveProxies":true,"lowerBound":0,"id":30,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"relate","changeable":true,"resolveProxies":true,"lowerBound":0,"id":31,"derived":false},{"id":32,"eClass":"EGenericType"},{"id":33,"eClass":"EGenericType"},{"id":34,"eClass":"EGenericType"},{"id":35,"eClass":"EGenericType"},{"id":36,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"reason","changeable":true,"resolveProxies":true,"lowerBound":0,"id":37,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"failureReason","changeable":true,"lowerBound":0,"iD":false,"id":38,"derived":false},{"id":39,"eClass":"EGenericType"},{"id":40,"eClass":"EGenericType"},{"id":41,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"reason","changeable":true,"resolveProxies":true,"lowerBound":0,"id":42,"derived":false},{"id":43,"eClass":"EGenericType"},{"id":44,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"who","changeable":true,"resolveProxies":true,"lowerBound":0,"id":45,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"norm","changeable":true,"resolveProxies":true,"lowerBound":0,"id":46,"derived":false},{"id":47,"eClass":"EGenericType"},{"id":48,"eClass":"EGenericType"},{"id":49,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"sender","changeable":true,"resolveProxies":true,"lowerBound":0,"id":50,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"receiver","changeable":true,"resolveProxies":true,"lowerBound":0,"id":51,"derived":false},{"id":52,"eClass":"EGenericType"},{"id":53,"eClass":"EGenericType"},{"id":54,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"receivedMessage","changeable":true,"resolveProxies":true,"lowerBound":0,"id":55,"derived":false},{"id":56,"eClass":"EGenericType"},{"id":57,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"sendMessage","changeable":true,"resolveProxies":true,"lowerBound":0,"id":58,"derived":false},{"id":59,"eClass":"EGenericType"},{"id":60,"eClass":"EGenericType"},{"id":61,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"object","changeable":true,"resolveProxies":true,"lowerBound":1,"id":62,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"body","changeable":true,"lowerBound":0,"iD":false,"id":63,"derived":false},{"id":64,"eClass":"EGenericType"},{"id":65,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"fact","changeable":true,"resolveProxies":true,"lowerBound":1,"id":66,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"effect","changeable":true,"resolveProxies":true,"lowerBound":0,"id":67,"derived":false},{"id":68,"eClass":"EGenericType"},{"id":69,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"dealine","changeable":true,"lowerBound":0,"iD":false,"id":70,"derived":false},{"id":71,"eClass":"EGenericType"},{"id":72,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"unmetRequirement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":73,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"task","changeable":true,"resolveProxies":true,"lowerBound":0,"id":74,"derived":false},{"id":75,"eClass":"EGenericType"},{"id":76,"eClass":"EGenericType"},{"id":77,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"ofResource","changeable":true,"resolveProxies":true,"lowerBound":0,"id":78,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"status","changeable":true,"lowerBound":0,"iD":false,"id":79,"derived":false},{"id":80,"eClass":"EGenericType"},{"id":81,"eClass":"EGenericType"},{"id":82,"eClass":"EGenericType"},{"name":"Available","id":83,"value":0,"literal":"Available","eClass":"EEnumLiteral"},{"name":"NoAvailable","id":84,"value":1,"literal":"NoAvailable","eClass":"EEnumLiteral"},{"name":"Busy","id":85,"value":2,"literal":"Busy","eClass":"EEnumLiteral"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"relatedEvent","changeable":true,"resolveProxies":true,"lowerBound":1,"id":86,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"satisfy","changeable":true,"lowerBound":0,"iD":false,"id":87,"derived":false},{"id":88,"eClass":"EGenericType"},{"id":89,"eClass":"EGenericType"},{"id":90,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"landmark","changeable":true,"resolveProxies":true,"lowerBound":1,"id":91,"derived":false},{"id":92,"eClass":"EGenericType"},{"id":93,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"norm","changeable":true,"resolveProxies":true,"lowerBound":1,"id":94,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"lowerBound":0,"iD":false,"id":95,"derived":false},{"id":96,"eClass":"EGenericType"},{"id":97,"eClass":"EGenericType"},{"id":98,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"objective","changeable":true,"resolveProxies":true,"lowerBound":1,"id":99,"derived":false},{"id":100,"eClass":"EGenericType"},{"id":101,"eClass":"EGenericType"},{"name":"Deadline","id":102,"value":0,"literal":"Deadline","eClass":"EEnumLiteral"},{"name":"ActivationCondition","id":103,"value":1,"literal":"ActivationCondition","eClass":"EEnumLiteral"},{"name":"ExpirationCondition","id":104,"value":2,"literal":"ExpirationCondition","eClass":"EEnumLiteral"},{"name":"MaintainanceCondition","id":105,"value":3,"literal":"MaintainanceCondition","eClass":"EEnumLiteral"},{"name":"What","id":106,"value":4,"literal":"What","eClass":"EEnumLiteral"},{"id":107,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"player","changeable":true,"resolveProxies":true,"lowerBound":0,"id":108,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"satisfy","changeable":true,"lowerBound":0,"iD":false,"id":109,"derived":false},{"id":110,"eClass":"EGenericType"},{"id":111,"eClass":"EGenericType"},{"id":112,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"normInstance","changeable":true,"resolveProxies":true,"lowerBound":0,"id":113,"derived":false},{"id":114,"eClass":"EGenericType"},{"id":115,"eClass":"EGenericType"},{"id":116,"eClass":"EGenericType"},{"id":117,"eClass":"EGenericType"},{"id":118,"eClass":"EGenericType"},{"name":"UnabletoPlanForTask","id":119,"value":0,"literal":"UnabletoPlanForTask","eClass":"EEnumLiteral"},{"name":"ActionNotPerformedByARole","id":120,"value":1,"literal":"ActionNotPerformedByARole","eClass":"EEnumLiteral"},{"name":"PreconditionFail","id":121,"value":2,"literal":"PreconditionFail","eClass":"EEnumLiteral"},{"name":"ZeroServiceMatchesForAction","id":122,"value":3,"literal":"ZeroServiceMatchesForAction","eClass":"EEnumLiteral"},{"name":"NoUsableServiceMatchesForAction","id":123,"value":4,"literal":"NoUsableServiceMatchesForAction","eClass":"EEnumLiteral"},{"name":"ServiceUnavailable","id":124,"value":5,"literal":"ServiceUnavailable","eClass":"EEnumLiteral"},{"name":"ServiceFailure","id":125,"value":6,"literal":"ServiceFailure","eClass":"EEnumLiteral"},{"name":"NullPointerException","id":126,"value":7,"literal":"NullPointerException","eClass":"EEnumLiteral"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":0,"target":8},{"source":0,"target":9},{"source":0,"target":10},{"source":0,"target":11},{"source":0,"target":12},{"source":0,"target":13},{"source":0,"target":14},{"source":0,"target":15},{"source":0,"target":16},{"source":0,"target":17},{"source":0,"target":18},{"source":0,"target":19},{"source":0,"target":20},{"source":0,"target":21},{"source":0,"target":22},{"source":0,"target":23},{"source":0,"target":24},{"source":0,"target":25},{"source":0,"target":26},{"source":0,"target":27},{"source":0,"target":28},{"source":1,"target":0},{"source":1,"target":29},{"source":1,"target":30},{"source":1,"target":31},{"source":29,"target":32},{"source":29,"target":1},{"source":30,"target":33},{"source":30,"target":1},{"source":31,"target":1},{"source":31,"target":34},{"source":31,"target":1},{"source":34,"target":1},{"source":2,"target":0},{"source":2,"target":10},{"source":2,"target":35},{"source":35,"target":10},{"source":3,"target":0},{"source":3,"target":10},{"source":3,"target":36},{"source":36,"target":10},{"source":4,"target":0},{"source":4,"target":10},{"source":4,"target":37},{"source":4,"target":38},{"source":4,"target":39},{"source":37,"target":40},{"source":37,"target":4},{"source":38,"target":28},{"source":38,"target":41},{"source":38,"target":4},{"source":41,"target":28},{"source":39,"target":10},{"source":5,"target":0},{"source":5,"target":1},{"source":5,"target":42},{"source":5,"target":43},{"source":42,"target":44},{"source":42,"target":5},{"source":43,"target":1},{"source":6,"target":0},{"source":6,"target":1},{"source":6,"target":45},{"source":6,"target":46},{"source":6,"target":47},{"source":45,"target":48},{"source":45,"target":6},{"source":46,"target":49},{"source":46,"target":6},{"source":47,"target":1},{"source":7,"target":0},{"source":7,"target":1},{"source":7,"target":50},{"source":7,"target":51},{"source":7,"target":52},{"source":50,"target":53},{"source":50,"target":7},{"source":51,"target":54},{"source":51,"target":7},{"source":52,"target":1},{"source":8,"target":0},{"source":8,"target":7},{"source":8,"target":55},{"source":8,"target":56},{"source":55,"target":11},{"source":55,"target":57},{"source":55,"target":8},{"source":57,"target":11},{"source":56,"target":7},{"source":9,"target":0},{"source":9,"target":7},{"source":9,"target":58},{"source":9,"target":59},{"source":58,"target":11},{"source":58,"target":60},{"source":58,"target":9},{"source":60,"target":11},{"source":59,"target":7},{"source":10,"target":0},{"source":10,"target":1},{"source":10,"target":61},{"source":61,"target":1},{"source":11,"target":0},{"source":11,"target":62},{"source":11,"target":63},{"source":62,"target":64},{"source":62,"target":11},{"source":63,"target":65},{"source":63,"target":11},{"source":12,"target":0},{"source":12,"target":66},{"source":12,"target":67},{"source":66,"target":1},{"source":66,"target":68},{"source":66,"target":12},{"source":68,"target":1},{"source":67,"target":69},{"source":67,"target":12},{"source":13,"target":0},{"source":13,"target":6},{"source":13,"target":70},{"source":13,"target":71},{"source":70,"target":72},{"source":70,"target":13},{"source":71,"target":6},{"source":14,"target":0},{"source":14,"target":6},{"source":14,"target":73},{"source":14,"target":74},{"source":14,"target":75},{"source":73,"target":76},{"source":73,"target":14},{"source":74,"target":77},{"source":74,"target":14},{"source":75,"target":6},{"source":15,"target":0},{"source":15,"target":1},{"source":15,"target":78},{"source":15,"target":79},{"source":15,"target":80},{"source":78,"target":81},{"source":78,"target":15},{"source":79,"target":16},{"source":79,"target":82},{"source":79,"target":15},{"source":82,"target":16},{"source":80,"target":1},{"source":16,"target":0},{"source":16,"target":83},{"source":16,"target":84},{"source":16,"target":85},{"source":83,"target":16},{"source":84,"target":16},{"source":85,"target":16},{"source":17,"target":0},{"source":17,"target":1},{"source":17,"target":86},{"source":17,"target":87},{"source":17,"target":88},{"source":86,"target":89},{"source":86,"target":17},{"source":87,"target":90},{"source":87,"target":17},{"source":88,"target":1},{"source":18,"target":0},{"source":18,"target":17},{"source":18,"target":91},{"source":18,"target":92},{"source":91,"target":93},{"source":91,"target":18},{"source":92,"target":17},{"source":19,"target":0},{"source":19,"target":17},{"source":19,"target":94},{"source":19,"target":95},{"source":19,"target":96},{"source":94,"target":97},{"source":94,"target":19},{"source":95,"target":21},{"source":95,"target":98},{"source":95,"target":19},{"source":98,"target":21},{"source":96,"target":17},{"source":20,"target":0},{"source":20,"target":17},{"source":20,"target":99},{"source":20,"target":100},{"source":99,"target":101},{"source":99,"target":20},{"source":100,"target":17},{"source":21,"target":0},{"source":21,"target":102},{"source":21,"target":103},{"source":21,"target":104},{"source":21,"target":105},{"source":21,"target":106},{"source":102,"target":21},{"source":103,"target":21},{"source":104,"target":21},{"source":105,"target":21},{"source":106,"target":21},{"source":22,"target":0},{"source":22,"target":1},{"source":22,"target":107},{"source":107,"target":1},{"source":23,"target":0},{"source":23,"target":22},{"source":23,"target":108},{"source":23,"target":109},{"source":23,"target":110},{"source":108,"target":111},{"source":108,"target":23},{"source":109,"target":112},{"source":109,"target":23},{"source":110,"target":22},{"source":24,"target":0},{"source":24,"target":1},{"source":24,"target":113},{"source":24,"target":114},{"source":113,"target":115},{"source":113,"target":24},{"source":114,"target":1},{"source":25,"target":0},{"source":25,"target":24},{"source":25,"target":116},{"source":116,"target":24},{"source":26,"target":0},{"source":26,"target":24},{"source":26,"target":117},{"source":117,"target":24},{"source":27,"target":0},{"source":27,"target":24},{"source":27,"target":118},{"source":118,"target":24},{"source":28,"target":0},{"source":28,"target":119},{"source":28,"target":120},{"source":28,"target":121},{"source":28,"target":122},{"source":28,"target":123},{"source":28,"target":124},{"source":28,"target":125},{"source":28,"target":126},{"source":119,"target":28},{"source":120,"target":28},{"source":121,"target":28},{"source":122,"target":28},{"source":123,"target":28},{"source":124,"target":28},{"source":125,"target":28},{"source":126,"target":28}],"multigraph":true} |
false | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="university" nsURI="http://www.big.tuwien.ac.at/ame/university"
nsPrefix="uni">
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore">
<details key="invocationDelegates" value="http://www.eclipse.org/emf/2002/Ecore/OCL/Pivot"/>
<details key="settingDelegates" value="http://www.eclipse.org/emf/2002/Ecore/OCL/Pivot"/>
<details key="validationDelegates" value="http://www.eclipse.org/emf/2002/Ecore/OCL/Pivot"/>
</eAnnotations>
<eClassifiers xsi:type="ecore:EClass" name="University">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="students" upperBound="-1"
eType="#//Student" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="professors" upperBound="-1"
eType="#//Professor" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="courses" upperBound="-1"
eType="#//Course" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Student">
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore">
<details key="constraints" value="mnrSize"/>
</eAnnotations>
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore/OCL/Pivot">
<details key="mnrSize" value="mnr.size()=7"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="id" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
iD="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="mnr" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="course" upperBound="-1"
eType="#//Course" eOpposite="#//Course/students"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Course">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="professor" eType="#//Professor"
eOpposite="#//Professor/courses"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="students" lowerBound="5"
upperBound="30" eType="#//Student" eOpposite="#//Student/course"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Professor">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="courses" upperBound="-1"
eType="#//Course" eOpposite="#//Course/professor"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Student">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="courses" upperBound="-1"
eType="#//Professor.1" eOpposite="#//Professor.1/students"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Professor">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="students" upperBound="-1"
eType="#//Student.1" eOpposite="#//Student.1/courses"/>
</eClassifiers>
</ecore:EPackage>
| github:ecore:/data/siba88/ame/at.ac.tuwien.big.momot.examples.university.ocl/model/university_ocl.ecore | ecore | university
University
name
students
professors
courses
Student
id
mnr
course
Course
name
professor
students
Professor
name
courses
Student
name
courses
Professor
name
students | null | {"directed":true,"nodes":[{"nsPrefix":"uni","nsURI":"http://www.big.tuwien.ac.at/ame/university","name":"university","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"University","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Student","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Course","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Professor","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Student","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Professor","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":7,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"students","changeable":true,"resolveProxies":true,"lowerBound":0,"id":8,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"professors","changeable":true,"resolveProxies":true,"lowerBound":0,"id":9,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"courses","changeable":true,"resolveProxies":true,"lowerBound":0,"id":10,"derived":false},{"id":11,"eClass":"EGenericType"},{"id":12,"eClass":"EGenericType"},{"id":13,"eClass":"EGenericType"},{"id":14,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"id","changeable":true,"lowerBound":0,"iD":true,"id":15,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"mnr","changeable":true,"lowerBound":0,"iD":false,"id":16,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"course","changeable":true,"resolveProxies":true,"lowerBound":0,"id":17,"derived":false},{"id":18,"eClass":"EGenericType"},{"id":19,"eClass":"EGenericType"},{"id":20,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":30,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"students","changeable":true,"resolveProxies":true,"lowerBound":5,"id":21,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":22,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"professor","changeable":true,"resolveProxies":true,"lowerBound":0,"id":23,"derived":false},{"id":24,"eClass":"EGenericType"},{"id":25,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"courses","changeable":true,"resolveProxies":true,"lowerBound":0,"id":26,"derived":false},{"id":27,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":28,"derived":false},{"id":29,"eClass":"EGenericType"},{"id":30,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":31,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"courses","changeable":true,"resolveProxies":true,"lowerBound":0,"id":32,"derived":false},{"id":33,"eClass":"EGenericType"},{"id":34,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"students","changeable":true,"resolveProxies":true,"lowerBound":0,"id":35,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":36,"derived":false},{"id":37,"eClass":"EGenericType"},{"id":38,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":1,"target":0},{"source":1,"target":7},{"source":1,"target":8},{"source":1,"target":9},{"source":1,"target":10},{"source":7,"target":11},{"source":7,"target":1},{"source":8,"target":2},{"source":8,"target":12},{"source":8,"target":1},{"source":12,"target":2},{"source":9,"target":4},{"source":9,"target":13},{"source":9,"target":1},{"source":13,"target":4},{"source":10,"target":3},{"source":10,"target":14},{"source":10,"target":1},{"source":14,"target":3},{"source":2,"target":0},{"source":2,"target":15},{"source":2,"target":16},{"source":2,"target":17},{"source":15,"target":18},{"source":15,"target":2},{"source":16,"target":19},{"source":16,"target":2},{"source":17,"target":3},{"source":17,"target":20},{"source":17,"target":2},{"source":17,"target":21},{"source":20,"target":3},{"source":3,"target":0},{"source":3,"target":22},{"source":3,"target":23},{"source":3,"target":21},{"source":22,"target":24},{"source":22,"target":3},{"source":23,"target":4},{"source":23,"target":25},{"source":23,"target":3},{"source":23,"target":26},{"source":25,"target":4},{"source":21,"target":2},{"source":21,"target":27},{"source":21,"target":3},{"source":21,"target":17},{"source":27,"target":2},{"source":4,"target":0},{"source":4,"target":28},{"source":4,"target":26},{"source":28,"target":29},{"source":28,"target":4},{"source":26,"target":3},{"source":26,"target":30},{"source":26,"target":4},{"source":26,"target":23},{"source":30,"target":3},{"source":5,"target":0},{"source":5,"target":31},{"source":5,"target":32},{"source":31,"target":33},{"source":31,"target":5},{"source":32,"target":6},{"source":32,"target":34},{"source":32,"target":5},{"source":32,"target":35},{"source":34,"target":6},{"source":6,"target":0},{"source":6,"target":36},{"source":6,"target":35},{"source":36,"target":37},{"source":36,"target":6},{"source":35,"target":5},{"source":35,"target":38},{"source":35,"target":6},{"source":35,"target":32},{"source":38,"target":5}],"multigraph":true} |
true | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="lqnmodel" nsURI="lqnmodel" nsPrefix="">
<eClassifiers xsi:type="ecore:EClass" name="lqnmodel">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="description" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="lqnSchemaVersion" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"
defaultValueLiteral="1"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="lqnCoreSchemaVersion" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"
defaultValueLiteral="1"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="xmldebug" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"
defaultValueLiteral="false"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="processor" lowerBound="1"
upperBound="-1" eType="#//processor" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="processor">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="multiplicity" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"
defaultValueLiteral="1"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="speedfactor" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFloat"
defaultValueLiteral="1"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="scheduling" eType="#//PSchedulerType"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="replication" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"
defaultValueLiteral="1"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="quantum" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFloat"
defaultValueLiteral="0"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="task" lowerBound="1" upperBound="-1"
eType="#//task" containment="true" eOpposite="#//task/host"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="task">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="multiplicity" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"
defaultValueLiteral="1"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="priority" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"
defaultValueLiteral="0"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="queuelength" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"
defaultValueLiteral="0"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="scheduling" eType="#//TSchedulerType"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="activitygraph" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="thinktime" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFloat"
defaultValueLiteral="0"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="entry" lowerBound="1" upperBound="-1"
eType="#//entry" containment="true" eOpposite="#//entry/task1"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="taskactivities" upperBound="-1"
eType="#//taskactivities" containment="true" eOpposite="#//taskactivities/task2"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="host" lowerBound="1" eType="#//processor"
eOpposite="#//processor/task"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="entry">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="type" eType="#//EntryType"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="openarrivalrate" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFloat"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="priority" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="semaphore" eType="#//SemaphoreType"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="task1" lowerBound="1" eType="#//task"
eOpposite="#//task/entry"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="entryphaseactivities" eType="#//entryphaseactivities"
containment="true" eOpposite="#//entryphaseactivities/entry1"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="taskactivities">
<eStructuralFeatures xsi:type="ecore:EReference" name="activity" lowerBound="1"
upperBound="-1" eType="#//activity" containment="true" eOpposite="#//activity/taskActivity"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="precedence" upperBound="-1"
eType="#//precedence" containment="true" eOpposite="#//precedence/taskActivityP"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="replyentry" upperBound="-1"
eType="#//replyentry" containment="true" eOpposite="#//replyentry/taskActivityR"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="task2" lowerBound="1" eType="#//task"
eOpposite="#//task/taskactivities"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="entryphaseactivities">
<eStructuralFeatures xsi:type="ecore:EReference" name="activity1" lowerBound="1"
upperBound="3" eType="#//activity" containment="true" eOpposite="#//activity/entryphaseactivities1"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="entry1" lowerBound="1"
eType="#//entry" eOpposite="#//entry/entryphaseactivities"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="activity">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="hostdemandmean" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFloat"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="hostdemandcvsq" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFloat"
defaultValueLiteral="1"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="thinktime" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFloat"
defaultValueLiteral="0"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="maxservicetime" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFloat"
defaultValueLiteral="0"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="callorder" eType="#//CallOrderType"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="phase" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="boundtoentry" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="prob" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFloat"
defaultValueLiteral="1"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="count" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFloat"
defaultValueLiteral="1"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="synchcall" upperBound="-1"
eType="#//synchcall" containment="true" eOpposite="#//synchcall/activitySynchCall"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="asynchcall" upperBound="-1"
eType="#//asynchcall" containment="true" eOpposite="#//asynchcall/activityASynchCall"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="taskActivity" eType="#//taskactivities"
eOpposite="#//taskactivities/activity"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="entryphaseactivities1"
eType="#//entryphaseactivities" eOpposite="#//entryphaseactivities/activity1"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="precedence">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="taskActivityP" lowerBound="1"
eType="#//taskactivities" eOpposite="#//taskactivities/precedence"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="pre" eType="#//pre" containment="true"
eOpposite="#//pre/precedence1"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="preor" eType="#//preor"
containment="true" eOpposite="#//preor/precedence2"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="preand" eType="#//preand"
containment="true" eOpposite="#//preand/precedence3"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="post" eType="#//post" containment="true"
eOpposite="#//post/precedence4"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="postor" eType="#//postor"
containment="true" eOpposite="#//postor/precedence5"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="postand" eType="#//postand"
containment="true" eOpposite="#//postand/precedence6"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="replyentry">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="taskActivityR" lowerBound="1"
eType="#//taskactivities" eOpposite="#//taskactivities/replyentry"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="replyactivity" lowerBound="1"
upperBound="-1" eType="#//replyactivity" containment="true" eOpposite="#//replyactivity/replyEntry1"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="replyactivity">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="replyEntry1" lowerBound="1"
eType="#//replyentry" eOpposite="#//replyentry/replyactivity"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="synchcall">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="dest" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="callsmean" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFloat"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="activitySynchCall" lowerBound="1"
eType="#//activity" eOpposite="#//activity/synchcall"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="asynchcall">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="dest" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="callsmean" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFloat"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="activityASynchCall" lowerBound="1"
eType="#//activity" eOpposite="#//activity/asynchcall"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="activityR">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="prob" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFloat"
defaultValueLiteral="1"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="preActivityR" eType="#//pre"
eOpposite="#//pre/activityRPre"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="preorActivityR" eType="#//preor"
eOpposite="#//preor/activityRPreOr"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="preandActivityR" eType="#//preand"
eOpposite="#//preand/activityRPreAnd"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="postActivityR" eType="#//post"
eOpposite="#//post/activityRPost"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="postorActivityR" eType="#//postor"
eOpposite="#//postor/activityRPostOr"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="postandActivityR" eType="#//postand"
eOpposite="#//postand/activityRPostAnd"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="pre">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="precedence1" lowerBound="1"
eType="#//precedence" eOpposite="#//precedence/pre"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="activityRPre" lowerBound="1"
eType="#//activityR" containment="true" eOpposite="#//activityR/preActivityR"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="preor">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="precedence2" lowerBound="1"
eType="#//precedence" eOpposite="#//precedence/preor"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="activityRPreOr" lowerBound="1"
upperBound="-1" eType="#//activityR" containment="true" eOpposite="#//activityR/preorActivityR"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="preand">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="quorum" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"
defaultValueLiteral="0"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="precedence3" lowerBound="1"
eType="#//precedence" eOpposite="#//precedence/preand"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="activityRPreAnd" lowerBound="1"
upperBound="-1" eType="#//activityR" containment="true" eOpposite="#//activityR/preandActivityR"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="post">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="precedence4" lowerBound="1"
eType="#//precedence" eOpposite="#//precedence/post"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="activityRPost" lowerBound="1"
eType="#//activityR" containment="true" eOpposite="#//activityR/postActivityR"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="postor">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="precedence5" lowerBound="1"
eType="#//precedence" eOpposite="#//precedence/postor"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="activityRPostOr" lowerBound="1"
upperBound="-1" eType="#//activityR" containment="true" eOpposite="#//activityR/postorActivityR"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="postand">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="precedence6" lowerBound="1"
eType="#//precedence" eOpposite="#//precedence/postand"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="activityRPostAnd" lowerBound="1"
upperBound="-1" eType="#//activityR" containment="true" eOpposite="#//activityR/postandActivityR"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="PSchedulerType">
<eLiterals name="default"/>
<eLiterals name="fcfs" value="1"/>
<eLiterals name="hol" value="2"/>
<eLiterals name="pp" value="3"/>
<eLiterals name="rand" value="4"/>
<eLiterals name="inf" value="5"/>
<eLiterals name="pshol" value="6"/>
<eLiterals name="pspp" value="7"/>
<eLiterals name="cfs" value="8"/>
<eLiterals name="ref" value="9"/>
<eLiterals name="pri" value="10"/>
<eLiterals name="burst" value="11"/>
<eLiterals name="poll" value="12"/>
<eLiterals name="semaphore" value="13"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="TSchedulerType">
<eLiterals name="default"/>
<eLiterals name="ref" value="1"/>
<eLiterals name="fcfs" value="2"/>
<eLiterals name="hol" value="3"/>
<eLiterals name="inf" value="4"/>
<eLiterals name="pri" value="5"/>
<eLiterals name="burst" value="6"/>
<eLiterals name="poll" value="7"/>
<eLiterals name="semaphore" value="8"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="EntryType">
<eLiterals name="default"/>
<eLiterals name="graph" value="1"/>
<eLiterals name="PH1PH2" value="2"/>
<eLiterals name="NONE" value="3"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="SemaphoreType">
<eLiterals name="default"/>
<eLiterals name="signal" value="1"/>
<eLiterals name="wait" value="2"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="CallOrderType">
<eLiterals name="default"/>
<eLiterals name="stochastic" value="1"/>
<eLiterals name="deterministic" value="2"/>
</eClassifiers>
</ecore:EPackage>
| github:ecore:/data/vnzstc/uml2lqn/org.univaq.uml2lqn/lqnxsd/lqn.ecore | ecore | lqnmodel
lqnmodel
name
description
lqnSchemaVersion
1
lqnCoreSchemaVersion
1
xmldebug
false
processor
processor
name
multiplicity
1
speedfactor
1
scheduling
replication
1
quantum
0
task
task
name
multiplicity
1
priority
0
queuelength
0
scheduling
activitygraph
thinktime
0
entry
taskactivities
host
entry
name
type
openarrivalrate
priority
semaphore
task1
entryphaseactivities
taskactivities
activity
precedence
replyentry
task2
entryphaseactivities
activity1
entry1
activity
name
hostdemandmean
hostdemandcvsq
1
thinktime
0
maxservicetime
0
callorder
phase
boundtoentry
prob
1
count
1
synchcall
asynchcall
taskActivity
entryphaseactivities1
precedence
name
taskActivityP
pre
preor
preand
post
postor
postand
replyentry
name
taskActivityR
replyactivity
replyactivity
name
replyEntry1
synchcall
name
dest
callsmean
activitySynchCall
asynchcall
name
dest
callsmean
activityASynchCall
activityR
name
prob
1
preActivityR
preorActivityR
preandActivityR
postActivityR
postorActivityR
postandActivityR
pre
name
precedence1
activityRPre
preor
name
precedence2
activityRPreOr
preand
name
quorum
0
precedence3
activityRPreAnd
post
name
precedence4
activityRPost
postor
name
precedence5
activityRPostOr
postand
name
precedence6
activityRPostAnd
PSchedulerType
default
default
fcfs
fcfs
hol
hol
pp
pp
rand
rand
inf
inf
pshol
pshol
pspp
pspp
cfs
cfs
ref
ref
pri
pri
burst
burst
poll
poll
semaphore
semaphore
TSchedulerType
default
default
ref
ref
fcfs
fcfs
hol
hol
inf
inf
pri
pri
burst
burst
poll
poll
semaphore
semaphore
EntryType
default
default
graph
graph
PH1PH2
PH1PH2
NONE
NONE
SemaphoreType
default
default
signal
signal
wait
wait
CallOrderType
default
default
stochastic
stochastic
deterministic
deterministic | null | {"directed":true,"nodes":[{"nsPrefix":"","nsURI":"lqnmodel","name":"lqnmodel","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"lqnmodel","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"processor","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"task","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"entry","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"taskactivities","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"entryphaseactivities","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"activity","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"precedence","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"replyentry","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"replyactivity","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"synchcall","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"asynchcall","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"activityR","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"pre","instanceClass":null,"abstract":false,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"preor","instanceClass":null,"abstract":false,"id":15,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"preand","instanceClass":null,"abstract":false,"id":16,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"post","instanceClass":null,"abstract":false,"id":17,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"postor","instanceClass":null,"abstract":false,"id":18,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"postand","instanceClass":null,"abstract":false,"id":19,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"PSchedulerType","instanceClass":null,"id":20,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"TSchedulerType","instanceClass":null,"id":21,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"EntryType","instanceClass":null,"id":22,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"SemaphoreType","instanceClass":null,"id":23,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"CallOrderType","instanceClass":null,"id":24,"serializable":true,"eClass":"EEnum"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":25,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"description","changeable":true,"lowerBound":0,"iD":false,"id":26,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"1","unsettable":false,"transient":false,"unique":true,"name":"lqnSchemaVersion","changeable":true,"lowerBound":0,"iD":false,"id":27,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"1","unsettable":false,"transient":false,"unique":true,"name":"lqnCoreSchemaVersion","changeable":true,"lowerBound":0,"iD":false,"id":28,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"false","unsettable":false,"transient":false,"unique":true,"name":"xmldebug","changeable":true,"lowerBound":0,"iD":false,"id":29,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"processor","changeable":true,"resolveProxies":true,"lowerBound":1,"id":30,"derived":false},{"id":31,"eClass":"EGenericType"},{"id":32,"eClass":"EGenericType"},{"id":33,"eClass":"EGenericType"},{"id":34,"eClass":"EGenericType"},{"id":35,"eClass":"EGenericType"},{"id":36,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":37,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"1","unsettable":false,"transient":false,"unique":true,"name":"multiplicity","changeable":true,"lowerBound":0,"iD":false,"id":38,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":1.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"1","unsettable":false,"transient":false,"unique":true,"name":"speedfactor","changeable":true,"lowerBound":0,"iD":false,"id":39,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"scheduling","changeable":true,"lowerBound":0,"iD":false,"id":40,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"1","unsettable":false,"transient":false,"unique":true,"name":"replication","changeable":true,"lowerBound":0,"iD":false,"id":41,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"0","unsettable":false,"transient":false,"unique":true,"name":"quantum","changeable":true,"lowerBound":0,"iD":false,"id":42,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"task","changeable":true,"resolveProxies":true,"lowerBound":1,"id":43,"derived":false},{"id":44,"eClass":"EGenericType"},{"id":45,"eClass":"EGenericType"},{"id":46,"eClass":"EGenericType"},{"id":47,"eClass":"EGenericType"},{"id":48,"eClass":"EGenericType"},{"id":49,"eClass":"EGenericType"},{"id":50,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"host","changeable":true,"resolveProxies":true,"lowerBound":1,"id":51,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":52,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"1","unsettable":false,"transient":false,"unique":true,"name":"multiplicity","changeable":true,"lowerBound":0,"iD":false,"id":53,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"0","unsettable":false,"transient":false,"unique":true,"name":"priority","changeable":true,"lowerBound":0,"iD":false,"id":54,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"0","unsettable":false,"transient":false,"unique":true,"name":"queuelength","changeable":true,"lowerBound":0,"iD":false,"id":55,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"scheduling","changeable":true,"lowerBound":0,"iD":false,"id":56,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"activitygraph","changeable":true,"lowerBound":0,"iD":false,"id":57,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"0","unsettable":false,"transient":false,"unique":true,"name":"thinktime","changeable":true,"lowerBound":0,"iD":false,"id":58,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"entry","changeable":true,"resolveProxies":true,"lowerBound":1,"id":59,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"taskactivities","changeable":true,"resolveProxies":true,"lowerBound":0,"id":60,"derived":false},{"id":61,"eClass":"EGenericType"},{"id":62,"eClass":"EGenericType"},{"id":63,"eClass":"EGenericType"},{"id":64,"eClass":"EGenericType"},{"id":65,"eClass":"EGenericType"},{"id":66,"eClass":"EGenericType"},{"id":67,"eClass":"EGenericType"},{"id":68,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"task1","changeable":true,"resolveProxies":true,"lowerBound":1,"id":69,"derived":false},{"id":70,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"task2","changeable":true,"resolveProxies":true,"lowerBound":1,"id":71,"derived":false},{"id":72,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":73,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"lowerBound":0,"iD":false,"id":74,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"openarrivalrate","changeable":true,"lowerBound":0,"iD":false,"id":75,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"priority","changeable":true,"lowerBound":0,"iD":false,"id":76,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"semaphore","changeable":true,"lowerBound":0,"iD":false,"id":77,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"entryphaseactivities","changeable":true,"resolveProxies":true,"lowerBound":0,"id":78,"derived":false},{"id":79,"eClass":"EGenericType"},{"id":80,"eClass":"EGenericType"},{"id":81,"eClass":"EGenericType"},{"id":82,"eClass":"EGenericType"},{"id":83,"eClass":"EGenericType"},{"id":84,"eClass":"EGenericType"},{"id":85,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"entry1","changeable":true,"resolveProxies":true,"lowerBound":1,"id":86,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"activity","changeable":true,"resolveProxies":true,"lowerBound":1,"id":87,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"precedence","changeable":true,"resolveProxies":true,"lowerBound":0,"id":88,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"replyentry","changeable":true,"resolveProxies":true,"lowerBound":0,"id":89,"derived":false},{"id":90,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"taskActivity","changeable":true,"resolveProxies":true,"lowerBound":0,"id":91,"derived":false},{"id":92,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"taskActivityP","changeable":true,"resolveProxies":true,"lowerBound":1,"id":93,"derived":false},{"id":94,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"taskActivityR","changeable":true,"resolveProxies":true,"lowerBound":1,"id":95,"derived":false},{"id":96,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":3,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"activity1","changeable":true,"resolveProxies":true,"lowerBound":1,"id":97,"derived":false},{"id":98,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"entryphaseactivities1","changeable":true,"resolveProxies":true,"lowerBound":0,"id":99,"derived":false},{"id":100,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":101,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"hostdemandmean","changeable":true,"lowerBound":0,"iD":false,"id":102,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":1.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"1","unsettable":false,"transient":false,"unique":true,"name":"hostdemandcvsq","changeable":true,"lowerBound":0,"iD":false,"id":103,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"0","unsettable":false,"transient":false,"unique":true,"name":"thinktime","changeable":true,"lowerBound":0,"iD":false,"id":104,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"0","unsettable":false,"transient":false,"unique":true,"name":"maxservicetime","changeable":true,"lowerBound":0,"iD":false,"id":105,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"callorder","changeable":true,"lowerBound":0,"iD":false,"id":106,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"phase","changeable":true,"lowerBound":0,"iD":false,"id":107,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"boundtoentry","changeable":true,"lowerBound":0,"iD":false,"id":108,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":1.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"1","unsettable":false,"transient":false,"unique":true,"name":"prob","changeable":true,"lowerBound":0,"iD":false,"id":109,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":1.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"1","unsettable":false,"transient":false,"unique":true,"name":"count","changeable":true,"lowerBound":0,"iD":false,"id":110,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"synchcall","changeable":true,"resolveProxies":true,"lowerBound":0,"id":111,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"asynchcall","changeable":true,"resolveProxies":true,"lowerBound":0,"id":112,"derived":false},{"id":113,"eClass":"EGenericType"},{"id":114,"eClass":"EGenericType"},{"id":115,"eClass":"EGenericType"},{"id":116,"eClass":"EGenericType"},{"id":117,"eClass":"EGenericType"},{"id":118,"eClass":"EGenericType"},{"id":119,"eClass":"EGenericType"},{"id":120,"eClass":"EGenericType"},{"id":121,"eClass":"EGenericType"},{"id":122,"eClass":"EGenericType"},{"id":123,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"activitySynchCall","changeable":true,"resolveProxies":true,"lowerBound":1,"id":124,"derived":false},{"id":125,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"activityASynchCall","changeable":true,"resolveProxies":true,"lowerBound":1,"id":126,"derived":false},{"id":127,"eClass":"EGenericType"},{"id":128,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":129,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"pre","changeable":true,"resolveProxies":true,"lowerBound":0,"id":130,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"preor","changeable":true,"resolveProxies":true,"lowerBound":0,"id":131,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"preand","changeable":true,"resolveProxies":true,"lowerBound":0,"id":132,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"post","changeable":true,"resolveProxies":true,"lowerBound":0,"id":133,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"postor","changeable":true,"resolveProxies":true,"lowerBound":0,"id":134,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"postand","changeable":true,"resolveProxies":true,"lowerBound":0,"id":135,"derived":false},{"id":136,"eClass":"EGenericType"},{"id":137,"eClass":"EGenericType"},{"id":138,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"precedence1","changeable":true,"resolveProxies":true,"lowerBound":1,"id":139,"derived":false},{"id":140,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"precedence2","changeable":true,"resolveProxies":true,"lowerBound":1,"id":141,"derived":false},{"id":142,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"precedence3","changeable":true,"resolveProxies":true,"lowerBound":1,"id":143,"derived":false},{"id":144,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"precedence4","changeable":true,"resolveProxies":true,"lowerBound":1,"id":145,"derived":false},{"id":146,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"precedence5","changeable":true,"resolveProxies":true,"lowerBound":1,"id":147,"derived":false},{"id":148,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"precedence6","changeable":true,"resolveProxies":true,"lowerBound":1,"id":149,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":150,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"replyactivity","changeable":true,"resolveProxies":true,"lowerBound":1,"id":151,"derived":false},{"id":152,"eClass":"EGenericType"},{"id":153,"eClass":"EGenericType"},{"id":154,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"replyEntry1","changeable":true,"resolveProxies":true,"lowerBound":1,"id":155,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":156,"derived":false},{"id":157,"eClass":"EGenericType"},{"id":158,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":159,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"dest","changeable":true,"lowerBound":0,"iD":false,"id":160,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"callsmean","changeable":true,"lowerBound":0,"iD":false,"id":161,"derived":false},{"id":162,"eClass":"EGenericType"},{"id":163,"eClass":"EGenericType"},{"id":164,"eClass":"EGenericType"},{"id":165,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":166,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"dest","changeable":true,"lowerBound":0,"iD":false,"id":167,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"callsmean","changeable":true,"lowerBound":0,"iD":false,"id":168,"derived":false},{"id":169,"eClass":"EGenericType"},{"id":170,"eClass":"EGenericType"},{"id":171,"eClass":"EGenericType"},{"id":172,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":173,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":1.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"1","unsettable":false,"transient":false,"unique":true,"name":"prob","changeable":true,"lowerBound":0,"iD":false,"id":174,"derived":false},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"preActivityR","changeable":true,"resolveProxies":true,"lowerBound":0,"id":175,"derived":false},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"preorActivityR","changeable":true,"resolveProxies":true,"lowerBound":0,"id":176,"derived":false},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"preandActivityR","changeable":true,"resolveProxies":true,"lowerBound":0,"id":177,"derived":false},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"postActivityR","changeable":true,"resolveProxies":true,"lowerBound":0,"id":178,"derived":false},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"postorActivityR","changeable":true,"resolveProxies":true,"lowerBound":0,"id":179,"derived":false},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"postandActivityR","changeable":true,"resolveProxies":true,"lowerBound":0,"id":180,"derived":false},{"id":181,"eClass":"EGenericType"},{"id":182,"eClass":"EGenericType"},{"id":183,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"activityRPre","changeable":true,"resolveProxies":true,"lowerBound":1,"id":184,"derived":false},{"id":185,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"activityRPreOr","changeable":true,"resolveProxies":true,"lowerBound":1,"id":186,"derived":false},{"id":187,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"activityRPreAnd","changeable":true,"resolveProxies":true,"lowerBound":1,"id":188,"derived":false},{"id":189,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"activityRPost","changeable":true,"resolveProxies":true,"lowerBound":1,"id":190,"derived":false},{"id":191,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"activityRPostOr","changeable":true,"resolveProxies":true,"lowerBound":1,"id":192,"derived":false},{"id":193,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"activityRPostAnd","changeable":true,"resolveProxies":true,"lowerBound":1,"id":194,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":195,"derived":false},{"id":196,"eClass":"EGenericType"},{"id":197,"eClass":"EGenericType"},{"id":198,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":199,"derived":false},{"id":200,"eClass":"EGenericType"},{"id":201,"eClass":"EGenericType"},{"id":202,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":203,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"0","unsettable":false,"transient":false,"unique":true,"name":"quorum","changeable":true,"lowerBound":0,"iD":false,"id":204,"derived":false},{"id":205,"eClass":"EGenericType"},{"id":206,"eClass":"EGenericType"},{"id":207,"eClass":"EGenericType"},{"id":208,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":209,"derived":false},{"id":210,"eClass":"EGenericType"},{"id":211,"eClass":"EGenericType"},{"id":212,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":213,"derived":false},{"id":214,"eClass":"EGenericType"},{"id":215,"eClass":"EGenericType"},{"id":216,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":217,"derived":false},{"id":218,"eClass":"EGenericType"},{"id":219,"eClass":"EGenericType"},{"id":220,"eClass":"EGenericType"},{"name":"default","id":221,"value":0,"literal":"default","eClass":"EEnumLiteral"},{"name":"fcfs","id":222,"value":1,"literal":"fcfs","eClass":"EEnumLiteral"},{"name":"hol","id":223,"value":2,"literal":"hol","eClass":"EEnumLiteral"},{"name":"pp","id":224,"value":3,"literal":"pp","eClass":"EEnumLiteral"},{"name":"rand","id":225,"value":4,"literal":"rand","eClass":"EEnumLiteral"},{"name":"inf","id":226,"value":5,"literal":"inf","eClass":"EEnumLiteral"},{"name":"pshol","id":227,"value":6,"literal":"pshol","eClass":"EEnumLiteral"},{"name":"pspp","id":228,"value":7,"literal":"pspp","eClass":"EEnumLiteral"},{"name":"cfs","id":229,"value":8,"literal":"cfs","eClass":"EEnumLiteral"},{"name":"ref","id":230,"value":9,"literal":"ref","eClass":"EEnumLiteral"},{"name":"pri","id":231,"value":10,"literal":"pri","eClass":"EEnumLiteral"},{"name":"burst","id":232,"value":11,"literal":"burst","eClass":"EEnumLiteral"},{"name":"poll","id":233,"value":12,"literal":"poll","eClass":"EEnumLiteral"},{"name":"semaphore","id":234,"value":13,"literal":"semaphore","eClass":"EEnumLiteral"},{"name":"default","id":235,"value":0,"literal":"default","eClass":"EEnumLiteral"},{"name":"ref","id":236,"value":1,"literal":"ref","eClass":"EEnumLiteral"},{"name":"fcfs","id":237,"value":2,"literal":"fcfs","eClass":"EEnumLiteral"},{"name":"hol","id":238,"value":3,"literal":"hol","eClass":"EEnumLiteral"},{"name":"inf","id":239,"value":4,"literal":"inf","eClass":"EEnumLiteral"},{"name":"pri","id":240,"value":5,"literal":"pri","eClass":"EEnumLiteral"},{"name":"burst","id":241,"value":6,"literal":"burst","eClass":"EEnumLiteral"},{"name":"poll","id":242,"value":7,"literal":"poll","eClass":"EEnumLiteral"},{"name":"semaphore","id":243,"value":8,"literal":"semaphore","eClass":"EEnumLiteral"},{"name":"default","id":244,"value":0,"literal":"default","eClass":"EEnumLiteral"},{"name":"graph","id":245,"value":1,"literal":"graph","eClass":"EEnumLiteral"},{"name":"PH1PH2","id":246,"value":2,"literal":"PH1PH2","eClass":"EEnumLiteral"},{"name":"NONE","id":247,"value":3,"literal":"NONE","eClass":"EEnumLiteral"},{"name":"default","id":248,"value":0,"literal":"default","eClass":"EEnumLiteral"},{"name":"signal","id":249,"value":1,"literal":"signal","eClass":"EEnumLiteral"},{"name":"wait","id":250,"value":2,"literal":"wait","eClass":"EEnumLiteral"},{"name":"default","id":251,"value":0,"literal":"default","eClass":"EEnumLiteral"},{"name":"stochastic","id":252,"value":1,"literal":"stochastic","eClass":"EEnumLiteral"},{"name":"deterministic","id":253,"value":2,"literal":"deterministic","eClass":"EEnumLiteral"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":0,"target":8},{"source":0,"target":9},{"source":0,"target":10},{"source":0,"target":11},{"source":0,"target":12},{"source":0,"target":13},{"source":0,"target":14},{"source":0,"target":15},{"source":0,"target":16},{"source":0,"target":17},{"source":0,"target":18},{"source":0,"target":19},{"source":0,"target":20},{"source":0,"target":21},{"source":0,"target":22},{"source":0,"target":23},{"source":0,"target":24},{"source":1,"target":0},{"source":1,"target":25},{"source":1,"target":26},{"source":1,"target":27},{"source":1,"target":28},{"source":1,"target":29},{"source":1,"target":30},{"source":25,"target":31},{"source":25,"target":1},{"source":26,"target":32},{"source":26,"target":1},{"source":27,"target":33},{"source":27,"target":1},{"source":28,"target":34},{"source":28,"target":1},{"source":29,"target":35},{"source":29,"target":1},{"source":30,"target":2},{"source":30,"target":36},{"source":30,"target":1},{"source":36,"target":2},{"source":2,"target":0},{"source":2,"target":37},{"source":2,"target":38},{"source":2,"target":39},{"source":2,"target":40},{"source":2,"target":41},{"source":2,"target":42},{"source":2,"target":43},{"source":37,"target":44},{"source":37,"target":2},{"source":38,"target":45},{"source":38,"target":2},{"source":39,"target":46},{"source":39,"target":2},{"source":40,"target":20},{"source":40,"target":47},{"source":40,"target":2},{"source":47,"target":20},{"source":41,"target":48},{"source":41,"target":2},{"source":42,"target":49},{"source":42,"target":2},{"source":43,"target":3},{"source":43,"target":50},{"source":43,"target":2},{"source":43,"target":51},{"source":50,"target":3},{"source":3,"target":0},{"source":3,"target":52},{"source":3,"target":53},{"source":3,"target":54},{"source":3,"target":55},{"source":3,"target":56},{"source":3,"target":57},{"source":3,"target":58},{"source":3,"target":59},{"source":3,"target":60},{"source":3,"target":51},{"source":52,"target":61},{"source":52,"target":3},{"source":53,"target":62},{"source":53,"target":3},{"source":54,"target":63},{"source":54,"target":3},{"source":55,"target":64},{"source":55,"target":3},{"source":56,"target":21},{"source":56,"target":65},{"source":56,"target":3},{"source":65,"target":21},{"source":57,"target":66},{"source":57,"target":3},{"source":58,"target":67},{"source":58,"target":3},{"source":59,"target":4},{"source":59,"target":68},{"source":59,"target":3},{"source":59,"target":69},{"source":68,"target":4},{"source":60,"target":5},{"source":60,"target":70},{"source":60,"target":3},{"source":60,"target":71},{"source":70,"target":5},{"source":51,"target":2},{"source":51,"target":72},{"source":51,"target":3},{"source":51,"target":43},{"source":72,"target":2},{"source":4,"target":0},{"source":4,"target":73},{"source":4,"target":74},{"source":4,"target":75},{"source":4,"target":76},{"source":4,"target":77},{"source":4,"target":69},{"source":4,"target":78},{"source":73,"target":79},{"source":73,"target":4},{"source":74,"target":22},{"source":74,"target":80},{"source":74,"target":4},{"source":80,"target":22},{"source":75,"target":81},{"source":75,"target":4},{"source":76,"target":82},{"source":76,"target":4},{"source":77,"target":23},{"source":77,"target":83},{"source":77,"target":4},{"source":83,"target":23},{"source":69,"target":3},{"source":69,"target":84},{"source":69,"target":4},{"source":69,"target":59},{"source":84,"target":3},{"source":78,"target":6},{"source":78,"target":85},{"source":78,"target":4},{"source":78,"target":86},{"source":85,"target":6},{"source":5,"target":0},{"source":5,"target":87},{"source":5,"target":88},{"source":5,"target":89},{"source":5,"target":71},{"source":87,"target":7},{"source":87,"target":90},{"source":87,"target":5},{"source":87,"target":91},{"source":90,"target":7},{"source":88,"target":8},{"source":88,"target":92},{"source":88,"target":5},{"source":88,"target":93},{"source":92,"target":8},{"source":89,"target":9},{"source":89,"target":94},{"source":89,"target":5},{"source":89,"target":95},{"source":94,"target":9},{"source":71,"target":3},{"source":71,"target":96},{"source":71,"target":5},{"source":71,"target":60},{"source":96,"target":3},{"source":6,"target":0},{"source":6,"target":97},{"source":6,"target":86},{"source":97,"target":7},{"source":97,"target":98},{"source":97,"target":6},{"source":97,"target":99},{"source":98,"target":7},{"source":86,"target":4},{"source":86,"target":100},{"source":86,"target":6},{"source":86,"target":78},{"source":100,"target":4},{"source":7,"target":0},{"source":7,"target":101},{"source":7,"target":102},{"source":7,"target":103},{"source":7,"target":104},{"source":7,"target":105},{"source":7,"target":106},{"source":7,"target":107},{"source":7,"target":108},{"source":7,"target":109},{"source":7,"target":110},{"source":7,"target":111},{"source":7,"target":112},{"source":7,"target":91},{"source":7,"target":99},{"source":101,"target":113},{"source":101,"target":7},{"source":102,"target":114},{"source":102,"target":7},{"source":103,"target":115},{"source":103,"target":7},{"source":104,"target":116},{"source":104,"target":7},{"source":105,"target":117},{"source":105,"target":7},{"source":106,"target":24},{"source":106,"target":118},{"source":106,"target":7},{"source":118,"target":24},{"source":107,"target":119},{"source":107,"target":7},{"source":108,"target":120},{"source":108,"target":7},{"source":109,"target":121},{"source":109,"target":7},{"source":110,"target":122},{"source":110,"target":7},{"source":111,"target":11},{"source":111,"target":123},{"source":111,"target":7},{"source":111,"target":124},{"source":123,"target":11},{"source":112,"target":12},{"source":112,"target":125},{"source":112,"target":7},{"source":112,"target":126},{"source":125,"target":12},{"source":91,"target":5},{"source":91,"target":127},{"source":91,"target":7},{"source":91,"target":87},{"source":127,"target":5},{"source":99,"target":6},{"source":99,"target":128},{"source":99,"target":7},{"source":99,"target":97},{"source":128,"target":6},{"source":8,"target":0},{"source":8,"target":129},{"source":8,"target":93},{"source":8,"target":130},{"source":8,"target":131},{"source":8,"target":132},{"source":8,"target":133},{"source":8,"target":134},{"source":8,"target":135},{"source":129,"target":136},{"source":129,"target":8},{"source":93,"target":5},{"source":93,"target":137},{"source":93,"target":8},{"source":93,"target":88},{"source":137,"target":5},{"source":130,"target":14},{"source":130,"target":138},{"source":130,"target":8},{"source":130,"target":139},{"source":138,"target":14},{"source":131,"target":15},{"source":131,"target":140},{"source":131,"target":8},{"source":131,"target":141},{"source":140,"target":15},{"source":132,"target":16},{"source":132,"target":142},{"source":132,"target":8},{"source":132,"target":143},{"source":142,"target":16},{"source":133,"target":17},{"source":133,"target":144},{"source":133,"target":8},{"source":133,"target":145},{"source":144,"target":17},{"source":134,"target":18},{"source":134,"target":146},{"source":134,"target":8},{"source":134,"target":147},{"source":146,"target":18},{"source":135,"target":19},{"source":135,"target":148},{"source":135,"target":8},{"source":135,"target":149},{"source":148,"target":19},{"source":9,"target":0},{"source":9,"target":150},{"source":9,"target":95},{"source":9,"target":151},{"source":150,"target":152},{"source":150,"target":9},{"source":95,"target":5},{"source":95,"target":153},{"source":95,"target":9},{"source":95,"target":89},{"source":153,"target":5},{"source":151,"target":10},{"source":151,"target":154},{"source":151,"target":9},{"source":151,"target":155},{"source":154,"target":10},{"source":10,"target":0},{"source":10,"target":156},{"source":10,"target":155},{"source":156,"target":157},{"source":156,"target":10},{"source":155,"target":9},{"source":155,"target":158},{"source":155,"target":10},{"source":155,"target":151},{"source":158,"target":9},{"source":11,"target":0},{"source":11,"target":159},{"source":11,"target":160},{"source":11,"target":161},{"source":11,"target":124},{"source":159,"target":162},{"source":159,"target":11},{"source":160,"target":163},{"source":160,"target":11},{"source":161,"target":164},{"source":161,"target":11},{"source":124,"target":7},{"source":124,"target":165},{"source":124,"target":11},{"source":124,"target":111},{"source":165,"target":7},{"source":12,"target":0},{"source":12,"target":166},{"source":12,"target":167},{"source":12,"target":168},{"source":12,"target":126},{"source":166,"target":169},{"source":166,"target":12},{"source":167,"target":170},{"source":167,"target":12},{"source":168,"target":171},{"source":168,"target":12},{"source":126,"target":7},{"source":126,"target":172},{"source":126,"target":12},{"source":126,"target":112},{"source":172,"target":7},{"source":13,"target":0},{"source":13,"target":173},{"source":13,"target":174},{"source":13,"target":175},{"source":13,"target":176},{"source":13,"target":177},{"source":13,"target":178},{"source":13,"target":179},{"source":13,"target":180},{"source":173,"target":181},{"source":173,"target":13},{"source":174,"target":182},{"source":174,"target":13},{"source":175,"target":14},{"source":175,"target":183},{"source":175,"target":13},{"source":175,"target":184},{"source":183,"target":14},{"source":176,"target":15},{"source":176,"target":185},{"source":176,"target":13},{"source":176,"target":186},{"source":185,"target":15},{"source":177,"target":16},{"source":177,"target":187},{"source":177,"target":13},{"source":177,"target":188},{"source":187,"target":16},{"source":178,"target":17},{"source":178,"target":189},{"source":178,"target":13},{"source":178,"target":190},{"source":189,"target":17},{"source":179,"target":18},{"source":179,"target":191},{"source":179,"target":13},{"source":179,"target":192},{"source":191,"target":18},{"source":180,"target":19},{"source":180,"target":193},{"source":180,"target":13},{"source":180,"target":194},{"source":193,"target":19},{"source":14,"target":0},{"source":14,"target":195},{"source":14,"target":139},{"source":14,"target":184},{"source":195,"target":196},{"source":195,"target":14},{"source":139,"target":8},{"source":139,"target":197},{"source":139,"target":14},{"source":139,"target":130},{"source":197,"target":8},{"source":184,"target":13},{"source":184,"target":198},{"source":184,"target":14},{"source":184,"target":175},{"source":198,"target":13},{"source":15,"target":0},{"source":15,"target":199},{"source":15,"target":141},{"source":15,"target":186},{"source":199,"target":200},{"source":199,"target":15},{"source":141,"target":8},{"source":141,"target":201},{"source":141,"target":15},{"source":141,"target":131},{"source":201,"target":8},{"source":186,"target":13},{"source":186,"target":202},{"source":186,"target":15},{"source":186,"target":176},{"source":202,"target":13},{"source":16,"target":0},{"source":16,"target":203},{"source":16,"target":204},{"source":16,"target":143},{"source":16,"target":188},{"source":203,"target":205},{"source":203,"target":16},{"source":204,"target":206},{"source":204,"target":16},{"source":143,"target":8},{"source":143,"target":207},{"source":143,"target":16},{"source":143,"target":132},{"source":207,"target":8},{"source":188,"target":13},{"source":188,"target":208},{"source":188,"target":16},{"source":188,"target":177},{"source":208,"target":13},{"source":17,"target":0},{"source":17,"target":209},{"source":17,"target":145},{"source":17,"target":190},{"source":209,"target":210},{"source":209,"target":17},{"source":145,"target":8},{"source":145,"target":211},{"source":145,"target":17},{"source":145,"target":133},{"source":211,"target":8},{"source":190,"target":13},{"source":190,"target":212},{"source":190,"target":17},{"source":190,"target":178},{"source":212,"target":13},{"source":18,"target":0},{"source":18,"target":213},{"source":18,"target":147},{"source":18,"target":192},{"source":213,"target":214},{"source":213,"target":18},{"source":147,"target":8},{"source":147,"target":215},{"source":147,"target":18},{"source":147,"target":134},{"source":215,"target":8},{"source":192,"target":13},{"source":192,"target":216},{"source":192,"target":18},{"source":192,"target":179},{"source":216,"target":13},{"source":19,"target":0},{"source":19,"target":217},{"source":19,"target":149},{"source":19,"target":194},{"source":217,"target":218},{"source":217,"target":19},{"source":149,"target":8},{"source":149,"target":219},{"source":149,"target":19},{"source":149,"target":135},{"source":219,"target":8},{"source":194,"target":13},{"source":194,"target":220},{"source":194,"target":19},{"source":194,"target":180},{"source":220,"target":13},{"source":20,"target":0},{"source":20,"target":221},{"source":20,"target":222},{"source":20,"target":223},{"source":20,"target":224},{"source":20,"target":225},{"source":20,"target":226},{"source":20,"target":227},{"source":20,"target":228},{"source":20,"target":229},{"source":20,"target":230},{"source":20,"target":231},{"source":20,"target":232},{"source":20,"target":233},{"source":20,"target":234},{"source":221,"target":20},{"source":222,"target":20},{"source":223,"target":20},{"source":224,"target":20},{"source":225,"target":20},{"source":226,"target":20},{"source":227,"target":20},{"source":228,"target":20},{"source":229,"target":20},{"source":230,"target":20},{"source":231,"target":20},{"source":232,"target":20},{"source":233,"target":20},{"source":234,"target":20},{"source":21,"target":0},{"source":21,"target":235},{"source":21,"target":236},{"source":21,"target":237},{"source":21,"target":238},{"source":21,"target":239},{"source":21,"target":240},{"source":21,"target":241},{"source":21,"target":242},{"source":21,"target":243},{"source":235,"target":21},{"source":236,"target":21},{"source":237,"target":21},{"source":238,"target":21},{"source":239,"target":21},{"source":240,"target":21},{"source":241,"target":21},{"source":242,"target":21},{"source":243,"target":21},{"source":22,"target":0},{"source":22,"target":244},{"source":22,"target":245},{"source":22,"target":246},{"source":22,"target":247},{"source":244,"target":22},{"source":245,"target":22},{"source":246,"target":22},{"source":247,"target":22},{"source":23,"target":0},{"source":23,"target":248},{"source":23,"target":249},{"source":23,"target":250},{"source":248,"target":23},{"source":249,"target":23},{"source":250,"target":23},{"source":24,"target":0},{"source":24,"target":251},{"source":24,"target":252},{"source":24,"target":253},{"source":251,"target":24},{"source":252,"target":24},{"source":253,"target":24}],"multigraph":true} |
false | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0"
xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="services"
nsURI="http://www.netxforge.com/13042011/services" nsPrefix="services">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="
		


			Network Data schema Copyright 2008 The schema uses
			ecore
			references syntax, but should easily map into an SQL schema.
			The
			ecore
			references, are mapped into ORM specific DLL (See
			Hibernate or
			other
			ORM. EMF/Hibernate
			however uses a custom mechanism.

			Don't use
			the
			word
			"Item", as this is appended to the Object
			name in the EMF
			edit
			model.
			
			Validation with pattern is not used, considering the limited capabilities of XSD patterns. 
			
		


			Network Data schema Copyright 2008 The schema uses
			ecore
			references syntax, but should easily map into an SQL schema.
			The
			ecore
			references, are mapped into ORM specific DLL (See
			Hibernate or
			other
			ORM. EMF/Hibernate
			however uses a custom mechanism.

			Don't use
			the
			word
			"Item", as this is appended to the Object
			name in the EMF
			edit
			model.
			
			Validation with pattern is not used, considering the limited capabilities of XSD patterns. 
			
		"/>
</eAnnotations>
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore">
<details key="validationDelegates" value="http://www.eclipse.org/emf/2002/Ecore/OCL
http://www.eclipse.org/emf/2002/Ecore/OCL"/>
<details key="settingDelegates" value="http://www.eclipse.org/emf/2002/Ecore/OCL
http://www.eclipse.org/emf/2002/Ecore/OCL"/>
<details key="invocationDelegates" value="http://www.eclipse.org/emf/2002/Ecore/OCL
http://www.eclipse.org/emf/2002/Ecore/OCL"/>
</eAnnotations>
<eClassifiers xsi:type="ecore:EClass" name="CFSService" eSuperTypes="#//Service">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="A type representing a Customer Facing Service.
			"/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="CFSService"/>
<details key="kind" value="elementOnly"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="provider" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The Provider attributes holds the entity responsible for providing the service."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="Provider"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="scenario" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The Scenario attribute, holds a scenario for the service. 

Examples:
1. SMS Mobile 2 Mobile
						"/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="Scenario"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CIID">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="A type representing a Configuration Item (CI) Identifier.
The CI is used within Configuration Management to identify a configuration item.
It can be used as an identifier to correlate objects to legacy systems."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="CI-ID"/>
<details key="kind" value="empty"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="commonCIID" eType="ecore:EDataType generics.ecore#//Name255">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The CommonCI_ID attribute holds a Unique number indicator in international CMS
				"/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="CommonCI_ID"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="localCIID" eType="ecore:EDataType generics.ecore#//Name255">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The LocalCI_ID attribute holds a Unique identifier indicator in a local CMS (CI-ID)
				"/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="localCI_ID"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="RFSService" eSuperTypes="#//Service">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="A type representing a Resource Facing Service.
			"/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="RFSService"/>
<details key="kind" value="elementOnly"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="nodes" upperBound="-1"
eType="ecore:EClass operators.ecore#//Node">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The Nodes reference, references 0 or more Node types"/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="Nodes"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="toleranceRefs" upperBound="-1"
eType="ecore:EClass library.ecore#//Tolerance">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The ToleranceRefs reference, refers to 0 or more Tolerance types."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="ToleranceRefs"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="functionalCategory" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The functionalCategory attribute holds the category of the service."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="functionalCategory"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Service">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="A type representing a service. A Service has a name, a Description, a Category and other information."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="Service"/>
<details key="kind" value="elementOnly"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="cIID" upperBound="-1" eType="#//CIID"
containment="true" resolveProxies="false">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="
						The CIID reference, contains 0 or more CI-ID
						type. This is to map capacity management with
						other processes in the Service Assurance domain.
						(Incident, Problem and Change management).
					"/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="CIID"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="services" upperBound="-1"
eType="#//Service" containment="true" resolveProxies="false">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="
						The Services reference, contains 0 or more
						Service types.
					"/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="Services"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="serviceForecasts" upperBound="-1"
eType="#//ServiceForecast" containment="true" resolveProxies="false">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="
						The ServiceForecasts reference, contains 0 or
						more ServiceForecast types.
					"/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="ServiceForecasts"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="serviceMonitors" upperBound="-1"
eType="#//ServiceMonitor" containment="true" resolveProxies="false">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="
						The ServiceMonitors reference, contains 0 or
						more ServiceMonitor types.
					"/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="ServiceMonitors"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="serviceUserRefs" upperBound="-1"
eType="#//ServiceUser">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="
						The ServiceUserRefs reference, references 0 or
						more ServiceUserRef types.
					"/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="ServiceUserRefs"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="serviceDistribution" eType="#//ServiceDistribution"
containment="true" resolveProxies="false">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The ServiceDistrubution reference, contains 0 or 1 ServiceDistribution type"/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="ServiceDistribution"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="serviceCategory" eType="ecore:EDataType generics.ecore#//Name255">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="CI Group / OM Service Group (Service Category) The Service Category is used for a logical cluster of
the service

Examples: 
1. Voice/Telephony (peer to peer) 
2. Voice and Video conferencing (multi peer) 
3. Content delivery Data delivery Messaging 
4. Customer Self Administration
5. Customer Care Administration"/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="ServiceCategory"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="serviceClass" eType="#//ServiceClassType"
unsettable="true">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="Offered classes of provided service: Gold/Silver/Bronze This is implicite the business priority
				"/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="ServiceClass"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="serviceDescription" eType="ecore:EDataType generics.ecore#//Description2000">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The ServiceDescription attribute, holds the Description of the service.
 			"/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="ServiceDescription"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="serviceName" eType="ecore:EDataType generics.ecore#//Name255">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The ServiceName attribute, holds the name of the service.
				"/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="ServiceName"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="ServiceClassType">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="ServiceClass_._type"/>
</eAnnotations>
<eLiterals name="Gold"/>
<eLiterals name="Silver" value="1"/>
<eLiterals name="Bronze" value="2"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="ServiceClassTypeObject" instanceClassName="org.eclipse.emf.common.util.Enumerator">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="ServiceClass_._type:Object"/>
<details key="baseType" value="ServiceClass_._type"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ServiceDistribution">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="A type representing how the service is distributed across the Nodes. 
How the service is distributed over network depends on various factors. 

1. Geographical spread of the service. 
2. Service distribution mechanism implemented for functions. 
3. Overall network conditions i.e. load or specific node conditions, and measures for overload. 

The service distribution is derived from the node resources. The service distribution contains therefor the definition
of "service resources" and expressions to populate these resources. (The expression is expected to add node resource values together 
and store the result in the defined Service Resource )

TODO, The distribution should be organized by Function in order to present it as such. As the resource, is likely a copy of the 
a Function resource, we could perhaps keep a reference to the node Function, from which the service resource is derived through the 
expression. Another option, is to resolve the Function, from the resource name, but this would require additional lookups."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="ServiceDistribution"/>
<details key="kind" value="elementOnly"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="serviceResources" upperBound="-1"
eType="ecore:EClass library.ecore#//NetXResource" containment="true" resolveProxies="false">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The ServiceResource reference, contains 0 or more Resource types."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="ServiceResources"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="expressionRefs" upperBound="-1"
eType="ecore:EClass library.ecore#//Expression">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The ServiceDistributionExpressionRefs reference, refers to 0 or more Expression types.
			"/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="ExpressionRefs"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ServiceForecast">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="A type representing a ServiceForecast. A ServiceForecast is a forecast of a service, which 
impacts the consumption of resources when using a service. The Forecast applies to a period, and contains Service forecast users.
The forecast also has a name and a revision"/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="ServiceForecast"/>
<details key="kind" value="elementOnly"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="period" eType="ecore:EClass generics.ecore#//DateTimeRange"
containment="true" resolveProxies="false">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The Period reference, contains 0 or 1 DatetimeRange types.
				"/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="Period"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="serviceForecastUsers" upperBound="-1"
eType="#//ServiceForecastUsers" containment="true" resolveProxies="false">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The ServiceUser reference, contains 0 or more ServiceForecastUsers type."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="ServiceForecastUsers"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="resourceForecasts" upperBound="-1"
eType="ecore:EClass operators.ecore#//ResourceForecast" containment="true"
resolveProxies="false">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The ResourceForcasts reference, contains 0 or more ResourceForcast type."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="ResourceForecasts"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType generics.ecore#//Name255">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The Name attribute holds the name of the ServiceForecast."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="Name"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="revision" eType="ecore:EDataType generics.ecore#//Name255">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The Revision attribute holds the revision of this forecast."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="Revision"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ServiceForecastUsers">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="A type representing a ServiceForecastUser. A ServiceForecastUser is a user of a service, which
is forecasted over time. It has values and references a ServiceUser.
			"/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="ServiceForecastUsers"/>
<details key="kind" value="elementOnly"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="userValues" upperBound="-1"
eType="ecore:EClass generics.ecore#//Value" containment="true" resolveProxies="false">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The UserValues reference, contains expected service user values for a service.
					"/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="UserValues"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="serviceUserRef" eType="#//ServiceUser">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The ServiceUser reference, references 0 or 1 ServiceUser type."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="ServiceUserRef"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ServiceMonitor">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="A type representing a ServiceMonitor. A ServiceMonitoris a monitoring run for a service, which 
has consumed resources. The Monitor applies to a period. The monitor has a name and a revision.

The Monitor can be seen as a window covering a period, for the service, and underlying resources.
			"/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="ServiceMonitor"/>
<details key="kind" value="elementOnly"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="period" eType="ecore:EClass generics.ecore#//DateTimeRange"
containment="true" resolveProxies="false">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The Period reference, contains 0 or 1 DatetimeRange types.
				"/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="Period"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="resourceMonitors" upperBound="-1"
eType="ecore:EClass operators.ecore#//ResourceMonitor" containment="true"
resolveProxies="false">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The ResourceMonitors reference, contains 0 or more ResourceForcast type."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="ResourceMonitors"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType generics.ecore#//Name255">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The Name attribute holds the name of the ServiceMonitor."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="Name"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="revision" eType="ecore:EDataType generics.ecore#//Name255">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The Revision attribute holds the revision of this monitor."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="Revision"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ServiceProfile">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="A type representing the profile of a service. The Service profile can be generic for the service or location specific. 
The profile contains service parameters which drive the utilization of resources on elements tight to this
service."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="ServiceProfile"/>
<details key="kind" value="elementOnly"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="profileResources" upperBound="-1"
eType="ecore:EClass library.ecore#//NetXResource" containment="true" resolveProxies="false">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The ProfileResource reference, contains 0 or more Resource types."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="ProfileResources"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType generics.ecore#//Name255">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The Name attribute holds the name of the ServiceProfile."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="Name"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ServiceUser">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="A type representing a ServiceUser. A ServiceUser is a user of a service, which impacts the consumption of
resources when using a service. A ServiceUser has a profile, and a name. 

Examples: 
1. A Service user postpaid subscriber is defined. It's profile is a postpaid subscriber profile with several
values for. 				
				
			"/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="ServiceUser"/>
<details key="kind" value="elementOnly"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="serviceProfile" eType="#//ServiceProfile"
containment="true" resolveProxies="false">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The ServiceProfile reference, contains 0 or 1 ServiceProfile type."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="ServiceProfile"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="expressionRefs" upperBound="-1"
eType="ecore:EClass library.ecore#//Expression">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The ExpressionRefs reference, refers to 0 or more Expression types.
			"/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="ExpressionRefs"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType generics.ecore#//Name255">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The Name attribute holds the name of the ServiceUser."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="Name"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
</ecore:EPackage>
| github:ecore:/data/dzonekl/netxstudio/model/com.netxforge.netxstudio.models/models/emf/13042011/services.ecore | ecore | services
CFSService
provider
scenario
CIID
commonCIID
localCIID
RFSService
nodes
toleranceRefs
functionalCategory
Service
cIID
services
serviceForecasts
serviceMonitors
serviceUserRefs
serviceDistribution
serviceCategory
serviceClass
serviceDescription
serviceName
ServiceClassType
Gold
Gold
Silver
Silver
Bronze
Bronze
ServiceClassTypeObject
org.eclipse.emf.common.util.Enumerator
org.eclipse.emf.common.util.Enumerator
ServiceDistribution
serviceResources
expressionRefs
ServiceForecast
period
serviceForecastUsers
resourceForecasts
name
revision
ServiceForecastUsers
userValues
serviceUserRef
ServiceMonitor
period
resourceMonitors
name
revision
ServiceProfile
profileResources
name
ServiceUser
serviceProfile
expressionRefs
name | null | {"directed":true,"nodes":[{"nsPrefix":"services","nsURI":"http://www.netxforge.com/13042011/services","name":"services","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CFSService","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CIID","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RFSService","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Service","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"ServiceClassType","instanceClass":null,"id":5,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":"org.eclipse.emf.common.util.Enumerator","defaultValue":null,"instanceClassName":"org.eclipse.emf.common.util.Enumerator","name":"ServiceClassTypeObject","instanceClass":"org.eclipse.emf.common.util.Enumerator","id":6,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ServiceDistribution","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ServiceForecast","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ServiceForecastUsers","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ServiceMonitor","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ServiceProfile","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ServiceUser","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"provider","changeable":true,"lowerBound":0,"iD":false,"id":13,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"scenario","changeable":true,"lowerBound":0,"iD":false,"id":14,"derived":false},{"id":15,"eClass":"EGenericType"},{"id":16,"eClass":"EGenericType"},{"id":17,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"commonCIID","changeable":true,"lowerBound":0,"iD":false,"id":18,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"localCIID","changeable":true,"lowerBound":0,"iD":false,"id":19,"derived":false},{"id":20,"eClass":"EGenericType"},{"id":21,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"nodes","changeable":true,"resolveProxies":true,"lowerBound":0,"id":22,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"toleranceRefs","changeable":true,"resolveProxies":true,"lowerBound":0,"id":23,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"functionalCategory","changeable":true,"lowerBound":0,"iD":false,"id":24,"derived":false},{"id":25,"eClass":"EGenericType"},{"id":26,"eClass":"EGenericType"},{"id":27,"eClass":"EGenericType"},{"id":28,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"cIID","changeable":true,"resolveProxies":false,"lowerBound":0,"id":29,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"services","changeable":true,"resolveProxies":false,"lowerBound":0,"id":30,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"serviceForecasts","changeable":true,"resolveProxies":false,"lowerBound":0,"id":31,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"serviceMonitors","changeable":true,"resolveProxies":false,"lowerBound":0,"id":32,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"serviceUserRefs","changeable":true,"resolveProxies":true,"lowerBound":0,"id":33,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"serviceDistribution","changeable":true,"resolveProxies":false,"lowerBound":0,"id":34,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"serviceCategory","changeable":true,"lowerBound":0,"iD":false,"id":35,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":true,"name":"serviceClass","changeable":true,"lowerBound":0,"iD":false,"id":36,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"serviceDescription","changeable":true,"lowerBound":0,"iD":false,"id":37,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"serviceName","changeable":true,"lowerBound":0,"iD":false,"id":38,"derived":false},{"id":39,"eClass":"EGenericType"},{"id":40,"eClass":"EGenericType"},{"id":41,"eClass":"EGenericType"},{"id":42,"eClass":"EGenericType"},{"id":43,"eClass":"EGenericType"},{"id":44,"eClass":"EGenericType"},{"id":45,"eClass":"EGenericType"},{"id":46,"eClass":"EGenericType"},{"id":47,"eClass":"EGenericType"},{"id":48,"eClass":"EGenericType"},{"name":"Gold","id":49,"value":0,"literal":"Gold","eClass":"EEnumLiteral"},{"name":"Silver","id":50,"value":1,"literal":"Silver","eClass":"EEnumLiteral"},{"name":"Bronze","id":51,"value":2,"literal":"Bronze","eClass":"EEnumLiteral"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"serviceResources","changeable":true,"resolveProxies":false,"lowerBound":0,"id":52,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"expressionRefs","changeable":true,"resolveProxies":true,"lowerBound":0,"id":53,"derived":false},{"id":54,"eClass":"EGenericType"},{"id":55,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"period","changeable":true,"resolveProxies":false,"lowerBound":0,"id":56,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"serviceForecastUsers","changeable":true,"resolveProxies":false,"lowerBound":0,"id":57,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"resourceForecasts","changeable":true,"resolveProxies":false,"lowerBound":0,"id":58,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":59,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"revision","changeable":true,"lowerBound":0,"iD":false,"id":60,"derived":false},{"id":61,"eClass":"EGenericType"},{"id":62,"eClass":"EGenericType"},{"id":63,"eClass":"EGenericType"},{"id":64,"eClass":"EGenericType"},{"id":65,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"userValues","changeable":true,"resolveProxies":false,"lowerBound":0,"id":66,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"serviceUserRef","changeable":true,"resolveProxies":true,"lowerBound":0,"id":67,"derived":false},{"id":68,"eClass":"EGenericType"},{"id":69,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"period","changeable":true,"resolveProxies":false,"lowerBound":0,"id":70,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"resourceMonitors","changeable":true,"resolveProxies":false,"lowerBound":0,"id":71,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":72,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"revision","changeable":true,"lowerBound":0,"iD":false,"id":73,"derived":false},{"id":74,"eClass":"EGenericType"},{"id":75,"eClass":"EGenericType"},{"id":76,"eClass":"EGenericType"},{"id":77,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"profileResources","changeable":true,"resolveProxies":false,"lowerBound":0,"id":78,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":79,"derived":false},{"id":80,"eClass":"EGenericType"},{"id":81,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"serviceProfile","changeable":true,"resolveProxies":false,"lowerBound":0,"id":82,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"expressionRefs","changeable":true,"resolveProxies":true,"lowerBound":0,"id":83,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":84,"derived":false},{"id":85,"eClass":"EGenericType"},{"id":86,"eClass":"EGenericType"},{"id":87,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":0,"target":8},{"source":0,"target":9},{"source":0,"target":10},{"source":0,"target":11},{"source":0,"target":12},{"source":1,"target":0},{"source":1,"target":4},{"source":1,"target":13},{"source":1,"target":14},{"source":1,"target":15},{"source":13,"target":16},{"source":13,"target":1},{"source":14,"target":17},{"source":14,"target":1},{"source":15,"target":4},{"source":2,"target":0},{"source":2,"target":18},{"source":2,"target":19},{"source":18,"target":20},{"source":18,"target":2},{"source":19,"target":21},{"source":19,"target":2},{"source":3,"target":0},{"source":3,"target":4},{"source":3,"target":22},{"source":3,"target":23},{"source":3,"target":24},{"source":3,"target":25},{"source":22,"target":26},{"source":22,"target":3},{"source":23,"target":27},{"source":23,"target":3},{"source":24,"target":28},{"source":24,"target":3},{"source":25,"target":4},{"source":4,"target":0},{"source":4,"target":29},{"source":4,"target":30},{"source":4,"target":31},{"source":4,"target":32},{"source":4,"target":33},{"source":4,"target":34},{"source":4,"target":35},{"source":4,"target":36},{"source":4,"target":37},{"source":4,"target":38},{"source":29,"target":2},{"source":29,"target":39},{"source":29,"target":4},{"source":39,"target":2},{"source":30,"target":4},{"source":30,"target":40},{"source":30,"target":4},{"source":40,"target":4},{"source":31,"target":8},{"source":31,"target":41},{"source":31,"target":4},{"source":41,"target":8},{"source":32,"target":10},{"source":32,"target":42},{"source":32,"target":4},{"source":42,"target":10},{"source":33,"target":12},{"source":33,"target":43},{"source":33,"target":4},{"source":43,"target":12},{"source":34,"target":7},{"source":34,"target":44},{"source":34,"target":4},{"source":44,"target":7},{"source":35,"target":45},{"source":35,"target":4},{"source":36,"target":5},{"source":36,"target":46},{"source":36,"target":4},{"source":46,"target":5},{"source":37,"target":47},{"source":37,"target":4},{"source":38,"target":48},{"source":38,"target":4},{"source":5,"target":0},{"source":5,"target":49},{"source":5,"target":50},{"source":5,"target":51},{"source":49,"target":5},{"source":50,"target":5},{"source":51,"target":5},{"source":6,"target":0},{"source":7,"target":0},{"source":7,"target":52},{"source":7,"target":53},{"source":52,"target":54},{"source":52,"target":7},{"source":53,"target":55},{"source":53,"target":7},{"source":8,"target":0},{"source":8,"target":56},{"source":8,"target":57},{"source":8,"target":58},{"source":8,"target":59},{"source":8,"target":60},{"source":56,"target":61},{"source":56,"target":8},{"source":57,"target":9},{"source":57,"target":62},{"source":57,"target":8},{"source":62,"target":9},{"source":58,"target":63},{"source":58,"target":8},{"source":59,"target":64},{"source":59,"target":8},{"source":60,"target":65},{"source":60,"target":8},{"source":9,"target":0},{"source":9,"target":66},{"source":9,"target":67},{"source":66,"target":68},{"source":66,"target":9},{"source":67,"target":12},{"source":67,"target":69},{"source":67,"target":9},{"source":69,"target":12},{"source":10,"target":0},{"source":10,"target":70},{"source":10,"target":71},{"source":10,"target":72},{"source":10,"target":73},{"source":70,"target":74},{"source":70,"target":10},{"source":71,"target":75},{"source":71,"target":10},{"source":72,"target":76},{"source":72,"target":10},{"source":73,"target":77},{"source":73,"target":10},{"source":11,"target":0},{"source":11,"target":78},{"source":11,"target":79},{"source":78,"target":80},{"source":78,"target":11},{"source":79,"target":81},{"source":79,"target":11},{"source":12,"target":0},{"source":12,"target":82},{"source":12,"target":83},{"source":12,"target":84},{"source":82,"target":11},{"source":82,"target":85},{"source":82,"target":12},{"source":85,"target":11},{"source":83,"target":86},{"source":83,"target":12},{"source":84,"target":87},{"source":84,"target":12}],"multigraph":true} |
false | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="trading" nsURI="http://trading/1.0" nsPrefix="trading">
<eClassifiers xsi:type="ecore:EClass" name="Robot">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="uuid" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="triggers" upperBound="-1"
eType="#//Trigger" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="label" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Order">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="price_int" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBigInteger"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="currency" eType="ecore:EEnum btc.ecore#//BtcCurrency"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="volume" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFloat"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="date" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//ELong"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="kind" eType="ecore:EEnum btc.ecore#//OrderKind"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="message" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="TradingRule">
<eOperations name="compute" upperBound="-1" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EObject">
<eParameters name="ctx" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EJavaObject"/>
</eOperations>
<eOperations name="accept">
<eParameters name="visitor" eType="#//RuleVisitor"/>
</eOperations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="trigger" eType="#//TriggerKind"
defaultValueLiteral="SATISFIES"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="ratio" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFloat"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="compliance" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFloat"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="evalDelegate" eType="#//IRuleEvalDelegate"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="ctx" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EJavaObject"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="label" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="TriggerKind">
<eLiterals name="CROSS_OVER"/>
<eLiterals name="CROSS_UNDER" value="1"/>
<eLiterals name="SATISFIES" value="3"/>
<eLiterals name="APPROXIMATES" value="2"/>
<eLiterals name="EXCLUDES" value="4"/>
<eLiterals name="WAS" value="5"/>
<eLiterals name="WILL_BE" value="6"/>
<eLiterals name="AS_USUAL" value="7"/>
<eLiterals name="EXCEPTIONAL" value="8"/>
<eLiterals name="WTF" value="9"/>
<eLiterals name="FIRST_TIME" value="10"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="PriceRule" eSuperTypes="#//TradingRule">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="price" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFloat"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="percentTolerance" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFloat"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="currency" eType="ecore:EEnum btc.ecore#//BtcCurrency"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="VolumeRule" eSuperTypes="#//TradingRule">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="volume" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFloat"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="tolerance" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFloat"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="TimeRule" eSuperTypes="#//TradingRule">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="date" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//ELong"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="tolerance" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFloat"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CompositeRule" eSuperTypes="#//TradingRule">
<eStructuralFeatures xsi:type="ecore:EReference" name="children" upperBound="-1"
eType="#//TradingRule" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CustomRule" eSuperTypes="#//TradingRule">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="ruleProcessor" eType="#//ICustomRuleProcessor"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="RuleVisitor">
<eOperations name="eval" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean">
<eParameters name="rule" eType="#//TradingRule"/>
</eOperations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="delegate" eType="#//ITradeRuleVisitorDelegate"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="ITradeRuleVisitorDelegate" instanceClassName="net.sf.smbt.btc.notifications.ITradeRuleVisitorDelegate"/>
<eClassifiers xsi:type="ecore:EDataType" name="IRuleEvalDelegate" instanceClassName="net.sf.smbt.btc.notifications.IRuleEvalDelegate"/>
<eClassifiers xsi:type="ecore:EClass" name="Trigger">
<eStructuralFeatures xsi:type="ecore:EReference" name="orders" upperBound="-1"
eType="#//Order" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="rules" upperBound="-1"
eType="#//TradingRule" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="uuid" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="activated" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"
defaultValueLiteral="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="processed" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="jsonNotifications" upperBound="-1"
eType="#//JsonNotification" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="mailNotifications" upperBound="-1"
eType="#//MailNotification" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="smsNotification" upperBound="-1"
eType="#//SMSNotifcation" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="label" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="OrderKindRule" eSuperTypes="#//TradingRule">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="kind" eType="ecore:EEnum btc.ecore#//OrderKind"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="TradeBotsConfig">
<eStructuralFeatures xsi:type="ecore:EReference" name="bots" upperBound="-1" eType="#//Robot"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Notification">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="target" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="MailNotification" eSuperTypes="#//Notification"/>
<eClassifiers xsi:type="ecore:EClass" name="SMSNotifcation" eSuperTypes="#//Notification"/>
<eClassifiers xsi:type="ecore:EClass" name="JsonNotification" eSuperTypes="#//Notification"/>
<eClassifiers xsi:type="ecore:EDataType" name="ICustomRuleProcessor" instanceClassName="net.sf.smbt.btc.notifications.ICustomRuleProcessor"/>
</ecore:EPackage>
| github:ecore:/data/lucascraft/bitcoin-wallet/net.sf.smbt.btc/model/trading.ecore | ecore | trading
Robot
uuid
triggers
label
Order
price_int
currency
volume
date
kind
message
TradingRule
compute
ctx
accept
visitor
trigger
SATISFIES
ratio
compliance
evalDelegate
ctx
label
TriggerKind
CROSS_OVER
CROSS_OVER
CROSS_UNDER
CROSS_UNDER
SATISFIES
SATISFIES
APPROXIMATES
APPROXIMATES
EXCLUDES
EXCLUDES
WAS
WAS
WILL_BE
WILL_BE
AS_USUAL
AS_USUAL
EXCEPTIONAL
EXCEPTIONAL
WTF
WTF
FIRST_TIME
FIRST_TIME
PriceRule
price
percentTolerance
currency
VolumeRule
volume
tolerance
TimeRule
date
tolerance
CompositeRule
children
CustomRule
ruleProcessor
RuleVisitor
eval
rule
delegate
ITradeRuleVisitorDelegate
net.sf.smbt.btc.notifications.ITradeRuleVisitorDelegate
net.sf.smbt.btc.notifications.ITradeRuleVisitorDelegate
IRuleEvalDelegate
net.sf.smbt.btc.notifications.IRuleEvalDelegate
net.sf.smbt.btc.notifications.IRuleEvalDelegate
Trigger
orders
rules
uuid
activated
true
processed
jsonNotifications
mailNotifications
smsNotification
label
OrderKindRule
kind
TradeBotsConfig
bots
Notification
target
MailNotification
SMSNotifcation
JsonNotification
ICustomRuleProcessor
net.sf.smbt.btc.notifications.ICustomRuleProcessor
net.sf.smbt.btc.notifications.ICustomRuleProcessor | null | {"directed":true,"nodes":[{"nsPrefix":"trading","nsURI":"http://trading/1.0","name":"trading","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Robot","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Order","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TradingRule","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"TriggerKind","instanceClass":null,"id":4,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PriceRule","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"VolumeRule","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TimeRule","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CompositeRule","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CustomRule","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RuleVisitor","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":"net.sf.smbt.btc.notifications.ITradeRuleVisitorDelegate","defaultValue":null,"instanceClassName":"net.sf.smbt.btc.notifications.ITradeRuleVisitorDelegate","name":"ITradeRuleVisitorDelegate","instanceClass":null,"id":11,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"net.sf.smbt.btc.notifications.IRuleEvalDelegate","defaultValue":null,"instanceClassName":"net.sf.smbt.btc.notifications.IRuleEvalDelegate","name":"IRuleEvalDelegate","instanceClass":null,"id":12,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Trigger","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OrderKindRule","instanceClass":null,"abstract":false,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TradeBotsConfig","instanceClass":null,"abstract":false,"id":15,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Notification","instanceClass":null,"abstract":false,"id":16,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MailNotification","instanceClass":null,"abstract":false,"id":17,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SMSNotifcation","instanceClass":null,"abstract":false,"id":18,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"JsonNotification","instanceClass":null,"abstract":false,"id":19,"interface":false,"eClass":"EClass"},{"instanceTypeName":"net.sf.smbt.btc.notifications.ICustomRuleProcessor","defaultValue":null,"instanceClassName":"net.sf.smbt.btc.notifications.ICustomRuleProcessor","name":"ICustomRuleProcessor","instanceClass":null,"id":20,"serializable":true,"eClass":"EDataType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"uuid","changeable":true,"lowerBound":0,"iD":false,"id":21,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"triggers","changeable":true,"resolveProxies":true,"lowerBound":0,"id":22,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"label","changeable":true,"lowerBound":0,"iD":false,"id":23,"derived":false},{"id":24,"eClass":"EGenericType"},{"id":25,"eClass":"EGenericType"},{"id":26,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"price_int","changeable":true,"lowerBound":0,"iD":false,"id":27,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"currency","changeable":true,"lowerBound":0,"iD":false,"id":28,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"volume","changeable":true,"lowerBound":0,"iD":false,"id":29,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"date","changeable":true,"lowerBound":0,"iD":false,"id":30,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"kind","changeable":true,"lowerBound":0,"iD":false,"id":31,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"message","changeable":true,"lowerBound":0,"iD":false,"id":32,"derived":false},{"id":33,"eClass":"EGenericType"},{"id":34,"eClass":"EGenericType"},{"id":35,"eClass":"EGenericType"},{"id":36,"eClass":"EGenericType"},{"id":37,"eClass":"EGenericType"},{"id":38,"eClass":"EGenericType"},{"ordered":true,"upperBound":-1,"unique":true,"name":"compute","lowerBound":0,"id":39,"many":true,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"accept","lowerBound":0,"id":40,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"SATISFIES","unsettable":false,"transient":false,"unique":true,"name":"trigger","changeable":true,"lowerBound":0,"iD":false,"id":41,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"ratio","changeable":true,"lowerBound":0,"iD":false,"id":42,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"compliance","changeable":true,"lowerBound":0,"iD":false,"id":43,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"evalDelegate","changeable":true,"lowerBound":0,"iD":false,"id":44,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"ctx","changeable":true,"lowerBound":0,"iD":false,"id":45,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"label","changeable":true,"lowerBound":0,"iD":false,"id":46,"derived":false},{"id":47,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"ctx","lowerBound":0,"id":48,"many":false,"required":false,"eClass":"EParameter"},{"id":49,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"visitor","lowerBound":0,"id":50,"many":false,"required":false,"eClass":"EParameter"},{"id":51,"eClass":"EGenericType"},{"id":52,"eClass":"EGenericType"},{"id":53,"eClass":"EGenericType"},{"id":54,"eClass":"EGenericType"},{"id":55,"eClass":"EGenericType"},{"id":56,"eClass":"EGenericType"},{"id":57,"eClass":"EGenericType"},{"name":"CROSS_OVER","id":58,"value":0,"literal":"CROSS_OVER","eClass":"EEnumLiteral"},{"name":"CROSS_UNDER","id":59,"value":1,"literal":"CROSS_UNDER","eClass":"EEnumLiteral"},{"name":"SATISFIES","id":60,"value":3,"literal":"SATISFIES","eClass":"EEnumLiteral"},{"name":"APPROXIMATES","id":61,"value":2,"literal":"APPROXIMATES","eClass":"EEnumLiteral"},{"name":"EXCLUDES","id":62,"value":4,"literal":"EXCLUDES","eClass":"EEnumLiteral"},{"name":"WAS","id":63,"value":5,"literal":"WAS","eClass":"EEnumLiteral"},{"name":"WILL_BE","id":64,"value":6,"literal":"WILL_BE","eClass":"EEnumLiteral"},{"name":"AS_USUAL","id":65,"value":7,"literal":"AS_USUAL","eClass":"EEnumLiteral"},{"name":"EXCEPTIONAL","id":66,"value":8,"literal":"EXCEPTIONAL","eClass":"EEnumLiteral"},{"name":"WTF","id":67,"value":9,"literal":"WTF","eClass":"EEnumLiteral"},{"name":"FIRST_TIME","id":68,"value":10,"literal":"FIRST_TIME","eClass":"EEnumLiteral"},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"price","changeable":true,"lowerBound":0,"iD":false,"id":69,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"percentTolerance","changeable":true,"lowerBound":0,"iD":false,"id":70,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"currency","changeable":true,"lowerBound":0,"iD":false,"id":71,"derived":false},{"id":72,"eClass":"EGenericType"},{"id":73,"eClass":"EGenericType"},{"id":74,"eClass":"EGenericType"},{"id":75,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"volume","changeable":true,"lowerBound":0,"iD":false,"id":76,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"tolerance","changeable":true,"lowerBound":0,"iD":false,"id":77,"derived":false},{"id":78,"eClass":"EGenericType"},{"id":79,"eClass":"EGenericType"},{"id":80,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"date","changeable":true,"lowerBound":0,"iD":false,"id":81,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"tolerance","changeable":true,"lowerBound":0,"iD":false,"id":82,"derived":false},{"id":83,"eClass":"EGenericType"},{"id":84,"eClass":"EGenericType"},{"id":85,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"children","changeable":true,"resolveProxies":true,"lowerBound":0,"id":86,"derived":false},{"id":87,"eClass":"EGenericType"},{"id":88,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"ruleProcessor","changeable":true,"lowerBound":0,"iD":false,"id":89,"derived":false},{"id":90,"eClass":"EGenericType"},{"id":91,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"eval","lowerBound":0,"id":92,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"delegate","changeable":true,"lowerBound":0,"iD":false,"id":93,"derived":false},{"id":94,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"rule","lowerBound":0,"id":95,"many":false,"required":false,"eClass":"EParameter"},{"id":96,"eClass":"EGenericType"},{"id":97,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"orders","changeable":true,"resolveProxies":true,"lowerBound":0,"id":98,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"rules","changeable":true,"resolveProxies":true,"lowerBound":0,"id":99,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"uuid","changeable":true,"lowerBound":0,"iD":false,"id":100,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":true,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"true","unsettable":false,"transient":false,"unique":true,"name":"activated","changeable":true,"lowerBound":0,"iD":false,"id":101,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"processed","changeable":true,"lowerBound":0,"iD":false,"id":102,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"jsonNotifications","changeable":true,"resolveProxies":true,"lowerBound":0,"id":103,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"mailNotifications","changeable":true,"resolveProxies":true,"lowerBound":0,"id":104,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"smsNotification","changeable":true,"resolveProxies":true,"lowerBound":0,"id":105,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"label","changeable":true,"lowerBound":0,"iD":false,"id":106,"derived":false},{"id":107,"eClass":"EGenericType"},{"id":108,"eClass":"EGenericType"},{"id":109,"eClass":"EGenericType"},{"id":110,"eClass":"EGenericType"},{"id":111,"eClass":"EGenericType"},{"id":112,"eClass":"EGenericType"},{"id":113,"eClass":"EGenericType"},{"id":114,"eClass":"EGenericType"},{"id":115,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"kind","changeable":true,"lowerBound":0,"iD":false,"id":116,"derived":false},{"id":117,"eClass":"EGenericType"},{"id":118,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"bots","changeable":true,"resolveProxies":true,"lowerBound":0,"id":119,"derived":false},{"id":120,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"target","changeable":true,"lowerBound":0,"iD":false,"id":121,"derived":false},{"id":122,"eClass":"EGenericType"},{"id":123,"eClass":"EGenericType"},{"id":124,"eClass":"EGenericType"},{"id":125,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":0,"target":8},{"source":0,"target":9},{"source":0,"target":10},{"source":0,"target":11},{"source":0,"target":12},{"source":0,"target":13},{"source":0,"target":14},{"source":0,"target":15},{"source":0,"target":16},{"source":0,"target":17},{"source":0,"target":18},{"source":0,"target":19},{"source":0,"target":20},{"source":1,"target":0},{"source":1,"target":21},{"source":1,"target":22},{"source":1,"target":23},{"source":21,"target":24},{"source":21,"target":1},{"source":22,"target":13},{"source":22,"target":25},{"source":22,"target":1},{"source":25,"target":13},{"source":23,"target":26},{"source":23,"target":1},{"source":2,"target":0},{"source":2,"target":27},{"source":2,"target":28},{"source":2,"target":29},{"source":2,"target":30},{"source":2,"target":31},{"source":2,"target":32},{"source":27,"target":33},{"source":27,"target":2},{"source":28,"target":34},{"source":28,"target":2},{"source":29,"target":35},{"source":29,"target":2},{"source":30,"target":36},{"source":30,"target":2},{"source":31,"target":37},{"source":31,"target":2},{"source":32,"target":38},{"source":32,"target":2},{"source":3,"target":0},{"source":3,"target":39},{"source":3,"target":40},{"source":3,"target":41},{"source":3,"target":42},{"source":3,"target":43},{"source":3,"target":44},{"source":3,"target":45},{"source":3,"target":46},{"source":39,"target":47},{"source":39,"target":3},{"source":39,"target":48},{"source":48,"target":49},{"source":48,"target":39},{"source":40,"target":3},{"source":40,"target":50},{"source":50,"target":10},{"source":50,"target":51},{"source":50,"target":40},{"source":51,"target":10},{"source":41,"target":4},{"source":41,"target":52},{"source":41,"target":3},{"source":52,"target":4},{"source":42,"target":53},{"source":42,"target":3},{"source":43,"target":54},{"source":43,"target":3},{"source":44,"target":12},{"source":44,"target":55},{"source":44,"target":3},{"source":55,"target":12},{"source":45,"target":56},{"source":45,"target":3},{"source":46,"target":57},{"source":46,"target":3},{"source":4,"target":0},{"source":4,"target":58},{"source":4,"target":59},{"source":4,"target":60},{"source":4,"target":61},{"source":4,"target":62},{"source":4,"target":63},{"source":4,"target":64},{"source":4,"target":65},{"source":4,"target":66},{"source":4,"target":67},{"source":4,"target":68},{"source":58,"target":4},{"source":59,"target":4},{"source":60,"target":4},{"source":61,"target":4},{"source":62,"target":4},{"source":63,"target":4},{"source":64,"target":4},{"source":65,"target":4},{"source":66,"target":4},{"source":67,"target":4},{"source":68,"target":4},{"source":5,"target":0},{"source":5,"target":3},{"source":5,"target":69},{"source":5,"target":70},{"source":5,"target":71},{"source":5,"target":72},{"source":69,"target":73},{"source":69,"target":5},{"source":70,"target":74},{"source":70,"target":5},{"source":71,"target":75},{"source":71,"target":5},{"source":72,"target":3},{"source":6,"target":0},{"source":6,"target":3},{"source":6,"target":76},{"source":6,"target":77},{"source":6,"target":78},{"source":76,"target":79},{"source":76,"target":6},{"source":77,"target":80},{"source":77,"target":6},{"source":78,"target":3},{"source":7,"target":0},{"source":7,"target":3},{"source":7,"target":81},{"source":7,"target":82},{"source":7,"target":83},{"source":81,"target":84},{"source":81,"target":7},{"source":82,"target":85},{"source":82,"target":7},{"source":83,"target":3},{"source":8,"target":0},{"source":8,"target":3},{"source":8,"target":86},{"source":8,"target":87},{"source":86,"target":3},{"source":86,"target":88},{"source":86,"target":8},{"source":88,"target":3},{"source":87,"target":3},{"source":9,"target":0},{"source":9,"target":3},{"source":9,"target":89},{"source":9,"target":90},{"source":89,"target":20},{"source":89,"target":91},{"source":89,"target":9},{"source":91,"target":20},{"source":90,"target":3},{"source":10,"target":0},{"source":10,"target":92},{"source":10,"target":93},{"source":92,"target":94},{"source":92,"target":10},{"source":92,"target":95},{"source":95,"target":3},{"source":95,"target":96},{"source":95,"target":92},{"source":96,"target":3},{"source":93,"target":11},{"source":93,"target":97},{"source":93,"target":10},{"source":97,"target":11},{"source":11,"target":0},{"source":12,"target":0},{"source":13,"target":0},{"source":13,"target":98},{"source":13,"target":99},{"source":13,"target":100},{"source":13,"target":101},{"source":13,"target":102},{"source":13,"target":103},{"source":13,"target":104},{"source":13,"target":105},{"source":13,"target":106},{"source":98,"target":2},{"source":98,"target":107},{"source":98,"target":13},{"source":107,"target":2},{"source":99,"target":3},{"source":99,"target":108},{"source":99,"target":13},{"source":108,"target":3},{"source":100,"target":109},{"source":100,"target":13},{"source":101,"target":110},{"source":101,"target":13},{"source":102,"target":111},{"source":102,"target":13},{"source":103,"target":19},{"source":103,"target":112},{"source":103,"target":13},{"source":112,"target":19},{"source":104,"target":17},{"source":104,"target":113},{"source":104,"target":13},{"source":113,"target":17},{"source":105,"target":18},{"source":105,"target":114},{"source":105,"target":13},{"source":114,"target":18},{"source":106,"target":115},{"source":106,"target":13},{"source":14,"target":0},{"source":14,"target":3},{"source":14,"target":116},{"source":14,"target":117},{"source":116,"target":118},{"source":116,"target":14},{"source":117,"target":3},{"source":15,"target":0},{"source":15,"target":119},{"source":119,"target":1},{"source":119,"target":120},{"source":119,"target":15},{"source":120,"target":1},{"source":16,"target":0},{"source":16,"target":121},{"source":121,"target":122},{"source":121,"target":16},{"source":17,"target":0},{"source":17,"target":16},{"source":17,"target":123},{"source":123,"target":16},{"source":18,"target":0},{"source":18,"target":16},{"source":18,"target":124},{"source":124,"target":16},{"source":19,"target":0},{"source":19,"target":16},{"source":19,"target":125},{"source":125,"target":16},{"source":20,"target":0}],"multigraph":true} |
false | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="coCoMM" nsURI="http://www.example.org/coCoMM" nsPrefix="coCoMM">
<eAnnotations source="http://www.eclipse.org/OCL/Import">
<details key="ecore" value="http://www.eclipse.org/emf/2002/Ecore"/>
</eAnnotations>
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore">
<details key="invocationDelegates" value="http://www.eclipse.org/emf/2002/Ecore/OCL/Pivot"/>
<details key="settingDelegates" value="http://www.eclipse.org/emf/2002/Ecore/OCL/Pivot"/>
<details key="validationDelegates" value="http://www.eclipse.org/emf/2002/Ecore/OCL/Pivot"/>
</eAnnotations>
<eClassifiers xsi:type="ecore:EClass" name="FeatureModel">
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore">
<details key="constraints" value="oneDomainFM"/>
</eAnnotations>
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore/OCL/Pivot">
<details key="oneDomainFM" value="FeatureModel.allInstances() -> exists(x|x.isDomain = true)"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="root" lowerBound="1" eType="#//Feature"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="ctConstraints" upperBound="-1"
eType="#//CrossTreeConstraint" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isDomain" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="id" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Feature">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="id" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
iD="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="abstract" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="treeConstraints" upperBound="-1"
eType="#//TreeConstraint" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="featureModel" lowerBound="1"
eType="#//FeatureModel"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="featureAttributes" upperBound="-1"
eType="#//FeatureAttribute" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="mandatory" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"
defaultValueLiteral="false"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="TreeConstraint">
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore">
<details key="constraints" value="setTCTypes"/>
</eAnnotations>
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore/OCL/Pivot">
<details key="setTCTypes" value="(self.type = 'mandatory') or (self.type = 'optional') or 
		(self.type = 'alternative') or (self.type = 'or')"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="type" eType="#//TreeConstraintType"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="children" lowerBound="1"
upperBound="-1" eType="#//Feature" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="TreeConstraintType">
<eLiterals name="And" value="1"/>
<eLiterals name="Alternative" value="2"/>
<eLiterals name="Or" value="3"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="AttributeType">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="id" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
iD="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="dataType" eType="#//DataType"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="DataType">
<eLiterals name="String"/>
<eLiterals name="int" value="1"/>
<eLiterals name="double" value="2"/>
<eLiterals name="boolean" value="3"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="FeatureAttribute">
<eStructuralFeatures xsi:type="ecore:EReference" name="attrType" lowerBound="1"
eType="#//AttributeType"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="defaultValue" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="minValue" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="maxValue" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CrossTreeConstraint">
<eStructuralFeatures xsi:type="ecore:EReference" name="expressions" lowerBound="1"
upperBound="-1" eType="#//CTConstraintExpression" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="CTConstraintType">
<eLiterals name="not"/>
<eLiterals name="and" value="1"/>
<eLiterals name="or" value="2"/>
<eLiterals name="implies" value="3"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CoCo">
<eStructuralFeatures xsi:type="ecore:EReference" name="featureModels" upperBound="-1"
eType="#//FeatureModel" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="cmConstraints" upperBound="-1"
eType="#//CrossModelConstraint" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="solutionConstraints" upperBound="-1"
eType="#//SolutionConstraint" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="configConstraints" upperBound="-1"
eType="#//ConfigurationConstraint" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="attributeTypes" upperBound="-1"
eType="#//AttributeType" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="project" upperBound="-1"
eType="#//Project" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="stakeholders" upperBound="-1"
eType="#//Stakeholder" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="id" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="configScenario" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="CMConstraintType">
<eLiterals name="not"/>
<eLiterals name="and" value="1"/>
<eLiterals name="or" value="2"/>
<eLiterals name="implies" value="3"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CrossModelConstraint">
<eStructuralFeatures xsi:type="ecore:EReference" name="expressions" lowerBound="1"
upperBound="-1" eType="#//CMConstraintExpression" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ConfigurationConstraint">
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore">
<details key="constraints" value="setDRTypes"/>
</eAnnotations>
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore/OCL/Pivot">
<details key="setDRTypes" value="(self.type = 'optimization') or (self.type = 'hardLimit') or 
		(self.type = 'selectionState')"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="type" eType="#//CCType"
defaultValueLiteral="optimization"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="id" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="SelectionStateCC" eSuperTypes="#//ConfigurationConstraint">
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore">
<details key="constraints" value="setSelectionStateDRstates"/>
</eAnnotations>
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore/OCL/Pivot">
<details key="setSelectionStateDRstates" value="(self.state = 'mandatory') or (self.state = 'preferred') or 
		(self.state = 'forbidden')"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="featureModel" eType="#//FeatureModel"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="feature" eType="#//Feature"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="state" eType="#//CCSelectionStateType"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="HardLimitCC" eSuperTypes="#//ConfigurationConstraint">
<eStructuralFeatures xsi:type="ecore:EReference" name="expressions" lowerBound="1"
upperBound="2" eType="#//HardLimitCCExpression" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="function" lowerBound="1"
eType="#//AggregationFunction"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="CCType">
<eLiterals name="selectionState"/>
<eLiterals name="hardLimit" value="1"/>
<eLiterals name="optimization" value="2"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="CCSelectionStateType">
<eLiterals name="mandatory"/>
<eLiterals name="preferred" value="1"/>
<eLiterals name="forbidden" value="2"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="HardLimitCCExpression">
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore">
<details key="constraints" value="setHardLimitDRop"/>
</eAnnotations>
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore/OCL/Pivot">
<details key="setHardLimitDRop" value="(self.op = 'geq') or (self.op = 'gt') or (self.op = 'leq')
		or (self.op = 'lt') or (self.op = 'eq')"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="op" eType="#//CCHardLimitOp"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="OptimizationCC" eSuperTypes="#//ConfigurationConstraint">
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore">
<details key="constraints" value="setSOptimizationDRfuncts"/>
</eAnnotations>
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore/OCL/Pivot">
<details key="setSOptimizationDRfuncts" value="(self.funct = 'maximize') or (self.funct = 'minimize')"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="funct" eType="#//CCOptimizationOp"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="funtion" lowerBound="1"
eType="#//AggregationFunction"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="CCOptimizationOp">
<eLiterals name="maximize"/>
<eLiterals name="minimize" value="1"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="CCHardLimitOp">
<eLiterals name="leq"/>
<eLiterals name="lt" value="1"/>
<eLiterals name="geq" value="2"/>
<eLiterals name="gt" value="3"/>
<eLiterals name="eq" value="4"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Project">
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore">
<details key="constraints" value="oneTargetProject"/>
</eAnnotations>
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore/OCL/Pivot">
<details key="oneTargetProject" value="Project.allInstances() -> exists(x|x.target = true)"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="configConstraints" upperBound="-1"
eType="#//ConfigurationConstraint"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="solutionConstraints" upperBound="-1"
eType="#//SolutionConstraint"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="configs" upperBound="-1"
eType="#//Config" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="date" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDate"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="target" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Config">
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore">
<details key="constraints" value="setConfigTypes"/>
</eAnnotations>
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore/OCL/Pivot">
<details key="setConfigTypes" value="(self.type = 'input') or (self.type = 'output')"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="stakeholder" eType="#//Stakeholder"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="selected" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="type" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="features" upperBound="-1"
eType="#//Feature"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Stakeholder">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="job" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CTConstraintExpression">
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore">
<details key="constraints" value="setCTops"/>
</eAnnotations>
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore/OCL/Pivot">
<details key="setCTops" value="(self.op = 'not') or (self.op = 'or') or (self.op = 'and')
		or (self.op = 'implies')"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="op" eType="#//CTConstraintType"
defaultValueLiteral="implies"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="features" upperBound="-1"
eType="#//Feature"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="expressions" upperBound="-1"
eType="#//CTConstraintExpression" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CMConstraintExpression">
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore">
<details key="constraints" value="setCMops"/>
</eAnnotations>
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore/OCL/Pivot">
<details key="setCMops" value="(self.op = 'not') or (self.op = 'or') or (self.op = 'and')
		or (self.op = 'implies')"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="op" eType="#//CMConstraintType"
defaultValueLiteral="implies"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="features" upperBound="-1"
eType="#//Feature"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="expressions" upperBound="-1"
eType="#//CMConstraintExpression" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="ConfigType">
<eLiterals name="input"/>
<eLiterals name="output" value="1"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="AggregationFunction">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="operation" eType="#//AggregationOp"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="attrType" lowerBound="1"
eType="#//AttributeType"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="AggregationOp">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="AgregationOp"/>
</eAnnotations>
<eLiterals name="add"/>
<eLiterals name="multiply" value="1"/>
<eLiterals name="min" value="2"/>
<eLiterals name="max" value="3"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="SolutionConstraint">
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore">
<details key="constraints" value="setDRTypes"/>
</eAnnotations>
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore/OCL/Pivot">
<details key="setDRTypes" value="(self.type = 'optimization') or (self.type = 'hardLimit') or 
		(self.type = 'selectionState')"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="type" eType="#//SCType"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="SCType">
<eLiterals name="selectionState"/>
<eLiterals name="hardLimit" value="1"/>
<eLiterals name="optimization" value="2"/>
<eLiterals name="finiteDomain" value="3"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="OptimizationSC" eSuperTypes="#//SolutionConstraint">
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore">
<details key="constraints" value="setSOptimizationDRfuncts"/>
</eAnnotations>
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore/OCL/Pivot">
<details key="setSOptimizationDRfuncts" value="(self.funct = 'maximize') or (self.funct = 'minimize')"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="funct" eType="#//OptimizationSCFunct"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="attrType" lowerBound="1"
eType="#//AttributeType"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="OptimizationSCFunct">
<eLiterals name="maximize"/>
<eLiterals name="minimize" value="1"/>
</eClassifiers></ecore:EPackage>
| github:ecore:/data/CoCoResearch/PLConfiguration/SearchStrategies/CoCoStandalone/metamodels/coCoMM-copy.ecore | ecore | coCoMM
FeatureModel
name
root
ctConstraints
isDomain
id
Feature
id
name
abstract
treeConstraints
featureModel
featureAttributes
mandatory
false
TreeConstraint
type
children
TreeConstraintType
And
And
Alternative
Alternative
Or
Or
AttributeType
id
name
dataType
DataType
String
String
int
int
double
double
boolean
boolean
FeatureAttribute
attrType
defaultValue
minValue
maxValue
CrossTreeConstraint
expressions
CTConstraintType
not
not
and
and
or
or
implies
implies
CoCo
featureModels
cmConstraints
solutionConstraints
configConstraints
attributeTypes
project
stakeholders
id
name
configScenario
CMConstraintType
not
not
and
and
or
or
implies
implies
CrossModelConstraint
expressions
ConfigurationConstraint
type
optimization
id
name
SelectionStateCC
featureModel
feature
state
HardLimitCC
expressions
function
CCType
selectionState
selectionState
hardLimit
hardLimit
optimization
optimization
CCSelectionStateType
mandatory
mandatory
preferred
preferred
forbidden
forbidden
HardLimitCCExpression
op
value
OptimizationCC
funct
funtion
CCOptimizationOp
maximize
maximize
minimize
minimize
CCHardLimitOp
leq
leq
lt
lt
geq
geq
gt
gt
eq
eq
Project
configConstraints
solutionConstraints
configs
name
date
target
Config
stakeholder
selected
type
features
Stakeholder
name
job
CTConstraintExpression
op
implies
features
expressions
CMConstraintExpression
op
implies
features
expressions
ConfigType
input
input
output
output
AggregationFunction
operation
attrType
AggregationOp
add
add
multiply
multiply
min
min
max
max
SolutionConstraint
type
SCType
selectionState
selectionState
hardLimit
hardLimit
optimization
optimization
finiteDomain
finiteDomain
OptimizationSC
funct
attrType
OptimizationSCFunct
maximize
maximize
minimize
minimize | null | {"directed":true,"nodes":[{"nsPrefix":"coCoMM","nsURI":"http://www.example.org/coCoMM","name":"coCoMM","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FeatureModel","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Feature","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TreeConstraint","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"TreeConstraintType","instanceClass":null,"id":4,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AttributeType","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"DataType","instanceClass":null,"id":6,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FeatureAttribute","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CrossTreeConstraint","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"CTConstraintType","instanceClass":null,"id":9,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CoCo","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"CMConstraintType","instanceClass":null,"id":11,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CrossModelConstraint","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ConfigurationConstraint","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SelectionStateCC","instanceClass":null,"abstract":false,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"HardLimitCC","instanceClass":null,"abstract":false,"id":15,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"CCType","instanceClass":null,"id":16,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"CCSelectionStateType","instanceClass":null,"id":17,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"HardLimitCCExpression","instanceClass":null,"abstract":false,"id":18,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OptimizationCC","instanceClass":null,"abstract":false,"id":19,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"CCOptimizationOp","instanceClass":null,"id":20,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"CCHardLimitOp","instanceClass":null,"id":21,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Project","instanceClass":null,"abstract":false,"id":22,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Config","instanceClass":null,"abstract":false,"id":23,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Stakeholder","instanceClass":null,"abstract":false,"id":24,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CTConstraintExpression","instanceClass":null,"abstract":false,"id":25,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CMConstraintExpression","instanceClass":null,"abstract":false,"id":26,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"ConfigType","instanceClass":null,"id":27,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AggregationFunction","instanceClass":null,"abstract":false,"id":28,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"AggregationOp","instanceClass":null,"id":29,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SolutionConstraint","instanceClass":null,"abstract":false,"id":30,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"SCType","instanceClass":null,"id":31,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OptimizationSC","instanceClass":null,"abstract":false,"id":32,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"OptimizationSCFunct","instanceClass":null,"id":33,"serializable":true,"eClass":"EEnum"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":34,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"root","changeable":true,"resolveProxies":true,"lowerBound":1,"id":35,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"ctConstraints","changeable":true,"resolveProxies":true,"lowerBound":0,"id":36,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isDomain","changeable":true,"lowerBound":0,"iD":false,"id":37,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"id","changeable":true,"lowerBound":0,"iD":false,"id":38,"derived":false},{"id":39,"eClass":"EGenericType"},{"id":40,"eClass":"EGenericType"},{"id":41,"eClass":"EGenericType"},{"id":42,"eClass":"EGenericType"},{"id":43,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"id","changeable":true,"lowerBound":0,"iD":true,"id":44,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":45,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"abstract","changeable":true,"lowerBound":0,"iD":false,"id":46,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"treeConstraints","changeable":true,"resolveProxies":true,"lowerBound":0,"id":47,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"featureModel","changeable":true,"resolveProxies":true,"lowerBound":1,"id":48,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"featureAttributes","changeable":true,"resolveProxies":true,"lowerBound":0,"id":49,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"false","unsettable":false,"transient":false,"unique":true,"name":"mandatory","changeable":true,"lowerBound":0,"iD":false,"id":50,"derived":false},{"id":51,"eClass":"EGenericType"},{"id":52,"eClass":"EGenericType"},{"id":53,"eClass":"EGenericType"},{"id":54,"eClass":"EGenericType"},{"id":55,"eClass":"EGenericType"},{"id":56,"eClass":"EGenericType"},{"id":57,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"lowerBound":0,"iD":false,"id":58,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"children","changeable":true,"resolveProxies":true,"lowerBound":1,"id":59,"derived":false},{"id":60,"eClass":"EGenericType"},{"id":61,"eClass":"EGenericType"},{"name":"And","id":62,"value":1,"literal":"And","eClass":"EEnumLiteral"},{"name":"Alternative","id":63,"value":2,"literal":"Alternative","eClass":"EEnumLiteral"},{"name":"Or","id":64,"value":3,"literal":"Or","eClass":"EEnumLiteral"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"id","changeable":true,"lowerBound":0,"iD":true,"id":65,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":66,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"dataType","changeable":true,"lowerBound":0,"iD":false,"id":67,"derived":false},{"id":68,"eClass":"EGenericType"},{"id":69,"eClass":"EGenericType"},{"id":70,"eClass":"EGenericType"},{"name":"String","id":71,"value":0,"literal":"String","eClass":"EEnumLiteral"},{"name":"int","id":72,"value":1,"literal":"int","eClass":"EEnumLiteral"},{"name":"double","id":73,"value":2,"literal":"double","eClass":"EEnumLiteral"},{"name":"boolean","id":74,"value":3,"literal":"boolean","eClass":"EEnumLiteral"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"attrType","changeable":true,"resolveProxies":true,"lowerBound":1,"id":75,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"defaultValue","changeable":true,"lowerBound":0,"iD":false,"id":76,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"minValue","changeable":true,"lowerBound":0,"iD":false,"id":77,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"maxValue","changeable":true,"lowerBound":0,"iD":false,"id":78,"derived":false},{"id":79,"eClass":"EGenericType"},{"id":80,"eClass":"EGenericType"},{"id":81,"eClass":"EGenericType"},{"id":82,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"expressions","changeable":true,"resolveProxies":true,"lowerBound":1,"id":83,"derived":false},{"id":84,"eClass":"EGenericType"},{"name":"not","id":85,"value":0,"literal":"not","eClass":"EEnumLiteral"},{"name":"and","id":86,"value":1,"literal":"and","eClass":"EEnumLiteral"},{"name":"or","id":87,"value":2,"literal":"or","eClass":"EEnumLiteral"},{"name":"implies","id":88,"value":3,"literal":"implies","eClass":"EEnumLiteral"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"featureModels","changeable":true,"resolveProxies":true,"lowerBound":0,"id":89,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"cmConstraints","changeable":true,"resolveProxies":true,"lowerBound":0,"id":90,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"solutionConstraints","changeable":true,"resolveProxies":true,"lowerBound":0,"id":91,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"configConstraints","changeable":true,"resolveProxies":true,"lowerBound":0,"id":92,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"attributeTypes","changeable":true,"resolveProxies":true,"lowerBound":0,"id":93,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"project","changeable":true,"resolveProxies":true,"lowerBound":0,"id":94,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"stakeholders","changeable":true,"resolveProxies":true,"lowerBound":0,"id":95,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"id","changeable":true,"lowerBound":0,"iD":false,"id":96,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":97,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"configScenario","changeable":true,"lowerBound":0,"iD":false,"id":98,"derived":false},{"id":99,"eClass":"EGenericType"},{"id":100,"eClass":"EGenericType"},{"id":101,"eClass":"EGenericType"},{"id":102,"eClass":"EGenericType"},{"id":103,"eClass":"EGenericType"},{"id":104,"eClass":"EGenericType"},{"id":105,"eClass":"EGenericType"},{"id":106,"eClass":"EGenericType"},{"id":107,"eClass":"EGenericType"},{"id":108,"eClass":"EGenericType"},{"name":"not","id":109,"value":0,"literal":"not","eClass":"EEnumLiteral"},{"name":"and","id":110,"value":1,"literal":"and","eClass":"EEnumLiteral"},{"name":"or","id":111,"value":2,"literal":"or","eClass":"EEnumLiteral"},{"name":"implies","id":112,"value":3,"literal":"implies","eClass":"EEnumLiteral"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"expressions","changeable":true,"resolveProxies":true,"lowerBound":1,"id":113,"derived":false},{"id":114,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"optimization","unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"lowerBound":0,"iD":false,"id":115,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"id","changeable":true,"lowerBound":0,"iD":false,"id":116,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":117,"derived":false},{"id":118,"eClass":"EGenericType"},{"id":119,"eClass":"EGenericType"},{"id":120,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"featureModel","changeable":true,"resolveProxies":true,"lowerBound":0,"id":121,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"feature","changeable":true,"resolveProxies":true,"lowerBound":0,"id":122,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"state","changeable":true,"lowerBound":0,"iD":false,"id":123,"derived":false},{"id":124,"eClass":"EGenericType"},{"id":125,"eClass":"EGenericType"},{"id":126,"eClass":"EGenericType"},{"id":127,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":2,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"expressions","changeable":true,"resolveProxies":true,"lowerBound":1,"id":128,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"function","changeable":true,"resolveProxies":true,"lowerBound":1,"id":129,"derived":false},{"id":130,"eClass":"EGenericType"},{"id":131,"eClass":"EGenericType"},{"id":132,"eClass":"EGenericType"},{"name":"selectionState","id":133,"value":0,"literal":"selectionState","eClass":"EEnumLiteral"},{"name":"hardLimit","id":134,"value":1,"literal":"hardLimit","eClass":"EEnumLiteral"},{"name":"optimization","id":135,"value":2,"literal":"optimization","eClass":"EEnumLiteral"},{"name":"mandatory","id":136,"value":0,"literal":"mandatory","eClass":"EEnumLiteral"},{"name":"preferred","id":137,"value":1,"literal":"preferred","eClass":"EEnumLiteral"},{"name":"forbidden","id":138,"value":2,"literal":"forbidden","eClass":"EEnumLiteral"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"op","changeable":true,"lowerBound":0,"iD":false,"id":139,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":0,"iD":false,"id":140,"derived":false},{"id":141,"eClass":"EGenericType"},{"id":142,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"funct","changeable":true,"lowerBound":0,"iD":false,"id":143,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"funtion","changeable":true,"resolveProxies":true,"lowerBound":1,"id":144,"derived":false},{"id":145,"eClass":"EGenericType"},{"id":146,"eClass":"EGenericType"},{"id":147,"eClass":"EGenericType"},{"name":"maximize","id":148,"value":0,"literal":"maximize","eClass":"EEnumLiteral"},{"name":"minimize","id":149,"value":1,"literal":"minimize","eClass":"EEnumLiteral"},{"name":"leq","id":150,"value":0,"literal":"leq","eClass":"EEnumLiteral"},{"name":"lt","id":151,"value":1,"literal":"lt","eClass":"EEnumLiteral"},{"name":"geq","id":152,"value":2,"literal":"geq","eClass":"EEnumLiteral"},{"name":"gt","id":153,"value":3,"literal":"gt","eClass":"EEnumLiteral"},{"name":"eq","id":154,"value":4,"literal":"eq","eClass":"EEnumLiteral"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"configConstraints","changeable":true,"resolveProxies":true,"lowerBound":0,"id":155,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"solutionConstraints","changeable":true,"resolveProxies":true,"lowerBound":0,"id":156,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"configs","changeable":true,"resolveProxies":true,"lowerBound":0,"id":157,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":158,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"date","changeable":true,"lowerBound":0,"iD":false,"id":159,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"target","changeable":true,"lowerBound":0,"iD":false,"id":160,"derived":false},{"id":161,"eClass":"EGenericType"},{"id":162,"eClass":"EGenericType"},{"id":163,"eClass":"EGenericType"},{"id":164,"eClass":"EGenericType"},{"id":165,"eClass":"EGenericType"},{"id":166,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"stakeholder","changeable":true,"resolveProxies":true,"lowerBound":0,"id":167,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"selected","changeable":true,"lowerBound":0,"iD":false,"id":168,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"lowerBound":0,"iD":false,"id":169,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"features","changeable":true,"resolveProxies":true,"lowerBound":0,"id":170,"derived":false},{"id":171,"eClass":"EGenericType"},{"id":172,"eClass":"EGenericType"},{"id":173,"eClass":"EGenericType"},{"id":174,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":175,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"job","changeable":true,"lowerBound":0,"iD":false,"id":176,"derived":false},{"id":177,"eClass":"EGenericType"},{"id":178,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"implies","unsettable":false,"transient":false,"unique":true,"name":"op","changeable":true,"lowerBound":0,"iD":false,"id":179,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"features","changeable":true,"resolveProxies":true,"lowerBound":0,"id":180,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"expressions","changeable":true,"resolveProxies":true,"lowerBound":0,"id":181,"derived":false},{"id":182,"eClass":"EGenericType"},{"id":183,"eClass":"EGenericType"},{"id":184,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"implies","unsettable":false,"transient":false,"unique":true,"name":"op","changeable":true,"lowerBound":0,"iD":false,"id":185,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"features","changeable":true,"resolveProxies":true,"lowerBound":0,"id":186,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"expressions","changeable":true,"resolveProxies":true,"lowerBound":0,"id":187,"derived":false},{"id":188,"eClass":"EGenericType"},{"id":189,"eClass":"EGenericType"},{"id":190,"eClass":"EGenericType"},{"name":"input","id":191,"value":0,"literal":"input","eClass":"EEnumLiteral"},{"name":"output","id":192,"value":1,"literal":"output","eClass":"EEnumLiteral"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"operation","changeable":true,"lowerBound":0,"iD":false,"id":193,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"attrType","changeable":true,"resolveProxies":true,"lowerBound":1,"id":194,"derived":false},{"id":195,"eClass":"EGenericType"},{"id":196,"eClass":"EGenericType"},{"name":"add","id":197,"value":0,"literal":"add","eClass":"EEnumLiteral"},{"name":"multiply","id":198,"value":1,"literal":"multiply","eClass":"EEnumLiteral"},{"name":"min","id":199,"value":2,"literal":"min","eClass":"EEnumLiteral"},{"name":"max","id":200,"value":3,"literal":"max","eClass":"EEnumLiteral"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"lowerBound":0,"iD":false,"id":201,"derived":false},{"id":202,"eClass":"EGenericType"},{"name":"selectionState","id":203,"value":0,"literal":"selectionState","eClass":"EEnumLiteral"},{"name":"hardLimit","id":204,"value":1,"literal":"hardLimit","eClass":"EEnumLiteral"},{"name":"optimization","id":205,"value":2,"literal":"optimization","eClass":"EEnumLiteral"},{"name":"finiteDomain","id":206,"value":3,"literal":"finiteDomain","eClass":"EEnumLiteral"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"funct","changeable":true,"lowerBound":0,"iD":false,"id":207,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"attrType","changeable":true,"resolveProxies":true,"lowerBound":1,"id":208,"derived":false},{"id":209,"eClass":"EGenericType"},{"id":210,"eClass":"EGenericType"},{"id":211,"eClass":"EGenericType"},{"name":"maximize","id":212,"value":0,"literal":"maximize","eClass":"EEnumLiteral"},{"name":"minimize","id":213,"value":1,"literal":"minimize","eClass":"EEnumLiteral"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":0,"target":8},{"source":0,"target":9},{"source":0,"target":10},{"source":0,"target":11},{"source":0,"target":12},{"source":0,"target":13},{"source":0,"target":14},{"source":0,"target":15},{"source":0,"target":16},{"source":0,"target":17},{"source":0,"target":18},{"source":0,"target":19},{"source":0,"target":20},{"source":0,"target":21},{"source":0,"target":22},{"source":0,"target":23},{"source":0,"target":24},{"source":0,"target":25},{"source":0,"target":26},{"source":0,"target":27},{"source":0,"target":28},{"source":0,"target":29},{"source":0,"target":30},{"source":0,"target":31},{"source":0,"target":32},{"source":0,"target":33},{"source":1,"target":0},{"source":1,"target":34},{"source":1,"target":35},{"source":1,"target":36},{"source":1,"target":37},{"source":1,"target":38},{"source":34,"target":39},{"source":34,"target":1},{"source":35,"target":2},{"source":35,"target":40},{"source":35,"target":1},{"source":40,"target":2},{"source":36,"target":8},{"source":36,"target":41},{"source":36,"target":1},{"source":41,"target":8},{"source":37,"target":42},{"source":37,"target":1},{"source":38,"target":43},{"source":38,"target":1},{"source":2,"target":0},{"source":2,"target":44},{"source":2,"target":45},{"source":2,"target":46},{"source":2,"target":47},{"source":2,"target":48},{"source":2,"target":49},{"source":2,"target":50},{"source":44,"target":51},{"source":44,"target":2},{"source":45,"target":52},{"source":45,"target":2},{"source":46,"target":53},{"source":46,"target":2},{"source":47,"target":3},{"source":47,"target":54},{"source":47,"target":2},{"source":54,"target":3},{"source":48,"target":1},{"source":48,"target":55},{"source":48,"target":2},{"source":55,"target":1},{"source":49,"target":7},{"source":49,"target":56},{"source":49,"target":2},{"source":56,"target":7},{"source":50,"target":57},{"source":50,"target":2},{"source":3,"target":0},{"source":3,"target":58},{"source":3,"target":59},{"source":58,"target":4},{"source":58,"target":60},{"source":58,"target":3},{"source":60,"target":4},{"source":59,"target":2},{"source":59,"target":61},{"source":59,"target":3},{"source":61,"target":2},{"source":4,"target":0},{"source":4,"target":62},{"source":4,"target":63},{"source":4,"target":64},{"source":62,"target":4},{"source":63,"target":4},{"source":64,"target":4},{"source":5,"target":0},{"source":5,"target":65},{"source":5,"target":66},{"source":5,"target":67},{"source":65,"target":68},{"source":65,"target":5},{"source":66,"target":69},{"source":66,"target":5},{"source":67,"target":6},{"source":67,"target":70},{"source":67,"target":5},{"source":70,"target":6},{"source":6,"target":0},{"source":6,"target":71},{"source":6,"target":72},{"source":6,"target":73},{"source":6,"target":74},{"source":71,"target":6},{"source":72,"target":6},{"source":73,"target":6},{"source":74,"target":6},{"source":7,"target":0},{"source":7,"target":75},{"source":7,"target":76},{"source":7,"target":77},{"source":7,"target":78},{"source":75,"target":5},{"source":75,"target":79},{"source":75,"target":7},{"source":79,"target":5},{"source":76,"target":80},{"source":76,"target":7},{"source":77,"target":81},{"source":77,"target":7},{"source":78,"target":82},{"source":78,"target":7},{"source":8,"target":0},{"source":8,"target":83},{"source":83,"target":25},{"source":83,"target":84},{"source":83,"target":8},{"source":84,"target":25},{"source":9,"target":0},{"source":9,"target":85},{"source":9,"target":86},{"source":9,"target":87},{"source":9,"target":88},{"source":85,"target":9},{"source":86,"target":9},{"source":87,"target":9},{"source":88,"target":9},{"source":10,"target":0},{"source":10,"target":89},{"source":10,"target":90},{"source":10,"target":91},{"source":10,"target":92},{"source":10,"target":93},{"source":10,"target":94},{"source":10,"target":95},{"source":10,"target":96},{"source":10,"target":97},{"source":10,"target":98},{"source":89,"target":1},{"source":89,"target":99},{"source":89,"target":10},{"source":99,"target":1},{"source":90,"target":12},{"source":90,"target":100},{"source":90,"target":10},{"source":100,"target":12},{"source":91,"target":30},{"source":91,"target":101},{"source":91,"target":10},{"source":101,"target":30},{"source":92,"target":13},{"source":92,"target":102},{"source":92,"target":10},{"source":102,"target":13},{"source":93,"target":5},{"source":93,"target":103},{"source":93,"target":10},{"source":103,"target":5},{"source":94,"target":22},{"source":94,"target":104},{"source":94,"target":10},{"source":104,"target":22},{"source":95,"target":24},{"source":95,"target":105},{"source":95,"target":10},{"source":105,"target":24},{"source":96,"target":106},{"source":96,"target":10},{"source":97,"target":107},{"source":97,"target":10},{"source":98,"target":108},{"source":98,"target":10},{"source":11,"target":0},{"source":11,"target":109},{"source":11,"target":110},{"source":11,"target":111},{"source":11,"target":112},{"source":109,"target":11},{"source":110,"target":11},{"source":111,"target":11},{"source":112,"target":11},{"source":12,"target":0},{"source":12,"target":113},{"source":113,"target":26},{"source":113,"target":114},{"source":113,"target":12},{"source":114,"target":26},{"source":13,"target":0},{"source":13,"target":115},{"source":13,"target":116},{"source":13,"target":117},{"source":115,"target":16},{"source":115,"target":118},{"source":115,"target":13},{"source":118,"target":16},{"source":116,"target":119},{"source":116,"target":13},{"source":117,"target":120},{"source":117,"target":13},{"source":14,"target":0},{"source":14,"target":13},{"source":14,"target":121},{"source":14,"target":122},{"source":14,"target":123},{"source":14,"target":124},{"source":121,"target":1},{"source":121,"target":125},{"source":121,"target":14},{"source":125,"target":1},{"source":122,"target":2},{"source":122,"target":126},{"source":122,"target":14},{"source":126,"target":2},{"source":123,"target":17},{"source":123,"target":127},{"source":123,"target":14},{"source":127,"target":17},{"source":124,"target":13},{"source":15,"target":0},{"source":15,"target":13},{"source":15,"target":128},{"source":15,"target":129},{"source":15,"target":130},{"source":128,"target":18},{"source":128,"target":131},{"source":128,"target":15},{"source":131,"target":18},{"source":129,"target":28},{"source":129,"target":132},{"source":129,"target":15},{"source":132,"target":28},{"source":130,"target":13},{"source":16,"target":0},{"source":16,"target":133},{"source":16,"target":134},{"source":16,"target":135},{"source":133,"target":16},{"source":134,"target":16},{"source":135,"target":16},{"source":17,"target":0},{"source":17,"target":136},{"source":17,"target":137},{"source":17,"target":138},{"source":136,"target":17},{"source":137,"target":17},{"source":138,"target":17},{"source":18,"target":0},{"source":18,"target":139},{"source":18,"target":140},{"source":139,"target":21},{"source":139,"target":141},{"source":139,"target":18},{"source":141,"target":21},{"source":140,"target":142},{"source":140,"target":18},{"source":19,"target":0},{"source":19,"target":13},{"source":19,"target":143},{"source":19,"target":144},{"source":19,"target":145},{"source":143,"target":20},{"source":143,"target":146},{"source":143,"target":19},{"source":146,"target":20},{"source":144,"target":28},{"source":144,"target":147},{"source":144,"target":19},{"source":147,"target":28},{"source":145,"target":13},{"source":20,"target":0},{"source":20,"target":148},{"source":20,"target":149},{"source":148,"target":20},{"source":149,"target":20},{"source":21,"target":0},{"source":21,"target":150},{"source":21,"target":151},{"source":21,"target":152},{"source":21,"target":153},{"source":21,"target":154},{"source":150,"target":21},{"source":151,"target":21},{"source":152,"target":21},{"source":153,"target":21},{"source":154,"target":21},{"source":22,"target":0},{"source":22,"target":155},{"source":22,"target":156},{"source":22,"target":157},{"source":22,"target":158},{"source":22,"target":159},{"source":22,"target":160},{"source":155,"target":13},{"source":155,"target":161},{"source":155,"target":22},{"source":161,"target":13},{"source":156,"target":30},{"source":156,"target":162},{"source":156,"target":22},{"source":162,"target":30},{"source":157,"target":23},{"source":157,"target":163},{"source":157,"target":22},{"source":163,"target":23},{"source":158,"target":164},{"source":158,"target":22},{"source":159,"target":165},{"source":159,"target":22},{"source":160,"target":166},{"source":160,"target":22},{"source":23,"target":0},{"source":23,"target":167},{"source":23,"target":168},{"source":23,"target":169},{"source":23,"target":170},{"source":167,"target":24},{"source":167,"target":171},{"source":167,"target":23},{"source":171,"target":24},{"source":168,"target":172},{"source":168,"target":23},{"source":169,"target":173},{"source":169,"target":23},{"source":170,"target":2},{"source":170,"target":174},{"source":170,"target":23},{"source":174,"target":2},{"source":24,"target":0},{"source":24,"target":175},{"source":24,"target":176},{"source":175,"target":177},{"source":175,"target":24},{"source":176,"target":178},{"source":176,"target":24},{"source":25,"target":0},{"source":25,"target":179},{"source":25,"target":180},{"source":25,"target":181},{"source":179,"target":9},{"source":179,"target":182},{"source":179,"target":25},{"source":182,"target":9},{"source":180,"target":2},{"source":180,"target":183},{"source":180,"target":25},{"source":183,"target":2},{"source":181,"target":25},{"source":181,"target":184},{"source":181,"target":25},{"source":184,"target":25},{"source":26,"target":0},{"source":26,"target":185},{"source":26,"target":186},{"source":26,"target":187},{"source":185,"target":11},{"source":185,"target":188},{"source":185,"target":26},{"source":188,"target":11},{"source":186,"target":2},{"source":186,"target":189},{"source":186,"target":26},{"source":189,"target":2},{"source":187,"target":26},{"source":187,"target":190},{"source":187,"target":26},{"source":190,"target":26},{"source":27,"target":0},{"source":27,"target":191},{"source":27,"target":192},{"source":191,"target":27},{"source":192,"target":27},{"source":28,"target":0},{"source":28,"target":193},{"source":28,"target":194},{"source":193,"target":29},{"source":193,"target":195},{"source":193,"target":28},{"source":195,"target":29},{"source":194,"target":5},{"source":194,"target":196},{"source":194,"target":28},{"source":196,"target":5},{"source":29,"target":0},{"source":29,"target":197},{"source":29,"target":198},{"source":29,"target":199},{"source":29,"target":200},{"source":197,"target":29},{"source":198,"target":29},{"source":199,"target":29},{"source":200,"target":29},{"source":30,"target":0},{"source":30,"target":201},{"source":201,"target":31},{"source":201,"target":202},{"source":201,"target":30},{"source":202,"target":31},{"source":31,"target":0},{"source":31,"target":203},{"source":31,"target":204},{"source":31,"target":205},{"source":31,"target":206},{"source":203,"target":31},{"source":204,"target":31},{"source":205,"target":31},{"source":206,"target":31},{"source":32,"target":0},{"source":32,"target":30},{"source":32,"target":207},{"source":32,"target":208},{"source":32,"target":209},{"source":207,"target":33},{"source":207,"target":210},{"source":207,"target":32},{"source":210,"target":33},{"source":208,"target":5},{"source":208,"target":211},{"source":208,"target":32},{"source":211,"target":5},{"source":209,"target":30},{"source":33,"target":0},{"source":33,"target":212},{"source":33,"target":213},{"source":212,"target":33},{"source":213,"target":33}],"multigraph":true} |
false | <?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2012 University of Luxembourg 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:
Max E. Kramer - initial API and implementation
-->
<ecore:EPackage xmi:version="2.0"
xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="bsd_av"
nsURI="http://lu.uni.geko.examples.bsd_advice" nsPrefix="bsd_av">
<eClassifiers xsi:type="ecore:EClass" name="NamedElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="BSD" eSuperTypes="#//NamedElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="precendenceTuples" ordered="false"
upperBound="-1" eType="#//PrecedenceTuple" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="lifelines" ordered="false"
upperBound="-1" eType="#//Lifeline" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="messages" ordered="false"
upperBound="-1" eType="#//Message" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Lifeline" eSuperTypes="#//NamedElement"/>
<eClassifiers xsi:type="ecore:EClass" name="Event" eSuperTypes="#//NamedElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="owningLifeline" eType="#//Lifeline"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="SendEvent" eSuperTypes="#//Event"/>
<eClassifiers xsi:type="ecore:EClass" name="ReceiveEvent" eSuperTypes="#//Event"/>
<eClassifiers xsi:type="ecore:EClass" name="PrecedenceTuple">
<eStructuralFeatures xsi:type="ecore:EReference" name="precedingEvent" eType="#//Event"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="subsequentEvent" eType="#//Event"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Message" eSuperTypes="#//NamedElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="sendEvent" eType="#//SendEvent"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="receiveEvent" eType="#//ReceiveEvent"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="parameters" upperBound="-1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="type" upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Advice">
<eStructuralFeatures xsi:type="ecore:EReference" name="children" upperBound="-1"
eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EObject" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="GlobalScope">
<eStructuralFeatures xsi:type="ecore:EReference" name="scopedObject" lowerBound="1"
eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EObject"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="PerJoinPointScope">
<eStructuralFeatures xsi:type="ecore:EReference" name="scopedObject" lowerBound="1"
eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EObject"/>
</eClassifiers>
</ecore:EPackage>
| github:ecore:/data/max-kramer/geko-model-weaver/examples/bsd/lu.uni.geko.examples.bsd/metamodel/bsd_advice.ecore | ecore | bsd_av
NamedElement
name
BSD
precendenceTuples
lifelines
messages
Lifeline
Event
owningLifeline
SendEvent
ReceiveEvent
PrecedenceTuple
precedingEvent
subsequentEvent
Message
sendEvent
receiveEvent
parameters
type
Advice
children
GlobalScope
scopedObject
PerJoinPointScope
scopedObject | null | {"directed":true,"nodes":[{"nsPrefix":"bsd_av","nsURI":"http://lu.uni.geko.examples.bsd_advice","name":"bsd_av","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NamedElement","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BSD","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Lifeline","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Event","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SendEvent","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ReceiveEvent","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PrecedenceTuple","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Message","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Advice","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"GlobalScope","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PerJoinPointScope","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":12,"derived":false},{"id":13,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"precendenceTuples","changeable":true,"resolveProxies":true,"lowerBound":0,"id":14,"derived":false},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"lifelines","changeable":true,"resolveProxies":true,"lowerBound":0,"id":15,"derived":false},{"container":false,"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"messages","changeable":true,"resolveProxies":true,"lowerBound":0,"id":16,"derived":false},{"id":17,"eClass":"EGenericType"},{"id":18,"eClass":"EGenericType"},{"id":19,"eClass":"EGenericType"},{"id":20,"eClass":"EGenericType"},{"id":21,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"owningLifeline","changeable":true,"resolveProxies":true,"lowerBound":0,"id":22,"derived":false},{"id":23,"eClass":"EGenericType"},{"id":24,"eClass":"EGenericType"},{"id":25,"eClass":"EGenericType"},{"id":26,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"precedingEvent","changeable":true,"resolveProxies":true,"lowerBound":0,"id":27,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"subsequentEvent","changeable":true,"resolveProxies":true,"lowerBound":0,"id":28,"derived":false},{"id":29,"eClass":"EGenericType"},{"id":30,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"sendEvent","changeable":true,"resolveProxies":true,"lowerBound":0,"id":31,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"receiveEvent","changeable":true,"resolveProxies":true,"lowerBound":0,"id":32,"derived":false},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"parameters","changeable":true,"lowerBound":0,"iD":false,"id":33,"derived":false},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"lowerBound":0,"iD":false,"id":34,"derived":false},{"id":35,"eClass":"EGenericType"},{"id":36,"eClass":"EGenericType"},{"id":37,"eClass":"EGenericType"},{"id":38,"eClass":"EGenericType"},{"id":39,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"children","changeable":true,"resolveProxies":true,"lowerBound":0,"id":40,"derived":false},{"id":41,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"scopedObject","changeable":true,"resolveProxies":true,"lowerBound":1,"id":42,"derived":false},{"id":43,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"scopedObject","changeable":true,"resolveProxies":true,"lowerBound":1,"id":44,"derived":false},{"id":45,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":0,"target":8},{"source":0,"target":9},{"source":0,"target":10},{"source":0,"target":11},{"source":1,"target":0},{"source":1,"target":12},{"source":12,"target":13},{"source":12,"target":1},{"source":2,"target":0},{"source":2,"target":1},{"source":2,"target":14},{"source":2,"target":15},{"source":2,"target":16},{"source":2,"target":17},{"source":14,"target":7},{"source":14,"target":18},{"source":14,"target":2},{"source":18,"target":7},{"source":15,"target":3},{"source":15,"target":19},{"source":15,"target":2},{"source":19,"target":3},{"source":16,"target":8},{"source":16,"target":20},{"source":16,"target":2},{"source":20,"target":8},{"source":17,"target":1},{"source":3,"target":0},{"source":3,"target":1},{"source":3,"target":21},{"source":21,"target":1},{"source":4,"target":0},{"source":4,"target":1},{"source":4,"target":22},{"source":4,"target":23},{"source":22,"target":3},{"source":22,"target":24},{"source":22,"target":4},{"source":24,"target":3},{"source":23,"target":1},{"source":5,"target":0},{"source":5,"target":4},{"source":5,"target":25},{"source":25,"target":4},{"source":6,"target":0},{"source":6,"target":4},{"source":6,"target":26},{"source":26,"target":4},{"source":7,"target":0},{"source":7,"target":27},{"source":7,"target":28},{"source":27,"target":4},{"source":27,"target":29},{"source":27,"target":7},{"source":29,"target":4},{"source":28,"target":4},{"source":28,"target":30},{"source":28,"target":7},{"source":30,"target":4},{"source":8,"target":0},{"source":8,"target":1},{"source":8,"target":31},{"source":8,"target":32},{"source":8,"target":33},{"source":8,"target":34},{"source":8,"target":35},{"source":31,"target":5},{"source":31,"target":36},{"source":31,"target":8},{"source":36,"target":5},{"source":32,"target":6},{"source":32,"target":37},{"source":32,"target":8},{"source":37,"target":6},{"source":33,"target":38},{"source":33,"target":8},{"source":34,"target":39},{"source":34,"target":8},{"source":35,"target":1},{"source":9,"target":0},{"source":9,"target":40},{"source":40,"target":41},{"source":40,"target":9},{"source":10,"target":0},{"source":10,"target":42},{"source":42,"target":43},{"source":42,"target":10},{"source":11,"target":0},{"source":11,"target":44},{"source":44,"target":45},{"source":44,"target":11}],"multigraph":true} |
true | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="kpi_model" nsURI="http://cs.gssi.it/kpi" nsPrefix="kpi">
<eClassifiers xsi:type="ecore:EClass" name="KpiModel">
<eStructuralFeatures xsi:type="ecore:EReference" name="dimension" upperBound="-1"
eType="#//Dimension" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="subject" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Dimension">
<eStructuralFeatures xsi:type="ecore:EReference" name="dimension" upperBound="-1"
eType="#//Dimension" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="category" upperBound="-1"
eType="#//Category" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Category">
<eStructuralFeatures xsi:type="ecore:EReference" name="kpi" upperBound="-1" eType="#//Kpi"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="parameter" upperBound="-1"
eType="#//Parameter" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Kpi">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="description" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="category" lowerBound="1"
eType="#//Category" eOpposite="#//Category/kpi"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="value" lowerBound="1" eType="#//Value"
containment="true" eOpposite="#//Value/kpi"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="unit" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Value">
<eStructuralFeatures xsi:type="ecore:EReference" name="kpi" lowerBound="1" eType="#//Kpi"
eOpposite="#//Kpi/value"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="valuetype" lowerBound="1"
eType="#//ValueType" containment="true" eOpposite="#//ValueType/value"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Parameter">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ValueType" abstract="true">
<eStructuralFeatures xsi:type="ecore:EReference" name="value" lowerBound="1" eType="#//Value"
eOpposite="#//Value/valuetype"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CalculatedValue" abstract="true" eSuperTypes="#//ValueType">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="calculatedBy" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="SingleValue" abstract="true" eSuperTypes="#//CalculatedValue">
<eStructuralFeatures xsi:type="ecore:EReference" name="parameter" lowerBound="1"
eType="#//Parameter"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="StaticRealValue" eSuperTypes="#//SingleValue">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="staticvalue" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="BoolValue" eSuperTypes="#//SingleValue">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="actualizedvalue" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="RealValue" eSuperTypes="#//SingleValue">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="actualizedvalue" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="IntegerValue" eSuperTypes="#//SingleValue">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="actualizedvalue" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="StringValue" eSuperTypes="#//SingleValue">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="actualizedvalue" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="RangedValue" eSuperTypes="#//ValueType">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="actualizedvalue" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="ranges" upperBound="-1"
eType="#//Range" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Range">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="rangeName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="min" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="max" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="AggregatedValue" abstract="true" eSuperTypes="#//CalculatedValue">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="oper" lowerBound="1" eType="#//Operation"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="values" upperBound="-1"
eType="#//ValueType" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="AggregatedBoolValue" eSuperTypes="#//AggregatedValue">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="actualizedvalue" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="AggregatedRealValue" eSuperTypes="#//AggregatedValue">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="actualizedvalue" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="AggregatedIntegerValue" eSuperTypes="#//AggregatedValue">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="actualizedvalue" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="AggregatedStringValue" eSuperTypes="#//AggregatedValue">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="actualizedvalue" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="AggregatedRangedValue" eSuperTypes="#//AggregatedValue">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="actualizedvalue" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="ranges" upperBound="-1"
eType="#//Range" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="Operation">
<eLiterals name="GET"/>
<eLiterals name="SUM" value="1"/>
<eLiterals name="DIFF" value="2"/>
<eLiterals name="AVG" value="3"/>
<eLiterals name="MIN" value="4"/>
<eLiterals name="MAX" value="5"/>
<eLiterals name="DIV" value="6"/>
<eLiterals name="AND" value="7"/>
<eLiterals name="OR" value="8"/>
<eLiterals name="XOR" value="9"/>
<eLiterals name="MULT" value="10"/>
<eLiterals name="CEN" value="11" literal="CEN"/>
</eClassifiers>
</ecore:EPackage>
| github:ecore:/data/gssi/SmartCityModeling/ecmfa.smartcity/kpi.ecore | ecore | kpi_model
KpiModel
dimension
subject
Dimension
dimension
category
name
Category
kpi
parameter
name
Kpi
name
description
category
value
unit
Value
kpi
valuetype
Parameter
name
ValueType
value
CalculatedValue
calculatedBy
SingleValue
parameter
StaticRealValue
staticvalue
BoolValue
actualizedvalue
RealValue
actualizedvalue
IntegerValue
actualizedvalue
StringValue
actualizedvalue
RangedValue
actualizedvalue
ranges
Range
rangeName
min
max
AggregatedValue
oper
values
AggregatedBoolValue
actualizedvalue
AggregatedRealValue
actualizedvalue
AggregatedIntegerValue
actualizedvalue
AggregatedStringValue
actualizedvalue
AggregatedRangedValue
actualizedvalue
ranges
Operation
GET
GET
SUM
SUM
DIFF
DIFF
AVG
AVG
MIN
MIN
MAX
MAX
DIV
DIV
AND
AND
OR
OR
XOR
XOR
MULT
MULT
CEN
CEN | null | {"directed":true,"nodes":[{"nsPrefix":"kpi","nsURI":"http://cs.gssi.it/kpi","name":"kpi_model","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"KpiModel","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Dimension","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Category","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Kpi","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Value","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Parameter","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ValueType","instanceClass":null,"abstract":true,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CalculatedValue","instanceClass":null,"abstract":true,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SingleValue","instanceClass":null,"abstract":true,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StaticRealValue","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BoolValue","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RealValue","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IntegerValue","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StringValue","instanceClass":null,"abstract":false,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RangedValue","instanceClass":null,"abstract":false,"id":15,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Range","instanceClass":null,"abstract":false,"id":16,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AggregatedValue","instanceClass":null,"abstract":true,"id":17,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AggregatedBoolValue","instanceClass":null,"abstract":false,"id":18,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AggregatedRealValue","instanceClass":null,"abstract":false,"id":19,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AggregatedIntegerValue","instanceClass":null,"abstract":false,"id":20,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AggregatedStringValue","instanceClass":null,"abstract":false,"id":21,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AggregatedRangedValue","instanceClass":null,"abstract":false,"id":22,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"Operation","instanceClass":null,"id":23,"serializable":true,"eClass":"EEnum"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"dimension","changeable":true,"resolveProxies":true,"lowerBound":0,"id":24,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"subject","changeable":true,"lowerBound":0,"iD":false,"id":25,"derived":false},{"id":26,"eClass":"EGenericType"},{"id":27,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"dimension","changeable":true,"resolveProxies":true,"lowerBound":0,"id":28,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"category","changeable":true,"resolveProxies":true,"lowerBound":0,"id":29,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":30,"derived":false},{"id":31,"eClass":"EGenericType"},{"id":32,"eClass":"EGenericType"},{"id":33,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"kpi","changeable":true,"resolveProxies":true,"lowerBound":0,"id":34,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"parameter","changeable":true,"resolveProxies":true,"lowerBound":0,"id":35,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":36,"derived":false},{"id":37,"eClass":"EGenericType"},{"id":38,"eClass":"EGenericType"},{"id":39,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":40,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"description","changeable":true,"lowerBound":0,"iD":false,"id":41,"derived":false},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"category","changeable":true,"resolveProxies":true,"lowerBound":1,"id":42,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"resolveProxies":true,"lowerBound":1,"id":43,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"unit","changeable":true,"lowerBound":0,"iD":false,"id":44,"derived":false},{"id":45,"eClass":"EGenericType"},{"id":46,"eClass":"EGenericType"},{"id":47,"eClass":"EGenericType"},{"id":48,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"kpi","changeable":true,"resolveProxies":true,"lowerBound":1,"id":49,"derived":false},{"id":50,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"valuetype","changeable":true,"resolveProxies":true,"lowerBound":1,"id":51,"derived":false},{"id":52,"eClass":"EGenericType"},{"id":53,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"resolveProxies":true,"lowerBound":1,"id":54,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":55,"derived":false},{"id":56,"eClass":"EGenericType"},{"id":57,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"calculatedBy","changeable":true,"lowerBound":0,"iD":false,"id":58,"derived":false},{"id":59,"eClass":"EGenericType"},{"id":60,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"parameter","changeable":true,"resolveProxies":true,"lowerBound":1,"id":61,"derived":false},{"id":62,"eClass":"EGenericType"},{"id":63,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"staticvalue","changeable":true,"lowerBound":0,"iD":false,"id":64,"derived":false},{"id":65,"eClass":"EGenericType"},{"id":66,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"actualizedvalue","changeable":true,"lowerBound":0,"iD":false,"id":67,"derived":false},{"id":68,"eClass":"EGenericType"},{"id":69,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"actualizedvalue","changeable":true,"lowerBound":0,"iD":false,"id":70,"derived":false},{"id":71,"eClass":"EGenericType"},{"id":72,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"actualizedvalue","changeable":true,"lowerBound":0,"iD":false,"id":73,"derived":false},{"id":74,"eClass":"EGenericType"},{"id":75,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"actualizedvalue","changeable":true,"lowerBound":0,"iD":false,"id":76,"derived":false},{"id":77,"eClass":"EGenericType"},{"id":78,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"actualizedvalue","changeable":true,"lowerBound":0,"iD":false,"id":79,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"ranges","changeable":true,"resolveProxies":true,"lowerBound":0,"id":80,"derived":false},{"id":81,"eClass":"EGenericType"},{"id":82,"eClass":"EGenericType"},{"id":83,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"rangeName","changeable":true,"lowerBound":0,"iD":false,"id":84,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"min","changeable":true,"lowerBound":0,"iD":false,"id":85,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"max","changeable":true,"lowerBound":0,"iD":false,"id":86,"derived":false},{"id":87,"eClass":"EGenericType"},{"id":88,"eClass":"EGenericType"},{"id":89,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"oper","changeable":true,"lowerBound":1,"iD":false,"id":90,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"values","changeable":true,"resolveProxies":true,"lowerBound":0,"id":91,"derived":false},{"id":92,"eClass":"EGenericType"},{"id":93,"eClass":"EGenericType"},{"id":94,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"actualizedvalue","changeable":true,"lowerBound":0,"iD":false,"id":95,"derived":false},{"id":96,"eClass":"EGenericType"},{"id":97,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"actualizedvalue","changeable":true,"lowerBound":0,"iD":false,"id":98,"derived":false},{"id":99,"eClass":"EGenericType"},{"id":100,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"actualizedvalue","changeable":true,"lowerBound":0,"iD":false,"id":101,"derived":false},{"id":102,"eClass":"EGenericType"},{"id":103,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"actualizedvalue","changeable":true,"lowerBound":0,"iD":false,"id":104,"derived":false},{"id":105,"eClass":"EGenericType"},{"id":106,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"actualizedvalue","changeable":true,"lowerBound":0,"iD":false,"id":107,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"ranges","changeable":true,"resolveProxies":true,"lowerBound":0,"id":108,"derived":false},{"id":109,"eClass":"EGenericType"},{"id":110,"eClass":"EGenericType"},{"id":111,"eClass":"EGenericType"},{"name":"GET","id":112,"value":0,"literal":"GET","eClass":"EEnumLiteral"},{"name":"SUM","id":113,"value":1,"literal":"SUM","eClass":"EEnumLiteral"},{"name":"DIFF","id":114,"value":2,"literal":"DIFF","eClass":"EEnumLiteral"},{"name":"AVG","id":115,"value":3,"literal":"AVG","eClass":"EEnumLiteral"},{"name":"MIN","id":116,"value":4,"literal":"MIN","eClass":"EEnumLiteral"},{"name":"MAX","id":117,"value":5,"literal":"MAX","eClass":"EEnumLiteral"},{"name":"DIV","id":118,"value":6,"literal":"DIV","eClass":"EEnumLiteral"},{"name":"AND","id":119,"value":7,"literal":"AND","eClass":"EEnumLiteral"},{"name":"OR","id":120,"value":8,"literal":"OR","eClass":"EEnumLiteral"},{"name":"XOR","id":121,"value":9,"literal":"XOR","eClass":"EEnumLiteral"},{"name":"MULT","id":122,"value":10,"literal":"MULT","eClass":"EEnumLiteral"},{"name":"CEN","id":123,"value":11,"literal":"CEN","eClass":"EEnumLiteral"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":0,"target":8},{"source":0,"target":9},{"source":0,"target":10},{"source":0,"target":11},{"source":0,"target":12},{"source":0,"target":13},{"source":0,"target":14},{"source":0,"target":15},{"source":0,"target":16},{"source":0,"target":17},{"source":0,"target":18},{"source":0,"target":19},{"source":0,"target":20},{"source":0,"target":21},{"source":0,"target":22},{"source":0,"target":23},{"source":1,"target":0},{"source":1,"target":24},{"source":1,"target":25},{"source":24,"target":2},{"source":24,"target":26},{"source":24,"target":1},{"source":26,"target":2},{"source":25,"target":27},{"source":25,"target":1},{"source":2,"target":0},{"source":2,"target":28},{"source":2,"target":29},{"source":2,"target":30},{"source":28,"target":2},{"source":28,"target":31},{"source":28,"target":2},{"source":31,"target":2},{"source":29,"target":3},{"source":29,"target":32},{"source":29,"target":2},{"source":32,"target":3},{"source":30,"target":33},{"source":30,"target":2},{"source":3,"target":0},{"source":3,"target":34},{"source":3,"target":35},{"source":3,"target":36},{"source":34,"target":4},{"source":34,"target":37},{"source":34,"target":3},{"source":37,"target":4},{"source":35,"target":6},{"source":35,"target":38},{"source":35,"target":3},{"source":38,"target":6},{"source":36,"target":39},{"source":36,"target":3},{"source":4,"target":0},{"source":4,"target":40},{"source":4,"target":41},{"source":4,"target":42},{"source":4,"target":43},{"source":4,"target":44},{"source":40,"target":45},{"source":40,"target":4},{"source":41,"target":46},{"source":41,"target":4},{"source":42,"target":3},{"source":42,"target":47},{"source":42,"target":4},{"source":42,"target":34},{"source":47,"target":3},{"source":43,"target":5},{"source":43,"target":48},{"source":43,"target":4},{"source":43,"target":49},{"source":48,"target":5},{"source":44,"target":50},{"source":44,"target":4},{"source":5,"target":0},{"source":5,"target":49},{"source":5,"target":51},{"source":49,"target":4},{"source":49,"target":52},{"source":49,"target":5},{"source":49,"target":43},{"source":52,"target":4},{"source":51,"target":7},{"source":51,"target":53},{"source":51,"target":5},{"source":51,"target":54},{"source":53,"target":7},{"source":6,"target":0},{"source":6,"target":55},{"source":55,"target":56},{"source":55,"target":6},{"source":7,"target":0},{"source":7,"target":54},{"source":54,"target":5},{"source":54,"target":57},{"source":54,"target":7},{"source":54,"target":51},{"source":57,"target":5},{"source":8,"target":0},{"source":8,"target":7},{"source":8,"target":58},{"source":8,"target":59},{"source":58,"target":60},{"source":58,"target":8},{"source":59,"target":7},{"source":9,"target":0},{"source":9,"target":8},{"source":9,"target":61},{"source":9,"target":62},{"source":61,"target":6},{"source":61,"target":63},{"source":61,"target":9},{"source":63,"target":6},{"source":62,"target":8},{"source":10,"target":0},{"source":10,"target":9},{"source":10,"target":64},{"source":10,"target":65},{"source":64,"target":66},{"source":64,"target":10},{"source":65,"target":9},{"source":11,"target":0},{"source":11,"target":9},{"source":11,"target":67},{"source":11,"target":68},{"source":67,"target":69},{"source":67,"target":11},{"source":68,"target":9},{"source":12,"target":0},{"source":12,"target":9},{"source":12,"target":70},{"source":12,"target":71},{"source":70,"target":72},{"source":70,"target":12},{"source":71,"target":9},{"source":13,"target":0},{"source":13,"target":9},{"source":13,"target":73},{"source":13,"target":74},{"source":73,"target":75},{"source":73,"target":13},{"source":74,"target":9},{"source":14,"target":0},{"source":14,"target":9},{"source":14,"target":76},{"source":14,"target":77},{"source":76,"target":78},{"source":76,"target":14},{"source":77,"target":9},{"source":15,"target":0},{"source":15,"target":7},{"source":15,"target":79},{"source":15,"target":80},{"source":15,"target":81},{"source":79,"target":82},{"source":79,"target":15},{"source":80,"target":16},{"source":80,"target":83},{"source":80,"target":15},{"source":83,"target":16},{"source":81,"target":7},{"source":16,"target":0},{"source":16,"target":84},{"source":16,"target":85},{"source":16,"target":86},{"source":84,"target":87},{"source":84,"target":16},{"source":85,"target":88},{"source":85,"target":16},{"source":86,"target":89},{"source":86,"target":16},{"source":17,"target":0},{"source":17,"target":8},{"source":17,"target":90},{"source":17,"target":91},{"source":17,"target":92},{"source":90,"target":23},{"source":90,"target":93},{"source":90,"target":17},{"source":93,"target":23},{"source":91,"target":7},{"source":91,"target":94},{"source":91,"target":17},{"source":94,"target":7},{"source":92,"target":8},{"source":18,"target":0},{"source":18,"target":17},{"source":18,"target":95},{"source":18,"target":96},{"source":95,"target":97},{"source":95,"target":18},{"source":96,"target":17},{"source":19,"target":0},{"source":19,"target":17},{"source":19,"target":98},{"source":19,"target":99},{"source":98,"target":100},{"source":98,"target":19},{"source":99,"target":17},{"source":20,"target":0},{"source":20,"target":17},{"source":20,"target":101},{"source":20,"target":102},{"source":101,"target":103},{"source":101,"target":20},{"source":102,"target":17},{"source":21,"target":0},{"source":21,"target":17},{"source":21,"target":104},{"source":21,"target":105},{"source":104,"target":106},{"source":104,"target":21},{"source":105,"target":17},{"source":22,"target":0},{"source":22,"target":17},{"source":22,"target":107},{"source":22,"target":108},{"source":22,"target":109},{"source":107,"target":110},{"source":107,"target":22},{"source":108,"target":16},{"source":108,"target":111},{"source":108,"target":22},{"source":111,"target":16},{"source":109,"target":17},{"source":23,"target":0},{"source":23,"target":112},{"source":23,"target":113},{"source":23,"target":114},{"source":23,"target":115},{"source":23,"target":116},{"source":23,"target":117},{"source":23,"target":118},{"source":23,"target":119},{"source":23,"target":120},{"source":23,"target":121},{"source":23,"target":122},{"source":23,"target":123},{"source":112,"target":23},{"source":113,"target":23},{"source":114,"target":23},{"source":115,"target":23},{"source":116,"target":23},{"source":117,"target":23},{"source":118,"target":23},{"source":119,"target":23},{"source":120,"target":23},{"source":121,"target":23},{"source":122,"target":23},{"source":123,"target":23}],"multigraph":true} |
true | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="ecore" nsURI="http://www.eclipse.org/emf/2002/Ecore" nsPrefix="ecore">
<eClassifiers xsi:type="ecore:EClass" name="EAttribute" eSuperTypes="#//EStructuralFeature">
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore">
<details key="constraints" value="ConsistentTransient"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="iD" eType="#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eAttributeType" lowerBound="1"
eType="#//EDataType" changeable="false" volatile="true" transient="true" derived="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EAnnotation" eSuperTypes="#//EModelElement">
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore">
<details key="constraints" value="WellFormedSourceURI"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="source" eType="#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="details" upperBound="-1"
eType="#//EStringToStringMapEntry" containment="true" resolveProxies="false"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eModelElement" eType="#//EModelElement"
transient="true" resolveProxies="false" eOpposite="#//EModelElement/eAnnotations"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="contents" upperBound="-1"
eType="#//EObject" containment="true" resolveProxies="false"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="references" upperBound="-1"
eType="#//EObject"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EClass" eSuperTypes="#//EClassifier">
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore">
<details key="constraints" value="InterfaceIsAbstract AtMostOneID UniqueFeatureNames UniqueOperationSignatures NoCircularSuperTypes WellFormedMapEntryClass ConsistentSuperTypes DisjointFeatureAndOperationSignatures"/>
</eAnnotations>
<eOperations name="isSuperTypeOf" eType="#//EBoolean">
<eParameters name="someClass" eType="#//EClass"/>
</eOperations>
<eOperations name="getFeatureCount" eType="#//EInt"/>
<eOperations name="getEStructuralFeature" eType="#//EStructuralFeature">
<eParameters name="featureID" eType="#//EInt"/>
</eOperations>
<eOperations name="getFeatureID" eType="#//EInt">
<eParameters name="feature" eType="#//EStructuralFeature"/>
</eOperations>
<eOperations name="getEStructuralFeature" eType="#//EStructuralFeature">
<eParameters name="featureName" eType="#//EString"/>
</eOperations>
<eOperations name="getOperationCount" eType="#//EInt"/>
<eOperations name="getEOperation" eType="#//EOperation">
<eParameters name="operationID" eType="#//EInt"/>
</eOperations>
<eOperations name="getOperationID" eType="#//EInt">
<eParameters name="operation" eType="#//EOperation"/>
</eOperations>
<eOperations name="getOverride" eType="#//EOperation">
<eParameters name="operation" eType="#//EOperation"/>
</eOperations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="abstract" eType="#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="interface" eType="#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eSuperTypes" upperBound="-1"
eType="#//EClass" unsettable="true">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="suppressedIsSetVisibility" value="true"/>
<details key="suppressedUnsetVisibility" value="true"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="eOperations" upperBound="-1"
eType="#//EOperation" containment="true" resolveProxies="false" eOpposite="#//EOperation/eContainingClass"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eAllAttributes" upperBound="-1"
eType="#//EAttribute" changeable="false" volatile="true" transient="true"
derived="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eAllReferences" upperBound="-1"
eType="#//EReference" changeable="false" volatile="true" transient="true"
derived="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eReferences" upperBound="-1"
eType="#//EReference" changeable="false" volatile="true" transient="true"
derived="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eAttributes" upperBound="-1"
eType="#//EAttribute" changeable="false" volatile="true" transient="true"
derived="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eAllContainments" upperBound="-1"
eType="#//EReference" changeable="false" volatile="true" transient="true"
derived="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eAllOperations" upperBound="-1"
eType="#//EOperation" changeable="false" volatile="true" transient="true"
derived="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eAllStructuralFeatures"
upperBound="-1" eType="#//EStructuralFeature" changeable="false" volatile="true"
transient="true" derived="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eAllSuperTypes" upperBound="-1"
eType="#//EClass" changeable="false" volatile="true" transient="true" derived="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eIDAttribute" eType="#//EAttribute"
changeable="false" volatile="true" transient="true" derived="true" resolveProxies="false"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eStructuralFeatures" upperBound="-1"
eType="#//EStructuralFeature" containment="true" resolveProxies="false" eOpposite="#//EStructuralFeature/eContainingClass"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eGenericSuperTypes" upperBound="-1"
eType="#//EGenericType" unsettable="true" containment="true" resolveProxies="false">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="suppressedIsSetVisibility" value="true"/>
<details key="suppressedUnsetVisibility" value="true"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="eAllGenericSuperTypes"
upperBound="-1" eType="#//EGenericType" changeable="false" volatile="true"
transient="true" derived="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EClassifier" abstract="true" eSuperTypes="#//ENamedElement">
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore">
<details key="constraints" value="WellFormedInstanceTypeName UniqueTypeParameterNames"/>
</eAnnotations>
<eOperations name="isInstance" eType="#//EBoolean">
<eParameters name="object" eType="#//EJavaObject"/>
</eOperations>
<eOperations name="getClassifierID" eType="#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="instanceClassName" eType="#//EString"
volatile="true" unsettable="true">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="suppressedIsSetVisibility" value="true"/>
<details key="suppressedUnsetVisibility" value="true"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="instanceClass" changeable="false"
volatile="true" transient="true" derived="true">
<eGenericType eClassifier="#//EJavaClass">
<eTypeArguments/>
</eGenericType>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="defaultValue" eType="#//EJavaObject"
changeable="false" volatile="true" transient="true" derived="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="instanceTypeName" eType="#//EString"
volatile="true" unsettable="true">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="suppressedIsSetVisibility" value="true"/>
<details key="suppressedUnsetVisibility" value="true"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="ePackage" eType="#//EPackage"
changeable="false" transient="true" eOpposite="#//EPackage/eClassifiers"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eTypeParameters" upperBound="-1"
eType="#//ETypeParameter" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EDataType" eSuperTypes="#//EClassifier">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="serializable" eType="#//EBoolean"
defaultValueLiteral="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EEnum" eSuperTypes="#//EDataType">
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore">
<details key="constraints" value="UniqueEnumeratorNames UniqueEnumeratorLiterals"/>
</eAnnotations>
<eOperations name="getEEnumLiteral" eType="#//EEnumLiteral">
<eParameters name="name" eType="#//EString"/>
</eOperations>
<eOperations name="getEEnumLiteral" eType="#//EEnumLiteral">
<eParameters name="value" eType="#//EInt"/>
</eOperations>
<eOperations name="getEEnumLiteralByLiteral" eType="#//EEnumLiteral">
<eParameters name="literal" eType="#//EString"/>
</eOperations>
<eStructuralFeatures xsi:type="ecore:EReference" name="eLiterals" upperBound="-1"
eType="#//EEnumLiteral" containment="true" resolveProxies="false" eOpposite="#//EEnumLiteral/eEnum"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EEnumLiteral" eSuperTypes="#//ENamedElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="instance" eType="#//EEnumerator"
transient="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="literal" eType="#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eEnum" eType="#//EEnum"
changeable="false" transient="true" resolveProxies="false" eOpposite="#//EEnum/eLiterals"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EFactory" eSuperTypes="#//EModelElement">
<eOperations name="create" eType="#//EObject">
<eParameters name="eClass" eType="#//EClass"/>
</eOperations>
<eOperations name="createFromString" eType="#//EJavaObject">
<eParameters name="eDataType" eType="#//EDataType"/>
<eParameters name="literalValue" eType="#//EString"/>
</eOperations>
<eOperations name="convertToString" eType="#//EString">
<eParameters name="eDataType" eType="#//EDataType"/>
<eParameters name="instanceValue" eType="#//EJavaObject"/>
</eOperations>
<eStructuralFeatures xsi:type="ecore:EReference" name="ePackage" lowerBound="1"
eType="#//EPackage" transient="true" resolveProxies="false" eOpposite="#//EPackage/eFactoryInstance"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EModelElement" abstract="true">
<eOperations name="getEAnnotation" eType="#//EAnnotation">
<eParameters name="source" eType="#//EString"/>
</eOperations>
<eStructuralFeatures xsi:type="ecore:EReference" name="eAnnotations" upperBound="-1"
eType="#//EAnnotation" containment="true" resolveProxies="false" eOpposite="#//EAnnotation/eModelElement"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ENamedElement" abstract="true" eSuperTypes="#//EModelElement">
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore">
<details key="constraints" value="WellFormedName"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EObject">
<eOperations name="eClass" eType="#//EClass"/>
<eOperations name="eIsProxy" eType="#//EBoolean"/>
<eOperations name="eResource" eType="#//EResource"/>
<eOperations name="eContainer" eType="#//EObject"/>
<eOperations name="eContainingFeature" eType="#//EStructuralFeature"/>
<eOperations name="eContainmentFeature" eType="#//EReference"/>
<eOperations name="eContents">
<eGenericType eClassifier="#//EEList">
<eTypeArguments eClassifier="#//EObject"/>
</eGenericType>
</eOperations>
<eOperations name="eAllContents">
<eGenericType eClassifier="#//ETreeIterator">
<eTypeArguments eClassifier="#//EObject"/>
</eGenericType>
</eOperations>
<eOperations name="eCrossReferences">
<eGenericType eClassifier="#//EEList">
<eTypeArguments eClassifier="#//EObject"/>
</eGenericType>
</eOperations>
<eOperations name="eGet" eType="#//EJavaObject">
<eParameters name="feature" eType="#//EStructuralFeature"/>
</eOperations>
<eOperations name="eGet" eType="#//EJavaObject">
<eParameters name="feature" eType="#//EStructuralFeature"/>
<eParameters name="resolve" eType="#//EBoolean"/>
</eOperations>
<eOperations name="eSet">
<eParameters name="feature" eType="#//EStructuralFeature"/>
<eParameters name="newValue" eType="#//EJavaObject"/>
</eOperations>
<eOperations name="eIsSet" eType="#//EBoolean">
<eParameters name="feature" eType="#//EStructuralFeature"/>
</eOperations>
<eOperations name="eUnset">
<eParameters name="feature" eType="#//EStructuralFeature"/>
</eOperations>
<eOperations name="eInvoke" eType="#//EJavaObject" eExceptions="#//EInvocationTargetException">
<eParameters name="operation" eType="#//EOperation"/>
<eParameters name="arguments">
<eGenericType eClassifier="#//EEList">
<eTypeArguments/>
</eGenericType>
</eParameters>
</eOperations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EOperation" eSuperTypes="#//ETypedElement">
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore">
<details key="constraints" value="UniqueParameterNames UniqueTypeParameterNames NoRepeatingVoid"/>
</eAnnotations>
<eOperations name="getOperationID" eType="#//EInt"/>
<eOperations name="isOverrideOf" eType="#//EBoolean">
<eParameters name="someOperation" eType="#//EOperation"/>
</eOperations>
<eStructuralFeatures xsi:type="ecore:EReference" name="eContainingClass" eType="#//EClass"
changeable="false" transient="true" resolveProxies="false" eOpposite="#//EClass/eOperations"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eTypeParameters" upperBound="-1"
eType="#//ETypeParameter" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eParameters" upperBound="-1"
eType="#//EParameter" containment="true" resolveProxies="false" eOpposite="#//EParameter/eOperation"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eExceptions" upperBound="-1"
eType="#//EClassifier" unsettable="true">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="suppressedIsSetVisibility" value="true"/>
<details key="suppressedUnsetVisibility" value="true"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="eGenericExceptions" upperBound="-1"
eType="#//EGenericType" unsettable="true" containment="true" resolveProxies="false">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="suppressedIsSetVisibility" value="true"/>
<details key="suppressedUnsetVisibility" value="true"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EPackage" eSuperTypes="#//ENamedElement">
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore">
<details key="constraints" value="WellFormedNsURI WellFormedNsPrefix UniqueSubpackageNames UniqueClassifierNames UniqueNsURIs"/>
</eAnnotations>
<eOperations name="getEClassifier" eType="#//EClassifier">
<eParameters name="name" eType="#//EString"/>
</eOperations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="nsURI" eType="#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="nsPrefix" eType="#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eFactoryInstance" lowerBound="1"
eType="#//EFactory" transient="true" resolveProxies="false" eOpposite="#//EFactory/ePackage"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eClassifiers" upperBound="-1"
eType="#//EClassifier" containment="true" eOpposite="#//EClassifier/ePackage"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eSubpackages" upperBound="-1"
eType="#//EPackage" containment="true" eOpposite="#//EPackage/eSuperPackage"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eSuperPackage" eType="#//EPackage"
changeable="false" transient="true" eOpposite="#//EPackage/eSubpackages"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EParameter" eSuperTypes="#//ETypedElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="eOperation" eType="#//EOperation"
changeable="false" transient="true" resolveProxies="false" eOpposite="#//EOperation/eParameters"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EReference" eSuperTypes="#//EStructuralFeature">
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore">
<details key="constraints" value="ConsistentOpposite SingleContainer ConsistentKeys ConsistentUnique ConsistentContainer"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="containment" eType="#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="container" eType="#//EBoolean"
changeable="false" volatile="true" transient="true" derived="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="resolveProxies" eType="#//EBoolean"
defaultValueLiteral="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eOpposite" eType="#//EReference"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eReferenceType" lowerBound="1"
eType="#//EClass" changeable="false" volatile="true" transient="true" derived="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eKeys" upperBound="-1"
eType="#//EAttribute"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EStructuralFeature" abstract="true"
eSuperTypes="#//ETypedElement">
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore">
<details key="constraints" value="ValidDefaultValueLiteral"/>
</eAnnotations>
<eOperations name="getFeatureID" eType="#//EInt"/>
<eOperations name="getContainerClass">
<eGenericType eClassifier="#//EJavaClass">
<eTypeArguments/>
</eGenericType>
</eOperations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="changeable" eType="#//EBoolean"
defaultValueLiteral="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="volatile" eType="#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="transient" eType="#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="defaultValueLiteral" eType="#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="defaultValue" eType="#//EJavaObject"
changeable="false" volatile="true" transient="true" derived="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="unsettable" eType="#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="derived" eType="#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eContainingClass" eType="#//EClass"
changeable="false" transient="true" resolveProxies="false" eOpposite="#//EClass/eStructuralFeatures"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ETypedElement" abstract="true" eSuperTypes="#//ENamedElement">
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore">
<details key="constraints" value="ValidLowerBound ValidUpperBound ConsistentBounds ValidType"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="ordered" eType="#//EBoolean"
defaultValueLiteral="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="unique" eType="#//EBoolean"
defaultValueLiteral="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="lowerBound" eType="#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="upperBound" eType="#//EInt"
defaultValueLiteral="1"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="many" eType="#//EBoolean"
changeable="false" volatile="true" transient="true" derived="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="required" eType="#//EBoolean"
changeable="false" volatile="true" transient="true" derived="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eType" eType="#//EClassifier"
volatile="true" unsettable="true">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="suppressedIsSetVisibility" value="true"/>
<details key="suppressedUnsetVisibility" value="true"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="eGenericType" eType="#//EGenericType"
volatile="true" unsettable="true" containment="true" resolveProxies="false">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="suppressedIsSetVisibility" value="true"/>
<details key="suppressedUnsetVisibility" value="true"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="EBigDecimal" instanceClassName="java.math.BigDecimal">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="baseType" value="http://www.w3.org/2001/XMLSchema#decimal"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="EBigInteger" instanceClassName="java.math.BigInteger">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="baseType" value="http://www.w3.org/2001/XMLSchema#integer"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="EBoolean" instanceClassName="boolean">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="baseType" value="http://www.w3.org/2001/XMLSchema#boolean"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="EBooleanObject" instanceClassName="java.lang.Boolean">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="baseType" value="EBoolean"/>
<details key="name" value="EBoolean:Object"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="EByte" instanceClassName="byte">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="baseType" value="http://www.w3.org/2001/XMLSchema#byte"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="EByteArray" instanceClassName="byte[]">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="baseType" value="http://www.w3.org/2001/XMLSchema#hexBinary"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="EByteObject" instanceClassName="java.lang.Byte">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="baseType" value="EByte"/>
<details key="name" value="EByte:Object"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="EChar" instanceClassName="char"/>
<eClassifiers xsi:type="ecore:EDataType" name="ECharacterObject" instanceClassName="java.lang.Character">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="baseType" value="EChar"/>
<details key="name" value="EChar:Object"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="EDate" instanceClassName="java.util.Date"/>
<eClassifiers xsi:type="ecore:EDataType" name="EDiagnosticChain" instanceClassName="org.eclipse.emf.common.util.DiagnosticChain"
serializable="false"/>
<eClassifiers xsi:type="ecore:EDataType" name="EDouble" instanceClassName="double">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="baseType" value="http://www.w3.org/2001/XMLSchema#double"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="EDoubleObject" instanceClassName="java.lang.Double">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="baseType" value="EDouble"/>
<details key="name" value="EDouble:Object"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="EEList" instanceClassName="org.eclipse.emf.common.util.EList"
serializable="false">
<eTypeParameters name="E"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="EEnumerator" instanceClassName="org.eclipse.emf.common.util.Enumerator"
serializable="false"/>
<eClassifiers xsi:type="ecore:EDataType" name="EFeatureMap" instanceClassName="org.eclipse.emf.ecore.util.FeatureMap"
serializable="false"/>
<eClassifiers xsi:type="ecore:EDataType" name="EFeatureMapEntry" instanceClassName="org.eclipse.emf.ecore.util.FeatureMap$Entry"
serializable="false"/>
<eClassifiers xsi:type="ecore:EDataType" name="EFloat" instanceClassName="float">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="baseType" value="http://www.w3.org/2001/XMLSchema#float"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="EFloatObject" instanceClassName="java.lang.Float">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="baseType" value="EFloat"/>
<details key="name" value="EFloat:Object"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="EInt" instanceClassName="int">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="baseType" value="http://www.w3.org/2001/XMLSchema#int"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="EIntegerObject" instanceClassName="java.lang.Integer">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="baseType" value="EInt"/>
<details key="name" value="EInt:Object"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="EJavaClass" instanceClassName="java.lang.Class">
<eTypeParameters name="T"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="EJavaObject" instanceClassName="java.lang.Object"/>
<eClassifiers xsi:type="ecore:EDataType" name="ELong" instanceClassName="long">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="baseType" value="http://www.w3.org/2001/XMLSchema#long"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="ELongObject" instanceClassName="java.lang.Long">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="baseType" value="ELong"/>
<details key="name" value="ELong:Object"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="EMap" instanceClassName="java.util.Map"
serializable="false">
<eTypeParameters name="K"/>
<eTypeParameters name="V"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="EResource" instanceClassName="org.eclipse.emf.ecore.resource.Resource"
serializable="false"/>
<eClassifiers xsi:type="ecore:EDataType" name="EResourceSet" instanceClassName="org.eclipse.emf.ecore.resource.ResourceSet"
serializable="false"/>
<eClassifiers xsi:type="ecore:EDataType" name="EShort" instanceClassName="short">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="baseType" value="http://www.w3.org/2001/XMLSchema#short"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="EShortObject" instanceClassName="java.lang.Short">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="baseType" value="EShort"/>
<details key="name" value="EShort:Object"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="EString" instanceClassName="java.lang.String">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="baseType" value="http://www.w3.org/2001/XMLSchema#string"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EStringToStringMapEntry" instanceClassName="java.util.Map$Entry">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="key" eType="#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="ETreeIterator" instanceClassName="org.eclipse.emf.common.util.TreeIterator"
serializable="false">
<eTypeParameters name="E"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EGenericType">
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore">
<details key="constraints" value="ConsistentType ConsistentBounds ConsistentArguments"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="eUpperBound" eType="#//EGenericType"
containment="true" resolveProxies="false"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eTypeArguments" upperBound="-1"
eType="#//EGenericType" containment="true" resolveProxies="false"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eRawType" lowerBound="1"
eType="#//EClassifier" changeable="false" transient="true" derived="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eLowerBound" eType="#//EGenericType"
containment="true" resolveProxies="false"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eTypeParameter" eType="#//ETypeParameter"
resolveProxies="false"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eClassifier" eType="#//EClassifier"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ETypeParameter" eSuperTypes="#//ENamedElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="eBounds" upperBound="-1"
eType="#//EGenericType" containment="true" resolveProxies="false"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="EInvocationTargetException" instanceClassName="java.lang.reflect.InvocationTargetException"
serializable="false"/>
</ecore:EPackage>
| github:ecore:/data/earlbittencourt/Processo-DERIVA/Mestrado/metamodelos/Ecore.ecore | ecore | ecore
EAttribute
iD
eAttributeType
EAnnotation
source
details
eModelElement
contents
references
EClass
isSuperTypeOf
someClass
getFeatureCount
getEStructuralFeature
featureID
getFeatureID
feature
getEStructuralFeature
featureName
getOperationCount
getEOperation
operationID
getOperationID
operation
getOverride
operation
abstract
interface
eSuperTypes
eOperations
eAllAttributes
eAllReferences
eReferences
eAttributes
eAllContainments
eAllOperations
eAllStructuralFeatures
eAllSuperTypes
eIDAttribute
eStructuralFeatures
eGenericSuperTypes
eAllGenericSuperTypes
EClassifier
isInstance
object
getClassifierID
instanceClassName
instanceClass
defaultValue
instanceTypeName
ePackage
eTypeParameters
EDataType
serializable
true
EEnum
getEEnumLiteral
name
getEEnumLiteral
value
getEEnumLiteralByLiteral
literal
eLiterals
EEnumLiteral
value
instance
literal
eEnum
EFactory
create
eClass
createFromString
eDataType
literalValue
convertToString
eDataType
instanceValue
ePackage
EModelElement
getEAnnotation
source
eAnnotations
ENamedElement
name
EObject
eClass
eIsProxy
eResource
eContainer
eContainingFeature
eContainmentFeature
eContents
eAllContents
eCrossReferences
eGet
feature
eGet
feature
resolve
eSet
feature
newValue
eIsSet
feature
eUnset
feature
eInvoke
operation
arguments
EOperation
getOperationID
isOverrideOf
someOperation
eContainingClass
eTypeParameters
eParameters
eExceptions
eGenericExceptions
EPackage
getEClassifier
name
nsURI
nsPrefix
eFactoryInstance
eClassifiers
eSubpackages
eSuperPackage
EParameter
eOperation
EReference
containment
container
resolveProxies
true
eOpposite
eReferenceType
eKeys
EStructuralFeature
getFeatureID
getContainerClass
changeable
true
volatile
transient
defaultValueLiteral
defaultValue
unsettable
derived
eContainingClass
ETypedElement
ordered
true
unique
true
lowerBound
upperBound
1
many
required
eType
eGenericType
EBigDecimal
java.math.BigDecimal
java.math.BigDecimal
EBigInteger
java.math.BigInteger
java.math.BigInteger
EBoolean
boolean
boolean
EBooleanObject
java.lang.Boolean
java.lang.Boolean
EByte
byte
byte
EByteArray
byte[]
byte[]
EByteObject
java.lang.Byte
java.lang.Byte
EChar
char
char
ECharacterObject
java.lang.Character
java.lang.Character
EDate
java.util.Date
java.util.Date
EDiagnosticChain
org.eclipse.emf.common.util.DiagnosticChain
org.eclipse.emf.common.util.DiagnosticChain
EDouble
double
double
EDoubleObject
java.lang.Double
java.lang.Double
EEList
org.eclipse.emf.common.util.EList
org.eclipse.emf.common.util.EList
E
EEnumerator
org.eclipse.emf.common.util.Enumerator
org.eclipse.emf.common.util.Enumerator
EFeatureMap
org.eclipse.emf.ecore.util.FeatureMap
org.eclipse.emf.ecore.util.FeatureMap
EFeatureMapEntry
org.eclipse.emf.ecore.util.FeatureMap$Entry
org.eclipse.emf.ecore.util.FeatureMap$Entry
EFloat
float
float
EFloatObject
java.lang.Float
java.lang.Float
EInt
int
int
EIntegerObject
java.lang.Integer
java.lang.Integer
EJavaClass
java.lang.Class
java.lang.Class
T
EJavaObject
java.lang.Object
java.lang.Object
ELong
long
long
ELongObject
java.lang.Long
java.lang.Long
EMap
java.util.Map
java.util.Map
K
V
EResource
org.eclipse.emf.ecore.resource.Resource
org.eclipse.emf.ecore.resource.Resource
EResourceSet
org.eclipse.emf.ecore.resource.ResourceSet
org.eclipse.emf.ecore.resource.ResourceSet
EShort
short
short
EShortObject
java.lang.Short
java.lang.Short
EString
java.lang.String
java.lang.String
EStringToStringMapEntry
java.util.Map$Entry
java.util.Map$Entry
key
value
ETreeIterator
org.eclipse.emf.common.util.TreeIterator
org.eclipse.emf.common.util.TreeIterator
E
EGenericType
eUpperBound
eTypeArguments
eRawType
eLowerBound
eTypeParameter
eClassifier
ETypeParameter
eBounds
EInvocationTargetException
java.lang.reflect.InvocationTargetException
java.lang.reflect.InvocationTargetException | null | {"directed":true,"nodes":[{"nsPrefix":"ecore","nsURI":"http://www.eclipse.org/emf/2002/Ecore","name":"ecore","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EAttribute","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EAnnotation","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EClass","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EClassifier","instanceClass":null,"abstract":true,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EDataType","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EEnum","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EEnumLiteral","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EFactory","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EModelElement","instanceClass":null,"abstract":true,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ENamedElement","instanceClass":null,"abstract":true,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EObject","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EOperation","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EPackage","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EParameter","instanceClass":null,"abstract":false,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EReference","instanceClass":null,"abstract":false,"id":15,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EStructuralFeature","instanceClass":null,"abstract":true,"id":16,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ETypedElement","instanceClass":null,"abstract":true,"id":17,"interface":false,"eClass":"EClass"},{"instanceTypeName":"java.math.BigDecimal","defaultValue":null,"instanceClassName":"java.math.BigDecimal","name":"EBigDecimal","instanceClass":"java.math.BigDecimal","id":18,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.math.BigInteger","defaultValue":null,"instanceClassName":"java.math.BigInteger","name":"EBigInteger","instanceClass":"java.math.BigInteger","id":19,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"boolean","defaultValue":false,"instanceClassName":"boolean","name":"EBoolean","instanceClass":"boolean","id":20,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.lang.Boolean","defaultValue":null,"instanceClassName":"java.lang.Boolean","name":"EBooleanObject","instanceClass":"java.lang.Boolean","id":21,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"byte","defaultValue":0,"instanceClassName":"byte","name":"EByte","instanceClass":"byte","id":22,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"byte[]","defaultValue":null,"instanceClassName":"byte[]","name":"EByteArray","instanceClass":"[B","id":23,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.lang.Byte","defaultValue":null,"instanceClassName":"java.lang.Byte","name":"EByteObject","instanceClass":"java.lang.Byte","id":24,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"char","defaultValue":"\u0000","instanceClassName":"char","name":"EChar","instanceClass":"char","id":25,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.lang.Character","defaultValue":null,"instanceClassName":"java.lang.Character","name":"ECharacterObject","instanceClass":"java.lang.Character","id":26,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.util.Date","defaultValue":null,"instanceClassName":"java.util.Date","name":"EDate","instanceClass":"java.util.Date","id":27,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"org.eclipse.emf.common.util.DiagnosticChain","defaultValue":null,"instanceClassName":"org.eclipse.emf.common.util.DiagnosticChain","name":"EDiagnosticChain","instanceClass":"org.eclipse.emf.common.util.DiagnosticChain","id":28,"serializable":false,"eClass":"EDataType"},{"instanceTypeName":"double","defaultValue":0.0,"instanceClassName":"double","name":"EDouble","instanceClass":"double","id":29,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.lang.Double","defaultValue":null,"instanceClassName":"java.lang.Double","name":"EDoubleObject","instanceClass":"java.lang.Double","id":30,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"org.eclipse.emf.common.util.EList","defaultValue":null,"instanceClassName":"org.eclipse.emf.common.util.EList","name":"EEList","instanceClass":"org.eclipse.emf.common.util.EList","id":31,"serializable":false,"eClass":"EDataType"},{"instanceTypeName":"org.eclipse.emf.common.util.Enumerator","defaultValue":null,"instanceClassName":"org.eclipse.emf.common.util.Enumerator","name":"EEnumerator","instanceClass":"org.eclipse.emf.common.util.Enumerator","id":32,"serializable":false,"eClass":"EDataType"},{"instanceTypeName":"org.eclipse.emf.ecore.util.FeatureMap","defaultValue":null,"instanceClassName":"org.eclipse.emf.ecore.util.FeatureMap","name":"EFeatureMap","instanceClass":"org.eclipse.emf.ecore.util.FeatureMap","id":33,"serializable":false,"eClass":"EDataType"},{"instanceTypeName":"org.eclipse.emf.ecore.util.FeatureMap$Entry","defaultValue":null,"instanceClassName":"org.eclipse.emf.ecore.util.FeatureMap$Entry","name":"EFeatureMapEntry","instanceClass":"org.eclipse.emf.ecore.util.FeatureMap$Entry","id":34,"serializable":false,"eClass":"EDataType"},{"instanceTypeName":"float","defaultValue":0.0,"instanceClassName":"float","name":"EFloat","instanceClass":"float","id":35,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.lang.Float","defaultValue":null,"instanceClassName":"java.lang.Float","name":"EFloatObject","instanceClass":"java.lang.Float","id":36,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"int","defaultValue":0,"instanceClassName":"int","name":"EInt","instanceClass":"int","id":37,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.lang.Integer","defaultValue":null,"instanceClassName":"java.lang.Integer","name":"EIntegerObject","instanceClass":"java.lang.Integer","id":38,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.lang.Class","defaultValue":null,"instanceClassName":"java.lang.Class","name":"EJavaClass","instanceClass":"java.lang.Class","id":39,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.lang.Object","defaultValue":null,"instanceClassName":"java.lang.Object","name":"EJavaObject","instanceClass":"java.lang.Object","id":40,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"long","defaultValue":0,"instanceClassName":"long","name":"ELong","instanceClass":"long","id":41,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.lang.Long","defaultValue":null,"instanceClassName":"java.lang.Long","name":"ELongObject","instanceClass":"java.lang.Long","id":42,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.util.Map","defaultValue":null,"instanceClassName":"java.util.Map","name":"EMap","instanceClass":"java.util.Map","id":43,"serializable":false,"eClass":"EDataType"},{"instanceTypeName":"org.eclipse.emf.ecore.resource.Resource","defaultValue":null,"instanceClassName":"org.eclipse.emf.ecore.resource.Resource","name":"EResource","instanceClass":"org.eclipse.emf.ecore.resource.Resource","id":44,"serializable":false,"eClass":"EDataType"},{"instanceTypeName":"org.eclipse.emf.ecore.resource.ResourceSet","defaultValue":null,"instanceClassName":"org.eclipse.emf.ecore.resource.ResourceSet","name":"EResourceSet","instanceClass":"org.eclipse.emf.ecore.resource.ResourceSet","id":45,"serializable":false,"eClass":"EDataType"},{"instanceTypeName":"short","defaultValue":0,"instanceClassName":"short","name":"EShort","instanceClass":"short","id":46,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.lang.Short","defaultValue":null,"instanceClassName":"java.lang.Short","name":"EShortObject","instanceClass":"java.lang.Short","id":47,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.lang.String","defaultValue":null,"instanceClassName":"java.lang.String","name":"EString","instanceClass":"java.lang.String","id":48,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.util.Map$Entry","defaultValue":null,"instanceClassName":"java.util.Map$Entry","name":"EStringToStringMapEntry","instanceClass":"java.util.Map$Entry","abstract":false,"id":49,"interface":false,"eClass":"EClass"},{"instanceTypeName":"org.eclipse.emf.common.util.TreeIterator","defaultValue":null,"instanceClassName":"org.eclipse.emf.common.util.TreeIterator","name":"ETreeIterator","instanceClass":"org.eclipse.emf.common.util.TreeIterator","id":50,"serializable":false,"eClass":"EDataType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EGenericType","instanceClass":null,"abstract":false,"id":51,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ETypeParameter","instanceClass":null,"abstract":false,"id":52,"interface":false,"eClass":"EClass"},{"instanceTypeName":"java.lang.reflect.InvocationTargetException","defaultValue":null,"instanceClassName":"java.lang.reflect.InvocationTargetException","name":"EInvocationTargetException","instanceClass":"java.lang.reflect.InvocationTargetException","id":53,"serializable":false,"eClass":"EDataType"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"iD","changeable":true,"lowerBound":0,"iD":false,"id":54,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":true,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"eAttributeType","changeable":false,"resolveProxies":true,"lowerBound":1,"id":55,"derived":true},{"id":56,"eClass":"EGenericType"},{"id":57,"eClass":"EGenericType"},{"id":58,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"source","changeable":true,"lowerBound":0,"iD":false,"id":59,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"details","changeable":true,"resolveProxies":false,"lowerBound":0,"id":60,"derived":false},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"eModelElement","changeable":true,"resolveProxies":false,"lowerBound":0,"id":61,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"contents","changeable":true,"resolveProxies":false,"lowerBound":0,"id":62,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"references","changeable":true,"resolveProxies":true,"lowerBound":0,"id":63,"derived":false},{"id":64,"eClass":"EGenericType"},{"id":65,"eClass":"EGenericType"},{"id":66,"eClass":"EGenericType"},{"id":67,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"eAnnotations","changeable":true,"resolveProxies":false,"lowerBound":0,"id":68,"derived":false},{"id":69,"eClass":"EGenericType"},{"id":70,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"isSuperTypeOf","lowerBound":0,"id":71,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getFeatureCount","lowerBound":0,"id":72,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getEStructuralFeature","lowerBound":0,"id":73,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getFeatureID","lowerBound":0,"id":74,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getEStructuralFeature","lowerBound":0,"id":75,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getOperationCount","lowerBound":0,"id":76,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getEOperation","lowerBound":0,"id":77,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getOperationID","lowerBound":0,"id":78,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getOverride","lowerBound":0,"id":79,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"abstract","changeable":true,"lowerBound":0,"iD":false,"id":80,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"interface","changeable":true,"lowerBound":0,"iD":false,"id":81,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":true,"transient":false,"unique":true,"name":"eSuperTypes","changeable":true,"resolveProxies":true,"lowerBound":0,"id":82,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"eOperations","changeable":true,"resolveProxies":false,"lowerBound":0,"id":83,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":true,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"eAllAttributes","changeable":false,"resolveProxies":true,"lowerBound":0,"id":84,"derived":true},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":true,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"eAllReferences","changeable":false,"resolveProxies":true,"lowerBound":0,"id":85,"derived":true},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":true,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"eReferences","changeable":false,"resolveProxies":true,"lowerBound":0,"id":86,"derived":true},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":true,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"eAttributes","changeable":false,"resolveProxies":true,"lowerBound":0,"id":87,"derived":true},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":true,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"eAllContainments","changeable":false,"resolveProxies":true,"lowerBound":0,"id":88,"derived":true},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":true,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"eAllOperations","changeable":false,"resolveProxies":true,"lowerBound":0,"id":89,"derived":true},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":true,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"eAllStructuralFeatures","changeable":false,"resolveProxies":true,"lowerBound":0,"id":90,"derived":true},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":true,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"eAllSuperTypes","changeable":false,"resolveProxies":true,"lowerBound":0,"id":91,"derived":true},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":true,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"eIDAttribute","changeable":false,"resolveProxies":false,"lowerBound":0,"id":92,"derived":true},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"eStructuralFeatures","changeable":true,"resolveProxies":false,"lowerBound":0,"id":93,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":true,"transient":false,"unique":true,"name":"eGenericSuperTypes","changeable":true,"resolveProxies":false,"lowerBound":0,"id":94,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":true,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"eAllGenericSuperTypes","changeable":false,"resolveProxies":true,"lowerBound":0,"id":95,"derived":true},{"id":96,"eClass":"EGenericType"},{"id":97,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"someClass","lowerBound":0,"id":98,"many":false,"required":false,"eClass":"EParameter"},{"id":99,"eClass":"EGenericType"},{"id":100,"eClass":"EGenericType"},{"id":101,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"featureID","lowerBound":0,"id":102,"many":false,"required":false,"eClass":"EParameter"},{"id":103,"eClass":"EGenericType"},{"id":104,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"feature","lowerBound":0,"id":105,"many":false,"required":false,"eClass":"EParameter"},{"id":106,"eClass":"EGenericType"},{"id":107,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"featureName","lowerBound":0,"id":108,"many":false,"required":false,"eClass":"EParameter"},{"id":109,"eClass":"EGenericType"},{"id":110,"eClass":"EGenericType"},{"id":111,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"operationID","lowerBound":0,"id":112,"many":false,"required":false,"eClass":"EParameter"},{"id":113,"eClass":"EGenericType"},{"id":114,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"operation","lowerBound":0,"id":115,"many":false,"required":false,"eClass":"EParameter"},{"id":116,"eClass":"EGenericType"},{"id":117,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"operation","lowerBound":0,"id":118,"many":false,"required":false,"eClass":"EParameter"},{"id":119,"eClass":"EGenericType"},{"id":120,"eClass":"EGenericType"},{"id":121,"eClass":"EGenericType"},{"id":122,"eClass":"EGenericType"},{"id":123,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"eContainingClass","changeable":false,"resolveProxies":false,"lowerBound":0,"id":124,"derived":false},{"id":125,"eClass":"EGenericType"},{"id":126,"eClass":"EGenericType"},{"id":127,"eClass":"EGenericType"},{"id":128,"eClass":"EGenericType"},{"id":129,"eClass":"EGenericType"},{"id":130,"eClass":"EGenericType"},{"id":131,"eClass":"EGenericType"},{"id":132,"eClass":"EGenericType"},{"id":133,"eClass":"EGenericType"},{"id":134,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"eContainingClass","changeable":false,"resolveProxies":false,"lowerBound":0,"id":135,"derived":false},{"id":136,"eClass":"EGenericType"},{"id":137,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"isInstance","lowerBound":0,"id":138,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getClassifierID","lowerBound":0,"id":139,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":true,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":true,"name":"instanceClassName","changeable":true,"lowerBound":0,"iD":false,"id":140,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":true,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":true,"unique":true,"name":"instanceClass","changeable":false,"lowerBound":0,"iD":false,"id":141,"derived":true},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":true,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":true,"unique":true,"name":"defaultValue","changeable":false,"lowerBound":0,"iD":false,"id":142,"derived":true},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":true,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":true,"name":"instanceTypeName","changeable":true,"lowerBound":0,"iD":false,"id":143,"derived":false},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"ePackage","changeable":false,"resolveProxies":true,"lowerBound":0,"id":144,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"eTypeParameters","changeable":true,"resolveProxies":true,"lowerBound":0,"id":145,"derived":false},{"id":146,"eClass":"EGenericType"},{"id":147,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"object","lowerBound":0,"id":148,"many":false,"required":false,"eClass":"EParameter"},{"id":149,"eClass":"EGenericType"},{"id":150,"eClass":"EGenericType"},{"id":151,"eClass":"EGenericType"},{"id":152,"eClass":"EGenericType"},{"id":153,"eClass":"EGenericType"},{"id":154,"eClass":"EGenericType"},{"id":155,"eClass":"EGenericType"},{"id":156,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"eClassifiers","changeable":true,"resolveProxies":true,"lowerBound":0,"id":157,"derived":false},{"id":158,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":true,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"true","unsettable":false,"transient":false,"unique":true,"name":"serializable","changeable":true,"lowerBound":0,"iD":false,"id":159,"derived":false},{"id":160,"eClass":"EGenericType"},{"id":161,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"getEEnumLiteral","lowerBound":0,"id":162,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getEEnumLiteral","lowerBound":0,"id":163,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getEEnumLiteralByLiteral","lowerBound":0,"id":164,"many":false,"required":false,"eClass":"EOperation"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"eLiterals","changeable":true,"resolveProxies":false,"lowerBound":0,"id":165,"derived":false},{"id":166,"eClass":"EGenericType"},{"id":167,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"name","lowerBound":0,"id":168,"many":false,"required":false,"eClass":"EParameter"},{"id":169,"eClass":"EGenericType"},{"id":170,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"value","lowerBound":0,"id":171,"many":false,"required":false,"eClass":"EParameter"},{"id":172,"eClass":"EGenericType"},{"id":173,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"literal","lowerBound":0,"id":174,"many":false,"required":false,"eClass":"EParameter"},{"id":175,"eClass":"EGenericType"},{"id":176,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"eEnum","changeable":false,"resolveProxies":false,"lowerBound":0,"id":177,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":0,"iD":false,"id":178,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":true,"unique":true,"name":"instance","changeable":true,"lowerBound":0,"iD":false,"id":179,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"literal","changeable":true,"lowerBound":0,"iD":false,"id":180,"derived":false},{"id":181,"eClass":"EGenericType"},{"id":182,"eClass":"EGenericType"},{"id":183,"eClass":"EGenericType"},{"id":184,"eClass":"EGenericType"},{"id":185,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"create","lowerBound":0,"id":186,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"createFromString","lowerBound":0,"id":187,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"convertToString","lowerBound":0,"id":188,"many":false,"required":false,"eClass":"EOperation"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"ePackage","changeable":true,"resolveProxies":false,"lowerBound":1,"id":189,"derived":false},{"id":190,"eClass":"EGenericType"},{"id":191,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"eClass","lowerBound":0,"id":192,"many":false,"required":false,"eClass":"EParameter"},{"id":193,"eClass":"EGenericType"},{"id":194,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"eDataType","lowerBound":0,"id":195,"many":false,"required":false,"eClass":"EParameter"},{"ordered":true,"upperBound":1,"unique":true,"name":"literalValue","lowerBound":0,"id":196,"many":false,"required":false,"eClass":"EParameter"},{"id":197,"eClass":"EGenericType"},{"id":198,"eClass":"EGenericType"},{"id":199,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"eDataType","lowerBound":0,"id":200,"many":false,"required":false,"eClass":"EParameter"},{"ordered":true,"upperBound":1,"unique":true,"name":"instanceValue","lowerBound":0,"id":201,"many":false,"required":false,"eClass":"EParameter"},{"id":202,"eClass":"EGenericType"},{"id":203,"eClass":"EGenericType"},{"id":204,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"eFactoryInstance","changeable":true,"resolveProxies":false,"lowerBound":1,"id":205,"derived":false},{"ordered":true,"upperBound":1,"unique":true,"name":"getEAnnotation","lowerBound":0,"id":206,"many":false,"required":false,"eClass":"EOperation"},{"id":207,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"source","lowerBound":0,"id":208,"many":false,"required":false,"eClass":"EParameter"},{"id":209,"eClass":"EGenericType"},{"id":210,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":211,"derived":false},{"id":212,"eClass":"EGenericType"},{"id":213,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"eClass","lowerBound":0,"id":214,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"eIsProxy","lowerBound":0,"id":215,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"eResource","lowerBound":0,"id":216,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"eContainer","lowerBound":0,"id":217,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"eContainingFeature","lowerBound":0,"id":218,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"eContainmentFeature","lowerBound":0,"id":219,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"eContents","lowerBound":0,"id":220,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"eAllContents","lowerBound":0,"id":221,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"eCrossReferences","lowerBound":0,"id":222,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"eGet","lowerBound":0,"id":223,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"eGet","lowerBound":0,"id":224,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"eSet","lowerBound":0,"id":225,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"eIsSet","lowerBound":0,"id":226,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"eUnset","lowerBound":0,"id":227,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"eInvoke","lowerBound":0,"id":228,"many":false,"required":false,"eClass":"EOperation"},{"id":229,"eClass":"EGenericType"},{"id":230,"eClass":"EGenericType"},{"id":231,"eClass":"EGenericType"},{"id":232,"eClass":"EGenericType"},{"id":233,"eClass":"EGenericType"},{"id":234,"eClass":"EGenericType"},{"id":235,"eClass":"EGenericType"},{"id":236,"eClass":"EGenericType"},{"id":237,"eClass":"EGenericType"},{"id":238,"eClass":"EGenericType"},{"id":239,"eClass":"EGenericType"},{"id":240,"eClass":"EGenericType"},{"id":241,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"feature","lowerBound":0,"id":242,"many":false,"required":false,"eClass":"EParameter"},{"id":243,"eClass":"EGenericType"},{"id":244,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"feature","lowerBound":0,"id":245,"many":false,"required":false,"eClass":"EParameter"},{"ordered":true,"upperBound":1,"unique":true,"name":"resolve","lowerBound":0,"id":246,"many":false,"required":false,"eClass":"EParameter"},{"id":247,"eClass":"EGenericType"},{"id":248,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"feature","lowerBound":0,"id":249,"many":false,"required":false,"eClass":"EParameter"},{"ordered":true,"upperBound":1,"unique":true,"name":"newValue","lowerBound":0,"id":250,"many":false,"required":false,"eClass":"EParameter"},{"id":251,"eClass":"EGenericType"},{"id":252,"eClass":"EGenericType"},{"id":253,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"feature","lowerBound":0,"id":254,"many":false,"required":false,"eClass":"EParameter"},{"id":255,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"feature","lowerBound":0,"id":256,"many":false,"required":false,"eClass":"EParameter"},{"id":257,"eClass":"EGenericType"},{"id":258,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"operation","lowerBound":0,"id":259,"many":false,"required":false,"eClass":"EParameter"},{"ordered":true,"upperBound":1,"unique":true,"name":"arguments","lowerBound":0,"id":260,"many":false,"required":false,"eClass":"EParameter"},{"id":261,"eClass":"EGenericType"},{"id":262,"eClass":"EGenericType"},{"id":263,"eClass":"EGenericType"},{"id":264,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"getOperationID","lowerBound":0,"id":265,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"isOverrideOf","lowerBound":0,"id":266,"many":false,"required":false,"eClass":"EOperation"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"eTypeParameters","changeable":true,"resolveProxies":true,"lowerBound":0,"id":267,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"eParameters","changeable":true,"resolveProxies":false,"lowerBound":0,"id":268,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":true,"transient":false,"unique":true,"name":"eExceptions","changeable":true,"resolveProxies":true,"lowerBound":0,"id":269,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":true,"transient":false,"unique":true,"name":"eGenericExceptions","changeable":true,"resolveProxies":false,"lowerBound":0,"id":270,"derived":false},{"id":271,"eClass":"EGenericType"},{"id":272,"eClass":"EGenericType"},{"id":273,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"someOperation","lowerBound":0,"id":274,"many":false,"required":false,"eClass":"EParameter"},{"id":275,"eClass":"EGenericType"},{"id":276,"eClass":"EGenericType"},{"id":277,"eClass":"EGenericType"},{"id":278,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"eOperation","changeable":false,"resolveProxies":false,"lowerBound":0,"id":279,"derived":false},{"id":280,"eClass":"EGenericType"},{"id":281,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"getEClassifier","lowerBound":0,"id":282,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"nsURI","changeable":true,"lowerBound":0,"iD":false,"id":283,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"nsPrefix","changeable":true,"lowerBound":0,"iD":false,"id":284,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"eSubpackages","changeable":true,"resolveProxies":true,"lowerBound":0,"id":285,"derived":false},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"eSuperPackage","changeable":false,"resolveProxies":true,"lowerBound":0,"id":286,"derived":false},{"id":287,"eClass":"EGenericType"},{"id":288,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"name","lowerBound":0,"id":289,"many":false,"required":false,"eClass":"EParameter"},{"id":290,"eClass":"EGenericType"},{"id":291,"eClass":"EGenericType"},{"id":292,"eClass":"EGenericType"},{"id":293,"eClass":"EGenericType"},{"id":294,"eClass":"EGenericType"},{"id":295,"eClass":"EGenericType"},{"id":296,"eClass":"EGenericType"},{"id":297,"eClass":"EGenericType"},{"id":298,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"containment","changeable":true,"lowerBound":0,"iD":false,"id":299,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":true,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":true,"unique":true,"name":"container","changeable":false,"lowerBound":0,"iD":false,"id":300,"derived":true},{"ordered":true,"upperBound":1,"defaultValue":true,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"true","unsettable":false,"transient":false,"unique":true,"name":"resolveProxies","changeable":true,"lowerBound":0,"iD":false,"id":301,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"eOpposite","changeable":true,"resolveProxies":true,"lowerBound":0,"id":302,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":true,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"eReferenceType","changeable":false,"resolveProxies":true,"lowerBound":1,"id":303,"derived":true},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"eKeys","changeable":true,"resolveProxies":true,"lowerBound":0,"id":304,"derived":false},{"id":305,"eClass":"EGenericType"},{"id":306,"eClass":"EGenericType"},{"id":307,"eClass":"EGenericType"},{"id":308,"eClass":"EGenericType"},{"id":309,"eClass":"EGenericType"},{"id":310,"eClass":"EGenericType"},{"id":311,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"getFeatureID","lowerBound":0,"id":312,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getContainerClass","lowerBound":0,"id":313,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"defaultValue":true,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"true","unsettable":false,"transient":false,"unique":true,"name":"changeable","changeable":true,"lowerBound":0,"iD":false,"id":314,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"volatile","changeable":true,"lowerBound":0,"iD":false,"id":315,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"transient","changeable":true,"lowerBound":0,"iD":false,"id":316,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"defaultValueLiteral","changeable":true,"lowerBound":0,"iD":false,"id":317,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":true,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":true,"unique":true,"name":"defaultValue","changeable":false,"lowerBound":0,"iD":false,"id":318,"derived":true},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"unsettable","changeable":true,"lowerBound":0,"iD":false,"id":319,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"derived","changeable":true,"lowerBound":0,"iD":false,"id":320,"derived":false},{"id":321,"eClass":"EGenericType"},{"id":322,"eClass":"EGenericType"},{"id":323,"eClass":"EGenericType"},{"id":324,"eClass":"EGenericType"},{"id":325,"eClass":"EGenericType"},{"id":326,"eClass":"EGenericType"},{"id":327,"eClass":"EGenericType"},{"id":328,"eClass":"EGenericType"},{"id":329,"eClass":"EGenericType"},{"id":330,"eClass":"EGenericType"},{"id":331,"eClass":"EGenericType"},{"id":332,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":true,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"true","unsettable":false,"transient":false,"unique":true,"name":"ordered","changeable":true,"lowerBound":0,"iD":false,"id":333,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":true,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"true","unsettable":false,"transient":false,"unique":true,"name":"unique","changeable":true,"lowerBound":0,"iD":false,"id":334,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"lowerBound","changeable":true,"lowerBound":0,"iD":false,"id":335,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"1","unsettable":false,"transient":false,"unique":true,"name":"upperBound","changeable":true,"lowerBound":0,"iD":false,"id":336,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":true,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":true,"unique":true,"name":"many","changeable":false,"lowerBound":0,"iD":false,"id":337,"derived":true},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":true,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":true,"unique":true,"name":"required","changeable":false,"lowerBound":0,"iD":false,"id":338,"derived":true},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":true,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":true,"transient":false,"unique":true,"name":"eType","changeable":true,"resolveProxies":true,"lowerBound":0,"id":339,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":true,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":true,"transient":false,"unique":true,"name":"eGenericType","changeable":true,"resolveProxies":false,"lowerBound":0,"id":340,"derived":false},{"id":341,"eClass":"EGenericType"},{"id":342,"eClass":"EGenericType"},{"id":343,"eClass":"EGenericType"},{"id":344,"eClass":"EGenericType"},{"id":345,"eClass":"EGenericType"},{"id":346,"eClass":"EGenericType"},{"id":347,"eClass":"EGenericType"},{"id":348,"eClass":"EGenericType"},{"id":349,"eClass":"EGenericType"},{"name":"E","id":350,"eClass":"ETypeParameter"},{"name":"T","id":351,"eClass":"ETypeParameter"},{"name":"K","id":352,"eClass":"ETypeParameter"},{"name":"V","id":353,"eClass":"ETypeParameter"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"key","changeable":true,"lowerBound":0,"iD":false,"id":354,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":0,"iD":false,"id":355,"derived":false},{"id":356,"eClass":"EGenericType"},{"id":357,"eClass":"EGenericType"},{"name":"E","id":358,"eClass":"ETypeParameter"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"eUpperBound","changeable":true,"resolveProxies":false,"lowerBound":0,"id":359,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"eTypeArguments","changeable":true,"resolveProxies":false,"lowerBound":0,"id":360,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"eRawType","changeable":false,"resolveProxies":true,"lowerBound":1,"id":361,"derived":true},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"eLowerBound","changeable":true,"resolveProxies":false,"lowerBound":0,"id":362,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"eTypeParameter","changeable":true,"resolveProxies":false,"lowerBound":0,"id":363,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"eClassifier","changeable":true,"resolveProxies":true,"lowerBound":0,"id":364,"derived":false},{"id":365,"eClass":"EGenericType"},{"id":366,"eClass":"EGenericType"},{"id":367,"eClass":"EGenericType"},{"id":368,"eClass":"EGenericType"},{"id":369,"eClass":"EGenericType"},{"id":370,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"eBounds","changeable":true,"resolveProxies":false,"lowerBound":0,"id":371,"derived":false},{"id":372,"eClass":"EGenericType"},{"id":373,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":0,"target":8},{"source":0,"target":9},{"source":0,"target":10},{"source":0,"target":11},{"source":0,"target":12},{"source":0,"target":13},{"source":0,"target":14},{"source":0,"target":15},{"source":0,"target":16},{"source":0,"target":17},{"source":0,"target":18},{"source":0,"target":19},{"source":0,"target":20},{"source":0,"target":21},{"source":0,"target":22},{"source":0,"target":23},{"source":0,"target":24},{"source":0,"target":25},{"source":0,"target":26},{"source":0,"target":27},{"source":0,"target":28},{"source":0,"target":29},{"source":0,"target":30},{"source":0,"target":31},{"source":0,"target":32},{"source":0,"target":33},{"source":0,"target":34},{"source":0,"target":35},{"source":0,"target":36},{"source":0,"target":37},{"source":0,"target":38},{"source":0,"target":39},{"source":0,"target":40},{"source":0,"target":41},{"source":0,"target":42},{"source":0,"target":43},{"source":0,"target":44},{"source":0,"target":45},{"source":0,"target":46},{"source":0,"target":47},{"source":0,"target":48},{"source":0,"target":49},{"source":0,"target":50},{"source":0,"target":51},{"source":0,"target":52},{"source":0,"target":53},{"source":1,"target":0},{"source":1,"target":16},{"source":1,"target":54},{"source":1,"target":55},{"source":1,"target":56},{"source":54,"target":20},{"source":54,"target":57},{"source":54,"target":1},{"source":57,"target":20},{"source":55,"target":5},{"source":55,"target":58},{"source":55,"target":1},{"source":58,"target":5},{"source":56,"target":16},{"source":2,"target":0},{"source":2,"target":9},{"source":2,"target":59},{"source":2,"target":60},{"source":2,"target":61},{"source":2,"target":62},{"source":2,"target":63},{"source":2,"target":64},{"source":59,"target":48},{"source":59,"target":65},{"source":59,"target":2},{"source":65,"target":48},{"source":60,"target":49},{"source":60,"target":66},{"source":60,"target":2},{"source":66,"target":49},{"source":61,"target":9},{"source":61,"target":67},{"source":61,"target":2},{"source":61,"target":68},{"source":67,"target":9},{"source":62,"target":11},{"source":62,"target":69},{"source":62,"target":2},{"source":69,"target":11},{"source":63,"target":11},{"source":63,"target":70},{"source":63,"target":2},{"source":70,"target":11},{"source":64,"target":9},{"source":3,"target":0},{"source":3,"target":4},{"source":3,"target":71},{"source":3,"target":72},{"source":3,"target":73},{"source":3,"target":74},{"source":3,"target":75},{"source":3,"target":76},{"source":3,"target":77},{"source":3,"target":78},{"source":3,"target":79},{"source":3,"target":80},{"source":3,"target":81},{"source":3,"target":82},{"source":3,"target":83},{"source":3,"target":84},{"source":3,"target":85},{"source":3,"target":86},{"source":3,"target":87},{"source":3,"target":88},{"source":3,"target":89},{"source":3,"target":90},{"source":3,"target":91},{"source":3,"target":92},{"source":3,"target":93},{"source":3,"target":94},{"source":3,"target":95},{"source":3,"target":96},{"source":71,"target":20},{"source":71,"target":97},{"source":71,"target":3},{"source":71,"target":98},{"source":97,"target":20},{"source":98,"target":3},{"source":98,"target":99},{"source":98,"target":71},{"source":99,"target":3},{"source":72,"target":37},{"source":72,"target":100},{"source":72,"target":3},{"source":100,"target":37},{"source":73,"target":16},{"source":73,"target":101},{"source":73,"target":3},{"source":73,"target":102},{"source":101,"target":16},{"source":102,"target":37},{"source":102,"target":103},{"source":102,"target":73},{"source":103,"target":37},{"source":74,"target":37},{"source":74,"target":104},{"source":74,"target":3},{"source":74,"target":105},{"source":104,"target":37},{"source":105,"target":16},{"source":105,"target":106},{"source":105,"target":74},{"source":106,"target":16},{"source":75,"target":16},{"source":75,"target":107},{"source":75,"target":3},{"source":75,"target":108},{"source":107,"target":16},{"source":108,"target":48},{"source":108,"target":109},{"source":108,"target":75},{"source":109,"target":48},{"source":76,"target":37},{"source":76,"target":110},{"source":76,"target":3},{"source":110,"target":37},{"source":77,"target":12},{"source":77,"target":111},{"source":77,"target":3},{"source":77,"target":112},{"source":111,"target":12},{"source":112,"target":37},{"source":112,"target":113},{"source":112,"target":77},{"source":113,"target":37},{"source":78,"target":37},{"source":78,"target":114},{"source":78,"target":3},{"source":78,"target":115},{"source":114,"target":37},{"source":115,"target":12},{"source":115,"target":116},{"source":115,"target":78},{"source":116,"target":12},{"source":79,"target":12},{"source":79,"target":117},{"source":79,"target":3},{"source":79,"target":118},{"source":117,"target":12},{"source":118,"target":12},{"source":118,"target":119},{"source":118,"target":79},{"source":119,"target":12},{"source":80,"target":20},{"source":80,"target":120},{"source":80,"target":3},{"source":120,"target":20},{"source":81,"target":20},{"source":81,"target":121},{"source":81,"target":3},{"source":121,"target":20},{"source":82,"target":3},{"source":82,"target":122},{"source":82,"target":3},{"source":122,"target":3},{"source":83,"target":12},{"source":83,"target":123},{"source":83,"target":3},{"source":83,"target":124},{"source":123,"target":12},{"source":84,"target":1},{"source":84,"target":125},{"source":84,"target":3},{"source":125,"target":1},{"source":85,"target":15},{"source":85,"target":126},{"source":85,"target":3},{"source":126,"target":15},{"source":86,"target":15},{"source":86,"target":127},{"source":86,"target":3},{"source":127,"target":15},{"source":87,"target":1},{"source":87,"target":128},{"source":87,"target":3},{"source":128,"target":1},{"source":88,"target":15},{"source":88,"target":129},{"source":88,"target":3},{"source":129,"target":15},{"source":89,"target":12},{"source":89,"target":130},{"source":89,"target":3},{"source":130,"target":12},{"source":90,"target":16},{"source":90,"target":131},{"source":90,"target":3},{"source":131,"target":16},{"source":91,"target":3},{"source":91,"target":132},{"source":91,"target":3},{"source":132,"target":3},{"source":92,"target":1},{"source":92,"target":133},{"source":92,"target":3},{"source":133,"target":1},{"source":93,"target":16},{"source":93,"target":134},{"source":93,"target":3},{"source":93,"target":135},{"source":134,"target":16},{"source":94,"target":51},{"source":94,"target":136},{"source":94,"target":3},{"source":136,"target":51},{"source":95,"target":51},{"source":95,"target":137},{"source":95,"target":3},{"source":137,"target":51},{"source":96,"target":4},{"source":4,"target":0},{"source":4,"target":10},{"source":4,"target":138},{"source":4,"target":139},{"source":4,"target":140},{"source":4,"target":141},{"source":4,"target":142},{"source":4,"target":143},{"source":4,"target":144},{"source":4,"target":145},{"source":4,"target":146},{"source":138,"target":20},{"source":138,"target":147},{"source":138,"target":4},{"source":138,"target":148},{"source":147,"target":20},{"source":148,"target":40},{"source":148,"target":149},{"source":148,"target":138},{"source":149,"target":40},{"source":139,"target":37},{"source":139,"target":150},{"source":139,"target":4},{"source":150,"target":37},{"source":140,"target":48},{"source":140,"target":151},{"source":140,"target":4},{"source":151,"target":48},{"source":141,"target":39},{"source":141,"target":152},{"source":141,"target":4},{"source":152,"target":153},{"source":152,"target":39},{"source":142,"target":40},{"source":142,"target":154},{"source":142,"target":4},{"source":154,"target":40},{"source":143,"target":48},{"source":143,"target":155},{"source":143,"target":4},{"source":155,"target":48},{"source":144,"target":13},{"source":144,"target":156},{"source":144,"target":4},{"source":144,"target":157},{"source":156,"target":13},{"source":145,"target":52},{"source":145,"target":158},{"source":145,"target":4},{"source":158,"target":52},{"source":146,"target":10},{"source":5,"target":0},{"source":5,"target":4},{"source":5,"target":159},{"source":5,"target":160},{"source":159,"target":20},{"source":159,"target":161},{"source":159,"target":5},{"source":161,"target":20},{"source":160,"target":4},{"source":6,"target":0},{"source":6,"target":5},{"source":6,"target":162},{"source":6,"target":163},{"source":6,"target":164},{"source":6,"target":165},{"source":6,"target":166},{"source":162,"target":7},{"source":162,"target":167},{"source":162,"target":6},{"source":162,"target":168},{"source":167,"target":7},{"source":168,"target":48},{"source":168,"target":169},{"source":168,"target":162},{"source":169,"target":48},{"source":163,"target":7},{"source":163,"target":170},{"source":163,"target":6},{"source":163,"target":171},{"source":170,"target":7},{"source":171,"target":37},{"source":171,"target":172},{"source":171,"target":163},{"source":172,"target":37},{"source":164,"target":7},{"source":164,"target":173},{"source":164,"target":6},{"source":164,"target":174},{"source":173,"target":7},{"source":174,"target":48},{"source":174,"target":175},{"source":174,"target":164},{"source":175,"target":48},{"source":165,"target":7},{"source":165,"target":176},{"source":165,"target":6},{"source":165,"target":177},{"source":176,"target":7},{"source":166,"target":5},{"source":7,"target":0},{"source":7,"target":10},{"source":7,"target":178},{"source":7,"target":179},{"source":7,"target":180},{"source":7,"target":177},{"source":7,"target":181},{"source":178,"target":37},{"source":178,"target":182},{"source":178,"target":7},{"source":182,"target":37},{"source":179,"target":32},{"source":179,"target":183},{"source":179,"target":7},{"source":183,"target":32},{"source":180,"target":48},{"source":180,"target":184},{"source":180,"target":7},{"source":184,"target":48},{"source":177,"target":6},{"source":177,"target":185},{"source":177,"target":7},{"source":177,"target":165},{"source":185,"target":6},{"source":181,"target":10},{"source":8,"target":0},{"source":8,"target":9},{"source":8,"target":186},{"source":8,"target":187},{"source":8,"target":188},{"source":8,"target":189},{"source":8,"target":190},{"source":186,"target":11},{"source":186,"target":191},{"source":186,"target":8},{"source":186,"target":192},{"source":191,"target":11},{"source":192,"target":3},{"source":192,"target":193},{"source":192,"target":186},{"source":193,"target":3},{"source":187,"target":40},{"source":187,"target":194},{"source":187,"target":8},{"source":187,"target":195},{"source":187,"target":196},{"source":194,"target":40},{"source":195,"target":5},{"source":195,"target":197},{"source":195,"target":187},{"source":197,"target":5},{"source":196,"target":48},{"source":196,"target":198},{"source":196,"target":187},{"source":198,"target":48},{"source":188,"target":48},{"source":188,"target":199},{"source":188,"target":8},{"source":188,"target":200},{"source":188,"target":201},{"source":199,"target":48},{"source":200,"target":5},{"source":200,"target":202},{"source":200,"target":188},{"source":202,"target":5},{"source":201,"target":40},{"source":201,"target":203},{"source":201,"target":188},{"source":203,"target":40},{"source":189,"target":13},{"source":189,"target":204},{"source":189,"target":8},{"source":189,"target":205},{"source":204,"target":13},{"source":190,"target":9},{"source":9,"target":0},{"source":9,"target":206},{"source":9,"target":68},{"source":206,"target":2},{"source":206,"target":207},{"source":206,"target":9},{"source":206,"target":208},{"source":207,"target":2},{"source":208,"target":48},{"source":208,"target":209},{"source":208,"target":206},{"source":209,"target":48},{"source":68,"target":2},{"source":68,"target":210},{"source":68,"target":9},{"source":68,"target":61},{"source":210,"target":2},{"source":10,"target":0},{"source":10,"target":9},{"source":10,"target":211},{"source":10,"target":212},{"source":211,"target":48},{"source":211,"target":213},{"source":211,"target":10},{"source":213,"target":48},{"source":212,"target":9},{"source":11,"target":0},{"source":11,"target":214},{"source":11,"target":215},{"source":11,"target":216},{"source":11,"target":217},{"source":11,"target":218},{"source":11,"target":219},{"source":11,"target":220},{"source":11,"target":221},{"source":11,"target":222},{"source":11,"target":223},{"source":11,"target":224},{"source":11,"target":225},{"source":11,"target":226},{"source":11,"target":227},{"source":11,"target":228},{"source":214,"target":3},{"source":214,"target":229},{"source":214,"target":11},{"source":229,"target":3},{"source":215,"target":20},{"source":215,"target":230},{"source":215,"target":11},{"source":230,"target":20},{"source":216,"target":44},{"source":216,"target":231},{"source":216,"target":11},{"source":231,"target":44},{"source":217,"target":11},{"source":217,"target":232},{"source":217,"target":11},{"source":232,"target":11},{"source":218,"target":16},{"source":218,"target":233},{"source":218,"target":11},{"source":233,"target":16},{"source":219,"target":15},{"source":219,"target":234},{"source":219,"target":11},{"source":234,"target":15},{"source":220,"target":31},{"source":220,"target":235},{"source":220,"target":11},{"source":235,"target":236},{"source":235,"target":31},{"source":236,"target":11},{"source":221,"target":50},{"source":221,"target":237},{"source":221,"target":11},{"source":237,"target":238},{"source":237,"target":50},{"source":238,"target":11},{"source":222,"target":31},{"source":222,"target":239},{"source":222,"target":11},{"source":239,"target":240},{"source":239,"target":31},{"source":240,"target":11},{"source":223,"target":40},{"source":223,"target":241},{"source":223,"target":11},{"source":223,"target":242},{"source":241,"target":40},{"source":242,"target":16},{"source":242,"target":243},{"source":242,"target":223},{"source":243,"target":16},{"source":224,"target":40},{"source":224,"target":244},{"source":224,"target":11},{"source":224,"target":245},{"source":224,"target":246},{"source":244,"target":40},{"source":245,"target":16},{"source":245,"target":247},{"source":245,"target":224},{"source":247,"target":16},{"source":246,"target":20},{"source":246,"target":248},{"source":246,"target":224},{"source":248,"target":20},{"source":225,"target":11},{"source":225,"target":249},{"source":225,"target":250},{"source":249,"target":16},{"source":249,"target":251},{"source":249,"target":225},{"source":251,"target":16},{"source":250,"target":40},{"source":250,"target":252},{"source":250,"target":225},{"source":252,"target":40},{"source":226,"target":20},{"source":226,"target":253},{"source":226,"target":11},{"source":226,"target":254},{"source":253,"target":20},{"source":254,"target":16},{"source":254,"target":255},{"source":254,"target":226},{"source":255,"target":16},{"source":227,"target":11},{"source":227,"target":256},{"source":256,"target":16},{"source":256,"target":257},{"source":256,"target":227},{"source":257,"target":16},{"source":228,"target":40},{"source":228,"target":258},{"source":228,"target":11},{"source":228,"target":259},{"source":228,"target":260},{"source":228,"target":53},{"source":228,"target":261},{"source":258,"target":40},{"source":259,"target":12},{"source":259,"target":262},{"source":259,"target":228},{"source":262,"target":12},{"source":260,"target":31},{"source":260,"target":263},{"source":260,"target":228},{"source":263,"target":264},{"source":263,"target":31},{"source":261,"target":53},{"source":12,"target":0},{"source":12,"target":17},{"source":12,"target":265},{"source":12,"target":266},{"source":12,"target":124},{"source":12,"target":267},{"source":12,"target":268},{"source":12,"target":269},{"source":12,"target":270},{"source":12,"target":271},{"source":265,"target":37},{"source":265,"target":272},{"source":265,"target":12},{"source":272,"target":37},{"source":266,"target":20},{"source":266,"target":273},{"source":266,"target":12},{"source":266,"target":274},{"source":273,"target":20},{"source":274,"target":12},{"source":274,"target":275},{"source":274,"target":266},{"source":275,"target":12},{"source":124,"target":3},{"source":124,"target":276},{"source":124,"target":12},{"source":124,"target":83},{"source":276,"target":3},{"source":267,"target":52},{"source":267,"target":277},{"source":267,"target":12},{"source":277,"target":52},{"source":268,"target":14},{"source":268,"target":278},{"source":268,"target":12},{"source":268,"target":279},{"source":278,"target":14},{"source":269,"target":4},{"source":269,"target":280},{"source":269,"target":12},{"source":280,"target":4},{"source":270,"target":51},{"source":270,"target":281},{"source":270,"target":12},{"source":281,"target":51},{"source":271,"target":17},{"source":13,"target":0},{"source":13,"target":10},{"source":13,"target":282},{"source":13,"target":283},{"source":13,"target":284},{"source":13,"target":205},{"source":13,"target":157},{"source":13,"target":285},{"source":13,"target":286},{"source":13,"target":287},{"source":282,"target":4},{"source":282,"target":288},{"source":282,"target":13},{"source":282,"target":289},{"source":288,"target":4},{"source":289,"target":48},{"source":289,"target":290},{"source":289,"target":282},{"source":290,"target":48},{"source":283,"target":48},{"source":283,"target":291},{"source":283,"target":13},{"source":291,"target":48},{"source":284,"target":48},{"source":284,"target":292},{"source":284,"target":13},{"source":292,"target":48},{"source":205,"target":8},{"source":205,"target":293},{"source":205,"target":13},{"source":205,"target":189},{"source":293,"target":8},{"source":157,"target":4},{"source":157,"target":294},{"source":157,"target":13},{"source":157,"target":144},{"source":294,"target":4},{"source":285,"target":13},{"source":285,"target":295},{"source":285,"target":13},{"source":285,"target":286},{"source":295,"target":13},{"source":286,"target":13},{"source":286,"target":296},{"source":286,"target":13},{"source":286,"target":285},{"source":296,"target":13},{"source":287,"target":10},{"source":14,"target":0},{"source":14,"target":17},{"source":14,"target":279},{"source":14,"target":297},{"source":279,"target":12},{"source":279,"target":298},{"source":279,"target":14},{"source":279,"target":268},{"source":298,"target":12},{"source":297,"target":17},{"source":15,"target":0},{"source":15,"target":16},{"source":15,"target":299},{"source":15,"target":300},{"source":15,"target":301},{"source":15,"target":302},{"source":15,"target":303},{"source":15,"target":304},{"source":15,"target":305},{"source":299,"target":20},{"source":299,"target":306},{"source":299,"target":15},{"source":306,"target":20},{"source":300,"target":20},{"source":300,"target":307},{"source":300,"target":15},{"source":307,"target":20},{"source":301,"target":20},{"source":301,"target":308},{"source":301,"target":15},{"source":308,"target":20},{"source":302,"target":15},{"source":302,"target":309},{"source":302,"target":15},{"source":309,"target":15},{"source":303,"target":3},{"source":303,"target":310},{"source":303,"target":15},{"source":310,"target":3},{"source":304,"target":1},{"source":304,"target":311},{"source":304,"target":15},{"source":311,"target":1},{"source":305,"target":16},{"source":16,"target":0},{"source":16,"target":17},{"source":16,"target":312},{"source":16,"target":313},{"source":16,"target":314},{"source":16,"target":315},{"source":16,"target":316},{"source":16,"target":317},{"source":16,"target":318},{"source":16,"target":319},{"source":16,"target":320},{"source":16,"target":135},{"source":16,"target":321},{"source":312,"target":37},{"source":312,"target":322},{"source":312,"target":16},{"source":322,"target":37},{"source":313,"target":39},{"source":313,"target":323},{"source":313,"target":16},{"source":323,"target":324},{"source":323,"target":39},{"source":314,"target":20},{"source":314,"target":325},{"source":314,"target":16},{"source":325,"target":20},{"source":315,"target":20},{"source":315,"target":326},{"source":315,"target":16},{"source":326,"target":20},{"source":316,"target":20},{"source":316,"target":327},{"source":316,"target":16},{"source":327,"target":20},{"source":317,"target":48},{"source":317,"target":328},{"source":317,"target":16},{"source":328,"target":48},{"source":318,"target":40},{"source":318,"target":329},{"source":318,"target":16},{"source":329,"target":40},{"source":319,"target":20},{"source":319,"target":330},{"source":319,"target":16},{"source":330,"target":20},{"source":320,"target":20},{"source":320,"target":331},{"source":320,"target":16},{"source":331,"target":20},{"source":135,"target":3},{"source":135,"target":332},{"source":135,"target":16},{"source":135,"target":93},{"source":332,"target":3},{"source":321,"target":17},{"source":17,"target":0},{"source":17,"target":10},{"source":17,"target":333},{"source":17,"target":334},{"source":17,"target":335},{"source":17,"target":336},{"source":17,"target":337},{"source":17,"target":338},{"source":17,"target":339},{"source":17,"target":340},{"source":17,"target":341},{"source":333,"target":20},{"source":333,"target":342},{"source":333,"target":17},{"source":342,"target":20},{"source":334,"target":20},{"source":334,"target":343},{"source":334,"target":17},{"source":343,"target":20},{"source":335,"target":37},{"source":335,"target":344},{"source":335,"target":17},{"source":344,"target":37},{"source":336,"target":37},{"source":336,"target":345},{"source":336,"target":17},{"source":345,"target":37},{"source":337,"target":20},{"source":337,"target":346},{"source":337,"target":17},{"source":346,"target":20},{"source":338,"target":20},{"source":338,"target":347},{"source":338,"target":17},{"source":347,"target":20},{"source":339,"target":4},{"source":339,"target":348},{"source":339,"target":17},{"source":348,"target":4},{"source":340,"target":51},{"source":340,"target":349},{"source":340,"target":17},{"source":349,"target":51},{"source":341,"target":10},{"source":18,"target":0},{"source":19,"target":0},{"source":20,"target":0},{"source":21,"target":0},{"source":22,"target":0},{"source":23,"target":0},{"source":24,"target":0},{"source":25,"target":0},{"source":26,"target":0},{"source":27,"target":0},{"source":28,"target":0},{"source":29,"target":0},{"source":30,"target":0},{"source":31,"target":0},{"source":31,"target":350},{"source":32,"target":0},{"source":33,"target":0},{"source":34,"target":0},{"source":35,"target":0},{"source":36,"target":0},{"source":37,"target":0},{"source":38,"target":0},{"source":39,"target":0},{"source":39,"target":351},{"source":40,"target":0},{"source":41,"target":0},{"source":42,"target":0},{"source":43,"target":0},{"source":43,"target":352},{"source":43,"target":353},{"source":44,"target":0},{"source":45,"target":0},{"source":46,"target":0},{"source":47,"target":0},{"source":48,"target":0},{"source":49,"target":0},{"source":49,"target":354},{"source":49,"target":355},{"source":354,"target":48},{"source":354,"target":356},{"source":354,"target":49},{"source":356,"target":48},{"source":355,"target":48},{"source":355,"target":357},{"source":355,"target":49},{"source":357,"target":48},{"source":50,"target":0},{"source":50,"target":358},{"source":51,"target":0},{"source":51,"target":359},{"source":51,"target":360},{"source":51,"target":361},{"source":51,"target":362},{"source":51,"target":363},{"source":51,"target":364},{"source":359,"target":51},{"source":359,"target":365},{"source":359,"target":51},{"source":365,"target":51},{"source":360,"target":51},{"source":360,"target":366},{"source":360,"target":51},{"source":366,"target":51},{"source":361,"target":4},{"source":361,"target":367},{"source":361,"target":51},{"source":367,"target":4},{"source":362,"target":51},{"source":362,"target":368},{"source":362,"target":51},{"source":368,"target":51},{"source":363,"target":52},{"source":363,"target":369},{"source":363,"target":51},{"source":369,"target":52},{"source":364,"target":4},{"source":364,"target":370},{"source":364,"target":51},{"source":370,"target":4},{"source":52,"target":0},{"source":52,"target":10},{"source":52,"target":371},{"source":52,"target":372},{"source":371,"target":51},{"source":371,"target":373},{"source":371,"target":52},{"source":373,"target":51},{"source":372,"target":10},{"source":53,"target":0}],"multigraph":true} |
false | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="randomEMF" nsURI="http://www.hub.de/randomemf/RandomEMF" nsPrefix="randomEMF">
<eClassifiers xsi:type="ecore:EClass" name="Generator">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="package" eType="ecore:EDataType platform:/resource/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="importSection" eType="ecore:EClass platform:/resource/org.eclipse.xtext.xbase/model/Xtype.ecore#//XImportSection"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType platform:/resource/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="params" upperBound="-1"
eType="ecore:EClass platform:/resource/org.eclipse.xtext.common.types/model/JavaVMTypes.ecore#//JvmFormalParameter"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="ecorePackage" eType="ecore:EClass platform:/resource/org.eclipse.emf.ecore/model/Ecore.ecore#//EPackage"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="importURI" eType="ecore:EDataType platform:/resource/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="rules" upperBound="-1"
eType="#//AbstractRule" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="AbstractRule">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType platform:/resource/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="params" upperBound="-1"
eType="ecore:EClass platform:/resource/org.eclipse.xtext.common.types/model/JavaVMTypes.ecore#//JvmFormalParameter"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eClass" eType="ecore:EClass platform:/resource/org.eclipse.emf.ecore/model/Ecore.ecore#//EClass"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="inners" upperBound="-1"
eType="#//InnerRule" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="AlternativeRule" eSuperTypes="#//AbstractRule"/>
<eClassifiers xsi:type="ecore:EClass" name="InnerRule">
<eStructuralFeatures xsi:type="ecore:EReference" name="expr" eType="ecore:EClass platform:/resource/org.eclipse.xtext.xbase/model/Xbase.ecore#//XExpression"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="number" eType="ecore:EClass platform:/resource/org.eclipse.xtext.xbase/model/Xbase.ecore#//XExpression"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eFeature" eType="ecore:EClass platform:/resource/org.eclipse.emf.ecore/model/Ecore.ecore#//EStructuralFeature"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="concreteValueType" eType="ecore:EClass platform:/resource/org.eclipse.emf.ecore/model/Ecore.ecore#//EClass"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isAddRule" eType="ecore:EDataType platform:/resource/org.eclipse.emf.ecore/model/Ecore.ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isRef" eType="ecore:EDataType platform:/resource/org.eclipse.emf.ecore/model/Ecore.ecore#//EBoolean"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ClassRule" eSuperTypes="#//AbstractRule"/>
</ecore:EPackage>
| github:ecore:/data/markus1978/RandomEMF/plugins/de.hub.rcore/model/generated/RandomEMF.ecore | ecore | randomEMF
Generator
package
importSection
name
params
ecorePackage
importURI
rules
AbstractRule
name
params
eClass
inners
AlternativeRule
InnerRule
expr
number
eFeature
concreteValueType
isAddRule
isRef
ClassRule | null | {"directed":true,"nodes":[{"nsPrefix":"randomEMF","nsURI":"http://www.hub.de/randomemf/RandomEMF","name":"randomEMF","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Generator","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AbstractRule","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AlternativeRule","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InnerRule","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ClassRule","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"package","changeable":true,"lowerBound":0,"iD":false,"id":6,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"importSection","changeable":true,"resolveProxies":true,"lowerBound":0,"id":7,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":8,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"params","changeable":true,"resolveProxies":true,"lowerBound":0,"id":9,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"ecorePackage","changeable":true,"resolveProxies":true,"lowerBound":0,"id":10,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"importURI","changeable":true,"lowerBound":0,"iD":false,"id":11,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"rules","changeable":true,"resolveProxies":true,"lowerBound":0,"id":12,"derived":false},{"id":13,"eClass":"EGenericType"},{"id":14,"eClass":"EGenericType"},{"id":15,"eClass":"EGenericType"},{"id":16,"eClass":"EGenericType"},{"id":17,"eClass":"EGenericType"},{"id":18,"eClass":"EGenericType"},{"id":19,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":20,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"params","changeable":true,"resolveProxies":true,"lowerBound":0,"id":21,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"eClass","changeable":true,"resolveProxies":true,"lowerBound":0,"id":22,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"inners","changeable":true,"resolveProxies":true,"lowerBound":0,"id":23,"derived":false},{"id":24,"eClass":"EGenericType"},{"id":25,"eClass":"EGenericType"},{"id":26,"eClass":"EGenericType"},{"id":27,"eClass":"EGenericType"},{"id":28,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"expr","changeable":true,"resolveProxies":true,"lowerBound":0,"id":29,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"number","changeable":true,"resolveProxies":true,"lowerBound":0,"id":30,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"eFeature","changeable":true,"resolveProxies":true,"lowerBound":0,"id":31,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"concreteValueType","changeable":true,"resolveProxies":true,"lowerBound":0,"id":32,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isAddRule","changeable":true,"lowerBound":0,"iD":false,"id":33,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isRef","changeable":true,"lowerBound":0,"iD":false,"id":34,"derived":false},{"id":35,"eClass":"EGenericType"},{"id":36,"eClass":"EGenericType"},{"id":37,"eClass":"EGenericType"},{"id":38,"eClass":"EGenericType"},{"id":39,"eClass":"EGenericType"},{"id":40,"eClass":"EGenericType"},{"id":41,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":1,"target":0},{"source":1,"target":6},{"source":1,"target":7},{"source":1,"target":8},{"source":1,"target":9},{"source":1,"target":10},{"source":1,"target":11},{"source":1,"target":12},{"source":6,"target":13},{"source":6,"target":1},{"source":7,"target":14},{"source":7,"target":1},{"source":8,"target":15},{"source":8,"target":1},{"source":9,"target":16},{"source":9,"target":1},{"source":10,"target":17},{"source":10,"target":1},{"source":11,"target":18},{"source":11,"target":1},{"source":12,"target":2},{"source":12,"target":19},{"source":12,"target":1},{"source":19,"target":2},{"source":2,"target":0},{"source":2,"target":20},{"source":2,"target":21},{"source":2,"target":22},{"source":2,"target":23},{"source":20,"target":24},{"source":20,"target":2},{"source":21,"target":25},{"source":21,"target":2},{"source":22,"target":26},{"source":22,"target":2},{"source":23,"target":4},{"source":23,"target":27},{"source":23,"target":2},{"source":27,"target":4},{"source":3,"target":0},{"source":3,"target":2},{"source":3,"target":28},{"source":28,"target":2},{"source":4,"target":0},{"source":4,"target":29},{"source":4,"target":30},{"source":4,"target":31},{"source":4,"target":32},{"source":4,"target":33},{"source":4,"target":34},{"source":29,"target":35},{"source":29,"target":4},{"source":30,"target":36},{"source":30,"target":4},{"source":31,"target":37},{"source":31,"target":4},{"source":32,"target":38},{"source":32,"target":4},{"source":33,"target":39},{"source":33,"target":4},{"source":34,"target":40},{"source":34,"target":4},{"source":5,"target":0},{"source":5,"target":2},{"source":5,"target":41},{"source":41,"target":2}],"multigraph":true} |
false | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="model" nsURI="http://eclipse.org/SCADA/VisualInterface" nsPrefix="visualInterface">
<eClassifiers xsi:type="ecore:EClass" name="Symbol">
<eStructuralFeatures xsi:type="ecore:EReference" name="root" eType="#//Primitive"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="properties" upperBound="-1"
eType="#//StringToStringMap" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="onInit" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="onDispose" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="onUpdate" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="scriptModules" upperBound="-1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="cursors" eType="#//Cursor"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="backgroundColor" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="designSize" eType="#//Dimension"
containment="true">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The size as intended by the designer. May be used for layouting as preferred size."/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="connections" upperBound="-1"
eType="#//Connection" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="backgroundImage" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="timeTriggers" upperBound="-1"
eType="#//TimeTrigger" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Primitive" abstract="true" interface="true">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
iD="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Container" abstract="true" interface="true"
eSuperTypes="#//Primitive"/>
<eClassifiers xsi:type="ecore:EClass" name="Shape" abstract="true" eSuperTypes="#//Figure">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="lineWidth" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFloat" defaultValueLiteral="1"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="antialias" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBooleanObject"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="alpha" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDoubleObject"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="fill" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"
defaultValueLiteral="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="outline" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean" defaultValueLiteral="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Rectangle" eSuperTypes="#//Shape"/>
<eClassifiers xsi:type="ecore:EClass" name="Text" eSuperTypes="#//Figure">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="text" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="labelAlignment" eType="#//Alignment"
defaultValueLiteral="CENTER"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="iconAlignment" eType="#//Alignment"
defaultValueLiteral="CENTER"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="textAlignment" eType="#//Alignment"
defaultValueLiteral="CENTER"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="textPlacement" eType="#//Orientation"
defaultValueLiteral="EAST"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="fontName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="fontSize" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="fontBold" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean" defaultValueLiteral="false"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="fontItalic" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean" defaultValueLiteral="false"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="alpha" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDoubleObject"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Child">
<eStructuralFeatures xsi:type="ecore:EReference" name="element" eType="#//Primitive"
containment="true">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="element"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="XYChild" eSuperTypes="#//Child">
<eStructuralFeatures xsi:type="ecore:EReference" name="position" lowerBound="1"
eType="#//Position" containment="true">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="dimension" eType="#//Dimension"
containment="true">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="An optional dimension for the XYLayout. If not set the preferred dimension of the child will be used."/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="XYContainer" eSuperTypes="#//Container">
<eStructuralFeatures xsi:type="ecore:EReference" name="children" upperBound="-1"
eType="#//XYChild" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Position">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="x" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="y" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Line" eSuperTypes="#//Shape">
<eStructuralFeatures xsi:type="ecore:EReference" name="points" upperBound="-1"
eType="#//Position" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Figure" abstract="true" eSuperTypes="#//Primitive">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="foregroundColor" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="backgroundColor" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="size" eType="#//Dimension"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="onClick" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="onDoubleClick" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="cursor" eType="#//Cursor"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="visible" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean" defaultValueLiteral="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="border" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="opaque" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBooleanObject"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="toolTip" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="onMouseIn" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="onMouseOut" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="onMouseMove" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="onMouseHover" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="onMouseDrag" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="SymbolReference" eSuperTypes="#//Primitive">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="uri" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="zoom" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDoubleObject"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="properties" upperBound="-1"
eType="#//StringToStringMap" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="onCreateProperties" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="StringToStringMap" instanceClassName="java.util.Map$Entry">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="key" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Dimension">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="width" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"
defaultValueLiteral="0"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="height" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble" defaultValueLiteral="0"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="Alignment">
<eLiterals name="LEFT" value="1"/>
<eLiterals name="CENTER"/>
<eLiterals name="RIGHT" value="2"/>
<eLiterals name="TOP" value="3"/>
<eLiterals name="BOTTOM" value="4"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="Orientation">
<eLiterals name="NORTH"/>
<eLiterals name="SOUTH" value="1"/>
<eLiterals name="EAST" value="2"/>
<eLiterals name="WEST" value="3"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Cursor" abstract="true"/>
<eClassifiers xsi:type="ecore:EClass" name="SystemCursor" eSuperTypes="#//Cursor">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="type" lowerBound="1" eType="#//SystemCursorType"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="SystemCursorType">
<eLiterals name="ARROW" value="1"/>
<eLiterals name="HAND"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="GridContainer" eSuperTypes="#//Container">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="columns" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"
defaultValueLiteral="1"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="equalWidth" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"
defaultValueLiteral="false"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="children" upperBound="-1"
eType="#//GridChild" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="horizontalSpacing" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt" defaultValueLiteral="5"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="verticalSpacing" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt" defaultValueLiteral="5"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="marginWidth" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt" defaultValueLiteral="5"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="marginHeight" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt" defaultValueLiteral="5"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="BorderContainer" eSuperTypes="#//Container">
<eStructuralFeatures xsi:type="ecore:EReference" name="children" upperBound="-1"
eType="#//BorderChild" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="verticalSpacing" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt" defaultValueLiteral="0"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="horizontalSpacing" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt" defaultValueLiteral="0"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="BorderChild" eSuperTypes="#//Child">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="alignment" lowerBound="1"
eType="#//Alignment" defaultValueLiteral="CENTER"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="GridChild" eSuperTypes="#//Child">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="horizontalAlignment" lowerBound="1"
eType="#//GridAlignment" defaultValueLiteral="BEGINNING"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="verticalAlignment" lowerBound="1"
eType="#//GridAlignment" defaultValueLiteral="BEGINNING"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="grabHorizontalSpace" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean" defaultValueLiteral="false"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="grabVerticalSpace" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean" defaultValueLiteral="false"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="spanCols" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt" defaultValueLiteral="0"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="spanRows" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"
defaultValueLiteral="0"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="widthHint" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="heightHint" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="GridAlignment">
<eLiterals name="CENTER"/>
<eLiterals name="FILL" value="1"/>
<eLiterals name="BEGINNING" value="2"/>
<eLiterals name="END" value="3"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="FigureContainer" eSuperTypes="#//Figure">
<eStructuralFeatures xsi:type="ecore:EReference" name="content" eType="#//Primitive"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Image" eSuperTypes="#//Figure">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="uri" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="imageAlignment" eType="#//Alignment"
defaultValueLiteral="CENTER"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Ellipse" eSuperTypes="#//Shape"/>
<eClassifiers xsi:type="ecore:EClass" name="Arc" eSuperTypes="#//Shape">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="start" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="length" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Connection">
<eStructuralFeatures xsi:type="ecore:EReference" name="start" lowerBound="1" eType="#//Primitive"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="end" lowerBound="1" eType="#//Primitive"
eKeys="#//Primitive/name"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="StackContainer" eSuperTypes="#//Container">
<eStructuralFeatures xsi:type="ecore:EReference" name="children" upperBound="-1"
eType="#//Primitive" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Polygon" eSuperTypes="#//Shape">
<eStructuralFeatures xsi:type="ecore:EReference" name="points" upperBound="-1"
eType="#//Position" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="RoundedRectangle" eSuperTypes="#//Shape">
<eStructuralFeatures xsi:type="ecore:EReference" name="corner" eType="#//Dimension"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="TimeTrigger">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="period" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//ELong"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="onTrigger" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
</ecore:EPackage>
| github:ecore:/data/eclipse/neoscada/hmi/org.eclipse.scada.vi.model/model/VisualInterface.ecore | ecore | model
Symbol
root
properties
onInit
onDispose
onUpdate
scriptModules
cursors
backgroundColor
designSize
connections
backgroundImage
timeTriggers
Primitive
name
Container
Shape
lineWidth
1
antialias
alpha
fill
true
outline
true
Rectangle
Text
text
labelAlignment
CENTER
iconAlignment
CENTER
textAlignment
CENTER
textPlacement
EAST
fontName
fontSize
fontBold
false
fontItalic
false
alpha
Child
element
name
XYChild
position
dimension
XYContainer
children
Position
x
y
Line
points
Figure
foregroundColor
backgroundColor
size
onClick
onDoubleClick
cursor
visible
true
border
opaque
toolTip
onMouseIn
onMouseOut
onMouseMove
onMouseHover
onMouseDrag
SymbolReference
uri
zoom
properties
onCreateProperties
StringToStringMap
java.util.Map$Entry
java.util.Map$Entry
key
value
Dimension
width
0
height
0
Alignment
LEFT
LEFT
CENTER
CENTER
RIGHT
RIGHT
TOP
TOP
BOTTOM
BOTTOM
Orientation
NORTH
NORTH
SOUTH
SOUTH
EAST
EAST
WEST
WEST
Cursor
SystemCursor
type
SystemCursorType
ARROW
ARROW
HAND
HAND
GridContainer
columns
1
equalWidth
false
children
horizontalSpacing
5
verticalSpacing
5
marginWidth
5
marginHeight
5
BorderContainer
children
verticalSpacing
0
horizontalSpacing
0
BorderChild
alignment
CENTER
GridChild
horizontalAlignment
BEGINNING
verticalAlignment
BEGINNING
grabHorizontalSpace
false
grabVerticalSpace
false
spanCols
0
spanRows
0
widthHint
heightHint
GridAlignment
CENTER
CENTER
FILL
FILL
BEGINNING
BEGINNING
END
END
FigureContainer
content
Image
uri
imageAlignment
CENTER
Ellipse
Arc
start
length
Connection
start
end
StackContainer
children
Polygon
points
RoundedRectangle
corner
TimeTrigger
period
onTrigger | null | {"directed":true,"nodes":[{"nsPrefix":"visualInterface","nsURI":"http://eclipse.org/SCADA/VisualInterface","name":"model","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Symbol","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Primitive","instanceClass":null,"abstract":true,"id":2,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Container","instanceClass":null,"abstract":true,"id":3,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Shape","instanceClass":null,"abstract":true,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Rectangle","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Text","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Child","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"XYChild","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"XYContainer","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Position","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Line","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Figure","instanceClass":null,"abstract":true,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SymbolReference","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":"java.util.Map$Entry","defaultValue":null,"instanceClassName":"java.util.Map$Entry","name":"StringToStringMap","instanceClass":"java.util.Map$Entry","abstract":false,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Dimension","instanceClass":null,"abstract":false,"id":15,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"Alignment","instanceClass":null,"id":16,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"Orientation","instanceClass":null,"id":17,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Cursor","instanceClass":null,"abstract":true,"id":18,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SystemCursor","instanceClass":null,"abstract":false,"id":19,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"SystemCursorType","instanceClass":null,"id":20,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"GridContainer","instanceClass":null,"abstract":false,"id":21,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BorderContainer","instanceClass":null,"abstract":false,"id":22,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BorderChild","instanceClass":null,"abstract":false,"id":23,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"GridChild","instanceClass":null,"abstract":false,"id":24,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"GridAlignment","instanceClass":null,"id":25,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FigureContainer","instanceClass":null,"abstract":false,"id":26,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Image","instanceClass":null,"abstract":false,"id":27,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Ellipse","instanceClass":null,"abstract":false,"id":28,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Arc","instanceClass":null,"abstract":false,"id":29,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Connection","instanceClass":null,"abstract":false,"id":30,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StackContainer","instanceClass":null,"abstract":false,"id":31,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Polygon","instanceClass":null,"abstract":false,"id":32,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RoundedRectangle","instanceClass":null,"abstract":false,"id":33,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TimeTrigger","instanceClass":null,"abstract":false,"id":34,"interface":false,"eClass":"EClass"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"root","changeable":true,"resolveProxies":true,"lowerBound":0,"id":35,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"properties","changeable":true,"resolveProxies":true,"lowerBound":0,"id":36,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"onInit","changeable":true,"lowerBound":0,"iD":false,"id":37,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"onDispose","changeable":true,"lowerBound":0,"iD":false,"id":38,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"onUpdate","changeable":true,"lowerBound":0,"iD":false,"id":39,"derived":false},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"scriptModules","changeable":true,"lowerBound":0,"iD":false,"id":40,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"cursors","changeable":true,"resolveProxies":true,"lowerBound":0,"id":41,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"backgroundColor","changeable":true,"lowerBound":0,"iD":false,"id":42,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"designSize","changeable":true,"resolveProxies":true,"lowerBound":0,"id":43,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"connections","changeable":true,"resolveProxies":true,"lowerBound":0,"id":44,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"backgroundImage","changeable":true,"lowerBound":0,"iD":false,"id":45,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"timeTriggers","changeable":true,"resolveProxies":true,"lowerBound":0,"id":46,"derived":false},{"id":47,"eClass":"EGenericType"},{"id":48,"eClass":"EGenericType"},{"id":49,"eClass":"EGenericType"},{"id":50,"eClass":"EGenericType"},{"id":51,"eClass":"EGenericType"},{"id":52,"eClass":"EGenericType"},{"id":53,"eClass":"EGenericType"},{"id":54,"eClass":"EGenericType"},{"id":55,"eClass":"EGenericType"},{"id":56,"eClass":"EGenericType"},{"id":57,"eClass":"EGenericType"},{"id":58,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":true,"id":59,"derived":false},{"id":60,"eClass":"EGenericType"},{"id":61,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":1.0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"1","unsettable":false,"transient":false,"unique":true,"name":"lineWidth","changeable":true,"lowerBound":1,"iD":false,"id":62,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"antialias","changeable":true,"lowerBound":0,"iD":false,"id":63,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"alpha","changeable":true,"lowerBound":0,"iD":false,"id":64,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":true,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"true","unsettable":false,"transient":false,"unique":true,"name":"fill","changeable":true,"lowerBound":1,"iD":false,"id":65,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":true,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"true","unsettable":false,"transient":false,"unique":true,"name":"outline","changeable":true,"lowerBound":1,"iD":false,"id":66,"derived":false},{"id":67,"eClass":"EGenericType"},{"id":68,"eClass":"EGenericType"},{"id":69,"eClass":"EGenericType"},{"id":70,"eClass":"EGenericType"},{"id":71,"eClass":"EGenericType"},{"id":72,"eClass":"EGenericType"},{"id":73,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"text","changeable":true,"lowerBound":1,"iD":false,"id":74,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"CENTER","unsettable":false,"transient":false,"unique":true,"name":"labelAlignment","changeable":true,"lowerBound":0,"iD":false,"id":75,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"CENTER","unsettable":false,"transient":false,"unique":true,"name":"iconAlignment","changeable":true,"lowerBound":0,"iD":false,"id":76,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"CENTER","unsettable":false,"transient":false,"unique":true,"name":"textAlignment","changeable":true,"lowerBound":0,"iD":false,"id":77,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"EAST","unsettable":false,"transient":false,"unique":true,"name":"textPlacement","changeable":true,"lowerBound":0,"iD":false,"id":78,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"fontName","changeable":true,"lowerBound":0,"iD":false,"id":79,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"fontSize","changeable":true,"lowerBound":0,"iD":false,"id":80,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"false","unsettable":false,"transient":false,"unique":true,"name":"fontBold","changeable":true,"lowerBound":1,"iD":false,"id":81,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"false","unsettable":false,"transient":false,"unique":true,"name":"fontItalic","changeable":true,"lowerBound":1,"iD":false,"id":82,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"alpha","changeable":true,"lowerBound":0,"iD":false,"id":83,"derived":false},{"id":84,"eClass":"EGenericType"},{"id":85,"eClass":"EGenericType"},{"id":86,"eClass":"EGenericType"},{"id":87,"eClass":"EGenericType"},{"id":88,"eClass":"EGenericType"},{"id":89,"eClass":"EGenericType"},{"id":90,"eClass":"EGenericType"},{"id":91,"eClass":"EGenericType"},{"id":92,"eClass":"EGenericType"},{"id":93,"eClass":"EGenericType"},{"id":94,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"element","changeable":true,"resolveProxies":true,"lowerBound":0,"id":95,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":96,"derived":false},{"id":97,"eClass":"EGenericType"},{"id":98,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"position","changeable":true,"resolveProxies":true,"lowerBound":1,"id":99,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"dimension","changeable":true,"resolveProxies":true,"lowerBound":0,"id":100,"derived":false},{"id":101,"eClass":"EGenericType"},{"id":102,"eClass":"EGenericType"},{"id":103,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"children","changeable":true,"resolveProxies":true,"lowerBound":0,"id":104,"derived":false},{"id":105,"eClass":"EGenericType"},{"id":106,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"x","changeable":true,"lowerBound":1,"iD":false,"id":107,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"y","changeable":true,"lowerBound":1,"iD":false,"id":108,"derived":false},{"id":109,"eClass":"EGenericType"},{"id":110,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"points","changeable":true,"resolveProxies":true,"lowerBound":0,"id":111,"derived":false},{"id":112,"eClass":"EGenericType"},{"id":113,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"foregroundColor","changeable":true,"lowerBound":0,"iD":false,"id":114,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"backgroundColor","changeable":true,"lowerBound":0,"iD":false,"id":115,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"size","changeable":true,"resolveProxies":true,"lowerBound":0,"id":116,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"onClick","changeable":true,"lowerBound":0,"iD":false,"id":117,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"onDoubleClick","changeable":true,"lowerBound":0,"iD":false,"id":118,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"cursor","changeable":true,"resolveProxies":true,"lowerBound":0,"id":119,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":true,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"true","unsettable":false,"transient":false,"unique":true,"name":"visible","changeable":true,"lowerBound":1,"iD":false,"id":120,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"border","changeable":true,"lowerBound":0,"iD":false,"id":121,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"opaque","changeable":true,"lowerBound":0,"iD":false,"id":122,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"toolTip","changeable":true,"lowerBound":0,"iD":false,"id":123,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"onMouseIn","changeable":true,"lowerBound":0,"iD":false,"id":124,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"onMouseOut","changeable":true,"lowerBound":0,"iD":false,"id":125,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"onMouseMove","changeable":true,"lowerBound":0,"iD":false,"id":126,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"onMouseHover","changeable":true,"lowerBound":0,"iD":false,"id":127,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"onMouseDrag","changeable":true,"lowerBound":0,"iD":false,"id":128,"derived":false},{"id":129,"eClass":"EGenericType"},{"id":130,"eClass":"EGenericType"},{"id":131,"eClass":"EGenericType"},{"id":132,"eClass":"EGenericType"},{"id":133,"eClass":"EGenericType"},{"id":134,"eClass":"EGenericType"},{"id":135,"eClass":"EGenericType"},{"id":136,"eClass":"EGenericType"},{"id":137,"eClass":"EGenericType"},{"id":138,"eClass":"EGenericType"},{"id":139,"eClass":"EGenericType"},{"id":140,"eClass":"EGenericType"},{"id":141,"eClass":"EGenericType"},{"id":142,"eClass":"EGenericType"},{"id":143,"eClass":"EGenericType"},{"id":144,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"uri","changeable":true,"lowerBound":1,"iD":false,"id":145,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"zoom","changeable":true,"lowerBound":0,"iD":false,"id":146,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"properties","changeable":true,"resolveProxies":true,"lowerBound":0,"id":147,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"onCreateProperties","changeable":true,"lowerBound":0,"iD":false,"id":148,"derived":false},{"id":149,"eClass":"EGenericType"},{"id":150,"eClass":"EGenericType"},{"id":151,"eClass":"EGenericType"},{"id":152,"eClass":"EGenericType"},{"id":153,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"key","changeable":true,"lowerBound":1,"iD":false,"id":154,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":0,"iD":false,"id":155,"derived":false},{"id":156,"eClass":"EGenericType"},{"id":157,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"0","unsettable":false,"transient":false,"unique":true,"name":"width","changeable":true,"lowerBound":1,"iD":false,"id":158,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"0","unsettable":false,"transient":false,"unique":true,"name":"height","changeable":true,"lowerBound":1,"iD":false,"id":159,"derived":false},{"id":160,"eClass":"EGenericType"},{"id":161,"eClass":"EGenericType"},{"name":"LEFT","id":162,"value":1,"literal":"LEFT","eClass":"EEnumLiteral"},{"name":"CENTER","id":163,"value":0,"literal":"CENTER","eClass":"EEnumLiteral"},{"name":"RIGHT","id":164,"value":2,"literal":"RIGHT","eClass":"EEnumLiteral"},{"name":"TOP","id":165,"value":3,"literal":"TOP","eClass":"EEnumLiteral"},{"name":"BOTTOM","id":166,"value":4,"literal":"BOTTOM","eClass":"EEnumLiteral"},{"name":"NORTH","id":167,"value":0,"literal":"NORTH","eClass":"EEnumLiteral"},{"name":"SOUTH","id":168,"value":1,"literal":"SOUTH","eClass":"EEnumLiteral"},{"name":"EAST","id":169,"value":2,"literal":"EAST","eClass":"EEnumLiteral"},{"name":"WEST","id":170,"value":3,"literal":"WEST","eClass":"EEnumLiteral"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"lowerBound":1,"iD":false,"id":171,"derived":false},{"id":172,"eClass":"EGenericType"},{"id":173,"eClass":"EGenericType"},{"name":"ARROW","id":174,"value":1,"literal":"ARROW","eClass":"EEnumLiteral"},{"name":"HAND","id":175,"value":0,"literal":"HAND","eClass":"EEnumLiteral"},{"ordered":true,"upperBound":1,"defaultValue":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"1","unsettable":false,"transient":false,"unique":true,"name":"columns","changeable":true,"lowerBound":0,"iD":false,"id":176,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"false","unsettable":false,"transient":false,"unique":true,"name":"equalWidth","changeable":true,"lowerBound":0,"iD":false,"id":177,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"children","changeable":true,"resolveProxies":true,"lowerBound":0,"id":178,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":5,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"5","unsettable":false,"transient":false,"unique":true,"name":"horizontalSpacing","changeable":true,"lowerBound":1,"iD":false,"id":179,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":5,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"5","unsettable":false,"transient":false,"unique":true,"name":"verticalSpacing","changeable":true,"lowerBound":1,"iD":false,"id":180,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":5,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"5","unsettable":false,"transient":false,"unique":true,"name":"marginWidth","changeable":true,"lowerBound":1,"iD":false,"id":181,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":5,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"5","unsettable":false,"transient":false,"unique":true,"name":"marginHeight","changeable":true,"lowerBound":1,"iD":false,"id":182,"derived":false},{"id":183,"eClass":"EGenericType"},{"id":184,"eClass":"EGenericType"},{"id":185,"eClass":"EGenericType"},{"id":186,"eClass":"EGenericType"},{"id":187,"eClass":"EGenericType"},{"id":188,"eClass":"EGenericType"},{"id":189,"eClass":"EGenericType"},{"id":190,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"children","changeable":true,"resolveProxies":true,"lowerBound":0,"id":191,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"0","unsettable":false,"transient":false,"unique":true,"name":"verticalSpacing","changeable":true,"lowerBound":1,"iD":false,"id":192,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"0","unsettable":false,"transient":false,"unique":true,"name":"horizontalSpacing","changeable":true,"lowerBound":1,"iD":false,"id":193,"derived":false},{"id":194,"eClass":"EGenericType"},{"id":195,"eClass":"EGenericType"},{"id":196,"eClass":"EGenericType"},{"id":197,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"CENTER","unsettable":false,"transient":false,"unique":true,"name":"alignment","changeable":true,"lowerBound":1,"iD":false,"id":198,"derived":false},{"id":199,"eClass":"EGenericType"},{"id":200,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"BEGINNING","unsettable":false,"transient":false,"unique":true,"name":"horizontalAlignment","changeable":true,"lowerBound":1,"iD":false,"id":201,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"BEGINNING","unsettable":false,"transient":false,"unique":true,"name":"verticalAlignment","changeable":true,"lowerBound":1,"iD":false,"id":202,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"false","unsettable":false,"transient":false,"unique":true,"name":"grabHorizontalSpace","changeable":true,"lowerBound":1,"iD":false,"id":203,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"false","unsettable":false,"transient":false,"unique":true,"name":"grabVerticalSpace","changeable":true,"lowerBound":1,"iD":false,"id":204,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"0","unsettable":false,"transient":false,"unique":true,"name":"spanCols","changeable":true,"lowerBound":1,"iD":false,"id":205,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"0","unsettable":false,"transient":false,"unique":true,"name":"spanRows","changeable":true,"lowerBound":0,"iD":false,"id":206,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"widthHint","changeable":true,"lowerBound":0,"iD":false,"id":207,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"heightHint","changeable":true,"lowerBound":1,"iD":false,"id":208,"derived":false},{"id":209,"eClass":"EGenericType"},{"id":210,"eClass":"EGenericType"},{"id":211,"eClass":"EGenericType"},{"id":212,"eClass":"EGenericType"},{"id":213,"eClass":"EGenericType"},{"id":214,"eClass":"EGenericType"},{"id":215,"eClass":"EGenericType"},{"id":216,"eClass":"EGenericType"},{"id":217,"eClass":"EGenericType"},{"name":"CENTER","id":218,"value":0,"literal":"CENTER","eClass":"EEnumLiteral"},{"name":"FILL","id":219,"value":1,"literal":"FILL","eClass":"EEnumLiteral"},{"name":"BEGINNING","id":220,"value":2,"literal":"BEGINNING","eClass":"EEnumLiteral"},{"name":"END","id":221,"value":3,"literal":"END","eClass":"EEnumLiteral"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"content","changeable":true,"resolveProxies":true,"lowerBound":0,"id":222,"derived":false},{"id":223,"eClass":"EGenericType"},{"id":224,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"uri","changeable":true,"lowerBound":0,"iD":false,"id":225,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"CENTER","unsettable":false,"transient":false,"unique":true,"name":"imageAlignment","changeable":true,"lowerBound":0,"iD":false,"id":226,"derived":false},{"id":227,"eClass":"EGenericType"},{"id":228,"eClass":"EGenericType"},{"id":229,"eClass":"EGenericType"},{"id":230,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"start","changeable":true,"lowerBound":1,"iD":false,"id":231,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"length","changeable":true,"lowerBound":1,"iD":false,"id":232,"derived":false},{"id":233,"eClass":"EGenericType"},{"id":234,"eClass":"EGenericType"},{"id":235,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"start","changeable":true,"resolveProxies":true,"lowerBound":1,"id":236,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"end","changeable":true,"resolveProxies":true,"lowerBound":1,"id":237,"derived":false},{"id":238,"eClass":"EGenericType"},{"id":239,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"children","changeable":true,"resolveProxies":true,"lowerBound":0,"id":240,"derived":false},{"id":241,"eClass":"EGenericType"},{"id":242,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"points","changeable":true,"resolveProxies":true,"lowerBound":0,"id":243,"derived":false},{"id":244,"eClass":"EGenericType"},{"id":245,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"corner","changeable":true,"resolveProxies":true,"lowerBound":0,"id":246,"derived":false},{"id":247,"eClass":"EGenericType"},{"id":248,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"period","changeable":true,"lowerBound":1,"iD":false,"id":249,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"onTrigger","changeable":true,"lowerBound":1,"iD":false,"id":250,"derived":false},{"id":251,"eClass":"EGenericType"},{"id":252,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":0,"target":8},{"source":0,"target":9},{"source":0,"target":10},{"source":0,"target":11},{"source":0,"target":12},{"source":0,"target":13},{"source":0,"target":14},{"source":0,"target":15},{"source":0,"target":16},{"source":0,"target":17},{"source":0,"target":18},{"source":0,"target":19},{"source":0,"target":20},{"source":0,"target":21},{"source":0,"target":22},{"source":0,"target":23},{"source":0,"target":24},{"source":0,"target":25},{"source":0,"target":26},{"source":0,"target":27},{"source":0,"target":28},{"source":0,"target":29},{"source":0,"target":30},{"source":0,"target":31},{"source":0,"target":32},{"source":0,"target":33},{"source":0,"target":34},{"source":1,"target":0},{"source":1,"target":35},{"source":1,"target":36},{"source":1,"target":37},{"source":1,"target":38},{"source":1,"target":39},{"source":1,"target":40},{"source":1,"target":41},{"source":1,"target":42},{"source":1,"target":43},{"source":1,"target":44},{"source":1,"target":45},{"source":1,"target":46},{"source":35,"target":2},{"source":35,"target":47},{"source":35,"target":1},{"source":47,"target":2},{"source":36,"target":14},{"source":36,"target":48},{"source":36,"target":1},{"source":48,"target":14},{"source":37,"target":49},{"source":37,"target":1},{"source":38,"target":50},{"source":38,"target":1},{"source":39,"target":51},{"source":39,"target":1},{"source":40,"target":52},{"source":40,"target":1},{"source":41,"target":18},{"source":41,"target":53},{"source":41,"target":1},{"source":53,"target":18},{"source":42,"target":54},{"source":42,"target":1},{"source":43,"target":15},{"source":43,"target":55},{"source":43,"target":1},{"source":55,"target":15},{"source":44,"target":30},{"source":44,"target":56},{"source":44,"target":1},{"source":56,"target":30},{"source":45,"target":57},{"source":45,"target":1},{"source":46,"target":34},{"source":46,"target":58},{"source":46,"target":1},{"source":58,"target":34},{"source":2,"target":0},{"source":2,"target":59},{"source":59,"target":60},{"source":59,"target":2},{"source":3,"target":0},{"source":3,"target":2},{"source":3,"target":61},{"source":61,"target":2},{"source":4,"target":0},{"source":4,"target":12},{"source":4,"target":62},{"source":4,"target":63},{"source":4,"target":64},{"source":4,"target":65},{"source":4,"target":66},{"source":4,"target":67},{"source":62,"target":68},{"source":62,"target":4},{"source":63,"target":69},{"source":63,"target":4},{"source":64,"target":70},{"source":64,"target":4},{"source":65,"target":71},{"source":65,"target":4},{"source":66,"target":72},{"source":66,"target":4},{"source":67,"target":12},{"source":5,"target":0},{"source":5,"target":4},{"source":5,"target":73},{"source":73,"target":4},{"source":6,"target":0},{"source":6,"target":12},{"source":6,"target":74},{"source":6,"target":75},{"source":6,"target":76},{"source":6,"target":77},{"source":6,"target":78},{"source":6,"target":79},{"source":6,"target":80},{"source":6,"target":81},{"source":6,"target":82},{"source":6,"target":83},{"source":6,"target":84},{"source":74,"target":85},{"source":74,"target":6},{"source":75,"target":16},{"source":75,"target":86},{"source":75,"target":6},{"source":86,"target":16},{"source":76,"target":16},{"source":76,"target":87},{"source":76,"target":6},{"source":87,"target":16},{"source":77,"target":16},{"source":77,"target":88},{"source":77,"target":6},{"source":88,"target":16},{"source":78,"target":17},{"source":78,"target":89},{"source":78,"target":6},{"source":89,"target":17},{"source":79,"target":90},{"source":79,"target":6},{"source":80,"target":91},{"source":80,"target":6},{"source":81,"target":92},{"source":81,"target":6},{"source":82,"target":93},{"source":82,"target":6},{"source":83,"target":94},{"source":83,"target":6},{"source":84,"target":12},{"source":7,"target":0},{"source":7,"target":95},{"source":7,"target":96},{"source":95,"target":2},{"source":95,"target":97},{"source":95,"target":7},{"source":97,"target":2},{"source":96,"target":98},{"source":96,"target":7},{"source":8,"target":0},{"source":8,"target":7},{"source":8,"target":99},{"source":8,"target":100},{"source":8,"target":101},{"source":99,"target":10},{"source":99,"target":102},{"source":99,"target":8},{"source":102,"target":10},{"source":100,"target":15},{"source":100,"target":103},{"source":100,"target":8},{"source":103,"target":15},{"source":101,"target":7},{"source":9,"target":0},{"source":9,"target":3},{"source":9,"target":104},{"source":9,"target":105},{"source":104,"target":8},{"source":104,"target":106},{"source":104,"target":9},{"source":106,"target":8},{"source":105,"target":3},{"source":10,"target":0},{"source":10,"target":107},{"source":10,"target":108},{"source":107,"target":109},{"source":107,"target":10},{"source":108,"target":110},{"source":108,"target":10},{"source":11,"target":0},{"source":11,"target":4},{"source":11,"target":111},{"source":11,"target":112},{"source":111,"target":10},{"source":111,"target":113},{"source":111,"target":11},{"source":113,"target":10},{"source":112,"target":4},{"source":12,"target":0},{"source":12,"target":2},{"source":12,"target":114},{"source":12,"target":115},{"source":12,"target":116},{"source":12,"target":117},{"source":12,"target":118},{"source":12,"target":119},{"source":12,"target":120},{"source":12,"target":121},{"source":12,"target":122},{"source":12,"target":123},{"source":12,"target":124},{"source":12,"target":125},{"source":12,"target":126},{"source":12,"target":127},{"source":12,"target":128},{"source":12,"target":129},{"source":114,"target":130},{"source":114,"target":12},{"source":115,"target":131},{"source":115,"target":12},{"source":116,"target":15},{"source":116,"target":132},{"source":116,"target":12},{"source":132,"target":15},{"source":117,"target":133},{"source":117,"target":12},{"source":118,"target":134},{"source":118,"target":12},{"source":119,"target":18},{"source":119,"target":135},{"source":119,"target":12},{"source":135,"target":18},{"source":120,"target":136},{"source":120,"target":12},{"source":121,"target":137},{"source":121,"target":12},{"source":122,"target":138},{"source":122,"target":12},{"source":123,"target":139},{"source":123,"target":12},{"source":124,"target":140},{"source":124,"target":12},{"source":125,"target":141},{"source":125,"target":12},{"source":126,"target":142},{"source":126,"target":12},{"source":127,"target":143},{"source":127,"target":12},{"source":128,"target":144},{"source":128,"target":12},{"source":129,"target":2},{"source":13,"target":0},{"source":13,"target":2},{"source":13,"target":145},{"source":13,"target":146},{"source":13,"target":147},{"source":13,"target":148},{"source":13,"target":149},{"source":145,"target":150},{"source":145,"target":13},{"source":146,"target":151},{"source":146,"target":13},{"source":147,"target":14},{"source":147,"target":152},{"source":147,"target":13},{"source":152,"target":14},{"source":148,"target":153},{"source":148,"target":13},{"source":149,"target":2},{"source":14,"target":0},{"source":14,"target":154},{"source":14,"target":155},{"source":154,"target":156},{"source":154,"target":14},{"source":155,"target":157},{"source":155,"target":14},{"source":15,"target":0},{"source":15,"target":158},{"source":15,"target":159},{"source":158,"target":160},{"source":158,"target":15},{"source":159,"target":161},{"source":159,"target":15},{"source":16,"target":0},{"source":16,"target":162},{"source":16,"target":163},{"source":16,"target":164},{"source":16,"target":165},{"source":16,"target":166},{"source":162,"target":16},{"source":163,"target":16},{"source":164,"target":16},{"source":165,"target":16},{"source":166,"target":16},{"source":17,"target":0},{"source":17,"target":167},{"source":17,"target":168},{"source":17,"target":169},{"source":17,"target":170},{"source":167,"target":17},{"source":168,"target":17},{"source":169,"target":17},{"source":170,"target":17},{"source":18,"target":0},{"source":19,"target":0},{"source":19,"target":18},{"source":19,"target":171},{"source":19,"target":172},{"source":171,"target":20},{"source":171,"target":173},{"source":171,"target":19},{"source":173,"target":20},{"source":172,"target":18},{"source":20,"target":0},{"source":20,"target":174},{"source":20,"target":175},{"source":174,"target":20},{"source":175,"target":20},{"source":21,"target":0},{"source":21,"target":3},{"source":21,"target":176},{"source":21,"target":177},{"source":21,"target":178},{"source":21,"target":179},{"source":21,"target":180},{"source":21,"target":181},{"source":21,"target":182},{"source":21,"target":183},{"source":176,"target":184},{"source":176,"target":21},{"source":177,"target":185},{"source":177,"target":21},{"source":178,"target":24},{"source":178,"target":186},{"source":178,"target":21},{"source":186,"target":24},{"source":179,"target":187},{"source":179,"target":21},{"source":180,"target":188},{"source":180,"target":21},{"source":181,"target":189},{"source":181,"target":21},{"source":182,"target":190},{"source":182,"target":21},{"source":183,"target":3},{"source":22,"target":0},{"source":22,"target":3},{"source":22,"target":191},{"source":22,"target":192},{"source":22,"target":193},{"source":22,"target":194},{"source":191,"target":23},{"source":191,"target":195},{"source":191,"target":22},{"source":195,"target":23},{"source":192,"target":196},{"source":192,"target":22},{"source":193,"target":197},{"source":193,"target":22},{"source":194,"target":3},{"source":23,"target":0},{"source":23,"target":7},{"source":23,"target":198},{"source":23,"target":199},{"source":198,"target":16},{"source":198,"target":200},{"source":198,"target":23},{"source":200,"target":16},{"source":199,"target":7},{"source":24,"target":0},{"source":24,"target":7},{"source":24,"target":201},{"source":24,"target":202},{"source":24,"target":203},{"source":24,"target":204},{"source":24,"target":205},{"source":24,"target":206},{"source":24,"target":207},{"source":24,"target":208},{"source":24,"target":209},{"source":201,"target":25},{"source":201,"target":210},{"source":201,"target":24},{"source":210,"target":25},{"source":202,"target":25},{"source":202,"target":211},{"source":202,"target":24},{"source":211,"target":25},{"source":203,"target":212},{"source":203,"target":24},{"source":204,"target":213},{"source":204,"target":24},{"source":205,"target":214},{"source":205,"target":24},{"source":206,"target":215},{"source":206,"target":24},{"source":207,"target":216},{"source":207,"target":24},{"source":208,"target":217},{"source":208,"target":24},{"source":209,"target":7},{"source":25,"target":0},{"source":25,"target":218},{"source":25,"target":219},{"source":25,"target":220},{"source":25,"target":221},{"source":218,"target":25},{"source":219,"target":25},{"source":220,"target":25},{"source":221,"target":25},{"source":26,"target":0},{"source":26,"target":12},{"source":26,"target":222},{"source":26,"target":223},{"source":222,"target":2},{"source":222,"target":224},{"source":222,"target":26},{"source":224,"target":2},{"source":223,"target":12},{"source":27,"target":0},{"source":27,"target":12},{"source":27,"target":225},{"source":27,"target":226},{"source":27,"target":227},{"source":225,"target":228},{"source":225,"target":27},{"source":226,"target":16},{"source":226,"target":229},{"source":226,"target":27},{"source":229,"target":16},{"source":227,"target":12},{"source":28,"target":0},{"source":28,"target":4},{"source":28,"target":230},{"source":230,"target":4},{"source":29,"target":0},{"source":29,"target":4},{"source":29,"target":231},{"source":29,"target":232},{"source":29,"target":233},{"source":231,"target":234},{"source":231,"target":29},{"source":232,"target":235},{"source":232,"target":29},{"source":233,"target":4},{"source":30,"target":0},{"source":30,"target":236},{"source":30,"target":237},{"source":236,"target":2},{"source":236,"target":238},{"source":236,"target":30},{"source":238,"target":2},{"source":237,"target":2},{"source":237,"target":239},{"source":237,"target":30},{"source":237,"target":59},{"source":239,"target":2},{"source":31,"target":0},{"source":31,"target":3},{"source":31,"target":240},{"source":31,"target":241},{"source":240,"target":2},{"source":240,"target":242},{"source":240,"target":31},{"source":242,"target":2},{"source":241,"target":3},{"source":32,"target":0},{"source":32,"target":4},{"source":32,"target":243},{"source":32,"target":244},{"source":243,"target":10},{"source":243,"target":245},{"source":243,"target":32},{"source":245,"target":10},{"source":244,"target":4},{"source":33,"target":0},{"source":33,"target":4},{"source":33,"target":246},{"source":33,"target":247},{"source":246,"target":15},{"source":246,"target":248},{"source":246,"target":33},{"source":248,"target":15},{"source":247,"target":4},{"source":34,"target":0},{"source":34,"target":249},{"source":34,"target":250},{"source":249,"target":251},{"source":249,"target":34},{"source":250,"target":252},{"source":250,"target":34}],"multigraph":true} |
false | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="dpd" nsURI="http://sca.jpeojtrs.mil/dpd" nsPrefix="">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="DEVICE PACKAGE DESCRIPTOR.
The SCA Device Package Descriptor (DPD) is the part of a Device Profile that contains
hardware device Registration attributes, which are typically used by a Human Computer
Interface application to display information about the device(s) resident in an SCA-compliant
radio system. DPD information is intended to provide hardware configuration and revision
information to a radio operator or to radio maintenance personnel. A DPD may be used to
describe a single hardware element residing in a radio or it may be used to describe the complete
hardware structure of a radio. In either case, the description of the hardware structure should be
consistent with hardware partitioning as described in the Hardware Architecture Definition in
section 4.0 of the SCA."/>
</eAnnotations>
<eClassifiers xsi:type="ecore:EClass" name="Author">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="author"/>
<details key="kind" value="elementOnly"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" unique="false" upperBound="-1"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="name"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="company" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="company"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="webpage" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//AnyURI">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="webpage"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ChildHwDevice">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The childhwdevice element (see Figure D-10) indicates additional device-specific information
for hardware devices that make up the root or parent hardware device registration. An example
of childhwdevice would be a radio's RF module that has receiver and exciter functions within it.
In this case, a CF Device representing the RF module itself would be a parent Device with its
DPD, and the receiver and exciter are child devices to the module. The parent / child
relationship indicates that when the RF module is removed from the system, the receiver and
exciter devices are also removed."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="childhwdevice"/>
<details key="kind" value="elementOnly"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="hwDeviceRegistration" eType="#//HwDeviceRegistration"
containment="true" resolveProxies="false">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The hwdeviceregistration element provides device-specific information for the child hardware
device. See D.3.1.4 for definition of the hwdeviceregistration element."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="hwdeviceregistration"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="devicePkgRef" eType="#//DevicePkgRef"
containment="true" resolveProxies="false">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The devicepkgref element is used to indicate the local filename of a Device Package Descriptor
file pointed to by Device Package Descriptor (e.g., a devicepkg within a devicepkg)."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="devicepkgref"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="DeviceClass">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The deviceclass element is used to identify one or more hardware classes that make up the device
being installed (e.g., RF, Modem, I/O, as defined in SCA section 4.2.2 HWModule(s) Class
Structure)."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="deviceclass"/>
<details key="kind" value="elementOnly"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="class" unique="false" lowerBound="1"
upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="class"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="DevicePkg">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="DEVICE PACKAGE 
The SCA Device Package Descriptor (DPD) is the part of a Device Profile that contains
hardware device Registration attributes, which are typically used by a Human Computer
Interface application to display information about the device(s) resident in an SCA-compliant
radio system. DPD information is intended to provide hardware configuration and revision
information to a radio operator or to radio maintenance personnel. A DPD may be used to
describe a single hardware element residing in a radio or it may be used to describe the complete
hardware structure of a radio. In either case, the description of the hardware structure should be
consistent with hardware partitioning as described in the Hardware Architecture Definition in
section 4.0 of the SCA.

The devicepkg element (see Figure D-8) is the root element of the DPD.
"/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="devicepkg"/>
<details key="kind" value="elementOnly"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="title" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The title element is used for indicating a title for the hardware device being described by
devicepkg."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="title"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="author" lowerBound="1"
upperBound="-1" eType="#//Author" containment="true" resolveProxies="false">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="See D.2.1.3 for a definition of the author element."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="author"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="description" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The description element is used to describe any pertinent information about the device
implementation that the hardware developer wishes to document within the Device Package."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="description"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="hwDeviceRegistration" lowerBound="1"
eType="#//HwDeviceRegistration" containment="true" resolveProxies="false">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The hwdeviceregistration element (see Figure D-9) provides device-specific information for a
hardware device."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="hwdeviceregistration"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="id" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The devicepkg id
attribute uniquely identifies the package and is a DCE UUID, as defined in paragraph D.2.1."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="id"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The name
attribute is a user-friendly label for the devicepkg."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="name"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="version" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The
version attribute specifies the version of the devicepkg.

The format of the version string is
numerical major and minor version numbers separated by commas (e.g., \"1,0,0,0\")."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="version"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="DevicePkgRef">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="devicepkgref"/>
<details key="kind" value="elementOnly"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="localFile" lowerBound="1"
eType="#//LocalFile" containment="true" resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="localfile"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="type" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="type"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="DocumentRoot">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value=""/>
<details key="kind" value="mixed"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="mixed" unique="false" upperBound="-1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFeatureMapEntry">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="elementWildcard"/>
<details key="name" value=":mixed"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="xMLNSPrefixMap" upperBound="-1"
eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EStringToStringMapEntry"
transient="true" containment="true" resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="xmlns:prefix"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="xSISchemaLocation" upperBound="-1"
eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EStringToStringMapEntry"
transient="true" containment="true" resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="xsi:schemaLocation"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="author" upperBound="-2"
eType="#//Author" volatile="true" transient="true" derived="true" containment="true"
resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="author"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="childhwdevice" upperBound="-2"
eType="#//ChildHwDevice" volatile="true" transient="true" derived="true" containment="true"
resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="childhwdevice"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="class" unique="false" upperBound="-2"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String" volatile="true"
transient="true" derived="true">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="class"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="company" unique="false"
upperBound="-2" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"
volatile="true" transient="true" derived="true">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="company"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="description" unique="false"
upperBound="-2" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"
volatile="true" transient="true" derived="true">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="description"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="deviceclass" upperBound="-2"
eType="#//DeviceClass" volatile="true" transient="true" derived="true" containment="true"
resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="deviceclass"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="devicepkg" upperBound="-2"
eType="#//DevicePkg" volatile="true" transient="true" derived="true" containment="true"
resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="devicepkg"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="devicepkgref" upperBound="-2"
eType="#//DevicePkgRef" volatile="true" transient="true" derived="true" containment="true"
resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="devicepkgref"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="hwdeviceregistration" upperBound="-2"
eType="#//HwDeviceRegistration" volatile="true" transient="true" derived="true"
containment="true" resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="hwdeviceregistration"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="localfile" upperBound="-2"
eType="#//LocalFile" volatile="true" transient="true" derived="true" containment="true"
resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="localfile"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="manufacturer" unique="false"
upperBound="-2" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"
volatile="true" transient="true" derived="true">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="manufacturer"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="modelnumber" unique="false"
upperBound="-2" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"
volatile="true" transient="true" derived="true">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="modelnumber"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" unique="false" upperBound="-2"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String" volatile="true"
transient="true" derived="true">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="name"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="propertyfile" upperBound="-2"
eType="#//PropertyFile" volatile="true" transient="true" derived="true" containment="true"
resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="propertyfile"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="title" unique="false" upperBound="-2"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String" volatile="true"
transient="true" derived="true">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="title"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="webpage" unique="false"
upperBound="-2" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//AnyURI"
volatile="true" transient="true" derived="true">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="webpage"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="HwDeviceRegistration">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="
At a minimum, the hwdeviceregistration
element must include a description, the manufacturer, the model number and the device's
hardware class(es) (Refer to SCA section 4, Hardware Architecture Definition)."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="hwdeviceregistration"/>
<details key="kind" value="elementOnly"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="propertyFile" eType="#//PropertyFile"
containment="true" resolveProxies="false">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The propertyfile element is used to indicate the local filename of the property file associated with
the hwdeviceregistration element. The format of a property file is described in the Properties
Descriptor (Section D.4).

The intent of the property file is to provide the definition of properties elements for the hardware
device being deployed and described in the Device Package (devicepkg) or hwdeviceregistration
element."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="propertyfile"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="description" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="See D.2.1.4 for definition of the description element."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="description"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="manufacturer" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The manufacturer element is used to convey the name of manufacturer of the device being
installed."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="manufacturer"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="modelNumber" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The modelnumber element is used to indicate the manufacture's model number, for the device
being installed."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="modelnumber"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="deviceClass" lowerBound="1"
eType="#//DeviceClass" containment="true" resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="deviceclass"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="childHwDevice" upperBound="-1"
eType="#//ChildHwDevice" containment="true" resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="childhwdevice"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="id" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The hwdeviceregistration id attribute uniquely identifies the device and is a
DCE UUID, as defined in paragraph D.2.1."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="id"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The name attribute is a userfriendlylabel
for the hardware device being registered."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="name"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="version" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The version attribute specifies the version of the
hwdeviceregistration element. The format of the version string is numerical major and minor
version numbers separated by commas (e.g., \"1,0,0,0\")."/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="version"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="LocalFile">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="localfile"/>
<details key="kind" value="empty"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="name"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="PropertyFile">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="propertyfile"/>
<details key="kind" value="elementOnly"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="localFile" lowerBound="1"
eType="#//LocalFile" containment="true" resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="localfile"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="type" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="type"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
</ecore:EPackage>
| github:ecore:/data/gssi/metamodel-dataset-analysis-toolchain/metamodels/dpd.ecore | ecore | dpd
Author
name
company
webpage
ChildHwDevice
hwDeviceRegistration
devicePkgRef
DeviceClass
class
DevicePkg
title
author
description
hwDeviceRegistration
id
name
version
DevicePkgRef
localFile
type
DocumentRoot
mixed
xMLNSPrefixMap
xSISchemaLocation
author
childhwdevice
class
company
description
deviceclass
devicepkg
devicepkgref
hwdeviceregistration
localfile
manufacturer
modelnumber
name
propertyfile
title
webpage
HwDeviceRegistration
propertyFile
description
manufacturer
modelNumber
deviceClass
childHwDevice
id
name
version
LocalFile
name
PropertyFile
localFile
type | null | {"directed":true,"nodes":[{"nsPrefix":"","nsURI":"http://sca.jpeojtrs.mil/dpd","name":"dpd","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Author","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ChildHwDevice","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DeviceClass","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DevicePkg","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DevicePkgRef","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DocumentRoot","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"HwDeviceRegistration","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LocalFile","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PropertyFile","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":10,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"company","changeable":true,"lowerBound":0,"iD":false,"id":11,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"webpage","changeable":true,"lowerBound":0,"iD":false,"id":12,"derived":false},{"id":13,"eClass":"EGenericType"},{"id":14,"eClass":"EGenericType"},{"id":15,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"hwDeviceRegistration","changeable":true,"resolveProxies":false,"lowerBound":0,"id":16,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"devicePkgRef","changeable":true,"resolveProxies":false,"lowerBound":0,"id":17,"derived":false},{"id":18,"eClass":"EGenericType"},{"id":19,"eClass":"EGenericType"},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"class","changeable":true,"lowerBound":1,"iD":false,"id":20,"derived":false},{"id":21,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"title","changeable":true,"lowerBound":0,"iD":false,"id":22,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"author","changeable":true,"resolveProxies":false,"lowerBound":1,"id":23,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"description","changeable":true,"lowerBound":0,"iD":false,"id":24,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"hwDeviceRegistration","changeable":true,"resolveProxies":false,"lowerBound":1,"id":25,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"id","changeable":true,"lowerBound":1,"iD":false,"id":26,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":27,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"version","changeable":true,"lowerBound":0,"iD":false,"id":28,"derived":false},{"id":29,"eClass":"EGenericType"},{"id":30,"eClass":"EGenericType"},{"id":31,"eClass":"EGenericType"},{"id":32,"eClass":"EGenericType"},{"id":33,"eClass":"EGenericType"},{"id":34,"eClass":"EGenericType"},{"id":35,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"localFile","changeable":true,"resolveProxies":false,"lowerBound":1,"id":36,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"lowerBound":0,"iD":false,"id":37,"derived":false},{"id":38,"eClass":"EGenericType"},{"id":39,"eClass":"EGenericType"},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"mixed","changeable":true,"lowerBound":0,"iD":false,"id":40,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":true,"unique":true,"name":"xMLNSPrefixMap","changeable":true,"resolveProxies":false,"lowerBound":0,"id":41,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":true,"unique":true,"name":"xSISchemaLocation","changeable":true,"resolveProxies":false,"lowerBound":0,"id":42,"derived":false},{"container":false,"ordered":true,"upperBound":-2,"defaultValue":null,"volatile":true,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":true,"unique":true,"name":"author","changeable":true,"resolveProxies":false,"lowerBound":0,"id":43,"derived":true},{"container":false,"ordered":true,"upperBound":-2,"defaultValue":null,"volatile":true,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":true,"unique":true,"name":"childhwdevice","changeable":true,"resolveProxies":false,"lowerBound":0,"id":44,"derived":true},{"ordered":true,"upperBound":-2,"defaultValue":null,"volatile":true,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":true,"unique":false,"name":"class","changeable":true,"lowerBound":0,"iD":false,"id":45,"derived":true},{"ordered":true,"upperBound":-2,"defaultValue":null,"volatile":true,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":true,"unique":false,"name":"company","changeable":true,"lowerBound":0,"iD":false,"id":46,"derived":true},{"ordered":true,"upperBound":-2,"defaultValue":null,"volatile":true,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":true,"unique":false,"name":"description","changeable":true,"lowerBound":0,"iD":false,"id":47,"derived":true},{"container":false,"ordered":true,"upperBound":-2,"defaultValue":null,"volatile":true,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":true,"unique":true,"name":"deviceclass","changeable":true,"resolveProxies":false,"lowerBound":0,"id":48,"derived":true},{"container":false,"ordered":true,"upperBound":-2,"defaultValue":null,"volatile":true,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":true,"unique":true,"name":"devicepkg","changeable":true,"resolveProxies":false,"lowerBound":0,"id":49,"derived":true},{"container":false,"ordered":true,"upperBound":-2,"defaultValue":null,"volatile":true,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":true,"unique":true,"name":"devicepkgref","changeable":true,"resolveProxies":false,"lowerBound":0,"id":50,"derived":true},{"container":false,"ordered":true,"upperBound":-2,"defaultValue":null,"volatile":true,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":true,"unique":true,"name":"hwdeviceregistration","changeable":true,"resolveProxies":false,"lowerBound":0,"id":51,"derived":true},{"container":false,"ordered":true,"upperBound":-2,"defaultValue":null,"volatile":true,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":true,"unique":true,"name":"localfile","changeable":true,"resolveProxies":false,"lowerBound":0,"id":52,"derived":true},{"ordered":true,"upperBound":-2,"defaultValue":null,"volatile":true,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":true,"unique":false,"name":"manufacturer","changeable":true,"lowerBound":0,"iD":false,"id":53,"derived":true},{"ordered":true,"upperBound":-2,"defaultValue":null,"volatile":true,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":true,"unique":false,"name":"modelnumber","changeable":true,"lowerBound":0,"iD":false,"id":54,"derived":true},{"ordered":true,"upperBound":-2,"defaultValue":null,"volatile":true,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":true,"unique":false,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":55,"derived":true},{"container":false,"ordered":true,"upperBound":-2,"defaultValue":null,"volatile":true,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":true,"unique":true,"name":"propertyfile","changeable":true,"resolveProxies":false,"lowerBound":0,"id":56,"derived":true},{"ordered":true,"upperBound":-2,"defaultValue":null,"volatile":true,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":true,"unique":false,"name":"title","changeable":true,"lowerBound":0,"iD":false,"id":57,"derived":true},{"ordered":true,"upperBound":-2,"defaultValue":null,"volatile":true,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":true,"unique":false,"name":"webpage","changeable":true,"lowerBound":0,"iD":false,"id":58,"derived":true},{"id":59,"eClass":"EGenericType"},{"id":60,"eClass":"EGenericType"},{"id":61,"eClass":"EGenericType"},{"id":62,"eClass":"EGenericType"},{"id":63,"eClass":"EGenericType"},{"id":64,"eClass":"EGenericType"},{"id":65,"eClass":"EGenericType"},{"id":66,"eClass":"EGenericType"},{"id":67,"eClass":"EGenericType"},{"id":68,"eClass":"EGenericType"},{"id":69,"eClass":"EGenericType"},{"id":70,"eClass":"EGenericType"},{"id":71,"eClass":"EGenericType"},{"id":72,"eClass":"EGenericType"},{"id":73,"eClass":"EGenericType"},{"id":74,"eClass":"EGenericType"},{"id":75,"eClass":"EGenericType"},{"id":76,"eClass":"EGenericType"},{"id":77,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"propertyFile","changeable":true,"resolveProxies":false,"lowerBound":0,"id":78,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"description","changeable":true,"lowerBound":1,"iD":false,"id":79,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"manufacturer","changeable":true,"lowerBound":1,"iD":false,"id":80,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"modelNumber","changeable":true,"lowerBound":1,"iD":false,"id":81,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"deviceClass","changeable":true,"resolveProxies":false,"lowerBound":1,"id":82,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"childHwDevice","changeable":true,"resolveProxies":false,"lowerBound":0,"id":83,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"id","changeable":true,"lowerBound":1,"iD":false,"id":84,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":85,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"version","changeable":true,"lowerBound":0,"iD":false,"id":86,"derived":false},{"id":87,"eClass":"EGenericType"},{"id":88,"eClass":"EGenericType"},{"id":89,"eClass":"EGenericType"},{"id":90,"eClass":"EGenericType"},{"id":91,"eClass":"EGenericType"},{"id":92,"eClass":"EGenericType"},{"id":93,"eClass":"EGenericType"},{"id":94,"eClass":"EGenericType"},{"id":95,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":96,"derived":false},{"id":97,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"localFile","changeable":true,"resolveProxies":false,"lowerBound":1,"id":98,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"lowerBound":0,"iD":false,"id":99,"derived":false},{"id":100,"eClass":"EGenericType"},{"id":101,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":0,"target":8},{"source":0,"target":9},{"source":1,"target":0},{"source":1,"target":10},{"source":1,"target":11},{"source":1,"target":12},{"source":10,"target":13},{"source":10,"target":1},{"source":11,"target":14},{"source":11,"target":1},{"source":12,"target":15},{"source":12,"target":1},{"source":2,"target":0},{"source":2,"target":16},{"source":2,"target":17},{"source":16,"target":7},{"source":16,"target":18},{"source":16,"target":2},{"source":18,"target":7},{"source":17,"target":5},{"source":17,"target":19},{"source":17,"target":2},{"source":19,"target":5},{"source":3,"target":0},{"source":3,"target":20},{"source":20,"target":21},{"source":20,"target":3},{"source":4,"target":0},{"source":4,"target":22},{"source":4,"target":23},{"source":4,"target":24},{"source":4,"target":25},{"source":4,"target":26},{"source":4,"target":27},{"source":4,"target":28},{"source":22,"target":29},{"source":22,"target":4},{"source":23,"target":1},{"source":23,"target":30},{"source":23,"target":4},{"source":30,"target":1},{"source":24,"target":31},{"source":24,"target":4},{"source":25,"target":7},{"source":25,"target":32},{"source":25,"target":4},{"source":32,"target":7},{"source":26,"target":33},{"source":26,"target":4},{"source":27,"target":34},{"source":27,"target":4},{"source":28,"target":35},{"source":28,"target":4},{"source":5,"target":0},{"source":5,"target":36},{"source":5,"target":37},{"source":36,"target":8},{"source":36,"target":38},{"source":36,"target":5},{"source":38,"target":8},{"source":37,"target":39},{"source":37,"target":5},{"source":6,"target":0},{"source":6,"target":40},{"source":6,"target":41},{"source":6,"target":42},{"source":6,"target":43},{"source":6,"target":44},{"source":6,"target":45},{"source":6,"target":46},{"source":6,"target":47},{"source":6,"target":48},{"source":6,"target":49},{"source":6,"target":50},{"source":6,"target":51},{"source":6,"target":52},{"source":6,"target":53},{"source":6,"target":54},{"source":6,"target":55},{"source":6,"target":56},{"source":6,"target":57},{"source":6,"target":58},{"source":40,"target":59},{"source":40,"target":6},{"source":41,"target":60},{"source":41,"target":6},{"source":42,"target":61},{"source":42,"target":6},{"source":43,"target":1},{"source":43,"target":62},{"source":43,"target":6},{"source":62,"target":1},{"source":44,"target":2},{"source":44,"target":63},{"source":44,"target":6},{"source":63,"target":2},{"source":45,"target":64},{"source":45,"target":6},{"source":46,"target":65},{"source":46,"target":6},{"source":47,"target":66},{"source":47,"target":6},{"source":48,"target":3},{"source":48,"target":67},{"source":48,"target":6},{"source":67,"target":3},{"source":49,"target":4},{"source":49,"target":68},{"source":49,"target":6},{"source":68,"target":4},{"source":50,"target":5},{"source":50,"target":69},{"source":50,"target":6},{"source":69,"target":5},{"source":51,"target":7},{"source":51,"target":70},{"source":51,"target":6},{"source":70,"target":7},{"source":52,"target":8},{"source":52,"target":71},{"source":52,"target":6},{"source":71,"target":8},{"source":53,"target":72},{"source":53,"target":6},{"source":54,"target":73},{"source":54,"target":6},{"source":55,"target":74},{"source":55,"target":6},{"source":56,"target":9},{"source":56,"target":75},{"source":56,"target":6},{"source":75,"target":9},{"source":57,"target":76},{"source":57,"target":6},{"source":58,"target":77},{"source":58,"target":6},{"source":7,"target":0},{"source":7,"target":78},{"source":7,"target":79},{"source":7,"target":80},{"source":7,"target":81},{"source":7,"target":82},{"source":7,"target":83},{"source":7,"target":84},{"source":7,"target":85},{"source":7,"target":86},{"source":78,"target":9},{"source":78,"target":87},{"source":78,"target":7},{"source":87,"target":9},{"source":79,"target":88},{"source":79,"target":7},{"source":80,"target":89},{"source":80,"target":7},{"source":81,"target":90},{"source":81,"target":7},{"source":82,"target":3},{"source":82,"target":91},{"source":82,"target":7},{"source":91,"target":3},{"source":83,"target":2},{"source":83,"target":92},{"source":83,"target":7},{"source":92,"target":2},{"source":84,"target":93},{"source":84,"target":7},{"source":85,"target":94},{"source":85,"target":7},{"source":86,"target":95},{"source":86,"target":7},{"source":8,"target":0},{"source":8,"target":96},{"source":96,"target":97},{"source":96,"target":8},{"source":9,"target":0},{"source":9,"target":98},{"source":9,"target":99},{"source":98,"target":8},{"source":98,"target":100},{"source":98,"target":9},{"source":100,"target":8},{"source":99,"target":101},{"source":99,"target":9}],"multigraph":true} |
false | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0"
xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="analysis"
nsURI="http://www.eclipse.org/emf/2011/Henshin/Analysis" nsPrefix="analysis">
<eClassifiers xsi:type="ecore:EClass" name="CriticalPair">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="type" eType="#//CriticalPairType"
defaultValueLiteral="0"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="rule1" eType="ecore:EClass http://www.eclipse.org/emf/2011/Henshin#//Rule"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="rule2" eType="ecore:EClass http://www.eclipse.org/emf/2011/Henshin#//Rule"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="sourceUnit" eType="ecore:EClass http://www.eclipse.org/emf/2011/Henshin#//Unit"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="targetUnit" eType="ecore:EClass http://www.eclipse.org/emf/2011/Henshin#//Unit"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="overlapping" eType="ecore:EClass http://www.eclipse.org/emf/2011/Henshin#//Graph"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="mappingsOverlappingToRule1"
upperBound="-1" eType="ecore:EClass http://www.eclipse.org/emf/2011/Henshin#//Mapping"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="mappingsOverlappingToRule2"
upperBound="-1" eType="ecore:EClass http://www.eclipse.org/emf/2011/Henshin#//Mapping"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="mappingsRule1ToRule2" upperBound="-1"
eType="ecore:EClass http://www.eclipse.org/emf/2011/Henshin#//Mapping" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="criticalObjects" upperBound="-1"
eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EObject"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="CausalityType">
<eLiterals name="Initialization"/>
<eLiterals name="Conflict" value="1"/>
<eLiterals name="DependencyAlongControlflow" value="2"/>
<eLiterals name="DependencyAgainstControlflow" value="3"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="CriticalPairType">
<eLiterals name="DELETE_USE_CONFLICT" literal="delete-use-conflict"/>
<eLiterals name="DELETE_NEED_CONFLICT" value="1" literal="delete-need-conflict"/>
<eLiterals name="PRODUCE_FORBID_CONFLICT" value="2" literal="produce-forbid-conflict"/>
<eLiterals name="PRODUCE_EDGE_DELTE_NODE_CONFLICT" value="3" literal="produceEdge-deleteNode-conflict"/>
<eLiterals name="CHANGE_USE_ATTR_CONFLICT" value="4" literal="change-use-attr-conflict"/>
<eLiterals name="CHANGE_NEED_ATTR_CONFLICT" value="5" literal="change-need-attr-conflict"/>
<eLiterals name="CHANGE_FORBID_ATTR_CONFLICT" value="6" literal="change-forbid-attr-conflict"/>
<eLiterals name="DELETE_FORBID_DEPENDENCY" value="7" literal="produce-forbid-dependency"/>
<eLiterals name="PRODUCE_USE_DEPENDENCY" value="8" literal="produce-use-dependency"/>
<eLiterals name="PRODUCE_DELETE_DEPENDENCY" value="9" literal="produce-delete-dependency"/>
<eLiterals name="PRODUCE_NEED_DEPENDENCY" value="10" literal="produce-need-dependency"/>
<eLiterals name="CHANGE_USE_ATTR_DEPENDENCY" value="11" literal="change-use-attr-dependency"/>
<eLiterals name="CHANGE_FORBID_ATTR_DEPENDENCY" value="12" literal="change-forbid-attr-dependency"/>
</eClassifiers>
</ecore:EPackage>
| github:ecore:/data/de-tu-berlin-tfs/Henshin-Editor/de.tub.tfs.henshin.analysis/model/analysis.ecore | ecore | analysis
CriticalPair
type
0
rule1
rule2
sourceUnit
targetUnit
overlapping
mappingsOverlappingToRule1
mappingsOverlappingToRule2
mappingsRule1ToRule2
criticalObjects
CausalityType
Initialization
Initialization
Conflict
Conflict
DependencyAlongControlflow
DependencyAlongControlflow
DependencyAgainstControlflow
DependencyAgainstControlflow
CriticalPairType
DELETE_USE_CONFLICT
delete-use-conflict
DELETE_NEED_CONFLICT
delete-need-conflict
PRODUCE_FORBID_CONFLICT
produce-forbid-conflict
PRODUCE_EDGE_DELTE_NODE_CONFLICT
produceEdge-deleteNode-conflict
CHANGE_USE_ATTR_CONFLICT
change-use-attr-conflict
CHANGE_NEED_ATTR_CONFLICT
change-need-attr-conflict
CHANGE_FORBID_ATTR_CONFLICT
change-forbid-attr-conflict
DELETE_FORBID_DEPENDENCY
produce-forbid-dependency
PRODUCE_USE_DEPENDENCY
produce-use-dependency
PRODUCE_DELETE_DEPENDENCY
produce-delete-dependency
PRODUCE_NEED_DEPENDENCY
produce-need-dependency
CHANGE_USE_ATTR_DEPENDENCY
change-use-attr-dependency
CHANGE_FORBID_ATTR_DEPENDENCY
change-forbid-attr-dependency | null | {"directed":true,"nodes":[{"nsPrefix":"analysis","nsURI":"http://www.eclipse.org/emf/2011/Henshin/Analysis","name":"analysis","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CriticalPair","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"CausalityType","instanceClass":null,"id":2,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"CriticalPairType","instanceClass":null,"id":3,"serializable":true,"eClass":"EEnum"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"0","unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"lowerBound":0,"iD":false,"id":4,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"rule1","changeable":true,"resolveProxies":true,"lowerBound":0,"id":5,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"rule2","changeable":true,"resolveProxies":true,"lowerBound":0,"id":6,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"sourceUnit","changeable":true,"resolveProxies":true,"lowerBound":0,"id":7,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"targetUnit","changeable":true,"resolveProxies":true,"lowerBound":0,"id":8,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"overlapping","changeable":true,"resolveProxies":true,"lowerBound":0,"id":9,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"mappingsOverlappingToRule1","changeable":true,"resolveProxies":true,"lowerBound":0,"id":10,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"mappingsOverlappingToRule2","changeable":true,"resolveProxies":true,"lowerBound":0,"id":11,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"mappingsRule1ToRule2","changeable":true,"resolveProxies":true,"lowerBound":0,"id":12,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"criticalObjects","changeable":true,"resolveProxies":true,"lowerBound":0,"id":13,"derived":false},{"id":14,"eClass":"EGenericType"},{"id":15,"eClass":"EGenericType"},{"id":16,"eClass":"EGenericType"},{"id":17,"eClass":"EGenericType"},{"id":18,"eClass":"EGenericType"},{"id":19,"eClass":"EGenericType"},{"id":20,"eClass":"EGenericType"},{"id":21,"eClass":"EGenericType"},{"id":22,"eClass":"EGenericType"},{"id":23,"eClass":"EGenericType"},{"name":"Initialization","id":24,"value":0,"literal":"Initialization","eClass":"EEnumLiteral"},{"name":"Conflict","id":25,"value":1,"literal":"Conflict","eClass":"EEnumLiteral"},{"name":"DependencyAlongControlflow","id":26,"value":2,"literal":"DependencyAlongControlflow","eClass":"EEnumLiteral"},{"name":"DependencyAgainstControlflow","id":27,"value":3,"literal":"DependencyAgainstControlflow","eClass":"EEnumLiteral"},{"name":"DELETE_USE_CONFLICT","id":28,"value":0,"literal":"delete-use-conflict","eClass":"EEnumLiteral"},{"name":"DELETE_NEED_CONFLICT","id":29,"value":1,"literal":"delete-need-conflict","eClass":"EEnumLiteral"},{"name":"PRODUCE_FORBID_CONFLICT","id":30,"value":2,"literal":"produce-forbid-conflict","eClass":"EEnumLiteral"},{"name":"PRODUCE_EDGE_DELTE_NODE_CONFLICT","id":31,"value":3,"literal":"produceEdge-deleteNode-conflict","eClass":"EEnumLiteral"},{"name":"CHANGE_USE_ATTR_CONFLICT","id":32,"value":4,"literal":"change-use-attr-conflict","eClass":"EEnumLiteral"},{"name":"CHANGE_NEED_ATTR_CONFLICT","id":33,"value":5,"literal":"change-need-attr-conflict","eClass":"EEnumLiteral"},{"name":"CHANGE_FORBID_ATTR_CONFLICT","id":34,"value":6,"literal":"change-forbid-attr-conflict","eClass":"EEnumLiteral"},{"name":"DELETE_FORBID_DEPENDENCY","id":35,"value":7,"literal":"produce-forbid-dependency","eClass":"EEnumLiteral"},{"name":"PRODUCE_USE_DEPENDENCY","id":36,"value":8,"literal":"produce-use-dependency","eClass":"EEnumLiteral"},{"name":"PRODUCE_DELETE_DEPENDENCY","id":37,"value":9,"literal":"produce-delete-dependency","eClass":"EEnumLiteral"},{"name":"PRODUCE_NEED_DEPENDENCY","id":38,"value":10,"literal":"produce-need-dependency","eClass":"EEnumLiteral"},{"name":"CHANGE_USE_ATTR_DEPENDENCY","id":39,"value":11,"literal":"change-use-attr-dependency","eClass":"EEnumLiteral"},{"name":"CHANGE_FORBID_ATTR_DEPENDENCY","id":40,"value":12,"literal":"change-forbid-attr-dependency","eClass":"EEnumLiteral"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":1,"target":0},{"source":1,"target":4},{"source":1,"target":5},{"source":1,"target":6},{"source":1,"target":7},{"source":1,"target":8},{"source":1,"target":9},{"source":1,"target":10},{"source":1,"target":11},{"source":1,"target":12},{"source":1,"target":13},{"source":4,"target":3},{"source":4,"target":14},{"source":4,"target":1},{"source":14,"target":3},{"source":5,"target":15},{"source":5,"target":1},{"source":6,"target":16},{"source":6,"target":1},{"source":7,"target":17},{"source":7,"target":1},{"source":8,"target":18},{"source":8,"target":1},{"source":9,"target":19},{"source":9,"target":1},{"source":10,"target":20},{"source":10,"target":1},{"source":11,"target":21},{"source":11,"target":1},{"source":12,"target":22},{"source":12,"target":1},{"source":13,"target":23},{"source":13,"target":1},{"source":2,"target":0},{"source":2,"target":24},{"source":2,"target":25},{"source":2,"target":26},{"source":2,"target":27},{"source":24,"target":2},{"source":25,"target":2},{"source":26,"target":2},{"source":27,"target":2},{"source":3,"target":0},{"source":3,"target":28},{"source":3,"target":29},{"source":3,"target":30},{"source":3,"target":31},{"source":3,"target":32},{"source":3,"target":33},{"source":3,"target":34},{"source":3,"target":35},{"source":3,"target":36},{"source":3,"target":37},{"source":3,"target":38},{"source":3,"target":39},{"source":3,"target":40},{"source":28,"target":3},{"source":29,"target":3},{"source":30,"target":3},{"source":31,"target":3},{"source":32,"target":3},{"source":33,"target":3},{"source":34,"target":3},{"source":35,"target":3},{"source":36,"target":3},{"source":37,"target":3},{"source":38,"target":3},{"source":39,"target":3},{"source":40,"target":3}],"multigraph":true} |
false | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0"
xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="policy"
nsURI="http://schemas.xmlsoap.org/ws/2004/09/policy" nsPrefix="policy">
<eClassifiers xsi:type="ecore:EClass" name="AppliesToType">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="AppliesTo_._type"/>
<details key="kind" value="elementOnly"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="any" unique="false" lowerBound="1"
upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFeatureMapEntry">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="elementWildcard"/>
<details key="wildcards" value="##any"/>
<details key="name" value=":0"/>
<details key="processing" value="lax"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="anyAttribute" unique="false"
upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFeatureMapEntry">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attributeWildcard"/>
<details key="wildcards" value="##any"/>
<details key="name" value=":1"/>
<details key="processing" value="lax"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="DocumentRoot">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value=""/>
<details key="kind" value="mixed"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="mixed" unique="false" upperBound="-1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFeatureMapEntry">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="elementWildcard"/>
<details key="name" value=":mixed"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="xMLNSPrefixMap" upperBound="-1"
eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EStringToStringMapEntry"
transient="true" containment="true" resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="xmlns:prefix"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="xSISchemaLocation" upperBound="-1"
eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EStringToStringMapEntry"
transient="true" containment="true" resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="xsi:schemaLocation"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="all" upperBound="-2" eType="#//OperatorContentType"
volatile="true" transient="true" derived="true" containment="true" resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="All"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="appliesTo" upperBound="-2"
eType="#//AppliesToType" volatile="true" transient="true" derived="true" containment="true"
resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="AppliesTo"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="exactlyOne" upperBound="-2"
eType="#//OperatorContentType" volatile="true" transient="true" derived="true"
containment="true" resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="ExactlyOne"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="policy" upperBound="-2"
eType="#//PolicyType" volatile="true" transient="true" derived="true" containment="true"
resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="Policy"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="policyAttachment" upperBound="-2"
eType="#//PolicyAttachmentType" volatile="true" transient="true" derived="true"
containment="true" resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="PolicyAttachment"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="policyReference" upperBound="-2"
eType="#//PolicyReferenceType" volatile="true" transient="true" derived="true"
containment="true" resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="PolicyReference"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="optional" unique="false"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//Boolean"
defaultValueLiteral="false" unsettable="true">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="Optional"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="policyURIs" unique="false"
eType="#//PolicyURIsType">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="PolicyURIs"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="OperatorContentType">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="OperatorContentType"/>
<details key="kind" value="elementOnly"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="group" unique="false" upperBound="-1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFeatureMapEntry">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="group"/>
<details key="name" value="group:0"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="policy" upperBound="-1"
eType="#//PolicyType" volatile="true" transient="true" derived="true" containment="true"
resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="Policy"/>
<details key="namespace" value="##targetNamespace"/>
<details key="group" value="#group:0"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="all" upperBound="-1" eType="#//OperatorContentType"
volatile="true" transient="true" derived="true" containment="true" resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="All"/>
<details key="namespace" value="##targetNamespace"/>
<details key="group" value="#group:0"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="exactlyOne" upperBound="-1"
eType="#//OperatorContentType" volatile="true" transient="true" derived="true"
containment="true" resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="ExactlyOne"/>
<details key="namespace" value="##targetNamespace"/>
<details key="group" value="#group:0"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="policyReference" upperBound="-1"
eType="#//PolicyReferenceType" volatile="true" transient="true" derived="true"
containment="true" resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="PolicyReference"/>
<details key="namespace" value="##targetNamespace"/>
<details key="group" value="#group:0"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="any" unique="false" upperBound="-1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFeatureMapEntry"
volatile="true" transient="true" derived="true">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="elementWildcard"/>
<details key="wildcards" value="##other"/>
<details key="name" value=":5"/>
<details key="processing" value="lax"/>
<details key="group" value="#group:0"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="PolicyAttachmentType">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="PolicyAttachment_._type"/>
<details key="kind" value="elementOnly"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="appliesTo" lowerBound="1"
eType="#//AppliesToType" containment="true" resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="AppliesTo"/>
<details key="namespace" value="##targetNamespace"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="group" unique="false" upperBound="-1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFeatureMapEntry">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="group"/>
<details key="name" value="group:1"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="policy" upperBound="-1"
eType="#//PolicyType" volatile="true" transient="true" derived="true" containment="true"
resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="Policy"/>
<details key="namespace" value="##targetNamespace"/>
<details key="group" value="#group:1"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="policyReference" upperBound="-1"
eType="#//PolicyReferenceType" volatile="true" transient="true" derived="true"
containment="true" resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="PolicyReference"/>
<details key="namespace" value="##targetNamespace"/>
<details key="group" value="#group:1"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="any" unique="false" upperBound="-1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFeatureMapEntry">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="elementWildcard"/>
<details key="wildcards" value="##other"/>
<details key="name" value=":4"/>
<details key="processing" value="lax"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="anyAttribute" unique="false"
upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFeatureMapEntry">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attributeWildcard"/>
<details key="wildcards" value="##any"/>
<details key="name" value=":5"/>
<details key="processing" value="lax"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="PolicyReferenceType">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="PolicyReference_._type"/>
<details key="kind" value="empty"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="digest" unique="false"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//Base64Binary">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="Digest"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="digestAlgorithm" unique="false"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//AnyURI" defaultValueLiteral="http://schemas.xmlsoap.org/ws/2004/09/policy/Sha1Exc"
unsettable="true">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="DigestAlgorithm"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="uRI" unique="false" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//AnyURI">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="URI"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="anyAttribute" unique="false"
upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFeatureMapEntry">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attributeWildcard"/>
<details key="wildcards" value="##any"/>
<details key="name" value=":3"/>
<details key="processing" value="lax"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="PolicyType" eSuperTypes="#//OperatorContentType">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="Policy_._type"/>
<details key="kind" value="elementOnly"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="id" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//ID"
iD="true">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="
This global attribute supports annotating arbitrary elements with an ID.
 "/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="Id"/>
<details key="namespace" value="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//AnyURI">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="Name"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="anyAttribute" unique="false"
upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFeatureMapEntry">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attributeWildcard"/>
<details key="wildcards" value="##any"/>
<details key="name" value=":3"/>
<details key="processing" value="lax"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="PolicyURIsType" instanceClassName="java.util.List">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="PolicyURIs_._type"/>
<details key="itemType" value="http://www.eclipse.org/emf/2003/XMLType#anyURI"/>
</eAnnotations>
</eClassifiers>
</ecore:EPackage>
| github:ecore:/data/diverse-project/kermeta/sca_projects/org.kermeta.sca/model/policy.ecore | ecore | policy
AppliesToType
any
anyAttribute
DocumentRoot
mixed
xMLNSPrefixMap
xSISchemaLocation
all
appliesTo
exactlyOne
policy
policyAttachment
policyReference
optional
false
policyURIs
OperatorContentType
group
policy
all
exactlyOne
policyReference
any
PolicyAttachmentType
appliesTo
group
policy
policyReference
any
anyAttribute
PolicyReferenceType
digest
digestAlgorithm
http://schemas.xmlsoap.org/ws/2004/09/policy/Sha1Exc
uRI
anyAttribute
PolicyType
id
name
anyAttribute
PolicyURIsType
java.util.List
java.util.List | null | {"directed":true,"nodes":[{"nsPrefix":"policy","nsURI":"http://schemas.xmlsoap.org/ws/2004/09/policy","name":"policy","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AppliesToType","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DocumentRoot","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OperatorContentType","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PolicyAttachmentType","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PolicyReferenceType","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PolicyType","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":"java.util.List","defaultValue":null,"instanceClassName":"java.util.List","name":"PolicyURIsType","instanceClass":"java.util.List","id":7,"serializable":true,"eClass":"EDataType"},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"any","changeable":true,"lowerBound":1,"iD":false,"id":8,"derived":false},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"anyAttribute","changeable":true,"lowerBound":0,"iD":false,"id":9,"derived":false},{"id":10,"eClass":"EGenericType"},{"id":11,"eClass":"EGenericType"},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"mixed","changeable":true,"lowerBound":0,"iD":false,"id":12,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":true,"unique":true,"name":"xMLNSPrefixMap","changeable":true,"resolveProxies":false,"lowerBound":0,"id":13,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":true,"unique":true,"name":"xSISchemaLocation","changeable":true,"resolveProxies":false,"lowerBound":0,"id":14,"derived":false},{"container":false,"ordered":true,"upperBound":-2,"defaultValue":null,"volatile":true,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":true,"unique":true,"name":"all","changeable":true,"resolveProxies":false,"lowerBound":0,"id":15,"derived":true},{"container":false,"ordered":true,"upperBound":-2,"defaultValue":null,"volatile":true,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":true,"unique":true,"name":"appliesTo","changeable":true,"resolveProxies":false,"lowerBound":0,"id":16,"derived":true},{"container":false,"ordered":true,"upperBound":-2,"defaultValue":null,"volatile":true,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":true,"unique":true,"name":"exactlyOne","changeable":true,"resolveProxies":false,"lowerBound":0,"id":17,"derived":true},{"container":false,"ordered":true,"upperBound":-2,"defaultValue":null,"volatile":true,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":true,"unique":true,"name":"policy","changeable":true,"resolveProxies":false,"lowerBound":0,"id":18,"derived":true},{"container":false,"ordered":true,"upperBound":-2,"defaultValue":null,"volatile":true,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":true,"unique":true,"name":"policyAttachment","changeable":true,"resolveProxies":false,"lowerBound":0,"id":19,"derived":true},{"container":false,"ordered":true,"upperBound":-2,"defaultValue":null,"volatile":true,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":true,"unique":true,"name":"policyReference","changeable":true,"resolveProxies":false,"lowerBound":0,"id":20,"derived":true},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"false","unsettable":true,"transient":false,"unique":false,"name":"optional","changeable":true,"lowerBound":0,"iD":false,"id":21,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"policyURIs","changeable":true,"lowerBound":0,"iD":false,"id":22,"derived":false},{"id":23,"eClass":"EGenericType"},{"id":24,"eClass":"EGenericType"},{"id":25,"eClass":"EGenericType"},{"id":26,"eClass":"EGenericType"},{"id":27,"eClass":"EGenericType"},{"id":28,"eClass":"EGenericType"},{"id":29,"eClass":"EGenericType"},{"id":30,"eClass":"EGenericType"},{"id":31,"eClass":"EGenericType"},{"id":32,"eClass":"EGenericType"},{"id":33,"eClass":"EGenericType"},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"group","changeable":true,"lowerBound":0,"iD":false,"id":34,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":true,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":true,"unique":true,"name":"policy","changeable":true,"resolveProxies":false,"lowerBound":0,"id":35,"derived":true},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":true,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":true,"unique":true,"name":"all","changeable":true,"resolveProxies":false,"lowerBound":0,"id":36,"derived":true},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":true,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":true,"unique":true,"name":"exactlyOne","changeable":true,"resolveProxies":false,"lowerBound":0,"id":37,"derived":true},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":true,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":true,"unique":true,"name":"policyReference","changeable":true,"resolveProxies":false,"lowerBound":0,"id":38,"derived":true},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":true,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":true,"unique":false,"name":"any","changeable":true,"lowerBound":0,"iD":false,"id":39,"derived":true},{"id":40,"eClass":"EGenericType"},{"id":41,"eClass":"EGenericType"},{"id":42,"eClass":"EGenericType"},{"id":43,"eClass":"EGenericType"},{"id":44,"eClass":"EGenericType"},{"id":45,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"appliesTo","changeable":true,"resolveProxies":false,"lowerBound":1,"id":46,"derived":false},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"group","changeable":true,"lowerBound":0,"iD":false,"id":47,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":true,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":true,"unique":true,"name":"policy","changeable":true,"resolveProxies":false,"lowerBound":0,"id":48,"derived":true},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":true,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":true,"unique":true,"name":"policyReference","changeable":true,"resolveProxies":false,"lowerBound":0,"id":49,"derived":true},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"any","changeable":true,"lowerBound":0,"iD":false,"id":50,"derived":false},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"anyAttribute","changeable":true,"lowerBound":0,"iD":false,"id":51,"derived":false},{"id":52,"eClass":"EGenericType"},{"id":53,"eClass":"EGenericType"},{"id":54,"eClass":"EGenericType"},{"id":55,"eClass":"EGenericType"},{"id":56,"eClass":"EGenericType"},{"id":57,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"digest","changeable":true,"lowerBound":0,"iD":false,"id":58,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":"http://schemas.xmlsoap.org/ws/2004/09/policy/Sha1Exc","volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"http://schemas.xmlsoap.org/ws/2004/09/policy/Sha1Exc","unsettable":true,"transient":false,"unique":false,"name":"digestAlgorithm","changeable":true,"lowerBound":0,"iD":false,"id":59,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"uRI","changeable":true,"lowerBound":1,"iD":false,"id":60,"derived":false},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"anyAttribute","changeable":true,"lowerBound":0,"iD":false,"id":61,"derived":false},{"id":62,"eClass":"EGenericType"},{"id":63,"eClass":"EGenericType"},{"id":64,"eClass":"EGenericType"},{"id":65,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"id","changeable":true,"lowerBound":0,"iD":true,"id":66,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":67,"derived":false},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"anyAttribute","changeable":true,"lowerBound":0,"iD":false,"id":68,"derived":false},{"id":69,"eClass":"EGenericType"},{"id":70,"eClass":"EGenericType"},{"id":71,"eClass":"EGenericType"},{"id":72,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":1,"target":0},{"source":1,"target":8},{"source":1,"target":9},{"source":8,"target":10},{"source":8,"target":1},{"source":9,"target":11},{"source":9,"target":1},{"source":2,"target":0},{"source":2,"target":12},{"source":2,"target":13},{"source":2,"target":14},{"source":2,"target":15},{"source":2,"target":16},{"source":2,"target":17},{"source":2,"target":18},{"source":2,"target":19},{"source":2,"target":20},{"source":2,"target":21},{"source":2,"target":22},{"source":12,"target":23},{"source":12,"target":2},{"source":13,"target":24},{"source":13,"target":2},{"source":14,"target":25},{"source":14,"target":2},{"source":15,"target":3},{"source":15,"target":26},{"source":15,"target":2},{"source":26,"target":3},{"source":16,"target":1},{"source":16,"target":27},{"source":16,"target":2},{"source":27,"target":1},{"source":17,"target":3},{"source":17,"target":28},{"source":17,"target":2},{"source":28,"target":3},{"source":18,"target":6},{"source":18,"target":29},{"source":18,"target":2},{"source":29,"target":6},{"source":19,"target":4},{"source":19,"target":30},{"source":19,"target":2},{"source":30,"target":4},{"source":20,"target":5},{"source":20,"target":31},{"source":20,"target":2},{"source":31,"target":5},{"source":21,"target":32},{"source":21,"target":2},{"source":22,"target":7},{"source":22,"target":33},{"source":22,"target":2},{"source":33,"target":7},{"source":3,"target":0},{"source":3,"target":34},{"source":3,"target":35},{"source":3,"target":36},{"source":3,"target":37},{"source":3,"target":38},{"source":3,"target":39},{"source":34,"target":40},{"source":34,"target":3},{"source":35,"target":6},{"source":35,"target":41},{"source":35,"target":3},{"source":41,"target":6},{"source":36,"target":3},{"source":36,"target":42},{"source":36,"target":3},{"source":42,"target":3},{"source":37,"target":3},{"source":37,"target":43},{"source":37,"target":3},{"source":43,"target":3},{"source":38,"target":5},{"source":38,"target":44},{"source":38,"target":3},{"source":44,"target":5},{"source":39,"target":45},{"source":39,"target":3},{"source":4,"target":0},{"source":4,"target":46},{"source":4,"target":47},{"source":4,"target":48},{"source":4,"target":49},{"source":4,"target":50},{"source":4,"target":51},{"source":46,"target":1},{"source":46,"target":52},{"source":46,"target":4},{"source":52,"target":1},{"source":47,"target":53},{"source":47,"target":4},{"source":48,"target":6},{"source":48,"target":54},{"source":48,"target":4},{"source":54,"target":6},{"source":49,"target":5},{"source":49,"target":55},{"source":49,"target":4},{"source":55,"target":5},{"source":50,"target":56},{"source":50,"target":4},{"source":51,"target":57},{"source":51,"target":4},{"source":5,"target":0},{"source":5,"target":58},{"source":5,"target":59},{"source":5,"target":60},{"source":5,"target":61},{"source":58,"target":62},{"source":58,"target":5},{"source":59,"target":63},{"source":59,"target":5},{"source":60,"target":64},{"source":60,"target":5},{"source":61,"target":65},{"source":61,"target":5},{"source":6,"target":0},{"source":6,"target":3},{"source":6,"target":66},{"source":6,"target":67},{"source":6,"target":68},{"source":6,"target":69},{"source":66,"target":70},{"source":66,"target":6},{"source":67,"target":71},{"source":67,"target":6},{"source":68,"target":72},{"source":68,"target":6},{"source":69,"target":3},{"source":7,"target":0}],"multigraph":true} |
true | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0"
xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="taskmodel"
nsURI="http://kr.re.etri.tpl/taskmodel" nsPrefix="tpl">
<eClassifiers xsi:type="ecore:EEnum" name="LineStyle">
<eLiterals name="LINE_SOLID" value="1"/>
<eLiterals name="LINE_DASH" value="2"/>
<eLiterals name="LINE_DOT" value="3"/>
<eLiterals name="LINE_DASHDOT" value="4"/>
<eLiterals name="LINE_DASHDOTDOT" value="5"/>
<eLiterals name="LINE_CUSTOM" value="6"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="LineEndPoint">
<eLiterals name="NONE"/>
<eLiterals name="OPENED_ARROW" value="1"/>
<eLiterals name="OPENED_TRIANGLE" value="2" literal=""/>
<eLiterals name="OPENED_SQUARE" value="3"/>
<eLiterals name="OPENED_CIRCLE" value="4"/>
<eLiterals name="CLOSED_TRIANGLE" value="5"/>
<eLiterals name="CLOSED_SQUARE" value="6"/>
<eLiterals name="CLOSED_CIRCLE" value="7"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="RelationShip">
<eLiterals name="Transition" literal="Transition"/>
<eLiterals name="TaskCall" value="1"/>
<eLiterals name="ActionCall" value="2"/>
<eLiterals name="Include" value="3"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="StateAttribute">
<eLiterals name="normal" literal=""/>
<eLiterals name="initial" value="1"/>
<eLiterals name="target" value="2"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="StateActionType">
<eLiterals name="Entry" literal="entry"/>
<eLiterals name="Stay" value="1" literal="stay"/>
<eLiterals name="Exit" value="2" literal="exit"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="Direction">
<eLiterals name="in" literal="in"/>
<eLiterals name="out" value="1"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="FloatingLiteral">
<eLiterals name="stateTime"/>
<eLiterals name="taskTime" value="1"/>
<eLiterals name="RealFloatLiteral" value="2"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="BooleanLiteral">
<eLiterals name="false"/>
<eLiterals name="true" value="1"/>
<eLiterals name="isSubTaskFinal" value="2"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="ReferAttribute">
<eLiterals name="normal"/>
<eLiterals name="external" value="1"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="StructType">
<eLiterals name="construct"/>
<eLiterals name="run" value="1"/>
<eLiterals name="destruct" value="2"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="JoinType">
<eLiterals name="andjoin" literal="andjoin"/>
<eLiterals name="orjoin" value="1" literal="orjoin"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="ConnectorType">
<eLiterals name="conexer"/>
<eLiterals name="seqexer" value="1"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="Point" instanceClassName="org.eclipse.draw2d.geometry.Point"/>
<eClassifiers xsi:type="ecore:EClass" name="ItemElement">
<eOperations name="isIncluded" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="parent" eType="#//ItemElement"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
derived="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="description" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
derived="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="visible" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean" defaultValueLiteral="true"
derived="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="subDiagram" eType="#//SubDiagram"
derived="true" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="references" upperBound="-1"
eType="#//ReferElement" derived="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="itemState" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ShapeElement" eSuperTypes="#//ItemElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="x" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"
defaultValueLiteral="5" derived="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="y" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"
defaultValueLiteral="5" derived="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="width" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"
defaultValueLiteral="100" derived="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="height" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt" defaultValueLiteral="70"
derived="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="collapsed" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean" derived="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="x2" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"
defaultValueLiteral="0"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="y2" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"
defaultValueLiteral="5"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="width2" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt" defaultValueLiteral="100"
derived="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="height2" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt" defaultValueLiteral="70"
derived="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="LinkedElement" eSuperTypes="#//ShapeElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="sourceConnections" upperBound="-1"
eType="#//ConnectionElement" derived="true" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="targetConnections" upperBound="-1"
eType="#//ConnectionElement" derived="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="LineElement" eSuperTypes="#//ItemElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="lineStyle" lowerBound="1"
eType="#//LineStyle" defaultValueLiteral="1" derived="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="sourceEndPoint" lowerBound="1"
eType="#//LineEndPoint" defaultValueLiteral="" derived="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="targetEndPoint" lowerBound="1"
eType="#//LineEndPoint" derived="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="bendPoints" upperBound="-1"
eType="#//Point" defaultValueLiteral="" derived="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ConnectionElement" eSuperTypes="#//LineElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="source" eType="#//LinkedElement"
derived="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="target" eType="#//LinkedElement"
derived="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="source2" eType="#//LinkedElement"
derived="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="target2" eType="#//LinkedElement"
derived="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="relationship" lowerBound="1"
eType="#//RelationShip" defaultValueLiteral="0" derived="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="condition" upperBound="-1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" derived="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="WorkerElement" eSuperTypes="#//ItemElement #//BlockElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="initialTask" eType="#//ItemElement"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="items" upperBound="-1"
eType="#//ItemElement" derived="true" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="initialize" eType="#//StructBlockElement"
derived="true" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="finalize" eType="#//StructBlockElement"
derived="true" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="run" eType="#//StructBlockElement"
derived="true" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="BlockElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="statements" upperBound="-1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" derived="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="TaskElement" eSuperTypes="#//ItemElement #//BlockElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="params" upperBound="-1"
eType="#//Parameter" derived="true" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="states" upperBound="-1"
eType="#//StateElement" derived="true" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="initialState" eType="#//StateElement"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="construct" eType="#//StructBlockElement"
derived="true" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="destruct" eType="#//StructBlockElement"
derived="true" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="bifurcates" upperBound="-1"
eType="#//ExpandTransElement" derived="true" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="StateElement" eSuperTypes="#//ItemElement #//BlockElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="attribute" eType="#//StateAttribute"
defaultValueLiteral=""/>
<eStructuralFeatures xsi:type="ecore:EReference" name="entry" eType="#//StateAction"
derived="true" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="stay" lowerBound="1" eType="#//StateAction"
derived="true" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="exit" eType="#//StateAction"
derived="true" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="bifurcates" upperBound="-1"
eType="#//ExpandTransElement" derived="true" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ActionElement" eSuperTypes="#//ItemElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="params" upperBound="-1"
eType="#//Parameter" derived="true" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="StateAction" eSuperTypes="#//ItemElement #//BlockElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="stateActionType" eType="#//StateActionType"
defaultValueLiteral=""/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Symbol" eSuperTypes="#//ItemElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="direction" eType="#//Direction"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="type" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
derived="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Constant" eSuperTypes="#//ItemElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="type" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="initValue" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
derived="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Function" eSuperTypes="#//ItemElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="type" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="params" upperBound="-1"
eType="#//Parameter" derived="true" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ModelElement" eSuperTypes="#//ItemElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="symbols" upperBound="-1"
eType="#//Symbol" derived="true" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="constants" upperBound="-1"
eType="#//Constant" derived="true" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="functions" upperBound="-1"
eType="#//Function" derived="true" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="models" upperBound="-1"
eType="#//ModelElement" derived="true" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ModelDiagram" eSuperTypes="#//ItemElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="items" upperBound="-1"
eType="#//ItemElement" derived="true" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="includeItems" upperBound="-1"
eType="#//IncludedElement" derived="true" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="script" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="IncludedElement" eSuperTypes="#//ItemElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="includePath" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="items" upperBound="-1"
eType="#//ItemElement" derived="true" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Parameter" eSuperTypes="#//ItemElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="type" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
derived="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
derived="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EnumElement" eSuperTypes="#//ItemElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="enumItem" upperBound="-1"
eType="#//EnumItemElement" derived="true" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EnumItemElement" eSuperTypes="#//ItemElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ReferElement" eSuperTypes="#//LinkedElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="realModel" eType="#//ItemElement"
derived="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="items" upperBound="-1"
eType="#//ItemElement" derived="true" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="attribute" eType="#//ReferAttribute"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="path" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
defaultValueLiteral=""/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="SubDiagram" eSuperTypes="#//ItemElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="items" upperBound="-1"
eType="#//ReferElement" derived="true" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ConnectorElement" eSuperTypes="#//ItemElement #//BlockElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="params" upperBound="-1"
eType="#//Parameter" derived="true" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="withs" upperBound="-1"
eType="#//WithElement" derived="true" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="joinType" eType="#//JoinType"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="conType" eType="#//ConnectorType"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="construct" eType="#//StructBlockElement"
derived="true" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="destruct" eType="#//StructBlockElement"
derived="true" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="exercise" eType="#//StructBlockElement"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="WithElement" eSuperTypes="#//ItemElement #//BlockElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="cycle" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"
derived="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="StructBlockElement" eSuperTypes="#//ItemElement #//BlockElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="structType" eType="#//StructType"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ExpandTransElement" eSuperTypes="#//ItemElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="source" eType="#//LinkedElement"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="expand" eType="#//LinkedElement"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="trans" eType="#//LinkedElement"/>
</eClassifiers>
</ecore:EPackage>
| github:ecore:/data/gssi/metamodelsdataset-ECMFA2020/taskmodel.ecore | ecore | taskmodel
LineStyle
LINE_SOLID
LINE_SOLID
LINE_DASH
LINE_DASH
LINE_DOT
LINE_DOT
LINE_DASHDOT
LINE_DASHDOT
LINE_DASHDOTDOT
LINE_DASHDOTDOT
LINE_CUSTOM
LINE_CUSTOM
LineEndPoint
NONE
NONE
OPENED_ARROW
OPENED_ARROW
OPENED_TRIANGLE
OPENED_SQUARE
OPENED_SQUARE
OPENED_CIRCLE
OPENED_CIRCLE
CLOSED_TRIANGLE
CLOSED_TRIANGLE
CLOSED_SQUARE
CLOSED_SQUARE
CLOSED_CIRCLE
CLOSED_CIRCLE
RelationShip
Transition
Transition
TaskCall
TaskCall
ActionCall
ActionCall
Include
Include
StateAttribute
normal
initial
initial
target
target
StateActionType
Entry
entry
Stay
stay
Exit
exit
Direction
in
in
out
out
FloatingLiteral
stateTime
stateTime
taskTime
taskTime
RealFloatLiteral
RealFloatLiteral
BooleanLiteral
false
false
true
true
isSubTaskFinal
isSubTaskFinal
ReferAttribute
normal
normal
external
external
StructType
construct
construct
run
run
destruct
destruct
JoinType
andjoin
andjoin
orjoin
orjoin
ConnectorType
conexer
conexer
seqexer
seqexer
Point
org.eclipse.draw2d.geometry.Point
org.eclipse.draw2d.geometry.Point
ItemElement
isIncluded
parent
name
description
visible
true
subDiagram
references
itemState
ShapeElement
x
5
y
5
width
100
height
70
collapsed
x2
0
y2
5
width2
100
height2
70
LinkedElement
sourceConnections
targetConnections
LineElement
lineStyle
1
sourceEndPoint
targetEndPoint
bendPoints
ConnectionElement
source
target
source2
target2
relationship
0
condition
WorkerElement
initialTask
items
initialize
finalize
run
BlockElement
statements
TaskElement
params
states
initialState
construct
destruct
bifurcates
StateElement
attribute
entry
stay
exit
bifurcates
ActionElement
params
StateAction
stateActionType
Symbol
direction
type
value
Constant
type
initValue
Function
type
params
ModelElement
symbols
constants
functions
models
ModelDiagram
items
includeItems
script
IncludedElement
includePath
items
Parameter
type
value
EnumElement
enumItem
EnumItemElement
value
ReferElement
realModel
items
attribute
path
SubDiagram
items
ConnectorElement
params
withs
joinType
conType
construct
destruct
exercise
WithElement
cycle
StructBlockElement
structType
ExpandTransElement
source
expand
trans | null | {"directed":true,"nodes":[{"nsPrefix":"tpl","nsURI":"http://kr.re.etri.tpl/taskmodel","name":"taskmodel","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"instanceClassName":null,"name":"LineStyle","instanceClass":null,"id":1,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"LineEndPoint","instanceClass":null,"id":2,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"RelationShip","instanceClass":null,"id":3,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"StateAttribute","instanceClass":null,"id":4,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"StateActionType","instanceClass":null,"id":5,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"Direction","instanceClass":null,"id":6,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"FloatingLiteral","instanceClass":null,"id":7,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"BooleanLiteral","instanceClass":null,"id":8,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"ReferAttribute","instanceClass":null,"id":9,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"StructType","instanceClass":null,"id":10,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"JoinType","instanceClass":null,"id":11,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"ConnectorType","instanceClass":null,"id":12,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":"org.eclipse.draw2d.geometry.Point","defaultValue":null,"instanceClassName":"org.eclipse.draw2d.geometry.Point","name":"Point","instanceClass":null,"id":13,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ItemElement","instanceClass":null,"abstract":false,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ShapeElement","instanceClass":null,"abstract":false,"id":15,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LinkedElement","instanceClass":null,"abstract":false,"id":16,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LineElement","instanceClass":null,"abstract":false,"id":17,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ConnectionElement","instanceClass":null,"abstract":false,"id":18,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"WorkerElement","instanceClass":null,"abstract":false,"id":19,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BlockElement","instanceClass":null,"abstract":false,"id":20,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TaskElement","instanceClass":null,"abstract":false,"id":21,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StateElement","instanceClass":null,"abstract":false,"id":22,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ActionElement","instanceClass":null,"abstract":false,"id":23,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StateAction","instanceClass":null,"abstract":false,"id":24,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Symbol","instanceClass":null,"abstract":false,"id":25,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Constant","instanceClass":null,"abstract":false,"id":26,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Function","instanceClass":null,"abstract":false,"id":27,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ModelElement","instanceClass":null,"abstract":false,"id":28,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ModelDiagram","instanceClass":null,"abstract":false,"id":29,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IncludedElement","instanceClass":null,"abstract":false,"id":30,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Parameter","instanceClass":null,"abstract":false,"id":31,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EnumElement","instanceClass":null,"abstract":false,"id":32,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EnumItemElement","instanceClass":null,"abstract":false,"id":33,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ReferElement","instanceClass":null,"abstract":false,"id":34,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SubDiagram","instanceClass":null,"abstract":false,"id":35,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ConnectorElement","instanceClass":null,"abstract":false,"id":36,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"WithElement","instanceClass":null,"abstract":false,"id":37,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StructBlockElement","instanceClass":null,"abstract":false,"id":38,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExpandTransElement","instanceClass":null,"abstract":false,"id":39,"interface":false,"eClass":"EClass"},{"name":"LINE_SOLID","id":40,"value":1,"literal":"LINE_SOLID","eClass":"EEnumLiteral"},{"name":"LINE_DASH","id":41,"value":2,"literal":"LINE_DASH","eClass":"EEnumLiteral"},{"name":"LINE_DOT","id":42,"value":3,"literal":"LINE_DOT","eClass":"EEnumLiteral"},{"name":"LINE_DASHDOT","id":43,"value":4,"literal":"LINE_DASHDOT","eClass":"EEnumLiteral"},{"name":"LINE_DASHDOTDOT","id":44,"value":5,"literal":"LINE_DASHDOTDOT","eClass":"EEnumLiteral"},{"name":"LINE_CUSTOM","id":45,"value":6,"literal":"LINE_CUSTOM","eClass":"EEnumLiteral"},{"name":"NONE","id":46,"value":0,"literal":"NONE","eClass":"EEnumLiteral"},{"name":"OPENED_ARROW","id":47,"value":1,"literal":"OPENED_ARROW","eClass":"EEnumLiteral"},{"name":"OPENED_TRIANGLE","id":48,"value":2,"literal":"","eClass":"EEnumLiteral"},{"name":"OPENED_SQUARE","id":49,"value":3,"literal":"OPENED_SQUARE","eClass":"EEnumLiteral"},{"name":"OPENED_CIRCLE","id":50,"value":4,"literal":"OPENED_CIRCLE","eClass":"EEnumLiteral"},{"name":"CLOSED_TRIANGLE","id":51,"value":5,"literal":"CLOSED_TRIANGLE","eClass":"EEnumLiteral"},{"name":"CLOSED_SQUARE","id":52,"value":6,"literal":"CLOSED_SQUARE","eClass":"EEnumLiteral"},{"name":"CLOSED_CIRCLE","id":53,"value":7,"literal":"CLOSED_CIRCLE","eClass":"EEnumLiteral"},{"name":"Transition","id":54,"value":0,"literal":"Transition","eClass":"EEnumLiteral"},{"name":"TaskCall","id":55,"value":1,"literal":"TaskCall","eClass":"EEnumLiteral"},{"name":"ActionCall","id":56,"value":2,"literal":"ActionCall","eClass":"EEnumLiteral"},{"name":"Include","id":57,"value":3,"literal":"Include","eClass":"EEnumLiteral"},{"name":"normal","id":58,"value":0,"literal":"","eClass":"EEnumLiteral"},{"name":"initial","id":59,"value":1,"literal":"initial","eClass":"EEnumLiteral"},{"name":"target","id":60,"value":2,"literal":"target","eClass":"EEnumLiteral"},{"name":"Entry","id":61,"value":0,"literal":"entry","eClass":"EEnumLiteral"},{"name":"Stay","id":62,"value":1,"literal":"stay","eClass":"EEnumLiteral"},{"name":"Exit","id":63,"value":2,"literal":"exit","eClass":"EEnumLiteral"},{"name":"in","id":64,"value":0,"literal":"in","eClass":"EEnumLiteral"},{"name":"out","id":65,"value":1,"literal":"out","eClass":"EEnumLiteral"},{"name":"stateTime","id":66,"value":0,"literal":"stateTime","eClass":"EEnumLiteral"},{"name":"taskTime","id":67,"value":1,"literal":"taskTime","eClass":"EEnumLiteral"},{"name":"RealFloatLiteral","id":68,"value":2,"literal":"RealFloatLiteral","eClass":"EEnumLiteral"},{"name":"false","id":69,"value":0,"literal":"false","eClass":"EEnumLiteral"},{"name":"true","id":70,"value":1,"literal":"true","eClass":"EEnumLiteral"},{"name":"isSubTaskFinal","id":71,"value":2,"literal":"isSubTaskFinal","eClass":"EEnumLiteral"},{"name":"normal","id":72,"value":0,"literal":"normal","eClass":"EEnumLiteral"},{"name":"external","id":73,"value":1,"literal":"external","eClass":"EEnumLiteral"},{"name":"construct","id":74,"value":0,"literal":"construct","eClass":"EEnumLiteral"},{"name":"run","id":75,"value":1,"literal":"run","eClass":"EEnumLiteral"},{"name":"destruct","id":76,"value":2,"literal":"destruct","eClass":"EEnumLiteral"},{"name":"andjoin","id":77,"value":0,"literal":"andjoin","eClass":"EEnumLiteral"},{"name":"orjoin","id":78,"value":1,"literal":"orjoin","eClass":"EEnumLiteral"},{"name":"conexer","id":79,"value":0,"literal":"conexer","eClass":"EEnumLiteral"},{"name":"seqexer","id":80,"value":1,"literal":"seqexer","eClass":"EEnumLiteral"},{"ordered":true,"upperBound":1,"unique":true,"name":"isIncluded","lowerBound":0,"id":81,"many":false,"required":false,"eClass":"EOperation"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"parent","changeable":true,"resolveProxies":true,"lowerBound":0,"id":82,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":83,"derived":true},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"description","changeable":true,"lowerBound":0,"iD":false,"id":84,"derived":true},{"ordered":true,"upperBound":1,"defaultValue":true,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"true","unsettable":false,"transient":false,"unique":true,"name":"visible","changeable":true,"lowerBound":1,"iD":false,"id":85,"derived":true},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"subDiagram","changeable":true,"resolveProxies":true,"lowerBound":0,"id":86,"derived":true},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"references","changeable":true,"resolveProxies":true,"lowerBound":0,"id":87,"derived":true},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"itemState","changeable":true,"lowerBound":1,"iD":false,"id":88,"derived":false},{"id":89,"eClass":"EGenericType"},{"id":90,"eClass":"EGenericType"},{"id":91,"eClass":"EGenericType"},{"id":92,"eClass":"EGenericType"},{"id":93,"eClass":"EGenericType"},{"id":94,"eClass":"EGenericType"},{"id":95,"eClass":"EGenericType"},{"id":96,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":5,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"5","unsettable":false,"transient":false,"unique":true,"name":"x","changeable":true,"lowerBound":1,"iD":false,"id":97,"derived":true},{"ordered":true,"upperBound":1,"defaultValue":5,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"5","unsettable":false,"transient":false,"unique":true,"name":"y","changeable":true,"lowerBound":1,"iD":false,"id":98,"derived":true},{"ordered":true,"upperBound":1,"defaultValue":100,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"100","unsettable":false,"transient":false,"unique":true,"name":"width","changeable":true,"lowerBound":1,"iD":false,"id":99,"derived":true},{"ordered":true,"upperBound":1,"defaultValue":70,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"70","unsettable":false,"transient":false,"unique":true,"name":"height","changeable":true,"lowerBound":1,"iD":false,"id":100,"derived":true},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"collapsed","changeable":true,"lowerBound":1,"iD":false,"id":101,"derived":true},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"0","unsettable":false,"transient":false,"unique":true,"name":"x2","changeable":true,"lowerBound":1,"iD":false,"id":102,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":5,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"5","unsettable":false,"transient":false,"unique":true,"name":"y2","changeable":true,"lowerBound":1,"iD":false,"id":103,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":100,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"100","unsettable":false,"transient":false,"unique":true,"name":"width2","changeable":true,"lowerBound":1,"iD":false,"id":104,"derived":true},{"ordered":true,"upperBound":1,"defaultValue":70,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"70","unsettable":false,"transient":false,"unique":true,"name":"height2","changeable":true,"lowerBound":1,"iD":false,"id":105,"derived":true},{"id":106,"eClass":"EGenericType"},{"id":107,"eClass":"EGenericType"},{"id":108,"eClass":"EGenericType"},{"id":109,"eClass":"EGenericType"},{"id":110,"eClass":"EGenericType"},{"id":111,"eClass":"EGenericType"},{"id":112,"eClass":"EGenericType"},{"id":113,"eClass":"EGenericType"},{"id":114,"eClass":"EGenericType"},{"id":115,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"sourceConnections","changeable":true,"resolveProxies":true,"lowerBound":0,"id":116,"derived":true},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"targetConnections","changeable":true,"resolveProxies":true,"lowerBound":0,"id":117,"derived":true},{"id":118,"eClass":"EGenericType"},{"id":119,"eClass":"EGenericType"},{"id":120,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"1","unsettable":false,"transient":false,"unique":true,"name":"lineStyle","changeable":true,"lowerBound":1,"iD":false,"id":121,"derived":true},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"","unsettable":false,"transient":false,"unique":true,"name":"sourceEndPoint","changeable":true,"lowerBound":1,"iD":false,"id":122,"derived":true},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"targetEndPoint","changeable":true,"lowerBound":1,"iD":false,"id":123,"derived":true},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":"","unsettable":false,"transient":false,"unique":true,"name":"bendPoints","changeable":true,"lowerBound":0,"iD":false,"id":124,"derived":true},{"id":125,"eClass":"EGenericType"},{"id":126,"eClass":"EGenericType"},{"id":127,"eClass":"EGenericType"},{"id":128,"eClass":"EGenericType"},{"id":129,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"source","changeable":true,"resolveProxies":true,"lowerBound":0,"id":130,"derived":true},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"target","changeable":true,"resolveProxies":true,"lowerBound":0,"id":131,"derived":true},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"source2","changeable":true,"resolveProxies":true,"lowerBound":0,"id":132,"derived":true},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"target2","changeable":true,"resolveProxies":true,"lowerBound":0,"id":133,"derived":true},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"0","unsettable":false,"transient":false,"unique":true,"name":"relationship","changeable":true,"lowerBound":1,"iD":false,"id":134,"derived":true},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"condition","changeable":true,"lowerBound":0,"iD":false,"id":135,"derived":true},{"id":136,"eClass":"EGenericType"},{"id":137,"eClass":"EGenericType"},{"id":138,"eClass":"EGenericType"},{"id":139,"eClass":"EGenericType"},{"id":140,"eClass":"EGenericType"},{"id":141,"eClass":"EGenericType"},{"id":142,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"initialTask","changeable":true,"resolveProxies":true,"lowerBound":0,"id":143,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"items","changeable":true,"resolveProxies":true,"lowerBound":0,"id":144,"derived":true},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"initialize","changeable":true,"resolveProxies":true,"lowerBound":0,"id":145,"derived":true},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"finalize","changeable":true,"resolveProxies":true,"lowerBound":0,"id":146,"derived":true},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"run","changeable":true,"resolveProxies":true,"lowerBound":0,"id":147,"derived":true},{"id":148,"eClass":"EGenericType"},{"id":149,"eClass":"EGenericType"},{"id":150,"eClass":"EGenericType"},{"id":151,"eClass":"EGenericType"},{"id":152,"eClass":"EGenericType"},{"id":153,"eClass":"EGenericType"},{"id":154,"eClass":"EGenericType"},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"statements","changeable":true,"lowerBound":0,"iD":false,"id":155,"derived":true},{"id":156,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"params","changeable":true,"resolveProxies":true,"lowerBound":0,"id":157,"derived":true},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"states","changeable":true,"resolveProxies":true,"lowerBound":0,"id":158,"derived":true},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"initialState","changeable":true,"resolveProxies":true,"lowerBound":0,"id":159,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"construct","changeable":true,"resolveProxies":true,"lowerBound":0,"id":160,"derived":true},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"destruct","changeable":true,"resolveProxies":true,"lowerBound":0,"id":161,"derived":true},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"bifurcates","changeable":true,"resolveProxies":true,"lowerBound":0,"id":162,"derived":true},{"id":163,"eClass":"EGenericType"},{"id":164,"eClass":"EGenericType"},{"id":165,"eClass":"EGenericType"},{"id":166,"eClass":"EGenericType"},{"id":167,"eClass":"EGenericType"},{"id":168,"eClass":"EGenericType"},{"id":169,"eClass":"EGenericType"},{"id":170,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"","unsettable":false,"transient":false,"unique":true,"name":"attribute","changeable":true,"lowerBound":0,"iD":false,"id":171,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"entry","changeable":true,"resolveProxies":true,"lowerBound":0,"id":172,"derived":true},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"stay","changeable":true,"resolveProxies":true,"lowerBound":1,"id":173,"derived":true},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"exit","changeable":true,"resolveProxies":true,"lowerBound":0,"id":174,"derived":true},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"bifurcates","changeable":true,"resolveProxies":true,"lowerBound":0,"id":175,"derived":true},{"id":176,"eClass":"EGenericType"},{"id":177,"eClass":"EGenericType"},{"id":178,"eClass":"EGenericType"},{"id":179,"eClass":"EGenericType"},{"id":180,"eClass":"EGenericType"},{"id":181,"eClass":"EGenericType"},{"id":182,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"params","changeable":true,"resolveProxies":true,"lowerBound":0,"id":183,"derived":true},{"id":184,"eClass":"EGenericType"},{"id":185,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"","unsettable":false,"transient":false,"unique":true,"name":"stateActionType","changeable":true,"lowerBound":0,"iD":false,"id":186,"derived":false},{"id":187,"eClass":"EGenericType"},{"id":188,"eClass":"EGenericType"},{"id":189,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"direction","changeable":true,"lowerBound":0,"iD":false,"id":190,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"lowerBound":1,"iD":false,"id":191,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":0,"iD":false,"id":192,"derived":true},{"id":193,"eClass":"EGenericType"},{"id":194,"eClass":"EGenericType"},{"id":195,"eClass":"EGenericType"},{"id":196,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"lowerBound":1,"iD":false,"id":197,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"initValue","changeable":true,"lowerBound":0,"iD":false,"id":198,"derived":true},{"id":199,"eClass":"EGenericType"},{"id":200,"eClass":"EGenericType"},{"id":201,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"lowerBound":1,"iD":false,"id":202,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"params","changeable":true,"resolveProxies":true,"lowerBound":0,"id":203,"derived":true},{"id":204,"eClass":"EGenericType"},{"id":205,"eClass":"EGenericType"},{"id":206,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"symbols","changeable":true,"resolveProxies":true,"lowerBound":0,"id":207,"derived":true},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"constants","changeable":true,"resolveProxies":true,"lowerBound":0,"id":208,"derived":true},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"functions","changeable":true,"resolveProxies":true,"lowerBound":0,"id":209,"derived":true},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"models","changeable":true,"resolveProxies":true,"lowerBound":0,"id":210,"derived":true},{"id":211,"eClass":"EGenericType"},{"id":212,"eClass":"EGenericType"},{"id":213,"eClass":"EGenericType"},{"id":214,"eClass":"EGenericType"},{"id":215,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"items","changeable":true,"resolveProxies":true,"lowerBound":0,"id":216,"derived":true},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"includeItems","changeable":true,"resolveProxies":true,"lowerBound":0,"id":217,"derived":true},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"script","changeable":true,"lowerBound":0,"iD":false,"id":218,"derived":false},{"id":219,"eClass":"EGenericType"},{"id":220,"eClass":"EGenericType"},{"id":221,"eClass":"EGenericType"},{"id":222,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"includePath","changeable":true,"lowerBound":0,"iD":false,"id":223,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"items","changeable":true,"resolveProxies":true,"lowerBound":0,"id":224,"derived":true},{"id":225,"eClass":"EGenericType"},{"id":226,"eClass":"EGenericType"},{"id":227,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"lowerBound":1,"iD":false,"id":228,"derived":true},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":0,"iD":false,"id":229,"derived":true},{"id":230,"eClass":"EGenericType"},{"id":231,"eClass":"EGenericType"},{"id":232,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"enumItem","changeable":true,"resolveProxies":true,"lowerBound":0,"id":233,"derived":true},{"id":234,"eClass":"EGenericType"},{"id":235,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":1,"iD":false,"id":236,"derived":false},{"id":237,"eClass":"EGenericType"},{"id":238,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"realModel","changeable":true,"resolveProxies":true,"lowerBound":0,"id":239,"derived":true},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"items","changeable":true,"resolveProxies":true,"lowerBound":0,"id":240,"derived":true},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"attribute","changeable":true,"lowerBound":0,"iD":false,"id":241,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":"","volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"","unsettable":false,"transient":false,"unique":true,"name":"path","changeable":true,"lowerBound":0,"iD":false,"id":242,"derived":false},{"id":243,"eClass":"EGenericType"},{"id":244,"eClass":"EGenericType"},{"id":245,"eClass":"EGenericType"},{"id":246,"eClass":"EGenericType"},{"id":247,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"items","changeable":true,"resolveProxies":true,"lowerBound":0,"id":248,"derived":true},{"id":249,"eClass":"EGenericType"},{"id":250,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"params","changeable":true,"resolveProxies":true,"lowerBound":0,"id":251,"derived":true},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"withs","changeable":true,"resolveProxies":true,"lowerBound":0,"id":252,"derived":true},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"joinType","changeable":true,"lowerBound":0,"iD":false,"id":253,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"conType","changeable":true,"lowerBound":0,"iD":false,"id":254,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"construct","changeable":true,"resolveProxies":true,"lowerBound":0,"id":255,"derived":true},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"destruct","changeable":true,"resolveProxies":true,"lowerBound":0,"id":256,"derived":true},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"exercise","changeable":true,"resolveProxies":true,"lowerBound":0,"id":257,"derived":false},{"id":258,"eClass":"EGenericType"},{"id":259,"eClass":"EGenericType"},{"id":260,"eClass":"EGenericType"},{"id":261,"eClass":"EGenericType"},{"id":262,"eClass":"EGenericType"},{"id":263,"eClass":"EGenericType"},{"id":264,"eClass":"EGenericType"},{"id":265,"eClass":"EGenericType"},{"id":266,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"cycle","changeable":true,"lowerBound":1,"iD":false,"id":267,"derived":true},{"id":268,"eClass":"EGenericType"},{"id":269,"eClass":"EGenericType"},{"id":270,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"structType","changeable":true,"lowerBound":0,"iD":false,"id":271,"derived":false},{"id":272,"eClass":"EGenericType"},{"id":273,"eClass":"EGenericType"},{"id":274,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"source","changeable":true,"resolveProxies":true,"lowerBound":0,"id":275,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"expand","changeable":true,"resolveProxies":true,"lowerBound":0,"id":276,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"trans","changeable":true,"resolveProxies":true,"lowerBound":0,"id":277,"derived":false},{"id":278,"eClass":"EGenericType"},{"id":279,"eClass":"EGenericType"},{"id":280,"eClass":"EGenericType"},{"id":281,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":0,"target":8},{"source":0,"target":9},{"source":0,"target":10},{"source":0,"target":11},{"source":0,"target":12},{"source":0,"target":13},{"source":0,"target":14},{"source":0,"target":15},{"source":0,"target":16},{"source":0,"target":17},{"source":0,"target":18},{"source":0,"target":19},{"source":0,"target":20},{"source":0,"target":21},{"source":0,"target":22},{"source":0,"target":23},{"source":0,"target":24},{"source":0,"target":25},{"source":0,"target":26},{"source":0,"target":27},{"source":0,"target":28},{"source":0,"target":29},{"source":0,"target":30},{"source":0,"target":31},{"source":0,"target":32},{"source":0,"target":33},{"source":0,"target":34},{"source":0,"target":35},{"source":0,"target":36},{"source":0,"target":37},{"source":0,"target":38},{"source":0,"target":39},{"source":1,"target":0},{"source":1,"target":40},{"source":1,"target":41},{"source":1,"target":42},{"source":1,"target":43},{"source":1,"target":44},{"source":1,"target":45},{"source":40,"target":1},{"source":41,"target":1},{"source":42,"target":1},{"source":43,"target":1},{"source":44,"target":1},{"source":45,"target":1},{"source":2,"target":0},{"source":2,"target":46},{"source":2,"target":47},{"source":2,"target":48},{"source":2,"target":49},{"source":2,"target":50},{"source":2,"target":51},{"source":2,"target":52},{"source":2,"target":53},{"source":46,"target":2},{"source":47,"target":2},{"source":48,"target":2},{"source":49,"target":2},{"source":50,"target":2},{"source":51,"target":2},{"source":52,"target":2},{"source":53,"target":2},{"source":3,"target":0},{"source":3,"target":54},{"source":3,"target":55},{"source":3,"target":56},{"source":3,"target":57},{"source":54,"target":3},{"source":55,"target":3},{"source":56,"target":3},{"source":57,"target":3},{"source":4,"target":0},{"source":4,"target":58},{"source":4,"target":59},{"source":4,"target":60},{"source":58,"target":4},{"source":59,"target":4},{"source":60,"target":4},{"source":5,"target":0},{"source":5,"target":61},{"source":5,"target":62},{"source":5,"target":63},{"source":61,"target":5},{"source":62,"target":5},{"source":63,"target":5},{"source":6,"target":0},{"source":6,"target":64},{"source":6,"target":65},{"source":64,"target":6},{"source":65,"target":6},{"source":7,"target":0},{"source":7,"target":66},{"source":7,"target":67},{"source":7,"target":68},{"source":66,"target":7},{"source":67,"target":7},{"source":68,"target":7},{"source":8,"target":0},{"source":8,"target":69},{"source":8,"target":70},{"source":8,"target":71},{"source":69,"target":8},{"source":70,"target":8},{"source":71,"target":8},{"source":9,"target":0},{"source":9,"target":72},{"source":9,"target":73},{"source":72,"target":9},{"source":73,"target":9},{"source":10,"target":0},{"source":10,"target":74},{"source":10,"target":75},{"source":10,"target":76},{"source":74,"target":10},{"source":75,"target":10},{"source":76,"target":10},{"source":11,"target":0},{"source":11,"target":77},{"source":11,"target":78},{"source":77,"target":11},{"source":78,"target":11},{"source":12,"target":0},{"source":12,"target":79},{"source":12,"target":80},{"source":79,"target":12},{"source":80,"target":12},{"source":13,"target":0},{"source":14,"target":0},{"source":14,"target":81},{"source":14,"target":82},{"source":14,"target":83},{"source":14,"target":84},{"source":14,"target":85},{"source":14,"target":86},{"source":14,"target":87},{"source":14,"target":88},{"source":81,"target":89},{"source":81,"target":14},{"source":82,"target":14},{"source":82,"target":90},{"source":82,"target":14},{"source":90,"target":14},{"source":83,"target":91},{"source":83,"target":14},{"source":84,"target":92},{"source":84,"target":14},{"source":85,"target":93},{"source":85,"target":14},{"source":86,"target":35},{"source":86,"target":94},{"source":86,"target":14},{"source":94,"target":35},{"source":87,"target":34},{"source":87,"target":95},{"source":87,"target":14},{"source":95,"target":34},{"source":88,"target":96},{"source":88,"target":14},{"source":15,"target":0},{"source":15,"target":14},{"source":15,"target":97},{"source":15,"target":98},{"source":15,"target":99},{"source":15,"target":100},{"source":15,"target":101},{"source":15,"target":102},{"source":15,"target":103},{"source":15,"target":104},{"source":15,"target":105},{"source":15,"target":106},{"source":97,"target":107},{"source":97,"target":15},{"source":98,"target":108},{"source":98,"target":15},{"source":99,"target":109},{"source":99,"target":15},{"source":100,"target":110},{"source":100,"target":15},{"source":101,"target":111},{"source":101,"target":15},{"source":102,"target":112},{"source":102,"target":15},{"source":103,"target":113},{"source":103,"target":15},{"source":104,"target":114},{"source":104,"target":15},{"source":105,"target":115},{"source":105,"target":15},{"source":106,"target":14},{"source":16,"target":0},{"source":16,"target":15},{"source":16,"target":116},{"source":16,"target":117},{"source":16,"target":118},{"source":116,"target":18},{"source":116,"target":119},{"source":116,"target":16},{"source":119,"target":18},{"source":117,"target":18},{"source":117,"target":120},{"source":117,"target":16},{"source":120,"target":18},{"source":118,"target":15},{"source":17,"target":0},{"source":17,"target":14},{"source":17,"target":121},{"source":17,"target":122},{"source":17,"target":123},{"source":17,"target":124},{"source":17,"target":125},{"source":121,"target":1},{"source":121,"target":126},{"source":121,"target":17},{"source":126,"target":1},{"source":122,"target":2},{"source":122,"target":127},{"source":122,"target":17},{"source":127,"target":2},{"source":123,"target":2},{"source":123,"target":128},{"source":123,"target":17},{"source":128,"target":2},{"source":124,"target":13},{"source":124,"target":129},{"source":124,"target":17},{"source":129,"target":13},{"source":125,"target":14},{"source":18,"target":0},{"source":18,"target":17},{"source":18,"target":130},{"source":18,"target":131},{"source":18,"target":132},{"source":18,"target":133},{"source":18,"target":134},{"source":18,"target":135},{"source":18,"target":136},{"source":130,"target":16},{"source":130,"target":137},{"source":130,"target":18},{"source":137,"target":16},{"source":131,"target":16},{"source":131,"target":138},{"source":131,"target":18},{"source":138,"target":16},{"source":132,"target":16},{"source":132,"target":139},{"source":132,"target":18},{"source":139,"target":16},{"source":133,"target":16},{"source":133,"target":140},{"source":133,"target":18},{"source":140,"target":16},{"source":134,"target":3},{"source":134,"target":141},{"source":134,"target":18},{"source":141,"target":3},{"source":135,"target":142},{"source":135,"target":18},{"source":136,"target":17},{"source":19,"target":0},{"source":19,"target":14},{"source":19,"target":20},{"source":19,"target":143},{"source":19,"target":144},{"source":19,"target":145},{"source":19,"target":146},{"source":19,"target":147},{"source":19,"target":148},{"source":19,"target":149},{"source":143,"target":14},{"source":143,"target":150},{"source":143,"target":19},{"source":150,"target":14},{"source":144,"target":14},{"source":144,"target":151},{"source":144,"target":19},{"source":151,"target":14},{"source":145,"target":38},{"source":145,"target":152},{"source":145,"target":19},{"source":152,"target":38},{"source":146,"target":38},{"source":146,"target":153},{"source":146,"target":19},{"source":153,"target":38},{"source":147,"target":38},{"source":147,"target":154},{"source":147,"target":19},{"source":154,"target":38},{"source":148,"target":14},{"source":149,"target":20},{"source":20,"target":0},{"source":20,"target":155},{"source":155,"target":156},{"source":155,"target":20},{"source":21,"target":0},{"source":21,"target":14},{"source":21,"target":20},{"source":21,"target":157},{"source":21,"target":158},{"source":21,"target":159},{"source":21,"target":160},{"source":21,"target":161},{"source":21,"target":162},{"source":21,"target":163},{"source":21,"target":164},{"source":157,"target":31},{"source":157,"target":165},{"source":157,"target":21},{"source":165,"target":31},{"source":158,"target":22},{"source":158,"target":166},{"source":158,"target":21},{"source":166,"target":22},{"source":159,"target":22},{"source":159,"target":167},{"source":159,"target":21},{"source":167,"target":22},{"source":160,"target":38},{"source":160,"target":168},{"source":160,"target":21},{"source":168,"target":38},{"source":161,"target":38},{"source":161,"target":169},{"source":161,"target":21},{"source":169,"target":38},{"source":162,"target":39},{"source":162,"target":170},{"source":162,"target":21},{"source":170,"target":39},{"source":163,"target":14},{"source":164,"target":20},{"source":22,"target":0},{"source":22,"target":14},{"source":22,"target":20},{"source":22,"target":171},{"source":22,"target":172},{"source":22,"target":173},{"source":22,"target":174},{"source":22,"target":175},{"source":22,"target":176},{"source":22,"target":177},{"source":171,"target":4},{"source":171,"target":178},{"source":171,"target":22},{"source":178,"target":4},{"source":172,"target":24},{"source":172,"target":179},{"source":172,"target":22},{"source":179,"target":24},{"source":173,"target":24},{"source":173,"target":180},{"source":173,"target":22},{"source":180,"target":24},{"source":174,"target":24},{"source":174,"target":181},{"source":174,"target":22},{"source":181,"target":24},{"source":175,"target":39},{"source":175,"target":182},{"source":175,"target":22},{"source":182,"target":39},{"source":176,"target":14},{"source":177,"target":20},{"source":23,"target":0},{"source":23,"target":14},{"source":23,"target":183},{"source":23,"target":184},{"source":183,"target":31},{"source":183,"target":185},{"source":183,"target":23},{"source":185,"target":31},{"source":184,"target":14},{"source":24,"target":0},{"source":24,"target":14},{"source":24,"target":20},{"source":24,"target":186},{"source":24,"target":187},{"source":24,"target":188},{"source":186,"target":5},{"source":186,"target":189},{"source":186,"target":24},{"source":189,"target":5},{"source":187,"target":14},{"source":188,"target":20},{"source":25,"target":0},{"source":25,"target":14},{"source":25,"target":190},{"source":25,"target":191},{"source":25,"target":192},{"source":25,"target":193},{"source":190,"target":6},{"source":190,"target":194},{"source":190,"target":25},{"source":194,"target":6},{"source":191,"target":195},{"source":191,"target":25},{"source":192,"target":196},{"source":192,"target":25},{"source":193,"target":14},{"source":26,"target":0},{"source":26,"target":14},{"source":26,"target":197},{"source":26,"target":198},{"source":26,"target":199},{"source":197,"target":200},{"source":197,"target":26},{"source":198,"target":201},{"source":198,"target":26},{"source":199,"target":14},{"source":27,"target":0},{"source":27,"target":14},{"source":27,"target":202},{"source":27,"target":203},{"source":27,"target":204},{"source":202,"target":205},{"source":202,"target":27},{"source":203,"target":31},{"source":203,"target":206},{"source":203,"target":27},{"source":206,"target":31},{"source":204,"target":14},{"source":28,"target":0},{"source":28,"target":14},{"source":28,"target":207},{"source":28,"target":208},{"source":28,"target":209},{"source":28,"target":210},{"source":28,"target":211},{"source":207,"target":25},{"source":207,"target":212},{"source":207,"target":28},{"source":212,"target":25},{"source":208,"target":26},{"source":208,"target":213},{"source":208,"target":28},{"source":213,"target":26},{"source":209,"target":27},{"source":209,"target":214},{"source":209,"target":28},{"source":214,"target":27},{"source":210,"target":28},{"source":210,"target":215},{"source":210,"target":28},{"source":215,"target":28},{"source":211,"target":14},{"source":29,"target":0},{"source":29,"target":14},{"source":29,"target":216},{"source":29,"target":217},{"source":29,"target":218},{"source":29,"target":219},{"source":216,"target":14},{"source":216,"target":220},{"source":216,"target":29},{"source":220,"target":14},{"source":217,"target":30},{"source":217,"target":221},{"source":217,"target":29},{"source":221,"target":30},{"source":218,"target":222},{"source":218,"target":29},{"source":219,"target":14},{"source":30,"target":0},{"source":30,"target":14},{"source":30,"target":223},{"source":30,"target":224},{"source":30,"target":225},{"source":223,"target":226},{"source":223,"target":30},{"source":224,"target":14},{"source":224,"target":227},{"source":224,"target":30},{"source":227,"target":14},{"source":225,"target":14},{"source":31,"target":0},{"source":31,"target":14},{"source":31,"target":228},{"source":31,"target":229},{"source":31,"target":230},{"source":228,"target":231},{"source":228,"target":31},{"source":229,"target":232},{"source":229,"target":31},{"source":230,"target":14},{"source":32,"target":0},{"source":32,"target":14},{"source":32,"target":233},{"source":32,"target":234},{"source":233,"target":33},{"source":233,"target":235},{"source":233,"target":32},{"source":235,"target":33},{"source":234,"target":14},{"source":33,"target":0},{"source":33,"target":14},{"source":33,"target":236},{"source":33,"target":237},{"source":236,"target":238},{"source":236,"target":33},{"source":237,"target":14},{"source":34,"target":0},{"source":34,"target":16},{"source":34,"target":239},{"source":34,"target":240},{"source":34,"target":241},{"source":34,"target":242},{"source":34,"target":243},{"source":239,"target":14},{"source":239,"target":244},{"source":239,"target":34},{"source":244,"target":14},{"source":240,"target":14},{"source":240,"target":245},{"source":240,"target":34},{"source":245,"target":14},{"source":241,"target":9},{"source":241,"target":246},{"source":241,"target":34},{"source":246,"target":9},{"source":242,"target":247},{"source":242,"target":34},{"source":243,"target":16},{"source":35,"target":0},{"source":35,"target":14},{"source":35,"target":248},{"source":35,"target":249},{"source":248,"target":34},{"source":248,"target":250},{"source":248,"target":35},{"source":250,"target":34},{"source":249,"target":14},{"source":36,"target":0},{"source":36,"target":14},{"source":36,"target":20},{"source":36,"target":251},{"source":36,"target":252},{"source":36,"target":253},{"source":36,"target":254},{"source":36,"target":255},{"source":36,"target":256},{"source":36,"target":257},{"source":36,"target":258},{"source":36,"target":259},{"source":251,"target":31},{"source":251,"target":260},{"source":251,"target":36},{"source":260,"target":31},{"source":252,"target":37},{"source":252,"target":261},{"source":252,"target":36},{"source":261,"target":37},{"source":253,"target":11},{"source":253,"target":262},{"source":253,"target":36},{"source":262,"target":11},{"source":254,"target":12},{"source":254,"target":263},{"source":254,"target":36},{"source":263,"target":12},{"source":255,"target":38},{"source":255,"target":264},{"source":255,"target":36},{"source":264,"target":38},{"source":256,"target":38},{"source":256,"target":265},{"source":256,"target":36},{"source":265,"target":38},{"source":257,"target":38},{"source":257,"target":266},{"source":257,"target":36},{"source":266,"target":38},{"source":258,"target":14},{"source":259,"target":20},{"source":37,"target":0},{"source":37,"target":14},{"source":37,"target":20},{"source":37,"target":267},{"source":37,"target":268},{"source":37,"target":269},{"source":267,"target":270},{"source":267,"target":37},{"source":268,"target":14},{"source":269,"target":20},{"source":38,"target":0},{"source":38,"target":14},{"source":38,"target":20},{"source":38,"target":271},{"source":38,"target":272},{"source":38,"target":273},{"source":271,"target":10},{"source":271,"target":274},{"source":271,"target":38},{"source":274,"target":10},{"source":272,"target":14},{"source":273,"target":20},{"source":39,"target":0},{"source":39,"target":14},{"source":39,"target":275},{"source":39,"target":276},{"source":39,"target":277},{"source":39,"target":278},{"source":275,"target":16},{"source":275,"target":279},{"source":275,"target":39},{"source":279,"target":16},{"source":276,"target":16},{"source":276,"target":280},{"source":276,"target":39},{"source":280,"target":16},{"source":277,"target":16},{"source":277,"target":281},{"source":277,"target":39},{"source":281,"target":16},{"source":278,"target":14}],"multigraph":true} |
true | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0"
xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="notation"
nsURI="http://www.eclipse.org/gmf/runtime/1.0.2/notation" nsPrefix="notation">
<eClassifiers xsi:type="ecore:EClass" name="Edge" eSuperTypes="#//View">
<eOperations name="createBendpoints" eType="#//Bendpoints">
<eParameters name="eClass" eType="ecore:EClass platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EClass"/>
</eOperations>
<eOperations name="createSourceAnchor" eType="#//Anchor">
<eParameters name="eClass" eType="ecore:EClass platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EClass"/>
</eOperations>
<eOperations name="createTargetAnchor" eType="#//Anchor">
<eParameters name="eClass" eType="ecore:EClass platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EClass"/>
</eOperations>
<eStructuralFeatures xsi:type="ecore:EReference" name="source" lowerBound="1"
eType="#//View" resolveProxies="false" eOpposite="#//View/sourceEdges"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="target" lowerBound="1"
eType="#//View" resolveProxies="false" eOpposite="#//View/targetEdges"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="bendpoints" eType="#//Bendpoints"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="sourceAnchor" eType="#//Anchor"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="targetAnchor" eType="#//Anchor"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Node" eSuperTypes="#//View">
<eOperations name="createLayoutConstraint" eType="#//LayoutConstraint">
<eParameters name="eClass" eType="ecore:EClass platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EClass"/>
</eOperations>
<eStructuralFeatures xsi:type="ecore:EReference" name="layoutConstraint" eType="#//LayoutConstraint"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Style" abstract="true" interface="true"/>
<eClassifiers xsi:type="ecore:EClass" name="FillStyle" eSuperTypes="#//Style">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="fillColor" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"
defaultValueLiteral="16777215"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="transparency" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"
defaultValueLiteral="-1"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="gradient" eType="#//GradientData"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="LineStyle" eSuperTypes="#//Style">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="lineColor" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"
defaultValueLiteral="11579568"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="lineWidth" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt"
defaultValueLiteral="-1"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="FontStyle" eSuperTypes="#//Style">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="fontColor" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"
defaultValueLiteral="0"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="fontName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
defaultValueLiteral="Tahoma"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="fontHeight" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"
defaultValueLiteral="9"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="bold" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"
defaultValueLiteral="false"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="italic" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"
defaultValueLiteral="false"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="underline" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"
defaultValueLiteral="false"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="strikeThrough" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"
defaultValueLiteral="false"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="TitleStyle" eSuperTypes="#//Style">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="showTitle" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"
defaultValueLiteral="false"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="SortingStyle" eSuperTypes="#//Style">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="sorting" eType="#//Sorting"
defaultValueLiteral="None"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="sortingKeys" eType="#//SortKeyMap"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="sortedObjects" upperBound="-1"
eType="ecore:EClass platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EObject"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="DescriptionStyle" eSuperTypes="#//Style">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="description" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
defaultValueLiteral=""/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="LayoutConstraint" abstract="true" interface="true"/>
<eClassifiers xsi:type="ecore:EClass" name="Size" eSuperTypes="#//LayoutConstraint">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="width" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"
defaultValueLiteral="-1"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="height" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"
defaultValueLiteral="-1"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Location" eSuperTypes="#//LayoutConstraint">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="x" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"
defaultValueLiteral="0"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="y" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"
defaultValueLiteral="0"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Bounds" eSuperTypes="#//Location #//Size"/>
<eClassifiers xsi:type="ecore:EClass" name="Ratio" eSuperTypes="#//LayoutConstraint">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"
defaultValueLiteral="-1"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Anchor" abstract="true" interface="true"/>
<eClassifiers xsi:type="ecore:EClass" name="Bendpoints" abstract="true" interface="true"/>
<eClassifiers xsi:type="ecore:EEnum" name="Sorting">
<eLiterals name="None"/>
<eLiterals name="Manual" value="1"/>
<eLiterals name="Automatic" value="2"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="Filtering">
<eLiterals name="None"/>
<eLiterals name="Manual" value="1"/>
<eLiterals name="Automatic" value="2"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="IdentityAnchor" eSuperTypes="#//Anchor">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="id" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
defaultValueLiteral="anchor"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="Routing">
<eLiterals name="Manual"/>
<eLiterals name="Rectilinear" value="1"/>
<eLiterals name="Tree" value="2"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="Smoothness">
<eLiterals name="None"/>
<eLiterals name="Normal" value="1"/>
<eLiterals name="Less" value="2"/>
<eLiterals name="More" value="3"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="JumpLinkStatus">
<eLiterals name="None"/>
<eLiterals name="All" value="1"/>
<eLiterals name="Below" value="2"/>
<eLiterals name="Above" value="3"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="JumpLinkType">
<eLiterals name="Semicircle"/>
<eLiterals name="Square" value="1"/>
<eLiterals name="Chamfered" value="2"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="RoutingStyle" eSuperTypes="#//RoundedCornersStyle">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="routing" eType="#//Routing"
defaultValueLiteral="Manual"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="smoothness" eType="#//Smoothness"
defaultValueLiteral="None"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="avoidObstructions" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"
defaultValueLiteral="false"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="closestDistance" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"
defaultValueLiteral="false"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="jumpLinkStatus" eType="#//JumpLinkStatus"
defaultValueLiteral="None"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="jumpLinkType" eType="#//JumpLinkType"
defaultValueLiteral="Semicircle"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="jumpLinksReverse" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"
defaultValueLiteral="false"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="View" abstract="true" eSuperTypes="platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EModelElement">
<eOperations name="getStyle" eType="#//Style">
<eParameters name="eClass" eType="ecore:EClass platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EClass"/>
</eOperations>
<eOperations name="createChild" eType="#//Node">
<eParameters name="eClass" eType="ecore:EClass platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EClass"/>
</eOperations>
<eOperations name="createStyle" eType="#//Style">
<eParameters name="eClass" eType="ecore:EClass platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EClass"/>
</eOperations>
<eOperations name="getNamedStyle" eType="#//NamedStyle">
<eParameters name="eClass" eType="ecore:EClass platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EClass"/>
<eParameters name="name" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/>
</eOperations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="visible" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"
defaultValueLiteral="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="type" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
defaultValueLiteral=""/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="mutable" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"
transient="true" defaultValueLiteral="false"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="sourceEdges" upperBound="-1"
eType="#//Edge" transient="true" resolveProxies="false" eOpposite="#//Edge/source"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="targetEdges" upperBound="-1"
eType="#//Edge" transient="true" resolveProxies="false" eOpposite="#//Edge/target"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="persistedChildren" upperBound="-1"
eType="#//Node" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="styles" upperBound="-1"
eType="#//Style" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="element" eType="ecore:EClass platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EObject"
unsettable="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="diagram" lowerBound="1"
eType="#//Diagram" changeable="false" volatile="true" transient="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="transientChildren" upperBound="-1"
eType="#//Node" transient="true" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="RelativeBendpoints" eSuperTypes="#//Bendpoints">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="points" eType="#//RelativeBendpointList"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Diagram" eSuperTypes="#//View">
<eOperations name="createEdge" eType="#//Edge">
<eParameters name="eClass" eType="ecore:EClass platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EClass"/>
</eOperations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
defaultValueLiteral=""/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="measurementUnit" eType="#//MeasurementUnit"
defaultValueLiteral="Himetric" unsettable="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="persistedEdges" upperBound="-1"
eType="#//Edge" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="TransientEdges" upperBound="-1"
eType="#//Edge" transient="true" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Image">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="data" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EByteArray"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CanonicalStyle" eSuperTypes="#//Style">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="canonical" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"
defaultValueLiteral="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ShapeStyle" eSuperTypes="#//FontStyle #//DescriptionStyle #//FillStyle #//LineStyle #//RoundedCornersStyle"/>
<eClassifiers xsi:type="ecore:EClass" name="ConnectorStyle" eSuperTypes="#//RoutingStyle #//LineStyle"/>
<eClassifiers xsi:type="ecore:EDataType" name="RelativeBendpointList" instanceClassName="java.util.List"/>
<eClassifiers xsi:type="ecore:EClass" name="PageStyle" eSuperTypes="#//Style">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="pageX" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"
defaultValueLiteral="0"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="pageY" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"
defaultValueLiteral="0"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="pageWidth" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"
defaultValueLiteral="100"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="pageHeight" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"
defaultValueLiteral="100"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="DrawerStyle" eSuperTypes="#//Style">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="collapsed" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"
defaultValueLiteral="false"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="GuideStyle" eSuperTypes="#//Style">
<eStructuralFeatures xsi:type="ecore:EReference" name="horizontalGuides" upperBound="-1"
eType="#//Guide" containment="true" resolveProxies="false"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="verticalGuides" upperBound="-1"
eType="#//Guide" containment="true" resolveProxies="false"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Guide">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="position" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"
defaultValueLiteral="0"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="nodeMap" upperBound="-1"
eType="#//NodeEntry" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="NodeEntry" instanceClassName="java.util.Map$Entry">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="#//Alignment"
defaultValueLiteral="Center"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="key" lowerBound="1" eType="#//Node"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="Alignment">
<eLiterals name="Left"/>
<eLiterals name="Right" value="1"/>
<eLiterals name="Center" value="2"/>
<eLiterals name="Top" value="3"/>
<eLiterals name="Bottom" value="4"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="FilteringStyle" eSuperTypes="#//Style">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="filtering" eType="#//Filtering"
defaultValueLiteral="None"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="filteringKeys" eType="#//FilterKeyList"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="filteredObjects" upperBound="-1"
eType="ecore:EClass platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EObject"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="FilterKeyList" instanceClassName="java.util.List"/>
<eClassifiers xsi:type="ecore:EDataType" name="SortKeyMap" instanceClassName="java.util.Map"/>
<eClassifiers xsi:type="ecore:EEnum" name="SortingDirection">
<eLiterals name="Ascending"/>
<eLiterals name="Descending" value="1"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="DiagramStyle" eSuperTypes="#//PageStyle #//GuideStyle #//DescriptionStyle"/>
<eClassifiers xsi:type="ecore:EClass" name="ImageStyle" eSuperTypes="#//Style">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="antiAlias" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBooleanObject"
defaultValueLiteral="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="maintainAspectRatio" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBooleanObject"
defaultValueLiteral="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="cropBound" lowerBound="1"
eType="#//Bounds" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ImageBufferStyle" eSuperTypes="#//ImageStyle">
<eStructuralFeatures xsi:type="ecore:EReference" name="imageBuffer" lowerBound="1"
eType="#//Image" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="MeasurementUnit">
<eLiterals name="Himetric"/>
<eLiterals name="Pixel" value="1"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="PropertiesSetStyle" eSuperTypes="#//NamedStyle">
<eOperations name="getProperty" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EJavaObject">
<eParameters name="propertyName" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/>
</eOperations>
<eOperations name="setProperty" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EBoolean">
<eParameters name="propertyName" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/>
<eParameters name="newValue" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EJavaObject"/>
</eOperations>
<eOperations name="createProperty" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EBoolean">
<eParameters name="propertyName" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/>
<eParameters name="instanceType" eType="ecore:EClass platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EDataType"/>
<eParameters name="initialValue" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EJavaObject"/>
</eOperations>
<eOperations name="removeProperty" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EBoolean">
<eParameters name="propertyName" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/>
</eOperations>
<eOperations name="hasProperty" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EBoolean">
<eParameters name="propertyName" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/>
</eOperations>
<eOperations name="createProperty" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EBoolean">
<eParameters name="propertyName" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/>
<eParameters name="initialValue" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/>
</eOperations>
<eStructuralFeatures xsi:type="ecore:EReference" name="propertiesMap" upperBound="-1"
eType="#//StringToPropertyValueMapEntry" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="StringToPropertyValueMapEntry" instanceClassName="java.util.Map$Entry">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="key" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="value" eType="#//PropertyValue"
containment="true" resolveProxies="false"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="PropertyValue" eSuperTypes="#//StringObjectConverter">
<eOperations name="getValue" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EJavaObject"/>
<eOperations name="setValue">
<eParameters name="newValue" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EJavaObject"/>
</eOperations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="rawValue" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="instanceType" eType="ecore:EClass platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EDataType"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="SingleValueStyle" eSuperTypes="#//DataTypeStyle">
<eOperations name="getValue" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EJavaObject"/>
<eOperations name="setValue">
<eParameters name="newValue" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EJavaObject"/>
</eOperations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="rawValue" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ListValueStyle" eSuperTypes="#//DataTypeStyle">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="rawValuesList" unique="false"
upperBound="-1" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="NamedStyle" eSuperTypes="#//Style">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="StringObjectConverter" abstract="true"
interface="true">
<eOperations name="getStringFromObject" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString">
<eParameters name="objectValue" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EJavaObject"/>
</eOperations>
<eOperations name="getObjectFromString" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EJavaObject">
<eParameters name="stringValue" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/>
</eOperations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="DataTypeStyle" eSuperTypes="#//NamedStyle #//StringObjectConverter">
<eStructuralFeatures xsi:type="ecore:EReference" name="instanceType" eType="ecore:EClass platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EDataType"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="IntValueStyle" eSuperTypes="#//NamedStyle">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="intValue" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="IntListValueStyle" eSuperTypes="#//NamedStyle">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="intListValue" unique="false"
upperBound="-1" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="BooleanValueStyle" eSuperTypes="#//NamedStyle">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="booleanValue" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EBoolean"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="DoubleValueStyle" eSuperTypes="#//NamedStyle">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="doubleValue" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EDouble"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="DoubleListValueStyle" eSuperTypes="#//NamedStyle">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="doubleListValue" unique="false"
upperBound="-1" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EDoubleObject"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="StringValueStyle" eSuperTypes="#//NamedStyle">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="stringValue" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="StringListValueStyle" eSuperTypes="#//NamedStyle">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="stringListValue" unique="false"
upperBound="-1" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EObjectValueStyle" eSuperTypes="#//NamedStyle">
<eStructuralFeatures xsi:type="ecore:EReference" name="eObjectValue" eType="ecore:EClass platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EObject"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EObjectListValueStyle" eSuperTypes="#//NamedStyle">
<eStructuralFeatures xsi:type="ecore:EReference" name="eObjectListValue" upperBound="-1"
eType="ecore:EClass platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EObject"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ByteArrayValueStyle" eSuperTypes="#//NamedStyle">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="byteArrayValue" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EByteArray"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="BooleanListValueStyle" eSuperTypes="#//NamedStyle">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="booleanListValue" unique="false"
upperBound="-1" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EBooleanObject"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="HintedDiagramLinkStyle" eSuperTypes="#//DiagramLinkStyle #//Style">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="hint" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="DiagramLinkStyle" eSuperTypes="#//Style">
<eStructuralFeatures xsi:type="ecore:EReference" name="diagramLink" eType="#//Diagram"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="MultiDiagramLinkStyle" eSuperTypes="#//Style">
<eStructuralFeatures xsi:type="ecore:EReference" name="diagramLinks" upperBound="-1"
eType="#//Diagram"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="TextAlignment">
<eLiterals name="Left"/>
<eLiterals name="Right" value="1"/>
<eLiterals name="Center" value="2"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="TextStyle" eSuperTypes="#//Style">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="textAlignment" eType="#//TextAlignment"
defaultValueLiteral="Left"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="LineType">
<eLiterals name="Solid"/>
<eLiterals name="Dash" value="1"/>
<eLiterals name="Dot" value="2"/>
<eLiterals name="DashDot" value="3"/>
<eLiterals name="DashDotDot" value="4"/>
<eLiterals name="Double" value="5"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="LineTypeStyle" eSuperTypes="#//Style">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="lineType" eType="#//LineType"
defaultValueLiteral="Solid"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="ArrowType">
<eLiterals name="None"/>
<eLiterals name="OpenArrow" value="1"/>
<eLiterals name="SolidArrow" value="2"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ArrowStyle" eSuperTypes="#//Style">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="arrowSource" eType="#//ArrowType"
defaultValueLiteral="None"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="arrowTarget" eType="#//ArrowType"
defaultValueLiteral="None"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Shape" eSuperTypes="#//Node #//ShapeStyle"/>
<eClassifiers xsi:type="ecore:EClass" name="Compartment" eSuperTypes="#//BasicCompartment #//CanonicalStyle #//TitleStyle"/>
<eClassifiers xsi:type="ecore:EClass" name="ListCompartment" eSuperTypes="#//BasicCompartment #//SortingStyle #//FilteringStyle #//TitleStyle"/>
<eClassifiers xsi:type="ecore:EClass" name="Connector" eSuperTypes="#//Edge #//ConnectorStyle"/>
<eClassifiers xsi:type="ecore:EClass" name="StandardDiagram" eSuperTypes="#//Diagram #//DiagramStyle"/>
<eClassifiers xsi:type="ecore:EClass" name="DecorationNode" eSuperTypes="#//BasicDecorationNode"/>
<eClassifiers xsi:type="ecore:EClass" name="BasicDecorationNode" eSuperTypes="#//Node"/>
<eClassifiers xsi:type="ecore:EClass" name="BasicCompartment" eSuperTypes="#//DecorationNode #//DrawerStyle"/>
<eClassifiers xsi:type="ecore:EClass" name="BasicSemanticCompartment" eSuperTypes="#//BasicDecorationNode #//DrawerStyle"/>
<eClassifiers xsi:type="ecore:EClass" name="SemanticListCompartment" eSuperTypes="#//BasicSemanticCompartment #//SortingStyle #//FilteringStyle #//TitleStyle"/>
<eClassifiers xsi:type="ecore:EEnum" name="GradientStyle">
<eLiterals name="Vertical"/>
<eLiterals name="Horizontal" value="1"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="GradientData" instanceClassName="org.eclipse.gmf.runtime.notation.datatype.GradientData"/>
<eClassifiers xsi:type="ecore:EClass" name="RoundedCornersStyle" eSuperTypes="#//Style">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="roundedBendpointsRadius"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt" defaultValueLiteral="0"/>
</eClassifiers>
</ecore:EPackage>
| github:ecore:/data/perelengo/org.eclipse.papyrus.incubation/layers/plugins/org.eclipse.papyrus.infra.gmfdiag.layers.model/model/notation/notation.ecore | ecore | notation
Edge
createBendpoints
eClass
createSourceAnchor
eClass
createTargetAnchor
eClass
source
target
bendpoints
sourceAnchor
targetAnchor
Node
createLayoutConstraint
eClass
layoutConstraint
Style
FillStyle
fillColor
16777215
transparency
-1
gradient
LineStyle
lineColor
11579568
lineWidth
-1
FontStyle
fontColor
0
fontName
Tahoma
fontHeight
9
bold
false
italic
false
underline
false
strikeThrough
false
TitleStyle
showTitle
false
SortingStyle
sorting
None
sortingKeys
sortedObjects
DescriptionStyle
description
LayoutConstraint
Size
width
-1
height
-1
Location
x
0
y
0
Bounds
Ratio
value
-1
Anchor
Bendpoints
Sorting
None
None
Manual
Manual
Automatic
Automatic
Filtering
None
None
Manual
Manual
Automatic
Automatic
IdentityAnchor
id
anchor
Routing
Manual
Manual
Rectilinear
Rectilinear
Tree
Tree
Smoothness
None
None
Normal
Normal
Less
Less
More
More
JumpLinkStatus
None
None
All
All
Below
Below
Above
Above
JumpLinkType
Semicircle
Semicircle
Square
Square
Chamfered
Chamfered
RoutingStyle
routing
Manual
smoothness
None
avoidObstructions
false
closestDistance
false
jumpLinkStatus
None
jumpLinkType
Semicircle
jumpLinksReverse
false
View
getStyle
eClass
createChild
eClass
createStyle
eClass
getNamedStyle
eClass
name
visible
true
type
mutable
false
sourceEdges
targetEdges
persistedChildren
styles
element
diagram
transientChildren
RelativeBendpoints
points
Diagram
createEdge
eClass
name
measurementUnit
Himetric
persistedEdges
TransientEdges
Image
data
CanonicalStyle
canonical
true
ShapeStyle
ConnectorStyle
RelativeBendpointList
java.util.List
java.util.List
PageStyle
pageX
0
pageY
0
pageWidth
100
pageHeight
100
DrawerStyle
collapsed
false
GuideStyle
horizontalGuides
verticalGuides
Guide
position
0
nodeMap
NodeEntry
java.util.Map$Entry
java.util.Map$Entry
value
Center
key
Alignment
Left
Left
Right
Right
Center
Center
Top
Top
Bottom
Bottom
FilteringStyle
filtering
None
filteringKeys
filteredObjects
FilterKeyList
java.util.List
java.util.List
SortKeyMap
java.util.Map
java.util.Map
SortingDirection
Ascending
Ascending
Descending
Descending
DiagramStyle
ImageStyle
antiAlias
true
maintainAspectRatio
true
cropBound
ImageBufferStyle
imageBuffer
MeasurementUnit
Himetric
Himetric
Pixel
Pixel
PropertiesSetStyle
getProperty
propertyName
setProperty
propertyName
newValue
createProperty
propertyName
instanceType
initialValue
removeProperty
propertyName
hasProperty
propertyName
createProperty
propertyName
initialValue
propertiesMap
StringToPropertyValueMapEntry
java.util.Map$Entry
java.util.Map$Entry
key
value
PropertyValue
getValue
setValue
newValue
rawValue
instanceType
SingleValueStyle
getValue
setValue
newValue
rawValue
ListValueStyle
rawValuesList
NamedStyle
name
StringObjectConverter
getStringFromObject
objectValue
getObjectFromString
stringValue
DataTypeStyle
instanceType
IntValueStyle
intValue
IntListValueStyle
intListValue
BooleanValueStyle
booleanValue
DoubleValueStyle
doubleValue
DoubleListValueStyle
doubleListValue
StringValueStyle
stringValue
StringListValueStyle
stringListValue
EObjectValueStyle
eObjectValue
EObjectListValueStyle
eObjectListValue
ByteArrayValueStyle
byteArrayValue
BooleanListValueStyle
booleanListValue
HintedDiagramLinkStyle
hint
DiagramLinkStyle
diagramLink
MultiDiagramLinkStyle
diagramLinks
TextAlignment
Left
Left
Right
Right
Center
Center
TextStyle
textAlignment
Left
LineType
Solid
Solid
Dash
Dash
Dot
Dot
DashDot
DashDot
DashDotDot
DashDotDot
Double
Double
LineTypeStyle
lineType
Solid
ArrowType
None
None
OpenArrow
OpenArrow
SolidArrow
SolidArrow
ArrowStyle
arrowSource
None
arrowTarget
None
Shape
Compartment
ListCompartment
Connector
StandardDiagram
DecorationNode
BasicDecorationNode
BasicCompartment
BasicSemanticCompartment
SemanticListCompartment
GradientStyle
Vertical
Vertical
Horizontal
Horizontal
GradientData
org.eclipse.gmf.runtime.notation.datatype.GradientData
org.eclipse.gmf.runtime.notation.datatype.GradientData
RoundedCornersStyle
roundedBendpointsRadius
0 | null | {"directed":true,"nodes":[{"nsPrefix":"notation","nsURI":"http://www.eclipse.org/gmf/runtime/1.0.2/notation","name":"notation","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Edge","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Node","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Style","instanceClass":null,"abstract":true,"id":3,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FillStyle","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LineStyle","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FontStyle","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TitleStyle","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SortingStyle","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DescriptionStyle","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LayoutConstraint","instanceClass":null,"abstract":true,"id":10,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Size","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Location","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Bounds","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Ratio","instanceClass":null,"abstract":false,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Anchor","instanceClass":null,"abstract":true,"id":15,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Bendpoints","instanceClass":null,"abstract":true,"id":16,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"Sorting","instanceClass":null,"id":17,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"Filtering","instanceClass":null,"id":18,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IdentityAnchor","instanceClass":null,"abstract":false,"id":19,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"Routing","instanceClass":null,"id":20,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"Smoothness","instanceClass":null,"id":21,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"JumpLinkStatus","instanceClass":null,"id":22,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"JumpLinkType","instanceClass":null,"id":23,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RoutingStyle","instanceClass":null,"abstract":false,"id":24,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"View","instanceClass":null,"abstract":true,"id":25,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RelativeBendpoints","instanceClass":null,"abstract":false,"id":26,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Diagram","instanceClass":null,"abstract":false,"id":27,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Image","instanceClass":null,"abstract":false,"id":28,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CanonicalStyle","instanceClass":null,"abstract":false,"id":29,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ShapeStyle","instanceClass":null,"abstract":false,"id":30,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ConnectorStyle","instanceClass":null,"abstract":false,"id":31,"interface":false,"eClass":"EClass"},{"instanceTypeName":"java.util.List","defaultValue":null,"instanceClassName":"java.util.List","name":"RelativeBendpointList","instanceClass":"java.util.List","id":32,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PageStyle","instanceClass":null,"abstract":false,"id":33,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DrawerStyle","instanceClass":null,"abstract":false,"id":34,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"GuideStyle","instanceClass":null,"abstract":false,"id":35,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Guide","instanceClass":null,"abstract":false,"id":36,"interface":false,"eClass":"EClass"},{"instanceTypeName":"java.util.Map$Entry","defaultValue":null,"instanceClassName":"java.util.Map$Entry","name":"NodeEntry","instanceClass":"java.util.Map$Entry","abstract":false,"id":37,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"Alignment","instanceClass":null,"id":38,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FilteringStyle","instanceClass":null,"abstract":false,"id":39,"interface":false,"eClass":"EClass"},{"instanceTypeName":"java.util.List","defaultValue":null,"instanceClassName":"java.util.List","name":"FilterKeyList","instanceClass":"java.util.List","id":40,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.util.Map","defaultValue":null,"instanceClassName":"java.util.Map","name":"SortKeyMap","instanceClass":"java.util.Map","id":41,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":null,"instanceClassName":null,"name":"SortingDirection","instanceClass":null,"id":42,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DiagramStyle","instanceClass":null,"abstract":false,"id":43,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ImageStyle","instanceClass":null,"abstract":false,"id":44,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ImageBufferStyle","instanceClass":null,"abstract":false,"id":45,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"MeasurementUnit","instanceClass":null,"id":46,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PropertiesSetStyle","instanceClass":null,"abstract":false,"id":47,"interface":false,"eClass":"EClass"},{"instanceTypeName":"java.util.Map$Entry","defaultValue":null,"instanceClassName":"java.util.Map$Entry","name":"StringToPropertyValueMapEntry","instanceClass":"java.util.Map$Entry","abstract":false,"id":48,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PropertyValue","instanceClass":null,"abstract":false,"id":49,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SingleValueStyle","instanceClass":null,"abstract":false,"id":50,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ListValueStyle","instanceClass":null,"abstract":false,"id":51,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NamedStyle","instanceClass":null,"abstract":false,"id":52,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StringObjectConverter","instanceClass":null,"abstract":true,"id":53,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DataTypeStyle","instanceClass":null,"abstract":false,"id":54,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IntValueStyle","instanceClass":null,"abstract":false,"id":55,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IntListValueStyle","instanceClass":null,"abstract":false,"id":56,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BooleanValueStyle","instanceClass":null,"abstract":false,"id":57,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DoubleValueStyle","instanceClass":null,"abstract":false,"id":58,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DoubleListValueStyle","instanceClass":null,"abstract":false,"id":59,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StringValueStyle","instanceClass":null,"abstract":false,"id":60,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StringListValueStyle","instanceClass":null,"abstract":false,"id":61,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EObjectValueStyle","instanceClass":null,"abstract":false,"id":62,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EObjectListValueStyle","instanceClass":null,"abstract":false,"id":63,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ByteArrayValueStyle","instanceClass":null,"abstract":false,"id":64,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BooleanListValueStyle","instanceClass":null,"abstract":false,"id":65,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"HintedDiagramLinkStyle","instanceClass":null,"abstract":false,"id":66,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DiagramLinkStyle","instanceClass":null,"abstract":false,"id":67,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MultiDiagramLinkStyle","instanceClass":null,"abstract":false,"id":68,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"TextAlignment","instanceClass":null,"id":69,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TextStyle","instanceClass":null,"abstract":false,"id":70,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"LineType","instanceClass":null,"id":71,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LineTypeStyle","instanceClass":null,"abstract":false,"id":72,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"ArrowType","instanceClass":null,"id":73,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ArrowStyle","instanceClass":null,"abstract":false,"id":74,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Shape","instanceClass":null,"abstract":false,"id":75,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Compartment","instanceClass":null,"abstract":false,"id":76,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ListCompartment","instanceClass":null,"abstract":false,"id":77,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Connector","instanceClass":null,"abstract":false,"id":78,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StandardDiagram","instanceClass":null,"abstract":false,"id":79,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DecorationNode","instanceClass":null,"abstract":false,"id":80,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BasicDecorationNode","instanceClass":null,"abstract":false,"id":81,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BasicCompartment","instanceClass":null,"abstract":false,"id":82,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BasicSemanticCompartment","instanceClass":null,"abstract":false,"id":83,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SemanticListCompartment","instanceClass":null,"abstract":false,"id":84,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"GradientStyle","instanceClass":null,"id":85,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":"org.eclipse.gmf.runtime.notation.datatype.GradientData","defaultValue":null,"instanceClassName":"org.eclipse.gmf.runtime.notation.datatype.GradientData","name":"GradientData","instanceClass":null,"id":86,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RoundedCornersStyle","instanceClass":null,"abstract":false,"id":87,"interface":false,"eClass":"EClass"},{"ordered":true,"upperBound":1,"unique":true,"name":"createBendpoints","lowerBound":0,"id":88,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"createSourceAnchor","lowerBound":0,"id":89,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"createTargetAnchor","lowerBound":0,"id":90,"many":false,"required":false,"eClass":"EOperation"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"source","changeable":true,"resolveProxies":false,"lowerBound":1,"id":91,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"target","changeable":true,"resolveProxies":false,"lowerBound":1,"id":92,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"bendpoints","changeable":true,"resolveProxies":true,"lowerBound":0,"id":93,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"sourceAnchor","changeable":true,"resolveProxies":true,"lowerBound":0,"id":94,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"targetAnchor","changeable":true,"resolveProxies":true,"lowerBound":0,"id":95,"derived":false},{"id":96,"eClass":"EGenericType"},{"id":97,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"eClass","lowerBound":0,"id":98,"many":false,"required":false,"eClass":"EParameter"},{"id":99,"eClass":"EGenericType"},{"id":100,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"eClass","lowerBound":0,"id":101,"many":false,"required":false,"eClass":"EParameter"},{"id":102,"eClass":"EGenericType"},{"id":103,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"eClass","lowerBound":0,"id":104,"many":false,"required":false,"eClass":"EParameter"},{"id":105,"eClass":"EGenericType"},{"id":106,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"sourceEdges","changeable":true,"resolveProxies":false,"lowerBound":0,"id":107,"derived":false},{"id":108,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"targetEdges","changeable":true,"resolveProxies":false,"lowerBound":0,"id":109,"derived":false},{"id":110,"eClass":"EGenericType"},{"id":111,"eClass":"EGenericType"},{"id":112,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"createLayoutConstraint","lowerBound":0,"id":113,"many":false,"required":false,"eClass":"EOperation"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"layoutConstraint","changeable":true,"resolveProxies":true,"lowerBound":0,"id":114,"derived":false},{"id":115,"eClass":"EGenericType"},{"id":116,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"eClass","lowerBound":0,"id":117,"many":false,"required":false,"eClass":"EParameter"},{"id":118,"eClass":"EGenericType"},{"id":119,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":16777215,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"16777215","unsettable":false,"transient":false,"unique":true,"name":"fillColor","changeable":true,"lowerBound":0,"iD":false,"id":120,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":-1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"-1","unsettable":false,"transient":false,"unique":true,"name":"transparency","changeable":true,"lowerBound":0,"iD":false,"id":121,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"gradient","changeable":true,"lowerBound":0,"iD":false,"id":122,"derived":false},{"id":123,"eClass":"EGenericType"},{"id":124,"eClass":"EGenericType"},{"id":125,"eClass":"EGenericType"},{"id":126,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":11579568,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"11579568","unsettable":false,"transient":false,"unique":true,"name":"lineColor","changeable":true,"lowerBound":0,"iD":false,"id":127,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"-1","unsettable":false,"transient":false,"unique":true,"name":"lineWidth","changeable":true,"lowerBound":0,"iD":false,"id":128,"derived":false},{"id":129,"eClass":"EGenericType"},{"id":130,"eClass":"EGenericType"},{"id":131,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"0","unsettable":false,"transient":false,"unique":true,"name":"fontColor","changeable":true,"lowerBound":0,"iD":false,"id":132,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":"Tahoma","volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"Tahoma","unsettable":false,"transient":false,"unique":true,"name":"fontName","changeable":true,"lowerBound":0,"iD":false,"id":133,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":9,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"9","unsettable":false,"transient":false,"unique":true,"name":"fontHeight","changeable":true,"lowerBound":0,"iD":false,"id":134,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"false","unsettable":false,"transient":false,"unique":true,"name":"bold","changeable":true,"lowerBound":0,"iD":false,"id":135,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"false","unsettable":false,"transient":false,"unique":true,"name":"italic","changeable":true,"lowerBound":0,"iD":false,"id":136,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"false","unsettable":false,"transient":false,"unique":true,"name":"underline","changeable":true,"lowerBound":0,"iD":false,"id":137,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"false","unsettable":false,"transient":false,"unique":true,"name":"strikeThrough","changeable":true,"lowerBound":0,"iD":false,"id":138,"derived":false},{"id":139,"eClass":"EGenericType"},{"id":140,"eClass":"EGenericType"},{"id":141,"eClass":"EGenericType"},{"id":142,"eClass":"EGenericType"},{"id":143,"eClass":"EGenericType"},{"id":144,"eClass":"EGenericType"},{"id":145,"eClass":"EGenericType"},{"id":146,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"false","unsettable":false,"transient":false,"unique":true,"name":"showTitle","changeable":true,"lowerBound":0,"iD":false,"id":147,"derived":false},{"id":148,"eClass":"EGenericType"},{"id":149,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"None","unsettable":false,"transient":false,"unique":true,"name":"sorting","changeable":true,"lowerBound":0,"iD":false,"id":150,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"sortingKeys","changeable":true,"lowerBound":0,"iD":false,"id":151,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"sortedObjects","changeable":true,"resolveProxies":true,"lowerBound":0,"id":152,"derived":false},{"id":153,"eClass":"EGenericType"},{"id":154,"eClass":"EGenericType"},{"id":155,"eClass":"EGenericType"},{"id":156,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":"","volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"","unsettable":false,"transient":false,"unique":true,"name":"description","changeable":true,"lowerBound":0,"iD":false,"id":157,"derived":false},{"id":158,"eClass":"EGenericType"},{"id":159,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":-1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"-1","unsettable":false,"transient":false,"unique":true,"name":"width","changeable":true,"lowerBound":0,"iD":false,"id":160,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":-1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"-1","unsettable":false,"transient":false,"unique":true,"name":"height","changeable":true,"lowerBound":0,"iD":false,"id":161,"derived":false},{"id":162,"eClass":"EGenericType"},{"id":163,"eClass":"EGenericType"},{"id":164,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"0","unsettable":false,"transient":false,"unique":true,"name":"x","changeable":true,"lowerBound":0,"iD":false,"id":165,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"0","unsettable":false,"transient":false,"unique":true,"name":"y","changeable":true,"lowerBound":0,"iD":false,"id":166,"derived":false},{"id":167,"eClass":"EGenericType"},{"id":168,"eClass":"EGenericType"},{"id":169,"eClass":"EGenericType"},{"id":170,"eClass":"EGenericType"},{"id":171,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":-1.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"-1","unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":0,"iD":false,"id":172,"derived":false},{"id":173,"eClass":"EGenericType"},{"id":174,"eClass":"EGenericType"},{"name":"None","id":175,"value":0,"literal":"None","eClass":"EEnumLiteral"},{"name":"Manual","id":176,"value":1,"literal":"Manual","eClass":"EEnumLiteral"},{"name":"Automatic","id":177,"value":2,"literal":"Automatic","eClass":"EEnumLiteral"},{"name":"None","id":178,"value":0,"literal":"None","eClass":"EEnumLiteral"},{"name":"Manual","id":179,"value":1,"literal":"Manual","eClass":"EEnumLiteral"},{"name":"Automatic","id":180,"value":2,"literal":"Automatic","eClass":"EEnumLiteral"},{"ordered":true,"upperBound":1,"defaultValue":"anchor","volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"anchor","unsettable":false,"transient":false,"unique":true,"name":"id","changeable":true,"lowerBound":0,"iD":false,"id":181,"derived":false},{"id":182,"eClass":"EGenericType"},{"id":183,"eClass":"EGenericType"},{"name":"Manual","id":184,"value":0,"literal":"Manual","eClass":"EEnumLiteral"},{"name":"Rectilinear","id":185,"value":1,"literal":"Rectilinear","eClass":"EEnumLiteral"},{"name":"Tree","id":186,"value":2,"literal":"Tree","eClass":"EEnumLiteral"},{"name":"None","id":187,"value":0,"literal":"None","eClass":"EEnumLiteral"},{"name":"Normal","id":188,"value":1,"literal":"Normal","eClass":"EEnumLiteral"},{"name":"Less","id":189,"value":2,"literal":"Less","eClass":"EEnumLiteral"},{"name":"More","id":190,"value":3,"literal":"More","eClass":"EEnumLiteral"},{"name":"None","id":191,"value":0,"literal":"None","eClass":"EEnumLiteral"},{"name":"All","id":192,"value":1,"literal":"All","eClass":"EEnumLiteral"},{"name":"Below","id":193,"value":2,"literal":"Below","eClass":"EEnumLiteral"},{"name":"Above","id":194,"value":3,"literal":"Above","eClass":"EEnumLiteral"},{"name":"Semicircle","id":195,"value":0,"literal":"Semicircle","eClass":"EEnumLiteral"},{"name":"Square","id":196,"value":1,"literal":"Square","eClass":"EEnumLiteral"},{"name":"Chamfered","id":197,"value":2,"literal":"Chamfered","eClass":"EEnumLiteral"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"Manual","unsettable":false,"transient":false,"unique":true,"name":"routing","changeable":true,"lowerBound":0,"iD":false,"id":198,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"None","unsettable":false,"transient":false,"unique":true,"name":"smoothness","changeable":true,"lowerBound":0,"iD":false,"id":199,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"false","unsettable":false,"transient":false,"unique":true,"name":"avoidObstructions","changeable":true,"lowerBound":0,"iD":false,"id":200,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"false","unsettable":false,"transient":false,"unique":true,"name":"closestDistance","changeable":true,"lowerBound":0,"iD":false,"id":201,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"None","unsettable":false,"transient":false,"unique":true,"name":"jumpLinkStatus","changeable":true,"lowerBound":0,"iD":false,"id":202,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"Semicircle","unsettable":false,"transient":false,"unique":true,"name":"jumpLinkType","changeable":true,"lowerBound":0,"iD":false,"id":203,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"false","unsettable":false,"transient":false,"unique":true,"name":"jumpLinksReverse","changeable":true,"lowerBound":0,"iD":false,"id":204,"derived":false},{"id":205,"eClass":"EGenericType"},{"id":206,"eClass":"EGenericType"},{"id":207,"eClass":"EGenericType"},{"id":208,"eClass":"EGenericType"},{"id":209,"eClass":"EGenericType"},{"id":210,"eClass":"EGenericType"},{"id":211,"eClass":"EGenericType"},{"id":212,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"getStyle","lowerBound":0,"id":213,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"createChild","lowerBound":0,"id":214,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"createStyle","lowerBound":0,"id":215,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getNamedStyle","lowerBound":0,"id":216,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"defaultValue":true,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"true","unsettable":false,"transient":false,"unique":true,"name":"visible","changeable":true,"lowerBound":0,"iD":false,"id":217,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":"","volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"","unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"lowerBound":0,"iD":false,"id":218,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"false","unsettable":false,"transient":true,"unique":true,"name":"mutable","changeable":true,"lowerBound":0,"iD":false,"id":219,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"persistedChildren","changeable":true,"resolveProxies":true,"lowerBound":0,"id":220,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"styles","changeable":true,"resolveProxies":true,"lowerBound":0,"id":221,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":true,"transient":false,"unique":true,"name":"element","changeable":true,"resolveProxies":true,"lowerBound":0,"id":222,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":true,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"diagram","changeable":false,"resolveProxies":true,"lowerBound":1,"id":223,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":true,"unique":true,"name":"transientChildren","changeable":true,"resolveProxies":true,"lowerBound":0,"id":224,"derived":false},{"id":225,"eClass":"EGenericType"},{"id":226,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"eClass","lowerBound":0,"id":227,"many":false,"required":false,"eClass":"EParameter"},{"id":228,"eClass":"EGenericType"},{"id":229,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"eClass","lowerBound":0,"id":230,"many":false,"required":false,"eClass":"EParameter"},{"id":231,"eClass":"EGenericType"},{"id":232,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"eClass","lowerBound":0,"id":233,"many":false,"required":false,"eClass":"EParameter"},{"id":234,"eClass":"EGenericType"},{"id":235,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"eClass","lowerBound":0,"id":236,"many":false,"required":false,"eClass":"EParameter"},{"ordered":true,"upperBound":1,"unique":true,"name":"name","lowerBound":0,"id":237,"many":false,"required":false,"eClass":"EParameter"},{"id":238,"eClass":"EGenericType"},{"id":239,"eClass":"EGenericType"},{"id":240,"eClass":"EGenericType"},{"id":241,"eClass":"EGenericType"},{"id":242,"eClass":"EGenericType"},{"id":243,"eClass":"EGenericType"},{"id":244,"eClass":"EGenericType"},{"id":245,"eClass":"EGenericType"},{"id":246,"eClass":"EGenericType"},{"id":247,"eClass":"EGenericType"},{"id":248,"eClass":"EGenericType"},{"id":249,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"points","changeable":true,"lowerBound":0,"iD":false,"id":250,"derived":false},{"id":251,"eClass":"EGenericType"},{"id":252,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"createEdge","lowerBound":0,"id":253,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"defaultValue":"","volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"","unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":254,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"Himetric","unsettable":true,"transient":false,"unique":true,"name":"measurementUnit","changeable":true,"lowerBound":0,"iD":false,"id":255,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"persistedEdges","changeable":true,"resolveProxies":true,"lowerBound":0,"id":256,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":true,"unique":true,"name":"TransientEdges","changeable":true,"resolveProxies":true,"lowerBound":0,"id":257,"derived":false},{"id":258,"eClass":"EGenericType"},{"id":259,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"eClass","lowerBound":0,"id":260,"many":false,"required":false,"eClass":"EParameter"},{"id":261,"eClass":"EGenericType"},{"id":262,"eClass":"EGenericType"},{"id":263,"eClass":"EGenericType"},{"id":264,"eClass":"EGenericType"},{"id":265,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"data","changeable":true,"lowerBound":0,"iD":false,"id":266,"derived":false},{"id":267,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":true,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"true","unsettable":false,"transient":false,"unique":true,"name":"canonical","changeable":true,"lowerBound":0,"iD":false,"id":268,"derived":false},{"id":269,"eClass":"EGenericType"},{"id":270,"eClass":"EGenericType"},{"id":271,"eClass":"EGenericType"},{"id":272,"eClass":"EGenericType"},{"id":273,"eClass":"EGenericType"},{"id":274,"eClass":"EGenericType"},{"id":275,"eClass":"EGenericType"},{"id":276,"eClass":"EGenericType"},{"id":277,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"0","unsettable":false,"transient":false,"unique":true,"name":"pageX","changeable":true,"lowerBound":0,"iD":false,"id":278,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"0","unsettable":false,"transient":false,"unique":true,"name":"pageY","changeable":true,"lowerBound":0,"iD":false,"id":279,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":100,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"100","unsettable":false,"transient":false,"unique":true,"name":"pageWidth","changeable":true,"lowerBound":0,"iD":false,"id":280,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":100,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"100","unsettable":false,"transient":false,"unique":true,"name":"pageHeight","changeable":true,"lowerBound":0,"iD":false,"id":281,"derived":false},{"id":282,"eClass":"EGenericType"},{"id":283,"eClass":"EGenericType"},{"id":284,"eClass":"EGenericType"},{"id":285,"eClass":"EGenericType"},{"id":286,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"false","unsettable":false,"transient":false,"unique":true,"name":"collapsed","changeable":true,"lowerBound":0,"iD":false,"id":287,"derived":false},{"id":288,"eClass":"EGenericType"},{"id":289,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"horizontalGuides","changeable":true,"resolveProxies":false,"lowerBound":0,"id":290,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"verticalGuides","changeable":true,"resolveProxies":false,"lowerBound":0,"id":291,"derived":false},{"id":292,"eClass":"EGenericType"},{"id":293,"eClass":"EGenericType"},{"id":294,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"0","unsettable":false,"transient":false,"unique":true,"name":"position","changeable":true,"lowerBound":0,"iD":false,"id":295,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"nodeMap","changeable":true,"resolveProxies":true,"lowerBound":0,"id":296,"derived":false},{"id":297,"eClass":"EGenericType"},{"id":298,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"Center","unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":0,"iD":false,"id":299,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"key","changeable":true,"resolveProxies":true,"lowerBound":1,"id":300,"derived":false},{"id":301,"eClass":"EGenericType"},{"id":302,"eClass":"EGenericType"},{"name":"Left","id":303,"value":0,"literal":"Left","eClass":"EEnumLiteral"},{"name":"Right","id":304,"value":1,"literal":"Right","eClass":"EEnumLiteral"},{"name":"Center","id":305,"value":2,"literal":"Center","eClass":"EEnumLiteral"},{"name":"Top","id":306,"value":3,"literal":"Top","eClass":"EEnumLiteral"},{"name":"Bottom","id":307,"value":4,"literal":"Bottom","eClass":"EEnumLiteral"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"None","unsettable":false,"transient":false,"unique":true,"name":"filtering","changeable":true,"lowerBound":0,"iD":false,"id":308,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"filteringKeys","changeable":true,"lowerBound":0,"iD":false,"id":309,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"filteredObjects","changeable":true,"resolveProxies":true,"lowerBound":0,"id":310,"derived":false},{"id":311,"eClass":"EGenericType"},{"id":312,"eClass":"EGenericType"},{"id":313,"eClass":"EGenericType"},{"id":314,"eClass":"EGenericType"},{"name":"Ascending","id":315,"value":0,"literal":"Ascending","eClass":"EEnumLiteral"},{"name":"Descending","id":316,"value":1,"literal":"Descending","eClass":"EEnumLiteral"},{"id":317,"eClass":"EGenericType"},{"id":318,"eClass":"EGenericType"},{"id":319,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":true,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"true","unsettable":false,"transient":false,"unique":true,"name":"antiAlias","changeable":true,"lowerBound":0,"iD":false,"id":320,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":true,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"true","unsettable":false,"transient":false,"unique":true,"name":"maintainAspectRatio","changeable":true,"lowerBound":0,"iD":false,"id":321,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"cropBound","changeable":true,"resolveProxies":true,"lowerBound":1,"id":322,"derived":false},{"id":323,"eClass":"EGenericType"},{"id":324,"eClass":"EGenericType"},{"id":325,"eClass":"EGenericType"},{"id":326,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"imageBuffer","changeable":true,"resolveProxies":true,"lowerBound":1,"id":327,"derived":false},{"id":328,"eClass":"EGenericType"},{"id":329,"eClass":"EGenericType"},{"name":"Himetric","id":330,"value":0,"literal":"Himetric","eClass":"EEnumLiteral"},{"name":"Pixel","id":331,"value":1,"literal":"Pixel","eClass":"EEnumLiteral"},{"ordered":true,"upperBound":1,"unique":true,"name":"getProperty","lowerBound":0,"id":332,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"setProperty","lowerBound":0,"id":333,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"createProperty","lowerBound":0,"id":334,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"removeProperty","lowerBound":0,"id":335,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"hasProperty","lowerBound":0,"id":336,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"createProperty","lowerBound":0,"id":337,"many":false,"required":false,"eClass":"EOperation"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"propertiesMap","changeable":true,"resolveProxies":true,"lowerBound":0,"id":338,"derived":false},{"id":339,"eClass":"EGenericType"},{"id":340,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"propertyName","lowerBound":0,"id":341,"many":false,"required":false,"eClass":"EParameter"},{"id":342,"eClass":"EGenericType"},{"id":343,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"propertyName","lowerBound":0,"id":344,"many":false,"required":false,"eClass":"EParameter"},{"ordered":true,"upperBound":1,"unique":true,"name":"newValue","lowerBound":0,"id":345,"many":false,"required":false,"eClass":"EParameter"},{"id":346,"eClass":"EGenericType"},{"id":347,"eClass":"EGenericType"},{"id":348,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"propertyName","lowerBound":0,"id":349,"many":false,"required":false,"eClass":"EParameter"},{"ordered":true,"upperBound":1,"unique":true,"name":"instanceType","lowerBound":0,"id":350,"many":false,"required":false,"eClass":"EParameter"},{"ordered":true,"upperBound":1,"unique":true,"name":"initialValue","lowerBound":0,"id":351,"many":false,"required":false,"eClass":"EParameter"},{"id":352,"eClass":"EGenericType"},{"id":353,"eClass":"EGenericType"},{"id":354,"eClass":"EGenericType"},{"id":355,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"propertyName","lowerBound":0,"id":356,"many":false,"required":false,"eClass":"EParameter"},{"id":357,"eClass":"EGenericType"},{"id":358,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"propertyName","lowerBound":0,"id":359,"many":false,"required":false,"eClass":"EParameter"},{"id":360,"eClass":"EGenericType"},{"id":361,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"propertyName","lowerBound":0,"id":362,"many":false,"required":false,"eClass":"EParameter"},{"ordered":true,"upperBound":1,"unique":true,"name":"initialValue","lowerBound":0,"id":363,"many":false,"required":false,"eClass":"EParameter"},{"id":364,"eClass":"EGenericType"},{"id":365,"eClass":"EGenericType"},{"id":366,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"key","changeable":true,"lowerBound":0,"iD":false,"id":367,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"resolveProxies":false,"lowerBound":0,"id":368,"derived":false},{"id":369,"eClass":"EGenericType"},{"id":370,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"getValue","lowerBound":0,"id":371,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"setValue","lowerBound":0,"id":372,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"rawValue","changeable":true,"lowerBound":0,"iD":false,"id":373,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"instanceType","changeable":true,"resolveProxies":true,"lowerBound":0,"id":374,"derived":false},{"id":375,"eClass":"EGenericType"},{"id":376,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"newValue","lowerBound":0,"id":377,"many":false,"required":false,"eClass":"EParameter"},{"id":378,"eClass":"EGenericType"},{"id":379,"eClass":"EGenericType"},{"id":380,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"getValue","lowerBound":0,"id":381,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"setValue","lowerBound":0,"id":382,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"rawValue","changeable":true,"lowerBound":0,"iD":false,"id":383,"derived":false},{"id":384,"eClass":"EGenericType"},{"id":385,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"newValue","lowerBound":0,"id":386,"many":false,"required":false,"eClass":"EParameter"},{"id":387,"eClass":"EGenericType"},{"id":388,"eClass":"EGenericType"},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"rawValuesList","changeable":true,"lowerBound":0,"iD":false,"id":389,"derived":false},{"id":390,"eClass":"EGenericType"},{"id":391,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":392,"derived":false},{"id":393,"eClass":"EGenericType"},{"id":394,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"getStringFromObject","lowerBound":0,"id":395,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getObjectFromString","lowerBound":0,"id":396,"many":false,"required":false,"eClass":"EOperation"},{"id":397,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"objectValue","lowerBound":0,"id":398,"many":false,"required":false,"eClass":"EParameter"},{"id":399,"eClass":"EGenericType"},{"id":400,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"stringValue","lowerBound":0,"id":401,"many":false,"required":false,"eClass":"EParameter"},{"id":402,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"instanceType","changeable":true,"resolveProxies":true,"lowerBound":0,"id":403,"derived":false},{"id":404,"eClass":"EGenericType"},{"id":405,"eClass":"EGenericType"},{"id":406,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"intValue","changeable":true,"lowerBound":0,"iD":false,"id":407,"derived":false},{"id":408,"eClass":"EGenericType"},{"id":409,"eClass":"EGenericType"},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"intListValue","changeable":true,"lowerBound":0,"iD":false,"id":410,"derived":false},{"id":411,"eClass":"EGenericType"},{"id":412,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"booleanValue","changeable":true,"lowerBound":0,"iD":false,"id":413,"derived":false},{"id":414,"eClass":"EGenericType"},{"id":415,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"doubleValue","changeable":true,"lowerBound":0,"iD":false,"id":416,"derived":false},{"id":417,"eClass":"EGenericType"},{"id":418,"eClass":"EGenericType"},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"doubleListValue","changeable":true,"lowerBound":0,"iD":false,"id":419,"derived":false},{"id":420,"eClass":"EGenericType"},{"id":421,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"stringValue","changeable":true,"lowerBound":0,"iD":false,"id":422,"derived":false},{"id":423,"eClass":"EGenericType"},{"id":424,"eClass":"EGenericType"},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"stringListValue","changeable":true,"lowerBound":0,"iD":false,"id":425,"derived":false},{"id":426,"eClass":"EGenericType"},{"id":427,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"eObjectValue","changeable":true,"resolveProxies":true,"lowerBound":0,"id":428,"derived":false},{"id":429,"eClass":"EGenericType"},{"id":430,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"eObjectListValue","changeable":true,"resolveProxies":true,"lowerBound":0,"id":431,"derived":false},{"id":432,"eClass":"EGenericType"},{"id":433,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"byteArrayValue","changeable":true,"lowerBound":0,"iD":false,"id":434,"derived":false},{"id":435,"eClass":"EGenericType"},{"id":436,"eClass":"EGenericType"},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"booleanListValue","changeable":true,"lowerBound":0,"iD":false,"id":437,"derived":false},{"id":438,"eClass":"EGenericType"},{"id":439,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"hint","changeable":true,"lowerBound":0,"iD":false,"id":440,"derived":false},{"id":441,"eClass":"EGenericType"},{"id":442,"eClass":"EGenericType"},{"id":443,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"diagramLink","changeable":true,"resolveProxies":true,"lowerBound":0,"id":444,"derived":false},{"id":445,"eClass":"EGenericType"},{"id":446,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"diagramLinks","changeable":true,"resolveProxies":true,"lowerBound":0,"id":447,"derived":false},{"id":448,"eClass":"EGenericType"},{"id":449,"eClass":"EGenericType"},{"name":"Left","id":450,"value":0,"literal":"Left","eClass":"EEnumLiteral"},{"name":"Right","id":451,"value":1,"literal":"Right","eClass":"EEnumLiteral"},{"name":"Center","id":452,"value":2,"literal":"Center","eClass":"EEnumLiteral"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"Left","unsettable":false,"transient":false,"unique":true,"name":"textAlignment","changeable":true,"lowerBound":0,"iD":false,"id":453,"derived":false},{"id":454,"eClass":"EGenericType"},{"id":455,"eClass":"EGenericType"},{"name":"Solid","id":456,"value":0,"literal":"Solid","eClass":"EEnumLiteral"},{"name":"Dash","id":457,"value":1,"literal":"Dash","eClass":"EEnumLiteral"},{"name":"Dot","id":458,"value":2,"literal":"Dot","eClass":"EEnumLiteral"},{"name":"DashDot","id":459,"value":3,"literal":"DashDot","eClass":"EEnumLiteral"},{"name":"DashDotDot","id":460,"value":4,"literal":"DashDotDot","eClass":"EEnumLiteral"},{"name":"Double","id":461,"value":5,"literal":"Double","eClass":"EEnumLiteral"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"Solid","unsettable":false,"transient":false,"unique":true,"name":"lineType","changeable":true,"lowerBound":0,"iD":false,"id":462,"derived":false},{"id":463,"eClass":"EGenericType"},{"id":464,"eClass":"EGenericType"},{"name":"None","id":465,"value":0,"literal":"None","eClass":"EEnumLiteral"},{"name":"OpenArrow","id":466,"value":1,"literal":"OpenArrow","eClass":"EEnumLiteral"},{"name":"SolidArrow","id":467,"value":2,"literal":"SolidArrow","eClass":"EEnumLiteral"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"None","unsettable":false,"transient":false,"unique":true,"name":"arrowSource","changeable":true,"lowerBound":0,"iD":false,"id":468,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"None","unsettable":false,"transient":false,"unique":true,"name":"arrowTarget","changeable":true,"lowerBound":0,"iD":false,"id":469,"derived":false},{"id":470,"eClass":"EGenericType"},{"id":471,"eClass":"EGenericType"},{"id":472,"eClass":"EGenericType"},{"id":473,"eClass":"EGenericType"},{"id":474,"eClass":"EGenericType"},{"id":475,"eClass":"EGenericType"},{"id":476,"eClass":"EGenericType"},{"id":477,"eClass":"EGenericType"},{"id":478,"eClass":"EGenericType"},{"id":479,"eClass":"EGenericType"},{"id":480,"eClass":"EGenericType"},{"id":481,"eClass":"EGenericType"},{"id":482,"eClass":"EGenericType"},{"id":483,"eClass":"EGenericType"},{"id":484,"eClass":"EGenericType"},{"id":485,"eClass":"EGenericType"},{"id":486,"eClass":"EGenericType"},{"id":487,"eClass":"EGenericType"},{"id":488,"eClass":"EGenericType"},{"id":489,"eClass":"EGenericType"},{"id":490,"eClass":"EGenericType"},{"id":491,"eClass":"EGenericType"},{"id":492,"eClass":"EGenericType"},{"id":493,"eClass":"EGenericType"},{"id":494,"eClass":"EGenericType"},{"id":495,"eClass":"EGenericType"},{"name":"Vertical","id":496,"value":0,"literal":"Vertical","eClass":"EEnumLiteral"},{"name":"Horizontal","id":497,"value":1,"literal":"Horizontal","eClass":"EEnumLiteral"},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"0","unsettable":false,"transient":false,"unique":true,"name":"roundedBendpointsRadius","changeable":true,"lowerBound":0,"iD":false,"id":498,"derived":false},{"id":499,"eClass":"EGenericType"},{"id":500,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":0,"target":8},{"source":0,"target":9},{"source":0,"target":10},{"source":0,"target":11},{"source":0,"target":12},{"source":0,"target":13},{"source":0,"target":14},{"source":0,"target":15},{"source":0,"target":16},{"source":0,"target":17},{"source":0,"target":18},{"source":0,"target":19},{"source":0,"target":20},{"source":0,"target":21},{"source":0,"target":22},{"source":0,"target":23},{"source":0,"target":24},{"source":0,"target":25},{"source":0,"target":26},{"source":0,"target":27},{"source":0,"target":28},{"source":0,"target":29},{"source":0,"target":30},{"source":0,"target":31},{"source":0,"target":32},{"source":0,"target":33},{"source":0,"target":34},{"source":0,"target":35},{"source":0,"target":36},{"source":0,"target":37},{"source":0,"target":38},{"source":0,"target":39},{"source":0,"target":40},{"source":0,"target":41},{"source":0,"target":42},{"source":0,"target":43},{"source":0,"target":44},{"source":0,"target":45},{"source":0,"target":46},{"source":0,"target":47},{"source":0,"target":48},{"source":0,"target":49},{"source":0,"target":50},{"source":0,"target":51},{"source":0,"target":52},{"source":0,"target":53},{"source":0,"target":54},{"source":0,"target":55},{"source":0,"target":56},{"source":0,"target":57},{"source":0,"target":58},{"source":0,"target":59},{"source":0,"target":60},{"source":0,"target":61},{"source":0,"target":62},{"source":0,"target":63},{"source":0,"target":64},{"source":0,"target":65},{"source":0,"target":66},{"source":0,"target":67},{"source":0,"target":68},{"source":0,"target":69},{"source":0,"target":70},{"source":0,"target":71},{"source":0,"target":72},{"source":0,"target":73},{"source":0,"target":74},{"source":0,"target":75},{"source":0,"target":76},{"source":0,"target":77},{"source":0,"target":78},{"source":0,"target":79},{"source":0,"target":80},{"source":0,"target":81},{"source":0,"target":82},{"source":0,"target":83},{"source":0,"target":84},{"source":0,"target":85},{"source":0,"target":86},{"source":0,"target":87},{"source":1,"target":0},{"source":1,"target":25},{"source":1,"target":88},{"source":1,"target":89},{"source":1,"target":90},{"source":1,"target":91},{"source":1,"target":92},{"source":1,"target":93},{"source":1,"target":94},{"source":1,"target":95},{"source":1,"target":96},{"source":88,"target":16},{"source":88,"target":97},{"source":88,"target":1},{"source":88,"target":98},{"source":97,"target":16},{"source":98,"target":99},{"source":98,"target":88},{"source":89,"target":15},{"source":89,"target":100},{"source":89,"target":1},{"source":89,"target":101},{"source":100,"target":15},{"source":101,"target":102},{"source":101,"target":89},{"source":90,"target":15},{"source":90,"target":103},{"source":90,"target":1},{"source":90,"target":104},{"source":103,"target":15},{"source":104,"target":105},{"source":104,"target":90},{"source":91,"target":25},{"source":91,"target":106},{"source":91,"target":1},{"source":91,"target":107},{"source":106,"target":25},{"source":92,"target":25},{"source":92,"target":108},{"source":92,"target":1},{"source":92,"target":109},{"source":108,"target":25},{"source":93,"target":16},{"source":93,"target":110},{"source":93,"target":1},{"source":110,"target":16},{"source":94,"target":15},{"source":94,"target":111},{"source":94,"target":1},{"source":111,"target":15},{"source":95,"target":15},{"source":95,"target":112},{"source":95,"target":1},{"source":112,"target":15},{"source":96,"target":25},{"source":2,"target":0},{"source":2,"target":25},{"source":2,"target":113},{"source":2,"target":114},{"source":2,"target":115},{"source":113,"target":10},{"source":113,"target":116},{"source":113,"target":2},{"source":113,"target":117},{"source":116,"target":10},{"source":117,"target":118},{"source":117,"target":113},{"source":114,"target":10},{"source":114,"target":119},{"source":114,"target":2},{"source":119,"target":10},{"source":115,"target":25},{"source":3,"target":0},{"source":4,"target":0},{"source":4,"target":3},{"source":4,"target":120},{"source":4,"target":121},{"source":4,"target":122},{"source":4,"target":123},{"source":120,"target":124},{"source":120,"target":4},{"source":121,"target":125},{"source":121,"target":4},{"source":122,"target":86},{"source":122,"target":126},{"source":122,"target":4},{"source":126,"target":86},{"source":123,"target":3},{"source":5,"target":0},{"source":5,"target":3},{"source":5,"target":127},{"source":5,"target":128},{"source":5,"target":129},{"source":127,"target":130},{"source":127,"target":5},{"source":128,"target":131},{"source":128,"target":5},{"source":129,"target":3},{"source":6,"target":0},{"source":6,"target":3},{"source":6,"target":132},{"source":6,"target":133},{"source":6,"target":134},{"source":6,"target":135},{"source":6,"target":136},{"source":6,"target":137},{"source":6,"target":138},{"source":6,"target":139},{"source":132,"target":140},{"source":132,"target":6},{"source":133,"target":141},{"source":133,"target":6},{"source":134,"target":142},{"source":134,"target":6},{"source":135,"target":143},{"source":135,"target":6},{"source":136,"target":144},{"source":136,"target":6},{"source":137,"target":145},{"source":137,"target":6},{"source":138,"target":146},{"source":138,"target":6},{"source":139,"target":3},{"source":7,"target":0},{"source":7,"target":3},{"source":7,"target":147},{"source":7,"target":148},{"source":147,"target":149},{"source":147,"target":7},{"source":148,"target":3},{"source":8,"target":0},{"source":8,"target":3},{"source":8,"target":150},{"source":8,"target":151},{"source":8,"target":152},{"source":8,"target":153},{"source":150,"target":17},{"source":150,"target":154},{"source":150,"target":8},{"source":154,"target":17},{"source":151,"target":41},{"source":151,"target":155},{"source":151,"target":8},{"source":155,"target":41},{"source":152,"target":156},{"source":152,"target":8},{"source":153,"target":3},{"source":9,"target":0},{"source":9,"target":3},{"source":9,"target":157},{"source":9,"target":158},{"source":157,"target":159},{"source":157,"target":9},{"source":158,"target":3},{"source":10,"target":0},{"source":11,"target":0},{"source":11,"target":10},{"source":11,"target":160},{"source":11,"target":161},{"source":11,"target":162},{"source":160,"target":163},{"source":160,"target":11},{"source":161,"target":164},{"source":161,"target":11},{"source":162,"target":10},{"source":12,"target":0},{"source":12,"target":10},{"source":12,"target":165},{"source":12,"target":166},{"source":12,"target":167},{"source":165,"target":168},{"source":165,"target":12},{"source":166,"target":169},{"source":166,"target":12},{"source":167,"target":10},{"source":13,"target":0},{"source":13,"target":12},{"source":13,"target":11},{"source":13,"target":170},{"source":13,"target":171},{"source":170,"target":12},{"source":171,"target":11},{"source":14,"target":0},{"source":14,"target":10},{"source":14,"target":172},{"source":14,"target":173},{"source":172,"target":174},{"source":172,"target":14},{"source":173,"target":10},{"source":15,"target":0},{"source":16,"target":0},{"source":17,"target":0},{"source":17,"target":175},{"source":17,"target":176},{"source":17,"target":177},{"source":175,"target":17},{"source":176,"target":17},{"source":177,"target":17},{"source":18,"target":0},{"source":18,"target":178},{"source":18,"target":179},{"source":18,"target":180},{"source":178,"target":18},{"source":179,"target":18},{"source":180,"target":18},{"source":19,"target":0},{"source":19,"target":15},{"source":19,"target":181},{"source":19,"target":182},{"source":181,"target":183},{"source":181,"target":19},{"source":182,"target":15},{"source":20,"target":0},{"source":20,"target":184},{"source":20,"target":185},{"source":20,"target":186},{"source":184,"target":20},{"source":185,"target":20},{"source":186,"target":20},{"source":21,"target":0},{"source":21,"target":187},{"source":21,"target":188},{"source":21,"target":189},{"source":21,"target":190},{"source":187,"target":21},{"source":188,"target":21},{"source":189,"target":21},{"source":190,"target":21},{"source":22,"target":0},{"source":22,"target":191},{"source":22,"target":192},{"source":22,"target":193},{"source":22,"target":194},{"source":191,"target":22},{"source":192,"target":22},{"source":193,"target":22},{"source":194,"target":22},{"source":23,"target":0},{"source":23,"target":195},{"source":23,"target":196},{"source":23,"target":197},{"source":195,"target":23},{"source":196,"target":23},{"source":197,"target":23},{"source":24,"target":0},{"source":24,"target":87},{"source":24,"target":198},{"source":24,"target":199},{"source":24,"target":200},{"source":24,"target":201},{"source":24,"target":202},{"source":24,"target":203},{"source":24,"target":204},{"source":24,"target":205},{"source":198,"target":20},{"source":198,"target":206},{"source":198,"target":24},{"source":206,"target":20},{"source":199,"target":21},{"source":199,"target":207},{"source":199,"target":24},{"source":207,"target":21},{"source":200,"target":208},{"source":200,"target":24},{"source":201,"target":209},{"source":201,"target":24},{"source":202,"target":22},{"source":202,"target":210},{"source":202,"target":24},{"source":210,"target":22},{"source":203,"target":23},{"source":203,"target":211},{"source":203,"target":24},{"source":211,"target":23},{"source":204,"target":212},{"source":204,"target":24},{"source":205,"target":87},{"source":25,"target":0},{"source":25,"target":213},{"source":25,"target":214},{"source":25,"target":215},{"source":25,"target":216},{"source":25,"target":217},{"source":25,"target":218},{"source":25,"target":219},{"source":25,"target":107},{"source":25,"target":109},{"source":25,"target":220},{"source":25,"target":221},{"source":25,"target":222},{"source":25,"target":223},{"source":25,"target":224},{"source":25,"target":225},{"source":213,"target":3},{"source":213,"target":226},{"source":213,"target":25},{"source":213,"target":227},{"source":226,"target":3},{"source":227,"target":228},{"source":227,"target":213},{"source":214,"target":2},{"source":214,"target":229},{"source":214,"target":25},{"source":214,"target":230},{"source":229,"target":2},{"source":230,"target":231},{"source":230,"target":214},{"source":215,"target":3},{"source":215,"target":232},{"source":215,"target":25},{"source":215,"target":233},{"source":232,"target":3},{"source":233,"target":234},{"source":233,"target":215},{"source":216,"target":52},{"source":216,"target":235},{"source":216,"target":25},{"source":216,"target":236},{"source":216,"target":237},{"source":235,"target":52},{"source":236,"target":238},{"source":236,"target":216},{"source":237,"target":239},{"source":237,"target":216},{"source":217,"target":240},{"source":217,"target":25},{"source":218,"target":241},{"source":218,"target":25},{"source":219,"target":242},{"source":219,"target":25},{"source":107,"target":1},{"source":107,"target":243},{"source":107,"target":25},{"source":107,"target":91},{"source":243,"target":1},{"source":109,"target":1},{"source":109,"target":244},{"source":109,"target":25},{"source":109,"target":92},{"source":244,"target":1},{"source":220,"target":2},{"source":220,"target":245},{"source":220,"target":25},{"source":245,"target":2},{"source":221,"target":3},{"source":221,"target":246},{"source":221,"target":25},{"source":246,"target":3},{"source":222,"target":247},{"source":222,"target":25},{"source":223,"target":27},{"source":223,"target":248},{"source":223,"target":25},{"source":248,"target":27},{"source":224,"target":2},{"source":224,"target":249},{"source":224,"target":25},{"source":249,"target":2},{"source":26,"target":0},{"source":26,"target":16},{"source":26,"target":250},{"source":26,"target":251},{"source":250,"target":32},{"source":250,"target":252},{"source":250,"target":26},{"source":252,"target":32},{"source":251,"target":16},{"source":27,"target":0},{"source":27,"target":25},{"source":27,"target":253},{"source":27,"target":254},{"source":27,"target":255},{"source":27,"target":256},{"source":27,"target":257},{"source":27,"target":258},{"source":253,"target":1},{"source":253,"target":259},{"source":253,"target":27},{"source":253,"target":260},{"source":259,"target":1},{"source":260,"target":261},{"source":260,"target":253},{"source":254,"target":262},{"source":254,"target":27},{"source":255,"target":46},{"source":255,"target":263},{"source":255,"target":27},{"source":263,"target":46},{"source":256,"target":1},{"source":256,"target":264},{"source":256,"target":27},{"source":264,"target":1},{"source":257,"target":1},{"source":257,"target":265},{"source":257,"target":27},{"source":265,"target":1},{"source":258,"target":25},{"source":28,"target":0},{"source":28,"target":266},{"source":266,"target":267},{"source":266,"target":28},{"source":29,"target":0},{"source":29,"target":3},{"source":29,"target":268},{"source":29,"target":269},{"source":268,"target":270},{"source":268,"target":29},{"source":269,"target":3},{"source":30,"target":0},{"source":30,"target":6},{"source":30,"target":9},{"source":30,"target":4},{"source":30,"target":5},{"source":30,"target":87},{"source":30,"target":271},{"source":30,"target":272},{"source":30,"target":273},{"source":30,"target":274},{"source":30,"target":275},{"source":271,"target":6},{"source":272,"target":9},{"source":273,"target":4},{"source":274,"target":5},{"source":275,"target":87},{"source":31,"target":0},{"source":31,"target":24},{"source":31,"target":5},{"source":31,"target":276},{"source":31,"target":277},{"source":276,"target":24},{"source":277,"target":5},{"source":32,"target":0},{"source":33,"target":0},{"source":33,"target":3},{"source":33,"target":278},{"source":33,"target":279},{"source":33,"target":280},{"source":33,"target":281},{"source":33,"target":282},{"source":278,"target":283},{"source":278,"target":33},{"source":279,"target":284},{"source":279,"target":33},{"source":280,"target":285},{"source":280,"target":33},{"source":281,"target":286},{"source":281,"target":33},{"source":282,"target":3},{"source":34,"target":0},{"source":34,"target":3},{"source":34,"target":287},{"source":34,"target":288},{"source":287,"target":289},{"source":287,"target":34},{"source":288,"target":3},{"source":35,"target":0},{"source":35,"target":3},{"source":35,"target":290},{"source":35,"target":291},{"source":35,"target":292},{"source":290,"target":36},{"source":290,"target":293},{"source":290,"target":35},{"source":293,"target":36},{"source":291,"target":36},{"source":291,"target":294},{"source":291,"target":35},{"source":294,"target":36},{"source":292,"target":3},{"source":36,"target":0},{"source":36,"target":295},{"source":36,"target":296},{"source":295,"target":297},{"source":295,"target":36},{"source":296,"target":37},{"source":296,"target":298},{"source":296,"target":36},{"source":298,"target":37},{"source":37,"target":0},{"source":37,"target":299},{"source":37,"target":300},{"source":299,"target":38},{"source":299,"target":301},{"source":299,"target":37},{"source":301,"target":38},{"source":300,"target":2},{"source":300,"target":302},{"source":300,"target":37},{"source":302,"target":2},{"source":38,"target":0},{"source":38,"target":303},{"source":38,"target":304},{"source":38,"target":305},{"source":38,"target":306},{"source":38,"target":307},{"source":303,"target":38},{"source":304,"target":38},{"source":305,"target":38},{"source":306,"target":38},{"source":307,"target":38},{"source":39,"target":0},{"source":39,"target":3},{"source":39,"target":308},{"source":39,"target":309},{"source":39,"target":310},{"source":39,"target":311},{"source":308,"target":18},{"source":308,"target":312},{"source":308,"target":39},{"source":312,"target":18},{"source":309,"target":40},{"source":309,"target":313},{"source":309,"target":39},{"source":313,"target":40},{"source":310,"target":314},{"source":310,"target":39},{"source":311,"target":3},{"source":40,"target":0},{"source":41,"target":0},{"source":42,"target":0},{"source":42,"target":315},{"source":42,"target":316},{"source":315,"target":42},{"source":316,"target":42},{"source":43,"target":0},{"source":43,"target":33},{"source":43,"target":35},{"source":43,"target":9},{"source":43,"target":317},{"source":43,"target":318},{"source":43,"target":319},{"source":317,"target":33},{"source":318,"target":35},{"source":319,"target":9},{"source":44,"target":0},{"source":44,"target":3},{"source":44,"target":320},{"source":44,"target":321},{"source":44,"target":322},{"source":44,"target":323},{"source":320,"target":324},{"source":320,"target":44},{"source":321,"target":325},{"source":321,"target":44},{"source":322,"target":13},{"source":322,"target":326},{"source":322,"target":44},{"source":326,"target":13},{"source":323,"target":3},{"source":45,"target":0},{"source":45,"target":44},{"source":45,"target":327},{"source":45,"target":328},{"source":327,"target":28},{"source":327,"target":329},{"source":327,"target":45},{"source":329,"target":28},{"source":328,"target":44},{"source":46,"target":0},{"source":46,"target":330},{"source":46,"target":331},{"source":330,"target":46},{"source":331,"target":46},{"source":47,"target":0},{"source":47,"target":52},{"source":47,"target":332},{"source":47,"target":333},{"source":47,"target":334},{"source":47,"target":335},{"source":47,"target":336},{"source":47,"target":337},{"source":47,"target":338},{"source":47,"target":339},{"source":332,"target":340},{"source":332,"target":47},{"source":332,"target":341},{"source":341,"target":342},{"source":341,"target":332},{"source":333,"target":343},{"source":333,"target":47},{"source":333,"target":344},{"source":333,"target":345},{"source":344,"target":346},{"source":344,"target":333},{"source":345,"target":347},{"source":345,"target":333},{"source":334,"target":348},{"source":334,"target":47},{"source":334,"target":349},{"source":334,"target":350},{"source":334,"target":351},{"source":349,"target":352},{"source":349,"target":334},{"source":350,"target":353},{"source":350,"target":334},{"source":351,"target":354},{"source":351,"target":334},{"source":335,"target":355},{"source":335,"target":47},{"source":335,"target":356},{"source":356,"target":357},{"source":356,"target":335},{"source":336,"target":358},{"source":336,"target":47},{"source":336,"target":359},{"source":359,"target":360},{"source":359,"target":336},{"source":337,"target":361},{"source":337,"target":47},{"source":337,"target":362},{"source":337,"target":363},{"source":362,"target":364},{"source":362,"target":337},{"source":363,"target":365},{"source":363,"target":337},{"source":338,"target":48},{"source":338,"target":366},{"source":338,"target":47},{"source":366,"target":48},{"source":339,"target":52},{"source":48,"target":0},{"source":48,"target":367},{"source":48,"target":368},{"source":367,"target":369},{"source":367,"target":48},{"source":368,"target":49},{"source":368,"target":370},{"source":368,"target":48},{"source":370,"target":49},{"source":49,"target":0},{"source":49,"target":53},{"source":49,"target":371},{"source":49,"target":372},{"source":49,"target":373},{"source":49,"target":374},{"source":49,"target":375},{"source":371,"target":376},{"source":371,"target":49},{"source":372,"target":49},{"source":372,"target":377},{"source":377,"target":378},{"source":377,"target":372},{"source":373,"target":379},{"source":373,"target":49},{"source":374,"target":380},{"source":374,"target":49},{"source":375,"target":53},{"source":50,"target":0},{"source":50,"target":54},{"source":50,"target":381},{"source":50,"target":382},{"source":50,"target":383},{"source":50,"target":384},{"source":381,"target":385},{"source":381,"target":50},{"source":382,"target":50},{"source":382,"target":386},{"source":386,"target":387},{"source":386,"target":382},{"source":383,"target":388},{"source":383,"target":50},{"source":384,"target":54},{"source":51,"target":0},{"source":51,"target":54},{"source":51,"target":389},{"source":51,"target":390},{"source":389,"target":391},{"source":389,"target":51},{"source":390,"target":54},{"source":52,"target":0},{"source":52,"target":3},{"source":52,"target":392},{"source":52,"target":393},{"source":392,"target":394},{"source":392,"target":52},{"source":393,"target":3},{"source":53,"target":0},{"source":53,"target":395},{"source":53,"target":396},{"source":395,"target":397},{"source":395,"target":53},{"source":395,"target":398},{"source":398,"target":399},{"source":398,"target":395},{"source":396,"target":400},{"source":396,"target":53},{"source":396,"target":401},{"source":401,"target":402},{"source":401,"target":396},{"source":54,"target":0},{"source":54,"target":52},{"source":54,"target":53},{"source":54,"target":403},{"source":54,"target":404},{"source":54,"target":405},{"source":403,"target":406},{"source":403,"target":54},{"source":404,"target":52},{"source":405,"target":53},{"source":55,"target":0},{"source":55,"target":52},{"source":55,"target":407},{"source":55,"target":408},{"source":407,"target":409},{"source":407,"target":55},{"source":408,"target":52},{"source":56,"target":0},{"source":56,"target":52},{"source":56,"target":410},{"source":56,"target":411},{"source":410,"target":412},{"source":410,"target":56},{"source":411,"target":52},{"source":57,"target":0},{"source":57,"target":52},{"source":57,"target":413},{"source":57,"target":414},{"source":413,"target":415},{"source":413,"target":57},{"source":414,"target":52},{"source":58,"target":0},{"source":58,"target":52},{"source":58,"target":416},{"source":58,"target":417},{"source":416,"target":418},{"source":416,"target":58},{"source":417,"target":52},{"source":59,"target":0},{"source":59,"target":52},{"source":59,"target":419},{"source":59,"target":420},{"source":419,"target":421},{"source":419,"target":59},{"source":420,"target":52},{"source":60,"target":0},{"source":60,"target":52},{"source":60,"target":422},{"source":60,"target":423},{"source":422,"target":424},{"source":422,"target":60},{"source":423,"target":52},{"source":61,"target":0},{"source":61,"target":52},{"source":61,"target":425},{"source":61,"target":426},{"source":425,"target":427},{"source":425,"target":61},{"source":426,"target":52},{"source":62,"target":0},{"source":62,"target":52},{"source":62,"target":428},{"source":62,"target":429},{"source":428,"target":430},{"source":428,"target":62},{"source":429,"target":52},{"source":63,"target":0},{"source":63,"target":52},{"source":63,"target":431},{"source":63,"target":432},{"source":431,"target":433},{"source":431,"target":63},{"source":432,"target":52},{"source":64,"target":0},{"source":64,"target":52},{"source":64,"target":434},{"source":64,"target":435},{"source":434,"target":436},{"source":434,"target":64},{"source":435,"target":52},{"source":65,"target":0},{"source":65,"target":52},{"source":65,"target":437},{"source":65,"target":438},{"source":437,"target":439},{"source":437,"target":65},{"source":438,"target":52},{"source":66,"target":0},{"source":66,"target":67},{"source":66,"target":3},{"source":66,"target":440},{"source":66,"target":441},{"source":66,"target":442},{"source":440,"target":443},{"source":440,"target":66},{"source":441,"target":67},{"source":442,"target":3},{"source":67,"target":0},{"source":67,"target":3},{"source":67,"target":444},{"source":67,"target":445},{"source":444,"target":27},{"source":444,"target":446},{"source":444,"target":67},{"source":446,"target":27},{"source":445,"target":3},{"source":68,"target":0},{"source":68,"target":3},{"source":68,"target":447},{"source":68,"target":448},{"source":447,"target":27},{"source":447,"target":449},{"source":447,"target":68},{"source":449,"target":27},{"source":448,"target":3},{"source":69,"target":0},{"source":69,"target":450},{"source":69,"target":451},{"source":69,"target":452},{"source":450,"target":69},{"source":451,"target":69},{"source":452,"target":69},{"source":70,"target":0},{"source":70,"target":3},{"source":70,"target":453},{"source":70,"target":454},{"source":453,"target":69},{"source":453,"target":455},{"source":453,"target":70},{"source":455,"target":69},{"source":454,"target":3},{"source":71,"target":0},{"source":71,"target":456},{"source":71,"target":457},{"source":71,"target":458},{"source":71,"target":459},{"source":71,"target":460},{"source":71,"target":461},{"source":456,"target":71},{"source":457,"target":71},{"source":458,"target":71},{"source":459,"target":71},{"source":460,"target":71},{"source":461,"target":71},{"source":72,"target":0},{"source":72,"target":3},{"source":72,"target":462},{"source":72,"target":463},{"source":462,"target":71},{"source":462,"target":464},{"source":462,"target":72},{"source":464,"target":71},{"source":463,"target":3},{"source":73,"target":0},{"source":73,"target":465},{"source":73,"target":466},{"source":73,"target":467},{"source":465,"target":73},{"source":466,"target":73},{"source":467,"target":73},{"source":74,"target":0},{"source":74,"target":3},{"source":74,"target":468},{"source":74,"target":469},{"source":74,"target":470},{"source":468,"target":73},{"source":468,"target":471},{"source":468,"target":74},{"source":471,"target":73},{"source":469,"target":73},{"source":469,"target":472},{"source":469,"target":74},{"source":472,"target":73},{"source":470,"target":3},{"source":75,"target":0},{"source":75,"target":2},{"source":75,"target":30},{"source":75,"target":473},{"source":75,"target":474},{"source":473,"target":2},{"source":474,"target":30},{"source":76,"target":0},{"source":76,"target":82},{"source":76,"target":29},{"source":76,"target":7},{"source":76,"target":475},{"source":76,"target":476},{"source":76,"target":477},{"source":475,"target":82},{"source":476,"target":29},{"source":477,"target":7},{"source":77,"target":0},{"source":77,"target":82},{"source":77,"target":8},{"source":77,"target":39},{"source":77,"target":7},{"source":77,"target":478},{"source":77,"target":479},{"source":77,"target":480},{"source":77,"target":481},{"source":478,"target":82},{"source":479,"target":8},{"source":480,"target":39},{"source":481,"target":7},{"source":78,"target":0},{"source":78,"target":1},{"source":78,"target":31},{"source":78,"target":482},{"source":78,"target":483},{"source":482,"target":1},{"source":483,"target":31},{"source":79,"target":0},{"source":79,"target":27},{"source":79,"target":43},{"source":79,"target":484},{"source":79,"target":485},{"source":484,"target":27},{"source":485,"target":43},{"source":80,"target":0},{"source":80,"target":81},{"source":80,"target":486},{"source":486,"target":81},{"source":81,"target":0},{"source":81,"target":2},{"source":81,"target":487},{"source":487,"target":2},{"source":82,"target":0},{"source":82,"target":80},{"source":82,"target":34},{"source":82,"target":488},{"source":82,"target":489},{"source":488,"target":80},{"source":489,"target":34},{"source":83,"target":0},{"source":83,"target":81},{"source":83,"target":34},{"source":83,"target":490},{"source":83,"target":491},{"source":490,"target":81},{"source":491,"target":34},{"source":84,"target":0},{"source":84,"target":83},{"source":84,"target":8},{"source":84,"target":39},{"source":84,"target":7},{"source":84,"target":492},{"source":84,"target":493},{"source":84,"target":494},{"source":84,"target":495},{"source":492,"target":83},{"source":493,"target":8},{"source":494,"target":39},{"source":495,"target":7},{"source":85,"target":0},{"source":85,"target":496},{"source":85,"target":497},{"source":496,"target":85},{"source":497,"target":85},{"source":86,"target":0},{"source":87,"target":0},{"source":87,"target":3},{"source":87,"target":498},{"source":87,"target":499},{"source":498,"target":500},{"source":498,"target":87},{"source":499,"target":3}],"multigraph":true} |
false | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="gpiosevents" nsURI="http://tfm.cesarlaso.udima.es/gpios/events"
nsPrefix="es.udima.cesarlaso.tfm.gpios.events">
<eClassifiers xsi:type="ecore:EClass" name="GpioEvent" abstract="true" eSuperTypes="Events.ecore#//Event">
<eOperations name="performed" lowerBound="1"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="DigitalEvent" abstract="true" eSuperTypes="#//GpioEvent">
<eStructuralFeatures xsi:type="ecore:EReference" name="pin" lowerBound="1" eType="ecore:EClass Gpios.ecore#//DigitalInputPin"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="AnalogEvent" abstract="true" eSuperTypes="#//GpioEvent">
<eStructuralFeatures xsi:type="ecore:EReference" name="pin" lowerBound="1" eType="ecore:EClass Gpios.ecore#//AnalogInputPin"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Interrupted" eSuperTypes="#//DigitalEvent">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="mode" lowerBound="1" eType="ecore:EEnum Gpios.ecore#//InterruptMode"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ButtonInput" eSuperTypes="#//DigitalEvent">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="mode" lowerBound="1" eType="ecore:EEnum Gpios.ecore#//PinResistor"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="minDuration" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ButtonInputAccumulator" eSuperTypes="#//ButtonInput">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="count" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ButtonInputReleased" eSuperTypes="#//DigitalEvent">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="mode" lowerBound="1" eType="ecore:EEnum Gpios.ecore#//PinResistor"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="PulseInput" eSuperTypes="#//DigitalEvent">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="mode" lowerBound="1" eType="ecore:EEnum Gpios.ecore#//PinResistor"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="count" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="width" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="spaceWidth" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="AnalogRead" eSuperTypes="#//AnalogEvent">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="pollIntervalLoops" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="AnalogReadPerformOnChange" abstract="true"
eSuperTypes="#//AnalogRead">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="AnalogReadPerformOnHigh" eSuperTypes="#//AnalogReadPerformOnChange"/>
<eClassifiers xsi:type="ecore:EClass" name="AnalogReadPerformOnLow" eSuperTypes="#//AnalogReadPerformOnChange"/>
</ecore:EPackage>
| github:ecore:/data/cesarlaso/tfm-udima-arquitectura-del-software-dsl-ecore-xtext-emf/eclipse-emf-udima/es.udima.cesarlaso.tfm/model/GpiosEvents.ecore | ecore | gpiosevents
GpioEvent
performed
DigitalEvent
pin
AnalogEvent
pin
Interrupted
mode
ButtonInput
mode
minDuration
ButtonInputAccumulator
count
ButtonInputReleased
mode
PulseInput
mode
count
width
spaceWidth
AnalogRead
pollIntervalLoops
AnalogReadPerformOnChange
value
AnalogReadPerformOnHigh
AnalogReadPerformOnLow | null | {"directed":true,"nodes":[{"nsPrefix":"es.udima.cesarlaso.tfm.gpios.events","nsURI":"http://tfm.cesarlaso.udima.es/gpios/events","name":"gpiosevents","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"GpioEvent","instanceClass":null,"abstract":true,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DigitalEvent","instanceClass":null,"abstract":true,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AnalogEvent","instanceClass":null,"abstract":true,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Interrupted","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ButtonInput","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ButtonInputAccumulator","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ButtonInputReleased","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PulseInput","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AnalogRead","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AnalogReadPerformOnChange","instanceClass":null,"abstract":true,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AnalogReadPerformOnHigh","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AnalogReadPerformOnLow","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"ordered":true,"upperBound":1,"unique":true,"name":"performed","lowerBound":1,"id":13,"many":false,"required":true,"eClass":"EOperation"},{"id":14,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"pin","changeable":true,"resolveProxies":true,"lowerBound":1,"id":15,"derived":false},{"id":16,"eClass":"EGenericType"},{"id":17,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"pin","changeable":true,"resolveProxies":true,"lowerBound":1,"id":18,"derived":false},{"id":19,"eClass":"EGenericType"},{"id":20,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"mode","changeable":true,"lowerBound":1,"iD":false,"id":21,"derived":false},{"id":22,"eClass":"EGenericType"},{"id":23,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"mode","changeable":true,"lowerBound":1,"iD":false,"id":24,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"minDuration","changeable":true,"lowerBound":1,"iD":false,"id":25,"derived":false},{"id":26,"eClass":"EGenericType"},{"id":27,"eClass":"EGenericType"},{"id":28,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"count","changeable":true,"lowerBound":1,"iD":false,"id":29,"derived":false},{"id":30,"eClass":"EGenericType"},{"id":31,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"mode","changeable":true,"lowerBound":1,"iD":false,"id":32,"derived":false},{"id":33,"eClass":"EGenericType"},{"id":34,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"mode","changeable":true,"lowerBound":1,"iD":false,"id":35,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"count","changeable":true,"lowerBound":1,"iD":false,"id":36,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"width","changeable":true,"lowerBound":1,"iD":false,"id":37,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"spaceWidth","changeable":true,"lowerBound":1,"iD":false,"id":38,"derived":false},{"id":39,"eClass":"EGenericType"},{"id":40,"eClass":"EGenericType"},{"id":41,"eClass":"EGenericType"},{"id":42,"eClass":"EGenericType"},{"id":43,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"pollIntervalLoops","changeable":true,"lowerBound":1,"iD":false,"id":44,"derived":false},{"id":45,"eClass":"EGenericType"},{"id":46,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":1,"iD":false,"id":47,"derived":false},{"id":48,"eClass":"EGenericType"},{"id":49,"eClass":"EGenericType"},{"id":50,"eClass":"EGenericType"},{"id":51,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":0,"target":8},{"source":0,"target":9},{"source":0,"target":10},{"source":0,"target":11},{"source":0,"target":12},{"source":1,"target":0},{"source":1,"target":13},{"source":1,"target":14},{"source":13,"target":1},{"source":2,"target":0},{"source":2,"target":1},{"source":2,"target":15},{"source":2,"target":16},{"source":15,"target":17},{"source":15,"target":2},{"source":16,"target":1},{"source":3,"target":0},{"source":3,"target":1},{"source":3,"target":18},{"source":3,"target":19},{"source":18,"target":20},{"source":18,"target":3},{"source":19,"target":1},{"source":4,"target":0},{"source":4,"target":2},{"source":4,"target":21},{"source":4,"target":22},{"source":21,"target":23},{"source":21,"target":4},{"source":22,"target":2},{"source":5,"target":0},{"source":5,"target":2},{"source":5,"target":24},{"source":5,"target":25},{"source":5,"target":26},{"source":24,"target":27},{"source":24,"target":5},{"source":25,"target":28},{"source":25,"target":5},{"source":26,"target":2},{"source":6,"target":0},{"source":6,"target":5},{"source":6,"target":29},{"source":6,"target":30},{"source":29,"target":31},{"source":29,"target":6},{"source":30,"target":5},{"source":7,"target":0},{"source":7,"target":2},{"source":7,"target":32},{"source":7,"target":33},{"source":32,"target":34},{"source":32,"target":7},{"source":33,"target":2},{"source":8,"target":0},{"source":8,"target":2},{"source":8,"target":35},{"source":8,"target":36},{"source":8,"target":37},{"source":8,"target":38},{"source":8,"target":39},{"source":35,"target":40},{"source":35,"target":8},{"source":36,"target":41},{"source":36,"target":8},{"source":37,"target":42},{"source":37,"target":8},{"source":38,"target":43},{"source":38,"target":8},{"source":39,"target":2},{"source":9,"target":0},{"source":9,"target":3},{"source":9,"target":44},{"source":9,"target":45},{"source":44,"target":46},{"source":44,"target":9},{"source":45,"target":3},{"source":10,"target":0},{"source":10,"target":9},{"source":10,"target":47},{"source":10,"target":48},{"source":47,"target":49},{"source":47,"target":10},{"source":48,"target":9},{"source":11,"target":0},{"source":11,"target":10},{"source":11,"target":50},{"source":50,"target":10},{"source":12,"target":0},{"source":12,"target":10},{"source":12,"target":51},{"source":51,"target":10}],"multigraph":true} |
false | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0"
xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="compartments"
nsURI="http://compartments/1.0" nsPrefix="compartments">
<eClassifiers xsi:type="ecore:EClass" name="Concept" abstract="true">
<eAnnotations source="diagraph">
<details key="label=description"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
iD="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="id" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="description" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Foo" eSuperTypes="#//Concept">
<eAnnotations source="diagraph">
<details key="node"/>
<details key="pov"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="bars" upperBound="-1" eType="#//Bar"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Bar" eSuperTypes="#//Concept">
<eAnnotations source="diagraph">
<details key="node"/>
<details key="label=nam:BarName"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="bazs" upperBound="-1" eType="#//Baz"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="nam" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Baz" eSuperTypes="#//Concept">
<eAnnotations source="diagraph">
<details key="node"/>
<details key="compartment=Bar.*"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="lorems" upperBound="-1"
eType="#//Lorem" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="nam" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Lorem" eSuperTypes="#//Concept">
<eAnnotations source="diagraph">
<details key="node"/>
<details key="compartment=Baz.*"/>
<details key="label=nam:LoremName"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="ipsums" upperBound="-1"
eType="#//Ipsum" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="nam" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Ipsum" eSuperTypes="#//Concept">
<eAnnotations source="diagraph">
<details key="node"/>
<details key="compartment=Lorem.*"/>
<details key="label=nam"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="goofies" upperBound="-1"
eType="#//Goofy" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="nam" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Goofy" eSuperTypes="#//Concept">
<eAnnotations source="diagraph">
<details key="node"/>
<details key="compartment=Ipsum.*"/>
<details key="label=nam"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="nam" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
</ecore:EPackage>
| github:ecore:/data/francoispfister/diagraph/org.isoe.fwk.megamodel.deploy/repository-bundle/compartments.ecore | ecore | compartments
Concept
name
id
description
Foo
bars
Bar
bazs
nam
Baz
lorems
nam
Lorem
ipsums
nam
Ipsum
goofies
nam
Goofy
nam | null | {"directed":true,"nodes":[{"nsPrefix":"compartments","nsURI":"http://compartments/1.0","name":"compartments","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Concept","instanceClass":null,"abstract":true,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Foo","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Bar","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Baz","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Lorem","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Ipsum","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Goofy","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":true,"id":8,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"id","changeable":true,"lowerBound":0,"iD":false,"id":9,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"description","changeable":true,"lowerBound":0,"iD":false,"id":10,"derived":false},{"id":11,"eClass":"EGenericType"},{"id":12,"eClass":"EGenericType"},{"id":13,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"bars","changeable":true,"resolveProxies":true,"lowerBound":0,"id":14,"derived":false},{"id":15,"eClass":"EGenericType"},{"id":16,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"bazs","changeable":true,"resolveProxies":true,"lowerBound":0,"id":17,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"nam","changeable":true,"lowerBound":0,"iD":false,"id":18,"derived":false},{"id":19,"eClass":"EGenericType"},{"id":20,"eClass":"EGenericType"},{"id":21,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"lorems","changeable":true,"resolveProxies":true,"lowerBound":0,"id":22,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"nam","changeable":true,"lowerBound":0,"iD":false,"id":23,"derived":false},{"id":24,"eClass":"EGenericType"},{"id":25,"eClass":"EGenericType"},{"id":26,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"ipsums","changeable":true,"resolveProxies":true,"lowerBound":0,"id":27,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"nam","changeable":true,"lowerBound":0,"iD":false,"id":28,"derived":false},{"id":29,"eClass":"EGenericType"},{"id":30,"eClass":"EGenericType"},{"id":31,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"goofies","changeable":true,"resolveProxies":true,"lowerBound":0,"id":32,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"nam","changeable":true,"lowerBound":0,"iD":false,"id":33,"derived":false},{"id":34,"eClass":"EGenericType"},{"id":35,"eClass":"EGenericType"},{"id":36,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"nam","changeable":true,"lowerBound":0,"iD":false,"id":37,"derived":false},{"id":38,"eClass":"EGenericType"},{"id":39,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":1,"target":0},{"source":1,"target":8},{"source":1,"target":9},{"source":1,"target":10},{"source":8,"target":11},{"source":8,"target":1},{"source":9,"target":12},{"source":9,"target":1},{"source":10,"target":13},{"source":10,"target":1},{"source":2,"target":0},{"source":2,"target":1},{"source":2,"target":14},{"source":2,"target":15},{"source":14,"target":3},{"source":14,"target":16},{"source":14,"target":2},{"source":16,"target":3},{"source":15,"target":1},{"source":3,"target":0},{"source":3,"target":1},{"source":3,"target":17},{"source":3,"target":18},{"source":3,"target":19},{"source":17,"target":4},{"source":17,"target":20},{"source":17,"target":3},{"source":20,"target":4},{"source":18,"target":21},{"source":18,"target":3},{"source":19,"target":1},{"source":4,"target":0},{"source":4,"target":1},{"source":4,"target":22},{"source":4,"target":23},{"source":4,"target":24},{"source":22,"target":5},{"source":22,"target":25},{"source":22,"target":4},{"source":25,"target":5},{"source":23,"target":26},{"source":23,"target":4},{"source":24,"target":1},{"source":5,"target":0},{"source":5,"target":1},{"source":5,"target":27},{"source":5,"target":28},{"source":5,"target":29},{"source":27,"target":6},{"source":27,"target":30},{"source":27,"target":5},{"source":30,"target":6},{"source":28,"target":31},{"source":28,"target":5},{"source":29,"target":1},{"source":6,"target":0},{"source":6,"target":1},{"source":6,"target":32},{"source":6,"target":33},{"source":6,"target":34},{"source":32,"target":7},{"source":32,"target":35},{"source":32,"target":6},{"source":35,"target":7},{"source":33,"target":36},{"source":33,"target":6},{"source":34,"target":1},{"source":7,"target":0},{"source":7,"target":1},{"source":7,"target":37},{"source":7,"target":38},{"source":37,"target":39},{"source":37,"target":7},{"source":38,"target":1}],"multigraph":true} |
true | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="ecore" nsURI="http://www.eclipse.org/emf/2002/Ecore" nsPrefix="ecore">
<eClassifiers xsi:type="ecore:EClass" name="EAttribute" eSuperTypes="#//EStructuralFeature">
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore">
<details key="constraints" value="ConsistentTransient"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="iD" eType="#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eAttributeType" lowerBound="1"
eType="#//EDataType" changeable="false" volatile="true" transient="true" derived="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EAnnotation" eSuperTypes="#//EModelElement">
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore">
<details key="constraints" value="WellFormedSourceURI"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="source" eType="#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="details" upperBound="-1"
eType="#//EStringToStringMapEntry" containment="true" resolveProxies="false"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eModelElement" eType="#//EModelElement"
transient="true" resolveProxies="false" eOpposite="#//EModelElement/eAnnotations"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="contents" upperBound="-1"
eType="#//EObject" containment="true" resolveProxies="false"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="references" upperBound="-1"
eType="#//EObject"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EClass" eSuperTypes="#//EClassifier">
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore">
<details key="constraints" value="InterfaceIsAbstract AtMostOneID UniqueFeatureNames UniqueOperationSignatures NoCircularSuperTypes WellFormedMapEntryClass ConsistentSuperTypes DisjointFeatureAndOperationSignatures"/>
</eAnnotations>
<eOperations name="isSuperTypeOf" eType="#//EBoolean">
<eParameters name="someClass" eType="#//EClass"/>
</eOperations>
<eOperations name="getFeatureCount" eType="#//EInt"/>
<eOperations name="getEStructuralFeature" eType="#//EStructuralFeature">
<eParameters name="featureID" eType="#//EInt"/>
</eOperations>
<eOperations name="getFeatureID" eType="#//EInt">
<eParameters name="feature" eType="#//EStructuralFeature"/>
</eOperations>
<eOperations name="getEStructuralFeature" eType="#//EStructuralFeature">
<eParameters name="featureName" eType="#//EString"/>
</eOperations>
<eOperations name="getOperationCount" eType="#//EInt"/>
<eOperations name="getEOperation" eType="#//EOperation">
<eParameters name="operationID" eType="#//EInt"/>
</eOperations>
<eOperations name="getOperationID" eType="#//EInt">
<eParameters name="operation" eType="#//EOperation"/>
</eOperations>
<eOperations name="getOverride" eType="#//EOperation">
<eParameters name="operation" eType="#//EOperation"/>
</eOperations>
<eOperations name="getFeatureType" eType="#//EGenericType">
<eParameters name="feature" eType="#//EStructuralFeature"/>
</eOperations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="abstract" eType="#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="interface" eType="#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eSuperTypes" upperBound="-1"
eType="#//EClass" unsettable="true">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="suppressedIsSetVisibility" value="true"/>
<details key="suppressedUnsetVisibility" value="true"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="eOperations" upperBound="-1"
eType="#//EOperation" containment="true" resolveProxies="false" eOpposite="#//EOperation/eContainingClass"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eAllAttributes" upperBound="-1"
eType="#//EAttribute" changeable="false" volatile="true" transient="true"
derived="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eAllReferences" upperBound="-1"
eType="#//EReference" changeable="false" volatile="true" transient="true"
derived="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eReferences" upperBound="-1"
eType="#//EReference" changeable="false" volatile="true" transient="true"
derived="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eAttributes" upperBound="-1"
eType="#//EAttribute" changeable="false" volatile="true" transient="true"
derived="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eAllContainments" upperBound="-1"
eType="#//EReference" changeable="false" volatile="true" transient="true"
derived="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eAllOperations" upperBound="-1"
eType="#//EOperation" changeable="false" volatile="true" transient="true"
derived="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eAllStructuralFeatures"
upperBound="-1" eType="#//EStructuralFeature" changeable="false" volatile="true"
transient="true" derived="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eAllSuperTypes" upperBound="-1"
eType="#//EClass" changeable="false" volatile="true" transient="true" derived="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eIDAttribute" eType="#//EAttribute"
changeable="false" volatile="true" transient="true" derived="true" resolveProxies="false"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eStructuralFeatures" upperBound="-1"
eType="#//EStructuralFeature" containment="true" resolveProxies="false" eOpposite="#//EStructuralFeature/eContainingClass"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eGenericSuperTypes" upperBound="-1"
eType="#//EGenericType" unsettable="true" containment="true" resolveProxies="false">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="suppressedIsSetVisibility" value="true"/>
<details key="suppressedUnsetVisibility" value="true"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="eAllGenericSuperTypes"
upperBound="-1" eType="#//EGenericType" changeable="false" volatile="true"
transient="true" derived="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EClassifier" abstract="true" eSuperTypes="#//ENamedElement">
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore">
<details key="constraints" value="WellFormedInstanceTypeName UniqueTypeParameterNames"/>
</eAnnotations>
<eOperations name="isInstance" eType="#//EBoolean">
<eParameters name="object" eType="#//EJavaObject"/>
</eOperations>
<eOperations name="getClassifierID" eType="#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="instanceClassName" eType="#//EString"
volatile="true" unsettable="true">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="suppressedIsSetVisibility" value="true"/>
<details key="suppressedUnsetVisibility" value="true"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="instanceClass" changeable="false"
volatile="true" transient="true" derived="true">
<eGenericType eClassifier="#//EJavaClass">
<eTypeArguments/>
</eGenericType>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="defaultValue" eType="#//EJavaObject"
changeable="false" volatile="true" transient="true" derived="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="instanceTypeName" eType="#//EString"
volatile="true" unsettable="true">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="suppressedIsSetVisibility" value="true"/>
<details key="suppressedUnsetVisibility" value="true"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="ePackage" eType="#//EPackage"
changeable="false" transient="true" eOpposite="#//EPackage/eClassifiers"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eTypeParameters" upperBound="-1"
eType="#//ETypeParameter" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EDataType" eSuperTypes="#//EClassifier">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="serializable" eType="#//EBoolean"
defaultValueLiteral="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EEnum" eSuperTypes="#//EDataType">
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore">
<details key="constraints" value="UniqueEnumeratorNames UniqueEnumeratorLiterals"/>
</eAnnotations>
<eOperations name="getEEnumLiteral" eType="#//EEnumLiteral">
<eParameters name="name" eType="#//EString"/>
</eOperations>
<eOperations name="getEEnumLiteral" eType="#//EEnumLiteral">
<eParameters name="value" eType="#//EInt"/>
</eOperations>
<eOperations name="getEEnumLiteralByLiteral" eType="#//EEnumLiteral">
<eParameters name="literal" eType="#//EString"/>
</eOperations>
<eStructuralFeatures xsi:type="ecore:EReference" name="eLiterals" upperBound="-1"
eType="#//EEnumLiteral" containment="true" resolveProxies="false" eOpposite="#//EEnumLiteral/eEnum"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EEnumLiteral" eSuperTypes="#//ENamedElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="instance" eType="#//EEnumerator"
transient="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="literal" eType="#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eEnum" eType="#//EEnum"
changeable="false" transient="true" resolveProxies="false" eOpposite="#//EEnum/eLiterals"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EFactory" eSuperTypes="#//EModelElement">
<eOperations name="create" eType="#//EObject">
<eParameters name="eClass" eType="#//EClass"/>
</eOperations>
<eOperations name="createFromString" eType="#//EJavaObject">
<eParameters name="eDataType" eType="#//EDataType"/>
<eParameters name="literalValue" eType="#//EString"/>
</eOperations>
<eOperations name="convertToString" eType="#//EString">
<eParameters name="eDataType" eType="#//EDataType"/>
<eParameters name="instanceValue" eType="#//EJavaObject"/>
</eOperations>
<eStructuralFeatures xsi:type="ecore:EReference" name="ePackage" lowerBound="1"
eType="#//EPackage" transient="true" resolveProxies="false" eOpposite="#//EPackage/eFactoryInstance"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EModelElement" abstract="true">
<eOperations name="getEAnnotation" eType="#//EAnnotation">
<eParameters name="source" eType="#//EString"/>
</eOperations>
<eStructuralFeatures xsi:type="ecore:EReference" name="eAnnotations" upperBound="-1"
eType="#//EAnnotation" containment="true" resolveProxies="false" eOpposite="#//EAnnotation/eModelElement"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ENamedElement" abstract="true" eSuperTypes="#//EModelElement">
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore">
<details key="constraints" value="WellFormedName"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EObject">
<eOperations name="eClass" eType="#//EClass"/>
<eOperations name="eIsProxy" eType="#//EBoolean"/>
<eOperations name="eResource" eType="#//EResource"/>
<eOperations name="eContainer" eType="#//EObject"/>
<eOperations name="eContainingFeature" eType="#//EStructuralFeature"/>
<eOperations name="eContainmentFeature" eType="#//EReference"/>
<eOperations name="eContents">
<eGenericType eClassifier="#//EEList">
<eTypeArguments eClassifier="#//EObject"/>
</eGenericType>
</eOperations>
<eOperations name="eAllContents">
<eGenericType eClassifier="#//ETreeIterator">
<eTypeArguments eClassifier="#//EObject"/>
</eGenericType>
</eOperations>
<eOperations name="eCrossReferences">
<eGenericType eClassifier="#//EEList">
<eTypeArguments eClassifier="#//EObject"/>
</eGenericType>
</eOperations>
<eOperations name="eGet" eType="#//EJavaObject">
<eParameters name="feature" eType="#//EStructuralFeature"/>
</eOperations>
<eOperations name="eGet" eType="#//EJavaObject">
<eParameters name="feature" eType="#//EStructuralFeature"/>
<eParameters name="resolve" eType="#//EBoolean"/>
</eOperations>
<eOperations name="eSet">
<eParameters name="feature" eType="#//EStructuralFeature"/>
<eParameters name="newValue" eType="#//EJavaObject"/>
</eOperations>
<eOperations name="eIsSet" eType="#//EBoolean">
<eParameters name="feature" eType="#//EStructuralFeature"/>
</eOperations>
<eOperations name="eUnset">
<eParameters name="feature" eType="#//EStructuralFeature"/>
</eOperations>
<eOperations name="eInvoke" eType="#//EJavaObject" eExceptions="#//EInvocationTargetException">
<eParameters name="operation" eType="#//EOperation"/>
<eParameters name="arguments">
<eGenericType eClassifier="#//EEList">
<eTypeArguments/>
</eGenericType>
</eParameters>
</eOperations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EOperation" eSuperTypes="#//ETypedElement">
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore">
<details key="constraints" value="UniqueParameterNames UniqueTypeParameterNames NoRepeatingVoid"/>
</eAnnotations>
<eOperations name="getOperationID" eType="#//EInt"/>
<eOperations name="isOverrideOf" eType="#//EBoolean">
<eParameters name="someOperation" eType="#//EOperation"/>
</eOperations>
<eStructuralFeatures xsi:type="ecore:EReference" name="eContainingClass" eType="#//EClass"
changeable="false" transient="true" resolveProxies="false" eOpposite="#//EClass/eOperations"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eTypeParameters" upperBound="-1"
eType="#//ETypeParameter" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eParameters" upperBound="-1"
eType="#//EParameter" containment="true" resolveProxies="false" eOpposite="#//EParameter/eOperation"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eExceptions" upperBound="-1"
eType="#//EClassifier" unsettable="true">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="suppressedIsSetVisibility" value="true"/>
<details key="suppressedUnsetVisibility" value="true"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="eGenericExceptions" upperBound="-1"
eType="#//EGenericType" unsettable="true" containment="true" resolveProxies="false">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="suppressedIsSetVisibility" value="true"/>
<details key="suppressedUnsetVisibility" value="true"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EPackage" eSuperTypes="#//ENamedElement">
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore">
<details key="constraints" value="WellFormedNsURI WellFormedNsPrefix UniqueSubpackageNames UniqueClassifierNames UniqueNsURIs"/>
</eAnnotations>
<eOperations name="getEClassifier" eType="#//EClassifier">
<eParameters name="name" eType="#//EString"/>
</eOperations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="nsURI" eType="#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="nsPrefix" eType="#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eFactoryInstance" lowerBound="1"
eType="#//EFactory" transient="true" resolveProxies="false" eOpposite="#//EFactory/ePackage"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eClassifiers" upperBound="-1"
eType="#//EClassifier" containment="true" eOpposite="#//EClassifier/ePackage"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eSubpackages" upperBound="-1"
eType="#//EPackage" containment="true" eOpposite="#//EPackage/eSuperPackage"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eSuperPackage" eType="#//EPackage"
changeable="false" transient="true" eOpposite="#//EPackage/eSubpackages"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EParameter" eSuperTypes="#//ETypedElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="eOperation" eType="#//EOperation"
changeable="false" transient="true" resolveProxies="false" eOpposite="#//EOperation/eParameters"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EReference" eSuperTypes="#//EStructuralFeature">
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore">
<details key="constraints" value="ConsistentOpposite SingleContainer ConsistentKeys ConsistentUnique ConsistentContainer"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="containment" eType="#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="container" eType="#//EBoolean"
changeable="false" volatile="true" transient="true" derived="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="resolveProxies" eType="#//EBoolean"
defaultValueLiteral="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eOpposite" eType="#//EReference"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eReferenceType" lowerBound="1"
eType="#//EClass" changeable="false" volatile="true" transient="true" derived="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eKeys" upperBound="-1"
eType="#//EAttribute"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EStructuralFeature" abstract="true"
eSuperTypes="#//ETypedElement">
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore">
<details key="constraints" value="ValidDefaultValueLiteral"/>
</eAnnotations>
<eOperations name="getFeatureID" eType="#//EInt"/>
<eOperations name="getContainerClass">
<eGenericType eClassifier="#//EJavaClass">
<eTypeArguments/>
</eGenericType>
</eOperations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="changeable" eType="#//EBoolean"
defaultValueLiteral="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="volatile" eType="#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="transient" eType="#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="defaultValueLiteral" eType="#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="defaultValue" eType="#//EJavaObject"
changeable="false" volatile="true" transient="true" derived="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="unsettable" eType="#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="derived" eType="#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eContainingClass" eType="#//EClass"
changeable="false" transient="true" resolveProxies="false" eOpposite="#//EClass/eStructuralFeatures"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ETypedElement" abstract="true" eSuperTypes="#//ENamedElement">
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore">
<details key="constraints" value="ValidLowerBound ValidUpperBound ConsistentBounds ValidType"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="ordered" eType="#//EBoolean"
defaultValueLiteral="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="unique" eType="#//EBoolean"
defaultValueLiteral="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="lowerBound" eType="#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="upperBound" eType="#//EInt"
defaultValueLiteral="1"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="many" eType="#//EBoolean"
changeable="false" volatile="true" transient="true" derived="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="required" eType="#//EBoolean"
changeable="false" volatile="true" transient="true" derived="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eType" eType="#//EClassifier"
volatile="true" unsettable="true">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="suppressedIsSetVisibility" value="true"/>
<details key="suppressedUnsetVisibility" value="true"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="eGenericType" eType="#//EGenericType"
volatile="true" unsettable="true" containment="true" resolveProxies="false">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="suppressedIsSetVisibility" value="true"/>
<details key="suppressedUnsetVisibility" value="true"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="EBigDecimal" instanceClassName="java.math.BigDecimal">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="baseType" value="http://www.w3.org/2001/XMLSchema#decimal"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="EBigInteger" instanceClassName="java.math.BigInteger">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="baseType" value="http://www.w3.org/2001/XMLSchema#integer"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="EBoolean" instanceClassName="boolean">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="baseType" value="http://www.w3.org/2001/XMLSchema#boolean"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="EBooleanObject" instanceClassName="java.lang.Boolean">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="baseType" value="EBoolean"/>
<details key="name" value="EBoolean:Object"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="EByte" instanceClassName="byte">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="baseType" value="http://www.w3.org/2001/XMLSchema#byte"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="EByteArray" instanceClassName="byte[]">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="baseType" value="http://www.w3.org/2001/XMLSchema#hexBinary"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="EByteObject" instanceClassName="java.lang.Byte">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="baseType" value="EByte"/>
<details key="name" value="EByte:Object"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="EChar" instanceClassName="char"/>
<eClassifiers xsi:type="ecore:EDataType" name="ECharacterObject" instanceClassName="java.lang.Character">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="baseType" value="EChar"/>
<details key="name" value="EChar:Object"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="EDate" instanceClassName="java.util.Date"/>
<eClassifiers xsi:type="ecore:EDataType" name="EDiagnosticChain" instanceClassName="org.eclipse.emf.common.util.DiagnosticChain"
serializable="false"/>
<eClassifiers xsi:type="ecore:EDataType" name="EDouble" instanceClassName="double">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="baseType" value="http://www.w3.org/2001/XMLSchema#double"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="EDoubleObject" instanceClassName="java.lang.Double">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="baseType" value="EDouble"/>
<details key="name" value="EDouble:Object"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="EEList" instanceClassName="org.eclipse.emf.common.util.EList"
serializable="false">
<eTypeParameters name="E"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="EEnumerator" instanceClassName="org.eclipse.emf.common.util.Enumerator"
serializable="false"/>
<eClassifiers xsi:type="ecore:EDataType" name="EFeatureMap" instanceClassName="org.eclipse.emf.ecore.util.FeatureMap"
serializable="false"/>
<eClassifiers xsi:type="ecore:EDataType" name="EFeatureMapEntry" instanceClassName="org.eclipse.emf.ecore.util.FeatureMap$Entry"
serializable="false"/>
<eClassifiers xsi:type="ecore:EDataType" name="EFloat" instanceClassName="float">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="baseType" value="http://www.w3.org/2001/XMLSchema#float"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="EFloatObject" instanceClassName="java.lang.Float">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="baseType" value="EFloat"/>
<details key="name" value="EFloat:Object"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="EInt" instanceClassName="int">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="baseType" value="http://www.w3.org/2001/XMLSchema#int"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="EIntegerObject" instanceClassName="java.lang.Integer">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="baseType" value="EInt"/>
<details key="name" value="EInt:Object"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="EJavaClass" instanceClassName="java.lang.Class">
<eTypeParameters name="T"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="EJavaObject" instanceClassName="java.lang.Object"/>
<eClassifiers xsi:type="ecore:EDataType" name="ELong" instanceClassName="long">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="baseType" value="http://www.w3.org/2001/XMLSchema#long"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="ELongObject" instanceClassName="java.lang.Long">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="baseType" value="ELong"/>
<details key="name" value="ELong:Object"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="EMap" instanceClassName="java.util.Map"
serializable="false">
<eTypeParameters name="K"/>
<eTypeParameters name="V"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="EResource" instanceClassName="org.eclipse.emf.ecore.resource.Resource"
serializable="false"/>
<eClassifiers xsi:type="ecore:EDataType" name="EResourceSet" instanceClassName="org.eclipse.emf.ecore.resource.ResourceSet"
serializable="false"/>
<eClassifiers xsi:type="ecore:EDataType" name="EShort" instanceClassName="short">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="baseType" value="http://www.w3.org/2001/XMLSchema#short"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="EShortObject" instanceClassName="java.lang.Short">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="baseType" value="EShort"/>
<details key="name" value="EShort:Object"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="EString" instanceClassName="java.lang.String">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="baseType" value="http://www.w3.org/2001/XMLSchema#string"/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EStringToStringMapEntry" instanceClassName="java.util.Map$Entry">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="key" eType="#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="ETreeIterator" instanceClassName="org.eclipse.emf.common.util.TreeIterator"
serializable="false">
<eTypeParameters name="E"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="EGenericType">
<eAnnotations source="http://www.eclipse.org/emf/2002/Ecore">
<details key="constraints" value="ConsistentType ConsistentBounds ConsistentArguments"/>
</eAnnotations>
<eOperations name="isInstance" eType="#//EBoolean">
<eParameters name="object" eType="#//EJavaObject"/>
</eOperations>
<eStructuralFeatures xsi:type="ecore:EReference" name="eUpperBound" eType="#//EGenericType"
containment="true" resolveProxies="false"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eTypeArguments" upperBound="-1"
eType="#//EGenericType" containment="true" resolveProxies="false"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eRawType" lowerBound="1"
eType="#//EClassifier" changeable="false" transient="true" derived="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eLowerBound" eType="#//EGenericType"
containment="true" resolveProxies="false"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eTypeParameter" eType="#//ETypeParameter"
resolveProxies="false"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="eClassifier" eType="#//EClassifier"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ETypeParameter" eSuperTypes="#//ENamedElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="eBounds" upperBound="-1"
eType="#//EGenericType" containment="true" resolveProxies="false"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EDataType" name="EInvocationTargetException" instanceClassName="java.lang.reflect.InvocationTargetException"
serializable="false"/>
<eClassifiers xsi:type="ecore:EClass" name="MemoClass" eSuperTypes="#//EClass">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="instance" upperBound="-1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EJavaObject"/>
</eClassifiers>
</ecore:EPackage>
| github:ecore:/data/hogoww/Master-S3/metaprog/emf2/org.eclipse.emf.ecore/model/Ecore.ecore | ecore | ecore
EAttribute
iD
eAttributeType
EAnnotation
source
details
eModelElement
contents
references
EClass
isSuperTypeOf
someClass
getFeatureCount
getEStructuralFeature
featureID
getFeatureID
feature
getEStructuralFeature
featureName
getOperationCount
getEOperation
operationID
getOperationID
operation
getOverride
operation
getFeatureType
feature
abstract
interface
eSuperTypes
eOperations
eAllAttributes
eAllReferences
eReferences
eAttributes
eAllContainments
eAllOperations
eAllStructuralFeatures
eAllSuperTypes
eIDAttribute
eStructuralFeatures
eGenericSuperTypes
eAllGenericSuperTypes
EClassifier
isInstance
object
getClassifierID
instanceClassName
instanceClass
defaultValue
instanceTypeName
ePackage
eTypeParameters
EDataType
serializable
true
EEnum
getEEnumLiteral
name
getEEnumLiteral
value
getEEnumLiteralByLiteral
literal
eLiterals
EEnumLiteral
value
instance
literal
eEnum
EFactory
create
eClass
createFromString
eDataType
literalValue
convertToString
eDataType
instanceValue
ePackage
EModelElement
getEAnnotation
source
eAnnotations
ENamedElement
name
EObject
eClass
eIsProxy
eResource
eContainer
eContainingFeature
eContainmentFeature
eContents
eAllContents
eCrossReferences
eGet
feature
eGet
feature
resolve
eSet
feature
newValue
eIsSet
feature
eUnset
feature
eInvoke
operation
arguments
EOperation
getOperationID
isOverrideOf
someOperation
eContainingClass
eTypeParameters
eParameters
eExceptions
eGenericExceptions
EPackage
getEClassifier
name
nsURI
nsPrefix
eFactoryInstance
eClassifiers
eSubpackages
eSuperPackage
EParameter
eOperation
EReference
containment
container
resolveProxies
true
eOpposite
eReferenceType
eKeys
EStructuralFeature
getFeatureID
getContainerClass
changeable
true
volatile
transient
defaultValueLiteral
defaultValue
unsettable
derived
eContainingClass
ETypedElement
ordered
true
unique
true
lowerBound
upperBound
1
many
required
eType
eGenericType
EBigDecimal
java.math.BigDecimal
java.math.BigDecimal
EBigInteger
java.math.BigInteger
java.math.BigInteger
EBoolean
boolean
boolean
EBooleanObject
java.lang.Boolean
java.lang.Boolean
EByte
byte
byte
EByteArray
byte[]
byte[]
EByteObject
java.lang.Byte
java.lang.Byte
EChar
char
char
ECharacterObject
java.lang.Character
java.lang.Character
EDate
java.util.Date
java.util.Date
EDiagnosticChain
org.eclipse.emf.common.util.DiagnosticChain
org.eclipse.emf.common.util.DiagnosticChain
EDouble
double
double
EDoubleObject
java.lang.Double
java.lang.Double
EEList
org.eclipse.emf.common.util.EList
org.eclipse.emf.common.util.EList
E
EEnumerator
org.eclipse.emf.common.util.Enumerator
org.eclipse.emf.common.util.Enumerator
EFeatureMap
org.eclipse.emf.ecore.util.FeatureMap
org.eclipse.emf.ecore.util.FeatureMap
EFeatureMapEntry
org.eclipse.emf.ecore.util.FeatureMap$Entry
org.eclipse.emf.ecore.util.FeatureMap$Entry
EFloat
float
float
EFloatObject
java.lang.Float
java.lang.Float
EInt
int
int
EIntegerObject
java.lang.Integer
java.lang.Integer
EJavaClass
java.lang.Class
java.lang.Class
T
EJavaObject
java.lang.Object
java.lang.Object
ELong
long
long
ELongObject
java.lang.Long
java.lang.Long
EMap
java.util.Map
java.util.Map
K
V
EResource
org.eclipse.emf.ecore.resource.Resource
org.eclipse.emf.ecore.resource.Resource
EResourceSet
org.eclipse.emf.ecore.resource.ResourceSet
org.eclipse.emf.ecore.resource.ResourceSet
EShort
short
short
EShortObject
java.lang.Short
java.lang.Short
EString
java.lang.String
java.lang.String
EStringToStringMapEntry
java.util.Map$Entry
java.util.Map$Entry
key
value
ETreeIterator
org.eclipse.emf.common.util.TreeIterator
org.eclipse.emf.common.util.TreeIterator
E
EGenericType
isInstance
object
eUpperBound
eTypeArguments
eRawType
eLowerBound
eTypeParameter
eClassifier
ETypeParameter
eBounds
EInvocationTargetException
java.lang.reflect.InvocationTargetException
java.lang.reflect.InvocationTargetException
MemoClass
instance | null | {"directed":true,"nodes":[{"nsPrefix":"ecore","nsURI":"http://www.eclipse.org/emf/2002/Ecore","name":"ecore","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EAttribute","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EAnnotation","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EClass","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EClassifier","instanceClass":null,"abstract":true,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EDataType","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EEnum","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EEnumLiteral","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EFactory","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EModelElement","instanceClass":null,"abstract":true,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ENamedElement","instanceClass":null,"abstract":true,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EObject","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EOperation","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EPackage","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EParameter","instanceClass":null,"abstract":false,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EReference","instanceClass":null,"abstract":false,"id":15,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EStructuralFeature","instanceClass":null,"abstract":true,"id":16,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ETypedElement","instanceClass":null,"abstract":true,"id":17,"interface":false,"eClass":"EClass"},{"instanceTypeName":"java.math.BigDecimal","defaultValue":null,"instanceClassName":"java.math.BigDecimal","name":"EBigDecimal","instanceClass":"java.math.BigDecimal","id":18,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.math.BigInteger","defaultValue":null,"instanceClassName":"java.math.BigInteger","name":"EBigInteger","instanceClass":"java.math.BigInteger","id":19,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"boolean","defaultValue":false,"instanceClassName":"boolean","name":"EBoolean","instanceClass":"boolean","id":20,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.lang.Boolean","defaultValue":null,"instanceClassName":"java.lang.Boolean","name":"EBooleanObject","instanceClass":"java.lang.Boolean","id":21,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"byte","defaultValue":0,"instanceClassName":"byte","name":"EByte","instanceClass":"byte","id":22,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"byte[]","defaultValue":null,"instanceClassName":"byte[]","name":"EByteArray","instanceClass":"[B","id":23,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.lang.Byte","defaultValue":null,"instanceClassName":"java.lang.Byte","name":"EByteObject","instanceClass":"java.lang.Byte","id":24,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"char","defaultValue":"\u0000","instanceClassName":"char","name":"EChar","instanceClass":"char","id":25,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.lang.Character","defaultValue":null,"instanceClassName":"java.lang.Character","name":"ECharacterObject","instanceClass":"java.lang.Character","id":26,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.util.Date","defaultValue":null,"instanceClassName":"java.util.Date","name":"EDate","instanceClass":"java.util.Date","id":27,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"org.eclipse.emf.common.util.DiagnosticChain","defaultValue":null,"instanceClassName":"org.eclipse.emf.common.util.DiagnosticChain","name":"EDiagnosticChain","instanceClass":"org.eclipse.emf.common.util.DiagnosticChain","id":28,"serializable":false,"eClass":"EDataType"},{"instanceTypeName":"double","defaultValue":0.0,"instanceClassName":"double","name":"EDouble","instanceClass":"double","id":29,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.lang.Double","defaultValue":null,"instanceClassName":"java.lang.Double","name":"EDoubleObject","instanceClass":"java.lang.Double","id":30,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"org.eclipse.emf.common.util.EList","defaultValue":null,"instanceClassName":"org.eclipse.emf.common.util.EList","name":"EEList","instanceClass":"org.eclipse.emf.common.util.EList","id":31,"serializable":false,"eClass":"EDataType"},{"instanceTypeName":"org.eclipse.emf.common.util.Enumerator","defaultValue":null,"instanceClassName":"org.eclipse.emf.common.util.Enumerator","name":"EEnumerator","instanceClass":"org.eclipse.emf.common.util.Enumerator","id":32,"serializable":false,"eClass":"EDataType"},{"instanceTypeName":"org.eclipse.emf.ecore.util.FeatureMap","defaultValue":null,"instanceClassName":"org.eclipse.emf.ecore.util.FeatureMap","name":"EFeatureMap","instanceClass":"org.eclipse.emf.ecore.util.FeatureMap","id":33,"serializable":false,"eClass":"EDataType"},{"instanceTypeName":"org.eclipse.emf.ecore.util.FeatureMap$Entry","defaultValue":null,"instanceClassName":"org.eclipse.emf.ecore.util.FeatureMap$Entry","name":"EFeatureMapEntry","instanceClass":"org.eclipse.emf.ecore.util.FeatureMap$Entry","id":34,"serializable":false,"eClass":"EDataType"},{"instanceTypeName":"float","defaultValue":0.0,"instanceClassName":"float","name":"EFloat","instanceClass":"float","id":35,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.lang.Float","defaultValue":null,"instanceClassName":"java.lang.Float","name":"EFloatObject","instanceClass":"java.lang.Float","id":36,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"int","defaultValue":0,"instanceClassName":"int","name":"EInt","instanceClass":"int","id":37,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.lang.Integer","defaultValue":null,"instanceClassName":"java.lang.Integer","name":"EIntegerObject","instanceClass":"java.lang.Integer","id":38,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.lang.Class","defaultValue":null,"instanceClassName":"java.lang.Class","name":"EJavaClass","instanceClass":"java.lang.Class","id":39,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.lang.Object","defaultValue":null,"instanceClassName":"java.lang.Object","name":"EJavaObject","instanceClass":"java.lang.Object","id":40,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"long","defaultValue":0,"instanceClassName":"long","name":"ELong","instanceClass":"long","id":41,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.lang.Long","defaultValue":null,"instanceClassName":"java.lang.Long","name":"ELongObject","instanceClass":"java.lang.Long","id":42,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.util.Map","defaultValue":null,"instanceClassName":"java.util.Map","name":"EMap","instanceClass":"java.util.Map","id":43,"serializable":false,"eClass":"EDataType"},{"instanceTypeName":"org.eclipse.emf.ecore.resource.Resource","defaultValue":null,"instanceClassName":"org.eclipse.emf.ecore.resource.Resource","name":"EResource","instanceClass":"org.eclipse.emf.ecore.resource.Resource","id":44,"serializable":false,"eClass":"EDataType"},{"instanceTypeName":"org.eclipse.emf.ecore.resource.ResourceSet","defaultValue":null,"instanceClassName":"org.eclipse.emf.ecore.resource.ResourceSet","name":"EResourceSet","instanceClass":"org.eclipse.emf.ecore.resource.ResourceSet","id":45,"serializable":false,"eClass":"EDataType"},{"instanceTypeName":"short","defaultValue":0,"instanceClassName":"short","name":"EShort","instanceClass":"short","id":46,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.lang.Short","defaultValue":null,"instanceClassName":"java.lang.Short","name":"EShortObject","instanceClass":"java.lang.Short","id":47,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.lang.String","defaultValue":null,"instanceClassName":"java.lang.String","name":"EString","instanceClass":"java.lang.String","id":48,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.util.Map$Entry","defaultValue":null,"instanceClassName":"java.util.Map$Entry","name":"EStringToStringMapEntry","instanceClass":"java.util.Map$Entry","abstract":false,"id":49,"interface":false,"eClass":"EClass"},{"instanceTypeName":"org.eclipse.emf.common.util.TreeIterator","defaultValue":null,"instanceClassName":"org.eclipse.emf.common.util.TreeIterator","name":"ETreeIterator","instanceClass":"org.eclipse.emf.common.util.TreeIterator","id":50,"serializable":false,"eClass":"EDataType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EGenericType","instanceClass":null,"abstract":false,"id":51,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ETypeParameter","instanceClass":null,"abstract":false,"id":52,"interface":false,"eClass":"EClass"},{"instanceTypeName":"java.lang.reflect.InvocationTargetException","defaultValue":null,"instanceClassName":"java.lang.reflect.InvocationTargetException","name":"EInvocationTargetException","instanceClass":"java.lang.reflect.InvocationTargetException","id":53,"serializable":false,"eClass":"EDataType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MemoClass","instanceClass":null,"abstract":false,"id":54,"interface":false,"eClass":"EClass"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"iD","changeable":true,"lowerBound":0,"iD":false,"id":55,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":true,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"eAttributeType","changeable":false,"resolveProxies":true,"lowerBound":1,"id":56,"derived":true},{"id":57,"eClass":"EGenericType"},{"id":58,"eClass":"EGenericType"},{"id":59,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"source","changeable":true,"lowerBound":0,"iD":false,"id":60,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"details","changeable":true,"resolveProxies":false,"lowerBound":0,"id":61,"derived":false},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"eModelElement","changeable":true,"resolveProxies":false,"lowerBound":0,"id":62,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"contents","changeable":true,"resolveProxies":false,"lowerBound":0,"id":63,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"references","changeable":true,"resolveProxies":true,"lowerBound":0,"id":64,"derived":false},{"id":65,"eClass":"EGenericType"},{"id":66,"eClass":"EGenericType"},{"id":67,"eClass":"EGenericType"},{"id":68,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"eAnnotations","changeable":true,"resolveProxies":false,"lowerBound":0,"id":69,"derived":false},{"id":70,"eClass":"EGenericType"},{"id":71,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"isSuperTypeOf","lowerBound":0,"id":72,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getFeatureCount","lowerBound":0,"id":73,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getEStructuralFeature","lowerBound":0,"id":74,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getFeatureID","lowerBound":0,"id":75,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getEStructuralFeature","lowerBound":0,"id":76,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getOperationCount","lowerBound":0,"id":77,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getEOperation","lowerBound":0,"id":78,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getOperationID","lowerBound":0,"id":79,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getOverride","lowerBound":0,"id":80,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getFeatureType","lowerBound":0,"id":81,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"abstract","changeable":true,"lowerBound":0,"iD":false,"id":82,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"interface","changeable":true,"lowerBound":0,"iD":false,"id":83,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":true,"transient":false,"unique":true,"name":"eSuperTypes","changeable":true,"resolveProxies":true,"lowerBound":0,"id":84,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"eOperations","changeable":true,"resolveProxies":false,"lowerBound":0,"id":85,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":true,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"eAllAttributes","changeable":false,"resolveProxies":true,"lowerBound":0,"id":86,"derived":true},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":true,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"eAllReferences","changeable":false,"resolveProxies":true,"lowerBound":0,"id":87,"derived":true},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":true,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"eReferences","changeable":false,"resolveProxies":true,"lowerBound":0,"id":88,"derived":true},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":true,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"eAttributes","changeable":false,"resolveProxies":true,"lowerBound":0,"id":89,"derived":true},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":true,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"eAllContainments","changeable":false,"resolveProxies":true,"lowerBound":0,"id":90,"derived":true},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":true,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"eAllOperations","changeable":false,"resolveProxies":true,"lowerBound":0,"id":91,"derived":true},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":true,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"eAllStructuralFeatures","changeable":false,"resolveProxies":true,"lowerBound":0,"id":92,"derived":true},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":true,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"eAllSuperTypes","changeable":false,"resolveProxies":true,"lowerBound":0,"id":93,"derived":true},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":true,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"eIDAttribute","changeable":false,"resolveProxies":false,"lowerBound":0,"id":94,"derived":true},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"eStructuralFeatures","changeable":true,"resolveProxies":false,"lowerBound":0,"id":95,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":true,"transient":false,"unique":true,"name":"eGenericSuperTypes","changeable":true,"resolveProxies":false,"lowerBound":0,"id":96,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":true,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"eAllGenericSuperTypes","changeable":false,"resolveProxies":true,"lowerBound":0,"id":97,"derived":true},{"id":98,"eClass":"EGenericType"},{"id":99,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"someClass","lowerBound":0,"id":100,"many":false,"required":false,"eClass":"EParameter"},{"id":101,"eClass":"EGenericType"},{"id":102,"eClass":"EGenericType"},{"id":103,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"featureID","lowerBound":0,"id":104,"many":false,"required":false,"eClass":"EParameter"},{"id":105,"eClass":"EGenericType"},{"id":106,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"feature","lowerBound":0,"id":107,"many":false,"required":false,"eClass":"EParameter"},{"id":108,"eClass":"EGenericType"},{"id":109,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"featureName","lowerBound":0,"id":110,"many":false,"required":false,"eClass":"EParameter"},{"id":111,"eClass":"EGenericType"},{"id":112,"eClass":"EGenericType"},{"id":113,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"operationID","lowerBound":0,"id":114,"many":false,"required":false,"eClass":"EParameter"},{"id":115,"eClass":"EGenericType"},{"id":116,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"operation","lowerBound":0,"id":117,"many":false,"required":false,"eClass":"EParameter"},{"id":118,"eClass":"EGenericType"},{"id":119,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"operation","lowerBound":0,"id":120,"many":false,"required":false,"eClass":"EParameter"},{"id":121,"eClass":"EGenericType"},{"id":122,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"feature","lowerBound":0,"id":123,"many":false,"required":false,"eClass":"EParameter"},{"id":124,"eClass":"EGenericType"},{"id":125,"eClass":"EGenericType"},{"id":126,"eClass":"EGenericType"},{"id":127,"eClass":"EGenericType"},{"id":128,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"eContainingClass","changeable":false,"resolveProxies":false,"lowerBound":0,"id":129,"derived":false},{"id":130,"eClass":"EGenericType"},{"id":131,"eClass":"EGenericType"},{"id":132,"eClass":"EGenericType"},{"id":133,"eClass":"EGenericType"},{"id":134,"eClass":"EGenericType"},{"id":135,"eClass":"EGenericType"},{"id":136,"eClass":"EGenericType"},{"id":137,"eClass":"EGenericType"},{"id":138,"eClass":"EGenericType"},{"id":139,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"eContainingClass","changeable":false,"resolveProxies":false,"lowerBound":0,"id":140,"derived":false},{"id":141,"eClass":"EGenericType"},{"id":142,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"isInstance","lowerBound":0,"id":143,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getClassifierID","lowerBound":0,"id":144,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":true,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":true,"name":"instanceClassName","changeable":true,"lowerBound":0,"iD":false,"id":145,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":true,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":true,"unique":true,"name":"instanceClass","changeable":false,"lowerBound":0,"iD":false,"id":146,"derived":true},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":true,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":true,"unique":true,"name":"defaultValue","changeable":false,"lowerBound":0,"iD":false,"id":147,"derived":true},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":true,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":true,"name":"instanceTypeName","changeable":true,"lowerBound":0,"iD":false,"id":148,"derived":false},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"ePackage","changeable":false,"resolveProxies":true,"lowerBound":0,"id":149,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"eTypeParameters","changeable":true,"resolveProxies":true,"lowerBound":0,"id":150,"derived":false},{"id":151,"eClass":"EGenericType"},{"id":152,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"object","lowerBound":0,"id":153,"many":false,"required":false,"eClass":"EParameter"},{"id":154,"eClass":"EGenericType"},{"id":155,"eClass":"EGenericType"},{"id":156,"eClass":"EGenericType"},{"id":157,"eClass":"EGenericType"},{"id":158,"eClass":"EGenericType"},{"id":159,"eClass":"EGenericType"},{"id":160,"eClass":"EGenericType"},{"id":161,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"eClassifiers","changeable":true,"resolveProxies":true,"lowerBound":0,"id":162,"derived":false},{"id":163,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":true,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"true","unsettable":false,"transient":false,"unique":true,"name":"serializable","changeable":true,"lowerBound":0,"iD":false,"id":164,"derived":false},{"id":165,"eClass":"EGenericType"},{"id":166,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"getEEnumLiteral","lowerBound":0,"id":167,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getEEnumLiteral","lowerBound":0,"id":168,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getEEnumLiteralByLiteral","lowerBound":0,"id":169,"many":false,"required":false,"eClass":"EOperation"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"eLiterals","changeable":true,"resolveProxies":false,"lowerBound":0,"id":170,"derived":false},{"id":171,"eClass":"EGenericType"},{"id":172,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"name","lowerBound":0,"id":173,"many":false,"required":false,"eClass":"EParameter"},{"id":174,"eClass":"EGenericType"},{"id":175,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"value","lowerBound":0,"id":176,"many":false,"required":false,"eClass":"EParameter"},{"id":177,"eClass":"EGenericType"},{"id":178,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"literal","lowerBound":0,"id":179,"many":false,"required":false,"eClass":"EParameter"},{"id":180,"eClass":"EGenericType"},{"id":181,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"eEnum","changeable":false,"resolveProxies":false,"lowerBound":0,"id":182,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":0,"iD":false,"id":183,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":true,"unique":true,"name":"instance","changeable":true,"lowerBound":0,"iD":false,"id":184,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"literal","changeable":true,"lowerBound":0,"iD":false,"id":185,"derived":false},{"id":186,"eClass":"EGenericType"},{"id":187,"eClass":"EGenericType"},{"id":188,"eClass":"EGenericType"},{"id":189,"eClass":"EGenericType"},{"id":190,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"create","lowerBound":0,"id":191,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"createFromString","lowerBound":0,"id":192,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"convertToString","lowerBound":0,"id":193,"many":false,"required":false,"eClass":"EOperation"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"ePackage","changeable":true,"resolveProxies":false,"lowerBound":1,"id":194,"derived":false},{"id":195,"eClass":"EGenericType"},{"id":196,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"eClass","lowerBound":0,"id":197,"many":false,"required":false,"eClass":"EParameter"},{"id":198,"eClass":"EGenericType"},{"id":199,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"eDataType","lowerBound":0,"id":200,"many":false,"required":false,"eClass":"EParameter"},{"ordered":true,"upperBound":1,"unique":true,"name":"literalValue","lowerBound":0,"id":201,"many":false,"required":false,"eClass":"EParameter"},{"id":202,"eClass":"EGenericType"},{"id":203,"eClass":"EGenericType"},{"id":204,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"eDataType","lowerBound":0,"id":205,"many":false,"required":false,"eClass":"EParameter"},{"ordered":true,"upperBound":1,"unique":true,"name":"instanceValue","lowerBound":0,"id":206,"many":false,"required":false,"eClass":"EParameter"},{"id":207,"eClass":"EGenericType"},{"id":208,"eClass":"EGenericType"},{"id":209,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"eFactoryInstance","changeable":true,"resolveProxies":false,"lowerBound":1,"id":210,"derived":false},{"ordered":true,"upperBound":1,"unique":true,"name":"getEAnnotation","lowerBound":0,"id":211,"many":false,"required":false,"eClass":"EOperation"},{"id":212,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"source","lowerBound":0,"id":213,"many":false,"required":false,"eClass":"EParameter"},{"id":214,"eClass":"EGenericType"},{"id":215,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":216,"derived":false},{"id":217,"eClass":"EGenericType"},{"id":218,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"eClass","lowerBound":0,"id":219,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"eIsProxy","lowerBound":0,"id":220,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"eResource","lowerBound":0,"id":221,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"eContainer","lowerBound":0,"id":222,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"eContainingFeature","lowerBound":0,"id":223,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"eContainmentFeature","lowerBound":0,"id":224,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"eContents","lowerBound":0,"id":225,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"eAllContents","lowerBound":0,"id":226,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"eCrossReferences","lowerBound":0,"id":227,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"eGet","lowerBound":0,"id":228,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"eGet","lowerBound":0,"id":229,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"eSet","lowerBound":0,"id":230,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"eIsSet","lowerBound":0,"id":231,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"eUnset","lowerBound":0,"id":232,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"eInvoke","lowerBound":0,"id":233,"many":false,"required":false,"eClass":"EOperation"},{"id":234,"eClass":"EGenericType"},{"id":235,"eClass":"EGenericType"},{"id":236,"eClass":"EGenericType"},{"id":237,"eClass":"EGenericType"},{"id":238,"eClass":"EGenericType"},{"id":239,"eClass":"EGenericType"},{"id":240,"eClass":"EGenericType"},{"id":241,"eClass":"EGenericType"},{"id":242,"eClass":"EGenericType"},{"id":243,"eClass":"EGenericType"},{"id":244,"eClass":"EGenericType"},{"id":245,"eClass":"EGenericType"},{"id":246,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"feature","lowerBound":0,"id":247,"many":false,"required":false,"eClass":"EParameter"},{"id":248,"eClass":"EGenericType"},{"id":249,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"feature","lowerBound":0,"id":250,"many":false,"required":false,"eClass":"EParameter"},{"ordered":true,"upperBound":1,"unique":true,"name":"resolve","lowerBound":0,"id":251,"many":false,"required":false,"eClass":"EParameter"},{"id":252,"eClass":"EGenericType"},{"id":253,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"feature","lowerBound":0,"id":254,"many":false,"required":false,"eClass":"EParameter"},{"ordered":true,"upperBound":1,"unique":true,"name":"newValue","lowerBound":0,"id":255,"many":false,"required":false,"eClass":"EParameter"},{"id":256,"eClass":"EGenericType"},{"id":257,"eClass":"EGenericType"},{"id":258,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"feature","lowerBound":0,"id":259,"many":false,"required":false,"eClass":"EParameter"},{"id":260,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"feature","lowerBound":0,"id":261,"many":false,"required":false,"eClass":"EParameter"},{"id":262,"eClass":"EGenericType"},{"id":263,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"operation","lowerBound":0,"id":264,"many":false,"required":false,"eClass":"EParameter"},{"ordered":true,"upperBound":1,"unique":true,"name":"arguments","lowerBound":0,"id":265,"many":false,"required":false,"eClass":"EParameter"},{"id":266,"eClass":"EGenericType"},{"id":267,"eClass":"EGenericType"},{"id":268,"eClass":"EGenericType"},{"id":269,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"getOperationID","lowerBound":0,"id":270,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"isOverrideOf","lowerBound":0,"id":271,"many":false,"required":false,"eClass":"EOperation"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"eTypeParameters","changeable":true,"resolveProxies":true,"lowerBound":0,"id":272,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"eParameters","changeable":true,"resolveProxies":false,"lowerBound":0,"id":273,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":true,"transient":false,"unique":true,"name":"eExceptions","changeable":true,"resolveProxies":true,"lowerBound":0,"id":274,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":true,"transient":false,"unique":true,"name":"eGenericExceptions","changeable":true,"resolveProxies":false,"lowerBound":0,"id":275,"derived":false},{"id":276,"eClass":"EGenericType"},{"id":277,"eClass":"EGenericType"},{"id":278,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"someOperation","lowerBound":0,"id":279,"many":false,"required":false,"eClass":"EParameter"},{"id":280,"eClass":"EGenericType"},{"id":281,"eClass":"EGenericType"},{"id":282,"eClass":"EGenericType"},{"id":283,"eClass":"EGenericType"},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"eOperation","changeable":false,"resolveProxies":false,"lowerBound":0,"id":284,"derived":false},{"id":285,"eClass":"EGenericType"},{"id":286,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"getEClassifier","lowerBound":0,"id":287,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"nsURI","changeable":true,"lowerBound":0,"iD":false,"id":288,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"nsPrefix","changeable":true,"lowerBound":0,"iD":false,"id":289,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"eSubpackages","changeable":true,"resolveProxies":true,"lowerBound":0,"id":290,"derived":false},{"container":true,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"eSuperPackage","changeable":false,"resolveProxies":true,"lowerBound":0,"id":291,"derived":false},{"id":292,"eClass":"EGenericType"},{"id":293,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"name","lowerBound":0,"id":294,"many":false,"required":false,"eClass":"EParameter"},{"id":295,"eClass":"EGenericType"},{"id":296,"eClass":"EGenericType"},{"id":297,"eClass":"EGenericType"},{"id":298,"eClass":"EGenericType"},{"id":299,"eClass":"EGenericType"},{"id":300,"eClass":"EGenericType"},{"id":301,"eClass":"EGenericType"},{"id":302,"eClass":"EGenericType"},{"id":303,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"containment","changeable":true,"lowerBound":0,"iD":false,"id":304,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":true,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":true,"unique":true,"name":"container","changeable":false,"lowerBound":0,"iD":false,"id":305,"derived":true},{"ordered":true,"upperBound":1,"defaultValue":true,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"true","unsettable":false,"transient":false,"unique":true,"name":"resolveProxies","changeable":true,"lowerBound":0,"iD":false,"id":306,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"eOpposite","changeable":true,"resolveProxies":true,"lowerBound":0,"id":307,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":true,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"eReferenceType","changeable":false,"resolveProxies":true,"lowerBound":1,"id":308,"derived":true},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"eKeys","changeable":true,"resolveProxies":true,"lowerBound":0,"id":309,"derived":false},{"id":310,"eClass":"EGenericType"},{"id":311,"eClass":"EGenericType"},{"id":312,"eClass":"EGenericType"},{"id":313,"eClass":"EGenericType"},{"id":314,"eClass":"EGenericType"},{"id":315,"eClass":"EGenericType"},{"id":316,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"getFeatureID","lowerBound":0,"id":317,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getContainerClass","lowerBound":0,"id":318,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"defaultValue":true,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"true","unsettable":false,"transient":false,"unique":true,"name":"changeable","changeable":true,"lowerBound":0,"iD":false,"id":319,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"volatile","changeable":true,"lowerBound":0,"iD":false,"id":320,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"transient","changeable":true,"lowerBound":0,"iD":false,"id":321,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"defaultValueLiteral","changeable":true,"lowerBound":0,"iD":false,"id":322,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":true,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":true,"unique":true,"name":"defaultValue","changeable":false,"lowerBound":0,"iD":false,"id":323,"derived":true},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"unsettable","changeable":true,"lowerBound":0,"iD":false,"id":324,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"derived","changeable":true,"lowerBound":0,"iD":false,"id":325,"derived":false},{"id":326,"eClass":"EGenericType"},{"id":327,"eClass":"EGenericType"},{"id":328,"eClass":"EGenericType"},{"id":329,"eClass":"EGenericType"},{"id":330,"eClass":"EGenericType"},{"id":331,"eClass":"EGenericType"},{"id":332,"eClass":"EGenericType"},{"id":333,"eClass":"EGenericType"},{"id":334,"eClass":"EGenericType"},{"id":335,"eClass":"EGenericType"},{"id":336,"eClass":"EGenericType"},{"id":337,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":true,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"true","unsettable":false,"transient":false,"unique":true,"name":"ordered","changeable":true,"lowerBound":0,"iD":false,"id":338,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":true,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"true","unsettable":false,"transient":false,"unique":true,"name":"unique","changeable":true,"lowerBound":0,"iD":false,"id":339,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"lowerBound","changeable":true,"lowerBound":0,"iD":false,"id":340,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"1","unsettable":false,"transient":false,"unique":true,"name":"upperBound","changeable":true,"lowerBound":0,"iD":false,"id":341,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":true,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":true,"unique":true,"name":"many","changeable":false,"lowerBound":0,"iD":false,"id":342,"derived":true},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":true,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":true,"unique":true,"name":"required","changeable":false,"lowerBound":0,"iD":false,"id":343,"derived":true},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":true,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":true,"transient":false,"unique":true,"name":"eType","changeable":true,"resolveProxies":true,"lowerBound":0,"id":344,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":true,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":true,"transient":false,"unique":true,"name":"eGenericType","changeable":true,"resolveProxies":false,"lowerBound":0,"id":345,"derived":false},{"id":346,"eClass":"EGenericType"},{"id":347,"eClass":"EGenericType"},{"id":348,"eClass":"EGenericType"},{"id":349,"eClass":"EGenericType"},{"id":350,"eClass":"EGenericType"},{"id":351,"eClass":"EGenericType"},{"id":352,"eClass":"EGenericType"},{"id":353,"eClass":"EGenericType"},{"id":354,"eClass":"EGenericType"},{"name":"E","id":355,"eClass":"ETypeParameter"},{"name":"T","id":356,"eClass":"ETypeParameter"},{"name":"K","id":357,"eClass":"ETypeParameter"},{"name":"V","id":358,"eClass":"ETypeParameter"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"key","changeable":true,"lowerBound":0,"iD":false,"id":359,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":0,"iD":false,"id":360,"derived":false},{"id":361,"eClass":"EGenericType"},{"id":362,"eClass":"EGenericType"},{"name":"E","id":363,"eClass":"ETypeParameter"},{"ordered":true,"upperBound":1,"unique":true,"name":"isInstance","lowerBound":0,"id":364,"many":false,"required":false,"eClass":"EOperation"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"eUpperBound","changeable":true,"resolveProxies":false,"lowerBound":0,"id":365,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"eTypeArguments","changeable":true,"resolveProxies":false,"lowerBound":0,"id":366,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"eRawType","changeable":false,"resolveProxies":true,"lowerBound":1,"id":367,"derived":true},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"eLowerBound","changeable":true,"resolveProxies":false,"lowerBound":0,"id":368,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"eTypeParameter","changeable":true,"resolveProxies":false,"lowerBound":0,"id":369,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"eClassifier","changeable":true,"resolveProxies":true,"lowerBound":0,"id":370,"derived":false},{"id":371,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"object","lowerBound":0,"id":372,"many":false,"required":false,"eClass":"EParameter"},{"id":373,"eClass":"EGenericType"},{"id":374,"eClass":"EGenericType"},{"id":375,"eClass":"EGenericType"},{"id":376,"eClass":"EGenericType"},{"id":377,"eClass":"EGenericType"},{"id":378,"eClass":"EGenericType"},{"id":379,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"eBounds","changeable":true,"resolveProxies":false,"lowerBound":0,"id":380,"derived":false},{"id":381,"eClass":"EGenericType"},{"id":382,"eClass":"EGenericType"},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"instance","changeable":true,"lowerBound":0,"iD":false,"id":383,"derived":false},{"id":384,"eClass":"EGenericType"},{"id":385,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":0,"target":8},{"source":0,"target":9},{"source":0,"target":10},{"source":0,"target":11},{"source":0,"target":12},{"source":0,"target":13},{"source":0,"target":14},{"source":0,"target":15},{"source":0,"target":16},{"source":0,"target":17},{"source":0,"target":18},{"source":0,"target":19},{"source":0,"target":20},{"source":0,"target":21},{"source":0,"target":22},{"source":0,"target":23},{"source":0,"target":24},{"source":0,"target":25},{"source":0,"target":26},{"source":0,"target":27},{"source":0,"target":28},{"source":0,"target":29},{"source":0,"target":30},{"source":0,"target":31},{"source":0,"target":32},{"source":0,"target":33},{"source":0,"target":34},{"source":0,"target":35},{"source":0,"target":36},{"source":0,"target":37},{"source":0,"target":38},{"source":0,"target":39},{"source":0,"target":40},{"source":0,"target":41},{"source":0,"target":42},{"source":0,"target":43},{"source":0,"target":44},{"source":0,"target":45},{"source":0,"target":46},{"source":0,"target":47},{"source":0,"target":48},{"source":0,"target":49},{"source":0,"target":50},{"source":0,"target":51},{"source":0,"target":52},{"source":0,"target":53},{"source":0,"target":54},{"source":1,"target":0},{"source":1,"target":16},{"source":1,"target":55},{"source":1,"target":56},{"source":1,"target":57},{"source":55,"target":20},{"source":55,"target":58},{"source":55,"target":1},{"source":58,"target":20},{"source":56,"target":5},{"source":56,"target":59},{"source":56,"target":1},{"source":59,"target":5},{"source":57,"target":16},{"source":2,"target":0},{"source":2,"target":9},{"source":2,"target":60},{"source":2,"target":61},{"source":2,"target":62},{"source":2,"target":63},{"source":2,"target":64},{"source":2,"target":65},{"source":60,"target":48},{"source":60,"target":66},{"source":60,"target":2},{"source":66,"target":48},{"source":61,"target":49},{"source":61,"target":67},{"source":61,"target":2},{"source":67,"target":49},{"source":62,"target":9},{"source":62,"target":68},{"source":62,"target":2},{"source":62,"target":69},{"source":68,"target":9},{"source":63,"target":11},{"source":63,"target":70},{"source":63,"target":2},{"source":70,"target":11},{"source":64,"target":11},{"source":64,"target":71},{"source":64,"target":2},{"source":71,"target":11},{"source":65,"target":9},{"source":3,"target":0},{"source":3,"target":4},{"source":3,"target":72},{"source":3,"target":73},{"source":3,"target":74},{"source":3,"target":75},{"source":3,"target":76},{"source":3,"target":77},{"source":3,"target":78},{"source":3,"target":79},{"source":3,"target":80},{"source":3,"target":81},{"source":3,"target":82},{"source":3,"target":83},{"source":3,"target":84},{"source":3,"target":85},{"source":3,"target":86},{"source":3,"target":87},{"source":3,"target":88},{"source":3,"target":89},{"source":3,"target":90},{"source":3,"target":91},{"source":3,"target":92},{"source":3,"target":93},{"source":3,"target":94},{"source":3,"target":95},{"source":3,"target":96},{"source":3,"target":97},{"source":3,"target":98},{"source":72,"target":20},{"source":72,"target":99},{"source":72,"target":3},{"source":72,"target":100},{"source":99,"target":20},{"source":100,"target":3},{"source":100,"target":101},{"source":100,"target":72},{"source":101,"target":3},{"source":73,"target":37},{"source":73,"target":102},{"source":73,"target":3},{"source":102,"target":37},{"source":74,"target":16},{"source":74,"target":103},{"source":74,"target":3},{"source":74,"target":104},{"source":103,"target":16},{"source":104,"target":37},{"source":104,"target":105},{"source":104,"target":74},{"source":105,"target":37},{"source":75,"target":37},{"source":75,"target":106},{"source":75,"target":3},{"source":75,"target":107},{"source":106,"target":37},{"source":107,"target":16},{"source":107,"target":108},{"source":107,"target":75},{"source":108,"target":16},{"source":76,"target":16},{"source":76,"target":109},{"source":76,"target":3},{"source":76,"target":110},{"source":109,"target":16},{"source":110,"target":48},{"source":110,"target":111},{"source":110,"target":76},{"source":111,"target":48},{"source":77,"target":37},{"source":77,"target":112},{"source":77,"target":3},{"source":112,"target":37},{"source":78,"target":12},{"source":78,"target":113},{"source":78,"target":3},{"source":78,"target":114},{"source":113,"target":12},{"source":114,"target":37},{"source":114,"target":115},{"source":114,"target":78},{"source":115,"target":37},{"source":79,"target":37},{"source":79,"target":116},{"source":79,"target":3},{"source":79,"target":117},{"source":116,"target":37},{"source":117,"target":12},{"source":117,"target":118},{"source":117,"target":79},{"source":118,"target":12},{"source":80,"target":12},{"source":80,"target":119},{"source":80,"target":3},{"source":80,"target":120},{"source":119,"target":12},{"source":120,"target":12},{"source":120,"target":121},{"source":120,"target":80},{"source":121,"target":12},{"source":81,"target":51},{"source":81,"target":122},{"source":81,"target":3},{"source":81,"target":123},{"source":122,"target":51},{"source":123,"target":16},{"source":123,"target":124},{"source":123,"target":81},{"source":124,"target":16},{"source":82,"target":20},{"source":82,"target":125},{"source":82,"target":3},{"source":125,"target":20},{"source":83,"target":20},{"source":83,"target":126},{"source":83,"target":3},{"source":126,"target":20},{"source":84,"target":3},{"source":84,"target":127},{"source":84,"target":3},{"source":127,"target":3},{"source":85,"target":12},{"source":85,"target":128},{"source":85,"target":3},{"source":85,"target":129},{"source":128,"target":12},{"source":86,"target":1},{"source":86,"target":130},{"source":86,"target":3},{"source":130,"target":1},{"source":87,"target":15},{"source":87,"target":131},{"source":87,"target":3},{"source":131,"target":15},{"source":88,"target":15},{"source":88,"target":132},{"source":88,"target":3},{"source":132,"target":15},{"source":89,"target":1},{"source":89,"target":133},{"source":89,"target":3},{"source":133,"target":1},{"source":90,"target":15},{"source":90,"target":134},{"source":90,"target":3},{"source":134,"target":15},{"source":91,"target":12},{"source":91,"target":135},{"source":91,"target":3},{"source":135,"target":12},{"source":92,"target":16},{"source":92,"target":136},{"source":92,"target":3},{"source":136,"target":16},{"source":93,"target":3},{"source":93,"target":137},{"source":93,"target":3},{"source":137,"target":3},{"source":94,"target":1},{"source":94,"target":138},{"source":94,"target":3},{"source":138,"target":1},{"source":95,"target":16},{"source":95,"target":139},{"source":95,"target":3},{"source":95,"target":140},{"source":139,"target":16},{"source":96,"target":51},{"source":96,"target":141},{"source":96,"target":3},{"source":141,"target":51},{"source":97,"target":51},{"source":97,"target":142},{"source":97,"target":3},{"source":142,"target":51},{"source":98,"target":4},{"source":4,"target":0},{"source":4,"target":10},{"source":4,"target":143},{"source":4,"target":144},{"source":4,"target":145},{"source":4,"target":146},{"source":4,"target":147},{"source":4,"target":148},{"source":4,"target":149},{"source":4,"target":150},{"source":4,"target":151},{"source":143,"target":20},{"source":143,"target":152},{"source":143,"target":4},{"source":143,"target":153},{"source":152,"target":20},{"source":153,"target":40},{"source":153,"target":154},{"source":153,"target":143},{"source":154,"target":40},{"source":144,"target":37},{"source":144,"target":155},{"source":144,"target":4},{"source":155,"target":37},{"source":145,"target":48},{"source":145,"target":156},{"source":145,"target":4},{"source":156,"target":48},{"source":146,"target":39},{"source":146,"target":157},{"source":146,"target":4},{"source":157,"target":158},{"source":157,"target":39},{"source":147,"target":40},{"source":147,"target":159},{"source":147,"target":4},{"source":159,"target":40},{"source":148,"target":48},{"source":148,"target":160},{"source":148,"target":4},{"source":160,"target":48},{"source":149,"target":13},{"source":149,"target":161},{"source":149,"target":4},{"source":149,"target":162},{"source":161,"target":13},{"source":150,"target":52},{"source":150,"target":163},{"source":150,"target":4},{"source":163,"target":52},{"source":151,"target":10},{"source":5,"target":0},{"source":5,"target":4},{"source":5,"target":164},{"source":5,"target":165},{"source":164,"target":20},{"source":164,"target":166},{"source":164,"target":5},{"source":166,"target":20},{"source":165,"target":4},{"source":6,"target":0},{"source":6,"target":5},{"source":6,"target":167},{"source":6,"target":168},{"source":6,"target":169},{"source":6,"target":170},{"source":6,"target":171},{"source":167,"target":7},{"source":167,"target":172},{"source":167,"target":6},{"source":167,"target":173},{"source":172,"target":7},{"source":173,"target":48},{"source":173,"target":174},{"source":173,"target":167},{"source":174,"target":48},{"source":168,"target":7},{"source":168,"target":175},{"source":168,"target":6},{"source":168,"target":176},{"source":175,"target":7},{"source":176,"target":37},{"source":176,"target":177},{"source":176,"target":168},{"source":177,"target":37},{"source":169,"target":7},{"source":169,"target":178},{"source":169,"target":6},{"source":169,"target":179},{"source":178,"target":7},{"source":179,"target":48},{"source":179,"target":180},{"source":179,"target":169},{"source":180,"target":48},{"source":170,"target":7},{"source":170,"target":181},{"source":170,"target":6},{"source":170,"target":182},{"source":181,"target":7},{"source":171,"target":5},{"source":7,"target":0},{"source":7,"target":10},{"source":7,"target":183},{"source":7,"target":184},{"source":7,"target":185},{"source":7,"target":182},{"source":7,"target":186},{"source":183,"target":37},{"source":183,"target":187},{"source":183,"target":7},{"source":187,"target":37},{"source":184,"target":32},{"source":184,"target":188},{"source":184,"target":7},{"source":188,"target":32},{"source":185,"target":48},{"source":185,"target":189},{"source":185,"target":7},{"source":189,"target":48},{"source":182,"target":6},{"source":182,"target":190},{"source":182,"target":7},{"source":182,"target":170},{"source":190,"target":6},{"source":186,"target":10},{"source":8,"target":0},{"source":8,"target":9},{"source":8,"target":191},{"source":8,"target":192},{"source":8,"target":193},{"source":8,"target":194},{"source":8,"target":195},{"source":191,"target":11},{"source":191,"target":196},{"source":191,"target":8},{"source":191,"target":197},{"source":196,"target":11},{"source":197,"target":3},{"source":197,"target":198},{"source":197,"target":191},{"source":198,"target":3},{"source":192,"target":40},{"source":192,"target":199},{"source":192,"target":8},{"source":192,"target":200},{"source":192,"target":201},{"source":199,"target":40},{"source":200,"target":5},{"source":200,"target":202},{"source":200,"target":192},{"source":202,"target":5},{"source":201,"target":48},{"source":201,"target":203},{"source":201,"target":192},{"source":203,"target":48},{"source":193,"target":48},{"source":193,"target":204},{"source":193,"target":8},{"source":193,"target":205},{"source":193,"target":206},{"source":204,"target":48},{"source":205,"target":5},{"source":205,"target":207},{"source":205,"target":193},{"source":207,"target":5},{"source":206,"target":40},{"source":206,"target":208},{"source":206,"target":193},{"source":208,"target":40},{"source":194,"target":13},{"source":194,"target":209},{"source":194,"target":8},{"source":194,"target":210},{"source":209,"target":13},{"source":195,"target":9},{"source":9,"target":0},{"source":9,"target":211},{"source":9,"target":69},{"source":211,"target":2},{"source":211,"target":212},{"source":211,"target":9},{"source":211,"target":213},{"source":212,"target":2},{"source":213,"target":48},{"source":213,"target":214},{"source":213,"target":211},{"source":214,"target":48},{"source":69,"target":2},{"source":69,"target":215},{"source":69,"target":9},{"source":69,"target":62},{"source":215,"target":2},{"source":10,"target":0},{"source":10,"target":9},{"source":10,"target":216},{"source":10,"target":217},{"source":216,"target":48},{"source":216,"target":218},{"source":216,"target":10},{"source":218,"target":48},{"source":217,"target":9},{"source":11,"target":0},{"source":11,"target":219},{"source":11,"target":220},{"source":11,"target":221},{"source":11,"target":222},{"source":11,"target":223},{"source":11,"target":224},{"source":11,"target":225},{"source":11,"target":226},{"source":11,"target":227},{"source":11,"target":228},{"source":11,"target":229},{"source":11,"target":230},{"source":11,"target":231},{"source":11,"target":232},{"source":11,"target":233},{"source":219,"target":3},{"source":219,"target":234},{"source":219,"target":11},{"source":234,"target":3},{"source":220,"target":20},{"source":220,"target":235},{"source":220,"target":11},{"source":235,"target":20},{"source":221,"target":44},{"source":221,"target":236},{"source":221,"target":11},{"source":236,"target":44},{"source":222,"target":11},{"source":222,"target":237},{"source":222,"target":11},{"source":237,"target":11},{"source":223,"target":16},{"source":223,"target":238},{"source":223,"target":11},{"source":238,"target":16},{"source":224,"target":15},{"source":224,"target":239},{"source":224,"target":11},{"source":239,"target":15},{"source":225,"target":31},{"source":225,"target":240},{"source":225,"target":11},{"source":240,"target":241},{"source":240,"target":31},{"source":241,"target":11},{"source":226,"target":50},{"source":226,"target":242},{"source":226,"target":11},{"source":242,"target":243},{"source":242,"target":50},{"source":243,"target":11},{"source":227,"target":31},{"source":227,"target":244},{"source":227,"target":11},{"source":244,"target":245},{"source":244,"target":31},{"source":245,"target":11},{"source":228,"target":40},{"source":228,"target":246},{"source":228,"target":11},{"source":228,"target":247},{"source":246,"target":40},{"source":247,"target":16},{"source":247,"target":248},{"source":247,"target":228},{"source":248,"target":16},{"source":229,"target":40},{"source":229,"target":249},{"source":229,"target":11},{"source":229,"target":250},{"source":229,"target":251},{"source":249,"target":40},{"source":250,"target":16},{"source":250,"target":252},{"source":250,"target":229},{"source":252,"target":16},{"source":251,"target":20},{"source":251,"target":253},{"source":251,"target":229},{"source":253,"target":20},{"source":230,"target":11},{"source":230,"target":254},{"source":230,"target":255},{"source":254,"target":16},{"source":254,"target":256},{"source":254,"target":230},{"source":256,"target":16},{"source":255,"target":40},{"source":255,"target":257},{"source":255,"target":230},{"source":257,"target":40},{"source":231,"target":20},{"source":231,"target":258},{"source":231,"target":11},{"source":231,"target":259},{"source":258,"target":20},{"source":259,"target":16},{"source":259,"target":260},{"source":259,"target":231},{"source":260,"target":16},{"source":232,"target":11},{"source":232,"target":261},{"source":261,"target":16},{"source":261,"target":262},{"source":261,"target":232},{"source":262,"target":16},{"source":233,"target":40},{"source":233,"target":263},{"source":233,"target":11},{"source":233,"target":264},{"source":233,"target":265},{"source":233,"target":53},{"source":233,"target":266},{"source":263,"target":40},{"source":264,"target":12},{"source":264,"target":267},{"source":264,"target":233},{"source":267,"target":12},{"source":265,"target":31},{"source":265,"target":268},{"source":265,"target":233},{"source":268,"target":269},{"source":268,"target":31},{"source":266,"target":53},{"source":12,"target":0},{"source":12,"target":17},{"source":12,"target":270},{"source":12,"target":271},{"source":12,"target":129},{"source":12,"target":272},{"source":12,"target":273},{"source":12,"target":274},{"source":12,"target":275},{"source":12,"target":276},{"source":270,"target":37},{"source":270,"target":277},{"source":270,"target":12},{"source":277,"target":37},{"source":271,"target":20},{"source":271,"target":278},{"source":271,"target":12},{"source":271,"target":279},{"source":278,"target":20},{"source":279,"target":12},{"source":279,"target":280},{"source":279,"target":271},{"source":280,"target":12},{"source":129,"target":3},{"source":129,"target":281},{"source":129,"target":12},{"source":129,"target":85},{"source":281,"target":3},{"source":272,"target":52},{"source":272,"target":282},{"source":272,"target":12},{"source":282,"target":52},{"source":273,"target":14},{"source":273,"target":283},{"source":273,"target":12},{"source":273,"target":284},{"source":283,"target":14},{"source":274,"target":4},{"source":274,"target":285},{"source":274,"target":12},{"source":285,"target":4},{"source":275,"target":51},{"source":275,"target":286},{"source":275,"target":12},{"source":286,"target":51},{"source":276,"target":17},{"source":13,"target":0},{"source":13,"target":10},{"source":13,"target":287},{"source":13,"target":288},{"source":13,"target":289},{"source":13,"target":210},{"source":13,"target":162},{"source":13,"target":290},{"source":13,"target":291},{"source":13,"target":292},{"source":287,"target":4},{"source":287,"target":293},{"source":287,"target":13},{"source":287,"target":294},{"source":293,"target":4},{"source":294,"target":48},{"source":294,"target":295},{"source":294,"target":287},{"source":295,"target":48},{"source":288,"target":48},{"source":288,"target":296},{"source":288,"target":13},{"source":296,"target":48},{"source":289,"target":48},{"source":289,"target":297},{"source":289,"target":13},{"source":297,"target":48},{"source":210,"target":8},{"source":210,"target":298},{"source":210,"target":13},{"source":210,"target":194},{"source":298,"target":8},{"source":162,"target":4},{"source":162,"target":299},{"source":162,"target":13},{"source":162,"target":149},{"source":299,"target":4},{"source":290,"target":13},{"source":290,"target":300},{"source":290,"target":13},{"source":290,"target":291},{"source":300,"target":13},{"source":291,"target":13},{"source":291,"target":301},{"source":291,"target":13},{"source":291,"target":290},{"source":301,"target":13},{"source":292,"target":10},{"source":14,"target":0},{"source":14,"target":17},{"source":14,"target":284},{"source":14,"target":302},{"source":284,"target":12},{"source":284,"target":303},{"source":284,"target":14},{"source":284,"target":273},{"source":303,"target":12},{"source":302,"target":17},{"source":15,"target":0},{"source":15,"target":16},{"source":15,"target":304},{"source":15,"target":305},{"source":15,"target":306},{"source":15,"target":307},{"source":15,"target":308},{"source":15,"target":309},{"source":15,"target":310},{"source":304,"target":20},{"source":304,"target":311},{"source":304,"target":15},{"source":311,"target":20},{"source":305,"target":20},{"source":305,"target":312},{"source":305,"target":15},{"source":312,"target":20},{"source":306,"target":20},{"source":306,"target":313},{"source":306,"target":15},{"source":313,"target":20},{"source":307,"target":15},{"source":307,"target":314},{"source":307,"target":15},{"source":314,"target":15},{"source":308,"target":3},{"source":308,"target":315},{"source":308,"target":15},{"source":315,"target":3},{"source":309,"target":1},{"source":309,"target":316},{"source":309,"target":15},{"source":316,"target":1},{"source":310,"target":16},{"source":16,"target":0},{"source":16,"target":17},{"source":16,"target":317},{"source":16,"target":318},{"source":16,"target":319},{"source":16,"target":320},{"source":16,"target":321},{"source":16,"target":322},{"source":16,"target":323},{"source":16,"target":324},{"source":16,"target":325},{"source":16,"target":140},{"source":16,"target":326},{"source":317,"target":37},{"source":317,"target":327},{"source":317,"target":16},{"source":327,"target":37},{"source":318,"target":39},{"source":318,"target":328},{"source":318,"target":16},{"source":328,"target":329},{"source":328,"target":39},{"source":319,"target":20},{"source":319,"target":330},{"source":319,"target":16},{"source":330,"target":20},{"source":320,"target":20},{"source":320,"target":331},{"source":320,"target":16},{"source":331,"target":20},{"source":321,"target":20},{"source":321,"target":332},{"source":321,"target":16},{"source":332,"target":20},{"source":322,"target":48},{"source":322,"target":333},{"source":322,"target":16},{"source":333,"target":48},{"source":323,"target":40},{"source":323,"target":334},{"source":323,"target":16},{"source":334,"target":40},{"source":324,"target":20},{"source":324,"target":335},{"source":324,"target":16},{"source":335,"target":20},{"source":325,"target":20},{"source":325,"target":336},{"source":325,"target":16},{"source":336,"target":20},{"source":140,"target":3},{"source":140,"target":337},{"source":140,"target":16},{"source":140,"target":95},{"source":337,"target":3},{"source":326,"target":17},{"source":17,"target":0},{"source":17,"target":10},{"source":17,"target":338},{"source":17,"target":339},{"source":17,"target":340},{"source":17,"target":341},{"source":17,"target":342},{"source":17,"target":343},{"source":17,"target":344},{"source":17,"target":345},{"source":17,"target":346},{"source":338,"target":20},{"source":338,"target":347},{"source":338,"target":17},{"source":347,"target":20},{"source":339,"target":20},{"source":339,"target":348},{"source":339,"target":17},{"source":348,"target":20},{"source":340,"target":37},{"source":340,"target":349},{"source":340,"target":17},{"source":349,"target":37},{"source":341,"target":37},{"source":341,"target":350},{"source":341,"target":17},{"source":350,"target":37},{"source":342,"target":20},{"source":342,"target":351},{"source":342,"target":17},{"source":351,"target":20},{"source":343,"target":20},{"source":343,"target":352},{"source":343,"target":17},{"source":352,"target":20},{"source":344,"target":4},{"source":344,"target":353},{"source":344,"target":17},{"source":353,"target":4},{"source":345,"target":51},{"source":345,"target":354},{"source":345,"target":17},{"source":354,"target":51},{"source":346,"target":10},{"source":18,"target":0},{"source":19,"target":0},{"source":20,"target":0},{"source":21,"target":0},{"source":22,"target":0},{"source":23,"target":0},{"source":24,"target":0},{"source":25,"target":0},{"source":26,"target":0},{"source":27,"target":0},{"source":28,"target":0},{"source":29,"target":0},{"source":30,"target":0},{"source":31,"target":0},{"source":31,"target":355},{"source":32,"target":0},{"source":33,"target":0},{"source":34,"target":0},{"source":35,"target":0},{"source":36,"target":0},{"source":37,"target":0},{"source":38,"target":0},{"source":39,"target":0},{"source":39,"target":356},{"source":40,"target":0},{"source":41,"target":0},{"source":42,"target":0},{"source":43,"target":0},{"source":43,"target":357},{"source":43,"target":358},{"source":44,"target":0},{"source":45,"target":0},{"source":46,"target":0},{"source":47,"target":0},{"source":48,"target":0},{"source":49,"target":0},{"source":49,"target":359},{"source":49,"target":360},{"source":359,"target":48},{"source":359,"target":361},{"source":359,"target":49},{"source":361,"target":48},{"source":360,"target":48},{"source":360,"target":362},{"source":360,"target":49},{"source":362,"target":48},{"source":50,"target":0},{"source":50,"target":363},{"source":51,"target":0},{"source":51,"target":364},{"source":51,"target":365},{"source":51,"target":366},{"source":51,"target":367},{"source":51,"target":368},{"source":51,"target":369},{"source":51,"target":370},{"source":364,"target":20},{"source":364,"target":371},{"source":364,"target":51},{"source":364,"target":372},{"source":371,"target":20},{"source":372,"target":40},{"source":372,"target":373},{"source":372,"target":364},{"source":373,"target":40},{"source":365,"target":51},{"source":365,"target":374},{"source":365,"target":51},{"source":374,"target":51},{"source":366,"target":51},{"source":366,"target":375},{"source":366,"target":51},{"source":375,"target":51},{"source":367,"target":4},{"source":367,"target":376},{"source":367,"target":51},{"source":376,"target":4},{"source":368,"target":51},{"source":368,"target":377},{"source":368,"target":51},{"source":377,"target":51},{"source":369,"target":52},{"source":369,"target":378},{"source":369,"target":51},{"source":378,"target":52},{"source":370,"target":4},{"source":370,"target":379},{"source":370,"target":51},{"source":379,"target":4},{"source":52,"target":0},{"source":52,"target":10},{"source":52,"target":380},{"source":52,"target":381},{"source":380,"target":51},{"source":380,"target":382},{"source":380,"target":52},{"source":382,"target":51},{"source":381,"target":10},{"source":53,"target":0},{"source":54,"target":0},{"source":54,"target":3},{"source":54,"target":383},{"source":54,"target":384},{"source":383,"target":385},{"source":383,"target":54},{"source":384,"target":3}],"multigraph":true} |
true | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="picturesOfThePlace" nsURI="http://fr.inria.atlanmod/discovered/picturesOfThePlace"
nsPrefix="discop">
<eClassifiers xsi:type="ecore:EClass" name="picturesOfThePlaceInput">
<eAnnotations source="coverage">
<details key="totalFound" value="1"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="client_id" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString">
<eAnnotations source="coverage">
<details key="totalFound" value="1"/>
<details key="ratioTotalFound" value="1.0"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="client_secret" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString">
<eAnnotations source="coverage">
<details key="totalFound" value="1"/>
<details key="ratioTotalFound" value="1.0"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="v" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString">
<eAnnotations source="coverage">
<details key="totalFound" value="1"/>
<details key="ratioTotalFound" value="1.0"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="ll" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString">
<eAnnotations source="coverage">
<details key="totalFound" value="1"/>
<details key="ratioTotalFound" value="1.0"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="query" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString">
<eAnnotations source="coverage">
<details key="totalFound" value="1"/>
<details key="ratioTotalFound" value="1.0"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="picturesOfThePlaceOutput"
lowerBound="1" eType="#//PicturesOfThePlaceOutput" containment="true">
<eAnnotations source="coverage">
<details key="totalFound" value="1"/>
<details key="ratioTotalFound" value="1.0"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Stat">
<eAnnotations source="coverage">
<details key="totalFound" value="2"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="checkinsCount" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt">
<eAnnotations source="coverage">
<details key="totalFound" value="2"/>
<details key="ratioTotalFound" value="1.0"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="usersCount" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt">
<eAnnotations source="coverage">
<details key="totalFound" value="2"/>
<details key="ratioTotalFound" value="1.0"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="tipCount" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt">
<eAnnotations source="coverage">
<details key="totalFound" value="2"/>
<details key="ratioTotalFound" value="1.0"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Special">
<eAnnotations source="coverage">
<details key="totalFound" value="2"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="count" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt">
<eAnnotations source="coverage">
<details key="totalFound" value="2"/>
<details key="ratioTotalFound" value="1.0"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="items" lowerBound="1" upperBound="-1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString">
<eAnnotations source="coverage">
<details key="totalFound" value="2"/>
<details key="ratioTotalFound" value="1.0"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Venue">
<eAnnotations source="coverage">
<details key="totalFound" value="2"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="id" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString">
<eAnnotations source="coverage">
<details key="totalFound" value="2"/>
<details key="ratioTotalFound" value="1.0"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString">
<eAnnotations source="coverage">
<details key="totalFound" value="2"/>
<details key="ratioTotalFound" value="1.0"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="contact" lowerBound="1"
eType="#//Contact" containment="true">
<eAnnotations source="coverage">
<details key="totalFound" value="2"/>
<details key="ratioTotalFound" value="1.0"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="location" lowerBound="1"
eType="#//Location" containment="true">
<eAnnotations source="coverage">
<details key="totalFound" value="2"/>
<details key="ratioTotalFound" value="1.0"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="categories" lowerBound="1"
upperBound="-1" eType="#//Categorie" containment="true">
<eAnnotations source="coverage">
<details key="totalFound" value="2"/>
<details key="ratioTotalFound" value="1.0"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="verified" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean">
<eAnnotations source="coverage">
<details key="totalFound" value="2"/>
<details key="ratioTotalFound" value="1.0"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="restricted" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean">
<eAnnotations source="coverage">
<details key="totalFound" value="2"/>
<details key="ratioTotalFound" value="1.0"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="stats" lowerBound="1" eType="#//Stat"
containment="true">
<eAnnotations source="coverage">
<details key="totalFound" value="2"/>
<details key="ratioTotalFound" value="1.0"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="url" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString">
<eAnnotations source="coverage">
<details key="totalFound" value="2"/>
<details key="ratioTotalFound" value="1.0"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="specials" lowerBound="1"
eType="#//Special" containment="true">
<eAnnotations source="coverage">
<details key="totalFound" value="2"/>
<details key="ratioTotalFound" value="1.0"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="hereNow" lowerBound="1"
eType="#//HereNow" containment="true">
<eAnnotations source="coverage">
<details key="totalFound" value="2"/>
<details key="ratioTotalFound" value="1.0"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="referralId" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString">
<eAnnotations source="coverage">
<details key="totalFound" value="2"/>
<details key="ratioTotalFound" value="1.0"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Contact">
<eAnnotations source="coverage">
<details key="totalFound" value="2"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="phone" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString">
<eAnnotations source="coverage">
<details key="totalFound" value="2"/>
<details key="ratioTotalFound" value="1.0"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="formattedPhone" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString">
<eAnnotations source="coverage">
<details key="totalFound" value="2"/>
<details key="ratioTotalFound" value="1.0"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Response">
<eAnnotations source="coverage">
<details key="totalFound" value="2"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="venues" lowerBound="1"
upperBound="-1" eType="#//Venue" containment="true">
<eAnnotations source="coverage">
<details key="totalFound" value="2"/>
<details key="ratioTotalFound" value="1.0"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="HereNow">
<eAnnotations source="coverage">
<details key="totalFound" value="2"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="count" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt">
<eAnnotations source="coverage">
<details key="totalFound" value="2"/>
<details key="ratioTotalFound" value="1.0"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="groups" lowerBound="1"
upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString">
<eAnnotations source="coverage">
<details key="totalFound" value="2"/>
<details key="ratioTotalFound" value="1.0"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Categorie">
<eAnnotations source="coverage">
<details key="totalFound" value="2"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="id" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString">
<eAnnotations source="coverage">
<details key="totalFound" value="2"/>
<details key="ratioTotalFound" value="1.0"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString">
<eAnnotations source="coverage">
<details key="totalFound" value="2"/>
<details key="ratioTotalFound" value="1.0"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="pluralName" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString">
<eAnnotations source="coverage">
<details key="totalFound" value="2"/>
<details key="ratioTotalFound" value="1.0"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="shortName" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString">
<eAnnotations source="coverage">
<details key="totalFound" value="2"/>
<details key="ratioTotalFound" value="1.0"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="icon" lowerBound="1" eType="#//Icon"
containment="true">
<eAnnotations source="coverage">
<details key="totalFound" value="2"/>
<details key="ratioTotalFound" value="1.0"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="primary" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean">
<eAnnotations source="coverage">
<details key="totalFound" value="2"/>
<details key="ratioTotalFound" value="1.0"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Location">
<eAnnotations source="coverage">
<details key="totalFound" value="2"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="address" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString">
<eAnnotations source="coverage">
<details key="totalFound" value="2"/>
<details key="ratioTotalFound" value="1.0"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="lat" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt">
<eAnnotations source="coverage">
<details key="totalFound" value="2"/>
<details key="ratioTotalFound" value="1.0"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="lng" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt">
<eAnnotations source="coverage">
<details key="totalFound" value="2"/>
<details key="ratioTotalFound" value="1.0"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="distance" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt">
<eAnnotations source="coverage">
<details key="totalFound" value="2"/>
<details key="ratioTotalFound" value="1.0"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="postalCode" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString">
<eAnnotations source="coverage">
<details key="totalFound" value="2"/>
<details key="ratioTotalFound" value="1.0"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="cc" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString">
<eAnnotations source="coverage">
<details key="totalFound" value="2"/>
<details key="ratioTotalFound" value="1.0"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="city" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString">
<eAnnotations source="coverage">
<details key="totalFound" value="2"/>
<details key="ratioTotalFound" value="1.0"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="state" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString">
<eAnnotations source="coverage">
<details key="totalFound" value="2"/>
<details key="ratioTotalFound" value="1.0"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="country" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString">
<eAnnotations source="coverage">
<details key="totalFound" value="2"/>
<details key="ratioTotalFound" value="1.0"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Meta">
<eAnnotations source="coverage">
<details key="totalFound" value="2"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="code" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt">
<eAnnotations source="coverage">
<details key="totalFound" value="2"/>
<details key="ratioTotalFound" value="1.0"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="PicturesOfThePlaceOutput">
<eAnnotations source="coverage">
<details key="totalFound" value="2"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EReference" name="meta" lowerBound="1" eType="#//Meta"
containment="true">
<eAnnotations source="coverage">
<details key="totalFound" value="2"/>
<details key="ratioTotalFound" value="1.0"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="response" lowerBound="1"
eType="#//Response" containment="true">
<eAnnotations source="coverage">
<details key="totalFound" value="2"/>
<details key="ratioTotalFound" value="1.0"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Icon">
<eAnnotations source="coverage">
<details key="totalFound" value="2"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="prefix" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString">
<eAnnotations source="coverage">
<details key="totalFound" value="2"/>
<details key="ratioTotalFound" value="1.0"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="suffix" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString">
<eAnnotations source="coverage">
<details key="totalFound" value="2"/>
<details key="ratioTotalFound" value="1.0"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
</ecore:EPackage>
| github:ecore:/data/SOM-Research/jsonDiscoverer/jsondiscoverer.zoo/zoo/foursquare/source1/source1.ecore | ecore | picturesOfThePlace
picturesOfThePlaceInput
client_id
client_secret
v
ll
query
picturesOfThePlaceOutput
Stat
checkinsCount
usersCount
tipCount
Special
count
items
Venue
id
name
contact
location
categories
verified
restricted
stats
url
specials
hereNow
referralId
Contact
phone
formattedPhone
Response
venues
HereNow
count
groups
Categorie
id
name
pluralName
shortName
icon
primary
Location
address
lat
lng
distance
postalCode
cc
city
state
country
Meta
code
PicturesOfThePlaceOutput
meta
response
Icon
prefix
suffix | null | {"directed":true,"nodes":[{"nsPrefix":"discop","nsURI":"http://fr.inria.atlanmod/discovered/picturesOfThePlace","name":"picturesOfThePlace","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"picturesOfThePlaceInput","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Stat","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Special","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Venue","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Contact","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Response","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"HereNow","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Categorie","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Location","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Meta","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PicturesOfThePlaceOutput","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Icon","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"client_id","changeable":true,"lowerBound":1,"iD":false,"id":13,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"client_secret","changeable":true,"lowerBound":1,"iD":false,"id":14,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"v","changeable":true,"lowerBound":1,"iD":false,"id":15,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"ll","changeable":true,"lowerBound":1,"iD":false,"id":16,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"query","changeable":true,"lowerBound":1,"iD":false,"id":17,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"picturesOfThePlaceOutput","changeable":true,"resolveProxies":true,"lowerBound":1,"id":18,"derived":false},{"id":19,"eClass":"EGenericType"},{"id":20,"eClass":"EGenericType"},{"id":21,"eClass":"EGenericType"},{"id":22,"eClass":"EGenericType"},{"id":23,"eClass":"EGenericType"},{"id":24,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"checkinsCount","changeable":true,"lowerBound":1,"iD":false,"id":25,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"usersCount","changeable":true,"lowerBound":1,"iD":false,"id":26,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"tipCount","changeable":true,"lowerBound":1,"iD":false,"id":27,"derived":false},{"id":28,"eClass":"EGenericType"},{"id":29,"eClass":"EGenericType"},{"id":30,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"count","changeable":true,"lowerBound":1,"iD":false,"id":31,"derived":false},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"items","changeable":true,"lowerBound":1,"iD":false,"id":32,"derived":false},{"id":33,"eClass":"EGenericType"},{"id":34,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"id","changeable":true,"lowerBound":1,"iD":false,"id":35,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":36,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"contact","changeable":true,"resolveProxies":true,"lowerBound":1,"id":37,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"location","changeable":true,"resolveProxies":true,"lowerBound":1,"id":38,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"categories","changeable":true,"resolveProxies":true,"lowerBound":1,"id":39,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"verified","changeable":true,"lowerBound":1,"iD":false,"id":40,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"restricted","changeable":true,"lowerBound":1,"iD":false,"id":41,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"stats","changeable":true,"resolveProxies":true,"lowerBound":1,"id":42,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"url","changeable":true,"lowerBound":1,"iD":false,"id":43,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"specials","changeable":true,"resolveProxies":true,"lowerBound":1,"id":44,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"hereNow","changeable":true,"resolveProxies":true,"lowerBound":1,"id":45,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"referralId","changeable":true,"lowerBound":1,"iD":false,"id":46,"derived":false},{"id":47,"eClass":"EGenericType"},{"id":48,"eClass":"EGenericType"},{"id":49,"eClass":"EGenericType"},{"id":50,"eClass":"EGenericType"},{"id":51,"eClass":"EGenericType"},{"id":52,"eClass":"EGenericType"},{"id":53,"eClass":"EGenericType"},{"id":54,"eClass":"EGenericType"},{"id":55,"eClass":"EGenericType"},{"id":56,"eClass":"EGenericType"},{"id":57,"eClass":"EGenericType"},{"id":58,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"phone","changeable":true,"lowerBound":1,"iD":false,"id":59,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"formattedPhone","changeable":true,"lowerBound":1,"iD":false,"id":60,"derived":false},{"id":61,"eClass":"EGenericType"},{"id":62,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"venues","changeable":true,"resolveProxies":true,"lowerBound":1,"id":63,"derived":false},{"id":64,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"count","changeable":true,"lowerBound":1,"iD":false,"id":65,"derived":false},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"groups","changeable":true,"lowerBound":1,"iD":false,"id":66,"derived":false},{"id":67,"eClass":"EGenericType"},{"id":68,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"id","changeable":true,"lowerBound":1,"iD":false,"id":69,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":70,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"pluralName","changeable":true,"lowerBound":1,"iD":false,"id":71,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"shortName","changeable":true,"lowerBound":1,"iD":false,"id":72,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"icon","changeable":true,"resolveProxies":true,"lowerBound":1,"id":73,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"primary","changeable":true,"lowerBound":1,"iD":false,"id":74,"derived":false},{"id":75,"eClass":"EGenericType"},{"id":76,"eClass":"EGenericType"},{"id":77,"eClass":"EGenericType"},{"id":78,"eClass":"EGenericType"},{"id":79,"eClass":"EGenericType"},{"id":80,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"address","changeable":true,"lowerBound":1,"iD":false,"id":81,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"lat","changeable":true,"lowerBound":1,"iD":false,"id":82,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"lng","changeable":true,"lowerBound":1,"iD":false,"id":83,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"distance","changeable":true,"lowerBound":1,"iD":false,"id":84,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"postalCode","changeable":true,"lowerBound":1,"iD":false,"id":85,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"cc","changeable":true,"lowerBound":1,"iD":false,"id":86,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"city","changeable":true,"lowerBound":1,"iD":false,"id":87,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"state","changeable":true,"lowerBound":1,"iD":false,"id":88,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"country","changeable":true,"lowerBound":1,"iD":false,"id":89,"derived":false},{"id":90,"eClass":"EGenericType"},{"id":91,"eClass":"EGenericType"},{"id":92,"eClass":"EGenericType"},{"id":93,"eClass":"EGenericType"},{"id":94,"eClass":"EGenericType"},{"id":95,"eClass":"EGenericType"},{"id":96,"eClass":"EGenericType"},{"id":97,"eClass":"EGenericType"},{"id":98,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"code","changeable":true,"lowerBound":1,"iD":false,"id":99,"derived":false},{"id":100,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"meta","changeable":true,"resolveProxies":true,"lowerBound":1,"id":101,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"response","changeable":true,"resolveProxies":true,"lowerBound":1,"id":102,"derived":false},{"id":103,"eClass":"EGenericType"},{"id":104,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"prefix","changeable":true,"lowerBound":1,"iD":false,"id":105,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"suffix","changeable":true,"lowerBound":1,"iD":false,"id":106,"derived":false},{"id":107,"eClass":"EGenericType"},{"id":108,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":0,"target":8},{"source":0,"target":9},{"source":0,"target":10},{"source":0,"target":11},{"source":0,"target":12},{"source":1,"target":0},{"source":1,"target":13},{"source":1,"target":14},{"source":1,"target":15},{"source":1,"target":16},{"source":1,"target":17},{"source":1,"target":18},{"source":13,"target":19},{"source":13,"target":1},{"source":14,"target":20},{"source":14,"target":1},{"source":15,"target":21},{"source":15,"target":1},{"source":16,"target":22},{"source":16,"target":1},{"source":17,"target":23},{"source":17,"target":1},{"source":18,"target":11},{"source":18,"target":24},{"source":18,"target":1},{"source":24,"target":11},{"source":2,"target":0},{"source":2,"target":25},{"source":2,"target":26},{"source":2,"target":27},{"source":25,"target":28},{"source":25,"target":2},{"source":26,"target":29},{"source":26,"target":2},{"source":27,"target":30},{"source":27,"target":2},{"source":3,"target":0},{"source":3,"target":31},{"source":3,"target":32},{"source":31,"target":33},{"source":31,"target":3},{"source":32,"target":34},{"source":32,"target":3},{"source":4,"target":0},{"source":4,"target":35},{"source":4,"target":36},{"source":4,"target":37},{"source":4,"target":38},{"source":4,"target":39},{"source":4,"target":40},{"source":4,"target":41},{"source":4,"target":42},{"source":4,"target":43},{"source":4,"target":44},{"source":4,"target":45},{"source":4,"target":46},{"source":35,"target":47},{"source":35,"target":4},{"source":36,"target":48},{"source":36,"target":4},{"source":37,"target":5},{"source":37,"target":49},{"source":37,"target":4},{"source":49,"target":5},{"source":38,"target":9},{"source":38,"target":50},{"source":38,"target":4},{"source":50,"target":9},{"source":39,"target":8},{"source":39,"target":51},{"source":39,"target":4},{"source":51,"target":8},{"source":40,"target":52},{"source":40,"target":4},{"source":41,"target":53},{"source":41,"target":4},{"source":42,"target":2},{"source":42,"target":54},{"source":42,"target":4},{"source":54,"target":2},{"source":43,"target":55},{"source":43,"target":4},{"source":44,"target":3},{"source":44,"target":56},{"source":44,"target":4},{"source":56,"target":3},{"source":45,"target":7},{"source":45,"target":57},{"source":45,"target":4},{"source":57,"target":7},{"source":46,"target":58},{"source":46,"target":4},{"source":5,"target":0},{"source":5,"target":59},{"source":5,"target":60},{"source":59,"target":61},{"source":59,"target":5},{"source":60,"target":62},{"source":60,"target":5},{"source":6,"target":0},{"source":6,"target":63},{"source":63,"target":4},{"source":63,"target":64},{"source":63,"target":6},{"source":64,"target":4},{"source":7,"target":0},{"source":7,"target":65},{"source":7,"target":66},{"source":65,"target":67},{"source":65,"target":7},{"source":66,"target":68},{"source":66,"target":7},{"source":8,"target":0},{"source":8,"target":69},{"source":8,"target":70},{"source":8,"target":71},{"source":8,"target":72},{"source":8,"target":73},{"source":8,"target":74},{"source":69,"target":75},{"source":69,"target":8},{"source":70,"target":76},{"source":70,"target":8},{"source":71,"target":77},{"source":71,"target":8},{"source":72,"target":78},{"source":72,"target":8},{"source":73,"target":12},{"source":73,"target":79},{"source":73,"target":8},{"source":79,"target":12},{"source":74,"target":80},{"source":74,"target":8},{"source":9,"target":0},{"source":9,"target":81},{"source":9,"target":82},{"source":9,"target":83},{"source":9,"target":84},{"source":9,"target":85},{"source":9,"target":86},{"source":9,"target":87},{"source":9,"target":88},{"source":9,"target":89},{"source":81,"target":90},{"source":81,"target":9},{"source":82,"target":91},{"source":82,"target":9},{"source":83,"target":92},{"source":83,"target":9},{"source":84,"target":93},{"source":84,"target":9},{"source":85,"target":94},{"source":85,"target":9},{"source":86,"target":95},{"source":86,"target":9},{"source":87,"target":96},{"source":87,"target":9},{"source":88,"target":97},{"source":88,"target":9},{"source":89,"target":98},{"source":89,"target":9},{"source":10,"target":0},{"source":10,"target":99},{"source":99,"target":100},{"source":99,"target":10},{"source":11,"target":0},{"source":11,"target":101},{"source":11,"target":102},{"source":101,"target":10},{"source":101,"target":103},{"source":101,"target":11},{"source":103,"target":10},{"source":102,"target":6},{"source":102,"target":104},{"source":102,"target":11},{"source":104,"target":6},{"source":12,"target":0},{"source":12,"target":105},{"source":12,"target":106},{"source":105,"target":107},{"source":105,"target":12},{"source":106,"target":108},{"source":106,"target":12}],"multigraph":true} |
false | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0"
xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="testsourcemodel"
nsURI="http://testsourcemodel/1.0" nsPrefix="testsourcemodel">
<eClassifiers xsi:type="ecore:EClass" name="RootClass">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="anAttribute1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="normalReference" upperBound="-1"
eType="#//ClassWithListFeatures" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="any" upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFeatureMapEntry">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="elementWildcard"/>
<details key="name" value=":1"/>
<details key="processing" value="lax"/>
<details key="wildcards" value="##any"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="nonManyReference" eType="#//ClassWithListFeatures"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ClassWithListFeatures">
<eStructuralFeatures xsi:type="ecore:EReference" name="listFeature1" upperBound="-1"
eType="#//ListFeatureElementClass1" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="listFeature2" upperBound="-1"
eType="#//ListFeatureElementClass2" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="anAttribute1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ListFeatureElementClass1">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="listFeature3" upperBound="-1"
eType="#//ListFeatureElementClass3" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="anAttributeOfFeatureClass1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="any" upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFeatureMapEntry">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="elementWildcard"/>
<details key="name" value=":1"/>
<details key="processing" value="lax"/>
<details key="wildcards" value="##any"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ListFeatureElementClass2">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="anAttributeOfFeatureClass2"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ListFeatureElementClass3">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="anAttributeOfFeatureClass3"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
</ecore:EPackage>
| github:ecore:/data/markus1978/clickwatch/util/de.hub.specificmodels.test/src/de/hub/specificmodels/tests/common/TestSourceModel.ecore | ecore | testsourcemodel
RootClass
anAttribute1
normalReference
any
nonManyReference
ClassWithListFeatures
listFeature1
listFeature2
anAttribute1
ListFeatureElementClass1
name
listFeature3
anAttributeOfFeatureClass1
any
ListFeatureElementClass2
name
anAttributeOfFeatureClass2
ListFeatureElementClass3
name
anAttributeOfFeatureClass3 | null | {"directed":true,"nodes":[{"nsPrefix":"testsourcemodel","nsURI":"http://testsourcemodel/1.0","name":"testsourcemodel","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RootClass","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ClassWithListFeatures","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ListFeatureElementClass1","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ListFeatureElementClass2","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ListFeatureElementClass3","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"anAttribute1","changeable":true,"lowerBound":0,"iD":false,"id":6,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"normalReference","changeable":true,"resolveProxies":true,"lowerBound":0,"id":7,"derived":false},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"any","changeable":true,"lowerBound":0,"iD":false,"id":8,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"nonManyReference","changeable":true,"resolveProxies":true,"lowerBound":0,"id":9,"derived":false},{"id":10,"eClass":"EGenericType"},{"id":11,"eClass":"EGenericType"},{"id":12,"eClass":"EGenericType"},{"id":13,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"listFeature1","changeable":true,"resolveProxies":true,"lowerBound":0,"id":14,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"listFeature2","changeable":true,"resolveProxies":true,"lowerBound":0,"id":15,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"anAttribute1","changeable":true,"lowerBound":0,"iD":false,"id":16,"derived":false},{"id":17,"eClass":"EGenericType"},{"id":18,"eClass":"EGenericType"},{"id":19,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":20,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"listFeature3","changeable":true,"resolveProxies":true,"lowerBound":0,"id":21,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"anAttributeOfFeatureClass1","changeable":true,"lowerBound":0,"iD":false,"id":22,"derived":false},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"any","changeable":true,"lowerBound":0,"iD":false,"id":23,"derived":false},{"id":24,"eClass":"EGenericType"},{"id":25,"eClass":"EGenericType"},{"id":26,"eClass":"EGenericType"},{"id":27,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":28,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"anAttributeOfFeatureClass2","changeable":true,"lowerBound":0,"iD":false,"id":29,"derived":false},{"id":30,"eClass":"EGenericType"},{"id":31,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":32,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"anAttributeOfFeatureClass3","changeable":true,"lowerBound":0,"iD":false,"id":33,"derived":false},{"id":34,"eClass":"EGenericType"},{"id":35,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":1,"target":0},{"source":1,"target":6},{"source":1,"target":7},{"source":1,"target":8},{"source":1,"target":9},{"source":6,"target":10},{"source":6,"target":1},{"source":7,"target":2},{"source":7,"target":11},{"source":7,"target":1},{"source":11,"target":2},{"source":8,"target":12},{"source":8,"target":1},{"source":9,"target":2},{"source":9,"target":13},{"source":9,"target":1},{"source":13,"target":2},{"source":2,"target":0},{"source":2,"target":14},{"source":2,"target":15},{"source":2,"target":16},{"source":14,"target":3},{"source":14,"target":17},{"source":14,"target":2},{"source":17,"target":3},{"source":15,"target":4},{"source":15,"target":18},{"source":15,"target":2},{"source":18,"target":4},{"source":16,"target":19},{"source":16,"target":2},{"source":3,"target":0},{"source":3,"target":20},{"source":3,"target":21},{"source":3,"target":22},{"source":3,"target":23},{"source":20,"target":24},{"source":20,"target":3},{"source":21,"target":5},{"source":21,"target":25},{"source":21,"target":3},{"source":25,"target":5},{"source":22,"target":26},{"source":22,"target":3},{"source":23,"target":27},{"source":23,"target":3},{"source":4,"target":0},{"source":4,"target":28},{"source":4,"target":29},{"source":28,"target":30},{"source":28,"target":4},{"source":29,"target":31},{"source":29,"target":4},{"source":5,"target":0},{"source":5,"target":32},{"source":5,"target":33},{"source":32,"target":34},{"source":32,"target":5},{"source":33,"target":35},{"source":33,"target":5}],"multigraph":true} |
true | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0"
xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="definition"
nsURI="http://eclipse.org/jst/server/generic/ServerTypeDefinition" nsPrefix="definition">
<eClassifiers xsi:type="ecore:EClass" name="ArchiveType">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="archive_._type"/>
<details key="kind" value="empty"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="path" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="path"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ArgumentPair">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="ArgumentPair"/>
<details key="kind" value="elementOnly"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" unique="false" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="name"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" unique="false" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="value"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Classpath">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="Classpath"/>
<details key="kind" value="elementOnly"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="group" unique="false" upperBound="-1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFeatureMapEntry">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="group"/>
<details key="name" value="group:0"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="archive" upperBound="-1"
eType="#//ArchiveType" volatile="true" transient="true" derived="true" containment="true"
resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="archive"/>
<details key="group" value="#group:0"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="fileset" upperBound="-1"
eType="#//FilesetType" volatile="true" transient="true" derived="true" containment="true"
resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="fileset"/>
<details key="group" value="#group:0"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="id" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="id"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ExcludeType">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="exclude_._type"/>
<details key="kind" value="empty"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="name"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="External">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="External"/>
<details key="kind" value="simple"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value=":0"/>
<details key="kind" value="simple"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="os" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="os"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="FilesetType">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="fileset_._type"/>
<details key="kind" value="elementOnly"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="group" unique="false" upperBound="-1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFeatureMapEntry">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="group"/>
<details key="name" value="group:0"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="include" upperBound="-1"
eType="#//IncludeType" volatile="true" transient="true" derived="true" containment="true"
resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="include"/>
<details key="group" value="#group:0"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="exclude" upperBound="-1"
eType="#//ExcludeType" volatile="true" transient="true" derived="true" containment="true"
resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="exclude"/>
<details key="group" value="#group:0"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="casesensitive" unique="false"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//Boolean"
unsettable="true">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="casesensitive"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="dir" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="dir"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="IncludeType">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="include_._type"/>
<details key="kind" value="empty"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="name"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="JndiConnection">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="jndiConnection"/>
<details key="kind" value="elementOnly"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="providerUrl" unique="false"
lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="providerUrl"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="group" unique="false" upperBound="-1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFeatureMapEntry">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="group"/>
<details key="name" value="group:1"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="jndiProperty" upperBound="-1"
eType="#//ArgumentPair" volatile="true" transient="true" derived="true" containment="true"
resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="jndiProperty"/>
<details key="group" value="#group:1"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="initialContextFactory"
unique="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="initialContextFactory"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="LaunchConfiguration">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="LaunchConfiguration"/>
<details key="kind" value="elementOnly"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="group" unique="false" upperBound="-1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFeatureMapEntry">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="group"/>
<details key="name" value="group:0"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="environmentVariable" upperBound="-1"
eType="#//ArgumentPair" volatile="true" transient="true" derived="true" containment="true"
resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="environmentVariable"/>
<details key="group" value="#group:0"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="group1" unique="false"
upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFeatureMapEntry">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="group"/>
<details key="name" value="group:2"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="programArguments" unique="false"
upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"
volatile="true" transient="true" derived="true">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="programArguments"/>
<details key="group" value="#group:2"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="workingDirectory" unique="false"
lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="workingDirectory"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="mainClass" unique="false"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="mainClass"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="group2" unique="false"
upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFeatureMapEntry">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="group"/>
<details key="name" value="group:6"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="vmParameters" unique="false"
upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"
volatile="true" transient="true" derived="true">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="vmParameters"/>
<details key="group" value="#group:6"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="classpathReference" unique="false"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="classpathReference"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="debugPort" unique="false"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="debugPort"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="group3" unique="false"
upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFeatureMapEntry">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="group"/>
<details key="name" value="group:10"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="external" upperBound="-1"
eType="#//External" volatile="true" transient="true" derived="true" containment="true"
resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="external"/>
<details key="group" value="#group:10"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Module">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="Module"/>
<details key="kind" value="elementOnly"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="type" unique="false" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="type"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="publishDir" unique="false"
lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="publishDir"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="publisherReference" unique="false"
lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="publisherReference"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Port">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="Port"/>
<details key="kind" value="elementOnly"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="no" unique="false" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="no"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" unique="false" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="name"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="protocol" unique="false"
lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="protocol"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Project">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="Project"/>
<details key="kind" value="elementOnly"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="classpathReference" unique="false"
lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="classpathReference"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Property">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="Property"/>
<details key="kind" value="empty"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="context" unique="false"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="context"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="default" unique="false"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="default"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="id" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="id"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="label" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="label"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="type" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="type"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Publisher">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="Publisher"/>
<details key="kind" value="elementOnly"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="group" unique="false" upperBound="-1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFeatureMapEntry">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="group"/>
<details key="name" value="group:0"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="publisherdata" lowerBound="1"
upperBound="-1" eType="#//PublisherData" volatile="true" transient="true"
derived="true" containment="true" resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="publisherdata"/>
<details key="group" value="#group:0"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="id" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="id"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="PublisherData">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="PublisherData"/>
<details key="kind" value="elementOnly"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="dataname" unique="false"
lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="dataname"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="datavalue" unique="false"
lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="datavalue"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ServerRuntime">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="
				Generic Server Type Definition. It must have a list of
				properties.
			"/>
</eAnnotations>
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="name" value="ServerRuntime"/>
<details key="kind" value="elementOnly"/>
</eAnnotations>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="group" unique="false" upperBound="-1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFeatureMapEntry">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="group"/>
<details key="name" value="group:0"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="property" upperBound="-1"
eType="#//Property" volatile="true" transient="true" derived="true" containment="true"
resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="property"/>
<details key="group" value="#group:0"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="group1" unique="false"
upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFeatureMapEntry">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="group"/>
<details key="name" value="group:2"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="port" upperBound="-1" eType="#//Port"
volatile="true" transient="true" derived="true" containment="true" resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="port"/>
<details key="group" value="#group:2"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="group2" unique="false"
upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFeatureMapEntry">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="group"/>
<details key="name" value="group:4"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="module" lowerBound="1"
upperBound="-1" eType="#//Module" volatile="true" transient="true" derived="true"
containment="true" resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="module"/>
<details key="group" value="#group:4"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="project" lowerBound="1"
eType="#//Project" containment="true" resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="project"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="start" lowerBound="1" eType="#//LaunchConfiguration"
containment="true" resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="start"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="stop" lowerBound="1" eType="#//LaunchConfiguration"
containment="true" resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="stop"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="group3" unique="false"
upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFeatureMapEntry">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="group"/>
<details key="name" value="group:9"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="publisher" upperBound="-1"
eType="#//Publisher" volatile="true" transient="true" derived="true" containment="true"
resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="publisher"/>
<details key="group" value="#group:9"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="group4" unique="false"
upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFeatureMapEntry">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="group"/>
<details key="name" value="group:11"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="classpath" lowerBound="1"
upperBound="-1" eType="#//Classpath" volatile="true" transient="true" derived="true"
containment="true" resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="classpath"/>
<details key="group" value="#group:11"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="jndiConnection" lowerBound="1"
eType="#//JndiConnection" containment="true" resolveProxies="false">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="element"/>
<details key="name" value="jndiConnection"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" unique="false" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="name"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="version" unique="false"
eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String">
<eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData">
<details key="kind" value="attribute"/>
<details key="name" value="version"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
</ecore:EPackage>
| github:ecore:/data/nickboldt/webtools.servertools/plugins/org.eclipse.jst.server.generic.core/xsd/org.eclipse.jst.server.generic.servertype.ecore | ecore | definition
ArchiveType
path
ArgumentPair
name
value
Classpath
group
archive
fileset
id
ExcludeType
name
External
value
os
FilesetType
group
include
exclude
casesensitive
dir
IncludeType
name
JndiConnection
providerUrl
group
jndiProperty
initialContextFactory
LaunchConfiguration
group
environmentVariable
group1
programArguments
workingDirectory
mainClass
group2
vmParameters
classpathReference
debugPort
group3
external
Module
type
publishDir
publisherReference
Port
no
name
protocol
Project
classpathReference
Property
context
default
id
label
type
Publisher
group
publisherdata
id
PublisherData
dataname
datavalue
ServerRuntime
group
property
group1
port
group2
module
project
start
stop
group3
publisher
group4
classpath
jndiConnection
name
version | null | {"directed":true,"nodes":[{"nsPrefix":"definition","nsURI":"http://eclipse.org/jst/server/generic/ServerTypeDefinition","name":"definition","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ArchiveType","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ArgumentPair","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Classpath","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExcludeType","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"External","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FilesetType","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IncludeType","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"JndiConnection","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LaunchConfiguration","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Module","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Port","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Project","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Property","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Publisher","instanceClass":null,"abstract":false,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PublisherData","instanceClass":null,"abstract":false,"id":15,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ServerRuntime","instanceClass":null,"abstract":false,"id":16,"interface":false,"eClass":"EClass"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"path","changeable":true,"lowerBound":0,"iD":false,"id":17,"derived":false},{"id":18,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":19,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"value","changeable":true,"lowerBound":1,"iD":false,"id":20,"derived":false},{"id":21,"eClass":"EGenericType"},{"id":22,"eClass":"EGenericType"},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"group","changeable":true,"lowerBound":0,"iD":false,"id":23,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":true,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":true,"unique":true,"name":"archive","changeable":true,"resolveProxies":false,"lowerBound":0,"id":24,"derived":true},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":true,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":true,"unique":true,"name":"fileset","changeable":true,"resolveProxies":false,"lowerBound":0,"id":25,"derived":true},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"id","changeable":true,"lowerBound":0,"iD":false,"id":26,"derived":false},{"id":27,"eClass":"EGenericType"},{"id":28,"eClass":"EGenericType"},{"id":29,"eClass":"EGenericType"},{"id":30,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":31,"derived":false},{"id":32,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"value","changeable":true,"lowerBound":0,"iD":false,"id":33,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"os","changeable":true,"lowerBound":0,"iD":false,"id":34,"derived":false},{"id":35,"eClass":"EGenericType"},{"id":36,"eClass":"EGenericType"},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"group","changeable":true,"lowerBound":0,"iD":false,"id":37,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":true,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":true,"unique":true,"name":"include","changeable":true,"resolveProxies":false,"lowerBound":0,"id":38,"derived":true},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":true,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":true,"unique":true,"name":"exclude","changeable":true,"resolveProxies":false,"lowerBound":0,"id":39,"derived":true},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":false,"name":"casesensitive","changeable":true,"lowerBound":0,"iD":false,"id":40,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"dir","changeable":true,"lowerBound":0,"iD":false,"id":41,"derived":false},{"id":42,"eClass":"EGenericType"},{"id":43,"eClass":"EGenericType"},{"id":44,"eClass":"EGenericType"},{"id":45,"eClass":"EGenericType"},{"id":46,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":47,"derived":false},{"id":48,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"providerUrl","changeable":true,"lowerBound":1,"iD":false,"id":49,"derived":false},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"group","changeable":true,"lowerBound":0,"iD":false,"id":50,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":true,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":true,"unique":true,"name":"jndiProperty","changeable":true,"resolveProxies":false,"lowerBound":0,"id":51,"derived":true},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"initialContextFactory","changeable":true,"lowerBound":1,"iD":false,"id":52,"derived":false},{"id":53,"eClass":"EGenericType"},{"id":54,"eClass":"EGenericType"},{"id":55,"eClass":"EGenericType"},{"id":56,"eClass":"EGenericType"},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"group","changeable":true,"lowerBound":0,"iD":false,"id":57,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":true,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":true,"unique":true,"name":"environmentVariable","changeable":true,"resolveProxies":false,"lowerBound":0,"id":58,"derived":true},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"group1","changeable":true,"lowerBound":0,"iD":false,"id":59,"derived":false},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":true,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":true,"unique":false,"name":"programArguments","changeable":true,"lowerBound":0,"iD":false,"id":60,"derived":true},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"workingDirectory","changeable":true,"lowerBound":1,"iD":false,"id":61,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"mainClass","changeable":true,"lowerBound":0,"iD":false,"id":62,"derived":false},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"group2","changeable":true,"lowerBound":0,"iD":false,"id":63,"derived":false},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":true,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":true,"unique":false,"name":"vmParameters","changeable":true,"lowerBound":0,"iD":false,"id":64,"derived":true},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"classpathReference","changeable":true,"lowerBound":0,"iD":false,"id":65,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"debugPort","changeable":true,"lowerBound":0,"iD":false,"id":66,"derived":false},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"group3","changeable":true,"lowerBound":0,"iD":false,"id":67,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":true,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":true,"unique":true,"name":"external","changeable":true,"resolveProxies":false,"lowerBound":0,"id":68,"derived":true},{"id":69,"eClass":"EGenericType"},{"id":70,"eClass":"EGenericType"},{"id":71,"eClass":"EGenericType"},{"id":72,"eClass":"EGenericType"},{"id":73,"eClass":"EGenericType"},{"id":74,"eClass":"EGenericType"},{"id":75,"eClass":"EGenericType"},{"id":76,"eClass":"EGenericType"},{"id":77,"eClass":"EGenericType"},{"id":78,"eClass":"EGenericType"},{"id":79,"eClass":"EGenericType"},{"id":80,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"type","changeable":true,"lowerBound":1,"iD":false,"id":81,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"publishDir","changeable":true,"lowerBound":1,"iD":false,"id":82,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"publisherReference","changeable":true,"lowerBound":1,"iD":false,"id":83,"derived":false},{"id":84,"eClass":"EGenericType"},{"id":85,"eClass":"EGenericType"},{"id":86,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"no","changeable":true,"lowerBound":1,"iD":false,"id":87,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":88,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"protocol","changeable":true,"lowerBound":1,"iD":false,"id":89,"derived":false},{"id":90,"eClass":"EGenericType"},{"id":91,"eClass":"EGenericType"},{"id":92,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"classpathReference","changeable":true,"lowerBound":1,"iD":false,"id":93,"derived":false},{"id":94,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"context","changeable":true,"lowerBound":0,"iD":false,"id":95,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"default","changeable":true,"lowerBound":0,"iD":false,"id":96,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"id","changeable":true,"lowerBound":0,"iD":false,"id":97,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"label","changeable":true,"lowerBound":0,"iD":false,"id":98,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"type","changeable":true,"lowerBound":0,"iD":false,"id":99,"derived":false},{"id":100,"eClass":"EGenericType"},{"id":101,"eClass":"EGenericType"},{"id":102,"eClass":"EGenericType"},{"id":103,"eClass":"EGenericType"},{"id":104,"eClass":"EGenericType"},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"group","changeable":true,"lowerBound":0,"iD":false,"id":105,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":true,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":true,"unique":true,"name":"publisherdata","changeable":true,"resolveProxies":false,"lowerBound":1,"id":106,"derived":true},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"id","changeable":true,"lowerBound":0,"iD":false,"id":107,"derived":false},{"id":108,"eClass":"EGenericType"},{"id":109,"eClass":"EGenericType"},{"id":110,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"dataname","changeable":true,"lowerBound":1,"iD":false,"id":111,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"datavalue","changeable":true,"lowerBound":1,"iD":false,"id":112,"derived":false},{"id":113,"eClass":"EGenericType"},{"id":114,"eClass":"EGenericType"},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"group","changeable":true,"lowerBound":0,"iD":false,"id":115,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":true,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":true,"unique":true,"name":"property","changeable":true,"resolveProxies":false,"lowerBound":0,"id":116,"derived":true},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"group1","changeable":true,"lowerBound":0,"iD":false,"id":117,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":true,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":true,"unique":true,"name":"port","changeable":true,"resolveProxies":false,"lowerBound":0,"id":118,"derived":true},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"group2","changeable":true,"lowerBound":0,"iD":false,"id":119,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":true,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":true,"unique":true,"name":"module","changeable":true,"resolveProxies":false,"lowerBound":1,"id":120,"derived":true},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"project","changeable":true,"resolveProxies":false,"lowerBound":1,"id":121,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"start","changeable":true,"resolveProxies":false,"lowerBound":1,"id":122,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"stop","changeable":true,"resolveProxies":false,"lowerBound":1,"id":123,"derived":false},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"group3","changeable":true,"lowerBound":0,"iD":false,"id":124,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":true,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":true,"unique":true,"name":"publisher","changeable":true,"resolveProxies":false,"lowerBound":0,"id":125,"derived":true},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"group4","changeable":true,"lowerBound":0,"iD":false,"id":126,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":true,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":true,"unique":true,"name":"classpath","changeable":true,"resolveProxies":false,"lowerBound":1,"id":127,"derived":true},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"jndiConnection","changeable":true,"resolveProxies":false,"lowerBound":1,"id":128,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"name","changeable":true,"lowerBound":1,"iD":false,"id":129,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"version","changeable":true,"lowerBound":0,"iD":false,"id":130,"derived":false},{"id":131,"eClass":"EGenericType"},{"id":132,"eClass":"EGenericType"},{"id":133,"eClass":"EGenericType"},{"id":134,"eClass":"EGenericType"},{"id":135,"eClass":"EGenericType"},{"id":136,"eClass":"EGenericType"},{"id":137,"eClass":"EGenericType"},{"id":138,"eClass":"EGenericType"},{"id":139,"eClass":"EGenericType"},{"id":140,"eClass":"EGenericType"},{"id":141,"eClass":"EGenericType"},{"id":142,"eClass":"EGenericType"},{"id":143,"eClass":"EGenericType"},{"id":144,"eClass":"EGenericType"},{"id":145,"eClass":"EGenericType"},{"id":146,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":0,"target":8},{"source":0,"target":9},{"source":0,"target":10},{"source":0,"target":11},{"source":0,"target":12},{"source":0,"target":13},{"source":0,"target":14},{"source":0,"target":15},{"source":0,"target":16},{"source":1,"target":0},{"source":1,"target":17},{"source":17,"target":18},{"source":17,"target":1},{"source":2,"target":0},{"source":2,"target":19},{"source":2,"target":20},{"source":19,"target":21},{"source":19,"target":2},{"source":20,"target":22},{"source":20,"target":2},{"source":3,"target":0},{"source":3,"target":23},{"source":3,"target":24},{"source":3,"target":25},{"source":3,"target":26},{"source":23,"target":27},{"source":23,"target":3},{"source":24,"target":1},{"source":24,"target":28},{"source":24,"target":3},{"source":28,"target":1},{"source":25,"target":6},{"source":25,"target":29},{"source":25,"target":3},{"source":29,"target":6},{"source":26,"target":30},{"source":26,"target":3},{"source":4,"target":0},{"source":4,"target":31},{"source":31,"target":32},{"source":31,"target":4},{"source":5,"target":0},{"source":5,"target":33},{"source":5,"target":34},{"source":33,"target":35},{"source":33,"target":5},{"source":34,"target":36},{"source":34,"target":5},{"source":6,"target":0},{"source":6,"target":37},{"source":6,"target":38},{"source":6,"target":39},{"source":6,"target":40},{"source":6,"target":41},{"source":37,"target":42},{"source":37,"target":6},{"source":38,"target":7},{"source":38,"target":43},{"source":38,"target":6},{"source":43,"target":7},{"source":39,"target":4},{"source":39,"target":44},{"source":39,"target":6},{"source":44,"target":4},{"source":40,"target":45},{"source":40,"target":6},{"source":41,"target":46},{"source":41,"target":6},{"source":7,"target":0},{"source":7,"target":47},{"source":47,"target":48},{"source":47,"target":7},{"source":8,"target":0},{"source":8,"target":49},{"source":8,"target":50},{"source":8,"target":51},{"source":8,"target":52},{"source":49,"target":53},{"source":49,"target":8},{"source":50,"target":54},{"source":50,"target":8},{"source":51,"target":2},{"source":51,"target":55},{"source":51,"target":8},{"source":55,"target":2},{"source":52,"target":56},{"source":52,"target":8},{"source":9,"target":0},{"source":9,"target":57},{"source":9,"target":58},{"source":9,"target":59},{"source":9,"target":60},{"source":9,"target":61},{"source":9,"target":62},{"source":9,"target":63},{"source":9,"target":64},{"source":9,"target":65},{"source":9,"target":66},{"source":9,"target":67},{"source":9,"target":68},{"source":57,"target":69},{"source":57,"target":9},{"source":58,"target":2},{"source":58,"target":70},{"source":58,"target":9},{"source":70,"target":2},{"source":59,"target":71},{"source":59,"target":9},{"source":60,"target":72},{"source":60,"target":9},{"source":61,"target":73},{"source":61,"target":9},{"source":62,"target":74},{"source":62,"target":9},{"source":63,"target":75},{"source":63,"target":9},{"source":64,"target":76},{"source":64,"target":9},{"source":65,"target":77},{"source":65,"target":9},{"source":66,"target":78},{"source":66,"target":9},{"source":67,"target":79},{"source":67,"target":9},{"source":68,"target":5},{"source":68,"target":80},{"source":68,"target":9},{"source":80,"target":5},{"source":10,"target":0},{"source":10,"target":81},{"source":10,"target":82},{"source":10,"target":83},{"source":81,"target":84},{"source":81,"target":10},{"source":82,"target":85},{"source":82,"target":10},{"source":83,"target":86},{"source":83,"target":10},{"source":11,"target":0},{"source":11,"target":87},{"source":11,"target":88},{"source":11,"target":89},{"source":87,"target":90},{"source":87,"target":11},{"source":88,"target":91},{"source":88,"target":11},{"source":89,"target":92},{"source":89,"target":11},{"source":12,"target":0},{"source":12,"target":93},{"source":93,"target":94},{"source":93,"target":12},{"source":13,"target":0},{"source":13,"target":95},{"source":13,"target":96},{"source":13,"target":97},{"source":13,"target":98},{"source":13,"target":99},{"source":95,"target":100},{"source":95,"target":13},{"source":96,"target":101},{"source":96,"target":13},{"source":97,"target":102},{"source":97,"target":13},{"source":98,"target":103},{"source":98,"target":13},{"source":99,"target":104},{"source":99,"target":13},{"source":14,"target":0},{"source":14,"target":105},{"source":14,"target":106},{"source":14,"target":107},{"source":105,"target":108},{"source":105,"target":14},{"source":106,"target":15},{"source":106,"target":109},{"source":106,"target":14},{"source":109,"target":15},{"source":107,"target":110},{"source":107,"target":14},{"source":15,"target":0},{"source":15,"target":111},{"source":15,"target":112},{"source":111,"target":113},{"source":111,"target":15},{"source":112,"target":114},{"source":112,"target":15},{"source":16,"target":0},{"source":16,"target":115},{"source":16,"target":116},{"source":16,"target":117},{"source":16,"target":118},{"source":16,"target":119},{"source":16,"target":120},{"source":16,"target":121},{"source":16,"target":122},{"source":16,"target":123},{"source":16,"target":124},{"source":16,"target":125},{"source":16,"target":126},{"source":16,"target":127},{"source":16,"target":128},{"source":16,"target":129},{"source":16,"target":130},{"source":115,"target":131},{"source":115,"target":16},{"source":116,"target":13},{"source":116,"target":132},{"source":116,"target":16},{"source":132,"target":13},{"source":117,"target":133},{"source":117,"target":16},{"source":118,"target":11},{"source":118,"target":134},{"source":118,"target":16},{"source":134,"target":11},{"source":119,"target":135},{"source":119,"target":16},{"source":120,"target":10},{"source":120,"target":136},{"source":120,"target":16},{"source":136,"target":10},{"source":121,"target":12},{"source":121,"target":137},{"source":121,"target":16},{"source":137,"target":12},{"source":122,"target":9},{"source":122,"target":138},{"source":122,"target":16},{"source":138,"target":9},{"source":123,"target":9},{"source":123,"target":139},{"source":123,"target":16},{"source":139,"target":9},{"source":124,"target":140},{"source":124,"target":16},{"source":125,"target":14},{"source":125,"target":141},{"source":125,"target":16},{"source":141,"target":14},{"source":126,"target":142},{"source":126,"target":16},{"source":127,"target":3},{"source":127,"target":143},{"source":127,"target":16},{"source":143,"target":3},{"source":128,"target":8},{"source":128,"target":144},{"source":128,"target":16},{"source":144,"target":8},{"source":129,"target":145},{"source":129,"target":16},{"source":130,"target":146},{"source":130,"target":16}],"multigraph":true} |
false | <?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="DetailView" nsURI="http://openscada.org/openSCADA/DetailView/1.0"
nsPrefix="detailView">
<eClassifiers xsi:type="ecore:EClass" name="View">
<eStructuralFeatures xsi:type="ecore:EReference" name="headerComponent" eType="#//Component"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="groups" upperBound="-1"
eType="#//GroupEntry" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="hiddenComponent" upperBound="-1"
eType="#//HiddenComponent" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="scriptModule" upperBound="-1"
eType="#//ScriptModule" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="tabStyle" eType="#//TabStyle"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Component" abstract="true">
<eStructuralFeatures xsi:type="ecore:EReference" name="visibility" eType="#//Visibility"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="GroupEntry">
<eStructuralFeatures xsi:type="ecore:EReference" name="component" lowerBound="1"
eType="#//Component" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="label" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="permission" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="visibility" eType="#//Visibility"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="LabelComponent" eSuperTypes="#//Component">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="format" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
defaultValueLiteral="%s"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="descriptor" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CompositeComponent" abstract="true"
eSuperTypes="#//Component">
<eStructuralFeatures xsi:type="ecore:EReference" name="children" upperBound="-1"
eType="#//Component" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="FillLayoutComponent" eSuperTypes="#//CompositeComponent"/>
<eClassifiers xsi:type="ecore:EClass" name="ButtonComponent" eSuperTypes="#//GenericComponent">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="format" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="value" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="readDescriptor" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="writeDescriptor" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="active" eType="#//ValueSource"
containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="attribute" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="textHeight" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="BoolLEDComponent" eSuperTypes="#//Component">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="format" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="descriptor" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="alarm" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="attribute" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="expectedValue" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"
defaultValueLiteral="false"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="onOff" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"
defaultValueLiteral="false"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ValueSource" abstract="true"/>
<eClassifiers xsi:type="ecore:EClass" name="ItemValueSource" eSuperTypes="#//ValueSource">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="valueKey" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="NotTransformer" eSuperTypes="#//ValueSource">
<eStructuralFeatures xsi:type="ecore:EReference" name="value" lowerBound="1" eType="#//ValueSource"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="GenericComponent" abstract="true" eSuperTypes="#//Component">
<eStructuralFeatures xsi:type="ecore:EReference" name="registrations" upperBound="-1"
eType="#//Registration" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Registration">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="key" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="descriptor" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="aggregateState" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"
defaultValueLiteral="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="SimpleGridComponent" eSuperTypes="#//CompositeComponent">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="equally" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"
defaultValueLiteral="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="cols" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"
defaultValueLiteral="2"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="GroupGridComponent" eSuperTypes="#//Component">
<eStructuralFeatures xsi:type="ecore:EReference" name="groups" upperBound="-1"
eType="#//GroupGridEntry" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="equally" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean" defaultValueLiteral="false"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="cols" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"
defaultValueLiteral="2"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="GroupGridEntry">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="label" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="components" upperBound="-1"
eType="#//Component" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="permission" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="visibility" eType="#//Visibility"
containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ValueSetComponent" eSuperTypes="#//WriteableComponent">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="valueDescriptor" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="setDescriptor" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="resetDescriptor" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ValueComponent" eSuperTypes="#//ReadableComponent">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="descriptor" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="date" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBooleanObject"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CompositeTransformer" abstract="true"
eSuperTypes="#//ValueSource">
<eStructuralFeatures xsi:type="ecore:EReference" name="values" upperBound="-1"
eType="#//ValueSource" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="AndTransformer" eSuperTypes="#//CompositeTransformer"/>
<eClassifiers xsi:type="ecore:EClass" name="OrTransformer" eSuperTypes="#//CompositeTransformer"/>
<eClassifiers xsi:type="ecore:EClass" name="TextInputComponent" eSuperTypes="#//WriteableComponent">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="descriptor" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="readDescriptor" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="width" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="WriteableComponent" abstract="true"
eSuperTypes="#//ReadableComponent">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="ceil" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDoubleObject"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="floor" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ReadableComponent" abstract="true" eSuperTypes="#//Component">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="format" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="decimal" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="attribute" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="hdConnectionId" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="hdItemId" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="hdQueryString" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="isText" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="TextComponent" eSuperTypes="#//ReadableComponent">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="descriptor" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="width" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="height" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="date" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="textHeight" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="textMap" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="TextInputMultiComponent" eSuperTypes="#//WriteableComponent">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="descriptor" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="CheckComponent" eSuperTypes="#//Component">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="format" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="descriptor" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="attribute" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="readDescriptor" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="LinkComponent" eSuperTypes="#//Component">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="format" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="URLImageComponent" eSuperTypes="#//Component">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="descriptor" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="imageUrl" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="fallbackImageUrl" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="width" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="height" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ProgressComponent" eSuperTypes="#//ReadableComponent">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="descriptor" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="factor" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="max" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="min" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="width" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="HiddenComponent">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="descriptor" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Visibility" abstract="true"/>
<eClassifiers xsi:type="ecore:EClass" name="ScriptVisibility" eSuperTypes="#//Visibility">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="script" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="scriptLanguage" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The script interpreter. If left empty "JavaScript" willl be used."/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="PermissionVisibility" eSuperTypes="#//Visibility">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="requiredPermission" lowerBound="1"
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Invisible" eSuperTypes="#//Visibility">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="An implementation that is always invisible."/>
</eAnnotations>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="TestVisibility" eSuperTypes="#//Visibility">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="id" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ScriptModule">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="scriptLanguage" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The language of the script module. Default is "JavaScript"."/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="code" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The script code to execute."/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="codeUri" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="documentation" value="The URL which points to a resource that will be executed as script."/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="TabStyle">
<eLiterals name="DEFAULT"/>
<eLiterals name="NATIVE" value="1"/>
<eLiterals name="ENHANCED" value="2"/>
</eClassifiers>
</ecore:EPackage>
| github:ecore:/data/MDEGroup/QMM-COMLAN-data/validation-subjects/metamodels/DetailView.ecore | ecore | DetailView
View
headerComponent
groups
hiddenComponent
scriptModule
tabStyle
Component
visibility
GroupEntry
component
label
permission
visibility
LabelComponent
format
%s
descriptor
CompositeComponent
children
FillLayoutComponent
ButtonComponent
format
value
readDescriptor
writeDescriptor
active
attribute
textHeight
BoolLEDComponent
format
descriptor
alarm
attribute
expectedValue
false
onOff
false
ValueSource
ItemValueSource
valueKey
NotTransformer
value
GenericComponent
registrations
Registration
key
descriptor
aggregateState
true
SimpleGridComponent
equally
true
cols
2
GroupGridComponent
groups
equally
false
cols
2
GroupGridEntry
label
components
permission
visibility
ValueSetComponent
valueDescriptor
setDescriptor
resetDescriptor
ValueComponent
descriptor
date
CompositeTransformer
values
AndTransformer
OrTransformer
TextInputComponent
descriptor
readDescriptor
width
WriteableComponent
ceil
floor
ReadableComponent
format
decimal
attribute
hdConnectionId
hdItemId
hdQueryString
isText
TextComponent
descriptor
width
height
date
textHeight
textMap
TextInputMultiComponent
descriptor
CheckComponent
format
descriptor
attribute
readDescriptor
LinkComponent
format
URLImageComponent
descriptor
imageUrl
fallbackImageUrl
width
height
ProgressComponent
descriptor
factor
max
min
width
HiddenComponent
descriptor
Visibility
ScriptVisibility
script
scriptLanguage
PermissionVisibility
requiredPermission
Invisible
TestVisibility
id
ScriptModule
scriptLanguage
code
codeUri
TabStyle
DEFAULT
DEFAULT
NATIVE
NATIVE
ENHANCED
ENHANCED | null | {"directed":true,"nodes":[{"nsPrefix":"detailView","nsURI":"http://openscada.org/openSCADA/DetailView/1.0","name":"DetailView","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"View","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Component","instanceClass":null,"abstract":true,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"GroupEntry","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LabelComponent","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CompositeComponent","instanceClass":null,"abstract":true,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FillLayoutComponent","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ButtonComponent","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BoolLEDComponent","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ValueSource","instanceClass":null,"abstract":true,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ItemValueSource","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NotTransformer","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"GenericComponent","instanceClass":null,"abstract":true,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Registration","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SimpleGridComponent","instanceClass":null,"abstract":false,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"GroupGridComponent","instanceClass":null,"abstract":false,"id":15,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"GroupGridEntry","instanceClass":null,"abstract":false,"id":16,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ValueSetComponent","instanceClass":null,"abstract":false,"id":17,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ValueComponent","instanceClass":null,"abstract":false,"id":18,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CompositeTransformer","instanceClass":null,"abstract":true,"id":19,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AndTransformer","instanceClass":null,"abstract":false,"id":20,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OrTransformer","instanceClass":null,"abstract":false,"id":21,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TextInputComponent","instanceClass":null,"abstract":false,"id":22,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"WriteableComponent","instanceClass":null,"abstract":true,"id":23,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ReadableComponent","instanceClass":null,"abstract":true,"id":24,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TextComponent","instanceClass":null,"abstract":false,"id":25,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TextInputMultiComponent","instanceClass":null,"abstract":false,"id":26,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CheckComponent","instanceClass":null,"abstract":false,"id":27,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LinkComponent","instanceClass":null,"abstract":false,"id":28,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"URLImageComponent","instanceClass":null,"abstract":false,"id":29,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ProgressComponent","instanceClass":null,"abstract":false,"id":30,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"HiddenComponent","instanceClass":null,"abstract":false,"id":31,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Visibility","instanceClass":null,"abstract":true,"id":32,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ScriptVisibility","instanceClass":null,"abstract":false,"id":33,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PermissionVisibility","instanceClass":null,"abstract":false,"id":34,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Invisible","instanceClass":null,"abstract":false,"id":35,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TestVisibility","instanceClass":null,"abstract":false,"id":36,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ScriptModule","instanceClass":null,"abstract":false,"id":37,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"TabStyle","instanceClass":null,"id":38,"serializable":true,"eClass":"EEnum"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"headerComponent","changeable":true,"resolveProxies":true,"lowerBound":0,"id":39,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"groups","changeable":true,"resolveProxies":true,"lowerBound":0,"id":40,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"hiddenComponent","changeable":true,"resolveProxies":true,"lowerBound":0,"id":41,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"scriptModule","changeable":true,"resolveProxies":true,"lowerBound":0,"id":42,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"tabStyle","changeable":true,"lowerBound":0,"iD":false,"id":43,"derived":false},{"id":44,"eClass":"EGenericType"},{"id":45,"eClass":"EGenericType"},{"id":46,"eClass":"EGenericType"},{"id":47,"eClass":"EGenericType"},{"id":48,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"visibility","changeable":true,"resolveProxies":true,"lowerBound":0,"id":49,"derived":false},{"id":50,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"component","changeable":true,"resolveProxies":true,"lowerBound":1,"id":51,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"label","changeable":true,"lowerBound":0,"iD":false,"id":52,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"permission","changeable":true,"lowerBound":0,"iD":false,"id":53,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"visibility","changeable":true,"resolveProxies":true,"lowerBound":0,"id":54,"derived":false},{"id":55,"eClass":"EGenericType"},{"id":56,"eClass":"EGenericType"},{"id":57,"eClass":"EGenericType"},{"id":58,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":"%s","volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"%s","unsettable":false,"transient":false,"unique":true,"name":"format","changeable":true,"lowerBound":0,"iD":false,"id":59,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"descriptor","changeable":true,"lowerBound":1,"iD":false,"id":60,"derived":false},{"id":61,"eClass":"EGenericType"},{"id":62,"eClass":"EGenericType"},{"id":63,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"children","changeable":true,"resolveProxies":true,"lowerBound":0,"id":64,"derived":false},{"id":65,"eClass":"EGenericType"},{"id":66,"eClass":"EGenericType"},{"id":67,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"format","changeable":true,"lowerBound":1,"iD":false,"id":68,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":1,"iD":false,"id":69,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"readDescriptor","changeable":true,"lowerBound":0,"iD":false,"id":70,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"writeDescriptor","changeable":true,"lowerBound":1,"iD":false,"id":71,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"active","changeable":true,"resolveProxies":true,"lowerBound":0,"id":72,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"attribute","changeable":true,"lowerBound":0,"iD":false,"id":73,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"textHeight","changeable":true,"lowerBound":0,"iD":false,"id":74,"derived":false},{"id":75,"eClass":"EGenericType"},{"id":76,"eClass":"EGenericType"},{"id":77,"eClass":"EGenericType"},{"id":78,"eClass":"EGenericType"},{"id":79,"eClass":"EGenericType"},{"id":80,"eClass":"EGenericType"},{"id":81,"eClass":"EGenericType"},{"id":82,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"format","changeable":true,"lowerBound":0,"iD":false,"id":83,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"descriptor","changeable":true,"lowerBound":1,"iD":false,"id":84,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"alarm","changeable":true,"lowerBound":0,"iD":false,"id":85,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"attribute","changeable":true,"lowerBound":0,"iD":false,"id":86,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"false","unsettable":false,"transient":false,"unique":true,"name":"expectedValue","changeable":true,"lowerBound":0,"iD":false,"id":87,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"false","unsettable":false,"transient":false,"unique":true,"name":"onOff","changeable":true,"lowerBound":0,"iD":false,"id":88,"derived":false},{"id":89,"eClass":"EGenericType"},{"id":90,"eClass":"EGenericType"},{"id":91,"eClass":"EGenericType"},{"id":92,"eClass":"EGenericType"},{"id":93,"eClass":"EGenericType"},{"id":94,"eClass":"EGenericType"},{"id":95,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"valueKey","changeable":true,"lowerBound":1,"iD":false,"id":96,"derived":false},{"id":97,"eClass":"EGenericType"},{"id":98,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"resolveProxies":true,"lowerBound":1,"id":99,"derived":false},{"id":100,"eClass":"EGenericType"},{"id":101,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"registrations","changeable":true,"resolveProxies":true,"lowerBound":0,"id":102,"derived":false},{"id":103,"eClass":"EGenericType"},{"id":104,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"key","changeable":true,"lowerBound":1,"iD":false,"id":105,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"descriptor","changeable":true,"lowerBound":1,"iD":false,"id":106,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":true,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"true","unsettable":false,"transient":false,"unique":true,"name":"aggregateState","changeable":true,"lowerBound":0,"iD":false,"id":107,"derived":false},{"id":108,"eClass":"EGenericType"},{"id":109,"eClass":"EGenericType"},{"id":110,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":true,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"true","unsettable":false,"transient":false,"unique":true,"name":"equally","changeable":true,"lowerBound":0,"iD":false,"id":111,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":2,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"2","unsettable":false,"transient":false,"unique":true,"name":"cols","changeable":true,"lowerBound":0,"iD":false,"id":112,"derived":false},{"id":113,"eClass":"EGenericType"},{"id":114,"eClass":"EGenericType"},{"id":115,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"groups","changeable":true,"resolveProxies":true,"lowerBound":0,"id":116,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"false","unsettable":false,"transient":false,"unique":true,"name":"equally","changeable":true,"lowerBound":1,"iD":false,"id":117,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":2,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"2","unsettable":false,"transient":false,"unique":true,"name":"cols","changeable":true,"lowerBound":1,"iD":false,"id":118,"derived":false},{"id":119,"eClass":"EGenericType"},{"id":120,"eClass":"EGenericType"},{"id":121,"eClass":"EGenericType"},{"id":122,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"label","changeable":true,"lowerBound":1,"iD":false,"id":123,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"components","changeable":true,"resolveProxies":true,"lowerBound":0,"id":124,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"permission","changeable":true,"lowerBound":0,"iD":false,"id":125,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"visibility","changeable":true,"resolveProxies":true,"lowerBound":0,"id":126,"derived":false},{"id":127,"eClass":"EGenericType"},{"id":128,"eClass":"EGenericType"},{"id":129,"eClass":"EGenericType"},{"id":130,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"valueDescriptor","changeable":true,"lowerBound":1,"iD":false,"id":131,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"setDescriptor","changeable":true,"lowerBound":0,"iD":false,"id":132,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"resetDescriptor","changeable":true,"lowerBound":0,"iD":false,"id":133,"derived":false},{"id":134,"eClass":"EGenericType"},{"id":135,"eClass":"EGenericType"},{"id":136,"eClass":"EGenericType"},{"id":137,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"descriptor","changeable":true,"lowerBound":1,"iD":false,"id":138,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"date","changeable":true,"lowerBound":0,"iD":false,"id":139,"derived":false},{"id":140,"eClass":"EGenericType"},{"id":141,"eClass":"EGenericType"},{"id":142,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"values","changeable":true,"resolveProxies":true,"lowerBound":0,"id":143,"derived":false},{"id":144,"eClass":"EGenericType"},{"id":145,"eClass":"EGenericType"},{"id":146,"eClass":"EGenericType"},{"id":147,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"descriptor","changeable":true,"lowerBound":1,"iD":false,"id":148,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"readDescriptor","changeable":true,"lowerBound":0,"iD":false,"id":149,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"width","changeable":true,"lowerBound":0,"iD":false,"id":150,"derived":false},{"id":151,"eClass":"EGenericType"},{"id":152,"eClass":"EGenericType"},{"id":153,"eClass":"EGenericType"},{"id":154,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"ceil","changeable":true,"lowerBound":0,"iD":false,"id":155,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"floor","changeable":true,"lowerBound":0,"iD":false,"id":156,"derived":false},{"id":157,"eClass":"EGenericType"},{"id":158,"eClass":"EGenericType"},{"id":159,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"format","changeable":true,"lowerBound":0,"iD":false,"id":160,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"decimal","changeable":true,"lowerBound":0,"iD":false,"id":161,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"attribute","changeable":true,"lowerBound":0,"iD":false,"id":162,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"hdConnectionId","changeable":true,"lowerBound":0,"iD":false,"id":163,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"hdItemId","changeable":true,"lowerBound":0,"iD":false,"id":164,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"hdQueryString","changeable":true,"lowerBound":0,"iD":false,"id":165,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isText","changeable":true,"lowerBound":0,"iD":false,"id":166,"derived":false},{"id":167,"eClass":"EGenericType"},{"id":168,"eClass":"EGenericType"},{"id":169,"eClass":"EGenericType"},{"id":170,"eClass":"EGenericType"},{"id":171,"eClass":"EGenericType"},{"id":172,"eClass":"EGenericType"},{"id":173,"eClass":"EGenericType"},{"id":174,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"descriptor","changeable":true,"lowerBound":1,"iD":false,"id":175,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"width","changeable":true,"lowerBound":0,"iD":false,"id":176,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"height","changeable":true,"lowerBound":0,"iD":false,"id":177,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"date","changeable":true,"lowerBound":0,"iD":false,"id":178,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"textHeight","changeable":true,"lowerBound":0,"iD":false,"id":179,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"textMap","changeable":true,"lowerBound":0,"iD":false,"id":180,"derived":false},{"id":181,"eClass":"EGenericType"},{"id":182,"eClass":"EGenericType"},{"id":183,"eClass":"EGenericType"},{"id":184,"eClass":"EGenericType"},{"id":185,"eClass":"EGenericType"},{"id":186,"eClass":"EGenericType"},{"id":187,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"descriptor","changeable":true,"lowerBound":1,"iD":false,"id":188,"derived":false},{"id":189,"eClass":"EGenericType"},{"id":190,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"format","changeable":true,"lowerBound":0,"iD":false,"id":191,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"descriptor","changeable":true,"lowerBound":1,"iD":false,"id":192,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"attribute","changeable":true,"lowerBound":0,"iD":false,"id":193,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"readDescriptor","changeable":true,"lowerBound":0,"iD":false,"id":194,"derived":false},{"id":195,"eClass":"EGenericType"},{"id":196,"eClass":"EGenericType"},{"id":197,"eClass":"EGenericType"},{"id":198,"eClass":"EGenericType"},{"id":199,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"format","changeable":true,"lowerBound":0,"iD":false,"id":200,"derived":false},{"id":201,"eClass":"EGenericType"},{"id":202,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"descriptor","changeable":true,"lowerBound":0,"iD":false,"id":203,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"imageUrl","changeable":true,"lowerBound":0,"iD":false,"id":204,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"fallbackImageUrl","changeable":true,"lowerBound":0,"iD":false,"id":205,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"width","changeable":true,"lowerBound":0,"iD":false,"id":206,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"height","changeable":true,"lowerBound":0,"iD":false,"id":207,"derived":false},{"id":208,"eClass":"EGenericType"},{"id":209,"eClass":"EGenericType"},{"id":210,"eClass":"EGenericType"},{"id":211,"eClass":"EGenericType"},{"id":212,"eClass":"EGenericType"},{"id":213,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"descriptor","changeable":true,"lowerBound":1,"iD":false,"id":214,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"factor","changeable":true,"lowerBound":0,"iD":false,"id":215,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"max","changeable":true,"lowerBound":0,"iD":false,"id":216,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"min","changeable":true,"lowerBound":0,"iD":false,"id":217,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"width","changeable":true,"lowerBound":0,"iD":false,"id":218,"derived":false},{"id":219,"eClass":"EGenericType"},{"id":220,"eClass":"EGenericType"},{"id":221,"eClass":"EGenericType"},{"id":222,"eClass":"EGenericType"},{"id":223,"eClass":"EGenericType"},{"id":224,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"descriptor","changeable":true,"lowerBound":1,"iD":false,"id":225,"derived":false},{"id":226,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"script","changeable":true,"lowerBound":1,"iD":false,"id":227,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"scriptLanguage","changeable":true,"lowerBound":0,"iD":false,"id":228,"derived":false},{"id":229,"eClass":"EGenericType"},{"id":230,"eClass":"EGenericType"},{"id":231,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"requiredPermission","changeable":true,"lowerBound":1,"iD":false,"id":232,"derived":false},{"id":233,"eClass":"EGenericType"},{"id":234,"eClass":"EGenericType"},{"id":235,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"id","changeable":true,"lowerBound":1,"iD":false,"id":236,"derived":false},{"id":237,"eClass":"EGenericType"},{"id":238,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"scriptLanguage","changeable":true,"lowerBound":0,"iD":false,"id":239,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"code","changeable":true,"lowerBound":0,"iD":false,"id":240,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"codeUri","changeable":true,"lowerBound":0,"iD":false,"id":241,"derived":false},{"id":242,"eClass":"EGenericType"},{"id":243,"eClass":"EGenericType"},{"id":244,"eClass":"EGenericType"},{"name":"DEFAULT","id":245,"value":0,"literal":"DEFAULT","eClass":"EEnumLiteral"},{"name":"NATIVE","id":246,"value":1,"literal":"NATIVE","eClass":"EEnumLiteral"},{"name":"ENHANCED","id":247,"value":2,"literal":"ENHANCED","eClass":"EEnumLiteral"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"target":4},{"source":0,"target":5},{"source":0,"target":6},{"source":0,"target":7},{"source":0,"target":8},{"source":0,"target":9},{"source":0,"target":10},{"source":0,"target":11},{"source":0,"target":12},{"source":0,"target":13},{"source":0,"target":14},{"source":0,"target":15},{"source":0,"target":16},{"source":0,"target":17},{"source":0,"target":18},{"source":0,"target":19},{"source":0,"target":20},{"source":0,"target":21},{"source":0,"target":22},{"source":0,"target":23},{"source":0,"target":24},{"source":0,"target":25},{"source":0,"target":26},{"source":0,"target":27},{"source":0,"target":28},{"source":0,"target":29},{"source":0,"target":30},{"source":0,"target":31},{"source":0,"target":32},{"source":0,"target":33},{"source":0,"target":34},{"source":0,"target":35},{"source":0,"target":36},{"source":0,"target":37},{"source":0,"target":38},{"source":1,"target":0},{"source":1,"target":39},{"source":1,"target":40},{"source":1,"target":41},{"source":1,"target":42},{"source":1,"target":43},{"source":39,"target":2},{"source":39,"target":44},{"source":39,"target":1},{"source":44,"target":2},{"source":40,"target":3},{"source":40,"target":45},{"source":40,"target":1},{"source":45,"target":3},{"source":41,"target":31},{"source":41,"target":46},{"source":41,"target":1},{"source":46,"target":31},{"source":42,"target":37},{"source":42,"target":47},{"source":42,"target":1},{"source":47,"target":37},{"source":43,"target":38},{"source":43,"target":48},{"source":43,"target":1},{"source":48,"target":38},{"source":2,"target":0},{"source":2,"target":49},{"source":49,"target":32},{"source":49,"target":50},{"source":49,"target":2},{"source":50,"target":32},{"source":3,"target":0},{"source":3,"target":51},{"source":3,"target":52},{"source":3,"target":53},{"source":3,"target":54},{"source":51,"target":2},{"source":51,"target":55},{"source":51,"target":3},{"source":55,"target":2},{"source":52,"target":56},{"source":52,"target":3},{"source":53,"target":57},{"source":53,"target":3},{"source":54,"target":32},{"source":54,"target":58},{"source":54,"target":3},{"source":58,"target":32},{"source":4,"target":0},{"source":4,"target":2},{"source":4,"target":59},{"source":4,"target":60},{"source":4,"target":61},{"source":59,"target":62},{"source":59,"target":4},{"source":60,"target":63},{"source":60,"target":4},{"source":61,"target":2},{"source":5,"target":0},{"source":5,"target":2},{"source":5,"target":64},{"source":5,"target":65},{"source":64,"target":2},{"source":64,"target":66},{"source":64,"target":5},{"source":66,"target":2},{"source":65,"target":2},{"source":6,"target":0},{"source":6,"target":5},{"source":6,"target":67},{"source":67,"target":5},{"source":7,"target":0},{"source":7,"target":12},{"source":7,"target":68},{"source":7,"target":69},{"source":7,"target":70},{"source":7,"target":71},{"source":7,"target":72},{"source":7,"target":73},{"source":7,"target":74},{"source":7,"target":75},{"source":68,"target":76},{"source":68,"target":7},{"source":69,"target":77},{"source":69,"target":7},{"source":70,"target":78},{"source":70,"target":7},{"source":71,"target":79},{"source":71,"target":7},{"source":72,"target":9},{"source":72,"target":80},{"source":72,"target":7},{"source":80,"target":9},{"source":73,"target":81},{"source":73,"target":7},{"source":74,"target":82},{"source":74,"target":7},{"source":75,"target":12},{"source":8,"target":0},{"source":8,"target":2},{"source":8,"target":83},{"source":8,"target":84},{"source":8,"target":85},{"source":8,"target":86},{"source":8,"target":87},{"source":8,"target":88},{"source":8,"target":89},{"source":83,"target":90},{"source":83,"target":8},{"source":84,"target":91},{"source":84,"target":8},{"source":85,"target":92},{"source":85,"target":8},{"source":86,"target":93},{"source":86,"target":8},{"source":87,"target":94},{"source":87,"target":8},{"source":88,"target":95},{"source":88,"target":8},{"source":89,"target":2},{"source":9,"target":0},{"source":10,"target":0},{"source":10,"target":9},{"source":10,"target":96},{"source":10,"target":97},{"source":96,"target":98},{"source":96,"target":10},{"source":97,"target":9},{"source":11,"target":0},{"source":11,"target":9},{"source":11,"target":99},{"source":11,"target":100},{"source":99,"target":9},{"source":99,"target":101},{"source":99,"target":11},{"source":101,"target":9},{"source":100,"target":9},{"source":12,"target":0},{"source":12,"target":2},{"source":12,"target":102},{"source":12,"target":103},{"source":102,"target":13},{"source":102,"target":104},{"source":102,"target":12},{"source":104,"target":13},{"source":103,"target":2},{"source":13,"target":0},{"source":13,"target":105},{"source":13,"target":106},{"source":13,"target":107},{"source":105,"target":108},{"source":105,"target":13},{"source":106,"target":109},{"source":106,"target":13},{"source":107,"target":110},{"source":107,"target":13},{"source":14,"target":0},{"source":14,"target":5},{"source":14,"target":111},{"source":14,"target":112},{"source":14,"target":113},{"source":111,"target":114},{"source":111,"target":14},{"source":112,"target":115},{"source":112,"target":14},{"source":113,"target":5},{"source":15,"target":0},{"source":15,"target":2},{"source":15,"target":116},{"source":15,"target":117},{"source":15,"target":118},{"source":15,"target":119},{"source":116,"target":16},{"source":116,"target":120},{"source":116,"target":15},{"source":120,"target":16},{"source":117,"target":121},{"source":117,"target":15},{"source":118,"target":122},{"source":118,"target":15},{"source":119,"target":2},{"source":16,"target":0},{"source":16,"target":123},{"source":16,"target":124},{"source":16,"target":125},{"source":16,"target":126},{"source":123,"target":127},{"source":123,"target":16},{"source":124,"target":2},{"source":124,"target":128},{"source":124,"target":16},{"source":128,"target":2},{"source":125,"target":129},{"source":125,"target":16},{"source":126,"target":32},{"source":126,"target":130},{"source":126,"target":16},{"source":130,"target":32},{"source":17,"target":0},{"source":17,"target":23},{"source":17,"target":131},{"source":17,"target":132},{"source":17,"target":133},{"source":17,"target":134},{"source":131,"target":135},{"source":131,"target":17},{"source":132,"target":136},{"source":132,"target":17},{"source":133,"target":137},{"source":133,"target":17},{"source":134,"target":23},{"source":18,"target":0},{"source":18,"target":24},{"source":18,"target":138},{"source":18,"target":139},{"source":18,"target":140},{"source":138,"target":141},{"source":138,"target":18},{"source":139,"target":142},{"source":139,"target":18},{"source":140,"target":24},{"source":19,"target":0},{"source":19,"target":9},{"source":19,"target":143},{"source":19,"target":144},{"source":143,"target":9},{"source":143,"target":145},{"source":143,"target":19},{"source":145,"target":9},{"source":144,"target":9},{"source":20,"target":0},{"source":20,"target":19},{"source":20,"target":146},{"source":146,"target":19},{"source":21,"target":0},{"source":21,"target":19},{"source":21,"target":147},{"source":147,"target":19},{"source":22,"target":0},{"source":22,"target":23},{"source":22,"target":148},{"source":22,"target":149},{"source":22,"target":150},{"source":22,"target":151},{"source":148,"target":152},{"source":148,"target":22},{"source":149,"target":153},{"source":149,"target":22},{"source":150,"target":154},{"source":150,"target":22},{"source":151,"target":23},{"source":23,"target":0},{"source":23,"target":24},{"source":23,"target":155},{"source":23,"target":156},{"source":23,"target":157},{"source":155,"target":158},{"source":155,"target":23},{"source":156,"target":159},{"source":156,"target":23},{"source":157,"target":24},{"source":24,"target":0},{"source":24,"target":2},{"source":24,"target":160},{"source":24,"target":161},{"source":24,"target":162},{"source":24,"target":163},{"source":24,"target":164},{"source":24,"target":165},{"source":24,"target":166},{"source":24,"target":167},{"source":160,"target":168},{"source":160,"target":24},{"source":161,"target":169},{"source":161,"target":24},{"source":162,"target":170},{"source":162,"target":24},{"source":163,"target":171},{"source":163,"target":24},{"source":164,"target":172},{"source":164,"target":24},{"source":165,"target":173},{"source":165,"target":24},{"source":166,"target":174},{"source":166,"target":24},{"source":167,"target":2},{"source":25,"target":0},{"source":25,"target":24},{"source":25,"target":175},{"source":25,"target":176},{"source":25,"target":177},{"source":25,"target":178},{"source":25,"target":179},{"source":25,"target":180},{"source":25,"target":181},{"source":175,"target":182},{"source":175,"target":25},{"source":176,"target":183},{"source":176,"target":25},{"source":177,"target":184},{"source":177,"target":25},{"source":178,"target":185},{"source":178,"target":25},{"source":179,"target":186},{"source":179,"target":25},{"source":180,"target":187},{"source":180,"target":25},{"source":181,"target":24},{"source":26,"target":0},{"source":26,"target":23},{"source":26,"target":188},{"source":26,"target":189},{"source":188,"target":190},{"source":188,"target":26},{"source":189,"target":23},{"source":27,"target":0},{"source":27,"target":2},{"source":27,"target":191},{"source":27,"target":192},{"source":27,"target":193},{"source":27,"target":194},{"source":27,"target":195},{"source":191,"target":196},{"source":191,"target":27},{"source":192,"target":197},{"source":192,"target":27},{"source":193,"target":198},{"source":193,"target":27},{"source":194,"target":199},{"source":194,"target":27},{"source":195,"target":2},{"source":28,"target":0},{"source":28,"target":2},{"source":28,"target":200},{"source":28,"target":201},{"source":200,"target":202},{"source":200,"target":28},{"source":201,"target":2},{"source":29,"target":0},{"source":29,"target":2},{"source":29,"target":203},{"source":29,"target":204},{"source":29,"target":205},{"source":29,"target":206},{"source":29,"target":207},{"source":29,"target":208},{"source":203,"target":209},{"source":203,"target":29},{"source":204,"target":210},{"source":204,"target":29},{"source":205,"target":211},{"source":205,"target":29},{"source":206,"target":212},{"source":206,"target":29},{"source":207,"target":213},{"source":207,"target":29},{"source":208,"target":2},{"source":30,"target":0},{"source":30,"target":24},{"source":30,"target":214},{"source":30,"target":215},{"source":30,"target":216},{"source":30,"target":217},{"source":30,"target":218},{"source":30,"target":219},{"source":214,"target":220},{"source":214,"target":30},{"source":215,"target":221},{"source":215,"target":30},{"source":216,"target":222},{"source":216,"target":30},{"source":217,"target":223},{"source":217,"target":30},{"source":218,"target":224},{"source":218,"target":30},{"source":219,"target":24},{"source":31,"target":0},{"source":31,"target":225},{"source":225,"target":226},{"source":225,"target":31},{"source":32,"target":0},{"source":33,"target":0},{"source":33,"target":32},{"source":33,"target":227},{"source":33,"target":228},{"source":33,"target":229},{"source":227,"target":230},{"source":227,"target":33},{"source":228,"target":231},{"source":228,"target":33},{"source":229,"target":32},{"source":34,"target":0},{"source":34,"target":32},{"source":34,"target":232},{"source":34,"target":233},{"source":232,"target":234},{"source":232,"target":34},{"source":233,"target":32},{"source":35,"target":0},{"source":35,"target":32},{"source":35,"target":235},{"source":235,"target":32},{"source":36,"target":0},{"source":36,"target":32},{"source":36,"target":236},{"source":36,"target":237},{"source":236,"target":238},{"source":236,"target":36},{"source":237,"target":32},{"source":37,"target":0},{"source":37,"target":239},{"source":37,"target":240},{"source":37,"target":241},{"source":239,"target":242},{"source":239,"target":37},{"source":240,"target":243},{"source":240,"target":37},{"source":241,"target":244},{"source":241,"target":37},{"source":38,"target":0},{"source":38,"target":245},{"source":38,"target":246},{"source":38,"target":247},{"source":245,"target":38},{"source":246,"target":38},{"source":247,"target":38}],"multigraph":true} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.