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="MiniJavaMetamodel" nsURI="miniJava/1.0" nsPrefix="miniJava"> <eClassifiers xsi:type="ecore:EClass" name="Program"> <eStructuralFeatures xsi:type="ecore:EReference" name="declarations" upperBound="-1" eType="#//Declaration" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="statements" upperBound="-1" eType="#//Statement" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Declaration"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="variableList" upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Statement" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="Empty" eSuperTypes="#//Statement"/> <eClassifiers xsi:type="ecore:EClass" name="Compound" eSuperTypes="#//Statement"> <eStructuralFeatures xsi:type="ecore:EReference" name="innerStatements" upperBound="-1" eType="#//Statement" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Read" eSuperTypes="#//Statement"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="lhs" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Write" eSuperTypes="#//Statement"> <eStructuralFeatures xsi:type="ecore:EReference" name="expression" eType="#//Expression" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="IfThenElse" eSuperTypes="#//Statement"> <eStructuralFeatures xsi:type="ecore:EReference" name="condition" eType="#//Condition" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="then" eType="#//Statement" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="else" eType="#//Statement" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Loop" eSuperTypes="#//Statement"> <eStructuralFeatures xsi:type="ecore:EReference" name="condition" eType="#//Condition" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="statement" eType="#//Statement" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Condition" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="LogicalCondition" eSuperTypes="#//Condition"> <eStructuralFeatures xsi:type="ecore:EReference" name="left" eType="#//Condition" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="right" eType="#//Condition" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="operator" eType="#//LogicalOperator"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="LogicalOperator"> <eLiterals name="AND" literal="&amp;&amp;"/> <eLiterals name="OR" value="1" literal="||"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ComparisonCondition" eSuperTypes="#//Condition"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="operator" eType="#//ComparisonOperator"/> <eStructuralFeatures xsi:type="ecore:EReference" name="left" eType="#//Expression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="right" eType="#//Expression" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="ComparisonOperator"> <eLiterals name="LESS_OR_EQUAL" literal="&lt;="/> <eLiterals name="GREATER_OR_EQUAL" value="1" literal=">="/> <eLiterals name="EQUAL" value="2" literal="=="/> <eLiterals name="NOT_EQUAL" value="3" literal="!="/> <eLiterals name="LESS" value="4" literal="&lt;"/> <eLiterals name="GREATER" value="5" literal=">"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="NotCondition" eSuperTypes="#//Condition"> <eStructuralFeatures xsi:type="ecore:EReference" name="condition" eType="#//Condition" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="GroupedCondition" eSuperTypes="#//Condition"> <eStructuralFeatures xsi:type="ecore:EReference" name="condition" eType="#//Condition" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Expression" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="Identifier" eSuperTypes="#//Expression"> <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="IntConstant" 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="SignedExpression" eSuperTypes="#//Expression"> <eStructuralFeatures xsi:type="ecore:EReference" name="expression" eType="#//Expression" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="BinaryExpression" eSuperTypes="#//Expression"> <eStructuralFeatures xsi:type="ecore:EReference" name="left" eType="#//Expression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="right" eType="#//Expression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="operator" eType="#//BinaryOperator"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="BinaryOperator"> <eLiterals name="PLUS" literal="+"/> <eLiterals name="MINUS" value="1" literal="-"/> <eLiterals name="MULTIPLY" value="2" literal="*"/> <eLiterals name="DIV" value="3" literal="/"/> <eLiterals name="MOD" value="4" literal="%"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="GroupedExpression" eSuperTypes="#//Expression"> <eStructuralFeatures xsi:type="ecore:EReference" name="expression" eType="#//Expression" containment="true"/> </eClassifiers> </ecore:EPackage>
github:ecore:/data/gssi/metamodel-dataset-analysis-toolchain/metamodels/MiniJavaMetaModel.ecore
ecore
MiniJavaMetamodel Program declarations statements Declaration variableList Statement Empty Compound innerStatements Read lhs Write expression IfThenElse condition then else Loop condition statement Condition LogicalCondition left right operator LogicalOperator AND && OR || ComparisonCondition operator left right ComparisonOperator LESS_OR_EQUAL <= GREATER_OR_EQUAL >= EQUAL == NOT_EQUAL != LESS < GREATER > NotCondition condition GroupedCondition condition Expression Identifier id IntConstant value SignedExpression expression BinaryExpression left right operator BinaryOperator PLUS + MINUS - MULTIPLY * DIV / MOD % GroupedExpression expression
null
{"directed":true,"nodes":[{"nsPrefix":"miniJava","nsURI":"miniJava/1.0","name":"MiniJavaMetamodel","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Program","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Declaration","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Statement","instanceClass":null,"abstract":true,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Empty","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Compound","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Read","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Write","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IfThenElse","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Loop","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Condition","instanceClass":null,"abstract":true,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LogicalCondition","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"LogicalOperator","instanceClass":null,"id":12,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ComparisonCondition","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"ComparisonOperator","instanceClass":null,"id":14,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NotCondition","instanceClass":null,"abstract":false,"id":15,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"GroupedCondition","instanceClass":null,"abstract":false,"id":16,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Expression","instanceClass":null,"abstract":true,"id":17,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Identifier","instanceClass":null,"abstract":false,"id":18,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IntConstant","instanceClass":null,"abstract":false,"id":19,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SignedExpression","instanceClass":null,"abstract":false,"id":20,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BinaryExpression","instanceClass":null,"abstract":false,"id":21,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"BinaryOperator","instanceClass":null,"id":22,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"GroupedExpression","instanceClass":null,"abstract":false,"id":23,"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":"declarations","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":"statements","changeable":true,"resolveProxies":true,"lowerBound":0,"id":25,"derived":false},{"id":26,"eClass":"EGenericType"},{"id":27,"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":"variableList","changeable":true,"lowerBound":0,"iD":false,"id":28,"derived":false},{"id":29,"eClass":"EGenericType"},{"id":30,"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":"innerStatements","changeable":true,"resolveProxies":true,"lowerBound":0,"id":31,"derived":false},{"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":"lhs","changeable":true,"lowerBound":1,"iD":false,"id":34,"derived":false},{"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":"expression","changeable":true,"resolveProxies":true,"lowerBound":0,"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":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"condition","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":"then","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":"else","changeable":true,"resolveProxies":true,"lowerBound":0,"id":42,"derived":false},{"id":43,"eClass":"EGenericType"},{"id":44,"eClass":"EGenericType"},{"id":45,"eClass":"EGenericType"},{"id":46,"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":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":"statement","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":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"left","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":"right","changeable":true,"resolveProxies":true,"lowerBound":0,"id":53,"derived":false},{"ordered":true,"upperBound":1,"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":54,"derived":false},{"id":55,"eClass":"EGenericType"},{"id":56,"eClass":"EGenericType"},{"id":57,"eClass":"EGenericType"},{"id":58,"eClass":"EGenericType"},{"name":"AND","id":59,"value":0,"literal":"&&","eClass":"EEnumLiteral"},{"name":"OR","id":60,"value":1,"literal":"||","eClass":"EEnumLiteral"},{"ordered":true,"upperBound":1,"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":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":"left","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":"right","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"},{"name":"LESS_OR_EQUAL","id":68,"value":0,"literal":"<=","eClass":"EEnumLiteral"},{"name":"GREATER_OR_EQUAL","id":69,"value":1,"literal":">=","eClass":"EEnumLiteral"},{"name":"EQUAL","id":70,"value":2,"literal":"==","eClass":"EEnumLiteral"},{"name":"NOT_EQUAL","id":71,"value":3,"literal":"!=","eClass":"EEnumLiteral"},{"name":"LESS","id":72,"value":4,"literal":"<","eClass":"EEnumLiteral"},{"name":"GREATER","id":73,"value":5,"literal":">","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":"condition","changeable":true,"resolveProxies":true,"lowerBound":0,"id":74,"derived":false},{"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":true,"unsettable":false,"transient":false,"unique":true,"name":"condition","changeable":true,"resolveProxies":true,"lowerBound":0,"id":77,"derived":false},{"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":"id","changeable":true,"lowerBound":0,"iD":false,"id":80,"derived":false},{"id":81,"eClass":"EGenericType"},{"id":82,"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":83,"derived":false},{"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":"expression","changeable":true,"resolveProxies":true,"lowerBound":0,"id":86,"derived":false},{"id":87,"eClass":"EGenericType"},{"id":88,"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":"left","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":true,"unsettable":false,"transient":false,"unique":true,"name":"right","changeable":true,"resolveProxies":true,"lowerBound":0,"id":90,"derived":false},{"ordered":true,"upperBound":1,"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":91,"derived":false},{"id":92,"eClass":"EGenericType"},{"id":93,"eClass":"EGenericType"},{"id":94,"eClass":"EGenericType"},{"id":95,"eClass":"EGenericType"},{"name":"PLUS","id":96,"value":0,"literal":"+","eClass":"EEnumLiteral"},{"name":"MINUS","id":97,"value":1,"literal":"-","eClass":"EEnumLiteral"},{"name":"MULTIPLY","id":98,"value":2,"literal":"*","eClass":"EEnumLiteral"},{"name":"DIV","id":99,"value":3,"literal":"/","eClass":"EEnumLiteral"},{"name":"MOD","id":100,"value":4,"literal":"%","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":"expression","changeable":true,"resolveProxies":true,"lowerBound":0,"id":101,"derived":false},{"id":102,"eClass":"EGenericType"},{"id":103,"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":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":3},{"source":25,"target":27},{"source":25,"target":1},{"source":27,"target":3},{"source":2,"target":0},{"source":2,"target":28},{"source":28,"target":29},{"source":28,"target":2},{"source":3,"target":0},{"source":4,"target":0},{"source":4,"target":3},{"source":4,"target":30},{"source":30,"target":3},{"source":5,"target":0},{"source":5,"target":3},{"source":5,"target":31},{"source":5,"target":32},{"source":31,"target":3},{"source":31,"target":33},{"source":31,"target":5},{"source":33,"target":3},{"source":32,"target":3},{"source":6,"target":0},{"source":6,"target":3},{"source":6,"target":34},{"source":6,"target":35},{"source":34,"target":36},{"source":34,"target":6},{"source":35,"target":3},{"source":7,"target":0},{"source":7,"target":3},{"source":7,"target":37},{"source":7,"target":38},{"source":37,"target":17},{"source":37,"target":39},{"source":37,"target":7},{"source":39,"target":17},{"source":38,"target":3},{"source":8,"target":0},{"source":8,"target":3},{"source":8,"target":40},{"source":8,"target":41},{"source":8,"target":42},{"source":8,"target":43},{"source":40,"target":10},{"source":40,"target":44},{"source":40,"target":8},{"source":44,"target":10},{"source":41,"target":3},{"source":41,"target":45},{"source":41,"target":8},{"source":45,"target":3},{"source":42,"target":3},{"source":42,"target":46},{"source":42,"target":8},{"source":46,"target":3},{"source":43,"target":3},{"source":9,"target":0},{"source":9,"target":3},{"source":9,"target":47},{"source":9,"target":48},{"source":9,"target":49},{"source":47,"target":10},{"source":47,"target":50},{"source":47,"target":9},{"source":50,"target":10},{"source":48,"target":3},{"source":48,"target":51},{"source":48,"target":9},{"source":51,"target":3},{"source":49,"target":3},{"source":10,"target":0},{"source":11,"target":0},{"source":11,"target":10},{"source":11,"target":52},{"source":11,"target":53},{"source":11,"target":54},{"source":11,"target":55},{"source":52,"target":10},{"source":52,"target":56},{"source":52,"target":11},{"source":56,"target":10},{"source":53,"target":10},{"source":53,"target":57},{"source":53,"target":11},{"source":57,"target":10},{"source":54,"target":12},{"source":54,"target":58},{"source":54,"target":11},{"source":58,"target":12},{"source":55,"target":10},{"source":12,"target":0},{"source":12,"target":59},{"source":12,"target":60},{"source":59,"target":12},{"source":60,"target":12},{"source":13,"target":0},{"source":13,"target":10},{"source":13,"target":61},{"source":13,"target":62},{"source":13,"target":63},{"source":13,"target":64},{"source":61,"target":14},{"source":61,"target":65},{"source":61,"target":13},{"source":65,"target":14},{"source":62,"target":17},{"source":62,"target":66},{"source":62,"target":13},{"source":66,"target":17},{"source":63,"target":17},{"source":63,"target":67},{"source":63,"target":13},{"source":67,"target":17},{"source":64,"target":10},{"source":14,"target":0},{"source":14,"target":68},{"source":14,"target":69},{"source":14,"target":70},{"source":14,"target":71},{"source":14,"target":72},{"source":14,"target":73},{"source":68,"target":14},{"source":69,"target":14},{"source":70,"target":14},{"source":71,"target":14},{"source":72,"target":14},{"source":73,"target":14},{"source":15,"target":0},{"source":15,"target":10},{"source":15,"target":74},{"source":15,"target":75},{"source":74,"target":10},{"source":74,"target":76},{"source":74,"target":15},{"source":76,"target":10},{"source":75,"target":10},{"source":16,"target":0},{"source":16,"target":10},{"source":16,"target":77},{"source":16,"target":78},{"source":77,"target":10},{"source":77,"target":79},{"source":77,"target":16},{"source":79,"target":10},{"source":78,"target":10},{"source":17,"target":0},{"source":18,"target":0},{"source":18,"target":17},{"source":18,"target":80},{"source":18,"target":81},{"source":80,"target":82},{"source":80,"target":18},{"source":81,"target":17},{"source":19,"target":0},{"source":19,"target":17},{"source":19,"target":83},{"source":19,"target":84},{"source":83,"target":85},{"source":83,"target":19},{"source":84,"target":17},{"source":20,"target":0},{"source":20,"target":17},{"source":20,"target":86},{"source":20,"target":87},{"source":86,"target":17},{"source":86,"target":88},{"source":86,"target":20},{"source":88,"target":17},{"source":87,"target":17},{"source":21,"target":0},{"source":21,"target":17},{"source":21,"target":89},{"source":21,"target":90},{"source":21,"target":91},{"source":21,"target":92},{"source":89,"target":17},{"source":89,"target":93},{"source":89,"target":21},{"source":93,"target":17},{"source":90,"target":17},{"source":90,"target":94},{"source":90,"target":21},{"source":94,"target":17},{"source":91,"target":22},{"source":91,"target":95},{"source":91,"target":21},{"source":95,"target":22},{"source":92,"target":17},{"source":22,"target":0},{"source":22,"target":96},{"source":22,"target":97},{"source":22,"target":98},{"source":22,"target":99},{"source":22,"target":100},{"source":96,"target":22},{"source":97,"target":22},{"source":98,"target":22},{"source":99,"target":22},{"source":100,"target":22},{"source":23,"target":0},{"source":23,"target":17},{"source":23,"target":101},{"source":23,"target":102},{"source":101,"target":17},{"source":101,"target":103},{"source":101,"target":23},{"source":103,"target":17},{"source":102,"target":17}],"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="Bug425492" nsURI="platform:/plugin/org.eclipse.m2m.atl.emftvm.tests/test-data/Regression/Bug425492.ecore" nsPrefix="Bug425492"> <eClassifiers xsi:type="ecore:EClass" name="Dummy cloned"/> <eClassifiers xsi:type="ecore:EClass" name="Dummy cloned"/> <eClassifiers xsi:type="ecore:EClass" name="Dummy cloned"/> </ecore:EPackage>
github:ecore:/data/atlanmod/EMFTVM-D/tests/org.eclipse.m2m.atl.emftvm.tests/test-data/Regression/Bug425492-out.ecore
ecore
Bug425492 Dummy cloned Dummy cloned Dummy cloned
null
{"directed":true,"nodes":[{"nsPrefix":"Bug425492","nsURI":"platform:/plugin/org.eclipse.m2m.atl.emftvm.tests/test-data/Regression/Bug425492.ecore","name":"Bug425492","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Dummy cloned","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Dummy cloned","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Dummy cloned","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":1,"target":0},{"source":2,"target":0},{"source":3,"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="interface" nsURI="uuid://interface" nsPrefix="interface"> <eClassifiers xsi:type="ecore:EClass" name="IInterface" abstract="true" interface="true"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="test" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> </ecore:EPackage>
github:ecore:/data/krisboutthat5/cdo-light/cdo/org.eclipse.emf.cdo.tests/model/interface.ecore
ecore
interface IInterface test
null
{"directed":true,"nodes":[{"nsPrefix":"interface","nsURI":"uuid://interface","name":"interface","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IInterface","instanceClass":null,"abstract":true,"id":1,"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":"test","changeable":true,"lowerBound":0,"iD":false,"id":2,"derived":false},{"id":3,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":1,"target":0},{"source":1,"target":2},{"source":2,"target":3},{"source":2,"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="ptnet" nsURI="http:///ptnet.ecore" nsPrefix="ptnet"> <eClassifiers xsi:type="ecore:EClass" name="PTMarking" eSuperTypes="#//Annotation"> <eAnnotations source="http://www.pnml.org/models/OCL"> <details key="markingValueRange" value="self.text >= 0"/> </eAnnotations> <eAnnotations source="http://www.eclipse.org/emf/2002/Ecore"> <details key="constraints" value="markingValueRange"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="text" lowerBound="1" eType="#//Natural"/> <eStructuralFeatures xsi:type="ecore:EReference" name="containerPlace" eType="#//Place" eOpposite="#//Place/initialMarking"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="PTArcAnnotation" eSuperTypes="#//Annotation"> <eAnnotations source="http://www.pnml.org/models/OCL"> <details key="inscriptionValueRange" value="self.text > 0"/> </eAnnotations> <eAnnotations source="http://www.eclipse.org/emf/2002/Ecore"> <details key="constraints" value="inscriptionValueRange"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="text" lowerBound="1" eType="#//PositiveInteger"/> <eStructuralFeatures xsi:type="ecore:EReference" name="containerArc" eType="#//Arc" eOpposite="#//Arc/inscription"/> </eClassifiers> <eClassifiers xsi:type="ecore:EDataType" name="PositiveInteger" instanceClassName="java.lang.Integer"/> <eClassifiers xsi:type="ecore:EDataType" name="Natural" instanceClassName="java.lang.Integer"/> <eClassifiers xsi:type="ecore:EClass" name="PetriNetDoc"> <eStructuralFeatures xsi:type="ecore:EReference" name="nets" ordered="false" lowerBound="1" upperBound="-1" eType="#//PetriNet" containment="true" eOpposite="#//PetriNet/containerPetriNetDoc"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="xmlns" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" changeable="false" defaultValueLiteral="http://www.pnml.org/version-2009/grammar/pnml"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="PetriNet"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="id" ordered="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" defaultValueLiteral="" iD="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="type" ordered="false" lowerBound="1" eType="#//PNType" defaultValueLiteral=""/> <eStructuralFeatures xsi:type="ecore:EReference" name="pages" ordered="false" lowerBound="1" upperBound="-1" eType="#//Page" containment="true" eOpposite="#//Page/containerPetriNet"/> <eStructuralFeatures xsi:type="ecore:EReference" name="name" ordered="false" eType="#//Name" containment="true" eOpposite="#//Name/containerNamePetriNet"/> <eStructuralFeatures xsi:type="ecore:EReference" name="toolspecifics" ordered="false" upperBound="-1" eType="#//ToolInfo" containment="true" eOpposite="#//ToolInfo/containerPetriNet"/> <eStructuralFeatures xsi:type="ecore:EReference" name="containerPetriNetDoc" ordered="false" eType="#//PetriNetDoc" eOpposite="#//PetriNetDoc/nets"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="PNType"> <eLiterals name="PTNET" value="1" literal="http://www.pnml.org/version-2009/grammar/ptnet"/> <eLiterals name="COREMODEL" literal="http://www.pnml.org/version-2009/grammar/pnmlcoremodel"/> <eLiterals name="SYMNET" value="2" literal="http://www.pnml.org/version-2009/grammar/snnet"/> <eLiterals name="HLPN" value="3" literal="http://www.pnml.org/version-2009/grammar/highlevelnet"/> <eLiterals name="GSPN" value="4"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Page" eSuperTypes="#//PnObject"> <eStructuralFeatures xsi:type="ecore:EReference" name="objects" ordered="false" upperBound="-1" eType="#//PnObject" containment="true" eOpposite="#//PnObject/containerPage"/> <eStructuralFeatures xsi:type="ecore:EReference" name="containerPetriNet" ordered="false" eType="#//PetriNet" eOpposite="#//PetriNet/pages"/> <eStructuralFeatures xsi:type="ecore:EReference" name="nodegraphics" eType="#//NodeGraphics" containment="true" eOpposite="#//NodeGraphics/containerPage"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="PnObject" abstract="true"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="id" ordered="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" iD="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="name" ordered="false" eType="#//Name" containment="true" eOpposite="#//Name/containerNamePnObject"/> <eStructuralFeatures xsi:type="ecore:EReference" name="toolspecifics" ordered="false" upperBound="-1" eType="#//ToolInfo" containment="true" eOpposite="#//ToolInfo/containerPnObject"/> <eStructuralFeatures xsi:type="ecore:EReference" name="containerPage" ordered="false" eType="#//Page" eOpposite="#//Page/objects"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Name" eSuperTypes="#//Annotation"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="text" ordered="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="containerNamePetriNet" eType="#//PetriNet" eOpposite="#//PetriNet/name"/> <eStructuralFeatures xsi:type="ecore:EReference" name="containerNamePnObject" eType="#//PnObject" eOpposite="#//PnObject/name"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ToolInfo"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="tool" ordered="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="version" ordered="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="formattedXMLBuffer" ordered="false" eType="#//LongString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="toolInfoGrammarURI" ordered="false" eType="#//URI"/> <eStructuralFeatures xsi:type="ecore:EReference" name="containerPetriNet" ordered="false" eType="#//PetriNet" eOpposite="#//PetriNet/toolspecifics"/> <eStructuralFeatures xsi:type="ecore:EReference" name="containerPnObject" ordered="false" eType="#//PnObject" eOpposite="#//PnObject/toolspecifics"/> <eStructuralFeatures xsi:type="ecore:EReference" name="containerLabel" ordered="false" eType="#//Label" eOpposite="#//Label/toolspecifics"/> <eStructuralFeatures xsi:type="ecore:EReference" name="toolInfoModel" eType="#//AnyObject" containment="true" eOpposite="#//AnyObject/containerToolInfo"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Label" abstract="true"> <eStructuralFeatures xsi:type="ecore:EReference" name="toolspecifics" ordered="false" upperBound="-1" eType="#//ToolInfo" containment="true" eOpposite="#//ToolInfo/containerLabel"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="NodeGraphics" eSuperTypes="#//Graphics"> <eStructuralFeatures xsi:type="ecore:EReference" name="position" ordered="false" eType="#//Position" containment="true" eOpposite="#//Position/containerPNodeGraphics"/> <eStructuralFeatures xsi:type="ecore:EReference" name="dimension" ordered="false" eType="#//Dimension" containment="true" eOpposite="#//Dimension/containerDNodeGraphics"/> <eStructuralFeatures xsi:type="ecore:EReference" name="fill" ordered="false" eType="#//Fill" containment="true" eOpposite="#//Fill/containerNodeGraphics"/> <eStructuralFeatures xsi:type="ecore:EReference" name="line" ordered="false" eType="#//Line" containment="true" eOpposite="#//Line/containerNodeGraphics"/> <eStructuralFeatures xsi:type="ecore:EReference" name="containerNode" eType="#//Node" eOpposite="#//Node/nodegraphics"/> <eStructuralFeatures xsi:type="ecore:EReference" name="containerPage" eType="#//Page" eOpposite="#//Page/nodegraphics"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Graphics" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="Coordinate" abstract="true"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="x" ordered="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="y" ordered="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Position" eSuperTypes="#//Coordinate"> <eStructuralFeatures xsi:type="ecore:EReference" name="containerArcGraphics" ordered="false" eType="#//ArcGraphics" eOpposite="#//ArcGraphics/positions"/> <eStructuralFeatures xsi:type="ecore:EReference" name="containerPNodeGraphics" eType="#//NodeGraphics" eOpposite="#//NodeGraphics/position"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Offset" eSuperTypes="#//Coordinate"> <eStructuralFeatures xsi:type="ecore:EReference" name="containerAnnotationGraphics" ordered="false" eType="#//AnnotationGraphics" eOpposite="#//AnnotationGraphics/offset"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Dimension" eSuperTypes="#//Coordinate"> <eStructuralFeatures xsi:type="ecore:EReference" name="containerDNodeGraphics" ordered="false" eType="#//NodeGraphics" eOpposite="#//NodeGraphics/dimension"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="AnnotationGraphics" eSuperTypes="#//Graphics"> <eStructuralFeatures xsi:type="ecore:EReference" name="offset" ordered="false" eType="#//Offset" containment="true" eOpposite="#//Offset/containerAnnotationGraphics"/> <eStructuralFeatures xsi:type="ecore:EReference" name="fill" ordered="false" eType="#//Fill" containment="true" eOpposite="#//Fill/containerAnnotationGraphics"/> <eStructuralFeatures xsi:type="ecore:EReference" name="line" ordered="false" eType="#//Line" containment="true" eOpposite="#//Line/containerAnnotationGraphics"/> <eStructuralFeatures xsi:type="ecore:EReference" name="font" ordered="false" eType="#//Font" containment="true" eOpposite="#//Font/containerAnnotationGraphics"/> <eStructuralFeatures xsi:type="ecore:EReference" name="containerAnnotation" eType="#//Annotation" eOpposite="#//Annotation/annotationgraphics"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Fill"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="color" ordered="false" eType="#//CSS2Color" defaultValueLiteral="BLACK"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="gradientcolor" ordered="false" eType="#//CSS2Color" defaultValueLiteral="BLACK"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="gradientrotation" ordered="false" eType="#//Gradient"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="image" ordered="false" eType="#//URI"/> <eStructuralFeatures xsi:type="ecore:EReference" name="containerNodeGraphics" ordered="false" eType="#//NodeGraphics" eOpposite="#//NodeGraphics/fill"/> <eStructuralFeatures xsi:type="ecore:EReference" name="containerAnnotationGraphics" ordered="false" eType="#//AnnotationGraphics" eOpposite="#//AnnotationGraphics/fill"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="CSS2Color"> <eLiterals name="AQUA" literal="aqua"/> <eLiterals name="BLACK" value="1" literal="black"/> <eLiterals name="BLUE" value="2" literal="blue"/> <eLiterals name="FUCHSIA" value="3" literal="fuchsia"/> <eLiterals name="GRAY" value="4" literal="gray"/> <eLiterals name="GREEN" value="5" literal="green"/> <eLiterals name="LIME" value="6" literal="lime"/> <eLiterals name="MAROON" value="7" literal="maroon"/> <eLiterals name="NAVY" value="8" literal="navy"/> <eLiterals name="OLIVE" value="9" literal="olive"/> <eLiterals name="ORANGE" value="10" literal="orange"/> <eLiterals name="PURPLE" value="11" literal="purple"/> <eLiterals name="RED" value="12" literal="red"/> <eLiterals name="SILVER" value="13" literal="silver"/> <eLiterals name="TEAL" value="14" literal="teal"/> <eLiterals name="WHITE" value="15" literal="white"/> <eLiterals name="YELLOW" value="16" literal="yellow"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="Gradient"> <eLiterals name="HORIZONTAL" literal="horizontal"/> <eLiterals name="VERTICAL" value="1" literal="vertical"/> <eLiterals name="DIAGONAL" value="2" literal="diagonal"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Line"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="color" ordered="false" eType="#//CSS2Color" defaultValueLiteral="BLACK"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="shape" ordered="false" eType="#//LineShape" defaultValueLiteral="LINE"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="width" ordered="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"/> <eStructuralFeatures xsi:type="ecore:EReference" name="containerNodeGraphics" ordered="false" eType="#//NodeGraphics" eOpposite="#//NodeGraphics/line"/> <eStructuralFeatures xsi:type="ecore:EReference" name="containerArcGraphics" ordered="false" eType="#//ArcGraphics" eOpposite="#//ArcGraphics/line"/> <eStructuralFeatures xsi:type="ecore:EReference" name="containerAnnotationGraphics" ordered="false" eType="#//AnnotationGraphics" eOpposite="#//AnnotationGraphics/line"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="style" eType="#//LineStyle"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="LineShape"> <eLiterals name="LINE" literal="line"/> <eLiterals name="CURVE" value="1" literal="curve"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ArcGraphics" eSuperTypes="#//Graphics"> <eStructuralFeatures xsi:type="ecore:EReference" name="positions" upperBound="-1" eType="#//Position" containment="true" eOpposite="#//Position/containerArcGraphics"/> <eStructuralFeatures xsi:type="ecore:EReference" name="line" ordered="false" eType="#//Line" containment="true" eOpposite="#//Line/containerArcGraphics"/> <eStructuralFeatures xsi:type="ecore:EReference" name="containerArc" eType="#//Arc" eOpposite="#//Arc/arcgraphics"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Arc" eSuperTypes="#//PnObject"> <eAnnotations source="http://www.pnml.org/models/OCL"> <details key="samePageSourceTarget" value="self.source.containerPage = self.target.containerPage"/> <details key="differentSourceTarget" value="(self.source.oclIsKindOf(PlaceNode) and self.target.oclIsKindOf(TransitionNode)) or (self.source.oclIsKindOf(TransitionNode) and self.target.oclIsKindOf(PlaceNode))"/> </eAnnotations> <eAnnotations source="http://www.eclipse.org/emf/2002/Ecore"> <details key="constraints" value="samePageSourceTarget differentSourceTarget"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="source" ordered="false" lowerBound="1" eType="#//Node" eOpposite="#//Node/OutArcs"/> <eStructuralFeatures xsi:type="ecore:EReference" name="target" ordered="false" lowerBound="1" eType="#//Node" eOpposite="#//Node/InArcs"/> <eStructuralFeatures xsi:type="ecore:EReference" name="arcgraphics" ordered="false" eType="#//ArcGraphics" containment="true" eOpposite="#//ArcGraphics/containerArc"/> <eStructuralFeatures xsi:type="ecore:EReference" name="inscription" eType="#//PTArcAnnotation" containment="true" eOpposite="#//PTArcAnnotation/containerArc"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Node" abstract="true" eSuperTypes="#//PnObject"> <eStructuralFeatures xsi:type="ecore:EReference" name="InArcs" ordered="false" upperBound="-1" eType="#//Arc" changeable="false" eOpposite="#//Arc/target"/> <eStructuralFeatures xsi:type="ecore:EReference" name="OutArcs" ordered="false" upperBound="-1" eType="#//Arc" changeable="false" eOpposite="#//Arc/source"/> <eStructuralFeatures xsi:type="ecore:EReference" name="nodegraphics" eType="#//NodeGraphics" containment="true" eOpposite="#//NodeGraphics/containerNode"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Font"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="align" ordered="false" eType="#//FontAlign" defaultValueLiteral="LEFT"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="decoration" ordered="false" eType="#//FontDecoration" defaultValueLiteral="UNDERLINE"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="family" ordered="false" eType="#//CSS2FontFamily" defaultValueLiteral="VERDANA"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="rotation" ordered="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBigDecimal"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="size" ordered="false" eType="#//CSS2FontSize" defaultValueLiteral="SMALL"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="style" ordered="false" eType="#//CSS2FontStyle" defaultValueLiteral="NORMAL"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="weight" ordered="false" eType="#//CSS2FontWeight"/> <eStructuralFeatures xsi:type="ecore:EReference" name="containerAnnotationGraphics" ordered="false" eType="#//AnnotationGraphics" eOpposite="#//AnnotationGraphics/font"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="FontAlign"> <eLiterals name="LEFT" literal="left"/> <eLiterals name="CENTER" value="1" literal="center"/> <eLiterals name="RIGHT" value="2" literal="right"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="FontDecoration"> <eLiterals name="UNDERLINE" literal="underline"/> <eLiterals name="OVERLINE" value="1" literal="overline"/> <eLiterals name="LINETHROUGH" value="2" literal="linethrough"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="CSS2FontFamily"> <eLiterals name="VERDANA" literal="verdana"/> <eLiterals name="ARIAL" value="1" literal="arial"/> <eLiterals name="TIMES" value="2" literal="times"/> <eLiterals name="GEORGIA" value="3" literal="georgia"/> <eLiterals name="TREBUCHET" value="4" literal="trebuchet"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="CSS2FontSize"> <eLiterals name="XXSMALL" literal="xxsmall"/> <eLiterals name="XSMALL" value="1" literal="xsmall"/> <eLiterals name="SMALL" value="2" literal="small"/> <eLiterals name="MEDIUM" value="3" literal="medium"/> <eLiterals name="LARGE" value="4" literal="large"/> <eLiterals name="XLARGE" value="5" literal="xlarge"/> <eLiterals name="XXLARGE" value="6" literal="xxlarge"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="CSS2FontStyle"> <eLiterals name="NORMAL" literal="normal"/> <eLiterals name="ITALIC" value="1" literal="italic"/> <eLiterals name="OBLIQUE" value="2" literal="oblique"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="CSS2FontWeight"> <eLiterals name="NORMAL" literal="normal"/> <eLiterals name="BOLD" value="1" literal="bold"/> <eLiterals name="BOLDER" value="2" literal="bolder"/> <eLiterals name="LIGHTER" value="3" literal="lighter"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="PlaceNode" abstract="true" eSuperTypes="#//Node"> <eStructuralFeatures xsi:type="ecore:EReference" name="referencingPlaces" upperBound="-1" eType="#//RefPlace" changeable="false" eOpposite="#//RefPlace/ref"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="TransitionNode" abstract="true" eSuperTypes="#//Node"> <eStructuralFeatures xsi:type="ecore:EReference" name="referencingTransitions" upperBound="-1" eType="#//RefTransition" changeable="false" eOpposite="#//RefTransition/ref"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Place" eSuperTypes="#//PlaceNode"> <eStructuralFeatures xsi:type="ecore:EReference" name="initialMarking" eType="#//PTMarking" containment="true" eOpposite="#//PTMarking/containerPlace"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="RefTransition" eSuperTypes="#//TransitionNode"> <eStructuralFeatures xsi:type="ecore:EReference" name="ref" ordered="false" lowerBound="1" eType="#//TransitionNode" eOpposite="#//TransitionNode/referencingTransitions"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Transition" eSuperTypes="#//TransitionNode"/> <eClassifiers xsi:type="ecore:EClass" name="RefPlace" eSuperTypes="#//PlaceNode"> <eStructuralFeatures xsi:type="ecore:EReference" name="ref" ordered="false" lowerBound="1" eType="#//PlaceNode" eOpposite="#//PlaceNode/referencingPlaces"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Attribute" abstract="true" eSuperTypes="#//Label"/> <eClassifiers xsi:type="ecore:EEnum" name="LineStyle"> <eLiterals name="SOLID" literal="solid"/> <eLiterals name="DASH" value="1" literal="dash"/> <eLiterals name="DOT" value="2" literal="dot"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Annotation" abstract="true" eSuperTypes="#//Label"> <eStructuralFeatures xsi:type="ecore:EReference" name="annotationgraphics" ordered="false" eType="#//AnnotationGraphics" containment="true" eOpposite="#//AnnotationGraphics/containerAnnotation"/> </eClassifiers> <eClassifiers xsi:type="ecore:EDataType" name="URI" instanceClassName="java.net.URI"/> <eClassifiers xsi:type="ecore:EDataType" name="LongString" instanceClassName="java.lang.StringBuffer"/> <eClassifiers xsi:type="ecore:EClass" name="AnyObject" abstract="true"> <eStructuralFeatures xsi:type="ecore:EReference" name="containerToolInfo" eType="#//ToolInfo" changeable="false" eOpposite="#//ToolInfo/toolInfoModel"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="GSPNTransition" eSuperTypes="#//Transition"> <eStructuralFeatures xsi:type="ecore:EReference" name="Guard" eType="#//LogicalExpression" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="GSPNTransitionType"> <eLiterals name="immediate"/> <eLiterals name="timed" value="1"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="GSPNArcType"> <eLiterals name="normal"/> <eLiterals name="inhibitor" value="1"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="GSPNArc" eSuperTypes="#//Arc"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="type" lowerBound="1" eType="#//GSPNArcType" defaultValueLiteral="normal"/> <eStructuralFeatures xsi:type="ecore:EReference" name="MultiplicityFunction" eType="#//ArithmeticExpression" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="GSPNImmediateTransition" eSuperTypes="#//GSPNTransition"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="Priority" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt" defaultValueLiteral="1"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="Weight" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble" defaultValueLiteral="1"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="GSPNTimedTransition" eSuperTypes="#//GSPNTransition"> <eStructuralFeatures xsi:type="ecore:EReference" name="Distribution" lowerBound="1" eType="#//Distribution" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Distribution" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="Deterministic" eSuperTypes="#//Distribution"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="Value" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Exponential" eSuperTypes="#//Distribution"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="Rate" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Gaussian" eSuperTypes="#//Distribution"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="Mean" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="Variance" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Uniform" eSuperTypes="#//Distribution"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="Lower" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="Upper" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Gamma" eSuperTypes="#//Distribution"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="Alpha" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="Beta" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Weibull" eSuperTypes="#//Distribution"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="Alpha" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="Beta" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="EvaluationList"> <eStructuralFeatures xsi:type="ecore:EReference" name="studies" lowerBound="1" upperBound="-1" eType="#//Study" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="measures" lowerBound="1" upperBound="-1" eType="#//Measure" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Study"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" iD="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="vars" upperBound="-1" eType="#//VariableValues" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Measure"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" iD="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="rewardFunction" lowerBound="1" eType="#//ArithmeticExpression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="evaluationType" lowerBound="1" eType="#//EvaluationType" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Expression" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="ValueExpression" eSuperTypes="#//ArithmeticExpression"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="value" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="MarkingExpression" eSuperTypes="#//ArithmeticExpression"> <eStructuralFeatures xsi:type="ecore:EReference" name="place" eType="#//PlaceNode"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ArithmeticExpression" abstract="true" eSuperTypes="#//Expression"/> <eClassifiers xsi:type="ecore:EClass" name="ArithmeticBinaryOperator" abstract="true" eSuperTypes="#//ArithmeticExpression"> <eStructuralFeatures xsi:type="ecore:EReference" name="expression1" lowerBound="1" eType="#//ArithmeticExpression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="expression2" lowerBound="1" eType="#//ArithmeticExpression" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="OpSum" eSuperTypes="#//ArithmeticBinaryOperator"/> <eClassifiers xsi:type="ecore:EClass" name="OpMinus" eSuperTypes="#//ArithmeticBinaryOperator"/> <eClassifiers xsi:type="ecore:EClass" name="OpMultiply" eSuperTypes="#//ArithmeticBinaryOperator"/> <eClassifiers xsi:type="ecore:EClass" name="OpDivide" eSuperTypes="#//ArithmeticBinaryOperator"/> <eClassifiers xsi:type="ecore:EClass" name="IfThenElse" eSuperTypes="#//ArithmeticExpression"> <eStructuralFeatures xsi:type="ecore:EReference" name="condition" lowerBound="1" eType="#//LogicalExpression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="ifTrue" lowerBound="1" eType="#//ArithmeticExpression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="ifFalse" lowerBound="1" eType="#//ArithmeticExpression" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="LogicalExpression" abstract="true" eSuperTypes="#//Expression"/> <eClassifiers xsi:type="ecore:EClass" name="OpTrue" eSuperTypes="#//LogicalExpression"/> <eClassifiers xsi:type="ecore:EClass" name="OpFalse" eSuperTypes="#//LogicalExpression"/> <eClassifiers xsi:type="ecore:EClass" name="ComparisonOperator" abstract="true" eSuperTypes="#//LogicalExpression"> <eStructuralFeatures xsi:type="ecore:EReference" name="expression1" lowerBound="1" eType="#//ArithmeticExpression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="expression2" lowerBound="1" eType="#//ArithmeticExpression" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="BooleanExpression" eSuperTypes="#//LogicalExpression"> <eStructuralFeatures xsi:type="ecore:EReference" name="expression1" lowerBound="1" eType="#//LogicalExpression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="expression2" lowerBound="1" eType="#//LogicalExpression" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="OpEqual" eSuperTypes="#//ComparisonOperator"/> <eClassifiers xsi:type="ecore:EClass" name="OpGreater" eSuperTypes="#//ComparisonOperator"/> <eClassifiers xsi:type="ecore:EClass" name="OpLess" eSuperTypes="#//ComparisonOperator"/> <eClassifiers xsi:type="ecore:EClass" name="OpGreaterEqual" eSuperTypes="#//ComparisonOperator"/> <eClassifiers xsi:type="ecore:EClass" name="OpLessEqual" eSuperTypes="#//ComparisonOperator"/> <eClassifiers xsi:type="ecore:EClass" name="OpNot" eSuperTypes="#//LogicalExpression"> <eStructuralFeatures xsi:type="ecore:EReference" name="expression" lowerBound="1" eType="#//LogicalExpression" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="OpAnd" eSuperTypes="#//BooleanExpression"/> <eClassifiers xsi:type="ecore:EClass" name="OpOr" eSuperTypes="#//BooleanExpression"/> <eClassifiers xsi:type="ecore:EClass" name="EvaluationType" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="SteadyState" eSuperTypes="#//EvaluationType"/> <eClassifiers xsi:type="ecore:EClass" name="InstantOfTime" eSuperTypes="#//EvaluationType"> <eStructuralFeatures xsi:type="ecore:EReference" name="instant" lowerBound="1" eType="#//ArithmeticExpression" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="IntervalOfTime" eSuperTypes="#//EvaluationType"> <eStructuralFeatures xsi:type="ecore:EReference" name="intervalBegin" lowerBound="1" eType="#//ArithmeticExpression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="intervalEnd" lowerBound="1" eType="#//ArithmeticExpression" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="IntervalOfTimeAveraged" eSuperTypes="#//EvaluationType"> <eStructuralFeatures xsi:type="ecore:EReference" name="intervalBegin" lowerBound="1" eType="#//ArithmeticExpression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="intervalEnd" lowerBound="1" eType="#//ArithmeticExpression" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Variable"> <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="VariableValues"> <eStructuralFeatures xsi:type="ecore:EReference" name="variable" lowerBound="1" eType="#//Variable"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="values" lowerBound="1" upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="VariableExpression" eSuperTypes="#//ArithmeticExpression"> <eStructuralFeatures xsi:type="ecore:EReference" name="variable" lowerBound="1" eType="#//Variable"/> </eClassifiers> </ecore:EPackage>
github:ecore:/data/montex/CHESS-SBA/org.polarsys.chess.statebased/metamodels/placeTransition.ecore
ecore
ptnet PTMarking text containerPlace PTArcAnnotation text containerArc PositiveInteger java.lang.Integer java.lang.Integer Natural java.lang.Integer java.lang.Integer PetriNetDoc nets xmlns http://www.pnml.org/version-2009/grammar/pnml PetriNet id type pages name toolspecifics containerPetriNetDoc PNType PTNET http://www.pnml.org/version-2009/grammar/ptnet COREMODEL http://www.pnml.org/version-2009/grammar/pnmlcoremodel SYMNET http://www.pnml.org/version-2009/grammar/snnet HLPN http://www.pnml.org/version-2009/grammar/highlevelnet GSPN GSPN Page objects containerPetriNet nodegraphics PnObject id name toolspecifics containerPage Name text containerNamePetriNet containerNamePnObject ToolInfo tool version formattedXMLBuffer toolInfoGrammarURI containerPetriNet containerPnObject containerLabel toolInfoModel Label toolspecifics NodeGraphics position dimension fill line containerNode containerPage Graphics Coordinate x y Position containerArcGraphics containerPNodeGraphics Offset containerAnnotationGraphics Dimension containerDNodeGraphics AnnotationGraphics offset fill line font containerAnnotation Fill color BLACK gradientcolor BLACK gradientrotation image containerNodeGraphics containerAnnotationGraphics CSS2Color AQUA aqua BLACK black BLUE blue FUCHSIA fuchsia GRAY gray GREEN green LIME lime MAROON maroon NAVY navy OLIVE olive ORANGE orange PURPLE purple RED red SILVER silver TEAL teal WHITE white YELLOW yellow Gradient HORIZONTAL horizontal VERTICAL vertical DIAGONAL diagonal Line color BLACK shape LINE width containerNodeGraphics containerArcGraphics containerAnnotationGraphics style LineShape LINE line CURVE curve ArcGraphics positions line containerArc Arc source target arcgraphics inscription Node InArcs OutArcs nodegraphics Font align LEFT decoration UNDERLINE family VERDANA rotation size SMALL style NORMAL weight containerAnnotationGraphics FontAlign LEFT left CENTER center RIGHT right FontDecoration UNDERLINE underline OVERLINE overline LINETHROUGH linethrough CSS2FontFamily VERDANA verdana ARIAL arial TIMES times GEORGIA georgia TREBUCHET trebuchet CSS2FontSize XXSMALL xxsmall XSMALL xsmall SMALL small MEDIUM medium LARGE large XLARGE xlarge XXLARGE xxlarge CSS2FontStyle NORMAL normal ITALIC italic OBLIQUE oblique CSS2FontWeight NORMAL normal BOLD bold BOLDER bolder LIGHTER lighter PlaceNode referencingPlaces TransitionNode referencingTransitions Place initialMarking RefTransition ref Transition RefPlace ref Attribute LineStyle SOLID solid DASH dash DOT dot Annotation annotationgraphics URI java.net.URI java.net.URI LongString java.lang.StringBuffer java.lang.StringBuffer AnyObject containerToolInfo GSPNTransition Guard GSPNTransitionType immediate immediate timed timed GSPNArcType normal normal inhibitor inhibitor GSPNArc type normal MultiplicityFunction GSPNImmediateTransition Priority 1 Weight 1 GSPNTimedTransition Distribution Distribution Deterministic Value Exponential Rate Gaussian Mean Variance Uniform Lower Upper Gamma Alpha Beta Weibull Alpha Beta EvaluationList studies measures Study name vars Measure name rewardFunction evaluationType Expression ValueExpression value MarkingExpression place ArithmeticExpression ArithmeticBinaryOperator expression1 expression2 OpSum OpMinus OpMultiply OpDivide IfThenElse condition ifTrue ifFalse LogicalExpression OpTrue OpFalse ComparisonOperator expression1 expression2 BooleanExpression expression1 expression2 OpEqual OpGreater OpLess OpGreaterEqual OpLessEqual OpNot expression OpAnd OpOr EvaluationType SteadyState InstantOfTime instant IntervalOfTime intervalBegin intervalEnd IntervalOfTimeAveraged intervalBegin intervalEnd Variable name VariableValues variable values VariableExpression variable
null
{"directed":true,"nodes":[{"nsPrefix":"ptnet","nsURI":"http:///ptnet.ecore","name":"ptnet","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PTMarking","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PTArcAnnotation","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":"java.lang.Integer","defaultValue":null,"instanceClassName":"java.lang.Integer","name":"PositiveInteger","instanceClass":"java.lang.Integer","id":3,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.lang.Integer","defaultValue":null,"instanceClassName":"java.lang.Integer","name":"Natural","instanceClass":"java.lang.Integer","id":4,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PetriNetDoc","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PetriNet","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"PNType","instanceClass":null,"id":7,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Page","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PnObject","instanceClass":null,"abstract":true,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Name","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ToolInfo","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Label","instanceClass":null,"abstract":true,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NodeGraphics","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Graphics","instanceClass":null,"abstract":true,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Coordinate","instanceClass":null,"abstract":true,"id":15,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Position","instanceClass":null,"abstract":false,"id":16,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Offset","instanceClass":null,"abstract":false,"id":17,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Dimension","instanceClass":null,"abstract":false,"id":18,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AnnotationGraphics","instanceClass":null,"abstract":false,"id":19,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Fill","instanceClass":null,"abstract":false,"id":20,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"CSS2Color","instanceClass":null,"id":21,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"Gradient","instanceClass":null,"id":22,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Line","instanceClass":null,"abstract":false,"id":23,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"LineShape","instanceClass":null,"id":24,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ArcGraphics","instanceClass":null,"abstract":false,"id":25,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Arc","instanceClass":null,"abstract":false,"id":26,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Node","instanceClass":null,"abstract":true,"id":27,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Font","instanceClass":null,"abstract":false,"id":28,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"FontAlign","instanceClass":null,"id":29,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"FontDecoration","instanceClass":null,"id":30,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"CSS2FontFamily","instanceClass":null,"id":31,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"CSS2FontSize","instanceClass":null,"id":32,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"CSS2FontStyle","instanceClass":null,"id":33,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"CSS2FontWeight","instanceClass":null,"id":34,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PlaceNode","instanceClass":null,"abstract":true,"id":35,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TransitionNode","instanceClass":null,"abstract":true,"id":36,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Place","instanceClass":null,"abstract":false,"id":37,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RefTransition","instanceClass":null,"abstract":false,"id":38,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Transition","instanceClass":null,"abstract":false,"id":39,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RefPlace","instanceClass":null,"abstract":false,"id":40,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Attribute","instanceClass":null,"abstract":true,"id":41,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"LineStyle","instanceClass":null,"id":42,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Annotation","instanceClass":null,"abstract":true,"id":43,"interface":false,"eClass":"EClass"},{"instanceTypeName":"java.net.URI","defaultValue":null,"instanceClassName":"java.net.URI","name":"URI","instanceClass":"java.net.URI","id":44,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.lang.StringBuffer","defaultValue":null,"instanceClassName":"java.lang.StringBuffer","name":"LongString","instanceClass":"java.lang.StringBuffer","id":45,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AnyObject","instanceClass":null,"abstract":true,"id":46,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"GSPNTransition","instanceClass":null,"abstract":false,"id":47,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"GSPNTransitionType","instanceClass":null,"id":48,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"GSPNArcType","instanceClass":null,"id":49,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"GSPNArc","instanceClass":null,"abstract":false,"id":50,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"GSPNImmediateTransition","instanceClass":null,"abstract":false,"id":51,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"GSPNTimedTransition","instanceClass":null,"abstract":false,"id":52,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Distribution","instanceClass":null,"abstract":true,"id":53,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Deterministic","instanceClass":null,"abstract":false,"id":54,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Exponential","instanceClass":null,"abstract":false,"id":55,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Gaussian","instanceClass":null,"abstract":false,"id":56,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Uniform","instanceClass":null,"abstract":false,"id":57,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Gamma","instanceClass":null,"abstract":false,"id":58,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Weibull","instanceClass":null,"abstract":false,"id":59,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EvaluationList","instanceClass":null,"abstract":false,"id":60,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Study","instanceClass":null,"abstract":false,"id":61,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Measure","instanceClass":null,"abstract":false,"id":62,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Expression","instanceClass":null,"abstract":true,"id":63,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ValueExpression","instanceClass":null,"abstract":false,"id":64,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MarkingExpression","instanceClass":null,"abstract":false,"id":65,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ArithmeticExpression","instanceClass":null,"abstract":true,"id":66,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ArithmeticBinaryOperator","instanceClass":null,"abstract":true,"id":67,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OpSum","instanceClass":null,"abstract":false,"id":68,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OpMinus","instanceClass":null,"abstract":false,"id":69,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OpMultiply","instanceClass":null,"abstract":false,"id":70,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OpDivide","instanceClass":null,"abstract":false,"id":71,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IfThenElse","instanceClass":null,"abstract":false,"id":72,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LogicalExpression","instanceClass":null,"abstract":true,"id":73,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OpTrue","instanceClass":null,"abstract":false,"id":74,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OpFalse","instanceClass":null,"abstract":false,"id":75,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ComparisonOperator","instanceClass":null,"abstract":true,"id":76,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BooleanExpression","instanceClass":null,"abstract":false,"id":77,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OpEqual","instanceClass":null,"abstract":false,"id":78,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OpGreater","instanceClass":null,"abstract":false,"id":79,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OpLess","instanceClass":null,"abstract":false,"id":80,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OpGreaterEqual","instanceClass":null,"abstract":false,"id":81,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OpLessEqual","instanceClass":null,"abstract":false,"id":82,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OpNot","instanceClass":null,"abstract":false,"id":83,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OpAnd","instanceClass":null,"abstract":false,"id":84,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OpOr","instanceClass":null,"abstract":false,"id":85,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EvaluationType","instanceClass":null,"abstract":true,"id":86,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SteadyState","instanceClass":null,"abstract":false,"id":87,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InstantOfTime","instanceClass":null,"abstract":false,"id":88,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IntervalOfTime","instanceClass":null,"abstract":false,"id":89,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IntervalOfTimeAveraged","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":"VariableValues","instanceClass":null,"abstract":false,"id":92,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"VariableExpression","instanceClass":null,"abstract":false,"id":93,"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":"text","changeable":true,"lowerBound":1,"iD":false,"id":94,"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":"containerPlace","changeable":true,"resolveProxies":true,"lowerBound":0,"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":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"initialMarking","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":"text","changeable":true,"lowerBound":1,"iD":false,"id":100,"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":"containerArc","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":"inscription","changeable":true,"resolveProxies":true,"lowerBound":0,"id":105,"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":"nets","changeable":true,"resolveProxies":true,"lowerBound":1,"id":106,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":"http://www.pnml.org/version-2009/grammar/pnml","volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"http://www.pnml.org/version-2009/grammar/pnml","unsettable":false,"transient":false,"unique":true,"name":"xmlns","changeable":false,"lowerBound":0,"iD":false,"id":107,"derived":false},{"id":108,"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":"containerPetriNetDoc","changeable":true,"resolveProxies":true,"lowerBound":0,"id":109,"derived":false},{"id":110,"eClass":"EGenericType"},{"ordered":false,"upperBound":1,"defaultValue":"","volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"","unsettable":false,"transient":false,"unique":true,"name":"id","changeable":true,"lowerBound":1,"iD":true,"id":111,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"","unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"lowerBound":1,"iD":false,"id":112,"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":"pages","changeable":true,"resolveProxies":true,"lowerBound":1,"id":113,"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":"name","changeable":true,"resolveProxies":true,"lowerBound":0,"id":114,"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":"toolspecifics","changeable":true,"resolveProxies":true,"lowerBound":0,"id":115,"derived":false},{"id":116,"eClass":"EGenericType"},{"id":117,"eClass":"EGenericType"},{"id":118,"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":"containerPetriNet","changeable":true,"resolveProxies":true,"lowerBound":0,"id":119,"derived":false},{"id":120,"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":"containerNamePetriNet","changeable":true,"resolveProxies":true,"lowerBound":0,"id":121,"derived":false},{"id":122,"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":"containerPetriNet","changeable":true,"resolveProxies":true,"lowerBound":0,"id":123,"derived":false},{"id":124,"eClass":"EGenericType"},{"name":"PTNET","id":125,"value":1,"literal":"http://www.pnml.org/version-2009/grammar/ptnet","eClass":"EEnumLiteral"},{"name":"COREMODEL","id":126,"value":0,"literal":"http://www.pnml.org/version-2009/grammar/pnmlcoremodel","eClass":"EEnumLiteral"},{"name":"SYMNET","id":127,"value":2,"literal":"http://www.pnml.org/version-2009/grammar/snnet","eClass":"EEnumLiteral"},{"name":"HLPN","id":128,"value":3,"literal":"http://www.pnml.org/version-2009/grammar/highlevelnet","eClass":"EEnumLiteral"},{"name":"GSPN","id":129,"value":4,"literal":"GSPN","eClass":"EEnumLiteral"},{"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":"objects","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":"nodegraphics","changeable":true,"resolveProxies":true,"lowerBound":0,"id":131,"derived":false},{"id":132,"eClass":"EGenericType"},{"id":133,"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":"containerPage","changeable":true,"resolveProxies":true,"lowerBound":0,"id":134,"derived":false},{"id":135,"eClass":"EGenericType"},{"id":136,"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":"containerPage","changeable":true,"resolveProxies":true,"lowerBound":0,"id":137,"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":true,"id":138,"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":"name","changeable":true,"resolveProxies":true,"lowerBound":0,"id":139,"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":"toolspecifics","changeable":true,"resolveProxies":true,"lowerBound":0,"id":140,"derived":false},{"id":141,"eClass":"EGenericType"},{"id":142,"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":"containerNamePnObject","changeable":true,"resolveProxies":true,"lowerBound":0,"id":143,"derived":false},{"id":144,"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":"containerPnObject","changeable":true,"resolveProxies":true,"lowerBound":0,"id":145,"derived":false},{"id":146,"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":147,"derived":false},{"id":148,"eClass":"EGenericType"},{"id":149,"eClass":"EGenericType"},{"id":150,"eClass":"EGenericType"},{"id":151,"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":"tool","changeable":true,"lowerBound":1,"iD":false,"id":152,"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":"version","changeable":true,"lowerBound":1,"iD":false,"id":153,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"formattedXMLBuffer","changeable":true,"lowerBound":0,"iD":false,"id":154,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"toolInfoGrammarURI","changeable":true,"lowerBound":0,"iD":false,"id":155,"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":"containerLabel","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":"toolInfoModel","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"},{"id":163,"eClass":"EGenericType"},{"id":164,"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":"toolspecifics","changeable":true,"resolveProxies":true,"lowerBound":0,"id":165,"derived":false},{"id":166,"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":"containerToolInfo","changeable":false,"resolveProxies":true,"lowerBound":0,"id":167,"derived":false},{"id":168,"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":"position","changeable":true,"resolveProxies":true,"lowerBound":0,"id":169,"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":"dimension","changeable":true,"resolveProxies":true,"lowerBound":0,"id":170,"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":"fill","changeable":true,"resolveProxies":true,"lowerBound":0,"id":171,"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":"line","changeable":true,"resolveProxies":true,"lowerBound":0,"id":172,"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":"containerNode","changeable":true,"resolveProxies":true,"lowerBound":0,"id":173,"derived":false},{"id":174,"eClass":"EGenericType"},{"id":175,"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":"containerPNodeGraphics","changeable":true,"resolveProxies":true,"lowerBound":0,"id":176,"derived":false},{"id":177,"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":"containerDNodeGraphics","changeable":true,"resolveProxies":true,"lowerBound":0,"id":178,"derived":false},{"id":179,"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":"containerNodeGraphics","changeable":true,"resolveProxies":true,"lowerBound":0,"id":180,"derived":false},{"id":181,"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":"containerNodeGraphics","changeable":true,"resolveProxies":true,"lowerBound":0,"id":182,"derived":false},{"id":183,"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":"nodegraphics","changeable":true,"resolveProxies":true,"lowerBound":0,"id":184,"derived":false},{"id":185,"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":"x","changeable":true,"lowerBound":1,"iD":false,"id":186,"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":"y","changeable":true,"lowerBound":1,"iD":false,"id":187,"derived":false},{"id":188,"eClass":"EGenericType"},{"id":189,"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":"containerArcGraphics","changeable":true,"resolveProxies":true,"lowerBound":0,"id":190,"derived":false},{"id":191,"eClass":"EGenericType"},{"id":192,"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":"positions","changeable":true,"resolveProxies":true,"lowerBound":0,"id":193,"derived":false},{"id":194,"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":"containerAnnotationGraphics","changeable":true,"resolveProxies":true,"lowerBound":0,"id":195,"derived":false},{"id":196,"eClass":"EGenericType"},{"id":197,"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":"offset","changeable":true,"resolveProxies":true,"lowerBound":0,"id":198,"derived":false},{"id":199,"eClass":"EGenericType"},{"id":200,"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":"fill","changeable":true,"resolveProxies":true,"lowerBound":0,"id":201,"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":"line","changeable":true,"resolveProxies":true,"lowerBound":0,"id":202,"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":"font","changeable":true,"resolveProxies":true,"lowerBound":0,"id":203,"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":"containerAnnotation","changeable":true,"resolveProxies":true,"lowerBound":0,"id":204,"derived":false},{"id":205,"eClass":"EGenericType"},{"id":206,"eClass":"EGenericType"},{"id":207,"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":"containerAnnotationGraphics","changeable":true,"resolveProxies":true,"lowerBound":0,"id":208,"derived":false},{"id":209,"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":"containerAnnotationGraphics","changeable":true,"resolveProxies":true,"lowerBound":0,"id":210,"derived":false},{"id":211,"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":"containerAnnotationGraphics","changeable":true,"resolveProxies":true,"lowerBound":0,"id":212,"derived":false},{"id":213,"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":"annotationgraphics","changeable":true,"resolveProxies":true,"lowerBound":0,"id":214,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"BLACK","unsettable":false,"transient":false,"unique":true,"name":"color","changeable":true,"lowerBound":0,"iD":false,"id":215,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"BLACK","unsettable":false,"transient":false,"unique":true,"name":"gradientcolor","changeable":true,"lowerBound":0,"iD":false,"id":216,"derived":false},{"ordered":false,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"gradientrotation","changeable":true,"lowerBound":0,"iD":false,"id":217,"derived":false},{"ordered":false,"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":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"},{"name":"AQUA","id":225,"value":0,"literal":"aqua","eClass":"EEnumLiteral"},{"name":"BLACK","id":226,"value":1,"literal":"black","eClass":"EEnumLiteral"},{"name":"BLUE","id":227,"value":2,"literal":"blue","eClass":"EEnumLiteral"},{"name":"FUCHSIA","id":228,"value":3,"literal":"fuchsia","eClass":"EEnumLiteral"},{"name":"GRAY","id":229,"value":4,"literal":"gray","eClass":"EEnumLiteral"},{"name":"GREEN","id":230,"value":5,"literal":"green","eClass":"EEnumLiteral"},{"name":"LIME","id":231,"value":6,"literal":"lime","eClass":"EEnumLiteral"},{"name":"MAROON","id":232,"value":7,"literal":"maroon","eClass":"EEnumLiteral"},{"name":"NAVY","id":233,"value":8,"literal":"navy","eClass":"EEnumLiteral"},{"name":"OLIVE","id":234,"value":9,"literal":"olive","eClass":"EEnumLiteral"},{"name":"ORANGE","id":235,"value":10,"literal":"orange","eClass":"EEnumLiteral"},{"name":"PURPLE","id":236,"value":11,"literal":"purple","eClass":"EEnumLiteral"},{"name":"RED","id":237,"value":12,"literal":"red","eClass":"EEnumLiteral"},{"name":"SILVER","id":238,"value":13,"literal":"silver","eClass":"EEnumLiteral"},{"name":"TEAL","id":239,"value":14,"literal":"teal","eClass":"EEnumLiteral"},{"name":"WHITE","id":240,"value":15,"literal":"white","eClass":"EEnumLiteral"},{"name":"YELLOW","id":241,"value":16,"literal":"yellow","eClass":"EEnumLiteral"},{"name":"HORIZONTAL","id":242,"value":0,"literal":"horizontal","eClass":"EEnumLiteral"},{"name":"VERTICAL","id":243,"value":1,"literal":"vertical","eClass":"EEnumLiteral"},{"name":"DIAGONAL","id":244,"value":2,"literal":"diagonal","eClass":"EEnumLiteral"},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"BLACK","unsettable":false,"transient":false,"unique":true,"name":"color","changeable":true,"lowerBound":0,"iD":false,"id":245,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"LINE","unsettable":false,"transient":false,"unique":true,"name":"shape","changeable":true,"lowerBound":0,"iD":false,"id":246,"derived":false},{"ordered":false,"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":247,"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":"containerArcGraphics","changeable":true,"resolveProxies":true,"lowerBound":0,"id":248,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"style","changeable":true,"lowerBound":0,"iD":false,"id":249,"derived":false},{"id":250,"eClass":"EGenericType"},{"id":251,"eClass":"EGenericType"},{"id":252,"eClass":"EGenericType"},{"id":253,"eClass":"EGenericType"},{"id":254,"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":"line","changeable":true,"resolveProxies":true,"lowerBound":0,"id":255,"derived":false},{"id":256,"eClass":"EGenericType"},{"id":257,"eClass":"EGenericType"},{"name":"LINE","id":258,"value":0,"literal":"line","eClass":"EEnumLiteral"},{"name":"CURVE","id":259,"value":1,"literal":"curve","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":"containerArc","changeable":true,"resolveProxies":true,"lowerBound":0,"id":260,"derived":false},{"id":261,"eClass":"EGenericType"},{"id":262,"eClass":"EGenericType"},{"id":263,"eClass":"EGenericType"},{"id":264,"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":"arcgraphics","changeable":true,"resolveProxies":true,"lowerBound":0,"id":265,"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":"source","changeable":true,"resolveProxies":true,"lowerBound":1,"id":266,"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":"target","changeable":true,"resolveProxies":true,"lowerBound":1,"id":267,"derived":false},{"id":268,"eClass":"EGenericType"},{"id":269,"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":"OutArcs","changeable":false,"resolveProxies":true,"lowerBound":0,"id":270,"derived":false},{"id":271,"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":"InArcs","changeable":false,"resolveProxies":true,"lowerBound":0,"id":272,"derived":false},{"id":273,"eClass":"EGenericType"},{"id":274,"eClass":"EGenericType"},{"id":275,"eClass":"EGenericType"},{"id":276,"eClass":"EGenericType"},{"id":277,"eClass":"EGenericType"},{"id":278,"eClass":"EGenericType"},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"LEFT","unsettable":false,"transient":false,"unique":true,"name":"align","changeable":true,"lowerBound":0,"iD":false,"id":279,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"UNDERLINE","unsettable":false,"transient":false,"unique":true,"name":"decoration","changeable":true,"lowerBound":0,"iD":false,"id":280,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"VERDANA","unsettable":false,"transient":false,"unique":true,"name":"family","changeable":true,"lowerBound":0,"iD":false,"id":281,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"rotation","changeable":true,"lowerBound":0,"iD":false,"id":282,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"SMALL","unsettable":false,"transient":false,"unique":true,"name":"size","changeable":true,"lowerBound":0,"iD":false,"id":283,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"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":284,"derived":false},{"ordered":false,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"weight","changeable":true,"lowerBound":0,"iD":false,"id":285,"derived":false},{"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"},{"name":"LEFT","id":294,"value":0,"literal":"left","eClass":"EEnumLiteral"},{"name":"CENTER","id":295,"value":1,"literal":"center","eClass":"EEnumLiteral"},{"name":"RIGHT","id":296,"value":2,"literal":"right","eClass":"EEnumLiteral"},{"name":"UNDERLINE","id":297,"value":0,"literal":"underline","eClass":"EEnumLiteral"},{"name":"OVERLINE","id":298,"value":1,"literal":"overline","eClass":"EEnumLiteral"},{"name":"LINETHROUGH","id":299,"value":2,"literal":"linethrough","eClass":"EEnumLiteral"},{"name":"VERDANA","id":300,"value":0,"literal":"verdana","eClass":"EEnumLiteral"},{"name":"ARIAL","id":301,"value":1,"literal":"arial","eClass":"EEnumLiteral"},{"name":"TIMES","id":302,"value":2,"literal":"times","eClass":"EEnumLiteral"},{"name":"GEORGIA","id":303,"value":3,"literal":"georgia","eClass":"EEnumLiteral"},{"name":"TREBUCHET","id":304,"value":4,"literal":"trebuchet","eClass":"EEnumLiteral"},{"name":"XXSMALL","id":305,"value":0,"literal":"xxsmall","eClass":"EEnumLiteral"},{"name":"XSMALL","id":306,"value":1,"literal":"xsmall","eClass":"EEnumLiteral"},{"name":"SMALL","id":307,"value":2,"literal":"small","eClass":"EEnumLiteral"},{"name":"MEDIUM","id":308,"value":3,"literal":"medium","eClass":"EEnumLiteral"},{"name":"LARGE","id":309,"value":4,"literal":"large","eClass":"EEnumLiteral"},{"name":"XLARGE","id":310,"value":5,"literal":"xlarge","eClass":"EEnumLiteral"},{"name":"XXLARGE","id":311,"value":6,"literal":"xxlarge","eClass":"EEnumLiteral"},{"name":"NORMAL","id":312,"value":0,"literal":"normal","eClass":"EEnumLiteral"},{"name":"ITALIC","id":313,"value":1,"literal":"italic","eClass":"EEnumLiteral"},{"name":"OBLIQUE","id":314,"value":2,"literal":"oblique","eClass":"EEnumLiteral"},{"name":"NORMAL","id":315,"value":0,"literal":"normal","eClass":"EEnumLiteral"},{"name":"BOLD","id":316,"value":1,"literal":"bold","eClass":"EEnumLiteral"},{"name":"BOLDER","id":317,"value":2,"literal":"bolder","eClass":"EEnumLiteral"},{"name":"LIGHTER","id":318,"value":3,"literal":"lighter","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":"referencingPlaces","changeable":false,"resolveProxies":true,"lowerBound":0,"id":319,"derived":false},{"id":320,"eClass":"EGenericType"},{"id":321,"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":"ref","changeable":true,"resolveProxies":true,"lowerBound":1,"id":322,"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":"referencingTransitions","changeable":false,"resolveProxies":true,"lowerBound":0,"id":323,"derived":false},{"id":324,"eClass":"EGenericType"},{"id":325,"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":"ref","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"},{"name":"SOLID","id":335,"value":0,"literal":"solid","eClass":"EEnumLiteral"},{"name":"DASH","id":336,"value":1,"literal":"dash","eClass":"EEnumLiteral"},{"name":"DOT","id":337,"value":2,"literal":"dot","eClass":"EEnumLiteral"},{"id":338,"eClass":"EGenericType"},{"id":339,"eClass":"EGenericType"},{"id":340,"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":341,"derived":false},{"id":342,"eClass":"EGenericType"},{"id":343,"eClass":"EGenericType"},{"name":"immediate","id":344,"value":0,"literal":"immediate","eClass":"EEnumLiteral"},{"name":"timed","id":345,"value":1,"literal":"timed","eClass":"EEnumLiteral"},{"name":"normal","id":346,"value":0,"literal":"normal","eClass":"EEnumLiteral"},{"name":"inhibitor","id":347,"value":1,"literal":"inhibitor","eClass":"EEnumLiteral"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"normal","unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"lowerBound":1,"iD":false,"id":348,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"MultiplicityFunction","changeable":true,"resolveProxies":true,"lowerBound":0,"id":349,"derived":false},{"id":350,"eClass":"EGenericType"},{"id":351,"eClass":"EGenericType"},{"id":352,"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":"Priority","changeable":true,"lowerBound":1,"iD":false,"id":353,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":1.0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"1","unsettable":false,"transient":false,"unique":true,"name":"Weight","changeable":true,"lowerBound":1,"iD":false,"id":354,"derived":false},{"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":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"Distribution","changeable":true,"resolveProxies":true,"lowerBound":1,"id":358,"derived":false},{"id":359,"eClass":"EGenericType"},{"id":360,"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":"Value","changeable":true,"lowerBound":1,"iD":false,"id":361,"derived":false},{"id":362,"eClass":"EGenericType"},{"id":363,"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":"Rate","changeable":true,"lowerBound":1,"iD":false,"id":364,"derived":false},{"id":365,"eClass":"EGenericType"},{"id":366,"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":"Mean","changeable":true,"lowerBound":1,"iD":false,"id":367,"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":"Variance","changeable":true,"lowerBound":1,"iD":false,"id":368,"derived":false},{"id":369,"eClass":"EGenericType"},{"id":370,"eClass":"EGenericType"},{"id":371,"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":"Lower","changeable":true,"lowerBound":1,"iD":false,"id":372,"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":"Upper","changeable":true,"lowerBound":1,"iD":false,"id":373,"derived":false},{"id":374,"eClass":"EGenericType"},{"id":375,"eClass":"EGenericType"},{"id":376,"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":"Alpha","changeable":true,"lowerBound":1,"iD":false,"id":377,"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":"Beta","changeable":true,"lowerBound":1,"iD":false,"id":378,"derived":false},{"id":379,"eClass":"EGenericType"},{"id":380,"eClass":"EGenericType"},{"id":381,"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":"Alpha","changeable":true,"lowerBound":1,"iD":false,"id":382,"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":"Beta","changeable":true,"lowerBound":1,"iD":false,"id":383,"derived":false},{"id":384,"eClass":"EGenericType"},{"id":385,"eClass":"EGenericType"},{"id":386,"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":"studies","changeable":true,"resolveProxies":true,"lowerBound":1,"id":387,"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":"measures","changeable":true,"resolveProxies":true,"lowerBound":1,"id":388,"derived":false},{"id":389,"eClass":"EGenericType"},{"id":390,"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":391,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"vars","changeable":true,"resolveProxies":true,"lowerBound":0,"id":392,"derived":false},{"id":393,"eClass":"EGenericType"},{"id":394,"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":395,"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":"rewardFunction","changeable":true,"resolveProxies":true,"lowerBound":1,"id":396,"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":"evaluationType","changeable":true,"resolveProxies":true,"lowerBound":1,"id":397,"derived":false},{"id":398,"eClass":"EGenericType"},{"id":399,"eClass":"EGenericType"},{"id":400,"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":"value","changeable":true,"lowerBound":1,"iD":false,"id":401,"derived":false},{"id":402,"eClass":"EGenericType"},{"id":403,"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":"place","changeable":true,"resolveProxies":true,"lowerBound":0,"id":404,"derived":false},{"id":405,"eClass":"EGenericType"},{"id":406,"eClass":"EGenericType"},{"id":407,"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":"expression1","changeable":true,"resolveProxies":true,"lowerBound":1,"id":408,"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":"expression2","changeable":true,"resolveProxies":true,"lowerBound":1,"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"},{"id":416,"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":"condition","changeable":true,"resolveProxies":true,"lowerBound":1,"id":417,"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":"ifTrue","changeable":true,"resolveProxies":true,"lowerBound":1,"id":418,"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":"ifFalse","changeable":true,"resolveProxies":true,"lowerBound":1,"id":419,"derived":false},{"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"},{"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":"expression1","changeable":true,"resolveProxies":true,"lowerBound":1,"id":427,"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":"expression2","changeable":true,"resolveProxies":true,"lowerBound":1,"id":428,"derived":false},{"id":429,"eClass":"EGenericType"},{"id":430,"eClass":"EGenericType"},{"id":431,"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":"expression1","changeable":true,"resolveProxies":true,"lowerBound":1,"id":432,"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":"expression2","changeable":true,"resolveProxies":true,"lowerBound":1,"id":433,"derived":false},{"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"},{"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":442,"derived":false},{"id":443,"eClass":"EGenericType"},{"id":444,"eClass":"EGenericType"},{"id":445,"eClass":"EGenericType"},{"id":446,"eClass":"EGenericType"},{"id":447,"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":"instant","changeable":true,"resolveProxies":true,"lowerBound":1,"id":448,"derived":false},{"id":449,"eClass":"EGenericType"},{"id":450,"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":"intervalBegin","changeable":true,"resolveProxies":true,"lowerBound":1,"id":451,"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":"intervalEnd","changeable":true,"resolveProxies":true,"lowerBound":1,"id":452,"derived":false},{"id":453,"eClass":"EGenericType"},{"id":454,"eClass":"EGenericType"},{"id":455,"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":"intervalBegin","changeable":true,"resolveProxies":true,"lowerBound":1,"id":456,"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":"intervalEnd","changeable":true,"resolveProxies":true,"lowerBound":1,"id":457,"derived":false},{"id":458,"eClass":"EGenericType"},{"id":459,"eClass":"EGenericType"},{"id":460,"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":461,"derived":false},{"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":"variable","changeable":true,"resolveProxies":true,"lowerBound":1,"id":463,"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":"values","changeable":true,"lowerBound":1,"iD":false,"id":464,"derived":false},{"id":465,"eClass":"EGenericType"},{"id":466,"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":467,"derived":false},{"id":468,"eClass":"EGenericType"},{"id":469,"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":1,"target":0},{"source":1,"target":43},{"source":1,"target":94},{"source":1,"target":95},{"source":1,"target":96},{"source":94,"target":4},{"source":94,"target":97},{"source":94,"target":1},{"source":97,"target":4},{"source":95,"target":37},{"source":95,"target":98},{"source":95,"target":1},{"source":95,"target":99},{"source":98,"target":37},{"source":96,"target":43},{"source":2,"target":0},{"source":2,"target":43},{"source":2,"target":100},{"source":2,"target":101},{"source":2,"target":102},{"source":100,"target":3},{"source":100,"target":103},{"source":100,"target":2},{"source":103,"target":3},{"source":101,"target":26},{"source":101,"target":104},{"source":101,"target":2},{"source":101,"target":105},{"source":104,"target":26},{"source":102,"target":43},{"source":3,"target":0},{"source":4,"target":0},{"source":5,"target":0},{"source":5,"target":106},{"source":5,"target":107},{"source":106,"target":6},{"source":106,"target":108},{"source":106,"target":5},{"source":106,"target":109},{"source":108,"target":6},{"source":107,"target":110},{"source":107,"target":5},{"source":6,"target":0},{"source":6,"target":111},{"source":6,"target":112},{"source":6,"target":113},{"source":6,"target":114},{"source":6,"target":115},{"source":6,"target":109},{"source":111,"target":116},{"source":111,"target":6},{"source":112,"target":7},{"source":112,"target":117},{"source":112,"target":6},{"source":117,"target":7},{"source":113,"target":8},{"source":113,"target":118},{"source":113,"target":6},{"source":113,"target":119},{"source":118,"target":8},{"source":114,"target":10},{"source":114,"target":120},{"source":114,"target":6},{"source":114,"target":121},{"source":120,"target":10},{"source":115,"target":11},{"source":115,"target":122},{"source":115,"target":6},{"source":115,"target":123},{"source":122,"target":11},{"source":109,"target":5},{"source":109,"target":124},{"source":109,"target":6},{"source":109,"target":106},{"source":124,"target":5},{"source":7,"target":0},{"source":7,"target":125},{"source":7,"target":126},{"source":7,"target":127},{"source":7,"target":128},{"source":7,"target":129},{"source":125,"target":7},{"source":126,"target":7},{"source":127,"target":7},{"source":128,"target":7},{"source":129,"target":7},{"source":8,"target":0},{"source":8,"target":9},{"source":8,"target":130},{"source":8,"target":119},{"source":8,"target":131},{"source":8,"target":132},{"source":130,"target":9},{"source":130,"target":133},{"source":130,"target":8},{"source":130,"target":134},{"source":133,"target":9},{"source":119,"target":6},{"source":119,"target":135},{"source":119,"target":8},{"source":119,"target":113},{"source":135,"target":6},{"source":131,"target":13},{"source":131,"target":136},{"source":131,"target":8},{"source":131,"target":137},{"source":136,"target":13},{"source":132,"target":9},{"source":9,"target":0},{"source":9,"target":138},{"source":9,"target":139},{"source":9,"target":140},{"source":9,"target":134},{"source":138,"target":141},{"source":138,"target":9},{"source":139,"target":10},{"source":139,"target":142},{"source":139,"target":9},{"source":139,"target":143},{"source":142,"target":10},{"source":140,"target":11},{"source":140,"target":144},{"source":140,"target":9},{"source":140,"target":145},{"source":144,"target":11},{"source":134,"target":8},{"source":134,"target":146},{"source":134,"target":9},{"source":134,"target":130},{"source":146,"target":8},{"source":10,"target":0},{"source":10,"target":43},{"source":10,"target":147},{"source":10,"target":121},{"source":10,"target":143},{"source":10,"target":148},{"source":147,"target":149},{"source":147,"target":10},{"source":121,"target":6},{"source":121,"target":150},{"source":121,"target":10},{"source":121,"target":114},{"source":150,"target":6},{"source":143,"target":9},{"source":143,"target":151},{"source":143,"target":10},{"source":143,"target":139},{"source":151,"target":9},{"source":148,"target":43},{"source":11,"target":0},{"source":11,"target":152},{"source":11,"target":153},{"source":11,"target":154},{"source":11,"target":155},{"source":11,"target":123},{"source":11,"target":145},{"source":11,"target":156},{"source":11,"target":157},{"source":152,"target":158},{"source":152,"target":11},{"source":153,"target":159},{"source":153,"target":11},{"source":154,"target":45},{"source":154,"target":160},{"source":154,"target":11},{"source":160,"target":45},{"source":155,"target":44},{"source":155,"target":161},{"source":155,"target":11},{"source":161,"target":44},{"source":123,"target":6},{"source":123,"target":162},{"source":123,"target":11},{"source":123,"target":115},{"source":162,"target":6},{"source":145,"target":9},{"source":145,"target":163},{"source":145,"target":11},{"source":145,"target":140},{"source":163,"target":9},{"source":156,"target":12},{"source":156,"target":164},{"source":156,"target":11},{"source":156,"target":165},{"source":164,"target":12},{"source":157,"target":46},{"source":157,"target":166},{"source":157,"target":11},{"source":157,"target":167},{"source":166,"target":46},{"source":12,"target":0},{"source":12,"target":165},{"source":165,"target":11},{"source":165,"target":168},{"source":165,"target":12},{"source":165,"target":156},{"source":168,"target":11},{"source":13,"target":0},{"source":13,"target":14},{"source":13,"target":169},{"source":13,"target":170},{"source":13,"target":171},{"source":13,"target":172},{"source":13,"target":173},{"source":13,"target":137},{"source":13,"target":174},{"source":169,"target":16},{"source":169,"target":175},{"source":169,"target":13},{"source":169,"target":176},{"source":175,"target":16},{"source":170,"target":18},{"source":170,"target":177},{"source":170,"target":13},{"source":170,"target":178},{"source":177,"target":18},{"source":171,"target":20},{"source":171,"target":179},{"source":171,"target":13},{"source":171,"target":180},{"source":179,"target":20},{"source":172,"target":23},{"source":172,"target":181},{"source":172,"target":13},{"source":172,"target":182},{"source":181,"target":23},{"source":173,"target":27},{"source":173,"target":183},{"source":173,"target":13},{"source":173,"target":184},{"source":183,"target":27},{"source":137,"target":8},{"source":137,"target":185},{"source":137,"target":13},{"source":137,"target":131},{"source":185,"target":8},{"source":174,"target":14},{"source":14,"target":0},{"source":15,"target":0},{"source":15,"target":186},{"source":15,"target":187},{"source":186,"target":188},{"source":186,"target":15},{"source":187,"target":189},{"source":187,"target":15},{"source":16,"target":0},{"source":16,"target":15},{"source":16,"target":190},{"source":16,"target":176},{"source":16,"target":191},{"source":190,"target":25},{"source":190,"target":192},{"source":190,"target":16},{"source":190,"target":193},{"source":192,"target":25},{"source":176,"target":13},{"source":176,"target":194},{"source":176,"target":16},{"source":176,"target":169},{"source":194,"target":13},{"source":191,"target":15},{"source":17,"target":0},{"source":17,"target":15},{"source":17,"target":195},{"source":17,"target":196},{"source":195,"target":19},{"source":195,"target":197},{"source":195,"target":17},{"source":195,"target":198},{"source":197,"target":19},{"source":196,"target":15},{"source":18,"target":0},{"source":18,"target":15},{"source":18,"target":178},{"source":18,"target":199},{"source":178,"target":13},{"source":178,"target":200},{"source":178,"target":18},{"source":178,"target":170},{"source":200,"target":13},{"source":199,"target":15},{"source":19,"target":0},{"source":19,"target":14},{"source":19,"target":198},{"source":19,"target":201},{"source":19,"target":202},{"source":19,"target":203},{"source":19,"target":204},{"source":19,"target":205},{"source":198,"target":17},{"source":198,"target":206},{"source":198,"target":19},{"source":198,"target":195},{"source":206,"target":17},{"source":201,"target":20},{"source":201,"target":207},{"source":201,"target":19},{"source":201,"target":208},{"source":207,"target":20},{"source":202,"target":23},{"source":202,"target":209},{"source":202,"target":19},{"source":202,"target":210},{"source":209,"target":23},{"source":203,"target":28},{"source":203,"target":211},{"source":203,"target":19},{"source":203,"target":212},{"source":211,"target":28},{"source":204,"target":43},{"source":204,"target":213},{"source":204,"target":19},{"source":204,"target":214},{"source":213,"target":43},{"source":205,"target":14},{"source":20,"target":0},{"source":20,"target":215},{"source":20,"target":216},{"source":20,"target":217},{"source":20,"target":218},{"source":20,"target":180},{"source":20,"target":208},{"source":215,"target":21},{"source":215,"target":219},{"source":215,"target":20},{"source":219,"target":21},{"source":216,"target":21},{"source":216,"target":220},{"source":216,"target":20},{"source":220,"target":21},{"source":217,"target":22},{"source":217,"target":221},{"source":217,"target":20},{"source":221,"target":22},{"source":218,"target":44},{"source":218,"target":222},{"source":218,"target":20},{"source":222,"target":44},{"source":180,"target":13},{"source":180,"target":223},{"source":180,"target":20},{"source":180,"target":171},{"source":223,"target":13},{"source":208,"target":19},{"source":208,"target":224},{"source":208,"target":20},{"source":208,"target":201},{"source":224,"target":19},{"source":21,"target":0},{"source":21,"target":225},{"source":21,"target":226},{"source":21,"target":227},{"source":21,"target":228},{"source":21,"target":229},{"source":21,"target":230},{"source":21,"target":231},{"source":21,"target":232},{"source":21,"target":233},{"source":21,"target":234},{"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":225,"target":21},{"source":226,"target":21},{"source":227,"target":21},{"source":228,"target":21},{"source":229,"target":21},{"source":230,"target":21},{"source":231,"target":21},{"source":232,"target":21},{"source":233,"target":21},{"source":234,"target":21},{"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":22,"target":0},{"source":22,"target":242},{"source":22,"target":243},{"source":22,"target":244},{"source":242,"target":22},{"source":243,"target":22},{"source":244,"target":22},{"source":23,"target":0},{"source":23,"target":245},{"source":23,"target":246},{"source":23,"target":247},{"source":23,"target":182},{"source":23,"target":248},{"source":23,"target":210},{"source":23,"target":249},{"source":245,"target":21},{"source":245,"target":250},{"source":245,"target":23},{"source":250,"target":21},{"source":246,"target":24},{"source":246,"target":251},{"source":246,"target":23},{"source":251,"target":24},{"source":247,"target":252},{"source":247,"target":23},{"source":182,"target":13},{"source":182,"target":253},{"source":182,"target":23},{"source":182,"target":172},{"source":253,"target":13},{"source":248,"target":25},{"source":248,"target":254},{"source":248,"target":23},{"source":248,"target":255},{"source":254,"target":25},{"source":210,"target":19},{"source":210,"target":256},{"source":210,"target":23},{"source":210,"target":202},{"source":256,"target":19},{"source":249,"target":42},{"source":249,"target":257},{"source":249,"target":23},{"source":257,"target":42},{"source":24,"target":0},{"source":24,"target":258},{"source":24,"target":259},{"source":258,"target":24},{"source":259,"target":24},{"source":25,"target":0},{"source":25,"target":14},{"source":25,"target":193},{"source":25,"target":255},{"source":25,"target":260},{"source":25,"target":261},{"source":193,"target":16},{"source":193,"target":262},{"source":193,"target":25},{"source":193,"target":190},{"source":262,"target":16},{"source":255,"target":23},{"source":255,"target":263},{"source":255,"target":25},{"source":255,"target":248},{"source":263,"target":23},{"source":260,"target":26},{"source":260,"target":264},{"source":260,"target":25},{"source":260,"target":265},{"source":264,"target":26},{"source":261,"target":14},{"source":26,"target":0},{"source":26,"target":9},{"source":26,"target":266},{"source":26,"target":267},{"source":26,"target":265},{"source":26,"target":105},{"source":26,"target":268},{"source":266,"target":27},{"source":266,"target":269},{"source":266,"target":26},{"source":266,"target":270},{"source":269,"target":27},{"source":267,"target":27},{"source":267,"target":271},{"source":267,"target":26},{"source":267,"target":272},{"source":271,"target":27},{"source":265,"target":25},{"source":265,"target":273},{"source":265,"target":26},{"source":265,"target":260},{"source":273,"target":25},{"source":105,"target":2},{"source":105,"target":274},{"source":105,"target":26},{"source":105,"target":101},{"source":274,"target":2},{"source":268,"target":9},{"source":27,"target":0},{"source":27,"target":9},{"source":27,"target":272},{"source":27,"target":270},{"source":27,"target":184},{"source":27,"target":275},{"source":272,"target":26},{"source":272,"target":276},{"source":272,"target":27},{"source":272,"target":267},{"source":276,"target":26},{"source":270,"target":26},{"source":270,"target":277},{"source":270,"target":27},{"source":270,"target":266},{"source":277,"target":26},{"source":184,"target":13},{"source":184,"target":278},{"source":184,"target":27},{"source":184,"target":173},{"source":278,"target":13},{"source":275,"target":9},{"source":28,"target":0},{"source":28,"target":279},{"source":28,"target":280},{"source":28,"target":281},{"source":28,"target":282},{"source":28,"target":283},{"source":28,"target":284},{"source":28,"target":285},{"source":28,"target":212},{"source":279,"target":29},{"source":279,"target":286},{"source":279,"target":28},{"source":286,"target":29},{"source":280,"target":30},{"source":280,"target":287},{"source":280,"target":28},{"source":287,"target":30},{"source":281,"target":31},{"source":281,"target":288},{"source":281,"target":28},{"source":288,"target":31},{"source":282,"target":289},{"source":282,"target":28},{"source":283,"target":32},{"source":283,"target":290},{"source":283,"target":28},{"source":290,"target":32},{"source":284,"target":33},{"source":284,"target":291},{"source":284,"target":28},{"source":291,"target":33},{"source":285,"target":34},{"source":285,"target":292},{"source":285,"target":28},{"source":292,"target":34},{"source":212,"target":19},{"source":212,"target":293},{"source":212,"target":28},{"source":212,"target":203},{"source":293,"target":19},{"source":29,"target":0},{"source":29,"target":294},{"source":29,"target":295},{"source":29,"target":296},{"source":294,"target":29},{"source":295,"target":29},{"source":296,"target":29},{"source":30,"target":0},{"source":30,"target":297},{"source":30,"target":298},{"source":30,"target":299},{"source":297,"target":30},{"source":298,"target":30},{"source":299,"target":30},{"source":31,"target":0},{"source":31,"target":300},{"source":31,"target":301},{"source":31,"target":302},{"source":31,"target":303},{"source":31,"target":304},{"source":300,"target":31},{"source":301,"target":31},{"source":302,"target":31},{"source":303,"target":31},{"source":304,"target":31},{"source":32,"target":0},{"source":32,"target":305},{"source":32,"target":306},{"source":32,"target":307},{"source":32,"target":308},{"source":32,"target":309},{"source":32,"target":310},{"source":32,"target":311},{"source":305,"target":32},{"source":306,"target":32},{"source":307,"target":32},{"source":308,"target":32},{"source":309,"target":32},{"source":310,"target":32},{"source":311,"target":32},{"source":33,"target":0},{"source":33,"target":312},{"source":33,"target":313},{"source":33,"target":314},{"source":312,"target":33},{"source":313,"target":33},{"source":314,"target":33},{"source":34,"target":0},{"source":34,"target":315},{"source":34,"target":316},{"source":34,"target":317},{"source":34,"target":318},{"source":315,"target":34},{"source":316,"target":34},{"source":317,"target":34},{"source":318,"target":34},{"source":35,"target":0},{"source":35,"target":27},{"source":35,"target":319},{"source":35,"target":320},{"source":319,"target":40},{"source":319,"target":321},{"source":319,"target":35},{"source":319,"target":322},{"source":321,"target":40},{"source":320,"target":27},{"source":36,"target":0},{"source":36,"target":27},{"source":36,"target":323},{"source":36,"target":324},{"source":323,"target":38},{"source":323,"target":325},{"source":323,"target":36},{"source":323,"target":326},{"source":325,"target":38},{"source":324,"target":27},{"source":37,"target":0},{"source":37,"target":35},{"source":37,"target":99},{"source":37,"target":327},{"source":99,"target":1},{"source":99,"target":328},{"source":99,"target":37},{"source":99,"target":95},{"source":328,"target":1},{"source":327,"target":35},{"source":38,"target":0},{"source":38,"target":36},{"source":38,"target":326},{"source":38,"target":329},{"source":326,"target":36},{"source":326,"target":330},{"source":326,"target":38},{"source":326,"target":323},{"source":330,"target":36},{"source":329,"target":36},{"source":39,"target":0},{"source":39,"target":36},{"source":39,"target":331},{"source":331,"target":36},{"source":40,"target":0},{"source":40,"target":35},{"source":40,"target":322},{"source":40,"target":332},{"source":322,"target":35},{"source":322,"target":333},{"source":322,"target":40},{"source":322,"target":319},{"source":333,"target":35},{"source":332,"target":35},{"source":41,"target":0},{"source":41,"target":12},{"source":41,"target":334},{"source":334,"target":12},{"source":42,"target":0},{"source":42,"target":335},{"source":42,"target":336},{"source":42,"target":337},{"source":335,"target":42},{"source":336,"target":42},{"source":337,"target":42},{"source":43,"target":0},{"source":43,"target":12},{"source":43,"target":214},{"source":43,"target":338},{"source":214,"target":19},{"source":214,"target":339},{"source":214,"target":43},{"source":214,"target":204},{"source":339,"target":19},{"source":338,"target":12},{"source":44,"target":0},{"source":45,"target":0},{"source":46,"target":0},{"source":46,"target":167},{"source":167,"target":11},{"source":167,"target":340},{"source":167,"target":46},{"source":167,"target":157},{"source":340,"target":11},{"source":47,"target":0},{"source":47,"target":39},{"source":47,"target":341},{"source":47,"target":342},{"source":341,"target":73},{"source":341,"target":343},{"source":341,"target":47},{"source":343,"target":73},{"source":342,"target":39},{"source":48,"target":0},{"source":48,"target":344},{"source":48,"target":345},{"source":344,"target":48},{"source":345,"target":48},{"source":49,"target":0},{"source":49,"target":346},{"source":49,"target":347},{"source":346,"target":49},{"source":347,"target":49},{"source":50,"target":0},{"source":50,"target":26},{"source":50,"target":348},{"source":50,"target":349},{"source":50,"target":350},{"source":348,"target":49},{"source":348,"target":351},{"source":348,"target":50},{"source":351,"target":49},{"source":349,"target":66},{"source":349,"target":352},{"source":349,"target":50},{"source":352,"target":66},{"source":350,"target":26},{"source":51,"target":0},{"source":51,"target":47},{"source":51,"target":353},{"source":51,"target":354},{"source":51,"target":355},{"source":353,"target":356},{"source":353,"target":51},{"source":354,"target":357},{"source":354,"target":51},{"source":355,"target":47},{"source":52,"target":0},{"source":52,"target":47},{"source":52,"target":358},{"source":52,"target":359},{"source":358,"target":53},{"source":358,"target":360},{"source":358,"target":52},{"source":360,"target":53},{"source":359,"target":47},{"source":53,"target":0},{"source":54,"target":0},{"source":54,"target":53},{"source":54,"target":361},{"source":54,"target":362},{"source":361,"target":363},{"source":361,"target":54},{"source":362,"target":53},{"source":55,"target":0},{"source":55,"target":53},{"source":55,"target":364},{"source":55,"target":365},{"source":364,"target":366},{"source":364,"target":55},{"source":365,"target":53},{"source":56,"target":0},{"source":56,"target":53},{"source":56,"target":367},{"source":56,"target":368},{"source":56,"target":369},{"source":367,"target":370},{"source":367,"target":56},{"source":368,"target":371},{"source":368,"target":56},{"source":369,"target":53},{"source":57,"target":0},{"source":57,"target":53},{"source":57,"target":372},{"source":57,"target":373},{"source":57,"target":374},{"source":372,"target":375},{"source":372,"target":57},{"source":373,"target":376},{"source":373,"target":57},{"source":374,"target":53},{"source":58,"target":0},{"source":58,"target":53},{"source":58,"target":377},{"source":58,"target":378},{"source":58,"target":379},{"source":377,"target":380},{"source":377,"target":58},{"source":378,"target":381},{"source":378,"target":58},{"source":379,"target":53},{"source":59,"target":0},{"source":59,"target":53},{"source":59,"target":382},{"source":59,"target":383},{"source":59,"target":384},{"source":382,"target":385},{"source":382,"target":59},{"source":383,"target":386},{"source":383,"target":59},{"source":384,"target":53},{"source":60,"target":0},{"source":60,"target":387},{"source":60,"target":388},{"source":387,"target":61},{"source":387,"target":389},{"source":387,"target":60},{"source":389,"target":61},{"source":388,"target":62},{"source":388,"target":390},{"source":388,"target":60},{"source":390,"target":62},{"source":61,"target":0},{"source":61,"target":391},{"source":61,"target":392},{"source":391,"target":393},{"source":391,"target":61},{"source":392,"target":92},{"source":392,"target":394},{"source":392,"target":61},{"source":394,"target":92},{"source":62,"target":0},{"source":62,"target":395},{"source":62,"target":396},{"source":62,"target":397},{"source":395,"target":398},{"source":395,"target":62},{"source":396,"target":66},{"source":396,"target":399},{"source":396,"target":62},{"source":399,"target":66},{"source":397,"target":86},{"source":397,"target":400},{"source":397,"target":62},{"source":400,"target":86},{"source":63,"target":0},{"source":64,"target":0},{"source":64,"target":66},{"source":64,"target":401},{"source":64,"target":402},{"source":401,"target":403},{"source":401,"target":64},{"source":402,"target":66},{"source":65,"target":0},{"source":65,"target":66},{"source":65,"target":404},{"source":65,"target":405},{"source":404,"target":35},{"source":404,"target":406},{"source":404,"target":65},{"source":406,"target":35},{"source":405,"target":66},{"source":66,"target":0},{"source":66,"target":63},{"source":66,"target":407},{"source":407,"target":63},{"source":67,"target":0},{"source":67,"target":66},{"source":67,"target":408},{"source":67,"target":409},{"source":67,"target":410},{"source":408,"target":66},{"source":408,"target":411},{"source":408,"target":67},{"source":411,"target":66},{"source":409,"target":66},{"source":409,"target":412},{"source":409,"target":67},{"source":412,"target":66},{"source":410,"target":66},{"source":68,"target":0},{"source":68,"target":67},{"source":68,"target":413},{"source":413,"target":67},{"source":69,"target":0},{"source":69,"target":67},{"source":69,"target":414},{"source":414,"target":67},{"source":70,"target":0},{"source":70,"target":67},{"source":70,"target":415},{"source":415,"target":67},{"source":71,"target":0},{"source":71,"target":67},{"source":71,"target":416},{"source":416,"target":67},{"source":72,"target":0},{"source":72,"target":66},{"source":72,"target":417},{"source":72,"target":418},{"source":72,"target":419},{"source":72,"target":420},{"source":417,"target":73},{"source":417,"target":421},{"source":417,"target":72},{"source":421,"target":73},{"source":418,"target":66},{"source":418,"target":422},{"source":418,"target":72},{"source":422,"target":66},{"source":419,"target":66},{"source":419,"target":423},{"source":419,"target":72},{"source":423,"target":66},{"source":420,"target":66},{"source":73,"target":0},{"source":73,"target":63},{"source":73,"target":424},{"source":424,"target":63},{"source":74,"target":0},{"source":74,"target":73},{"source":74,"target":425},{"source":425,"target":73},{"source":75,"target":0},{"source":75,"target":73},{"source":75,"target":426},{"source":426,"target":73},{"source":76,"target":0},{"source":76,"target":73},{"source":76,"target":427},{"source":76,"target":428},{"source":76,"target":429},{"source":427,"target":66},{"source":427,"target":430},{"source":427,"target":76},{"source":430,"target":66},{"source":428,"target":66},{"source":428,"target":431},{"source":428,"target":76},{"source":431,"target":66},{"source":429,"target":73},{"source":77,"target":0},{"source":77,"target":73},{"source":77,"target":432},{"source":77,"target":433},{"source":77,"target":434},{"source":432,"target":73},{"source":432,"target":435},{"source":432,"target":77},{"source":435,"target":73},{"source":433,"target":73},{"source":433,"target":436},{"source":433,"target":77},{"source":436,"target":73},{"source":434,"target":73},{"source":78,"target":0},{"source":78,"target":76},{"source":78,"target":437},{"source":437,"target":76},{"source":79,"target":0},{"source":79,"target":76},{"source":79,"target":438},{"source":438,"target":76},{"source":80,"target":0},{"source":80,"target":76},{"source":80,"target":439},{"source":439,"target":76},{"source":81,"target":0},{"source":81,"target":76},{"source":81,"target":440},{"source":440,"target":76},{"source":82,"target":0},{"source":82,"target":76},{"source":82,"target":441},{"source":441,"target":76},{"source":83,"target":0},{"source":83,"target":73},{"source":83,"target":442},{"source":83,"target":443},{"source":442,"target":73},{"source":442,"target":444},{"source":442,"target":83},{"source":444,"target":73},{"source":443,"target":73},{"source":84,"target":0},{"source":84,"target":77},{"source":84,"target":445},{"source":445,"target":77},{"source":85,"target":0},{"source":85,"target":77},{"source":85,"target":446},{"source":446,"target":77},{"source":86,"target":0},{"source":87,"target":0},{"source":87,"target":86},{"source":87,"target":447},{"source":447,"target":86},{"source":88,"target":0},{"source":88,"target":86},{"source":88,"target":448},{"source":88,"target":449},{"source":448,"target":66},{"source":448,"target":450},{"source":448,"target":88},{"source":450,"target":66},{"source":449,"target":86},{"source":89,"target":0},{"source":89,"target":86},{"source":89,"target":451},{"source":89,"target":452},{"source":89,"target":453},{"source":451,"target":66},{"source":451,"target":454},{"source":451,"target":89},{"source":454,"target":66},{"source":452,"target":66},{"source":452,"target":455},{"source":452,"target":89},{"source":455,"target":66},{"source":453,"target":86},{"source":90,"target":0},{"source":90,"target":86},{"source":90,"target":456},{"source":90,"target":457},{"source":90,"target":458},{"source":456,"target":66},{"source":456,"target":459},{"source":456,"target":90},{"source":459,"target":66},{"source":457,"target":66},{"source":457,"target":460},{"source":457,"target":90},{"source":460,"target":66},{"source":458,"target":86},{"source":91,"target":0},{"source":91,"target":461},{"source":461,"target":462},{"source":461,"target":91},{"source":92,"target":0},{"source":92,"target":463},{"source":92,"target":464},{"source":463,"target":91},{"source":463,"target":465},{"source":463,"target":92},{"source":465,"target":91},{"source":464,"target":466},{"source":464,"target":92},{"source":93,"target":0},{"source":93,"target":66},{"source":93,"target":467},{"source":93,"target":468},{"source":467,"target":91},{"source":467,"target":469},{"source":467,"target":93},{"source":469,"target":91},{"source":468,"target":66}],"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="validation10" nsURI="http://www.milyn.org/xsd/smooks/validation-1.0.xsd" nsPrefix="validation"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Smooks Validation Configuration"/> </eAnnotations> <eClassifiers xsi:type="ecore:EClass" name="Validation10DocumentRoot"> <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="rule" upperBound="-2" eType="#//RuleType" volatile="true" transient="true" derived="true" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="&#xA; &#x9;&#x9; "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="rule"/> <details key="namespace" value="##targetNamespace"/> <details key="affiliation" value="http://www.milyn.org/xsd/smooks-1.1.xsd#abstract-resource-config"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="OnFail"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="onFail"/> </eAnnotations> <eLiterals name="OK"/> <eLiterals name="WARN" value="1"/> <eLiterals name="ERROR" value="2"/> <eLiterals name="FATAL" value="3"/> </eClassifiers> <eClassifiers xsi:type="ecore:EDataType" name="OnFailObject" instanceClassName="org.eclipse.emf.common.util.Enumerator"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="onFail:Object"/> <details key="baseType" value="onFail"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="RuleType" eSuperTypes="smooks-1.1.ecore#//ElementVisitor"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="rule_._type"/> <details key="kind" value="elementOnly"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="executeOn" 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="&#xA; The fragment that this validator should operate on. &#xA; "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="executeOn"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="executeOnNS" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//AnyURI"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="&#xA; Namespace for the &quot;executeOn&quot; attribute.&#xA; "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="executeOnNS"/> </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="&#xA; The name of the rule defined in Smooks. This name matches the ruleBase elements&#xA; name attribute and tell Smooks to use that rule for validation.&#xA; "/> </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="onFail" lowerBound="1" eType="#//OnFail" unsettable="true"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Validation failure categorization."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="onFail"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> </ecore:EPackage>
github:ecore:/data/robstryker/jbosstools-smooks/plugins/org.jboss.tools.smooks.core/model/smooks-1.2-models/validation10.ecore
ecore
validation10 Validation10DocumentRoot mixed xMLNSPrefixMap xSISchemaLocation rule OnFail OK OK WARN WARN ERROR ERROR FATAL FATAL OnFailObject org.eclipse.emf.common.util.Enumerator org.eclipse.emf.common.util.Enumerator RuleType executeOn executeOnNS name onFail
null
{"directed":true,"nodes":[{"nsPrefix":"validation","nsURI":"http://www.milyn.org/xsd/smooks/validation-1.0.xsd","name":"validation10","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Validation10DocumentRoot","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"OnFail","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":"OnFailObject","instanceClass":"org.eclipse.emf.common.util.Enumerator","id":3,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RuleType","instanceClass":null,"abstract":false,"id":4,"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":"mixed","changeable":true,"lowerBound":0,"iD":false,"id":5,"derived":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":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":true,"unique":true,"name":"xSISchemaLocation","changeable":true,"resolveProxies":false,"lowerBound":0,"id":7,"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":"rule","changeable":true,"resolveProxies":false,"lowerBound":0,"id":8,"derived":true},{"id":9,"eClass":"EGenericType"},{"id":10,"eClass":"EGenericType"},{"id":11,"eClass":"EGenericType"},{"id":12,"eClass":"EGenericType"},{"name":"OK","id":13,"value":0,"literal":"OK","eClass":"EEnumLiteral"},{"name":"WARN","id":14,"value":1,"literal":"WARN","eClass":"EEnumLiteral"},{"name":"ERROR","id":15,"value":2,"literal":"ERROR","eClass":"EEnumLiteral"},{"name":"FATAL","id":16,"value":3,"literal":"FATAL","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":"executeOn","changeable":true,"lowerBound":1,"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":"executeOnNS","changeable":true,"lowerBound":0,"iD":false,"id":18,"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":19,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":true,"name":"onFail","changeable":true,"lowerBound":1,"iD":false,"id":20,"derived":false},{"id":21,"eClass":"EGenericType"},{"id":22,"eClass":"EGenericType"},{"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":0,"target":4},{"source":1,"target":0},{"source":1,"target":5},{"source":1,"target":6},{"source":1,"target":7},{"source":1,"target":8},{"source":5,"target":9},{"source":5,"target":1},{"source":6,"target":10},{"source":6,"target":1},{"source":7,"target":11},{"source":7,"target":1},{"source":8,"target":4},{"source":8,"target":12},{"source":8,"target":1},{"source":12,"target":4},{"source":2,"target":0},{"source":2,"target":13},{"source":2,"target":14},{"source":2,"target":15},{"source":2,"target":16},{"source":13,"target":2},{"source":14,"target":2},{"source":15,"target":2},{"source":16,"target":2},{"source":3,"target":0},{"source":4,"target":0},{"source":4,"target":17},{"source":4,"target":18},{"source":4,"target":19},{"source":4,"target":20},{"source":4,"target":21},{"source":17,"target":22},{"source":17,"target":4},{"source":18,"target":23},{"source":18,"target":4},{"source":19,"target":24},{"source":19,"target":4},{"source":20,"target":2},{"source":20,"target":25},{"source":20,"target":4},{"source":25,"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="testNodesOnly" nsURI="testNodesOnly" nsPrefix="testNodesOnly"> <eClassifiers xsi:type="ecore:EClass" name="Class"/> <eClassifiers xsi:type="ecore:EClass" name="Interface" interface="true"/> <eClassifiers xsi:type="ecore:EClass" name="Abstract" abstract="true"/> <eClassifiers xsi:type="ecore:EEnum" name="Enum"/> </ecore:EPackage>
github:ecore:/data/eclipse-emfcloud/ecore-glsp/client/tests/workspace/testNodesOnly.ecore
ecore
testNodesOnly Class Interface Abstract Enum
null
{"directed":true,"nodes":[{"nsPrefix":"testNodesOnly","nsURI":"testNodesOnly","name":"testNodesOnly","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Class","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Interface","instanceClass":null,"abstract":false,"id":2,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Abstract","instanceClass":null,"abstract":true,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Enum","instanceClass":null,"id":4,"serializable":true,"eClass":"EEnum"}],"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":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="j2se5" nsURI="http://www.eclipse.org/MoDisco/J2SE5" nsPrefix="j2se5"> <eClassifiers xsi:type="ecore:EClass" name="AbstractTypeDeclaration" abstract="true" eSuperTypes="#//BodyDeclaration"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="originalFileContent" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="qualifiedName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="bodyDeclarations" upperBound="-1" eType="#//BodyDeclaration" containment="true" eOpposite="#//BodyDeclaration/abstractTypeDeclaration"/> <eStructuralFeatures xsi:type="ecore:EReference" name="commentsBeforeBody" upperBound="-1" eType="#//Comment" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="commentsAfterBody" upperBound="-1" eType="#//Comment" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="imports" upperBound="-1" eType="#//ImportDeclaration" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="package" eType="#//PackageDeclaration" transient="true" eOpposite="#//PackageDeclaration/ownedElements"/> <eStructuralFeatures xsi:type="ecore:EReference" name="superInterfaces" upperBound="-1" eType="#//NamedElementRef" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Annotation" eSuperTypes="#//Expression"> <eStructuralFeatures xsi:type="ecore:EReference" name="type" lowerBound="1" eType="#//NamedElementRef" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="values" upperBound="-1" eType="#//AnnotationMemberValuePair" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="AnnotationMemberValuePair" eSuperTypes="#//NamedElement"> <eStructuralFeatures xsi:type="ecore:EReference" name="member" lowerBound="1" eType="#//NamedElementRef" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="value" lowerBound="1" eType="#//Expression" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="AnnotationTypeDeclaration" eSuperTypes="#//AbstractTypeDeclaration"/> <eClassifiers xsi:type="ecore:EClass" name="AnnotationTypeMemberDeclaration" eSuperTypes="#//BodyDeclaration"> <eStructuralFeatures xsi:type="ecore:EReference" name="default" eType="#//Expression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="type" lowerBound="1" eType="#//NamedElementRef" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="AnonymousClassDeclaration" eSuperTypes="#//ASTNode"> <eStructuralFeatures xsi:type="ecore:EReference" name="bodyDeclarations" upperBound="-1" eType="#//BodyDeclaration" containment="true" eOpposite="#//BodyDeclaration/anonymousClassDeclarationOwner"/> <eStructuralFeatures xsi:type="ecore:EReference" name="classInstanceCreation" eType="#//ClassInstanceCreation" transient="true" eOpposite="#//ClassInstanceCreation/anonymousClassDeclaration"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ArrayAccess" eSuperTypes="#//Expression"> <eStructuralFeatures xsi:type="ecore:EReference" name="array" lowerBound="1" eType="#//Expression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="index" lowerBound="1" eType="#//Expression" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ArrayCreation" eSuperTypes="#//Expression"> <eStructuralFeatures xsi:type="ecore:EReference" name="dimensions" upperBound="-1" eType="#//Expression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="initializer" eType="#//ArrayInitializer" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="type" lowerBound="1" eType="#//NamedElementRef" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ArrayInitializer" eSuperTypes="#//Expression"> <eStructuralFeatures xsi:type="ecore:EReference" name="expressions" upperBound="-1" eType="#//Expression" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ArrayLengthAccess" eSuperTypes="#//Expression"> <eStructuralFeatures xsi:type="ecore:EReference" name="array" lowerBound="1" eType="#//Expression" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ArrayType" eSuperTypes="#//OrphanType"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="dimensions" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="originalName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" derived="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="elementType" eType="#//NamedElementRef" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="AssertStatement" eSuperTypes="#//Statement"> <eStructuralFeatures xsi:type="ecore:EReference" name="message" eType="#//Expression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="expression" lowerBound="1" eType="#//Expression" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Assignment" eSuperTypes="#//Expression"> <eStructuralFeatures xsi:type="ecore:EReference" name="leftHandSide" lowerBound="1" eType="#//Expression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="operator" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="rightHandSide" lowerBound="1" eType="#//Expression" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ASTNode" abstract="true"> <eStructuralFeatures xsi:type="ecore:EReference" name="comments" upperBound="-1" eType="#//Comment" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="originalColumnNumber" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="originalLastLineNumber" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="originalLength" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="originalLineNumber" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="originalStartPosition" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/> <eStructuralFeatures xsi:type="ecore:EReference" name="originalCompilationUnit" eType="#//CompilationUnit"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Block" eSuperTypes="#//Statement"> <eStructuralFeatures xsi:type="ecore:EReference" name="statements" upperBound="-1" eType="#//Statement" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="BlockComment" eSuperTypes="#//Comment"/> <eClassifiers xsi:type="ecore:EClass" name="BodyDeclaration" abstract="true" eSuperTypes="#//NamedElement"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="originalRank" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/> <eStructuralFeatures xsi:type="ecore:EReference" name="abstractTypeDeclaration" eType="#//AbstractTypeDeclaration" transient="true" eOpposite="#//AbstractTypeDeclaration/bodyDeclarations"/> <eStructuralFeatures xsi:type="ecore:EReference" name="annotations" upperBound="-1" eType="#//Annotation" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="anonymousClassDeclarationOwner" eType="#//AnonymousClassDeclaration" transient="true" eOpposite="#//AnonymousClassDeclaration/bodyDeclarations"/> <eStructuralFeatures xsi:type="ecore:EReference" name="modifiers" upperBound="-1" eType="#//Modifier" containment="true" eOpposite="#//Modifier/BodyDeclaration"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="BooleanLiteral" eSuperTypes="#//Expression"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="BreakStatement" eSuperTypes="#//Statement"> <eStructuralFeatures xsi:type="ecore:EReference" name="label" eType="#//NamedElementRef" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CastExpression" eSuperTypes="#//Expression"> <eStructuralFeatures xsi:type="ecore:EReference" name="expression" lowerBound="1" eType="#//Expression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="type" lowerBound="1" eType="#//NamedElementRef" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CatchClause" eSuperTypes="#//Statement"> <eStructuralFeatures xsi:type="ecore:EReference" name="exception" lowerBound="1" eType="#//SingleVariableDeclaration" containment="true" eOpposite="#//SingleVariableDeclaration/catchClause"/> <eStructuralFeatures xsi:type="ecore:EReference" name="body" lowerBound="1" eType="#//Block" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CharacterLiteral" eSuperTypes="#//Expression"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="escapedValue" 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#//EChar"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ClassDeclaration" eSuperTypes="#//TypeDeclaration"> <eStructuralFeatures xsi:type="ecore:EReference" name="superClass" eType="#//NamedElementRef" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ClassInstanceCreation" eSuperTypes="#//Expression"> <eStructuralFeatures xsi:type="ecore:EReference" name="anonymousClassDeclaration" eType="#//AnonymousClassDeclaration" containment="true" eOpposite="#//AnonymousClassDeclaration/classInstanceCreation"/> <eStructuralFeatures xsi:type="ecore:EReference" name="arguments" upperBound="-1" eType="#//Expression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="expression" eType="#//Expression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="method" lowerBound="1" eType="#//NamedElementRef" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="type" lowerBound="1" eType="#//NamedElementRef" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Comment" abstract="true" eSuperTypes="#//ASTNode"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="content" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="isEnclosedByParent" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="isPrefixOfParent" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CompilationUnit" eSuperTypes="#//NamedElement"> <eStructuralFeatures xsi:type="ecore:EReference" name="commentList" upperBound="-1" eType="#//Comment"/> <eStructuralFeatures xsi:type="ecore:EReference" name="imports" upperBound="-1" eType="#//ImportDeclaration"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="originalFileContent" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="originalFilePath" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="package" eType="#//PackageDeclaration"/> <eStructuralFeatures xsi:type="ecore:EReference" name="types" upperBound="-1" eType="#//AbstractTypeDeclaration"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ConditionalExpression" eSuperTypes="#//Expression"> <eStructuralFeatures xsi:type="ecore:EReference" name="elseExpression" lowerBound="1" eType="#//Expression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="expression" lowerBound="1" eType="#//Expression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="thenExpression" lowerBound="1" eType="#//Expression" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ConstructorInvocation" eSuperTypes="#//Statement"> <eStructuralFeatures xsi:type="ecore:EReference" name="arguments" upperBound="-1" eType="#//Expression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="method" lowerBound="1" eType="#//NamedElementRef" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ContinueStatement" eSuperTypes="#//Statement"> <eStructuralFeatures xsi:type="ecore:EReference" name="label" eType="#//NamedElementRef" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="DoStatement" eSuperTypes="#//Statement"> <eStructuralFeatures xsi:type="ecore:EReference" name="expression" lowerBound="1" eType="#//Expression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="body" lowerBound="1" eType="#//Statement" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="EmptyStatement" eSuperTypes="#//Statement"/> <eClassifiers xsi:type="ecore:EClass" name="EnumDeclaration" eSuperTypes="#//AbstractTypeDeclaration"> <eStructuralFeatures xsi:type="ecore:EReference" name="enumConstants" upperBound="-1" eType="#//EnumConstantDeclaration" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="EnumConstantDeclaration" eSuperTypes="#//BodyDeclaration"> <eStructuralFeatures xsi:type="ecore:EReference" name="anonymousClassDeclaration" eType="#//AnonymousClassDeclaration" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="arguments" upperBound="-1" eType="#//Expression" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="EnhancedForStatement" eSuperTypes="#//Statement"> <eStructuralFeatures xsi:type="ecore:EReference" name="body" lowerBound="1" eType="#//Statement" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="expression" lowerBound="1" eType="#//Expression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="parameter" lowerBound="1" eType="#//SingleVariableDeclaration" containment="true" eOpposite="#//SingleVariableDeclaration/enhancedForStatement"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Expression" abstract="true" eSuperTypes="#//ASTNode"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="originalRank" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ExpressionStatement" eSuperTypes="#//Statement"> <eStructuralFeatures xsi:type="ecore:EReference" name="expression" lowerBound="1" eType="#//Expression" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="FieldAccess" eSuperTypes="#//Expression"> <eStructuralFeatures xsi:type="ecore:EReference" name="field" lowerBound="1" eType="#//NamedElementRef" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="expression" lowerBound="1" eType="#//Expression" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="FieldDeclaration" eSuperTypes="#//BodyDeclaration"> <eStructuralFeatures xsi:type="ecore:EReference" name="type" lowerBound="1" eType="#//NamedElementRef" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="fragments" upperBound="-1" eType="#//VariableDeclarationFragment" containment="true" eOpposite="#//VariableDeclarationFragment/fieldDeclaration"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ForStatement" eSuperTypes="#//Statement"> <eStructuralFeatures xsi:type="ecore:EReference" name="expression" eType="#//Expression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="updaters" upperBound="-1" eType="#//Expression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="initializers" upperBound="-1" eType="#//Expression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="body" lowerBound="1" eType="#//Statement" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="IfStatement" eSuperTypes="#//Statement"> <eStructuralFeatures xsi:type="ecore:EReference" name="expression" lowerBound="1" eType="#//Expression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="thenStatement" lowerBound="1" eType="#//Statement" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="elseStatement" eType="#//Statement" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ImportDeclaration" eSuperTypes="#//ASTNode"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="static" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="originalRank" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/> <eStructuralFeatures xsi:type="ecore:EReference" name="importedElement" lowerBound="1" eType="#//NamedElementRef" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="InfixExpression" eSuperTypes="#//Expression"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="operator" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="rightOperand" lowerBound="1" eType="#//Expression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="leftOperand" lowerBound="1" eType="#//Expression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="extendedOperands" upperBound="-1" eType="#//Expression" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="InheritanceKind"> <eLiterals name="abstract"/> <eLiterals name="final" value="1"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Initializer" eSuperTypes="#//BodyDeclaration"> <eStructuralFeatures xsi:type="ecore:EReference" name="body" lowerBound="1" eType="#//Block" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="InstanceofExpression" eSuperTypes="#//Expression"> <eStructuralFeatures xsi:type="ecore:EReference" name="rightOperand" lowerBound="1" eType="#//NamedElementRef" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="leftOperand" lowerBound="1" eType="#//Expression" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="InterfaceDeclaration" eSuperTypes="#//TypeDeclaration"/> <eClassifiers xsi:type="ecore:EClass" name="Javadoc" eSuperTypes="#//Comment"> <eStructuralFeatures xsi:type="ecore:EReference" name="tags" upperBound="-1" eType="#//TagElement" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="LabeledStatement" eSuperTypes="#//NamedElement #//Statement"> <eStructuralFeatures xsi:type="ecore:EReference" name="body" lowerBound="1" eType="#//Statement" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="LineComment" eSuperTypes="#//Comment"/> <eClassifiers xsi:type="ecore:EClass" name="MemberRef" eSuperTypes="#//ASTNode"> <eStructuralFeatures xsi:type="ecore:EReference" name="member" lowerBound="1" eType="#//NamedElementRef" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="qualifier" eType="#//NamedElementRef" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="MethodDeclaration" eSuperTypes="#//BodyDeclaration"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="extraArrayDimensions" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="constructor" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="varargs" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EReference" name="body" eType="#//Block" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="thrownExceptions" upperBound="-1" eType="#//NamedElementRef" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="returnType" lowerBound="1" eType="#//NamedElementRef" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="typeParameters" upperBound="-1" eType="#//TypeParameter" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="redefinedMethodDeclaration" eType="#//MethodDeclaration" eOpposite="#//MethodDeclaration/redefinitions"/> <eStructuralFeatures xsi:type="ecore:EReference" name="redefinitions" upperBound="-1" eType="#//MethodDeclaration" eOpposite="#//MethodDeclaration/redefinedMethodDeclaration"/> <eStructuralFeatures xsi:type="ecore:EReference" name="parameters" upperBound="-1" eType="#//SingleVariableDeclaration" containment="true" eOpposite="#//SingleVariableDeclaration/methodDeclaration"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="MethodInvocation" eSuperTypes="#//Expression"> <eStructuralFeatures xsi:type="ecore:EReference" name="method" lowerBound="1" eType="#//NamedElementRef" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="arguments" upperBound="-1" eType="#//Expression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="expression" eType="#//Expression" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="MethodRef" eSuperTypes="#//ASTNode"> <eStructuralFeatures xsi:type="ecore:EReference" name="method" lowerBound="1" eType="#//NamedElementRef" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="qualifier" eType="#//NamedElementRef" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="parameters" upperBound="-1" eType="#//MethodRefParameter" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="MethodRefParameter" eSuperTypes="#//ASTNode"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="isVarargs" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBooleanObject"/> <eStructuralFeatures xsi:type="ecore:EReference" name="type" eType="#//NamedElementRef" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Model"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="ownedElements" upperBound="-1" eType="#//PackageDeclaration" containment="true" eOpposite="#//PackageDeclaration/model"/> <eStructuralFeatures xsi:type="ecore:EReference" name="orphanTypes" upperBound="-1" eType="#//OrphanType" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="unresolvedItems" upperBound="-1" eType="#//UnresolvedItem" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="compilationUnits" upperBound="-1" eType="#//CompilationUnit" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Modifier" eSuperTypes="#//ASTNode"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="visibility" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="inheritance" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="static" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="transient" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="volatile" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="native" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="strictfp" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="synchronized" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EReference" name="BodyDeclaration" eType="#//BodyDeclaration" transient="true" eOpposite="#//BodyDeclaration/modifiers"/> <eStructuralFeatures xsi:type="ecore:EReference" name="SingleVariableDeclaration" eType="#//SingleVariableDeclaration" transient="true" eOpposite="#//SingleVariableDeclaration/modifiers"/> <eStructuralFeatures xsi:type="ecore:EReference" name="VariableDeclarationStatement" eType="#//VariableDeclarationStatement" transient="true" eOpposite="#//VariableDeclarationStatement/modifiers"/> <eStructuralFeatures xsi:type="ecore:EReference" name="VariableDeclarationExpression" eType="#//VariableDeclarationExpression" transient="true" eOpposite="#//VariableDeclarationExpression/modifiers"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="NamedElement" abstract="true" eSuperTypes="#//ASTNode"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="proxy" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean" defaultValueLiteral="false"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="NamedElementRef" eSuperTypes="#//Expression"> <eStructuralFeatures xsi:type="ecore:EReference" name="qualifier" eType="#//NamedElementRef" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="element" eType="#//NamedElement"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="NullLiteral" eSuperTypes="#//Expression"/> <eClassifiers xsi:type="ecore:EClass" name="NumberLiteral" eSuperTypes="#//Expression"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="tokenValue" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="OrphanType" eSuperTypes="#//NamedElement"/> <eClassifiers xsi:type="ecore:EClass" name="PackageDeclaration" eSuperTypes="#//NamedElement"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="qualifiedName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" derived="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="ownedElements" upperBound="-1" eType="#//AbstractTypeDeclaration" containment="true" eOpposite="#//AbstractTypeDeclaration/package"/> <eStructuralFeatures xsi:type="ecore:EReference" name="model" lowerBound="1" eType="#//Model" transient="true" eOpposite="#//Model/ownedElements"/> <eStructuralFeatures xsi:type="ecore:EReference" name="ownedPackages" upperBound="-1" eType="#//PackageDeclaration" containment="true" eOpposite="#//PackageDeclaration/packageDeclaration"/> <eStructuralFeatures xsi:type="ecore:EReference" name="packageDeclaration" lowerBound="1" eType="#//PackageDeclaration" transient="true" eOpposite="#//PackageDeclaration/ownedPackages"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ParameterizedType" eSuperTypes="#//OrphanType"> <eStructuralFeatures xsi:type="ecore:EReference" name="type" lowerBound="1" eType="#//NamedElementRef" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="typeArguments" upperBound="-1" eType="#//NamedElementRef" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ParenthesizedExpression" eSuperTypes="#//Expression"> <eStructuralFeatures xsi:type="ecore:EReference" name="expression" lowerBound="1" eType="#//Expression" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="PostfixExpression" eSuperTypes="#//Expression"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="operator" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="operand" lowerBound="1" eType="#//Expression" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="PrefixExpression" eSuperTypes="#//Expression"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="operator" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="operand" lowerBound="1" eType="#//Expression" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="PrimitiveType" eSuperTypes="#//OrphanType"/> <eClassifiers xsi:type="ecore:EClass" name="PrimitiveTypeBoolean" eSuperTypes="#//PrimitiveType"/> <eClassifiers xsi:type="ecore:EClass" name="PrimitiveTypeByte" eSuperTypes="#//PrimitiveType"/> <eClassifiers xsi:type="ecore:EClass" name="PrimitiveTypeChar" eSuperTypes="#//PrimitiveType"/> <eClassifiers xsi:type="ecore:EClass" name="PrimitiveTypeDouble" eSuperTypes="#//PrimitiveType"/> <eClassifiers xsi:type="ecore:EClass" name="PrimitiveTypeShort" eSuperTypes="#//PrimitiveType"/> <eClassifiers xsi:type="ecore:EClass" name="PrimitiveTypeFloat" eSuperTypes="#//PrimitiveType"/> <eClassifiers xsi:type="ecore:EClass" name="PrimitiveTypeInt" eSuperTypes="#//PrimitiveType"/> <eClassifiers xsi:type="ecore:EClass" name="PrimitiveTypeLong" eSuperTypes="#//PrimitiveType"/> <eClassifiers xsi:type="ecore:EClass" name="PrimitiveTypeVoid" eSuperTypes="#//PrimitiveType"/> <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="SingleVariableDeclaration" eSuperTypes="#//VariableDeclaration"> <eStructuralFeatures xsi:type="ecore:EReference" name="modifiers" upperBound="-1" eType="#//Modifier" containment="true" eOpposite="#//Modifier/SingleVariableDeclaration"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="varargs" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="originalRank" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/> <eStructuralFeatures xsi:type="ecore:EReference" name="type" lowerBound="1" eType="#//NamedElementRef" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="methodDeclaration" lowerBound="1" eType="#//MethodDeclaration" transient="true" eOpposite="#//MethodDeclaration/parameters"/> <eStructuralFeatures xsi:type="ecore:EReference" name="catchClause" eType="#//CatchClause" eOpposite="#//CatchClause/exception"/> <eStructuralFeatures xsi:type="ecore:EReference" name="enhancedForStatement" eType="#//EnhancedForStatement" eOpposite="#//EnhancedForStatement/parameter"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Statement" abstract="true" eSuperTypes="#//ASTNode"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="originalRank" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="StringLiteral" eSuperTypes="#//Expression"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="escapedValue" 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="SuperConstructorInvocation" eSuperTypes="#//Statement"> <eStructuralFeatures xsi:type="ecore:EReference" name="expression" eType="#//Expression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="arguments" upperBound="-1" eType="#//Expression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="method" lowerBound="1" eType="#//NamedElementRef" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="SuperFieldAccess" eSuperTypes="#//Expression"> <eStructuralFeatures xsi:type="ecore:EReference" name="field" lowerBound="1" eType="#//NamedElementRef" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="qualifier" eType="#//NamedElementRef" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="SuperMethodInvocation" eSuperTypes="#//Expression"> <eStructuralFeatures xsi:type="ecore:EReference" name="arguments" upperBound="-1" eType="#//Expression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="method" lowerBound="1" eType="#//NamedElementRef" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="qualifier" eType="#//NamedElementRef" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="SwitchCase" eSuperTypes="#//Statement"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="default" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EReference" name="expression" eType="#//Expression" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="SwitchStatement" eSuperTypes="#//Statement"> <eStructuralFeatures xsi:type="ecore:EReference" name="expression" lowerBound="1" eType="#//Expression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="statements" upperBound="-1" eType="#//Statement" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="SynchronizedStatement" eSuperTypes="#//Statement"> <eStructuralFeatures xsi:type="ecore:EReference" name="body" lowerBound="1" eType="#//Block" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="expression" lowerBound="1" eType="#//Expression" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="TagElement" eSuperTypes="#//ASTNode"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="tagName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="fragments" upperBound="-1" eType="#//ASTNode" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="TextElement" eSuperTypes="#//ASTNode"> <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="ThisExpression" eSuperTypes="#//Expression"> <eStructuralFeatures xsi:type="ecore:EReference" name="qualifier" eType="#//NamedElementRef" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ThrowStatement" eSuperTypes="#//Statement"> <eStructuralFeatures xsi:type="ecore:EReference" name="expression" lowerBound="1" eType="#//Expression" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="TypeDeclaration" abstract="true" eSuperTypes="#//AbstractTypeDeclaration"> <eStructuralFeatures xsi:type="ecore:EReference" name="typeParameters" upperBound="-1" eType="#//TypeParameter" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="TypeDeclarationStatement" eSuperTypes="#//Statement"> <eStructuralFeatures xsi:type="ecore:EReference" name="declaration" lowerBound="1" eType="#//AbstractTypeDeclaration" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="TypeLiteral" eSuperTypes="#//Expression"> <eStructuralFeatures xsi:type="ecore:EReference" name="type" lowerBound="1" eType="#//NamedElementRef" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="TypeParameter" eSuperTypes="#//NamedElement"> <eStructuralFeatures xsi:type="ecore:EReference" name="bounds" upperBound="-1" eType="#//NamedElementRef" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="TryStatement" eSuperTypes="#//Statement"> <eStructuralFeatures xsi:type="ecore:EReference" name="body" lowerBound="1" eType="#//Block" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="finally" eType="#//Block" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="catchClauses" upperBound="-1" eType="#//CatchClause" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="UnresolvedItem" eSuperTypes="#//NamedElement"/> <eClassifiers xsi:type="ecore:EClass" name="VariableDeclaration" abstract="true" eSuperTypes="#//NamedElement"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="extraArrayDimensions" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/> <eStructuralFeatures xsi:type="ecore:EReference" name="initializer" eType="#//Expression" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="VariableDeclarationExpression" eSuperTypes="#//Expression"> <eStructuralFeatures xsi:type="ecore:EReference" name="type" lowerBound="1" eType="#//NamedElementRef" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="fragments" upperBound="-1" eType="#//VariableDeclarationFragment" containment="true" eOpposite="#//VariableDeclarationFragment/variableDeclarationExpression"/> <eStructuralFeatures xsi:type="ecore:EReference" name="modifiers" upperBound="-1" eType="#//Modifier" containment="true" eOpposite="#//Modifier/VariableDeclarationExpression"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="VariableDeclarationFragment" eSuperTypes="#//VariableDeclaration"> <eStructuralFeatures xsi:type="ecore:EReference" name="fieldDeclaration" lowerBound="1" eType="#//FieldDeclaration" transient="true" eOpposite="#//FieldDeclaration/fragments"/> <eStructuralFeatures xsi:type="ecore:EReference" name="variableDeclarationStatement" eType="#//VariableDeclarationStatement" eOpposite="#//VariableDeclarationStatement/fragments"/> <eStructuralFeatures xsi:type="ecore:EReference" name="variableDeclarationExpression" eType="#//VariableDeclarationExpression" eOpposite="#//VariableDeclarationExpression/fragments"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="VariableDeclarationStatement" eSuperTypes="#//Statement"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="extraArrayDimensions" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/> <eStructuralFeatures xsi:type="ecore:EReference" name="type" lowerBound="1" eType="#//NamedElementRef" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="fragments" upperBound="-1" eType="#//VariableDeclarationFragment" containment="true" eOpposite="#//VariableDeclarationFragment/variableDeclarationStatement"/> <eStructuralFeatures xsi:type="ecore:EReference" name="modifiers" upperBound="-1" eType="#//Modifier" containment="true" eOpposite="#//Modifier/VariableDeclarationStatement"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="VisibilityKind"> <eLiterals name="none"/> <eLiterals name="public" value="1"/> <eLiterals name="private" value="2"/> <eLiterals name="protected" value="3"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="WhileStatement" eSuperTypes="#//Statement"> <eStructuralFeatures xsi:type="ecore:EReference" name="expression" lowerBound="1" eType="#//Expression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="body" lowerBound="1" eType="#//Statement" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="WildCardType" eSuperTypes="#//OrphanType"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="isUpperBound" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBooleanObject"/> <eStructuralFeatures xsi:type="ecore:EReference" name="bound" eType="#//NamedElementRef" containment="true"/> </eClassifiers> </ecore:EPackage>
github:ecore:/data/jlcanovas/gra2mol/examples/Grammar2Model.examples.Java2ASTMModel/files/metamodels/j2se5.ecore
ecore
j2se5 AbstractTypeDeclaration originalFileContent qualifiedName bodyDeclarations commentsBeforeBody commentsAfterBody imports package superInterfaces Annotation type values AnnotationMemberValuePair member value AnnotationTypeDeclaration AnnotationTypeMemberDeclaration default type AnonymousClassDeclaration bodyDeclarations classInstanceCreation ArrayAccess array index ArrayCreation dimensions initializer type ArrayInitializer expressions ArrayLengthAccess array ArrayType dimensions originalName elementType AssertStatement message expression Assignment leftHandSide operator rightHandSide ASTNode comments originalColumnNumber originalLastLineNumber originalLength originalLineNumber originalStartPosition originalCompilationUnit Block statements BlockComment BodyDeclaration originalRank abstractTypeDeclaration annotations anonymousClassDeclarationOwner modifiers BooleanLiteral value BreakStatement label CastExpression expression type CatchClause exception body CharacterLiteral escapedValue value ClassDeclaration superClass ClassInstanceCreation anonymousClassDeclaration arguments expression method type Comment content isEnclosedByParent isPrefixOfParent CompilationUnit commentList imports originalFileContent originalFilePath package types ConditionalExpression elseExpression expression thenExpression ConstructorInvocation arguments method ContinueStatement label DoStatement expression body EmptyStatement EnumDeclaration enumConstants EnumConstantDeclaration anonymousClassDeclaration arguments EnhancedForStatement body expression parameter Expression originalRank ExpressionStatement expression FieldAccess field expression FieldDeclaration type fragments ForStatement expression updaters initializers body IfStatement expression thenStatement elseStatement ImportDeclaration static originalRank importedElement InfixExpression operator rightOperand leftOperand extendedOperands InheritanceKind abstract abstract final final Initializer body InstanceofExpression rightOperand leftOperand InterfaceDeclaration Javadoc tags LabeledStatement body LineComment MemberRef member qualifier MethodDeclaration extraArrayDimensions constructor varargs body thrownExceptions returnType typeParameters redefinedMethodDeclaration redefinitions parameters MethodInvocation method arguments expression MethodRef method qualifier parameters MethodRefParameter name isVarargs type Model name ownedElements orphanTypes unresolvedItems compilationUnits Modifier visibility inheritance static transient volatile native strictfp synchronized BodyDeclaration SingleVariableDeclaration VariableDeclarationStatement VariableDeclarationExpression NamedElement name proxy false NamedElementRef qualifier element NullLiteral NumberLiteral tokenValue OrphanType PackageDeclaration qualifiedName ownedElements model ownedPackages packageDeclaration ParameterizedType type typeArguments ParenthesizedExpression expression PostfixExpression operator operand PrefixExpression operator operand PrimitiveType PrimitiveTypeBoolean PrimitiveTypeByte PrimitiveTypeChar PrimitiveTypeDouble PrimitiveTypeShort PrimitiveTypeFloat PrimitiveTypeInt PrimitiveTypeLong PrimitiveTypeVoid ReturnStatement expression SingleVariableDeclaration modifiers varargs originalRank type methodDeclaration catchClause enhancedForStatement Statement originalRank StringLiteral escapedValue value SuperConstructorInvocation expression arguments method SuperFieldAccess field qualifier SuperMethodInvocation arguments method qualifier SwitchCase default expression SwitchStatement expression statements SynchronizedStatement body expression TagElement tagName fragments TextElement text ThisExpression qualifier ThrowStatement expression TypeDeclaration typeParameters TypeDeclarationStatement declaration TypeLiteral type TypeParameter bounds TryStatement body finally catchClauses UnresolvedItem VariableDeclaration extraArrayDimensions initializer VariableDeclarationExpression type fragments modifiers VariableDeclarationFragment fieldDeclaration variableDeclarationStatement variableDeclarationExpression VariableDeclarationStatement extraArrayDimensions type fragments modifiers VisibilityKind none none public public private private protected protected WhileStatement expression body WildCardType isUpperBound bound
null
{"directed":true,"nodes":[{"nsPrefix":"j2se5","nsURI":"http://www.eclipse.org/MoDisco/J2SE5","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":"ArrayType","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AssertStatement","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Assignment","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ASTNode","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":"BodyDeclaration","instanceClass":null,"abstract":true,"id":17,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BooleanLiteral","instanceClass":null,"abstract":false,"id":18,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BreakStatement","instanceClass":null,"abstract":false,"id":19,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CastExpression","instanceClass":null,"abstract":false,"id":20,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CatchClause","instanceClass":null,"abstract":false,"id":21,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CharacterLiteral","instanceClass":null,"abstract":false,"id":22,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ClassDeclaration","instanceClass":null,"abstract":false,"id":23,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ClassInstanceCreation","instanceClass":null,"abstract":false,"id":24,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Comment","instanceClass":null,"abstract":true,"id":25,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CompilationUnit","instanceClass":null,"abstract":false,"id":26,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ConditionalExpression","instanceClass":null,"abstract":false,"id":27,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ConstructorInvocation","instanceClass":null,"abstract":false,"id":28,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ContinueStatement","instanceClass":null,"abstract":false,"id":29,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DoStatement","instanceClass":null,"abstract":false,"id":30,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EmptyStatement","instanceClass":null,"abstract":false,"id":31,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EnumDeclaration","instanceClass":null,"abstract":false,"id":32,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EnumConstantDeclaration","instanceClass":null,"abstract":false,"id":33,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EnhancedForStatement","instanceClass":null,"abstract":false,"id":34,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Expression","instanceClass":null,"abstract":true,"id":35,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExpressionStatement","instanceClass":null,"abstract":false,"id":36,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FieldAccess","instanceClass":null,"abstract":false,"id":37,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FieldDeclaration","instanceClass":null,"abstract":false,"id":38,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ForStatement","instanceClass":null,"abstract":false,"id":39,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IfStatement","instanceClass":null,"abstract":false,"id":40,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ImportDeclaration","instanceClass":null,"abstract":false,"id":41,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InfixExpression","instanceClass":null,"abstract":false,"id":42,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"InheritanceKind","instanceClass":null,"id":43,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Initializer","instanceClass":null,"abstract":false,"id":44,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InstanceofExpression","instanceClass":null,"abstract":false,"id":45,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InterfaceDeclaration","instanceClass":null,"abstract":false,"id":46,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Javadoc","instanceClass":null,"abstract":false,"id":47,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LabeledStatement","instanceClass":null,"abstract":false,"id":48,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LineComment","instanceClass":null,"abstract":false,"id":49,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MemberRef","instanceClass":null,"abstract":false,"id":50,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MethodDeclaration","instanceClass":null,"abstract":false,"id":51,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MethodInvocation","instanceClass":null,"abstract":false,"id":52,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MethodRef","instanceClass":null,"abstract":false,"id":53,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MethodRefParameter","instanceClass":null,"abstract":false,"id":54,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Model","instanceClass":null,"abstract":false,"id":55,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Modifier","instanceClass":null,"abstract":false,"id":56,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NamedElement","instanceClass":null,"abstract":true,"id":57,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NamedElementRef","instanceClass":null,"abstract":false,"id":58,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NullLiteral","instanceClass":null,"abstract":false,"id":59,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NumberLiteral","instanceClass":null,"abstract":false,"id":60,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OrphanType","instanceClass":null,"abstract":false,"id":61,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PackageDeclaration","instanceClass":null,"abstract":false,"id":62,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ParameterizedType","instanceClass":null,"abstract":false,"id":63,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ParenthesizedExpression","instanceClass":null,"abstract":false,"id":64,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PostfixExpression","instanceClass":null,"abstract":false,"id":65,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PrefixExpression","instanceClass":null,"abstract":false,"id":66,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PrimitiveType","instanceClass":null,"abstract":false,"id":67,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PrimitiveTypeBoolean","instanceClass":null,"abstract":false,"id":68,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PrimitiveTypeByte","instanceClass":null,"abstract":false,"id":69,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PrimitiveTypeChar","instanceClass":null,"abstract":false,"id":70,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PrimitiveTypeDouble","instanceClass":null,"abstract":false,"id":71,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PrimitiveTypeShort","instanceClass":null,"abstract":false,"id":72,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PrimitiveTypeFloat","instanceClass":null,"abstract":false,"id":73,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PrimitiveTypeInt","instanceClass":null,"abstract":false,"id":74,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PrimitiveTypeLong","instanceClass":null,"abstract":false,"id":75,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PrimitiveTypeVoid","instanceClass":null,"abstract":false,"id":76,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ReturnStatement","instanceClass":null,"abstract":false,"id":77,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SingleVariableDeclaration","instanceClass":null,"abstract":false,"id":78,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Statement","instanceClass":null,"abstract":true,"id":79,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StringLiteral","instanceClass":null,"abstract":false,"id":80,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SuperConstructorInvocation","instanceClass":null,"abstract":false,"id":81,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SuperFieldAccess","instanceClass":null,"abstract":false,"id":82,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SuperMethodInvocation","instanceClass":null,"abstract":false,"id":83,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SwitchCase","instanceClass":null,"abstract":false,"id":84,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SwitchStatement","instanceClass":null,"abstract":false,"id":85,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SynchronizedStatement","instanceClass":null,"abstract":false,"id":86,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TagElement","instanceClass":null,"abstract":false,"id":87,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TextElement","instanceClass":null,"abstract":false,"id":88,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ThisExpression","instanceClass":null,"abstract":false,"id":89,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ThrowStatement","instanceClass":null,"abstract":false,"id":90,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TypeDeclaration","instanceClass":null,"abstract":true,"id":91,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TypeDeclarationStatement","instanceClass":null,"abstract":false,"id":92,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TypeLiteral","instanceClass":null,"abstract":false,"id":93,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TypeParameter","instanceClass":null,"abstract":false,"id":94,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TryStatement","instanceClass":null,"abstract":false,"id":95,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"UnresolvedItem","instanceClass":null,"abstract":false,"id":96,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"VariableDeclaration","instanceClass":null,"abstract":true,"id":97,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"VariableDeclarationExpression","instanceClass":null,"abstract":false,"id":98,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"VariableDeclarationFragment","instanceClass":null,"abstract":false,"id":99,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"VariableDeclarationStatement","instanceClass":null,"abstract":false,"id":100,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"VisibilityKind","instanceClass":null,"id":101,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"WhileStatement","instanceClass":null,"abstract":false,"id":102,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"WildCardType","instanceClass":null,"abstract":false,"id":103,"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":"originalFileContent","changeable":true,"lowerBound":0,"iD":false,"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":"qualifiedName","changeable":true,"lowerBound":0,"iD":false,"id":105,"derived":false},{"container":false,"ordered":true,"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":106,"derived":false},{"container":false,"ordered":true,"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":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":"commentsAfterBody","changeable":true,"resolveProxies":true,"lowerBound":0,"id":108,"derived":false},{"container":false,"ordered":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":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":true,"unique":true,"name":"package","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":"superInterfaces","changeable":true,"resolveProxies":true,"lowerBound":0,"id":111,"derived":false},{"id":112,"eClass":"EGenericType"},{"id":113,"eClass":"EGenericType"},{"id":114,"eClass":"EGenericType"},{"id":115,"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":"abstractTypeDeclaration","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":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"ownedElements","changeable":true,"resolveProxies":true,"lowerBound":0,"id":121,"derived":false},{"id":122,"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":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":"values","changeable":true,"resolveProxies":true,"lowerBound":0,"id":124,"derived":false},{"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":"member","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":true,"unsettable":false,"transient":false,"unique":true,"name":"value","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"},{"container":false,"ordered":true,"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":134,"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":"type","changeable":true,"resolveProxies":true,"lowerBound":1,"id":135,"derived":false},{"id":136,"eClass":"EGenericType"},{"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":"bodyDeclarations","changeable":true,"resolveProxies":true,"lowerBound":0,"id":139,"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":"classInstanceCreation","changeable":true,"resolveProxies":true,"lowerBound":0,"id":140,"derived":false},{"id":141,"eClass":"EGenericType"},{"id":142,"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":"anonymousClassDeclarationOwner","changeable":true,"resolveProxies":true,"lowerBound":0,"id":143,"derived":false},{"id":144,"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":"anonymousClassDeclaration","changeable":true,"resolveProxies":true,"lowerBound":0,"id":145,"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":"array","changeable":true,"resolveProxies":true,"lowerBound":1,"id":146,"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":"index","changeable":true,"resolveProxies":true,"lowerBound":1,"id":147,"derived":false},{"id":148,"eClass":"EGenericType"},{"id":149,"eClass":"EGenericType"},{"id":150,"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":"dimensions","changeable":true,"resolveProxies":true,"lowerBound":0,"id":151,"derived":false},{"container":false,"ordered":true,"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":152,"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":"type","changeable":true,"resolveProxies":true,"lowerBound":1,"id":153,"derived":false},{"id":154,"eClass":"EGenericType"},{"id":155,"eClass":"EGenericType"},{"id":156,"eClass":"EGenericType"},{"id":157,"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":"expressions","changeable":true,"resolveProxies":true,"lowerBound":0,"id":158,"derived":false},{"id":159,"eClass":"EGenericType"},{"id":160,"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":"array","changeable":true,"resolveProxies":true,"lowerBound":1,"id":161,"derived":false},{"id":162,"eClass":"EGenericType"},{"id":163,"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":"dimensions","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":"originalName","changeable":true,"lowerBound":0,"iD":false,"id":165,"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":"elementType","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"},{"container":false,"ordered":true,"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":171,"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":"expression","changeable":true,"resolveProxies":true,"lowerBound":1,"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":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"leftHandSide","changeable":true,"resolveProxies":true,"lowerBound":1,"id":176,"derived":false},{"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":177,"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":"rightHandSide","changeable":true,"resolveProxies":true,"lowerBound":1,"id":178,"derived":false},{"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":"comments","changeable":true,"resolveProxies":true,"lowerBound":0,"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":"originalColumnNumber","changeable":true,"lowerBound":0,"iD":false,"id":184,"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":"originalLastLineNumber","changeable":true,"lowerBound":0,"iD":false,"id":185,"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":"originalLength","changeable":true,"lowerBound":0,"iD":false,"id":186,"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":"originalLineNumber","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":"originalStartPosition","changeable":true,"lowerBound":0,"iD":false,"id":188,"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":"originalCompilationUnit","changeable":true,"resolveProxies":true,"lowerBound":0,"id":189,"derived":false},{"id":190,"eClass":"EGenericType"},{"id":191,"eClass":"EGenericType"},{"id":192,"eClass":"EGenericType"},{"id":193,"eClass":"EGenericType"},{"id":194,"eClass":"EGenericType"},{"id":195,"eClass":"EGenericType"},{"id":196,"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":197,"derived":false},{"id":198,"eClass":"EGenericType"},{"id":199,"eClass":"EGenericType"},{"id":200,"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":"originalRank","changeable":true,"lowerBound":0,"iD":false,"id":201,"derived":false},{"container":false,"ordered":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},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"modifiers","changeable":true,"resolveProxies":true,"lowerBound":0,"id":203,"derived":false},{"id":204,"eClass":"EGenericType"},{"id":205,"eClass":"EGenericType"},{"id":206,"eClass":"EGenericType"},{"id":207,"eClass":"EGenericType"},{"id":208,"eClass":"EGenericType"},{"id":209,"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":"BodyDeclaration","changeable":true,"resolveProxies":true,"lowerBound":0,"id":210,"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":"value","changeable":true,"lowerBound":0,"iD":false,"id":211,"derived":false},{"id":212,"eClass":"EGenericType"},{"id":213,"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":"label","changeable":true,"resolveProxies":true,"lowerBound":0,"id":214,"derived":false},{"id":215,"eClass":"EGenericType"},{"id":216,"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":"expression","changeable":true,"resolveProxies":true,"lowerBound":1,"id":217,"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":"type","changeable":true,"resolveProxies":true,"lowerBound":1,"id":218,"derived":false},{"id":219,"eClass":"EGenericType"},{"id":220,"eClass":"EGenericType"},{"id":221,"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":"exception","changeable":true,"resolveProxies":true,"lowerBound":1,"id":222,"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":"body","changeable":true,"resolveProxies":true,"lowerBound":1,"id":223,"derived":false},{"id":224,"eClass":"EGenericType"},{"id":225,"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":"catchClause","changeable":true,"resolveProxies":true,"lowerBound":0,"id":226,"derived":false},{"id":227,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"escapedValue","changeable":true,"lowerBound":0,"iD":false,"id":228,"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":"value","changeable":true,"lowerBound":0,"iD":false,"id":229,"derived":false},{"id":230,"eClass":"EGenericType"},{"id":231,"eClass":"EGenericType"},{"id":232,"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":"superClass","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":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"arguments","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":"expression","changeable":true,"resolveProxies":true,"lowerBound":0,"id":237,"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":"method","changeable":true,"resolveProxies":true,"lowerBound":1,"id":238,"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":"type","changeable":true,"resolveProxies":true,"lowerBound":1,"id":239,"derived":false},{"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,"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":246,"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":"isEnclosedByParent","changeable":true,"lowerBound":0,"iD":false,"id":247,"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":"isPrefixOfParent","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"},{"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":"commentList","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":false,"unsettable":false,"transient":false,"unique":true,"name":"imports","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":"originalFileContent","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":"originalFilePath","changeable":true,"lowerBound":0,"iD":false,"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":"package","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":false,"unsettable":false,"transient":false,"unique":true,"name":"types","changeable":true,"resolveProxies":true,"lowerBound":0,"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"},{"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":"elseExpression","changeable":true,"resolveProxies":true,"lowerBound":1,"id":266,"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":"expression","changeable":true,"resolveProxies":true,"lowerBound":1,"id":267,"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":"thenExpression","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"},{"container":false,"ordered":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":273,"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":"method","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":true,"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":278,"derived":false},{"id":279,"eClass":"EGenericType"},{"id":280,"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":"expression","changeable":true,"resolveProxies":true,"lowerBound":1,"id":281,"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":"body","changeable":true,"resolveProxies":true,"lowerBound":1,"id":282,"derived":false},{"id":283,"eClass":"EGenericType"},{"id":284,"eClass":"EGenericType"},{"id":285,"eClass":"EGenericType"},{"id":286,"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":"enumConstants","changeable":true,"resolveProxies":true,"lowerBound":0,"id":287,"derived":false},{"id":288,"eClass":"EGenericType"},{"id":289,"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":"anonymousClassDeclaration","changeable":true,"resolveProxies":true,"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":"arguments","changeable":true,"resolveProxies":true,"lowerBound":0,"id":291,"derived":false},{"id":292,"eClass":"EGenericType"},{"id":293,"eClass":"EGenericType"},{"id":294,"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":"body","changeable":true,"resolveProxies":true,"lowerBound":1,"id":295,"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":"expression","changeable":true,"resolveProxies":true,"lowerBound":1,"id":296,"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":"parameter","changeable":true,"resolveProxies":true,"lowerBound":1,"id":297,"derived":false},{"id":298,"eClass":"EGenericType"},{"id":299,"eClass":"EGenericType"},{"id":300,"eClass":"EGenericType"},{"id":301,"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":"enhancedForStatement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":302,"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":"originalRank","changeable":true,"lowerBound":0,"iD":false,"id":303,"derived":false},{"id":304,"eClass":"EGenericType"},{"id":305,"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":"expression","changeable":true,"resolveProxies":true,"lowerBound":1,"id":306,"derived":false},{"id":307,"eClass":"EGenericType"},{"id":308,"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":"field","changeable":true,"resolveProxies":true,"lowerBound":1,"id":309,"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":"expression","changeable":true,"resolveProxies":true,"lowerBound":1,"id":310,"derived":false},{"id":311,"eClass":"EGenericType"},{"id":312,"eClass":"EGenericType"},{"id":313,"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":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":"fragments","changeable":true,"resolveProxies":true,"lowerBound":0,"id":315,"derived":false},{"id":316,"eClass":"EGenericType"},{"id":317,"eClass":"EGenericType"},{"id":318,"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":"fieldDeclaration","changeable":true,"resolveProxies":true,"lowerBound":1,"id":319,"derived":false},{"container":false,"ordered":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":320,"derived":false},{"container":false,"ordered":true,"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":321,"derived":false},{"container":false,"ordered":true,"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":322,"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":"body","changeable":true,"resolveProxies":true,"lowerBound":1,"id":323,"derived":false},{"id":324,"eClass":"EGenericType"},{"id":325,"eClass":"EGenericType"},{"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":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"expression","changeable":true,"resolveProxies":true,"lowerBound":1,"id":329,"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":"thenStatement","changeable":true,"resolveProxies":true,"lowerBound":1,"id":330,"derived":false},{"container":false,"ordered":true,"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":331,"derived":false},{"id":332,"eClass":"EGenericType"},{"id":333,"eClass":"EGenericType"},{"id":334,"eClass":"EGenericType"},{"id":335,"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":"static","changeable":true,"lowerBound":0,"iD":false,"id":336,"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":"originalRank","changeable":true,"lowerBound":0,"iD":false,"id":337,"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":"importedElement","changeable":true,"resolveProxies":true,"lowerBound":1,"id":338,"derived":false},{"id":339,"eClass":"EGenericType"},{"id":340,"eClass":"EGenericType"},{"id":341,"eClass":"EGenericType"},{"id":342,"eClass":"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":343,"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":"rightOperand","changeable":true,"resolveProxies":true,"lowerBound":1,"id":344,"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":"leftOperand","changeable":true,"resolveProxies":true,"lowerBound":1,"id":345,"derived":false},{"container":false,"ordered":true,"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":346,"derived":false},{"id":347,"eClass":"EGenericType"},{"id":348,"eClass":"EGenericType"},{"id":349,"eClass":"EGenericType"},{"id":350,"eClass":"EGenericType"},{"id":351,"eClass":"EGenericType"},{"name":"abstract","id":352,"value":0,"literal":"abstract","eClass":"EEnumLiteral"},{"name":"final","id":353,"value":1,"literal":"final","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":"body","changeable":true,"resolveProxies":true,"lowerBound":1,"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":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"rightOperand","changeable":true,"resolveProxies":true,"lowerBound":1,"id":357,"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":"leftOperand","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":true,"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":363,"derived":false},{"id":364,"eClass":"EGenericType"},{"id":365,"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":"body","changeable":true,"resolveProxies":true,"lowerBound":1,"id":366,"derived":false},{"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":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"member","changeable":true,"resolveProxies":true,"lowerBound":1,"id":371,"derived":false},{"container":false,"ordered":true,"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":372,"derived":false},{"id":373,"eClass":"EGenericType"},{"id":374,"eClass":"EGenericType"},{"id":375,"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":"extraArrayDimensions","changeable":true,"lowerBound":0,"iD":false,"id":376,"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":"constructor","changeable":true,"lowerBound":0,"iD":false,"id":377,"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":"varargs","changeable":true,"lowerBound":0,"iD":false,"id":378,"derived":false},{"container":false,"ordered":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":379,"derived":false},{"container":false,"ordered":true,"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":380,"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":"returnType","changeable":true,"resolveProxies":true,"lowerBound":1,"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":"typeParameters","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":"redefinedMethodDeclaration","changeable":true,"resolveProxies":true,"lowerBound":0,"id":383,"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":"redefinitions","changeable":true,"resolveProxies":true,"lowerBound":0,"id":384,"derived":false},{"container":false,"ordered":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":385,"derived":false},{"id":386,"eClass":"EGenericType"},{"id":387,"eClass":"EGenericType"},{"id":388,"eClass":"EGenericType"},{"id":389,"eClass":"EGenericType"},{"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":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":"methodDeclaration","changeable":true,"resolveProxies":true,"lowerBound":1,"id":397,"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":"method","changeable":true,"resolveProxies":true,"lowerBound":1,"id":398,"derived":false},{"container":false,"ordered":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":399,"derived":false},{"container":false,"ordered":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":400,"derived":false},{"id":401,"eClass":"EGenericType"},{"id":402,"eClass":"EGenericType"},{"id":403,"eClass":"EGenericType"},{"id":404,"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":"method","changeable":true,"resolveProxies":true,"lowerBound":1,"id":405,"derived":false},{"container":false,"ordered":true,"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":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":"parameters","changeable":true,"resolveProxies":true,"lowerBound":0,"id":407,"derived":false},{"id":408,"eClass":"EGenericType"},{"id":409,"eClass":"EGenericType"},{"id":410,"eClass":"EGenericType"},{"id":411,"eClass":"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":412,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isVarargs","changeable":true,"lowerBound":0,"iD":false,"id":413,"derived":false},{"container":false,"ordered":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":414,"derived":false},{"id":415,"eClass":"EGenericType"},{"id":416,"eClass":"EGenericType"},{"id":417,"eClass":"EGenericType"},{"id":418,"eClass":"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":419,"derived":false},{"container":false,"ordered":true,"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":420,"derived":false},{"container":false,"ordered":true,"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":421,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"unresolvedItems","changeable":true,"resolveProxies":true,"lowerBound":0,"id":422,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"compilationUnits","changeable":true,"resolveProxies":true,"lowerBound":0,"id":423,"derived":false},{"id":424,"eClass":"EGenericType"},{"id":425,"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":"model","changeable":true,"resolveProxies":true,"lowerBound":1,"id":426,"derived":false},{"id":427,"eClass":"EGenericType"},{"id":428,"eClass":"EGenericType"},{"id":429,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"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":430,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"inheritance","changeable":true,"lowerBound":0,"iD":false,"id":431,"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":"static","changeable":true,"lowerBound":0,"iD":false,"id":432,"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":433,"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":434,"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":"native","changeable":true,"lowerBound":0,"iD":false,"id":435,"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":"strictfp","changeable":true,"lowerBound":0,"iD":false,"id":436,"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":"synchronized","changeable":true,"lowerBound":0,"iD":false,"id":437,"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":"SingleVariableDeclaration","changeable":true,"resolveProxies":true,"lowerBound":0,"id":438,"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":"VariableDeclarationStatement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":439,"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":"VariableDeclarationExpression","changeable":true,"resolveProxies":true,"lowerBound":0,"id":440,"derived":false},{"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"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"modifiers","changeable":true,"resolveProxies":true,"lowerBound":0,"id":452,"derived":false},{"id":453,"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":"modifiers","changeable":true,"resolveProxies":true,"lowerBound":0,"id":454,"derived":false},{"id":455,"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":"modifiers","changeable":true,"resolveProxies":true,"lowerBound":0,"id":456,"derived":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":457,"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":"proxy","changeable":true,"lowerBound":0,"iD":false,"id":458,"derived":false},{"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":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"qualifier","changeable":true,"resolveProxies":true,"lowerBound":0,"id":462,"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":463,"derived":false},{"id":464,"eClass":"EGenericType"},{"id":465,"eClass":"EGenericType"},{"id":466,"eClass":"EGenericType"},{"id":467,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"tokenValue","changeable":true,"lowerBound":0,"iD":false,"id":468,"derived":false},{"id":469,"eClass":"EGenericType"},{"id":470,"eClass":"EGenericType"},{"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":"qualifiedName","changeable":true,"lowerBound":0,"iD":false,"id":472,"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":"ownedPackages","changeable":true,"resolveProxies":true,"lowerBound":0,"id":473,"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":true,"unique":true,"name":"packageDeclaration","changeable":true,"resolveProxies":true,"lowerBound":1,"id":474,"derived":false},{"id":475,"eClass":"EGenericType"},{"id":476,"eClass":"EGenericType"},{"id":477,"eClass":"EGenericType"},{"id":478,"eClass":"EGenericType"},{"id":479,"eClass":"EGenericType"},{"id":480,"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":481,"derived":false},{"container":false,"ordered":true,"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":482,"derived":false},{"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":"expression","changeable":true,"resolveProxies":true,"lowerBound":1,"id":486,"derived":false},{"id":487,"eClass":"EGenericType"},{"id":488,"eClass":"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":489,"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":"operand","changeable":true,"resolveProxies":true,"lowerBound":1,"id":490,"derived":false},{"id":491,"eClass":"EGenericType"},{"id":492,"eClass":"EGenericType"},{"id":493,"eClass":"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":494,"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":"operand","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"},{"id":500,"eClass":"EGenericType"},{"id":501,"eClass":"EGenericType"},{"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"},{"container":false,"ordered":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":509,"derived":false},{"id":510,"eClass":"EGenericType"},{"id":511,"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":"varargs","changeable":true,"lowerBound":0,"iD":false,"id":512,"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":"originalRank","changeable":true,"lowerBound":0,"iD":false,"id":513,"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":"type","changeable":true,"resolveProxies":true,"lowerBound":1,"id":514,"derived":false},{"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"},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"originalRank","changeable":true,"lowerBound":0,"iD":false,"id":523,"derived":false},{"id":524,"eClass":"EGenericType"},{"id":525,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"escapedValue","changeable":true,"lowerBound":0,"iD":false,"id":526,"derived":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":527,"derived":false},{"id":528,"eClass":"EGenericType"},{"id":529,"eClass":"EGenericType"},{"id":530,"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":531,"derived":false},{"container":false,"ordered":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":532,"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":"method","changeable":true,"resolveProxies":true,"lowerBound":1,"id":533,"derived":false},{"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":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"field","changeable":true,"resolveProxies":true,"lowerBound":1,"id":538,"derived":false},{"container":false,"ordered":true,"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":539,"derived":false},{"id":540,"eClass":"EGenericType"},{"id":541,"eClass":"EGenericType"},{"id":542,"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":"arguments","changeable":true,"resolveProxies":true,"lowerBound":0,"id":543,"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":"method","changeable":true,"resolveProxies":true,"lowerBound":1,"id":544,"derived":false},{"container":false,"ordered":true,"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":545,"derived":false},{"id":546,"eClass":"EGenericType"},{"id":547,"eClass":"EGenericType"},{"id":548,"eClass":"EGenericType"},{"id":549,"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":"default","changeable":true,"lowerBound":0,"iD":false,"id":550,"derived":false},{"container":false,"ordered":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":551,"derived":false},{"id":552,"eClass":"EGenericType"},{"id":553,"eClass":"EGenericType"},{"id":554,"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":"expression","changeable":true,"resolveProxies":true,"lowerBound":1,"id":555,"derived":false},{"container":false,"ordered":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":556,"derived":false},{"id":557,"eClass":"EGenericType"},{"id":558,"eClass":"EGenericType"},{"id":559,"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":"body","changeable":true,"resolveProxies":true,"lowerBound":1,"id":560,"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":"expression","changeable":true,"resolveProxies":true,"lowerBound":1,"id":561,"derived":false},{"id":562,"eClass":"EGenericType"},{"id":563,"eClass":"EGenericType"},{"id":564,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"tagName","changeable":true,"lowerBound":0,"iD":false,"id":565,"derived":false},{"container":false,"ordered":true,"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":566,"derived":false},{"id":567,"eClass":"EGenericType"},{"id":568,"eClass":"EGenericType"},{"id":569,"eClass":"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":570,"derived":false},{"id":571,"eClass":"EGenericType"},{"id":572,"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":"qualifier","changeable":true,"resolveProxies":true,"lowerBound":0,"id":573,"derived":false},{"id":574,"eClass":"EGenericType"},{"id":575,"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":"expression","changeable":true,"resolveProxies":true,"lowerBound":1,"id":576,"derived":false},{"id":577,"eClass":"EGenericType"},{"id":578,"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":"typeParameters","changeable":true,"resolveProxies":true,"lowerBound":0,"id":579,"derived":false},{"id":580,"eClass":"EGenericType"},{"id":581,"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":"declaration","changeable":true,"resolveProxies":true,"lowerBound":1,"id":582,"derived":false},{"id":583,"eClass":"EGenericType"},{"id":584,"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":585,"derived":false},{"id":586,"eClass":"EGenericType"},{"id":587,"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":"bounds","changeable":true,"resolveProxies":true,"lowerBound":0,"id":588,"derived":false},{"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":"body","changeable":true,"resolveProxies":true,"lowerBound":1,"id":591,"derived":false},{"container":false,"ordered":true,"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":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":"catchClauses","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"},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"extraArrayDimensions","changeable":true,"lowerBound":0,"iD":false,"id":599,"derived":false},{"container":false,"ordered":true,"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":600,"derived":false},{"id":601,"eClass":"EGenericType"},{"id":602,"eClass":"EGenericType"},{"id":603,"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":604,"derived":false},{"container":false,"ordered":true,"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":605,"derived":false},{"id":606,"eClass":"EGenericType"},{"id":607,"eClass":"EGenericType"},{"id":608,"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":"variableDeclarationExpression","changeable":true,"resolveProxies":true,"lowerBound":0,"id":609,"derived":false},{"id":610,"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":"variableDeclarationStatement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":611,"derived":false},{"id":612,"eClass":"EGenericType"},{"id":613,"eClass":"EGenericType"},{"id":614,"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":"fragments","changeable":true,"resolveProxies":true,"lowerBound":0,"id":615,"derived":false},{"id":616,"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":"extraArrayDimensions","changeable":true,"lowerBound":0,"iD":false,"id":617,"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":"type","changeable":true,"resolveProxies":true,"lowerBound":1,"id":618,"derived":false},{"id":619,"eClass":"EGenericType"},{"id":620,"eClass":"EGenericType"},{"id":621,"eClass":"EGenericType"},{"id":622,"eClass":"EGenericType"},{"id":623,"eClass":"EGenericType"},{"name":"none","id":624,"value":0,"literal":"none","eClass":"EEnumLiteral"},{"name":"public","id":625,"value":1,"literal":"public","eClass":"EEnumLiteral"},{"name":"private","id":626,"value":2,"literal":"private","eClass":"EEnumLiteral"},{"name":"protected","id":627,"value":3,"literal":"protected","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":"expression","changeable":true,"resolveProxies":true,"lowerBound":1,"id":628,"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":"body","changeable":true,"resolveProxies":true,"lowerBound":1,"id":629,"derived":false},{"id":630,"eClass":"EGenericType"},{"id":631,"eClass":"EGenericType"},{"id":632,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"isUpperBound","changeable":true,"lowerBound":0,"iD":false,"id":633,"derived":false},{"container":false,"ordered":true,"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":634,"derived":false},{"id":635,"eClass":"EGenericType"},{"id":636,"eClass":"EGenericType"},{"id":637,"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":1,"target":0},{"source":1,"target":17},{"source":1,"target":104},{"source":1,"target":105},{"source":1,"target":106},{"source":1,"target":107},{"source":1,"target":108},{"source":1,"target":109},{"source":1,"target":110},{"source":1,"target":111},{"source":1,"target":112},{"source":104,"target":113},{"source":104,"target":1},{"source":105,"target":114},{"source":105,"target":1},{"source":106,"target":17},{"source":106,"target":115},{"source":106,"target":1},{"source":106,"target":116},{"source":115,"target":17},{"source":107,"target":25},{"source":107,"target":117},{"source":107,"target":1},{"source":117,"target":25},{"source":108,"target":25},{"source":108,"target":118},{"source":108,"target":1},{"source":118,"target":25},{"source":109,"target":41},{"source":109,"target":119},{"source":109,"target":1},{"source":119,"target":41},{"source":110,"target":62},{"source":110,"target":120},{"source":110,"target":1},{"source":110,"target":121},{"source":120,"target":62},{"source":111,"target":58},{"source":111,"target":122},{"source":111,"target":1},{"source":122,"target":58},{"source":112,"target":17},{"source":2,"target":0},{"source":2,"target":35},{"source":2,"target":123},{"source":2,"target":124},{"source":2,"target":125},{"source":123,"target":58},{"source":123,"target":126},{"source":123,"target":2},{"source":126,"target":58},{"source":124,"target":3},{"source":124,"target":127},{"source":124,"target":2},{"source":127,"target":3},{"source":125,"target":35},{"source":3,"target":0},{"source":3,"target":57},{"source":3,"target":128},{"source":3,"target":129},{"source":3,"target":130},{"source":128,"target":58},{"source":128,"target":131},{"source":128,"target":3},{"source":131,"target":58},{"source":129,"target":35},{"source":129,"target":132},{"source":129,"target":3},{"source":132,"target":35},{"source":130,"target":57},{"source":4,"target":0},{"source":4,"target":1},{"source":4,"target":133},{"source":133,"target":1},{"source":5,"target":0},{"source":5,"target":17},{"source":5,"target":134},{"source":5,"target":135},{"source":5,"target":136},{"source":134,"target":35},{"source":134,"target":137},{"source":134,"target":5},{"source":137,"target":35},{"source":135,"target":58},{"source":135,"target":138},{"source":135,"target":5},{"source":138,"target":58},{"source":136,"target":17},{"source":6,"target":0},{"source":6,"target":14},{"source":6,"target":139},{"source":6,"target":140},{"source":6,"target":141},{"source":139,"target":17},{"source":139,"target":142},{"source":139,"target":6},{"source":139,"target":143},{"source":142,"target":17},{"source":140,"target":24},{"source":140,"target":144},{"source":140,"target":6},{"source":140,"target":145},{"source":144,"target":24},{"source":141,"target":14},{"source":7,"target":0},{"source":7,"target":35},{"source":7,"target":146},{"source":7,"target":147},{"source":7,"target":148},{"source":146,"target":35},{"source":146,"target":149},{"source":146,"target":7},{"source":149,"target":35},{"source":147,"target":35},{"source":147,"target":150},{"source":147,"target":7},{"source":150,"target":35},{"source":148,"target":35},{"source":8,"target":0},{"source":8,"target":35},{"source":8,"target":151},{"source":8,"target":152},{"source":8,"target":153},{"source":8,"target":154},{"source":151,"target":35},{"source":151,"target":155},{"source":151,"target":8},{"source":155,"target":35},{"source":152,"target":9},{"source":152,"target":156},{"source":152,"target":8},{"source":156,"target":9},{"source":153,"target":58},{"source":153,"target":157},{"source":153,"target":8},{"source":157,"target":58},{"source":154,"target":35},{"source":9,"target":0},{"source":9,"target":35},{"source":9,"target":158},{"source":9,"target":159},{"source":158,"target":35},{"source":158,"target":160},{"source":158,"target":9},{"source":160,"target":35},{"source":159,"target":35},{"source":10,"target":0},{"source":10,"target":35},{"source":10,"target":161},{"source":10,"target":162},{"source":161,"target":35},{"source":161,"target":163},{"source":161,"target":10},{"source":163,"target":35},{"source":162,"target":35},{"source":11,"target":0},{"source":11,"target":61},{"source":11,"target":164},{"source":11,"target":165},{"source":11,"target":166},{"source":11,"target":167},{"source":164,"target":168},{"source":164,"target":11},{"source":165,"target":169},{"source":165,"target":11},{"source":166,"target":58},{"source":166,"target":170},{"source":166,"target":11},{"source":170,"target":58},{"source":167,"target":61},{"source":12,"target":0},{"source":12,"target":79},{"source":12,"target":171},{"source":12,"target":172},{"source":12,"target":173},{"source":171,"target":35},{"source":171,"target":174},{"source":171,"target":12},{"source":174,"target":35},{"source":172,"target":35},{"source":172,"target":175},{"source":172,"target":12},{"source":175,"target":35},{"source":173,"target":79},{"source":13,"target":0},{"source":13,"target":35},{"source":13,"target":176},{"source":13,"target":177},{"source":13,"target":178},{"source":13,"target":179},{"source":176,"target":35},{"source":176,"target":180},{"source":176,"target":13},{"source":180,"target":35},{"source":177,"target":181},{"source":177,"target":13},{"source":178,"target":35},{"source":178,"target":182},{"source":178,"target":13},{"source":182,"target":35},{"source":179,"target":35},{"source":14,"target":0},{"source":14,"target":183},{"source":14,"target":184},{"source":14,"target":185},{"source":14,"target":186},{"source":14,"target":187},{"source":14,"target":188},{"source":14,"target":189},{"source":183,"target":25},{"source":183,"target":190},{"source":183,"target":14},{"source":190,"target":25},{"source":184,"target":191},{"source":184,"target":14},{"source":185,"target":192},{"source":185,"target":14},{"source":186,"target":193},{"source":186,"target":14},{"source":187,"target":194},{"source":187,"target":14},{"source":188,"target":195},{"source":188,"target":14},{"source":189,"target":26},{"source":189,"target":196},{"source":189,"target":14},{"source":196,"target":26},{"source":15,"target":0},{"source":15,"target":79},{"source":15,"target":197},{"source":15,"target":198},{"source":197,"target":79},{"source":197,"target":199},{"source":197,"target":15},{"source":199,"target":79},{"source":198,"target":79},{"source":16,"target":0},{"source":16,"target":25},{"source":16,"target":200},{"source":200,"target":25},{"source":17,"target":0},{"source":17,"target":57},{"source":17,"target":201},{"source":17,"target":116},{"source":17,"target":202},{"source":17,"target":143},{"source":17,"target":203},{"source":17,"target":204},{"source":201,"target":205},{"source":201,"target":17},{"source":116,"target":1},{"source":116,"target":206},{"source":116,"target":17},{"source":116,"target":106},{"source":206,"target":1},{"source":202,"target":2},{"source":202,"target":207},{"source":202,"target":17},{"source":207,"target":2},{"source":143,"target":6},{"source":143,"target":208},{"source":143,"target":17},{"source":143,"target":139},{"source":208,"target":6},{"source":203,"target":56},{"source":203,"target":209},{"source":203,"target":17},{"source":203,"target":210},{"source":209,"target":56},{"source":204,"target":57},{"source":18,"target":0},{"source":18,"target":35},{"source":18,"target":211},{"source":18,"target":212},{"source":211,"target":213},{"source":211,"target":18},{"source":212,"target":35},{"source":19,"target":0},{"source":19,"target":79},{"source":19,"target":214},{"source":19,"target":215},{"source":214,"target":58},{"source":214,"target":216},{"source":214,"target":19},{"source":216,"target":58},{"source":215,"target":79},{"source":20,"target":0},{"source":20,"target":35},{"source":20,"target":217},{"source":20,"target":218},{"source":20,"target":219},{"source":217,"target":35},{"source":217,"target":220},{"source":217,"target":20},{"source":220,"target":35},{"source":218,"target":58},{"source":218,"target":221},{"source":218,"target":20},{"source":221,"target":58},{"source":219,"target":35},{"source":21,"target":0},{"source":21,"target":79},{"source":21,"target":222},{"source":21,"target":223},{"source":21,"target":224},{"source":222,"target":78},{"source":222,"target":225},{"source":222,"target":21},{"source":222,"target":226},{"source":225,"target":78},{"source":223,"target":15},{"source":223,"target":227},{"source":223,"target":21},{"source":227,"target":15},{"source":224,"target":79},{"source":22,"target":0},{"source":22,"target":35},{"source":22,"target":228},{"source":22,"target":229},{"source":22,"target":230},{"source":228,"target":231},{"source":228,"target":22},{"source":229,"target":232},{"source":229,"target":22},{"source":230,"target":35},{"source":23,"target":0},{"source":23,"target":91},{"source":23,"target":233},{"source":23,"target":234},{"source":233,"target":58},{"source":233,"target":235},{"source":233,"target":23},{"source":235,"target":58},{"source":234,"target":91},{"source":24,"target":0},{"source":24,"target":35},{"source":24,"target":145},{"source":24,"target":236},{"source":24,"target":237},{"source":24,"target":238},{"source":24,"target":239},{"source":24,"target":240},{"source":145,"target":6},{"source":145,"target":241},{"source":145,"target":24},{"source":145,"target":140},{"source":241,"target":6},{"source":236,"target":35},{"source":236,"target":242},{"source":236,"target":24},{"source":242,"target":35},{"source":237,"target":35},{"source":237,"target":243},{"source":237,"target":24},{"source":243,"target":35},{"source":238,"target":58},{"source":238,"target":244},{"source":238,"target":24},{"source":244,"target":58},{"source":239,"target":58},{"source":239,"target":245},{"source":239,"target":24},{"source":245,"target":58},{"source":240,"target":35},{"source":25,"target":0},{"source":25,"target":14},{"source":25,"target":246},{"source":25,"target":247},{"source":25,"target":248},{"source":25,"target":249},{"source":246,"target":250},{"source":246,"target":25},{"source":247,"target":251},{"source":247,"target":25},{"source":248,"target":252},{"source":248,"target":25},{"source":249,"target":14},{"source":26,"target":0},{"source":26,"target":57},{"source":26,"target":253},{"source":26,"target":254},{"source":26,"target":255},{"source":26,"target":256},{"source":26,"target":257},{"source":26,"target":258},{"source":26,"target":259},{"source":253,"target":25},{"source":253,"target":260},{"source":253,"target":26},{"source":260,"target":25},{"source":254,"target":41},{"source":254,"target":261},{"source":254,"target":26},{"source":261,"target":41},{"source":255,"target":262},{"source":255,"target":26},{"source":256,"target":263},{"source":256,"target":26},{"source":257,"target":62},{"source":257,"target":264},{"source":257,"target":26},{"source":264,"target":62},{"source":258,"target":1},{"source":258,"target":265},{"source":258,"target":26},{"source":265,"target":1},{"source":259,"target":57},{"source":27,"target":0},{"source":27,"target":35},{"source":27,"target":266},{"source":27,"target":267},{"source":27,"target":268},{"source":27,"target":269},{"source":266,"target":35},{"source":266,"target":270},{"source":266,"target":27},{"source":270,"target":35},{"source":267,"target":35},{"source":267,"target":271},{"source":267,"target":27},{"source":271,"target":35},{"source":268,"target":35},{"source":268,"target":272},{"source":268,"target":27},{"source":272,"target":35},{"source":269,"target":35},{"source":28,"target":0},{"source":28,"target":79},{"source":28,"target":273},{"source":28,"target":274},{"source":28,"target":275},{"source":273,"target":35},{"source":273,"target":276},{"source":273,"target":28},{"source":276,"target":35},{"source":274,"target":58},{"source":274,"target":277},{"source":274,"target":28},{"source":277,"target":58},{"source":275,"target":79},{"source":29,"target":0},{"source":29,"target":79},{"source":29,"target":278},{"source":29,"target":279},{"source":278,"target":58},{"source":278,"target":280},{"source":278,"target":29},{"source":280,"target":58},{"source":279,"target":79},{"source":30,"target":0},{"source":30,"target":79},{"source":30,"target":281},{"source":30,"target":282},{"source":30,"target":283},{"source":281,"target":35},{"source":281,"target":284},{"source":281,"target":30},{"source":284,"target":35},{"source":282,"target":79},{"source":282,"target":285},{"source":282,"target":30},{"source":285,"target":79},{"source":283,"target":79},{"source":31,"target":0},{"source":31,"target":79},{"source":31,"target":286},{"source":286,"target":79},{"source":32,"target":0},{"source":32,"target":1},{"source":32,"target":287},{"source":32,"target":288},{"source":287,"target":33},{"source":287,"target":289},{"source":287,"target":32},{"source":289,"target":33},{"source":288,"target":1},{"source":33,"target":0},{"source":33,"target":17},{"source":33,"target":290},{"source":33,"target":291},{"source":33,"target":292},{"source":290,"target":6},{"source":290,"target":293},{"source":290,"target":33},{"source":293,"target":6},{"source":291,"target":35},{"source":291,"target":294},{"source":291,"target":33},{"source":294,"target":35},{"source":292,"target":17},{"source":34,"target":0},{"source":34,"target":79},{"source":34,"target":295},{"source":34,"target":296},{"source":34,"target":297},{"source":34,"target":298},{"source":295,"target":79},{"source":295,"target":299},{"source":295,"target":34},{"source":299,"target":79},{"source":296,"target":35},{"source":296,"target":300},{"source":296,"target":34},{"source":300,"target":35},{"source":297,"target":78},{"source":297,"target":301},{"source":297,"target":34},{"source":297,"target":302},{"source":301,"target":78},{"source":298,"target":79},{"source":35,"target":0},{"source":35,"target":14},{"source":35,"target":303},{"source":35,"target":304},{"source":303,"target":305},{"source":303,"target":35},{"source":304,"target":14},{"source":36,"target":0},{"source":36,"target":79},{"source":36,"target":306},{"source":36,"target":307},{"source":306,"target":35},{"source":306,"target":308},{"source":306,"target":36},{"source":308,"target":35},{"source":307,"target":79},{"source":37,"target":0},{"source":37,"target":35},{"source":37,"target":309},{"source":37,"target":310},{"source":37,"target":311},{"source":309,"target":58},{"source":309,"target":312},{"source":309,"target":37},{"source":312,"target":58},{"source":310,"target":35},{"source":310,"target":313},{"source":310,"target":37},{"source":313,"target":35},{"source":311,"target":35},{"source":38,"target":0},{"source":38,"target":17},{"source":38,"target":314},{"source":38,"target":315},{"source":38,"target":316},{"source":314,"target":58},{"source":314,"target":317},{"source":314,"target":38},{"source":317,"target":58},{"source":315,"target":99},{"source":315,"target":318},{"source":315,"target":38},{"source":315,"target":319},{"source":318,"target":99},{"source":316,"target":17},{"source":39,"target":0},{"source":39,"target":79},{"source":39,"target":320},{"source":39,"target":321},{"source":39,"target":322},{"source":39,"target":323},{"source":39,"target":324},{"source":320,"target":35},{"source":320,"target":325},{"source":320,"target":39},{"source":325,"target":35},{"source":321,"target":35},{"source":321,"target":326},{"source":321,"target":39},{"source":326,"target":35},{"source":322,"target":35},{"source":322,"target":327},{"source":322,"target":39},{"source":327,"target":35},{"source":323,"target":79},{"source":323,"target":328},{"source":323,"target":39},{"source":328,"target":79},{"source":324,"target":79},{"source":40,"target":0},{"source":40,"target":79},{"source":40,"target":329},{"source":40,"target":330},{"source":40,"target":331},{"source":40,"target":332},{"source":329,"target":35},{"source":329,"target":333},{"source":329,"target":40},{"source":333,"target":35},{"source":330,"target":79},{"source":330,"target":334},{"source":330,"target":40},{"source":334,"target":79},{"source":331,"target":79},{"source":331,"target":335},{"source":331,"target":40},{"source":335,"target":79},{"source":332,"target":79},{"source":41,"target":0},{"source":41,"target":14},{"source":41,"target":336},{"source":41,"target":337},{"source":41,"target":338},{"source":41,"target":339},{"source":336,"target":340},{"source":336,"target":41},{"source":337,"target":341},{"source":337,"target":41},{"source":338,"target":58},{"source":338,"target":342},{"source":338,"target":41},{"source":342,"target":58},{"source":339,"target":14},{"source":42,"target":0},{"source":42,"target":35},{"source":42,"target":343},{"source":42,"target":344},{"source":42,"target":345},{"source":42,"target":346},{"source":42,"target":347},{"source":343,"target":348},{"source":343,"target":42},{"source":344,"target":35},{"source":344,"target":349},{"source":344,"target":42},{"source":349,"target":35},{"source":345,"target":35},{"source":345,"target":350},{"source":345,"target":42},{"source":350,"target":35},{"source":346,"target":35},{"source":346,"target":351},{"source":346,"target":42},{"source":351,"target":35},{"source":347,"target":35},{"source":43,"target":0},{"source":43,"target":352},{"source":43,"target":353},{"source":352,"target":43},{"source":353,"target":43},{"source":44,"target":0},{"source":44,"target":17},{"source":44,"target":354},{"source":44,"target":355},{"source":354,"target":15},{"source":354,"target":356},{"source":354,"target":44},{"source":356,"target":15},{"source":355,"target":17},{"source":45,"target":0},{"source":45,"target":35},{"source":45,"target":357},{"source":45,"target":358},{"source":45,"target":359},{"source":357,"target":58},{"source":357,"target":360},{"source":357,"target":45},{"source":360,"target":58},{"source":358,"target":35},{"source":358,"target":361},{"source":358,"target":45},{"source":361,"target":35},{"source":359,"target":35},{"source":46,"target":0},{"source":46,"target":91},{"source":46,"target":362},{"source":362,"target":91},{"source":47,"target":0},{"source":47,"target":25},{"source":47,"target":363},{"source":47,"target":364},{"source":363,"target":87},{"source":363,"target":365},{"source":363,"target":47},{"source":365,"target":87},{"source":364,"target":25},{"source":48,"target":0},{"source":48,"target":57},{"source":48,"target":79},{"source":48,"target":366},{"source":48,"target":367},{"source":48,"target":368},{"source":366,"target":79},{"source":366,"target":369},{"source":366,"target":48},{"source":369,"target":79},{"source":367,"target":57},{"source":368,"target":79},{"source":49,"target":0},{"source":49,"target":25},{"source":49,"target":370},{"source":370,"target":25},{"source":50,"target":0},{"source":50,"target":14},{"source":50,"target":371},{"source":50,"target":372},{"source":50,"target":373},{"source":371,"target":58},{"source":371,"target":374},{"source":371,"target":50},{"source":374,"target":58},{"source":372,"target":58},{"source":372,"target":375},{"source":372,"target":50},{"source":375,"target":58},{"source":373,"target":14},{"source":51,"target":0},{"source":51,"target":17},{"source":51,"target":376},{"source":51,"target":377},{"source":51,"target":378},{"source":51,"target":379},{"source":51,"target":380},{"source":51,"target":381},{"source":51,"target":382},{"source":51,"target":383},{"source":51,"target":384},{"source":51,"target":385},{"source":51,"target":386},{"source":376,"target":387},{"source":376,"target":51},{"source":377,"target":388},{"source":377,"target":51},{"source":378,"target":389},{"source":378,"target":51},{"source":379,"target":15},{"source":379,"target":390},{"source":379,"target":51},{"source":390,"target":15},{"source":380,"target":58},{"source":380,"target":391},{"source":380,"target":51},{"source":391,"target":58},{"source":381,"target":58},{"source":381,"target":392},{"source":381,"target":51},{"source":392,"target":58},{"source":382,"target":94},{"source":382,"target":393},{"source":382,"target":51},{"source":393,"target":94},{"source":383,"target":51},{"source":383,"target":394},{"source":383,"target":51},{"source":383,"target":384},{"source":394,"target":51},{"source":384,"target":51},{"source":384,"target":395},{"source":384,"target":51},{"source":384,"target":383},{"source":395,"target":51},{"source":385,"target":78},{"source":385,"target":396},{"source":385,"target":51},{"source":385,"target":397},{"source":396,"target":78},{"source":386,"target":17},{"source":52,"target":0},{"source":52,"target":35},{"source":52,"target":398},{"source":52,"target":399},{"source":52,"target":400},{"source":52,"target":401},{"source":398,"target":58},{"source":398,"target":402},{"source":398,"target":52},{"source":402,"target":58},{"source":399,"target":35},{"source":399,"target":403},{"source":399,"target":52},{"source":403,"target":35},{"source":400,"target":35},{"source":400,"target":404},{"source":400,"target":52},{"source":404,"target":35},{"source":401,"target":35},{"source":53,"target":0},{"source":53,"target":14},{"source":53,"target":405},{"source":53,"target":406},{"source":53,"target":407},{"source":53,"target":408},{"source":405,"target":58},{"source":405,"target":409},{"source":405,"target":53},{"source":409,"target":58},{"source":406,"target":58},{"source":406,"target":410},{"source":406,"target":53},{"source":410,"target":58},{"source":407,"target":54},{"source":407,"target":411},{"source":407,"target":53},{"source":411,"target":54},{"source":408,"target":14},{"source":54,"target":0},{"source":54,"target":14},{"source":54,"target":412},{"source":54,"target":413},{"source":54,"target":414},{"source":54,"target":415},{"source":412,"target":416},{"source":412,"target":54},{"source":413,"target":417},{"source":413,"target":54},{"source":414,"target":58},{"source":414,"target":418},{"source":414,"target":54},{"source":418,"target":58},{"source":415,"target":14},{"source":55,"target":0},{"source":55,"target":419},{"source":55,"target":420},{"source":55,"target":421},{"source":55,"target":422},{"source":55,"target":423},{"source":419,"target":424},{"source":419,"target":55},{"source":420,"target":62},{"source":420,"target":425},{"source":420,"target":55},{"source":420,"target":426},{"source":425,"target":62},{"source":421,"target":61},{"source":421,"target":427},{"source":421,"target":55},{"source":427,"target":61},{"source":422,"target":96},{"source":422,"target":428},{"source":422,"target":55},{"source":428,"target":96},{"source":423,"target":26},{"source":423,"target":429},{"source":423,"target":55},{"source":429,"target":26},{"source":56,"target":0},{"source":56,"target":14},{"source":56,"target":430},{"source":56,"target":431},{"source":56,"target":432},{"source":56,"target":433},{"source":56,"target":434},{"source":56,"target":435},{"source":56,"target":436},{"source":56,"target":437},{"source":56,"target":210},{"source":56,"target":438},{"source":56,"target":439},{"source":56,"target":440},{"source":56,"target":441},{"source":430,"target":442},{"source":430,"target":56},{"source":431,"target":443},{"source":431,"target":56},{"source":432,"target":444},{"source":432,"target":56},{"source":433,"target":445},{"source":433,"target":56},{"source":434,"target":446},{"source":434,"target":56},{"source":435,"target":447},{"source":435,"target":56},{"source":436,"target":448},{"source":436,"target":56},{"source":437,"target":449},{"source":437,"target":56},{"source":210,"target":17},{"source":210,"target":450},{"source":210,"target":56},{"source":210,"target":203},{"source":450,"target":17},{"source":438,"target":78},{"source":438,"target":451},{"source":438,"target":56},{"source":438,"target":452},{"source":451,"target":78},{"source":439,"target":100},{"source":439,"target":453},{"source":439,"target":56},{"source":439,"target":454},{"source":453,"target":100},{"source":440,"target":98},{"source":440,"target":455},{"source":440,"target":56},{"source":440,"target":456},{"source":455,"target":98},{"source":441,"target":14},{"source":57,"target":0},{"source":57,"target":14},{"source":57,"target":457},{"source":57,"target":458},{"source":57,"target":459},{"source":457,"target":460},{"source":457,"target":57},{"source":458,"target":461},{"source":458,"target":57},{"source":459,"target":14},{"source":58,"target":0},{"source":58,"target":35},{"source":58,"target":462},{"source":58,"target":463},{"source":58,"target":464},{"source":462,"target":58},{"source":462,"target":465},{"source":462,"target":58},{"source":465,"target":58},{"source":463,"target":57},{"source":463,"target":466},{"source":463,"target":58},{"source":466,"target":57},{"source":464,"target":35},{"source":59,"target":0},{"source":59,"target":35},{"source":59,"target":467},{"source":467,"target":35},{"source":60,"target":0},{"source":60,"target":35},{"source":60,"target":468},{"source":60,"target":469},{"source":468,"target":470},{"source":468,"target":60},{"source":469,"target":35},{"source":61,"target":0},{"source":61,"target":57},{"source":61,"target":471},{"source":471,"target":57},{"source":62,"target":0},{"source":62,"target":57},{"source":62,"target":472},{"source":62,"target":121},{"source":62,"target":426},{"source":62,"target":473},{"source":62,"target":474},{"source":62,"target":475},{"source":472,"target":476},{"source":472,"target":62},{"source":121,"target":1},{"source":121,"target":477},{"source":121,"target":62},{"source":121,"target":110},{"source":477,"target":1},{"source":426,"target":55},{"source":426,"target":478},{"source":426,"target":62},{"source":426,"target":420},{"source":478,"target":55},{"source":473,"target":62},{"source":473,"target":479},{"source":473,"target":62},{"source":473,"target":474},{"source":479,"target":62},{"source":474,"target":62},{"source":474,"target":480},{"source":474,"target":62},{"source":474,"target":473},{"source":480,"target":62},{"source":475,"target":57},{"source":63,"target":0},{"source":63,"target":61},{"source":63,"target":481},{"source":63,"target":482},{"source":63,"target":483},{"source":481,"target":58},{"source":481,"target":484},{"source":481,"target":63},{"source":484,"target":58},{"source":482,"target":58},{"source":482,"target":485},{"source":482,"target":63},{"source":485,"target":58},{"source":483,"target":61},{"source":64,"target":0},{"source":64,"target":35},{"source":64,"target":486},{"source":64,"target":487},{"source":486,"target":35},{"source":486,"target":488},{"source":486,"target":64},{"source":488,"target":35},{"source":487,"target":35},{"source":65,"target":0},{"source":65,"target":35},{"source":65,"target":489},{"source":65,"target":490},{"source":65,"target":491},{"source":489,"target":492},{"source":489,"target":65},{"source":490,"target":35},{"source":490,"target":493},{"source":490,"target":65},{"source":493,"target":35},{"source":491,"target":35},{"source":66,"target":0},{"source":66,"target":35},{"source":66,"target":494},{"source":66,"target":495},{"source":66,"target":496},{"source":494,"target":497},{"source":494,"target":66},{"source":495,"target":35},{"source":495,"target":498},{"source":495,"target":66},{"source":498,"target":35},{"source":496,"target":35},{"source":67,"target":0},{"source":67,"target":61},{"source":67,"target":499},{"source":499,"target":61},{"source":68,"target":0},{"source":68,"target":67},{"source":68,"target":500},{"source":500,"target":67},{"source":69,"target":0},{"source":69,"target":67},{"source":69,"target":501},{"source":501,"target":67},{"source":70,"target":0},{"source":70,"target":67},{"source":70,"target":502},{"source":502,"target":67},{"source":71,"target":0},{"source":71,"target":67},{"source":71,"target":503},{"source":503,"target":67},{"source":72,"target":0},{"source":72,"target":67},{"source":72,"target":504},{"source":504,"target":67},{"source":73,"target":0},{"source":73,"target":67},{"source":73,"target":505},{"source":505,"target":67},{"source":74,"target":0},{"source":74,"target":67},{"source":74,"target":506},{"source":506,"target":67},{"source":75,"target":0},{"source":75,"target":67},{"source":75,"target":507},{"source":507,"target":67},{"source":76,"target":0},{"source":76,"target":67},{"source":76,"target":508},{"source":508,"target":67},{"source":77,"target":0},{"source":77,"target":79},{"source":77,"target":509},{"source":77,"target":510},{"source":509,"target":35},{"source":509,"target":511},{"source":509,"target":77},{"source":511,"target":35},{"source":510,"target":79},{"source":78,"target":0},{"source":78,"target":97},{"source":78,"target":452},{"source":78,"target":512},{"source":78,"target":513},{"source":78,"target":514},{"source":78,"target":397},{"source":78,"target":226},{"source":78,"target":302},{"source":78,"target":515},{"source":452,"target":56},{"source":452,"target":516},{"source":452,"target":78},{"source":452,"target":438},{"source":516,"target":56},{"source":512,"target":517},{"source":512,"target":78},{"source":513,"target":518},{"source":513,"target":78},{"source":514,"target":58},{"source":514,"target":519},{"source":514,"target":78},{"source":519,"target":58},{"source":397,"target":51},{"source":397,"target":520},{"source":397,"target":78},{"source":397,"target":385},{"source":520,"target":51},{"source":226,"target":21},{"source":226,"target":521},{"source":226,"target":78},{"source":226,"target":222},{"source":521,"target":21},{"source":302,"target":34},{"source":302,"target":522},{"source":302,"target":78},{"source":302,"target":297},{"source":522,"target":34},{"source":515,"target":97},{"source":79,"target":0},{"source":79,"target":14},{"source":79,"target":523},{"source":79,"target":524},{"source":523,"target":525},{"source":523,"target":79},{"source":524,"target":14},{"source":80,"target":0},{"source":80,"target":35},{"source":80,"target":526},{"source":80,"target":527},{"source":80,"target":528},{"source":526,"target":529},{"source":526,"target":80},{"source":527,"target":530},{"source":527,"target":80},{"source":528,"target":35},{"source":81,"target":0},{"source":81,"target":79},{"source":81,"target":531},{"source":81,"target":532},{"source":81,"target":533},{"source":81,"target":534},{"source":531,"target":35},{"source":531,"target":535},{"source":531,"target":81},{"source":535,"target":35},{"source":532,"target":35},{"source":532,"target":536},{"source":532,"target":81},{"source":536,"target":35},{"source":533,"target":58},{"source":533,"target":537},{"source":533,"target":81},{"source":537,"target":58},{"source":534,"target":79},{"source":82,"target":0},{"source":82,"target":35},{"source":82,"target":538},{"source":82,"target":539},{"source":82,"target":540},{"source":538,"target":58},{"source":538,"target":541},{"source":538,"target":82},{"source":541,"target":58},{"source":539,"target":58},{"source":539,"target":542},{"source":539,"target":82},{"source":542,"target":58},{"source":540,"target":35},{"source":83,"target":0},{"source":83,"target":35},{"source":83,"target":543},{"source":83,"target":544},{"source":83,"target":545},{"source":83,"target":546},{"source":543,"target":35},{"source":543,"target":547},{"source":543,"target":83},{"source":547,"target":35},{"source":544,"target":58},{"source":544,"target":548},{"source":544,"target":83},{"source":548,"target":58},{"source":545,"target":58},{"source":545,"target":549},{"source":545,"target":83},{"source":549,"target":58},{"source":546,"target":35},{"source":84,"target":0},{"source":84,"target":79},{"source":84,"target":550},{"source":84,"target":551},{"source":84,"target":552},{"source":550,"target":553},{"source":550,"target":84},{"source":551,"target":35},{"source":551,"target":554},{"source":551,"target":84},{"source":554,"target":35},{"source":552,"target":79},{"source":85,"target":0},{"source":85,"target":79},{"source":85,"target":555},{"source":85,"target":556},{"source":85,"target":557},{"source":555,"target":35},{"source":555,"target":558},{"source":555,"target":85},{"source":558,"target":35},{"source":556,"target":79},{"source":556,"target":559},{"source":556,"target":85},{"source":559,"target":79},{"source":557,"target":79},{"source":86,"target":0},{"source":86,"target":79},{"source":86,"target":560},{"source":86,"target":561},{"source":86,"target":562},{"source":560,"target":15},{"source":560,"target":563},{"source":560,"target":86},{"source":563,"target":15},{"source":561,"target":35},{"source":561,"target":564},{"source":561,"target":86},{"source":564,"target":35},{"source":562,"target":79},{"source":87,"target":0},{"source":87,"target":14},{"source":87,"target":565},{"source":87,"target":566},{"source":87,"target":567},{"source":565,"target":568},{"source":565,"target":87},{"source":566,"target":14},{"source":566,"target":569},{"source":566,"target":87},{"source":569,"target":14},{"source":567,"target":14},{"source":88,"target":0},{"source":88,"target":14},{"source":88,"target":570},{"source":88,"target":571},{"source":570,"target":572},{"source":570,"target":88},{"source":571,"target":14},{"source":89,"target":0},{"source":89,"target":35},{"source":89,"target":573},{"source":89,"target":574},{"source":573,"target":58},{"source":573,"target":575},{"source":573,"target":89},{"source":575,"target":58},{"source":574,"target":35},{"source":90,"target":0},{"source":90,"target":79},{"source":90,"target":576},{"source":90,"target":577},{"source":576,"target":35},{"source":576,"target":578},{"source":576,"target":90},{"source":578,"target":35},{"source":577,"target":79},{"source":91,"target":0},{"source":91,"target":1},{"source":91,"target":579},{"source":91,"target":580},{"source":579,"target":94},{"source":579,"target":581},{"source":579,"target":91},{"source":581,"target":94},{"source":580,"target":1},{"source":92,"target":0},{"source":92,"target":79},{"source":92,"target":582},{"source":92,"target":583},{"source":582,"target":1},{"source":582,"target":584},{"source":582,"target":92},{"source":584,"target":1},{"source":583,"target":79},{"source":93,"target":0},{"source":93,"target":35},{"source":93,"target":585},{"source":93,"target":586},{"source":585,"target":58},{"source":585,"target":587},{"source":585,"target":93},{"source":587,"target":58},{"source":586,"target":35},{"source":94,"target":0},{"source":94,"target":57},{"source":94,"target":588},{"source":94,"target":589},{"source":588,"target":58},{"source":588,"target":590},{"source":588,"target":94},{"source":590,"target":58},{"source":589,"target":57},{"source":95,"target":0},{"source":95,"target":79},{"source":95,"target":591},{"source":95,"target":592},{"source":95,"target":593},{"source":95,"target":594},{"source":591,"target":15},{"source":591,"target":595},{"source":591,"target":95},{"source":595,"target":15},{"source":592,"target":15},{"source":592,"target":596},{"source":592,"target":95},{"source":596,"target":15},{"source":593,"target":21},{"source":593,"target":597},{"source":593,"target":95},{"source":597,"target":21},{"source":594,"target":79},{"source":96,"target":0},{"source":96,"target":57},{"source":96,"target":598},{"source":598,"target":57},{"source":97,"target":0},{"source":97,"target":57},{"source":97,"target":599},{"source":97,"target":600},{"source":97,"target":601},{"source":599,"target":602},{"source":599,"target":97},{"source":600,"target":35},{"source":600,"target":603},{"source":600,"target":97},{"source":603,"target":35},{"source":601,"target":57},{"source":98,"target":0},{"source":98,"target":35},{"source":98,"target":604},{"source":98,"target":605},{"source":98,"target":456},{"source":98,"target":606},{"source":604,"target":58},{"source":604,"target":607},{"source":604,"target":98},{"source":607,"target":58},{"source":605,"target":99},{"source":605,"target":608},{"source":605,"target":98},{"source":605,"target":609},{"source":608,"target":99},{"source":456,"target":56},{"source":456,"target":610},{"source":456,"target":98},{"source":456,"target":440},{"source":610,"target":56},{"source":606,"target":35},{"source":99,"target":0},{"source":99,"target":97},{"source":99,"target":319},{"source":99,"target":611},{"source":99,"target":609},{"source":99,"target":612},{"source":319,"target":38},{"source":319,"target":613},{"source":319,"target":99},{"source":319,"target":315},{"source":613,"target":38},{"source":611,"target":100},{"source":611,"target":614},{"source":611,"target":99},{"source":611,"target":615},{"source":614,"target":100},{"source":609,"target":98},{"source":609,"target":616},{"source":609,"target":99},{"source":609,"target":605},{"source":616,"target":98},{"source":612,"target":97},{"source":100,"target":0},{"source":100,"target":79},{"source":100,"target":617},{"source":100,"target":618},{"source":100,"target":615},{"source":100,"target":454},{"source":100,"target":619},{"source":617,"target":620},{"source":617,"target":100},{"source":618,"target":58},{"source":618,"target":621},{"source":618,"target":100},{"source":621,"target":58},{"source":615,"target":99},{"source":615,"target":622},{"source":615,"target":100},{"source":615,"target":611},{"source":622,"target":99},{"source":454,"target":56},{"source":454,"target":623},{"source":454,"target":100},{"source":454,"target":439},{"source":623,"target":56},{"source":619,"target":79},{"source":101,"target":0},{"source":101,"target":624},{"source":101,"target":625},{"source":101,"target":626},{"source":101,"target":627},{"source":624,"target":101},{"source":625,"target":101},{"source":626,"target":101},{"source":627,"target":101},{"source":102,"target":0},{"source":102,"target":79},{"source":102,"target":628},{"source":102,"target":629},{"source":102,"target":630},{"source":628,"target":35},{"source":628,"target":631},{"source":628,"target":102},{"source":631,"target":35},{"source":629,"target":79},{"source":629,"target":632},{"source":629,"target":102},{"source":632,"target":79},{"source":630,"target":79},{"source":103,"target":0},{"source":103,"target":61},{"source":103,"target":633},{"source":103,"target":634},{"source":103,"target":635},{"source":633,"target":636},{"source":633,"target":103},{"source":634,"target":58},{"source":634,"target":637},{"source":634,"target":103},{"source":637,"target":58},{"source":635,"target":61}],"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="idm" nsURI="idm_v1" nsPrefix="idm"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="qualified" value="false"/> </eAnnotations> <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="idm" upperBound="-2" eType="#//IdmType" 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="idm"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="IdmType"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="idm_._type"/> <details key="kind" value="elementOnly"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="roles" upperBound="2" eType="#//Roles" containment="true" resolveProxies="false"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="roles"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="users" upperBound="-1" eType="#//Users" containment="true" resolveProxies="false"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="users"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Roles"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="roles"/> <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"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="type" eType="#//TypeType" unsettable="true"> <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:EEnum" name="TypeType"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="type_._type"/> </eAnnotations> <eLiterals name="Human"/> <eLiterals name="Services" value="1"/> </eClassifiers> <eClassifiers xsi:type="ecore:EDataType" name="TypeTypeObject" instanceClassName="org.eclipse.emf.common.util.Enumerator"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="type_._type:Object"/> <details key="baseType" value="type_._type"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Users"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="users"/> <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"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="role" 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="role"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> </ecore:EPackage>
github:ecore:/data/AniketosEU/Secure-Service-Specification-and-Deployment/Service Composition Framework/eu.aniketos.mtm.idm/model/idm.ecore
ecore
idm DocumentRoot mixed xMLNSPrefixMap xSISchemaLocation idm IdmType roles users Roles value type TypeType Human Human Services Services TypeTypeObject org.eclipse.emf.common.util.Enumerator org.eclipse.emf.common.util.Enumerator Users value role
null
{"directed":true,"nodes":[{"nsPrefix":"idm","nsURI":"idm_v1","name":"idm","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DocumentRoot","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IdmType","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Roles","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"TypeType","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":"TypeTypeObject","instanceClass":"org.eclipse.emf.common.util.Enumerator","id":5,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Users","instanceClass":null,"abstract":false,"id":6,"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":"mixed","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":true,"unique":true,"name":"xMLNSPrefixMap","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":true,"unique":true,"name":"xSISchemaLocation","changeable":true,"resolveProxies":false,"lowerBound":0,"id":9,"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":"idm","changeable":true,"resolveProxies":false,"lowerBound":0,"id":10,"derived":true},{"id":11,"eClass":"EGenericType"},{"id":12,"eClass":"EGenericType"},{"id":13,"eClass":"EGenericType"},{"id":14,"eClass":"EGenericType"},{"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":"roles","changeable":true,"resolveProxies":false,"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":"users","changeable":true,"resolveProxies":false,"lowerBound":0,"id":16,"derived":false},{"id":17,"eClass":"EGenericType"},{"id":18,"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":19,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":true,"name":"type","changeable":true,"lowerBound":0,"iD":false,"id":20,"derived":false},{"id":21,"eClass":"EGenericType"},{"id":22,"eClass":"EGenericType"},{"name":"Human","id":23,"value":0,"literal":"Human","eClass":"EEnumLiteral"},{"name":"Services","id":24,"value":1,"literal":"Services","eClass":"EEnumLiteral"},{"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":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":"role","changeable":true,"lowerBound":0,"iD":false,"id":26,"derived":false},{"id":27,"eClass":"EGenericType"},{"id":28,"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":12},{"source":8,"target":1},{"source":9,"target":13},{"source":9,"target":1},{"source":10,"target":2},{"source":10,"target":14},{"source":10,"target":1},{"source":14,"target":2},{"source":2,"target":0},{"source":2,"target":15},{"source":2,"target":16},{"source":15,"target":3},{"source":15,"target":17},{"source":15,"target":2},{"source":17,"target":3},{"source":16,"target":6},{"source":16,"target":18},{"source":16,"target":2},{"source":18,"target":6},{"source":3,"target":0},{"source":3,"target":19},{"source":3,"target":20},{"source":19,"target":21},{"source":19,"target":3},{"source":20,"target":4},{"source":20,"target":22},{"source":20,"target":3},{"source":22,"target":4},{"source":4,"target":0},{"source":4,"target":23},{"source":4,"target":24},{"source":23,"target":4},{"source":24,"target":4},{"source":5,"target":0},{"source":6,"target":0},{"source":6,"target":25},{"source":6,"target":26},{"source":25,"target":27},{"source":25,"target":6},{"source":26,"target":28},{"source":26,"target":6}],"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="TypeC" nsURI="platform:/resource/A2BLazy/Metamodel/TypeC.ecore" nsPrefix="tpC"> <eClassifiers xsi:type="ecore:EClass" name="CElement"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="elementName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> </ecore:EPackage>
github:ecore:/data/NMFCode/ATL2NMFS/resources/A2BLazy/TypeC.ecore
ecore
TypeC CElement elementName
null
{"directed":true,"nodes":[{"nsPrefix":"tpC","nsURI":"platform:/resource/A2BLazy/Metamodel/TypeC.ecore","name":"TypeC","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CElement","instanceClass":null,"abstract":false,"id":1,"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":"elementName","changeable":true,"lowerBound":0,"iD":false,"id":2,"derived":false},{"id":3,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":1,"target":0},{"source":1,"target":2},{"source":2,"target":3},{"source":2,"target":1}],"multigraph":true}
true
<?xml version="1.0" encoding="ISO-8859-1"?> <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="ecoreDiff" nsURI="http://www.eclipse.org/emf/2002/EcoreDiff" nsPrefix="ecoreDiff"> <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: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:EClass" name="EObject"/> <eClassifiers xsi:type="ecore:EDataType" name="EObject_EEList_EObject" instanceTypeName="EObject_EEList_EObject"/> <eClassifiers xsi:type="ecore:EDataType" name="EObject_ETreeIterator_EObject" instanceTypeName="EObject_ETreeIterator_EObject"/> <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"/> </eAnnotations> <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="eStructuralFeatures" upperBound="-1" eType="#//EStructuralFeature" containment="true" resolveProxies="false" eOpposite="#//EStructuralFeature/eContainingClass"/> <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="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> <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" eType="#//EClassifier_EJavaClass_Wildcard" changeable="false" volatile="true" transient="true" derived="true"/> <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="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:EDataType" name="EClassifier_EJavaClass_Wildcard" instanceTypeName="EClassifier_EJavaClass_Wildcard"/> <eClassifiers xsi:type="ecore:EDataType" name="EJavaObject" instanceClassName="java.lang.Object"/> <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> <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="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"/> <eStructuralFeatures xsi:type="ecore:EReference" name="eClassifiers" upperBound="-1" eType="#//EClassifier" containment="true" eOpposite="#//EClassifier/ePackage"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="EFactory" eSuperTypes="#//EModelElement"> <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="EDataType" eSuperTypes="#//EClassifier"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="serializable" eType="#//EBoolean"/> </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: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:EClass" name="EGenericType" eSuperTypes="#//EObject"> <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" volatile="true" 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="EClassifier_Wildcard"/> <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:EClass" name="EOperation" eSuperTypes="#//ETypedElement"> <eAnnotations source="http://www.eclipse.org/emf/2002/Ecore"> <details key="constraints" value="UniqueParameterNames UniqueTypeParameterNames NoRepeatingVoid"/> </eAnnotations> <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> <eStructuralFeatures xsi:type="ecore:EReference" name="eContainingClass" eType="#//EClass" changeable="false" transient="true" resolveProxies="false" eOpposite="#//EClass/eOperations"/> </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"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="unique" eType="#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="lowerBound" eType="#//EInt"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="upperBound" eType="#//EInt"/> <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="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EObject" 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: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="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="EStructuralFeature" abstract="true" eSuperTypes="#//ETypedElement"> <eStructuralFeatures xsi:type="ecore:EReference" name="eContainingClass" eType="#//EClass" changeable="false" transient="true" resolveProxies="false" eOpposite="#//EClass/eStructuralFeatures"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="changeable" eType="#//EBoolean"/> <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"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="EStructuralFeature_Wildcard"/> <eClassifiers xsi:type="ecore:EDataType" name="EStructuralFeature_EJavaClass_Wildcard" instanceTypeName="EStructuralFeature_EJavaClass_Wildcard"/> <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"/> </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"/> <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:EDataType" name="EResource" instanceClassName="org.eclipse.emf.ecore.resource.Resource"/> <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> <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:EDataType" name="EEnumerator" instanceClassName="org.eclipse.emf.common.util.Enumerator"/> <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="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"/> <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"> <eTypeParameters name="E"/> </eClassifiers> <eClassifiers xsi:type="ecore:EDataType" name="EFeatureMap" instanceClassName="org.eclipse.emf.ecore.util.FeatureMap"/> <eClassifiers xsi:type="ecore:EDataType" name="EFeatureMapEntry" instanceClassName="org.eclipse.emf.ecore.util.FeatureMap$Entry"/> <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="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="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"> <eTypeParameters name="K"/> <eTypeParameters name="V"/> </eClassifiers> <eClassifiers xsi:type="ecore:EDataType" name="EResourceSet" instanceClassName="org.eclipse.emf.ecore.resource.ResourceSet"/> <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="ETreeIterator" instanceClassName="org.eclipse.emf.common.util.TreeIterator"> <eTypeParameters name="E"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="EModelElement" abstract="true" eSuperTypes="#//EObject #//DifferenceElement"> <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="DifferenceModel"> <eStructuralFeatures xsi:type="ecore:EReference" name="differenceElements" upperBound="-1" eType="#//DifferenceElement" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="DifferenceElement"/> <eClassifiers xsi:type="ecore:EClass" name="AddedEAnnotation" eSuperTypes="#//EAnnotation"/> <eClassifiers xsi:type="ecore:EClass" name="DeletedEAnnotation" eSuperTypes="#//EAnnotation"> <eStructuralFeatures xsi:type="ecore:EReference" name="applicationElement" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EObject"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ChangedEAnnotation" eSuperTypes="#//EAnnotation"> <eStructuralFeatures xsi:type="ecore:EReference" name="updatedElement" eType="#//EAnnotation"/> <eStructuralFeatures xsi:type="ecore:EReference" name="applicationElement" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EObject"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="AddedEStringToStringMapEntry" instanceClassName="java.util.Map$Entry" eSuperTypes="#//EStringToStringMapEntry"/> <eClassifiers xsi:type="ecore:EClass" name="DeletedEStringToStringMapEntry" instanceClassName="java.util.Map$Entry" eSuperTypes="#//EStringToStringMapEntry"> <eStructuralFeatures xsi:type="ecore:EReference" name="applicationElement" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EObject"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ChangedEStringToStringMapEntry" instanceClassName="java.util.Map$Entry" eSuperTypes="#//EStringToStringMapEntry"> <eStructuralFeatures xsi:type="ecore:EReference" name="updatedElement" eType="#//EStringToStringMapEntry"/> <eStructuralFeatures xsi:type="ecore:EReference" name="applicationElement" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EObject"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="AddedEObject" eSuperTypes="#//EObject"/> <eClassifiers xsi:type="ecore:EClass" name="DeletedEObject" eSuperTypes="#//EObject"> <eStructuralFeatures xsi:type="ecore:EReference" name="applicationElement" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EObject"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ChangedEObject" eSuperTypes="#//EObject"> <eStructuralFeatures xsi:type="ecore:EReference" name="updatedElement" eType="#//EObject"/> <eStructuralFeatures xsi:type="ecore:EReference" name="applicationElement" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EObject"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="AddedEClass" eSuperTypes="#//EClass"/> <eClassifiers xsi:type="ecore:EClass" name="DeletedEClass" eSuperTypes="#//EClass"> <eStructuralFeatures xsi:type="ecore:EReference" name="applicationElement" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EObject"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ChangedEClass" eSuperTypes="#//EClass"> <eStructuralFeatures xsi:type="ecore:EReference" name="updatedElement" eType="#//EClass"/> <eStructuralFeatures xsi:type="ecore:EReference" name="applicationElement" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EObject"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="AddedEClassifier" eSuperTypes="#//EClassifier"/> <eClassifiers xsi:type="ecore:EClass" name="DeletedEClassifier" eSuperTypes="#//EClassifier"> <eStructuralFeatures xsi:type="ecore:EReference" name="applicationElement" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EObject"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ChangedEClassifier" eSuperTypes="#//EClassifier"> <eStructuralFeatures xsi:type="ecore:EReference" name="updatedElement" eType="#//EClassifier"/> <eStructuralFeatures xsi:type="ecore:EReference" name="applicationElement" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EObject"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="AddedENamedElement" eSuperTypes="#//ENamedElement"/> <eClassifiers xsi:type="ecore:EClass" name="DeletedENamedElement" eSuperTypes="#//ENamedElement"> <eStructuralFeatures xsi:type="ecore:EReference" name="applicationElement" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EObject"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ChangedENamedElement" eSuperTypes="#//ENamedElement"> <eStructuralFeatures xsi:type="ecore:EReference" name="updatedElement" eType="#//ENamedElement"/> <eStructuralFeatures xsi:type="ecore:EReference" name="applicationElement" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EObject"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="AddedEPackage" eSuperTypes="#//EPackage"/> <eClassifiers xsi:type="ecore:EClass" name="DeletedEPackage" eSuperTypes="#//EPackage"> <eStructuralFeatures xsi:type="ecore:EReference" name="applicationElement" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EObject"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ChangedEPackage" eSuperTypes="#//EPackage"> <eStructuralFeatures xsi:type="ecore:EReference" name="updatedElement" eType="#//EPackage"/> <eStructuralFeatures xsi:type="ecore:EReference" name="applicationElement" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EObject"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="AddedEFactory" eSuperTypes="#//EFactory"/> <eClassifiers xsi:type="ecore:EClass" name="DeletedEFactory" eSuperTypes="#//EFactory"> <eStructuralFeatures xsi:type="ecore:EReference" name="applicationElement" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EObject"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ChangedEFactory" eSuperTypes="#//EFactory"> <eStructuralFeatures xsi:type="ecore:EReference" name="updatedElement" eType="#//EFactory"/> <eStructuralFeatures xsi:type="ecore:EReference" name="applicationElement" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EObject"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="AddedEDataType" eSuperTypes="#//EDataType"/> <eClassifiers xsi:type="ecore:EClass" name="DeletedEDataType" eSuperTypes="#//EDataType"> <eStructuralFeatures xsi:type="ecore:EReference" name="applicationElement" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EObject"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ChangedEDataType" eSuperTypes="#//EDataType"> <eStructuralFeatures xsi:type="ecore:EReference" name="updatedElement" eType="#//EDataType"/> <eStructuralFeatures xsi:type="ecore:EReference" name="applicationElement" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EObject"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="AddedETypeParameter" eSuperTypes="#//ETypeParameter"/> <eClassifiers xsi:type="ecore:EClass" name="DeletedETypeParameter" eSuperTypes="#//ETypeParameter"> <eStructuralFeatures xsi:type="ecore:EReference" name="applicationElement" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EObject"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ChangedETypeParameter" eSuperTypes="#//ETypeParameter"> <eStructuralFeatures xsi:type="ecore:EReference" name="updatedElement" eType="#//ETypeParameter"/> <eStructuralFeatures xsi:type="ecore:EReference" name="applicationElement" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EObject"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="AddedEGenericType" eSuperTypes="#//EGenericType"/> <eClassifiers xsi:type="ecore:EClass" name="DeletedEGenericType" eSuperTypes="#//EGenericType"> <eStructuralFeatures xsi:type="ecore:EReference" name="applicationElement" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EObject"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ChangedEGenericType" eSuperTypes="#//EGenericType"> <eStructuralFeatures xsi:type="ecore:EReference" name="updatedElement" eType="#//EGenericType"/> <eStructuralFeatures xsi:type="ecore:EReference" name="applicationElement" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EObject"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="AddedEClassifier_Wildcard" eSuperTypes="#//EClassifier_Wildcard"/> <eClassifiers xsi:type="ecore:EClass" name="DeletedEClassifier_Wildcard" eSuperTypes="#//EClassifier_Wildcard"> <eStructuralFeatures xsi:type="ecore:EReference" name="applicationElement" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EObject"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ChangedEClassifier_Wildcard" eSuperTypes="#//EClassifier_Wildcard"> <eStructuralFeatures xsi:type="ecore:EReference" name="updatedElement" eType="#//EClassifier_Wildcard"/> <eStructuralFeatures xsi:type="ecore:EReference" name="applicationElement" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EObject"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="AddedEOperation" eSuperTypes="#//EOperation"/> <eClassifiers xsi:type="ecore:EClass" name="DeletedEOperation" eSuperTypes="#//EOperation"> <eStructuralFeatures xsi:type="ecore:EReference" name="applicationElement" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EObject"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ChangedEOperation" eSuperTypes="#//EOperation"> <eStructuralFeatures xsi:type="ecore:EReference" name="updatedElement" eType="#//EOperation"/> <eStructuralFeatures xsi:type="ecore:EReference" name="applicationElement" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EObject"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="AddedETypedElement" eSuperTypes="#//ETypedElement"/> <eClassifiers xsi:type="ecore:EClass" name="DeletedETypedElement" eSuperTypes="#//ETypedElement"> <eStructuralFeatures xsi:type="ecore:EReference" name="applicationElement" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EObject"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ChangedETypedElement" eSuperTypes="#//ETypedElement"> <eStructuralFeatures xsi:type="ecore:EReference" name="updatedElement" eType="#//ETypedElement"/> <eStructuralFeatures xsi:type="ecore:EReference" name="applicationElement" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EObject"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="AddedEParameter" eSuperTypes="#//EParameter"/> <eClassifiers xsi:type="ecore:EClass" name="DeletedEParameter" eSuperTypes="#//EParameter"> <eStructuralFeatures xsi:type="ecore:EReference" name="applicationElement" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EObject"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ChangedEParameter" eSuperTypes="#//EParameter"> <eStructuralFeatures xsi:type="ecore:EReference" name="updatedElement" eType="#//EParameter"/> <eStructuralFeatures xsi:type="ecore:EReference" name="applicationElement" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EObject"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="AddedEAttribute" eSuperTypes="#//EAttribute"/> <eClassifiers xsi:type="ecore:EClass" name="DeletedEAttribute" eSuperTypes="#//EAttribute"> <eStructuralFeatures xsi:type="ecore:EReference" name="applicationElement" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EObject"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ChangedEAttribute" eSuperTypes="#//EAttribute"> <eStructuralFeatures xsi:type="ecore:EReference" name="updatedElement" eType="#//EAttribute"/> <eStructuralFeatures xsi:type="ecore:EReference" name="applicationElement" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EObject"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="AddedEStructuralFeature" eSuperTypes="#//EStructuralFeature"/> <eClassifiers xsi:type="ecore:EClass" name="DeletedEStructuralFeature" eSuperTypes="#//EStructuralFeature"> <eStructuralFeatures xsi:type="ecore:EReference" name="applicationElement" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EObject"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ChangedEStructuralFeature" eSuperTypes="#//EStructuralFeature"> <eStructuralFeatures xsi:type="ecore:EReference" name="updatedElement" eType="#//EStructuralFeature"/> <eStructuralFeatures xsi:type="ecore:EReference" name="applicationElement" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EObject"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="AddedEStructuralFeature_Wildcard" eSuperTypes="#//EStructuralFeature_Wildcard"/> <eClassifiers xsi:type="ecore:EClass" name="DeletedEStructuralFeature_Wildcard" eSuperTypes="#//EStructuralFeature_Wildcard"> <eStructuralFeatures xsi:type="ecore:EReference" name="applicationElement" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EObject"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ChangedEStructuralFeature_Wildcard" eSuperTypes="#//EStructuralFeature_Wildcard"> <eStructuralFeatures xsi:type="ecore:EReference" name="updatedElement" eType="#//EStructuralFeature_Wildcard"/> <eStructuralFeatures xsi:type="ecore:EReference" name="applicationElement" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EObject"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="AddedEReference" eSuperTypes="#//EReference"/> <eClassifiers xsi:type="ecore:EClass" name="DeletedEReference" eSuperTypes="#//EReference"> <eStructuralFeatures xsi:type="ecore:EReference" name="applicationElement" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EObject"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ChangedEReference" eSuperTypes="#//EReference"> <eStructuralFeatures xsi:type="ecore:EReference" name="updatedElement" eType="#//EReference"/> <eStructuralFeatures xsi:type="ecore:EReference" name="applicationElement" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EObject"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="AddedEEnum" eSuperTypes="#//EEnum"/> <eClassifiers xsi:type="ecore:EClass" name="DeletedEEnum" eSuperTypes="#//EEnum"> <eStructuralFeatures xsi:type="ecore:EReference" name="applicationElement" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EObject"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ChangedEEnum" eSuperTypes="#//EEnum"> <eStructuralFeatures xsi:type="ecore:EReference" name="updatedElement" eType="#//EEnum"/> <eStructuralFeatures xsi:type="ecore:EReference" name="applicationElement" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EObject"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="AddedEEnumLiteral" eSuperTypes="#//EEnumLiteral"/> <eClassifiers xsi:type="ecore:EClass" name="DeletedEEnumLiteral" eSuperTypes="#//EEnumLiteral"> <eStructuralFeatures xsi:type="ecore:EReference" name="applicationElement" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EObject"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ChangedEEnumLiteral" eSuperTypes="#//EEnumLiteral"> <eStructuralFeatures xsi:type="ecore:EReference" name="updatedElement" eType="#//EEnumLiteral"/> <eStructuralFeatures xsi:type="ecore:EReference" name="applicationElement" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EObject"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="AddedEModelElement" eSuperTypes="#//EModelElement"/> <eClassifiers xsi:type="ecore:EClass" name="DeletedEModelElement" eSuperTypes="#//EModelElement"> <eStructuralFeatures xsi:type="ecore:EReference" name="applicationElement" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EObject"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ChangedEModelElement" eSuperTypes="#//EModelElement"> <eStructuralFeatures xsi:type="ecore:EReference" name="updatedElement" eType="#//EModelElement"/> <eStructuralFeatures xsi:type="ecore:EReference" name="applicationElement" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EObject"/> </eClassifiers> </ecore:EPackage>
github:ecore:/data/jdirocco/evoEmig/util/it.univaq.coevolution.emig2ETLEPL.util/metamodel/EcoreDiff.ecore
ecore
ecoreDiff EAnnotation source details eModelElement contents references EString java.lang.String java.lang.String EStringToStringMapEntry java.util.Map$Entry java.util.Map$Entry key value EObject EObject_EEList_EObject java.lang.Object EObject_EEList_EObject EObject_ETreeIterator_EObject java.lang.Object EObject_ETreeIterator_EObject EClass abstract interface eSuperTypes eOperations eAllAttributes eStructuralFeatures eAllReferences eReferences eAttributes eAllContainments eAllOperations eAllStructuralFeatures eAllSuperTypes eIDAttribute eGenericSuperTypes eAllGenericSuperTypes EClassifier instanceClassName instanceClass defaultValue instanceTypeName ePackage eTypeParameters ENamedElement name EClassifier_EJavaClass_Wildcard java.lang.Object EClassifier_EJavaClass_Wildcard EJavaObject java.lang.Object java.lang.Object EPackage nsURI nsPrefix eFactoryInstance eSubpackages eSuperPackage eClassifiers EFactory ePackage EDataType serializable EBoolean boolean boolean ETypeParameter eBounds EGenericType eUpperBound eTypeArguments eRawType eLowerBound eTypeParameter eClassifier EClassifier_Wildcard EInt int int EOperation eTypeParameters eParameters eExceptions eGenericExceptions eContainingClass ETypedElement ordered unique lowerBound upperBound many required eType eGenericType EParameter eOperation EAttribute iD eAttributeType EStructuralFeature eContainingClass changeable volatile transient defaultValueLiteral defaultValue unsettable derived EStructuralFeature_Wildcard EStructuralFeature_EJavaClass_Wildcard java.lang.Object EStructuralFeature_EJavaClass_Wildcard EReference containment container resolveProxies eOpposite eReferenceType eKeys EResource org.eclipse.emf.ecore.resource.Resource org.eclipse.emf.ecore.resource.Resource EEnum eLiterals EEnumLiteral value instance literal eEnum EEnumerator org.eclipse.emf.common.util.Enumerator org.eclipse.emf.common.util.Enumerator EBigDecimal java.math.BigDecimal java.math.BigDecimal EBigInteger java.math.BigInteger java.math.BigInteger 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 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 EIntegerObject java.lang.Integer java.lang.Integer EJavaClass java.lang.Class java.lang.Class T ELong long long ELongObject java.lang.Long java.lang.Long EMap java.util.Map java.util.Map K V EResourceSet org.eclipse.emf.ecore.resource.ResourceSet org.eclipse.emf.ecore.resource.ResourceSet EShort short short EShortObject java.lang.Short java.lang.Short ETreeIterator org.eclipse.emf.common.util.TreeIterator org.eclipse.emf.common.util.TreeIterator E EModelElement eAnnotations DifferenceModel differenceElements DifferenceElement AddedEAnnotation DeletedEAnnotation applicationElement ChangedEAnnotation updatedElement applicationElement AddedEStringToStringMapEntry java.util.Map$Entry java.util.Map$Entry DeletedEStringToStringMapEntry java.util.Map$Entry java.util.Map$Entry applicationElement ChangedEStringToStringMapEntry java.util.Map$Entry java.util.Map$Entry updatedElement applicationElement AddedEObject DeletedEObject applicationElement ChangedEObject updatedElement applicationElement AddedEClass DeletedEClass applicationElement ChangedEClass updatedElement applicationElement AddedEClassifier DeletedEClassifier applicationElement ChangedEClassifier updatedElement applicationElement AddedENamedElement DeletedENamedElement applicationElement ChangedENamedElement updatedElement applicationElement AddedEPackage DeletedEPackage applicationElement ChangedEPackage updatedElement applicationElement AddedEFactory DeletedEFactory applicationElement ChangedEFactory updatedElement applicationElement AddedEDataType DeletedEDataType applicationElement ChangedEDataType updatedElement applicationElement AddedETypeParameter DeletedETypeParameter applicationElement ChangedETypeParameter updatedElement applicationElement AddedEGenericType DeletedEGenericType applicationElement ChangedEGenericType updatedElement applicationElement AddedEClassifier_Wildcard DeletedEClassifier_Wildcard applicationElement ChangedEClassifier_Wildcard updatedElement applicationElement AddedEOperation DeletedEOperation applicationElement ChangedEOperation updatedElement applicationElement AddedETypedElement DeletedETypedElement applicationElement ChangedETypedElement updatedElement applicationElement AddedEParameter DeletedEParameter applicationElement ChangedEParameter updatedElement applicationElement AddedEAttribute DeletedEAttribute applicationElement ChangedEAttribute updatedElement applicationElement AddedEStructuralFeature DeletedEStructuralFeature applicationElement ChangedEStructuralFeature updatedElement applicationElement AddedEStructuralFeature_Wildcard DeletedEStructuralFeature_Wildcard applicationElement ChangedEStructuralFeature_Wildcard updatedElement applicationElement AddedEReference DeletedEReference applicationElement ChangedEReference updatedElement applicationElement AddedEEnum DeletedEEnum applicationElement ChangedEEnum updatedElement applicationElement AddedEEnumLiteral DeletedEEnumLiteral applicationElement ChangedEEnumLiteral updatedElement applicationElement AddedEModelElement DeletedEModelElement applicationElement ChangedEModelElement updatedElement applicationElement
null
{"directed":true,"nodes":[{"nsPrefix":"ecoreDiff","nsURI":"http://www.eclipse.org/emf/2002/EcoreDiff","name":"ecoreDiff","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EAnnotation","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":"java.lang.String","defaultValue":null,"instanceClassName":"java.lang.String","name":"EString","instanceClass":"java.lang.String","id":2,"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":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EObject","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":"EObject_EEList_EObject","defaultValue":null,"instanceClassName":"java.lang.Object","name":"EObject_EEList_EObject","instanceClass":"java.lang.Object","id":5,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"EObject_ETreeIterator_EObject","defaultValue":null,"instanceClassName":"java.lang.Object","name":"EObject_ETreeIterator_EObject","instanceClass":"java.lang.Object","id":6,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EClass","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EClassifier","instanceClass":null,"abstract":true,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ENamedElement","instanceClass":null,"abstract":true,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":"EClassifier_EJavaClass_Wildcard","defaultValue":null,"instanceClassName":"java.lang.Object","name":"EClassifier_EJavaClass_Wildcard","instanceClass":"java.lang.Object","id":10,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.lang.Object","defaultValue":null,"instanceClassName":"java.lang.Object","name":"EJavaObject","instanceClass":"java.lang.Object","id":11,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EPackage","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EFactory","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EDataType","instanceClass":null,"abstract":false,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":"boolean","defaultValue":false,"instanceClassName":"boolean","name":"EBoolean","instanceClass":"boolean","id":15,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ETypeParameter","instanceClass":null,"abstract":false,"id":16,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EGenericType","instanceClass":null,"abstract":false,"id":17,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EClassifier_Wildcard","instanceClass":null,"abstract":false,"id":18,"interface":false,"eClass":"EClass"},{"instanceTypeName":"int","defaultValue":0,"instanceClassName":"int","name":"EInt","instanceClass":"int","id":19,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EOperation","instanceClass":null,"abstract":false,"id":20,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ETypedElement","instanceClass":null,"abstract":true,"id":21,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EParameter","instanceClass":null,"abstract":false,"id":22,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EAttribute","instanceClass":null,"abstract":false,"id":23,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EStructuralFeature","instanceClass":null,"abstract":true,"id":24,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EStructuralFeature_Wildcard","instanceClass":null,"abstract":false,"id":25,"interface":false,"eClass":"EClass"},{"instanceTypeName":"EStructuralFeature_EJavaClass_Wildcard","defaultValue":null,"instanceClassName":"java.lang.Object","name":"EStructuralFeature_EJavaClass_Wildcard","instanceClass":"java.lang.Object","id":26,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EReference","instanceClass":null,"abstract":false,"id":27,"interface":false,"eClass":"EClass"},{"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":28,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EEnum","instanceClass":null,"abstract":false,"id":29,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EEnumLiteral","instanceClass":null,"abstract":false,"id":30,"interface":false,"eClass":"EClass"},{"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":31,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.math.BigDecimal","defaultValue":null,"instanceClassName":"java.math.BigDecimal","name":"EBigDecimal","instanceClass":"java.math.BigDecimal","id":32,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.math.BigInteger","defaultValue":null,"instanceClassName":"java.math.BigInteger","name":"EBigInteger","instanceClass":"java.math.BigInteger","id":33,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.lang.Boolean","defaultValue":null,"instanceClassName":"java.lang.Boolean","name":"EBooleanObject","instanceClass":"java.lang.Boolean","id":34,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"byte","defaultValue":0,"instanceClassName":"byte","name":"EByte","instanceClass":"byte","id":35,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"byte[]","defaultValue":null,"instanceClassName":"byte[]","name":"EByteArray","instanceClass":"[B","id":36,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.lang.Byte","defaultValue":null,"instanceClassName":"java.lang.Byte","name":"EByteObject","instanceClass":"java.lang.Byte","id":37,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"char","defaultValue":"\u0000","instanceClassName":"char","name":"EChar","instanceClass":"char","id":38,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.lang.Character","defaultValue":null,"instanceClassName":"java.lang.Character","name":"ECharacterObject","instanceClass":"java.lang.Character","id":39,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.util.Date","defaultValue":null,"instanceClassName":"java.util.Date","name":"EDate","instanceClass":"java.util.Date","id":40,"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":41,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"double","defaultValue":0.0,"instanceClassName":"double","name":"EDouble","instanceClass":"double","id":42,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.lang.Double","defaultValue":null,"instanceClassName":"java.lang.Double","name":"EDoubleObject","instanceClass":"java.lang.Double","id":43,"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":44,"serializable":true,"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":45,"serializable":true,"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":46,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"float","defaultValue":0.0,"instanceClassName":"float","name":"EFloat","instanceClass":"float","id":47,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.lang.Float","defaultValue":null,"instanceClassName":"java.lang.Float","name":"EFloatObject","instanceClass":"java.lang.Float","id":48,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.lang.Integer","defaultValue":null,"instanceClassName":"java.lang.Integer","name":"EIntegerObject","instanceClass":"java.lang.Integer","id":49,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.lang.Class","defaultValue":null,"instanceClassName":"java.lang.Class","name":"EJavaClass","instanceClass":"java.lang.Class","id":50,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"long","defaultValue":0,"instanceClassName":"long","name":"ELong","instanceClass":"long","id":51,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.lang.Long","defaultValue":null,"instanceClassName":"java.lang.Long","name":"ELongObject","instanceClass":"java.lang.Long","id":52,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.util.Map","defaultValue":null,"instanceClassName":"java.util.Map","name":"EMap","instanceClass":"java.util.Map","id":53,"serializable":true,"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":54,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"short","defaultValue":0,"instanceClassName":"short","name":"EShort","instanceClass":"short","id":55,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.lang.Short","defaultValue":null,"instanceClassName":"java.lang.Short","name":"EShortObject","instanceClass":"java.lang.Short","id":56,"serializable":true,"eClass":"EDataType"},{"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":57,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EModelElement","instanceClass":null,"abstract":true,"id":58,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DifferenceModel","instanceClass":null,"abstract":false,"id":59,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DifferenceElement","instanceClass":null,"abstract":false,"id":60,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AddedEAnnotation","instanceClass":null,"abstract":false,"id":61,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DeletedEAnnotation","instanceClass":null,"abstract":false,"id":62,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ChangedEAnnotation","instanceClass":null,"abstract":false,"id":63,"interface":false,"eClass":"EClass"},{"instanceTypeName":"java.util.Map$Entry","defaultValue":null,"instanceClassName":"java.util.Map$Entry","name":"AddedEStringToStringMapEntry","instanceClass":"java.util.Map$Entry","abstract":false,"id":64,"interface":false,"eClass":"EClass"},{"instanceTypeName":"java.util.Map$Entry","defaultValue":null,"instanceClassName":"java.util.Map$Entry","name":"DeletedEStringToStringMapEntry","instanceClass":"java.util.Map$Entry","abstract":false,"id":65,"interface":false,"eClass":"EClass"},{"instanceTypeName":"java.util.Map$Entry","defaultValue":null,"instanceClassName":"java.util.Map$Entry","name":"ChangedEStringToStringMapEntry","instanceClass":"java.util.Map$Entry","abstract":false,"id":66,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AddedEObject","instanceClass":null,"abstract":false,"id":67,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DeletedEObject","instanceClass":null,"abstract":false,"id":68,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ChangedEObject","instanceClass":null,"abstract":false,"id":69,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AddedEClass","instanceClass":null,"abstract":false,"id":70,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DeletedEClass","instanceClass":null,"abstract":false,"id":71,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ChangedEClass","instanceClass":null,"abstract":false,"id":72,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AddedEClassifier","instanceClass":null,"abstract":false,"id":73,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DeletedEClassifier","instanceClass":null,"abstract":false,"id":74,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ChangedEClassifier","instanceClass":null,"abstract":false,"id":75,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AddedENamedElement","instanceClass":null,"abstract":false,"id":76,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DeletedENamedElement","instanceClass":null,"abstract":false,"id":77,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ChangedENamedElement","instanceClass":null,"abstract":false,"id":78,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AddedEPackage","instanceClass":null,"abstract":false,"id":79,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DeletedEPackage","instanceClass":null,"abstract":false,"id":80,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ChangedEPackage","instanceClass":null,"abstract":false,"id":81,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AddedEFactory","instanceClass":null,"abstract":false,"id":82,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DeletedEFactory","instanceClass":null,"abstract":false,"id":83,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ChangedEFactory","instanceClass":null,"abstract":false,"id":84,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AddedEDataType","instanceClass":null,"abstract":false,"id":85,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DeletedEDataType","instanceClass":null,"abstract":false,"id":86,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ChangedEDataType","instanceClass":null,"abstract":false,"id":87,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AddedETypeParameter","instanceClass":null,"abstract":false,"id":88,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DeletedETypeParameter","instanceClass":null,"abstract":false,"id":89,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ChangedETypeParameter","instanceClass":null,"abstract":false,"id":90,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AddedEGenericType","instanceClass":null,"abstract":false,"id":91,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DeletedEGenericType","instanceClass":null,"abstract":false,"id":92,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ChangedEGenericType","instanceClass":null,"abstract":false,"id":93,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AddedEClassifier_Wildcard","instanceClass":null,"abstract":false,"id":94,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DeletedEClassifier_Wildcard","instanceClass":null,"abstract":false,"id":95,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ChangedEClassifier_Wildcard","instanceClass":null,"abstract":false,"id":96,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AddedEOperation","instanceClass":null,"abstract":false,"id":97,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DeletedEOperation","instanceClass":null,"abstract":false,"id":98,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ChangedEOperation","instanceClass":null,"abstract":false,"id":99,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AddedETypedElement","instanceClass":null,"abstract":false,"id":100,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DeletedETypedElement","instanceClass":null,"abstract":false,"id":101,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ChangedETypedElement","instanceClass":null,"abstract":false,"id":102,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AddedEParameter","instanceClass":null,"abstract":false,"id":103,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DeletedEParameter","instanceClass":null,"abstract":false,"id":104,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ChangedEParameter","instanceClass":null,"abstract":false,"id":105,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AddedEAttribute","instanceClass":null,"abstract":false,"id":106,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DeletedEAttribute","instanceClass":null,"abstract":false,"id":107,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ChangedEAttribute","instanceClass":null,"abstract":false,"id":108,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AddedEStructuralFeature","instanceClass":null,"abstract":false,"id":109,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DeletedEStructuralFeature","instanceClass":null,"abstract":false,"id":110,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ChangedEStructuralFeature","instanceClass":null,"abstract":false,"id":111,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AddedEStructuralFeature_Wildcard","instanceClass":null,"abstract":false,"id":112,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DeletedEStructuralFeature_Wildcard","instanceClass":null,"abstract":false,"id":113,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ChangedEStructuralFeature_Wildcard","instanceClass":null,"abstract":false,"id":114,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AddedEReference","instanceClass":null,"abstract":false,"id":115,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DeletedEReference","instanceClass":null,"abstract":false,"id":116,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ChangedEReference","instanceClass":null,"abstract":false,"id":117,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AddedEEnum","instanceClass":null,"abstract":false,"id":118,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DeletedEEnum","instanceClass":null,"abstract":false,"id":119,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ChangedEEnum","instanceClass":null,"abstract":false,"id":120,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AddedEEnumLiteral","instanceClass":null,"abstract":false,"id":121,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DeletedEEnumLiteral","instanceClass":null,"abstract":false,"id":122,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ChangedEEnumLiteral","instanceClass":null,"abstract":false,"id":123,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AddedEModelElement","instanceClass":null,"abstract":false,"id":124,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DeletedEModelElement","instanceClass":null,"abstract":false,"id":125,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ChangedEModelElement","instanceClass":null,"abstract":false,"id":126,"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":"source","changeable":true,"lowerBound":0,"iD":false,"id":127,"derived":false},{"container":false,"ordered":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":128,"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":129,"derived":false},{"container":false,"ordered":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":130,"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":131,"derived":false},{"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":true,"unsettable":false,"transient":false,"unique":true,"name":"eAnnotations","changeable":true,"resolveProxies":false,"lowerBound":0,"id":136,"derived":false},{"id":137,"eClass":"EGenericType"},{"id":138,"eClass":"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":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,"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":143,"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":144,"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":145,"derived":false},{"container":false,"ordered":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":146,"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":147,"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":148,"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":"eAllReferences","changeable":false,"resolveProxies":true,"lowerBound":0,"id":149,"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":150,"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":151,"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":152,"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":153,"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":154,"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":155,"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":156,"derived":true},{"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":157,"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":158,"derived":true},{"id":159,"eClass":"EGenericType"},{"id":160,"eClass":"EGenericType"},{"id":161,"eClass":"EGenericType"},{"id":162,"eClass":"EGenericType"},{"id":163,"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":164,"derived":false},{"id":165,"eClass":"EGenericType"},{"id":166,"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":167,"derived":false},{"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"},{"id":175,"eClass":"EGenericType"},{"id":176,"eClass":"EGenericType"},{"id":177,"eClass":"EGenericType"},{"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":178,"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":179,"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":180,"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":181,"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":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":"eTypeParameters","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"},{"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":"eClassifiers","changeable":true,"resolveProxies":true,"lowerBound":0,"id":190,"derived":false},{"id":191,"eClass":"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":192,"derived":false},{"id":193,"eClass":"EGenericType"},{"id":194,"eClass":"EGenericType"},{"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":195,"derived":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":196,"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":"eFactoryInstance","changeable":true,"resolveProxies":false,"lowerBound":1,"id":197,"derived":false},{"container":false,"ordered":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":198,"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":199,"derived":false},{"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":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"ePackage","changeable":true,"resolveProxies":false,"lowerBound":1,"id":204,"derived":false},{"id":205,"eClass":"EGenericType"},{"id":206,"eClass":"EGenericType"},{"id":207,"eClass":"EGenericType"},{"id":208,"eClass":"EGenericType"},{"id":209,"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":"serializable","changeable":true,"lowerBound":0,"iD":false,"id":210,"derived":false},{"id":211,"eClass":"EGenericType"},{"id":212,"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":213,"derived":false},{"id":214,"eClass":"EGenericType"},{"id":215,"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":"eUpperBound","changeable":true,"resolveProxies":false,"lowerBound":0,"id":216,"derived":false},{"container":false,"ordered":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":217,"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":"eRawType","changeable":false,"resolveProxies":true,"lowerBound":1,"id":218,"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":219,"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":220,"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":221,"derived":false},{"id":222,"eClass":"EGenericType"},{"id":223,"eClass":"EGenericType"},{"id":224,"eClass":"EGenericType"},{"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":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"eTypeParameters","changeable":true,"resolveProxies":true,"lowerBound":0,"id":229,"derived":false},{"container":false,"ordered":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":230,"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":231,"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":232,"derived":false},{"id":233,"eClass":"EGenericType"},{"id":234,"eClass":"EGenericType"},{"id":235,"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":236,"derived":false},{"id":237,"eClass":"EGenericType"},{"id":238,"eClass":"EGenericType"},{"id":239,"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":"ordered","changeable":true,"lowerBound":0,"iD":false,"id":240,"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":241,"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":242,"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":"upperBound","changeable":true,"lowerBound":0,"iD":false,"id":243,"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":244,"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":245,"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":246,"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":247,"derived":false},{"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"},{"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":259,"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":260,"derived":true},{"id":261,"eClass":"EGenericType"},{"id":262,"eClass":"EGenericType"},{"id":263,"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":"changeable","changeable":true,"lowerBound":0,"iD":false,"id":264,"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":265,"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":266,"derived":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":267,"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":268,"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":269,"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":270,"derived":false},{"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"},{"id":278,"eClass":"EGenericType"},{"id":279,"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":280,"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":281,"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":"resolveProxies","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":false,"unsettable":false,"transient":false,"unique":true,"name":"eOpposite","changeable":true,"resolveProxies":true,"lowerBound":0,"id":283,"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":284,"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":285,"derived":false},{"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"},{"container":false,"ordered":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":293,"derived":false},{"id":294,"eClass":"EGenericType"},{"id":295,"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":296,"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":297,"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":298,"derived":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":299,"derived":false},{"id":300,"eClass":"EGenericType"},{"id":301,"eClass":"EGenericType"},{"id":302,"eClass":"EGenericType"},{"id":303,"eClass":"EGenericType"},{"id":304,"eClass":"EGenericType"},{"name":"E","id":305,"eClass":"ETypeParameter"},{"name":"T","id":306,"eClass":"ETypeParameter"},{"name":"K","id":307,"eClass":"ETypeParameter"},{"name":"V","id":308,"eClass":"ETypeParameter"},{"name":"E","id":309,"eClass":"ETypeParameter"},{"id":310,"eClass":"EGenericType"},{"id":311,"eClass":"EGenericType"},{"id":312,"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":"differenceElements","changeable":true,"resolveProxies":true,"lowerBound":0,"id":313,"derived":false},{"id":314,"eClass":"EGenericType"},{"id":315,"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":"applicationElement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":316,"derived":false},{"id":317,"eClass":"EGenericType"},{"id":318,"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":"updatedElement","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":"applicationElement","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"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"applicationElement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":325,"derived":false},{"id":326,"eClass":"EGenericType"},{"id":327,"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":"updatedElement","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":"applicationElement","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"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"applicationElement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":334,"derived":false},{"id":335,"eClass":"EGenericType"},{"id":336,"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":"updatedElement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":337,"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":"applicationElement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":338,"derived":false},{"id":339,"eClass":"EGenericType"},{"id":340,"eClass":"EGenericType"},{"id":341,"eClass":"EGenericType"},{"id":342,"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":"applicationElement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":343,"derived":false},{"id":344,"eClass":"EGenericType"},{"id":345,"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":"updatedElement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":346,"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":"applicationElement","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"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"applicationElement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":352,"derived":false},{"id":353,"eClass":"EGenericType"},{"id":354,"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":"updatedElement","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":"applicationElement","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"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"applicationElement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":361,"derived":false},{"id":362,"eClass":"EGenericType"},{"id":363,"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":"updatedElement","changeable":true,"resolveProxies":true,"lowerBound":0,"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":"applicationElement","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"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"applicationElement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":370,"derived":false},{"id":371,"eClass":"EGenericType"},{"id":372,"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":"updatedElement","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":false,"unsettable":false,"transient":false,"unique":true,"name":"applicationElement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":374,"derived":false},{"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":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"applicationElement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":379,"derived":false},{"id":380,"eClass":"EGenericType"},{"id":381,"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":"updatedElement","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":"applicationElement","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"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"applicationElement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":388,"derived":false},{"id":389,"eClass":"EGenericType"},{"id":390,"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":"updatedElement","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":"applicationElement","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":"applicationElement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":397,"derived":false},{"id":398,"eClass":"EGenericType"},{"id":399,"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":"updatedElement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":400,"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":"applicationElement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":401,"derived":false},{"id":402,"eClass":"EGenericType"},{"id":403,"eClass":"EGenericType"},{"id":404,"eClass":"EGenericType"},{"id":405,"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":"applicationElement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":406,"derived":false},{"id":407,"eClass":"EGenericType"},{"id":408,"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":"updatedElement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":409,"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":"applicationElement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":410,"derived":false},{"id":411,"eClass":"EGenericType"},{"id":412,"eClass":"EGenericType"},{"id":413,"eClass":"EGenericType"},{"id":414,"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":"applicationElement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":415,"derived":false},{"id":416,"eClass":"EGenericType"},{"id":417,"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":"updatedElement","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":false,"unsettable":false,"transient":false,"unique":true,"name":"applicationElement","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"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"applicationElement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":424,"derived":false},{"id":425,"eClass":"EGenericType"},{"id":426,"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":"updatedElement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":427,"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":"applicationElement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":428,"derived":false},{"id":429,"eClass":"EGenericType"},{"id":430,"eClass":"EGenericType"},{"id":431,"eClass":"EGenericType"},{"id":432,"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":"applicationElement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":433,"derived":false},{"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":"updatedElement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":436,"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":"applicationElement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":437,"derived":false},{"id":438,"eClass":"EGenericType"},{"id":439,"eClass":"EGenericType"},{"id":440,"eClass":"EGenericType"},{"id":441,"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":"applicationElement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":442,"derived":false},{"id":443,"eClass":"EGenericType"},{"id":444,"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":"updatedElement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":445,"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":"applicationElement","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"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"applicationElement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":451,"derived":false},{"id":452,"eClass":"EGenericType"},{"id":453,"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":"updatedElement","changeable":true,"resolveProxies":true,"lowerBound":0,"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":"applicationElement","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"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"applicationElement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":460,"derived":false},{"id":461,"eClass":"EGenericType"},{"id":462,"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":"updatedElement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":463,"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":"applicationElement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":464,"derived":false},{"id":465,"eClass":"EGenericType"},{"id":466,"eClass":"EGenericType"},{"id":467,"eClass":"EGenericType"},{"id":468,"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":"applicationElement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":469,"derived":false},{"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":"updatedElement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":472,"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":"applicationElement","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"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"applicationElement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":478,"derived":false},{"id":479,"eClass":"EGenericType"},{"id":480,"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":"updatedElement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":481,"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":"applicationElement","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":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"applicationElement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":487,"derived":false},{"id":488,"eClass":"EGenericType"},{"id":489,"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":"updatedElement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":490,"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":"applicationElement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":491,"derived":false},{"id":492,"eClass":"EGenericType"},{"id":493,"eClass":"EGenericType"},{"id":494,"eClass":"EGenericType"},{"id":495,"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":"applicationElement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":496,"derived":false},{"id":497,"eClass":"EGenericType"},{"id":498,"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":"updatedElement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":499,"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":"applicationElement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":500,"derived":false},{"id":501,"eClass":"EGenericType"},{"id":502,"eClass":"EGenericType"},{"id":503,"eClass":"EGenericType"},{"id":504,"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":"applicationElement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":505,"derived":false},{"id":506,"eClass":"EGenericType"},{"id":507,"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":"updatedElement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":508,"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":"applicationElement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":509,"derived":false},{"id":510,"eClass":"EGenericType"},{"id":511,"eClass":"EGenericType"},{"id":512,"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":1,"target":0},{"source":1,"target":58},{"source":1,"target":127},{"source":1,"target":128},{"source":1,"target":129},{"source":1,"target":130},{"source":1,"target":131},{"source":1,"target":132},{"source":127,"target":2},{"source":127,"target":133},{"source":127,"target":1},{"source":133,"target":2},{"source":128,"target":3},{"source":128,"target":134},{"source":128,"target":1},{"source":134,"target":3},{"source":129,"target":58},{"source":129,"target":135},{"source":129,"target":1},{"source":129,"target":136},{"source":135,"target":58},{"source":130,"target":4},{"source":130,"target":137},{"source":130,"target":1},{"source":137,"target":4},{"source":131,"target":4},{"source":131,"target":138},{"source":131,"target":1},{"source":138,"target":4},{"source":132,"target":58},{"source":2,"target":0},{"source":3,"target":0},{"source":3,"target":139},{"source":3,"target":140},{"source":139,"target":2},{"source":139,"target":141},{"source":139,"target":3},{"source":141,"target":2},{"source":140,"target":2},{"source":140,"target":142},{"source":140,"target":3},{"source":142,"target":2},{"source":4,"target":0},{"source":5,"target":0},{"source":6,"target":0},{"source":7,"target":0},{"source":7,"target":8},{"source":7,"target":143},{"source":7,"target":144},{"source":7,"target":145},{"source":7,"target":146},{"source":7,"target":147},{"source":7,"target":148},{"source":7,"target":149},{"source":7,"target":150},{"source":7,"target":151},{"source":7,"target":152},{"source":7,"target":153},{"source":7,"target":154},{"source":7,"target":155},{"source":7,"target":156},{"source":7,"target":157},{"source":7,"target":158},{"source":7,"target":159},{"source":143,"target":15},{"source":143,"target":160},{"source":143,"target":7},{"source":160,"target":15},{"source":144,"target":15},{"source":144,"target":161},{"source":144,"target":7},{"source":161,"target":15},{"source":145,"target":7},{"source":145,"target":162},{"source":145,"target":7},{"source":162,"target":7},{"source":146,"target":20},{"source":146,"target":163},{"source":146,"target":7},{"source":146,"target":164},{"source":163,"target":20},{"source":147,"target":23},{"source":147,"target":165},{"source":147,"target":7},{"source":165,"target":23},{"source":148,"target":24},{"source":148,"target":166},{"source":148,"target":7},{"source":148,"target":167},{"source":166,"target":24},{"source":149,"target":27},{"source":149,"target":168},{"source":149,"target":7},{"source":168,"target":27},{"source":150,"target":27},{"source":150,"target":169},{"source":150,"target":7},{"source":169,"target":27},{"source":151,"target":23},{"source":151,"target":170},{"source":151,"target":7},{"source":170,"target":23},{"source":152,"target":27},{"source":152,"target":171},{"source":152,"target":7},{"source":171,"target":27},{"source":153,"target":20},{"source":153,"target":172},{"source":153,"target":7},{"source":172,"target":20},{"source":154,"target":24},{"source":154,"target":173},{"source":154,"target":7},{"source":173,"target":24},{"source":155,"target":7},{"source":155,"target":174},{"source":155,"target":7},{"source":174,"target":7},{"source":156,"target":23},{"source":156,"target":175},{"source":156,"target":7},{"source":175,"target":23},{"source":157,"target":17},{"source":157,"target":176},{"source":157,"target":7},{"source":176,"target":17},{"source":158,"target":17},{"source":158,"target":177},{"source":158,"target":7},{"source":177,"target":17},{"source":159,"target":8},{"source":8,"target":0},{"source":8,"target":9},{"source":8,"target":178},{"source":8,"target":179},{"source":8,"target":180},{"source":8,"target":181},{"source":8,"target":182},{"source":8,"target":183},{"source":8,"target":184},{"source":178,"target":2},{"source":178,"target":185},{"source":178,"target":8},{"source":185,"target":2},{"source":179,"target":10},{"source":179,"target":186},{"source":179,"target":8},{"source":186,"target":10},{"source":180,"target":11},{"source":180,"target":187},{"source":180,"target":8},{"source":187,"target":11},{"source":181,"target":2},{"source":181,"target":188},{"source":181,"target":8},{"source":188,"target":2},{"source":182,"target":12},{"source":182,"target":189},{"source":182,"target":8},{"source":182,"target":190},{"source":189,"target":12},{"source":183,"target":16},{"source":183,"target":191},{"source":183,"target":8},{"source":191,"target":16},{"source":184,"target":9},{"source":9,"target":0},{"source":9,"target":58},{"source":9,"target":192},{"source":9,"target":193},{"source":192,"target":2},{"source":192,"target":194},{"source":192,"target":9},{"source":194,"target":2},{"source":193,"target":58},{"source":10,"target":0},{"source":11,"target":0},{"source":12,"target":0},{"source":12,"target":9},{"source":12,"target":195},{"source":12,"target":196},{"source":12,"target":197},{"source":12,"target":198},{"source":12,"target":199},{"source":12,"target":190},{"source":12,"target":200},{"source":195,"target":2},{"source":195,"target":201},{"source":195,"target":12},{"source":201,"target":2},{"source":196,"target":2},{"source":196,"target":202},{"source":196,"target":12},{"source":202,"target":2},{"source":197,"target":13},{"source":197,"target":203},{"source":197,"target":12},{"source":197,"target":204},{"source":203,"target":13},{"source":198,"target":12},{"source":198,"target":205},{"source":198,"target":12},{"source":198,"target":199},{"source":205,"target":12},{"source":199,"target":12},{"source":199,"target":206},{"source":199,"target":12},{"source":199,"target":198},{"source":206,"target":12},{"source":190,"target":8},{"source":190,"target":207},{"source":190,"target":12},{"source":190,"target":182},{"source":207,"target":8},{"source":200,"target":9},{"source":13,"target":0},{"source":13,"target":58},{"source":13,"target":204},{"source":13,"target":208},{"source":204,"target":12},{"source":204,"target":209},{"source":204,"target":13},{"source":204,"target":197},{"source":209,"target":12},{"source":208,"target":58},{"source":14,"target":0},{"source":14,"target":8},{"source":14,"target":210},{"source":14,"target":211},{"source":210,"target":15},{"source":210,"target":212},{"source":210,"target":14},{"source":212,"target":15},{"source":211,"target":8},{"source":15,"target":0},{"source":16,"target":0},{"source":16,"target":9},{"source":16,"target":213},{"source":16,"target":214},{"source":213,"target":17},{"source":213,"target":215},{"source":213,"target":16},{"source":215,"target":17},{"source":214,"target":9},{"source":17,"target":0},{"source":17,"target":4},{"source":17,"target":216},{"source":17,"target":217},{"source":17,"target":218},{"source":17,"target":219},{"source":17,"target":220},{"source":17,"target":221},{"source":17,"target":222},{"source":216,"target":17},{"source":216,"target":223},{"source":216,"target":17},{"source":223,"target":17},{"source":217,"target":17},{"source":217,"target":224},{"source":217,"target":17},{"source":224,"target":17},{"source":218,"target":8},{"source":218,"target":225},{"source":218,"target":17},{"source":225,"target":8},{"source":219,"target":17},{"source":219,"target":226},{"source":219,"target":17},{"source":226,"target":17},{"source":220,"target":16},{"source":220,"target":227},{"source":220,"target":17},{"source":227,"target":16},{"source":221,"target":8},{"source":221,"target":228},{"source":221,"target":17},{"source":228,"target":8},{"source":222,"target":4},{"source":18,"target":0},{"source":19,"target":0},{"source":20,"target":0},{"source":20,"target":21},{"source":20,"target":229},{"source":20,"target":230},{"source":20,"target":231},{"source":20,"target":232},{"source":20,"target":164},{"source":20,"target":233},{"source":229,"target":16},{"source":229,"target":234},{"source":229,"target":20},{"source":234,"target":16},{"source":230,"target":22},{"source":230,"target":235},{"source":230,"target":20},{"source":230,"target":236},{"source":235,"target":22},{"source":231,"target":8},{"source":231,"target":237},{"source":231,"target":20},{"source":237,"target":8},{"source":232,"target":17},{"source":232,"target":238},{"source":232,"target":20},{"source":238,"target":17},{"source":164,"target":7},{"source":164,"target":239},{"source":164,"target":20},{"source":164,"target":146},{"source":239,"target":7},{"source":233,"target":21},{"source":21,"target":0},{"source":21,"target":9},{"source":21,"target":240},{"source":21,"target":241},{"source":21,"target":242},{"source":21,"target":243},{"source":21,"target":244},{"source":21,"target":245},{"source":21,"target":246},{"source":21,"target":247},{"source":21,"target":248},{"source":240,"target":15},{"source":240,"target":249},{"source":240,"target":21},{"source":249,"target":15},{"source":241,"target":15},{"source":241,"target":250},{"source":241,"target":21},{"source":250,"target":15},{"source":242,"target":19},{"source":242,"target":251},{"source":242,"target":21},{"source":251,"target":19},{"source":243,"target":19},{"source":243,"target":252},{"source":243,"target":21},{"source":252,"target":19},{"source":244,"target":15},{"source":244,"target":253},{"source":244,"target":21},{"source":253,"target":15},{"source":245,"target":15},{"source":245,"target":254},{"source":245,"target":21},{"source":254,"target":15},{"source":246,"target":255},{"source":246,"target":21},{"source":247,"target":17},{"source":247,"target":256},{"source":247,"target":21},{"source":256,"target":17},{"source":248,"target":9},{"source":22,"target":0},{"source":22,"target":21},{"source":22,"target":236},{"source":22,"target":257},{"source":236,"target":20},{"source":236,"target":258},{"source":236,"target":22},{"source":236,"target":230},{"source":258,"target":20},{"source":257,"target":21},{"source":23,"target":0},{"source":23,"target":24},{"source":23,"target":259},{"source":23,"target":260},{"source":23,"target":261},{"source":259,"target":15},{"source":259,"target":262},{"source":259,"target":23},{"source":262,"target":15},{"source":260,"target":14},{"source":260,"target":263},{"source":260,"target":23},{"source":263,"target":14},{"source":261,"target":24},{"source":24,"target":0},{"source":24,"target":21},{"source":24,"target":167},{"source":24,"target":264},{"source":24,"target":265},{"source":24,"target":266},{"source":24,"target":267},{"source":24,"target":268},{"source":24,"target":269},{"source":24,"target":270},{"source":24,"target":271},{"source":167,"target":7},{"source":167,"target":272},{"source":167,"target":24},{"source":167,"target":148},{"source":272,"target":7},{"source":264,"target":15},{"source":264,"target":273},{"source":264,"target":24},{"source":273,"target":15},{"source":265,"target":15},{"source":265,"target":274},{"source":265,"target":24},{"source":274,"target":15},{"source":266,"target":15},{"source":266,"target":275},{"source":266,"target":24},{"source":275,"target":15},{"source":267,"target":2},{"source":267,"target":276},{"source":267,"target":24},{"source":276,"target":2},{"source":268,"target":11},{"source":268,"target":277},{"source":268,"target":24},{"source":277,"target":11},{"source":269,"target":15},{"source":269,"target":278},{"source":269,"target":24},{"source":278,"target":15},{"source":270,"target":15},{"source":270,"target":279},{"source":270,"target":24},{"source":279,"target":15},{"source":271,"target":21},{"source":25,"target":0},{"source":26,"target":0},{"source":27,"target":0},{"source":27,"target":24},{"source":27,"target":280},{"source":27,"target":281},{"source":27,"target":282},{"source":27,"target":283},{"source":27,"target":284},{"source":27,"target":285},{"source":27,"target":286},{"source":280,"target":15},{"source":280,"target":287},{"source":280,"target":27},{"source":287,"target":15},{"source":281,"target":15},{"source":281,"target":288},{"source":281,"target":27},{"source":288,"target":15},{"source":282,"target":15},{"source":282,"target":289},{"source":282,"target":27},{"source":289,"target":15},{"source":283,"target":27},{"source":283,"target":290},{"source":283,"target":27},{"source":290,"target":27},{"source":284,"target":7},{"source":284,"target":291},{"source":284,"target":27},{"source":291,"target":7},{"source":285,"target":23},{"source":285,"target":292},{"source":285,"target":27},{"source":292,"target":23},{"source":286,"target":24},{"source":28,"target":0},{"source":29,"target":0},{"source":29,"target":14},{"source":29,"target":293},{"source":29,"target":294},{"source":293,"target":30},{"source":293,"target":295},{"source":293,"target":29},{"source":293,"target":296},{"source":295,"target":30},{"source":294,"target":14},{"source":30,"target":0},{"source":30,"target":9},{"source":30,"target":297},{"source":30,"target":298},{"source":30,"target":299},{"source":30,"target":296},{"source":30,"target":300},{"source":297,"target":19},{"source":297,"target":301},{"source":297,"target":30},{"source":301,"target":19},{"source":298,"target":31},{"source":298,"target":302},{"source":298,"target":30},{"source":302,"target":31},{"source":299,"target":2},{"source":299,"target":303},{"source":299,"target":30},{"source":303,"target":2},{"source":296,"target":29},{"source":296,"target":304},{"source":296,"target":30},{"source":296,"target":293},{"source":304,"target":29},{"source":300,"target":9},{"source":31,"target":0},{"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":40,"target":0},{"source":41,"target":0},{"source":42,"target":0},{"source":43,"target":0},{"source":44,"target":0},{"source":44,"target":305},{"source":45,"target":0},{"source":46,"target":0},{"source":47,"target":0},{"source":48,"target":0},{"source":49,"target":0},{"source":50,"target":0},{"source":50,"target":306},{"source":51,"target":0},{"source":52,"target":0},{"source":53,"target":0},{"source":53,"target":307},{"source":53,"target":308},{"source":54,"target":0},{"source":55,"target":0},{"source":56,"target":0},{"source":57,"target":0},{"source":57,"target":309},{"source":58,"target":0},{"source":58,"target":4},{"source":58,"target":60},{"source":58,"target":136},{"source":58,"target":310},{"source":58,"target":311},{"source":136,"target":1},{"source":136,"target":312},{"source":136,"target":58},{"source":136,"target":129},{"source":312,"target":1},{"source":310,"target":4},{"source":311,"target":60},{"source":59,"target":0},{"source":59,"target":313},{"source":313,"target":60},{"source":313,"target":314},{"source":313,"target":59},{"source":314,"target":60},{"source":60,"target":0},{"source":61,"target":0},{"source":61,"target":1},{"source":61,"target":315},{"source":315,"target":1},{"source":62,"target":0},{"source":62,"target":1},{"source":62,"target":316},{"source":62,"target":317},{"source":316,"target":318},{"source":316,"target":62},{"source":317,"target":1},{"source":63,"target":0},{"source":63,"target":1},{"source":63,"target":319},{"source":63,"target":320},{"source":63,"target":321},{"source":319,"target":1},{"source":319,"target":322},{"source":319,"target":63},{"source":322,"target":1},{"source":320,"target":323},{"source":320,"target":63},{"source":321,"target":1},{"source":64,"target":0},{"source":64,"target":3},{"source":64,"target":324},{"source":324,"target":3},{"source":65,"target":0},{"source":65,"target":3},{"source":65,"target":325},{"source":65,"target":326},{"source":325,"target":327},{"source":325,"target":65},{"source":326,"target":3},{"source":66,"target":0},{"source":66,"target":3},{"source":66,"target":328},{"source":66,"target":329},{"source":66,"target":330},{"source":328,"target":3},{"source":328,"target":331},{"source":328,"target":66},{"source":331,"target":3},{"source":329,"target":332},{"source":329,"target":66},{"source":330,"target":3},{"source":67,"target":0},{"source":67,"target":4},{"source":67,"target":333},{"source":333,"target":4},{"source":68,"target":0},{"source":68,"target":4},{"source":68,"target":334},{"source":68,"target":335},{"source":334,"target":336},{"source":334,"target":68},{"source":335,"target":4},{"source":69,"target":0},{"source":69,"target":4},{"source":69,"target":337},{"source":69,"target":338},{"source":69,"target":339},{"source":337,"target":4},{"source":337,"target":340},{"source":337,"target":69},{"source":340,"target":4},{"source":338,"target":341},{"source":338,"target":69},{"source":339,"target":4},{"source":70,"target":0},{"source":70,"target":7},{"source":70,"target":342},{"source":342,"target":7},{"source":71,"target":0},{"source":71,"target":7},{"source":71,"target":343},{"source":71,"target":344},{"source":343,"target":345},{"source":343,"target":71},{"source":344,"target":7},{"source":72,"target":0},{"source":72,"target":7},{"source":72,"target":346},{"source":72,"target":347},{"source":72,"target":348},{"source":346,"target":7},{"source":346,"target":349},{"source":346,"target":72},{"source":349,"target":7},{"source":347,"target":350},{"source":347,"target":72},{"source":348,"target":7},{"source":73,"target":0},{"source":73,"target":8},{"source":73,"target":351},{"source":351,"target":8},{"source":74,"target":0},{"source":74,"target":8},{"source":74,"target":352},{"source":74,"target":353},{"source":352,"target":354},{"source":352,"target":74},{"source":353,"target":8},{"source":75,"target":0},{"source":75,"target":8},{"source":75,"target":355},{"source":75,"target":356},{"source":75,"target":357},{"source":355,"target":8},{"source":355,"target":358},{"source":355,"target":75},{"source":358,"target":8},{"source":356,"target":359},{"source":356,"target":75},{"source":357,"target":8},{"source":76,"target":0},{"source":76,"target":9},{"source":76,"target":360},{"source":360,"target":9},{"source":77,"target":0},{"source":77,"target":9},{"source":77,"target":361},{"source":77,"target":362},{"source":361,"target":363},{"source":361,"target":77},{"source":362,"target":9},{"source":78,"target":0},{"source":78,"target":9},{"source":78,"target":364},{"source":78,"target":365},{"source":78,"target":366},{"source":364,"target":9},{"source":364,"target":367},{"source":364,"target":78},{"source":367,"target":9},{"source":365,"target":368},{"source":365,"target":78},{"source":366,"target":9},{"source":79,"target":0},{"source":79,"target":12},{"source":79,"target":369},{"source":369,"target":12},{"source":80,"target":0},{"source":80,"target":12},{"source":80,"target":370},{"source":80,"target":371},{"source":370,"target":372},{"source":370,"target":80},{"source":371,"target":12},{"source":81,"target":0},{"source":81,"target":12},{"source":81,"target":373},{"source":81,"target":374},{"source":81,"target":375},{"source":373,"target":12},{"source":373,"target":376},{"source":373,"target":81},{"source":376,"target":12},{"source":374,"target":377},{"source":374,"target":81},{"source":375,"target":12},{"source":82,"target":0},{"source":82,"target":13},{"source":82,"target":378},{"source":378,"target":13},{"source":83,"target":0},{"source":83,"target":13},{"source":83,"target":379},{"source":83,"target":380},{"source":379,"target":381},{"source":379,"target":83},{"source":380,"target":13},{"source":84,"target":0},{"source":84,"target":13},{"source":84,"target":382},{"source":84,"target":383},{"source":84,"target":384},{"source":382,"target":13},{"source":382,"target":385},{"source":382,"target":84},{"source":385,"target":13},{"source":383,"target":386},{"source":383,"target":84},{"source":384,"target":13},{"source":85,"target":0},{"source":85,"target":14},{"source":85,"target":387},{"source":387,"target":14},{"source":86,"target":0},{"source":86,"target":14},{"source":86,"target":388},{"source":86,"target":389},{"source":388,"target":390},{"source":388,"target":86},{"source":389,"target":14},{"source":87,"target":0},{"source":87,"target":14},{"source":87,"target":391},{"source":87,"target":392},{"source":87,"target":393},{"source":391,"target":14},{"source":391,"target":394},{"source":391,"target":87},{"source":394,"target":14},{"source":392,"target":395},{"source":392,"target":87},{"source":393,"target":14},{"source":88,"target":0},{"source":88,"target":16},{"source":88,"target":396},{"source":396,"target":16},{"source":89,"target":0},{"source":89,"target":16},{"source":89,"target":397},{"source":89,"target":398},{"source":397,"target":399},{"source":397,"target":89},{"source":398,"target":16},{"source":90,"target":0},{"source":90,"target":16},{"source":90,"target":400},{"source":90,"target":401},{"source":90,"target":402},{"source":400,"target":16},{"source":400,"target":403},{"source":400,"target":90},{"source":403,"target":16},{"source":401,"target":404},{"source":401,"target":90},{"source":402,"target":16},{"source":91,"target":0},{"source":91,"target":17},{"source":91,"target":405},{"source":405,"target":17},{"source":92,"target":0},{"source":92,"target":17},{"source":92,"target":406},{"source":92,"target":407},{"source":406,"target":408},{"source":406,"target":92},{"source":407,"target":17},{"source":93,"target":0},{"source":93,"target":17},{"source":93,"target":409},{"source":93,"target":410},{"source":93,"target":411},{"source":409,"target":17},{"source":409,"target":412},{"source":409,"target":93},{"source":412,"target":17},{"source":410,"target":413},{"source":410,"target":93},{"source":411,"target":17},{"source":94,"target":0},{"source":94,"target":18},{"source":94,"target":414},{"source":414,"target":18},{"source":95,"target":0},{"source":95,"target":18},{"source":95,"target":415},{"source":95,"target":416},{"source":415,"target":417},{"source":415,"target":95},{"source":416,"target":18},{"source":96,"target":0},{"source":96,"target":18},{"source":96,"target":418},{"source":96,"target":419},{"source":96,"target":420},{"source":418,"target":18},{"source":418,"target":421},{"source":418,"target":96},{"source":421,"target":18},{"source":419,"target":422},{"source":419,"target":96},{"source":420,"target":18},{"source":97,"target":0},{"source":97,"target":20},{"source":97,"target":423},{"source":423,"target":20},{"source":98,"target":0},{"source":98,"target":20},{"source":98,"target":424},{"source":98,"target":425},{"source":424,"target":426},{"source":424,"target":98},{"source":425,"target":20},{"source":99,"target":0},{"source":99,"target":20},{"source":99,"target":427},{"source":99,"target":428},{"source":99,"target":429},{"source":427,"target":20},{"source":427,"target":430},{"source":427,"target":99},{"source":430,"target":20},{"source":428,"target":431},{"source":428,"target":99},{"source":429,"target":20},{"source":100,"target":0},{"source":100,"target":21},{"source":100,"target":432},{"source":432,"target":21},{"source":101,"target":0},{"source":101,"target":21},{"source":101,"target":433},{"source":101,"target":434},{"source":433,"target":435},{"source":433,"target":101},{"source":434,"target":21},{"source":102,"target":0},{"source":102,"target":21},{"source":102,"target":436},{"source":102,"target":437},{"source":102,"target":438},{"source":436,"target":21},{"source":436,"target":439},{"source":436,"target":102},{"source":439,"target":21},{"source":437,"target":440},{"source":437,"target":102},{"source":438,"target":21},{"source":103,"target":0},{"source":103,"target":22},{"source":103,"target":441},{"source":441,"target":22},{"source":104,"target":0},{"source":104,"target":22},{"source":104,"target":442},{"source":104,"target":443},{"source":442,"target":444},{"source":442,"target":104},{"source":443,"target":22},{"source":105,"target":0},{"source":105,"target":22},{"source":105,"target":445},{"source":105,"target":446},{"source":105,"target":447},{"source":445,"target":22},{"source":445,"target":448},{"source":445,"target":105},{"source":448,"target":22},{"source":446,"target":449},{"source":446,"target":105},{"source":447,"target":22},{"source":106,"target":0},{"source":106,"target":23},{"source":106,"target":450},{"source":450,"target":23},{"source":107,"target":0},{"source":107,"target":23},{"source":107,"target":451},{"source":107,"target":452},{"source":451,"target":453},{"source":451,"target":107},{"source":452,"target":23},{"source":108,"target":0},{"source":108,"target":23},{"source":108,"target":454},{"source":108,"target":455},{"source":108,"target":456},{"source":454,"target":23},{"source":454,"target":457},{"source":454,"target":108},{"source":457,"target":23},{"source":455,"target":458},{"source":455,"target":108},{"source":456,"target":23},{"source":109,"target":0},{"source":109,"target":24},{"source":109,"target":459},{"source":459,"target":24},{"source":110,"target":0},{"source":110,"target":24},{"source":110,"target":460},{"source":110,"target":461},{"source":460,"target":462},{"source":460,"target":110},{"source":461,"target":24},{"source":111,"target":0},{"source":111,"target":24},{"source":111,"target":463},{"source":111,"target":464},{"source":111,"target":465},{"source":463,"target":24},{"source":463,"target":466},{"source":463,"target":111},{"source":466,"target":24},{"source":464,"target":467},{"source":464,"target":111},{"source":465,"target":24},{"source":112,"target":0},{"source":112,"target":25},{"source":112,"target":468},{"source":468,"target":25},{"source":113,"target":0},{"source":113,"target":25},{"source":113,"target":469},{"source":113,"target":470},{"source":469,"target":471},{"source":469,"target":113},{"source":470,"target":25},{"source":114,"target":0},{"source":114,"target":25},{"source":114,"target":472},{"source":114,"target":473},{"source":114,"target":474},{"source":472,"target":25},{"source":472,"target":475},{"source":472,"target":114},{"source":475,"target":25},{"source":473,"target":476},{"source":473,"target":114},{"source":474,"target":25},{"source":115,"target":0},{"source":115,"target":27},{"source":115,"target":477},{"source":477,"target":27},{"source":116,"target":0},{"source":116,"target":27},{"source":116,"target":478},{"source":116,"target":479},{"source":478,"target":480},{"source":478,"target":116},{"source":479,"target":27},{"source":117,"target":0},{"source":117,"target":27},{"source":117,"target":481},{"source":117,"target":482},{"source":117,"target":483},{"source":481,"target":27},{"source":481,"target":484},{"source":481,"target":117},{"source":484,"target":27},{"source":482,"target":485},{"source":482,"target":117},{"source":483,"target":27},{"source":118,"target":0},{"source":118,"target":29},{"source":118,"target":486},{"source":486,"target":29},{"source":119,"target":0},{"source":119,"target":29},{"source":119,"target":487},{"source":119,"target":488},{"source":487,"target":489},{"source":487,"target":119},{"source":488,"target":29},{"source":120,"target":0},{"source":120,"target":29},{"source":120,"target":490},{"source":120,"target":491},{"source":120,"target":492},{"source":490,"target":29},{"source":490,"target":493},{"source":490,"target":120},{"source":493,"target":29},{"source":491,"target":494},{"source":491,"target":120},{"source":492,"target":29},{"source":121,"target":0},{"source":121,"target":30},{"source":121,"target":495},{"source":495,"target":30},{"source":122,"target":0},{"source":122,"target":30},{"source":122,"target":496},{"source":122,"target":497},{"source":496,"target":498},{"source":496,"target":122},{"source":497,"target":30},{"source":123,"target":0},{"source":123,"target":30},{"source":123,"target":499},{"source":123,"target":500},{"source":123,"target":501},{"source":499,"target":30},{"source":499,"target":502},{"source":499,"target":123},{"source":502,"target":30},{"source":500,"target":503},{"source":500,"target":123},{"source":501,"target":30},{"source":124,"target":0},{"source":124,"target":58},{"source":124,"target":504},{"source":504,"target":58},{"source":125,"target":0},{"source":125,"target":58},{"source":125,"target":505},{"source":125,"target":506},{"source":505,"target":507},{"source":505,"target":125},{"source":506,"target":58},{"source":126,"target":0},{"source":126,"target":58},{"source":126,"target":508},{"source":126,"target":509},{"source":126,"target":510},{"source":508,"target":58},{"source":508,"target":511},{"source":508,"target":126},{"source":511,"target":58},{"source":509,"target":512},{"source":509,"target":126},{"source":510,"target":58}],"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="experimental" nsURI="http:///org/eclipse/stem/diseasemodels/experimental.ecore" nsPrefix="org.eclipse.stem.diseasemodels.experimental"> <eClassifiers xsi:type="ecore:EClass" name="PerculationDiseaseModel" eSuperTypes="../../org.eclipse.stem.diseasemodels/model/standard.ecore#//StochasticSEIRDiseaseModel"/> </ecore:EPackage>
github:ecore:/data/teropa/stem/org.eclipse.stem.diseasemodels.experimental/model/experimental.ecore
ecore
experimental PerculationDiseaseModel
null
{"directed":true,"nodes":[{"nsPrefix":"org.eclipse.stem.diseasemodels.experimental","nsURI":"http:///org/eclipse/stem/diseasemodels/experimental.ecore","name":"experimental","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PerculationDiseaseModel","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"id":2,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":1,"target":0},{"source":1,"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="sequence_diagram" nsURI="http://sequence_diagram/1.0" nsPrefix="sequence_diagram"> <eAnnotations source="http://www.eclipse.org/OCL/Import"> <details key="commonBase" value="../../de.uni_stuttgart.iste.cowolf.model/model/CommonBase.ecore#/"/> <details key="uml" value="../../org.eclipse.uml2.uml/model/UML.ecore#/"/> </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="Package" eSuperTypes="../../org.eclipse.uml2.uml/model/UML.ecore#//Package ../../de.uni_stuttgart.iste.cowolf.model/model/CommonBase.ecore#//IDBase"> <eAnnotations source="http://www.eclipse.org/emf/2002/Ecore"> <details key="constraints" value="onlyOneInteraction"/> </eAnnotations> <eAnnotations source="http://www.eclipse.org/emf/2002/Ecore/OCL"> <details key="onlyOneInteraction" value="self.packagedElement -> select(element : uml::PackageableElement| element.oclIsKindOf(uml::Interaction)) -> size() &lt; 2"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Class" eSuperTypes="../../org.eclipse.uml2.uml/model/UML.ecore#//Class ../../de.uni_stuttgart.iste.cowolf.model/model/CommonBase.ecore#//IDBase"/> <eClassifiers xsi:type="ecore:EClass" name="Interaction" eSuperTypes="../../org.eclipse.uml2.uml/model/UML.ecore#//Interaction ../../de.uni_stuttgart.iste.cowolf.model/model/CommonBase.ecore#//IDBase"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="An Interaction is a unit of Behavior that focuses on the observable exchange of information between connectable elements.&#xA;&lt;p>From package UML::Interactions.&lt;/p>"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Actor" eSuperTypes="../../org.eclipse.uml2.uml/model/UML.ecore#//Actor ../../de.uni_stuttgart.iste.cowolf.model/model/CommonBase.ecore#//IDBase"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="An Actor specifies a role played by a user or any other system that interacts with the subject.&#xA;&lt;p>From package UML::UseCases.&lt;/p>"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Operation" eSuperTypes="../../org.eclipse.uml2.uml/model/UML.ecore#//Operation ../../de.uni_stuttgart.iste.cowolf.model/model/CommonBase.ecore#//IDBase"/> <eClassifiers xsi:type="ecore:EClass" name="Message" eSuperTypes="../../org.eclipse.uml2.uml/model/UML.ecore#//Message ../../de.uni_stuttgart.iste.cowolf.model/model/CommonBase.ecore#//IDBase"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A Message defines a particular communication between Lifelines of an Interaction.&#xA;&lt;p>From package UML::Interactions.&lt;/p>"/> </eAnnotations> <eOperations name="isDistinguishableFrom" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The query isDistinguishableFrom() specifies that any two Messages may coexist in the same Namespace, regardless of their names.&#xA;result = (true)&#xA;&lt;p>From package UML::Interactions.&lt;/p>"/> </eAnnotations> <eParameters name="n" lowerBound="1" eType="ecore:EClass ../../org.eclipse.uml2.uml/model/UML.ecore#//NamedElement"/> <eParameters name="ns" lowerBound="1" eType="ecore:EClass ../../org.eclipse.uml2.uml/model/UML.ecore#//Namespace"/> </eOperations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="MessageOccurenceSpecification" eSuperTypes="../../org.eclipse.uml2.uml/model/UML.ecore#//MessageOccurrenceSpecification ../../de.uni_stuttgart.iste.cowolf.model/model/CommonBase.ecore#//IDBase"/> <eClassifiers xsi:type="ecore:EClass" name="BehaviorExecutionSpecification" eSuperTypes="../../org.eclipse.uml2.uml/model/UML.ecore#//BehaviorExecutionSpecification ../../de.uni_stuttgart.iste.cowolf.model/model/CommonBase.ecore#//IDBase"/> <eClassifiers xsi:type="ecore:EClass" name="OpaqueBehavior" eSuperTypes="../../org.eclipse.uml2.uml/model/UML.ecore#//OpaqueBehavior ../../de.uni_stuttgart.iste.cowolf.model/model/CommonBase.ecore#//IDBase"/> <eClassifiers xsi:type="ecore:EClass" name="ActorLifeline" eSuperTypes="../../org.eclipse.uml2.uml/model/UML.ecore#//Lifeline ../../de.uni_stuttgart.iste.cowolf.model/model/CommonBase.ecore#//IDBase"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A Lifeline represents an individual participant in the Interaction. While parts and structural features may have multiplicity greater than 1, Lifelines represent only one interacting entity.&#xA;&lt;p>From package UML::Interactions.&lt;/p>"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Lifeline" eSuperTypes="../../org.eclipse.uml2.uml/model/UML.ecore#//Lifeline ../../de.uni_stuttgart.iste.cowolf.model/model/CommonBase.ecore#//IDBase"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A Lifeline represents an individual participant in the Interaction. While parts and structural features may have multiplicity greater than 1, Lifelines represent only one interacting entity.&#xA;&lt;p>From package UML::Interactions.&lt;/p>"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Property" eSuperTypes="../../org.eclipse.uml2.uml/model/UML.ecore#//Property ../../de.uni_stuttgart.iste.cowolf.model/model/CommonBase.ecore#//IDBase"/> <eClassifiers xsi:type="ecore:EClass" name="ExecutionSpecifiaction" eSuperTypes="../../org.eclipse.uml2.uml/model/UML.ecore#//ExecutionSpecification ../../de.uni_stuttgart.iste.cowolf.model/model/CommonBase.ecore#//IDBase"/> </ecore:EPackage>
github:ecore:/data/CoWolf/CoWolf/de.uni_stuttgart.iste.cowolf.model.sequence_diagram/model/Sequence_diagram.ecore
ecore
sequence_diagram Package Class Interaction Actor Operation Message isDistinguishableFrom n ns MessageOccurenceSpecification BehaviorExecutionSpecification OpaqueBehavior ActorLifeline Lifeline Property ExecutionSpecifiaction
null
{"directed":true,"nodes":[{"nsPrefix":"sequence_diagram","nsURI":"http://sequence_diagram/1.0","name":"sequence_diagram","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Package","instanceClass":null,"abstract":false,"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":"Interaction","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Actor","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Operation","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":"MessageOccurenceSpecification","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BehaviorExecutionSpecification","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OpaqueBehavior","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ActorLifeline","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Lifeline","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Property","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExecutionSpecifiaction","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"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"},{"ordered":true,"upperBound":1,"unique":true,"name":"isDistinguishableFrom","lowerBound":1,"id":24,"many":false,"required":true,"eClass":"EOperation"},{"id":25,"eClass":"EGenericType"},{"id":26,"eClass":"EGenericType"},{"id":27,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"n","lowerBound":1,"id":28,"many":false,"required":true,"eClass":"EParameter"},{"ordered":true,"upperBound":1,"unique":true,"name":"ns","lowerBound":1,"id":29,"many":false,"required":true,"eClass":"EParameter"},{"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"},{"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":0,"target":12},{"source":0,"target":13},{"source":1,"target":0},{"source":1,"target":14},{"source":1,"target":15},{"source":2,"target":0},{"source":2,"target":16},{"source":2,"target":17},{"source":3,"target":0},{"source":3,"target":18},{"source":3,"target":19},{"source":4,"target":0},{"source":4,"target":20},{"source":4,"target":21},{"source":5,"target":0},{"source":5,"target":22},{"source":5,"target":23},{"source":6,"target":0},{"source":6,"target":24},{"source":6,"target":25},{"source":6,"target":26},{"source":24,"target":27},{"source":24,"target":6},{"source":24,"target":28},{"source":24,"target":29},{"source":28,"target":30},{"source":28,"target":24},{"source":29,"target":31},{"source":29,"target":24},{"source":7,"target":0},{"source":7,"target":32},{"source":7,"target":33},{"source":8,"target":0},{"source":8,"target":34},{"source":8,"target":35},{"source":9,"target":0},{"source":9,"target":36},{"source":9,"target":37},{"source":10,"target":0},{"source":10,"target":38},{"source":10,"target":39},{"source":11,"target":0},{"source":11,"target":40},{"source":11,"target":41},{"source":12,"target":0},{"source":12,"target":42},{"source":12,"target":43},{"source":13,"target":0},{"source":13,"target":44},{"source":13,"target":45}],"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="boolean" nsURI="http://se.cs.toronto.edu/modelepedia/Boolean" nsPrefix="boolean"> <eClassifiers xsi:type="ecore:EClass" name="Boolean"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="value" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/> </eClassifiers> </ecore:EPackage>
github:ecore:/data/adisandro/MMINT/plugins/Core-Extensions/Recommended/edu.toronto.cs.se.modelepedia.primitive/model/boolean.ecore
ecore
boolean Boolean value
null
{"directed":true,"nodes":[{"nsPrefix":"boolean","nsURI":"http://se.cs.toronto.edu/modelepedia/Boolean","name":"boolean","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Boolean","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"ordered":true,"upperBound":1,"defaultValue":false,"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":2,"derived":false},{"id":3,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":1,"target":0},{"source":1,"target":2},{"source":2,"target":3},{"source":2,"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="webapplication" nsURI="webapplication.xmi" nsPrefix="org.eclipse.jst.j2ee.webapplication"> <eClassifiers xsi:type="ecore:EClass" name="WebApp" eSuperTypes="common.ecore#//JNDIEnvRefsGroup"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The web-app element is the root of the deployment descriptor for&#xD;&#xA;a web application."/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="distributable" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean" unsettable="true"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The distributable element, by its presence in a web application deployment descriptor, indicates that this web application is programmed appropriately to be deployed into a distributed servlet container"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="version" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="contexts" upperBound="-1" eType="#//ContextParam" containment="true" eOpposite="#//ContextParam/webApp"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="@deprecated see contextParams"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="errorPages" upperBound="-1" eType="#//ErrorPage" containment="true" eOpposite="#//ErrorPage/webApp"/> <eStructuralFeatures xsi:type="ecore:EReference" name="fileList" eType="#//WelcomeFileList" containment="true" eOpposite="#//WelcomeFileList/webApp"/> <eStructuralFeatures xsi:type="ecore:EReference" name="tagLibs" upperBound="-1" eType="#//TagLibRef" containment="true" eOpposite="#//TagLibRef/webApp"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="@deprecated See jsp::TagLibRef&#xD;&#xA;"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="constraints" upperBound="-1" eType="#//SecurityConstraint" containment="true" eOpposite="#//SecurityConstraint/webApp"/> <eStructuralFeatures xsi:type="ecore:EReference" name="loginConfig" eType="#//LoginConfig" containment="true" eOpposite="#//LoginConfig/webApp"/> <eStructuralFeatures xsi:type="ecore:EReference" name="mimeMappings" upperBound="-1" eType="#//MimeMapping" containment="true" eOpposite="#//MimeMapping/webApp"/> <eStructuralFeatures xsi:type="ecore:EReference" name="sessionConfig" eType="#//SessionConfig" containment="true" eOpposite="#//SessionConfig/webApp"/> <eStructuralFeatures xsi:type="ecore:EReference" name="servletMappings" upperBound="-1" eType="#//ServletMapping" containment="true" eOpposite="#//ServletMapping/webApp"/> <eStructuralFeatures xsi:type="ecore:EReference" name="servlets" upperBound="-1" eType="#//Servlet" containment="true" eOpposite="#//Servlet/webApp"/> <eStructuralFeatures xsi:type="ecore:EReference" name="securityRoles" upperBound="-1" eType="ecore:EClass common.ecore#//SecurityRole" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="filters" upperBound="-1" eType="#//Filter" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="filterMappings" upperBound="-1" eType="#//FilterMapping" containment="true"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Filter mappings defined for the web app"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="listeners" upperBound="-1" eType="ecore:EClass common.ecore#//Listener" containment="true"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The listeners collection contains deployment properties for a web application listener beans in the web app."/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="contextParams" upperBound="-1" eType="ecore:EClass common.ecore#//ParamValue" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="jspConfig" eType="ecore:EClass jsp.ecore#//JSPConfig" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="messageDestinations" upperBound="-1" eType="ecore:EClass common.ecore#//MessageDestination" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="localEncodingMappingList" eType="#//LocalEncodingMappingList" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ContextParam" eSuperTypes="common.ecore#//J2EEEObject"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="@version J2EE1.4 deprecated&#xD;&#xA;The context-param element contains the declaration of a web application's servlet context initialization parameters."/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="paramName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="@deprecated&#xD;&#xA;The param-name element contains the name of a parameter."/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="paramValue" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="@deprecated&#xD;&#xA;The param-value element contains the value of a parameter."/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="description" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="@deprecated"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="webApp" eType="#//WebApp" transient="true" eOpposite="#//WebApp/contexts"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Servlet" eSuperTypes="common.ecore#//CompatibilityDescriptionGroup"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The servlet element contains the declarative data of a servlet. If a jsp-file is specified and the load-on-startup element is present, then the JSP should be precompiled and loaded."/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="servletName" 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 servlet-name element contains the canonical name of the servlet."/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="loadOnStartup" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject" unsettable="true"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The load-on-startup element indicates that this servlet should be loaded on the startup of the web application. The optional contents of these element must be a positive integer indicating the order in which the servlet should be loaded. Lower integers are loaded before higher integers. If no value is specified, or if the value specified is not a positive integer, the container is free to load it at any time in the startup sequence.&#xD;&#xA;"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="webApp" eType="#//WebApp" transient="true" eOpposite="#//WebApp/servlets"/> <eStructuralFeatures xsi:type="ecore:EReference" name="webType" lowerBound="1" eType="#//WebType" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="params" upperBound="-1" eType="#//InitParam" containment="true"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="@version J2EE1.4 deprecated, becomes initParams"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="securityRoleRefs" upperBound="-1" eType="ecore:EClass common.ecore#//SecurityRoleRef" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="runAs" eType="ecore:EClass common.ecore#//RunAsSpecifiedIdentity" containment="true"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="If defined for a servlet, overrides the security identity used to call an EJB by that servlet in this web application. The role-name is one of the security roles already defined for this web application."/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="initParams" upperBound="-1" eType="ecore:EClass common.ecore#//ParamValue" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ServletMapping" eSuperTypes="common.ecore#//J2EEEObject"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The servlet-mapping element defines a mapping between a servlet and a url pattern"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="urlPattern" 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-pattern element contains the url pattern of the mapping. Must follow the rules specified in Section 10 of the Servlet API Specification."/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="@version J2EE1.4&#xD;&#xA;The servlet-name element contains the canonical name of the&#xD;&#xA;servlet. Each servlet name is unique within the web&#xD;&#xA;application."/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="webApp" eType="#//WebApp" transient="true" eOpposite="#//WebApp/servletMappings"/> <eStructuralFeatures xsi:type="ecore:EReference" name="servlet" lowerBound="1" eType="#//Servlet"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="SessionConfig" eSuperTypes="common.ecore#//J2EEEObject"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The session-config element defines the session parameters for this web application."/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="sessionTimeout" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt" unsettable="true"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The session-timeout element defines the default&#xD;&#xA; session timeout interval for all sessions created&#xD;&#xA; in this web application. The specified timeout&#xD;&#xA; must be expressed in a whole number of minutes.&#xD;&#xA; If the timeout is 0 or less, the container ensures&#xD;&#xA; the default behaviour of sessions is never to time&#xD;&#xA; out. If this element is not specified, the container&#xD;&#xA; must set its default timeout period."/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="webApp" eType="#//WebApp" transient="true" eOpposite="#//WebApp/sessionConfig"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="MimeMapping" eSuperTypes="common.ecore#//J2EEEObject"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The mime-mapping element defines a mapping between an extension and a mime type.&#xD;&#xA;"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="extension" 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 extension element contains a string describing an extension. example: &quot;txt&quot;"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="mimeType" 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 mime-type element contains a defined mime type. example: &quot;text/plain&quot;"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="webApp" eType="#//WebApp" transient="true" eOpposite="#//WebApp/mimeMappings"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="WelcomeFileList" eSuperTypes="common.ecore#//J2EEEObject"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The welcome-file-list contains an ordered list of welcome files elements."/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="webApp" eType="#//WebApp" transient="true" eOpposite="#//WebApp/fileList"/> <eStructuralFeatures xsi:type="ecore:EReference" name="file" upperBound="-1" eType="#//WelcomeFile" containment="true" eOpposite="#//WelcomeFile/fileList"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ErrorPage" eSuperTypes="common.ecore#//J2EEEObject"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The error-page element contains a mapping between an error code or exception type to the path of a resource in the web application"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="location" 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 location element contains the location of the resource in the web application"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="webApp" eType="#//WebApp" transient="true" eOpposite="#//WebApp/errorPages"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="TagLibRef" eSuperTypes="common.ecore#//J2EEEObject"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="@version J2EE1.4 deprecated, becomes jsp::TagLibRef&#xD;&#xA;The taglib element is used to describe a JSP tag library."/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="taglibURI" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="@deprecated See jsp::TagLibRef&#xD;&#xA;&#xD;&#xA;The taglib-uri element describes a URI, relative to the location of the web.xml document, identifying a Tag Library used in the Web Application."/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="taglibLocation" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="@deprecated See jsp::TagLibRef&#xD;&#xA;&#xD;&#xA;The taglib-location element contains the location (as a resource relative to the root of the web application) where to find the Tag Libary Description file for the tag library."/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="webApp" eType="#//WebApp" transient="true" eOpposite="#//WebApp/tagLibs"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="SecurityConstraint" eSuperTypes="common.ecore#//J2EEEObject"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The security-constraint element is used to associate security constraints with one or more web resource collections"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="displayName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="@version J2EE1.4 deprecated, becomes displayNames"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="webApp" eType="#//WebApp" transient="true" eOpposite="#//WebApp/constraints"/> <eStructuralFeatures xsi:type="ecore:EReference" name="webResourceCollections" lowerBound="1" upperBound="-1" eType="#//WebResourceCollection" containment="true" eOpposite="#//WebResourceCollection/secConstraint"/> <eStructuralFeatures xsi:type="ecore:EReference" name="authConstraint" eType="#//AuthConstraint" containment="true" eOpposite="#//AuthConstraint/secConstraint"/> <eStructuralFeatures xsi:type="ecore:EReference" name="userDataConstraint" eType="#//UserDataConstraint" containment="true" eOpposite="#//UserDataConstraint/secConstraint"/> <eStructuralFeatures xsi:type="ecore:EReference" name="displayNames" upperBound="-1" eType="ecore:EClass common.ecore#//DisplayName" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="WebResourceCollection" eSuperTypes="common.ecore#//J2EEEObject"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The web-resource-collection element is used to identify a subset of the resources and HTTP methods on those resources within a web application to which a security constraint applies. If no HTTP methods are specified, then the security constraint applies to all HTTP methods.&#xD;&#xA;"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="webResourceName" 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 web-resource-name contains the name of this web resource collection"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="description" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="@version J2EE1.4 deprecated, becomes descriptions"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="urlPattern" unique="false" lowerBound="1" upperBound="-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="@version J2EE1.4"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="httpMethod" upperBound="-1" eType="#//HTTPMethodTypeEnum"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="@version J2EE1.4"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="secConstraint" eType="#//SecurityConstraint" transient="true" eOpposite="#//SecurityConstraint/webResourceCollections"/> <eStructuralFeatures xsi:type="ecore:EReference" name="URLs" upperBound="-1" eType="#//URLPatternType" containment="true" eOpposite="#//URLPatternType/resCollection"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="@version J2EE1.4 deprecated, becomes urlPattern"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="descriptions" upperBound="-1" eType="ecore:EClass common.ecore#//Description" containment="true"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="@version J2EE1.4"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="HTTPs" upperBound="-1" eType="#//HTTPMethodType" containment="true"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="@version J2EE1.4 deprecated, becomes httpMethod"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="AuthConstraint" eSuperTypes="common.ecore#//J2EEEObject"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The auth-constraintType indicates the user roles that&#xD;&#xA;should be permitted access to this resource&#xD;&#xA;collection. The role-name used here must either correspond&#xD;&#xA;to the role-name of one of the security-role elements&#xD;&#xA;defined for this web application, or be the specially&#xD;&#xA;reserved role-name &quot;*&quot; that is a compact syntax for&#xD;&#xA;indicating all roles in the web application. If both &quot;*&quot;&#xD;&#xA;and rolenames appear, the container interprets this as all&#xD;&#xA;roles. If no roles are defined, no user is allowed access&#xD;&#xA;to the portion of the web application described by the&#xD;&#xA;containing security-constraint. The container matches&#xD;&#xA;role names case sensitively when determining access."/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="description" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="@version J2EE1.4 deprecated, becomes descriptions&#xD;&#xA;A description of the auth constraint."/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="roles" upperBound="-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="A list of role names for the auth constraint. Each element specifies the name of a security role (a String).&#xD;&#xA;"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="secConstraint" eType="#//SecurityConstraint" transient="true" eOpposite="#//SecurityConstraint/authConstraint"/> <eStructuralFeatures xsi:type="ecore:EReference" name="descriptions" upperBound="-1" eType="ecore:EClass common.ecore#//Description" containment="true"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="@version J2EE1.4"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="UserDataConstraint" eSuperTypes="common.ecore#//J2EEEObject"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The user-data-constraint element is used to indicate how data communicated between the client and container should be protected"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="description" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="@version J2EE1.4 deprecated, becomes descriptions&#xD;&#xA;A description for the user data constraint."/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="transportGuarantee" eType="#//TransportGuaranteeType" unsettable="true"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The transport-guarantee element specifies that the communication between client and server should be NONE, INTEGRAL, or CONFIDENTIAL. NONE means that the application does not require any&#xD;&#xA;transport guarantees. A value of INTEGRAL means that the application requires that the data sent between the client and server be sent in such a way that it can't be changed in transit. CONFIDENTIAL means that the application requires that the data be transmitted in a fashion that prevents other entities from observing the contents of the transmission. In most cases, the presence of the INTEGRAL or CONFIDENTIAL flag will indicate that the use of SSL is required."/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="secConstraint" eType="#//SecurityConstraint" transient="true" eOpposite="#//SecurityConstraint/userDataConstraint"/> <eStructuralFeatures xsi:type="ecore:EReference" name="descriptions" upperBound="-1" eType="ecore:EClass common.ecore#//Description" containment="true"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="@version J2EE1.4"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="LoginConfig" eSuperTypes="common.ecore#//J2EEEObject"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The login-config element is used to configure the authentication method that should be used, the realm name that should be used for this application, and the attributes that are needed by the form login&#xD;&#xA;mechanism."/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="authMethod" eType="#//AuthMethodKind" unsettable="true"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="@version J2EE1.4 deprecated, becomes initParamValues&#xD;&#xA;&#xD;&#xA;&#xD;&#xA;The auth-method element is used to configure the authentication mechanism for the web application. As a prerequisite to gaining access to any web resources which are protected by an authorization constraint, a user must have authenticated using the configured mechanism. Legal values for this element are &quot;BASIC&quot;, &quot;DIGEST&quot;, &quot;FORM&quot;, or &quot;CLIENT-CERT&quot;."/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="realmName" 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 realm name element specifies the realm name to use in HTTP Basic authorization"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="authorizationMethod" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="@version J2EE1.4"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="webApp" eType="#//WebApp" transient="true" eOpposite="#//WebApp/loginConfig"/> <eStructuralFeatures xsi:type="ecore:EReference" name="formLoginConfig" eType="#//FormLoginConfig" containment="true" eOpposite="#//FormLoginConfig/loginConfig"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="FormLoginConfig" eSuperTypes="common.ecore#//J2EEEObject"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The form-login-config element specifies the login and error pages that should be used in form based login. If form based authentication is not used, these elements are ignored."/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="formLoginPage" 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 form-login-page element defines the location in the web app where the page that can be used for login can be found"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="formErrorPage" 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 form-error-page element defines the location in the web app where the error page that is displayed when login is not successful can be found"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="loginConfig" eType="#//LoginConfig" transient="true" eOpposite="#//LoginConfig/formLoginConfig"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="InitParam" eSuperTypes="common.ecore#//J2EEEObject"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="@version J2EE1.4 deprecated&#xD;&#xA;The init-param element contains a name/value pair as an initialization param of the servlet"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="paramName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="@deprecated&#xD;&#xA;"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="paramValue" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="@deprecated"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="description" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="@deprecated"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="ResAuthServletType"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="CONTAINER=0&#xD;&#xA;SERVLET=1&#xD;&#xA;"/> </eAnnotations> <eLiterals name="CONTAINER"/> <eLiterals name="SERVLET" value="1"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="WebType" abstract="true" eSuperTypes="common.ecore#//J2EEEObject"/> <eClassifiers xsi:type="ecore:EClass" name="ServletType" eSuperTypes="#//WebType"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="className" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="JSPType" eSuperTypes="#//WebType"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="jspFile" 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 jsp-file element contains the full path to a JSP file within the web application.&#xD;&#xA;"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="URLPatternType" eSuperTypes="common.ecore#//J2EEEObject"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="urlPattern" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="resCollection" eType="#//WebResourceCollection" transient="true" eOpposite="#//WebResourceCollection/URLs"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="HTTPMethodTypeEnum"> <eLiterals name="GET"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The http-method contains an HTTP method (GET | POST |...)"/> </eAnnotations> </eLiterals> <eLiterals name="POST" value="1"/> <eLiterals name="PUT" value="2"/> <eLiterals name="DELETE" value="3"/> <eLiterals name="HEAD" value="4"/> <eLiterals name="OPTIONS" value="5"/> <eLiterals name="TRACE" value="6"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="RoleNameType" eSuperTypes="common.ecore#//J2EEEObject"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="roleName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="WelcomeFile" eSuperTypes="common.ecore#//J2EEEObject"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The welcome-file element contains file name to use as a default welcome file, such as index.html&#xD;&#xA;"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="welcomeFile" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="fileList" eType="#//WelcomeFileList" transient="true" eOpposite="#//WelcomeFileList/file"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="TransportGuaranteeType"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="NONE=1&#xD;&#xA;INTEGRAL=2&#xD;&#xA;CONFIDENTIAL=3"/> </eAnnotations> <eLiterals name="NONE"/> <eLiterals name="INTEGRAL" value="1"/> <eLiterals name="CONFIDENTIAL" value="2"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ExceptionTypeErrorPage" eSuperTypes="#//ErrorPage"> <eStructuralFeatures xsi:type="ecore:EReference" name="exceptionType" lowerBound="1" eType="ecore:EClass ../../org.eclipse.jem/model/java.ecore#//JavaClass"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The exception type contains a fully qualified class name of a Java exception type."/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ErrorCodeErrorPage" eSuperTypes="#//ErrorPage"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="errorCode" 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 error-code contains an HTTP error code, ex: 404&#xD;&#xA;"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="FilterMapping" eSuperTypes="common.ecore#//J2EEEObject"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Declaration of the filter mappings in this web application. The container uses the filter-mapping declarations to decide which filters to apply to a request, and in what order. The container matches the request URI to a Servlet in the normal way. To determine which filters to apply it matches filter-mapping declarations either on servlet-name, or on url-pattern for each filter-mapping element, depending on which style is used. The order in which filters are invoked is the order in which filter-mapping declarations that match a request URI for a servlet appear in the list of filter-mapping elements.The filter-name value must be the value of the &lt;filtername> sub-elements of one of the &lt;filter> declarations in the deployment descriptor.&#xD;&#xA;&#xD;&#xA;@invariant The filter-name value must be the value of the Filter::name of one of the Filter declarations in the deployment descriptor.&#xD;&#xA;"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="urlPattern" 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-pattern element contains the url pattern of the mapping. Must follow the rules specified in Section 10 of the Servlet API Specification."/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="dispatcherType" upperBound="4" eType="#//DispatcherType"/> <eStructuralFeatures xsi:type="ecore:EReference" name="filter" lowerBound="1" eType="#//Filter"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The filter being mapped"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="servlet" eType="#//Servlet"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="An optional servlet that is mapped by a filter mapping. servletName is used to resolve the servlet reference."/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Filter" eSuperTypes="common.ecore#//CompatibilityDescriptionGroup"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Declares a filter in the web application application. The filter is mapped to either a servlet or a URL pattern in the filter-mapping element, using the filter-name value to reference. Filters can access the initialization parameters declared in the deployment descriptor at runtime via the FilterConfig interface.&#xD;&#xA;"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" 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 logical name of the filter. This name is used to map the filter."/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="initParams" upperBound="-1" eType="#//InitParam" containment="true"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="@version J2EE1.4 deprecated, becomes initParamValues&#xD;&#xA;The init-params contain a name/value pairs as initialization params for the filter&#xD;&#xA;"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="filterClass" lowerBound="1" eType="ecore:EClass ../../org.eclipse.jem/model/java.ecore#//JavaClass"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The fully qualified classname of the filter."/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="initParamValues" upperBound="-1" eType="ecore:EClass common.ecore#//ParamValue" containment="true"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="@version J2EE1.4&#xD;&#xA;The init-param element contains a name/value pair as&#xD;&#xA; an initialization param of a servlet filter"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="DispatcherType"> <eLiterals name="FORWARD"/> <eLiterals name="INCLUDE" value="1"/> <eLiterals name="REQUEST" value="2"/> <eLiterals name="ERROR" value="3"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="LocalEncodingMappingList" eSuperTypes="common.ecore#//J2EEEObject"> <eStructuralFeatures xsi:type="ecore:EReference" name="localEncodingMappings" lowerBound="1" upperBound="-1" eType="#//LocalEncodingMapping" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="LocalEncodingMapping" eSuperTypes="common.ecore#//J2EEEObject"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="locale" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="encoding" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="HTTPMethodType" eSuperTypes="common.ecore#//J2EEEObject"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="httpMethod" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="AuthMethodKind"> <eLiterals name="UNSPECIFIED"/> <eLiterals name="BASIC" value="1"/> <eLiterals name="DIGEST" value="2"/> <eLiterals name="FORM" value="3"/> <eLiterals name="CLIENT_CERT" value="4"/> </eClassifiers> </ecore:EPackage>
github:ecore:/data/gssi/metamodel-dataset-analysis-toolchain/metamodels/webapplication.ecore
ecore
webapplication WebApp distributable version contexts errorPages fileList tagLibs constraints loginConfig mimeMappings sessionConfig servletMappings servlets securityRoles filters filterMappings listeners contextParams jspConfig messageDestinations localEncodingMappingList ContextParam paramName paramValue description webApp Servlet servletName loadOnStartup webApp webType params securityRoleRefs runAs initParams ServletMapping urlPattern name webApp servlet SessionConfig sessionTimeout webApp MimeMapping extension mimeType webApp WelcomeFileList webApp file ErrorPage location webApp TagLibRef taglibURI taglibLocation webApp SecurityConstraint displayName webApp webResourceCollections authConstraint userDataConstraint displayNames WebResourceCollection webResourceName description urlPattern httpMethod secConstraint URLs descriptions HTTPs AuthConstraint description roles secConstraint descriptions UserDataConstraint description transportGuarantee secConstraint descriptions LoginConfig authMethod realmName authorizationMethod webApp formLoginConfig FormLoginConfig formLoginPage formErrorPage loginConfig InitParam paramName paramValue description ResAuthServletType CONTAINER CONTAINER SERVLET SERVLET WebType ServletType className JSPType jspFile URLPatternType urlPattern resCollection HTTPMethodTypeEnum GET GET POST POST PUT PUT DELETE DELETE HEAD HEAD OPTIONS OPTIONS TRACE TRACE RoleNameType roleName WelcomeFile welcomeFile fileList TransportGuaranteeType NONE NONE INTEGRAL INTEGRAL CONFIDENTIAL CONFIDENTIAL ExceptionTypeErrorPage exceptionType ErrorCodeErrorPage errorCode FilterMapping urlPattern dispatcherType filter servlet Filter name initParams filterClass initParamValues DispatcherType FORWARD FORWARD INCLUDE INCLUDE REQUEST REQUEST ERROR ERROR LocalEncodingMappingList localEncodingMappings LocalEncodingMapping locale encoding HTTPMethodType httpMethod AuthMethodKind UNSPECIFIED UNSPECIFIED BASIC BASIC DIGEST DIGEST FORM FORM CLIENT_CERT CLIENT_CERT
null
{"directed":true,"nodes":[{"nsPrefix":"org.eclipse.jst.j2ee.webapplication","nsURI":"webapplication.xmi","name":"webapplication","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"WebApp","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ContextParam","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Servlet","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ServletMapping","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SessionConfig","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MimeMapping","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"WelcomeFileList","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ErrorPage","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TagLibRef","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SecurityConstraint","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"WebResourceCollection","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AuthConstraint","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"UserDataConstraint","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LoginConfig","instanceClass":null,"abstract":false,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FormLoginConfig","instanceClass":null,"abstract":false,"id":15,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InitParam","instanceClass":null,"abstract":false,"id":16,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"ResAuthServletType","instanceClass":null,"id":17,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"WebType","instanceClass":null,"abstract":true,"id":18,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ServletType","instanceClass":null,"abstract":false,"id":19,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"JSPType","instanceClass":null,"abstract":false,"id":20,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"URLPatternType","instanceClass":null,"abstract":false,"id":21,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"HTTPMethodTypeEnum","instanceClass":null,"id":22,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RoleNameType","instanceClass":null,"abstract":false,"id":23,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"WelcomeFile","instanceClass":null,"abstract":false,"id":24,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"TransportGuaranteeType","instanceClass":null,"id":25,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExceptionTypeErrorPage","instanceClass":null,"abstract":false,"id":26,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ErrorCodeErrorPage","instanceClass":null,"abstract":false,"id":27,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FilterMapping","instanceClass":null,"abstract":false,"id":28,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Filter","instanceClass":null,"abstract":false,"id":29,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"DispatcherType","instanceClass":null,"id":30,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LocalEncodingMappingList","instanceClass":null,"abstract":false,"id":31,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LocalEncodingMapping","instanceClass":null,"abstract":false,"id":32,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"HTTPMethodType","instanceClass":null,"abstract":false,"id":33,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"AuthMethodKind","instanceClass":null,"id":34,"serializable":true,"eClass":"EEnum"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":true,"name":"distributable","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":"version","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":"contexts","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":"errorPages","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":"fileList","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":"tagLibs","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":"constraints","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":"loginConfig","changeable":true,"resolveProxies":true,"lowerBound":0,"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":"mimeMappings","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":"sessionConfig","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":"servletMappings","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":"servlets","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":"securityRoles","changeable":true,"resolveProxies":true,"lowerBound":0,"id":47,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"filters","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":"filterMappings","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":"listeners","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":"contextParams","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":"jspConfig","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":"messageDestinations","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":"localEncodingMappingList","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"},{"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":"webApp","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":true,"unique":true,"name":"webApp","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":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"webApp","changeable":true,"resolveProxies":true,"lowerBound":0,"id":63,"derived":false},{"id":64,"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":"webApp","changeable":true,"resolveProxies":true,"lowerBound":0,"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":true,"unique":true,"name":"webApp","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":true,"unique":true,"name":"webApp","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":true,"unique":true,"name":"webApp","changeable":true,"resolveProxies":true,"lowerBound":0,"id":71,"derived":false},{"id":72,"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":"webApp","changeable":true,"resolveProxies":true,"lowerBound":0,"id":73,"derived":false},{"id":74,"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":"webApp","changeable":true,"resolveProxies":true,"lowerBound":0,"id":75,"derived":false},{"id":76,"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":"webApp","changeable":true,"resolveProxies":true,"lowerBound":0,"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"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"paramName","changeable":true,"lowerBound":0,"iD":false,"id":86,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"paramValue","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":"description","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"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"servletName","changeable":true,"lowerBound":0,"iD":false,"id":94,"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":"loadOnStartup","changeable":true,"lowerBound":0,"iD":false,"id":95,"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":"webType","changeable":true,"resolveProxies":true,"lowerBound":1,"id":96,"derived":false},{"container":false,"ordered":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":97,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"securityRoleRefs","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":"runAs","changeable":true,"resolveProxies":true,"lowerBound":0,"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":"initParams","changeable":true,"resolveProxies":true,"lowerBound":0,"id":100,"derived":false},{"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":"urlPattern","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":"name","changeable":true,"lowerBound":0,"iD":false,"id":111,"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":"servlet","changeable":true,"resolveProxies":true,"lowerBound":1,"id":112,"derived":false},{"id":113,"eClass":"EGenericType"},{"id":114,"eClass":"EGenericType"},{"id":115,"eClass":"EGenericType"},{"id":116,"eClass":"EGenericType"},{"id":117,"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":"sessionTimeout","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,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"extension","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":"mimeType","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":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"file","changeable":true,"resolveProxies":true,"lowerBound":0,"id":128,"derived":false},{"id":129,"eClass":"EGenericType"},{"id":130,"eClass":"EGenericType"},{"id":131,"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":"fileList","changeable":true,"resolveProxies":true,"lowerBound":0,"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":"location","changeable":true,"lowerBound":0,"iD":false,"id":133,"derived":false},{"id":134,"eClass":"EGenericType"},{"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":"taglibURI","changeable":true,"lowerBound":0,"iD":false,"id":137,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"taglibLocation","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"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"displayName","changeable":true,"lowerBound":0,"iD":false,"id":143,"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":"webResourceCollections","changeable":true,"resolveProxies":true,"lowerBound":1,"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":"authConstraint","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":"userDataConstraint","changeable":true,"resolveProxies":true,"lowerBound":0,"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":"displayNames","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"},{"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":"secConstraint","changeable":true,"resolveProxies":true,"lowerBound":0,"id":152,"derived":false},{"id":153,"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":"secConstraint","changeable":true,"resolveProxies":true,"lowerBound":0,"id":154,"derived":false},{"id":155,"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":"secConstraint","changeable":true,"resolveProxies":true,"lowerBound":0,"id":156,"derived":false},{"id":157,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"webResourceName","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":"description","changeable":true,"lowerBound":0,"iD":false,"id":159,"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":"urlPattern","changeable":true,"lowerBound":1,"iD":false,"id":160,"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":"httpMethod","changeable":true,"lowerBound":0,"iD":false,"id":161,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"URLs","changeable":true,"resolveProxies":true,"lowerBound":0,"id":162,"derived":false},{"container":false,"ordered":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":163,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"HTTPs","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"},{"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":"resCollection","changeable":true,"resolveProxies":true,"lowerBound":0,"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":"description","changeable":true,"lowerBound":0,"iD":false,"id":175,"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":"roles","changeable":true,"lowerBound":0,"iD":false,"id":176,"derived":false},{"container":false,"ordered":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":177,"derived":false},{"id":178,"eClass":"EGenericType"},{"id":179,"eClass":"EGenericType"},{"id":180,"eClass":"EGenericType"},{"id":181,"eClass":"EGenericType"},{"id":182,"eClass":"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":183,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":true,"name":"transportGuarantee","changeable":true,"lowerBound":0,"iD":false,"id":184,"derived":false},{"container":false,"ordered":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":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,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":true,"name":"authMethod","changeable":true,"lowerBound":0,"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":"realmName","changeable":true,"lowerBound":0,"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":"authorizationMethod","changeable":true,"lowerBound":0,"iD":false,"id":193,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"formLoginConfig","changeable":true,"resolveProxies":true,"lowerBound":0,"id":194,"derived":false},{"id":195,"eClass":"EGenericType"},{"id":196,"eClass":"EGenericType"},{"id":197,"eClass":"EGenericType"},{"id":198,"eClass":"EGenericType"},{"id":199,"eClass":"EGenericType"},{"id":200,"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":"loginConfig","changeable":true,"resolveProxies":true,"lowerBound":0,"id":201,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"formLoginPage","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":"formErrorPage","changeable":true,"lowerBound":0,"iD":false,"id":203,"derived":false},{"id":204,"eClass":"EGenericType"},{"id":205,"eClass":"EGenericType"},{"id":206,"eClass":"EGenericType"},{"id":207,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"paramName","changeable":true,"lowerBound":0,"iD":false,"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":"paramValue","changeable":true,"lowerBound":0,"iD":false,"id":209,"derived":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":210,"derived":false},{"id":211,"eClass":"EGenericType"},{"id":212,"eClass":"EGenericType"},{"id":213,"eClass":"EGenericType"},{"id":214,"eClass":"EGenericType"},{"name":"CONTAINER","id":215,"value":0,"literal":"CONTAINER","eClass":"EEnumLiteral"},{"name":"SERVLET","id":216,"value":1,"literal":"SERVLET","eClass":"EEnumLiteral"},{"id":217,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"className","changeable":true,"lowerBound":0,"iD":false,"id":218,"derived":false},{"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":"jspFile","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":"urlPattern","changeable":true,"lowerBound":0,"iD":false,"id":224,"derived":false},{"id":225,"eClass":"EGenericType"},{"id":226,"eClass":"EGenericType"},{"id":227,"eClass":"EGenericType"},{"name":"GET","id":228,"value":0,"literal":"GET","eClass":"EEnumLiteral"},{"name":"POST","id":229,"value":1,"literal":"POST","eClass":"EEnumLiteral"},{"name":"PUT","id":230,"value":2,"literal":"PUT","eClass":"EEnumLiteral"},{"name":"DELETE","id":231,"value":3,"literal":"DELETE","eClass":"EEnumLiteral"},{"name":"HEAD","id":232,"value":4,"literal":"HEAD","eClass":"EEnumLiteral"},{"name":"OPTIONS","id":233,"value":5,"literal":"OPTIONS","eClass":"EEnumLiteral"},{"name":"TRACE","id":234,"value":6,"literal":"TRACE","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":"roleName","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":"welcomeFile","changeable":true,"lowerBound":0,"iD":false,"id":238,"derived":false},{"id":239,"eClass":"EGenericType"},{"id":240,"eClass":"EGenericType"},{"id":241,"eClass":"EGenericType"},{"name":"NONE","id":242,"value":0,"literal":"NONE","eClass":"EEnumLiteral"},{"name":"INTEGRAL","id":243,"value":1,"literal":"INTEGRAL","eClass":"EEnumLiteral"},{"name":"CONFIDENTIAL","id":244,"value":2,"literal":"CONFIDENTIAL","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":"exceptionType","changeable":true,"resolveProxies":true,"lowerBound":1,"id":245,"derived":false},{"id":246,"eClass":"EGenericType"},{"id":247,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"errorCode","changeable":true,"lowerBound":0,"iD":false,"id":248,"derived":false},{"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":"urlPattern","changeable":true,"lowerBound":0,"iD":false,"id":251,"derived":false},{"ordered":true,"upperBound":4,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"dispatcherType","changeable":true,"lowerBound":0,"iD":false,"id":252,"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":"filter","changeable":true,"resolveProxies":true,"lowerBound":1,"id":253,"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":"servlet","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"},{"id":259,"eClass":"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":260,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"initParams","changeable":true,"resolveProxies":true,"lowerBound":0,"id":261,"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":"filterClass","changeable":true,"resolveProxies":true,"lowerBound":1,"id":262,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"initParamValues","changeable":true,"resolveProxies":true,"lowerBound":0,"id":263,"derived":false},{"id":264,"eClass":"EGenericType"},{"id":265,"eClass":"EGenericType"},{"id":266,"eClass":"EGenericType"},{"id":267,"eClass":"EGenericType"},{"id":268,"eClass":"EGenericType"},{"name":"FORWARD","id":269,"value":0,"literal":"FORWARD","eClass":"EEnumLiteral"},{"name":"INCLUDE","id":270,"value":1,"literal":"INCLUDE","eClass":"EEnumLiteral"},{"name":"REQUEST","id":271,"value":2,"literal":"REQUEST","eClass":"EEnumLiteral"},{"name":"ERROR","id":272,"value":3,"literal":"ERROR","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":"localEncodingMappings","changeable":true,"resolveProxies":true,"lowerBound":1,"id":273,"derived":false},{"id":274,"eClass":"EGenericType"},{"id":275,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"locale","changeable":true,"lowerBound":0,"iD":false,"id":276,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"encoding","changeable":true,"lowerBound":0,"iD":false,"id":277,"derived":false},{"id":278,"eClass":"EGenericType"},{"id":279,"eClass":"EGenericType"},{"id":280,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"httpMethod","changeable":true,"lowerBound":0,"iD":false,"id":281,"derived":false},{"id":282,"eClass":"EGenericType"},{"id":283,"eClass":"EGenericType"},{"name":"UNSPECIFIED","id":284,"value":0,"literal":"UNSPECIFIED","eClass":"EEnumLiteral"},{"name":"BASIC","id":285,"value":1,"literal":"BASIC","eClass":"EEnumLiteral"},{"name":"DIGEST","id":286,"value":2,"literal":"DIGEST","eClass":"EEnumLiteral"},{"name":"FORM","id":287,"value":3,"literal":"FORM","eClass":"EEnumLiteral"},{"name":"CLIENT_CERT","id":288,"value":4,"literal":"CLIENT_CERT","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":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":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":35,"target":56},{"source":35,"target":1},{"source":36,"target":57},{"source":36,"target":1},{"source":37,"target":2},{"source":37,"target":58},{"source":37,"target":1},{"source":37,"target":59},{"source":58,"target":2},{"source":38,"target":8},{"source":38,"target":60},{"source":38,"target":1},{"source":38,"target":61},{"source":60,"target":8},{"source":39,"target":7},{"source":39,"target":62},{"source":39,"target":1},{"source":39,"target":63},{"source":62,"target":7},{"source":40,"target":9},{"source":40,"target":64},{"source":40,"target":1},{"source":40,"target":65},{"source":64,"target":9},{"source":41,"target":10},{"source":41,"target":66},{"source":41,"target":1},{"source":41,"target":67},{"source":66,"target":10},{"source":42,"target":14},{"source":42,"target":68},{"source":42,"target":1},{"source":42,"target":69},{"source":68,"target":14},{"source":43,"target":6},{"source":43,"target":70},{"source":43,"target":1},{"source":43,"target":71},{"source":70,"target":6},{"source":44,"target":5},{"source":44,"target":72},{"source":44,"target":1},{"source":44,"target":73},{"source":72,"target":5},{"source":45,"target":4},{"source":45,"target":74},{"source":45,"target":1},{"source":45,"target":75},{"source":74,"target":4},{"source":46,"target":3},{"source":46,"target":76},{"source":46,"target":1},{"source":46,"target":77},{"source":76,"target":3},{"source":47,"target":78},{"source":47,"target":1},{"source":48,"target":29},{"source":48,"target":79},{"source":48,"target":1},{"source":79,"target":29},{"source":49,"target":28},{"source":49,"target":80},{"source":49,"target":1},{"source":80,"target":28},{"source":50,"target":81},{"source":50,"target":1},{"source":51,"target":82},{"source":51,"target":1},{"source":52,"target":83},{"source":52,"target":1},{"source":53,"target":84},{"source":53,"target":1},{"source":54,"target":31},{"source":54,"target":85},{"source":54,"target":1},{"source":85,"target":31},{"source":2,"target":0},{"source":2,"target":86},{"source":2,"target":87},{"source":2,"target":88},{"source":2,"target":59},{"source":2,"target":89},{"source":86,"target":90},{"source":86,"target":2},{"source":87,"target":91},{"source":87,"target":2},{"source":88,"target":92},{"source":88,"target":2},{"source":59,"target":1},{"source":59,"target":93},{"source":59,"target":2},{"source":59,"target":37},{"source":93,"target":1},{"source":3,"target":0},{"source":3,"target":94},{"source":3,"target":95},{"source":3,"target":77},{"source":3,"target":96},{"source":3,"target":97},{"source":3,"target":98},{"source":3,"target":99},{"source":3,"target":100},{"source":3,"target":101},{"source":94,"target":102},{"source":94,"target":3},{"source":95,"target":103},{"source":95,"target":3},{"source":77,"target":1},{"source":77,"target":104},{"source":77,"target":3},{"source":77,"target":46},{"source":104,"target":1},{"source":96,"target":18},{"source":96,"target":105},{"source":96,"target":3},{"source":105,"target":18},{"source":97,"target":16},{"source":97,"target":106},{"source":97,"target":3},{"source":106,"target":16},{"source":98,"target":107},{"source":98,"target":3},{"source":99,"target":108},{"source":99,"target":3},{"source":100,"target":109},{"source":100,"target":3},{"source":4,"target":0},{"source":4,"target":110},{"source":4,"target":111},{"source":4,"target":75},{"source":4,"target":112},{"source":4,"target":113},{"source":110,"target":114},{"source":110,"target":4},{"source":111,"target":115},{"source":111,"target":4},{"source":75,"target":1},{"source":75,"target":116},{"source":75,"target":4},{"source":75,"target":45},{"source":116,"target":1},{"source":112,"target":3},{"source":112,"target":117},{"source":112,"target":4},{"source":117,"target":3},{"source":5,"target":0},{"source":5,"target":118},{"source":5,"target":73},{"source":5,"target":119},{"source":118,"target":120},{"source":118,"target":5},{"source":73,"target":1},{"source":73,"target":121},{"source":73,"target":5},{"source":73,"target":44},{"source":121,"target":1},{"source":6,"target":0},{"source":6,"target":122},{"source":6,"target":123},{"source":6,"target":71},{"source":6,"target":124},{"source":122,"target":125},{"source":122,"target":6},{"source":123,"target":126},{"source":123,"target":6},{"source":71,"target":1},{"source":71,"target":127},{"source":71,"target":6},{"source":71,"target":43},{"source":127,"target":1},{"source":7,"target":0},{"source":7,"target":63},{"source":7,"target":128},{"source":7,"target":129},{"source":63,"target":1},{"source":63,"target":130},{"source":63,"target":7},{"source":63,"target":39},{"source":130,"target":1},{"source":128,"target":24},{"source":128,"target":131},{"source":128,"target":7},{"source":128,"target":132},{"source":131,"target":24},{"source":8,"target":0},{"source":8,"target":133},{"source":8,"target":61},{"source":8,"target":134},{"source":133,"target":135},{"source":133,"target":8},{"source":61,"target":1},{"source":61,"target":136},{"source":61,"target":8},{"source":61,"target":38},{"source":136,"target":1},{"source":9,"target":0},{"source":9,"target":137},{"source":9,"target":138},{"source":9,"target":65},{"source":9,"target":139},{"source":137,"target":140},{"source":137,"target":9},{"source":138,"target":141},{"source":138,"target":9},{"source":65,"target":1},{"source":65,"target":142},{"source":65,"target":9},{"source":65,"target":40},{"source":142,"target":1},{"source":10,"target":0},{"source":10,"target":143},{"source":10,"target":67},{"source":10,"target":144},{"source":10,"target":145},{"source":10,"target":146},{"source":10,"target":147},{"source":10,"target":148},{"source":143,"target":149},{"source":143,"target":10},{"source":67,"target":1},{"source":67,"target":150},{"source":67,"target":10},{"source":67,"target":41},{"source":150,"target":1},{"source":144,"target":11},{"source":144,"target":151},{"source":144,"target":10},{"source":144,"target":152},{"source":151,"target":11},{"source":145,"target":12},{"source":145,"target":153},{"source":145,"target":10},{"source":145,"target":154},{"source":153,"target":12},{"source":146,"target":13},{"source":146,"target":155},{"source":146,"target":10},{"source":146,"target":156},{"source":155,"target":13},{"source":147,"target":157},{"source":147,"target":10},{"source":11,"target":0},{"source":11,"target":158},{"source":11,"target":159},{"source":11,"target":160},{"source":11,"target":161},{"source":11,"target":152},{"source":11,"target":162},{"source":11,"target":163},{"source":11,"target":164},{"source":11,"target":165},{"source":158,"target":166},{"source":158,"target":11},{"source":159,"target":167},{"source":159,"target":11},{"source":160,"target":168},{"source":160,"target":11},{"source":161,"target":22},{"source":161,"target":169},{"source":161,"target":11},{"source":169,"target":22},{"source":152,"target":10},{"source":152,"target":170},{"source":152,"target":11},{"source":152,"target":144},{"source":170,"target":10},{"source":162,"target":21},{"source":162,"target":171},{"source":162,"target":11},{"source":162,"target":172},{"source":171,"target":21},{"source":163,"target":173},{"source":163,"target":11},{"source":164,"target":33},{"source":164,"target":174},{"source":164,"target":11},{"source":174,"target":33},{"source":12,"target":0},{"source":12,"target":175},{"source":12,"target":176},{"source":12,"target":154},{"source":12,"target":177},{"source":12,"target":178},{"source":175,"target":179},{"source":175,"target":12},{"source":176,"target":180},{"source":176,"target":12},{"source":154,"target":10},{"source":154,"target":181},{"source":154,"target":12},{"source":154,"target":145},{"source":181,"target":10},{"source":177,"target":182},{"source":177,"target":12},{"source":13,"target":0},{"source":13,"target":183},{"source":13,"target":184},{"source":13,"target":156},{"source":13,"target":185},{"source":13,"target":186},{"source":183,"target":187},{"source":183,"target":13},{"source":184,"target":25},{"source":184,"target":188},{"source":184,"target":13},{"source":188,"target":25},{"source":156,"target":10},{"source":156,"target":189},{"source":156,"target":13},{"source":156,"target":146},{"source":189,"target":10},{"source":185,"target":190},{"source":185,"target":13},{"source":14,"target":0},{"source":14,"target":191},{"source":14,"target":192},{"source":14,"target":193},{"source":14,"target":69},{"source":14,"target":194},{"source":14,"target":195},{"source":191,"target":34},{"source":191,"target":196},{"source":191,"target":14},{"source":196,"target":34},{"source":192,"target":197},{"source":192,"target":14},{"source":193,"target":198},{"source":193,"target":14},{"source":69,"target":1},{"source":69,"target":199},{"source":69,"target":14},{"source":69,"target":42},{"source":199,"target":1},{"source":194,"target":15},{"source":194,"target":200},{"source":194,"target":14},{"source":194,"target":201},{"source":200,"target":15},{"source":15,"target":0},{"source":15,"target":202},{"source":15,"target":203},{"source":15,"target":201},{"source":15,"target":204},{"source":202,"target":205},{"source":202,"target":15},{"source":203,"target":206},{"source":203,"target":15},{"source":201,"target":14},{"source":201,"target":207},{"source":201,"target":15},{"source":201,"target":194},{"source":207,"target":14},{"source":16,"target":0},{"source":16,"target":208},{"source":16,"target":209},{"source":16,"target":210},{"source":16,"target":211},{"source":208,"target":212},{"source":208,"target":16},{"source":209,"target":213},{"source":209,"target":16},{"source":210,"target":214},{"source":210,"target":16},{"source":17,"target":0},{"source":17,"target":215},{"source":17,"target":216},{"source":215,"target":17},{"source":216,"target":17},{"source":18,"target":0},{"source":18,"target":217},{"source":19,"target":0},{"source":19,"target":18},{"source":19,"target":218},{"source":19,"target":219},{"source":218,"target":220},{"source":218,"target":19},{"source":219,"target":18},{"source":20,"target":0},{"source":20,"target":18},{"source":20,"target":221},{"source":20,"target":222},{"source":221,"target":223},{"source":221,"target":20},{"source":222,"target":18},{"source":21,"target":0},{"source":21,"target":224},{"source":21,"target":172},{"source":21,"target":225},{"source":224,"target":226},{"source":224,"target":21},{"source":172,"target":11},{"source":172,"target":227},{"source":172,"target":21},{"source":172,"target":162},{"source":227,"target":11},{"source":22,"target":0},{"source":22,"target":228},{"source":22,"target":229},{"source":22,"target":230},{"source":22,"target":231},{"source":22,"target":232},{"source":22,"target":233},{"source":22,"target":234},{"source":228,"target":22},{"source":229,"target":22},{"source":230,"target":22},{"source":231,"target":22},{"source":232,"target":22},{"source":233,"target":22},{"source":234,"target":22},{"source":23,"target":0},{"source":23,"target":235},{"source":23,"target":236},{"source":235,"target":237},{"source":235,"target":23},{"source":24,"target":0},{"source":24,"target":238},{"source":24,"target":132},{"source":24,"target":239},{"source":238,"target":240},{"source":238,"target":24},{"source":132,"target":7},{"source":132,"target":241},{"source":132,"target":24},{"source":132,"target":128},{"source":241,"target":7},{"source":25,"target":0},{"source":25,"target":242},{"source":25,"target":243},{"source":25,"target":244},{"source":242,"target":25},{"source":243,"target":25},{"source":244,"target":25},{"source":26,"target":0},{"source":26,"target":8},{"source":26,"target":245},{"source":26,"target":246},{"source":245,"target":247},{"source":245,"target":26},{"source":246,"target":8},{"source":27,"target":0},{"source":27,"target":8},{"source":27,"target":248},{"source":27,"target":249},{"source":248,"target":250},{"source":248,"target":27},{"source":249,"target":8},{"source":28,"target":0},{"source":28,"target":251},{"source":28,"target":252},{"source":28,"target":253},{"source":28,"target":254},{"source":28,"target":255},{"source":251,"target":256},{"source":251,"target":28},{"source":252,"target":30},{"source":252,"target":257},{"source":252,"target":28},{"source":257,"target":30},{"source":253,"target":29},{"source":253,"target":258},{"source":253,"target":28},{"source":258,"target":29},{"source":254,"target":3},{"source":254,"target":259},{"source":254,"target":28},{"source":259,"target":3},{"source":29,"target":0},{"source":29,"target":260},{"source":29,"target":261},{"source":29,"target":262},{"source":29,"target":263},{"source":29,"target":264},{"source":260,"target":265},{"source":260,"target":29},{"source":261,"target":16},{"source":261,"target":266},{"source":261,"target":29},{"source":266,"target":16},{"source":262,"target":267},{"source":262,"target":29},{"source":263,"target":268},{"source":263,"target":29},{"source":30,"target":0},{"source":30,"target":269},{"source":30,"target":270},{"source":30,"target":271},{"source":30,"target":272},{"source":269,"target":30},{"source":270,"target":30},{"source":271,"target":30},{"source":272,"target":30},{"source":31,"target":0},{"source":31,"target":273},{"source":31,"target":274},{"source":273,"target":32},{"source":273,"target":275},{"source":273,"target":31},{"source":275,"target":32},{"source":32,"target":0},{"source":32,"target":276},{"source":32,"target":277},{"source":32,"target":278},{"source":276,"target":279},{"source":276,"target":32},{"source":277,"target":280},{"source":277,"target":32},{"source":33,"target":0},{"source":33,"target":281},{"source":33,"target":282},{"source":281,"target":283},{"source":281,"target":33},{"source":34,"target":0},{"source":34,"target":284},{"source":34,"target":285},{"source":34,"target":286},{"source":34,"target":287},{"source":34,"target":288},{"source":284,"target":34},{"source":285,"target":34},{"source":286,"target":34},{"source":287,"target":34},{"source":288,"target":34}],"multigraph":true}
true
<?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="q7dsl" nsURI="http://www.example.org/my/dsl" nsPrefix="q7dsl"> <eClassifiers xsi:type="ecore:EClass" name="Model"> <eStructuralFeatures xsi:type="ecore:EReference" name="advices" upperBound="-1" eType="#//Advice" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Advice"> <eStructuralFeatures xsi:type="ecore:EReference" name="how" eType="#//How" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="who" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="when" eType="#//When" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="why" eType="#//Why" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="label" eType="#//Label" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="what" eType="#//What" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="where" eType="#//Where" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="whom" eType="#//Who" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="howmuch" eType="#//HowMuchRules" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Who"> <eStructuralFeatures xsi:type="ecore:EReference" name="actor" eType="#//Actor" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Actor"> <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="When"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="expr" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Why"> <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="What"> <eStructuralFeatures xsi:type="ecore:EReference" name="topics" upperBound="-1" eType="#//Topic" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Topic"> <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="Where"> <eStructuralFeatures xsi:type="ecore:EReference" name="topics" eType="#//What" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="name" eType="#//Why" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="op" eType="#//Op"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="How"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="op" eType="#//DecompositionType"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="enrich" eType="#//Enrichment"/> <eStructuralFeatures xsi:type="ecore:EReference" name="advices" upperBound="-1" eType="#//Advice" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="HowMuchRules"> <eStructuralFeatures xsi:type="ecore:EReference" name="howmuch" upperBound="-1" eType="#//HowMuch" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="HowMuch"> <eStructuralFeatures xsi:type="ecore:EReference" name="strength" eType="#//FLOAT" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="why" eType="#//Why" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="who" eType="#//Who" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="trust" eType="#//FLOAT" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="what" eType="#//What" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="op" eType="#//Op"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Label"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="label" eType="#//LabelEnumerator"/> <eStructuralFeatures xsi:type="ecore:EReference" name="den" eType="#//FLOAT" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="sat" eType="#//FLOAT" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="FLOAT"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="integral" 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"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="Op"> <eLiterals name="HELP" value="1"/> <eLiterals name="HELP2" value="2"/> <eLiterals name="HURT" value="3"/> <eLiterals name="HURT2" value="4"/> <eLiterals name="MAKE" value="5"/> <eLiterals name="MAKE2" value="6"/> <eLiterals name="BREAK" value="7"/> <eLiterals name="BREAK2" value="8"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="DecompositionType"> <eLiterals name="AND" value="1"/> <eLiterals name="AND1" value="2"/> <eLiterals name="OR" value="3"/> <eLiterals name="OR1" value="4"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="Enrichment"> <eLiterals name="SEQUENTIAL" value="1"/> <eLiterals name="SEQUENTIAL1" value="2"/> <eLiterals name="PARALLEL" value="3"/> <eLiterals name="PARALLEL1" value="4"/> <eLiterals name="XOR" value="5"/> <eLiterals name="XOR1" value="6"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="LabelEnumerator"> <eLiterals name="FULLY_SATISFIED" value="1"/> <eLiterals name="PARTIALLY_SATISFIED" value="2"/> <eLiterals name="FULLY_DENIED" value="3"/> <eLiterals name="PARTIALLY_DENIED" value="4"/> <eLiterals name="CONFLICT" value="5"/> <eLiterals name="UNKNOWN" value="6"/> </eClassifiers> </ecore:EPackage>
github:ecore:/data/palade/OpenOME/q7/model/q7dsl.ecore
ecore
q7dsl Model advices Advice how who when why label what where whom howmuch Who actor Actor name When expr Why name What topics Topic name Where topics name op How op enrich advices HowMuchRules howmuch HowMuch strength why who trust what op Label label den sat FLOAT integral decimal Op HELP HELP HELP2 HELP2 HURT HURT HURT2 HURT2 MAKE MAKE MAKE2 MAKE2 BREAK BREAK BREAK2 BREAK2 DecompositionType AND AND AND1 AND1 OR OR OR1 OR1 Enrichment SEQUENTIAL SEQUENTIAL SEQUENTIAL1 SEQUENTIAL1 PARALLEL PARALLEL PARALLEL1 PARALLEL1 XOR XOR XOR1 XOR1 LabelEnumerator FULLY_SATISFIED FULLY_SATISFIED PARTIALLY_SATISFIED PARTIALLY_SATISFIED FULLY_DENIED FULLY_DENIED PARTIALLY_DENIED PARTIALLY_DENIED CONFLICT CONFLICT UNKNOWN UNKNOWN
null
{"directed":true,"nodes":[{"nsPrefix":"q7dsl","nsURI":"http://www.example.org/my/dsl","name":"q7dsl","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":"Advice","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Who","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Actor","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"When","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Why","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"What","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Topic","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Where","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"How","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"HowMuchRules","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"HowMuch","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Label","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FLOAT","instanceClass":null,"abstract":false,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"Op","instanceClass":null,"id":15,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"DecompositionType","instanceClass":null,"id":16,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"Enrichment","instanceClass":null,"id":17,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"LabelEnumerator","instanceClass":null,"id":18,"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":"advices","changeable":true,"resolveProxies":true,"lowerBound":0,"id":19,"derived":false},{"id":20,"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":"how","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":"who","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":true,"unsettable":false,"transient":false,"unique":true,"name":"when","changeable":true,"resolveProxies":true,"lowerBound":0,"id":23,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"why","changeable":true,"resolveProxies":true,"lowerBound":0,"id":24,"derived":false},{"container":false,"ordered":true,"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":25,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"what","changeable":true,"resolveProxies":true,"lowerBound":0,"id":26,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"where","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":true,"unsettable":false,"transient":false,"unique":true,"name":"whom","changeable":true,"resolveProxies":true,"lowerBound":0,"id":28,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"howmuch","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"},{"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":true,"unsettable":false,"transient":false,"unique":true,"name":"actor","changeable":true,"resolveProxies":true,"lowerBound":0,"id":39,"derived":false},{"id":40,"eClass":"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":41,"derived":false},{"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":"expr","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"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"topics","changeable":true,"resolveProxies":true,"lowerBound":0,"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"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"topics","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":"name","changeable":true,"resolveProxies":true,"lowerBound":0,"id":52,"derived":false},{"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":53,"derived":false},{"id":54,"eClass":"EGenericType"},{"id":55,"eClass":"EGenericType"},{"id":56,"eClass":"EGenericType"},{"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":57,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"enrich","changeable":true,"lowerBound":0,"iD":false,"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":"advices","changeable":true,"resolveProxies":true,"lowerBound":0,"id":59,"derived":false},{"id":60,"eClass":"EGenericType"},{"id":61,"eClass":"EGenericType"},{"id":62,"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":"howmuch","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":true,"unsettable":false,"transient":false,"unique":true,"name":"strength","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":"why","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":"who","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":"trust","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":"what","changeable":true,"resolveProxies":true,"lowerBound":0,"id":69,"derived":false},{"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":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,"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":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":"den","changeable":true,"resolveProxies":true,"lowerBound":0,"id":78,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"sat","changeable":true,"resolveProxies":true,"lowerBound":0,"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":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"integral","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":"decimal","changeable":true,"lowerBound":0,"iD":false,"id":84,"derived":false},{"id":85,"eClass":"EGenericType"},{"id":86,"eClass":"EGenericType"},{"name":"HELP","id":87,"value":1,"literal":"HELP","eClass":"EEnumLiteral"},{"name":"HELP2","id":88,"value":2,"literal":"HELP2","eClass":"EEnumLiteral"},{"name":"HURT","id":89,"value":3,"literal":"HURT","eClass":"EEnumLiteral"},{"name":"HURT2","id":90,"value":4,"literal":"HURT2","eClass":"EEnumLiteral"},{"name":"MAKE","id":91,"value":5,"literal":"MAKE","eClass":"EEnumLiteral"},{"name":"MAKE2","id":92,"value":6,"literal":"MAKE2","eClass":"EEnumLiteral"},{"name":"BREAK","id":93,"value":7,"literal":"BREAK","eClass":"EEnumLiteral"},{"name":"BREAK2","id":94,"value":8,"literal":"BREAK2","eClass":"EEnumLiteral"},{"name":"AND","id":95,"value":1,"literal":"AND","eClass":"EEnumLiteral"},{"name":"AND1","id":96,"value":2,"literal":"AND1","eClass":"EEnumLiteral"},{"name":"OR","id":97,"value":3,"literal":"OR","eClass":"EEnumLiteral"},{"name":"OR1","id":98,"value":4,"literal":"OR1","eClass":"EEnumLiteral"},{"name":"SEQUENTIAL","id":99,"value":1,"literal":"SEQUENTIAL","eClass":"EEnumLiteral"},{"name":"SEQUENTIAL1","id":100,"value":2,"literal":"SEQUENTIAL1","eClass":"EEnumLiteral"},{"name":"PARALLEL","id":101,"value":3,"literal":"PARALLEL","eClass":"EEnumLiteral"},{"name":"PARALLEL1","id":102,"value":4,"literal":"PARALLEL1","eClass":"EEnumLiteral"},{"name":"XOR","id":103,"value":5,"literal":"XOR","eClass":"EEnumLiteral"},{"name":"XOR1","id":104,"value":6,"literal":"XOR1","eClass":"EEnumLiteral"},{"name":"FULLY_SATISFIED","id":105,"value":1,"literal":"FULLY_SATISFIED","eClass":"EEnumLiteral"},{"name":"PARTIALLY_SATISFIED","id":106,"value":2,"literal":"PARTIALLY_SATISFIED","eClass":"EEnumLiteral"},{"name":"FULLY_DENIED","id":107,"value":3,"literal":"FULLY_DENIED","eClass":"EEnumLiteral"},{"name":"PARTIALLY_DENIED","id":108,"value":4,"literal":"PARTIALLY_DENIED","eClass":"EEnumLiteral"},{"name":"CONFLICT","id":109,"value":5,"literal":"CONFLICT","eClass":"EEnumLiteral"},{"name":"UNKNOWN","id":110,"value":6,"literal":"UNKNOWN","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":1,"target":0},{"source":1,"target":19},{"source":19,"target":2},{"source":19,"target":20},{"source":19,"target":1},{"source":20,"target":2},{"source":2,"target":0},{"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":2,"target":27},{"source":2,"target":28},{"source":2,"target":29},{"source":21,"target":10},{"source":21,"target":30},{"source":21,"target":2},{"source":30,"target":10},{"source":22,"target":31},{"source":22,"target":2},{"source":23,"target":5},{"source":23,"target":32},{"source":23,"target":2},{"source":32,"target":5},{"source":24,"target":6},{"source":24,"target":33},{"source":24,"target":2},{"source":33,"target":6},{"source":25,"target":13},{"source":25,"target":34},{"source":25,"target":2},{"source":34,"target":13},{"source":26,"target":7},{"source":26,"target":35},{"source":26,"target":2},{"source":35,"target":7},{"source":27,"target":9},{"source":27,"target":36},{"source":27,"target":2},{"source":36,"target":9},{"source":28,"target":3},{"source":28,"target":37},{"source":28,"target":2},{"source":37,"target":3},{"source":29,"target":11},{"source":29,"target":38},{"source":29,"target":2},{"source":38,"target":11},{"source":3,"target":0},{"source":3,"target":39},{"source":39,"target":4},{"source":39,"target":40},{"source":39,"target":3},{"source":40,"target":4},{"source":4,"target":0},{"source":4,"target":41},{"source":41,"target":42},{"source":41,"target":4},{"source":5,"target":0},{"source":5,"target":43},{"source":43,"target":44},{"source":43,"target":5},{"source":6,"target":0},{"source":6,"target":45},{"source":45,"target":46},{"source":45,"target":6},{"source":7,"target":0},{"source":7,"target":47},{"source":47,"target":8},{"source":47,"target":48},{"source":47,"target":7},{"source":48,"target":8},{"source":8,"target":0},{"source":8,"target":49},{"source":49,"target":50},{"source":49,"target":8},{"source":9,"target":0},{"source":9,"target":51},{"source":9,"target":52},{"source":9,"target":53},{"source":51,"target":7},{"source":51,"target":54},{"source":51,"target":9},{"source":54,"target":7},{"source":52,"target":6},{"source":52,"target":55},{"source":52,"target":9},{"source":55,"target":6},{"source":53,"target":15},{"source":53,"target":56},{"source":53,"target":9},{"source":56,"target":15},{"source":10,"target":0},{"source":10,"target":57},{"source":10,"target":58},{"source":10,"target":59},{"source":57,"target":16},{"source":57,"target":60},{"source":57,"target":10},{"source":60,"target":16},{"source":58,"target":17},{"source":58,"target":61},{"source":58,"target":10},{"source":61,"target":17},{"source":59,"target":2},{"source":59,"target":62},{"source":59,"target":10},{"source":62,"target":2},{"source":11,"target":0},{"source":11,"target":63},{"source":63,"target":12},{"source":63,"target":64},{"source":63,"target":11},{"source":64,"target":12},{"source":12,"target":0},{"source":12,"target":65},{"source":12,"target":66},{"source":12,"target":67},{"source":12,"target":68},{"source":12,"target":69},{"source":12,"target":70},{"source":65,"target":14},{"source":65,"target":71},{"source":65,"target":12},{"source":71,"target":14},{"source":66,"target":6},{"source":66,"target":72},{"source":66,"target":12},{"source":72,"target":6},{"source":67,"target":3},{"source":67,"target":73},{"source":67,"target":12},{"source":73,"target":3},{"source":68,"target":14},{"source":68,"target":74},{"source":68,"target":12},{"source":74,"target":14},{"source":69,"target":7},{"source":69,"target":75},{"source":69,"target":12},{"source":75,"target":7},{"source":70,"target":15},{"source":70,"target":76},{"source":70,"target":12},{"source":76,"target":15},{"source":13,"target":0},{"source":13,"target":77},{"source":13,"target":78},{"source":13,"target":79},{"source":77,"target":18},{"source":77,"target":80},{"source":77,"target":13},{"source":80,"target":18},{"source":78,"target":14},{"source":78,"target":81},{"source":78,"target":13},{"source":81,"target":14},{"source":79,"target":14},{"source":79,"target":82},{"source":79,"target":13},{"source":82,"target":14},{"source":14,"target":0},{"source":14,"target":83},{"source":14,"target":84},{"source":83,"target":85},{"source":83,"target":14},{"source":84,"target":86},{"source":84,"target":14},{"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":15,"target":93},{"source":15,"target":94},{"source":87,"target":15},{"source":88,"target":15},{"source":89,"target":15},{"source":90,"target":15},{"source":91,"target":15},{"source":92,"target":15},{"source":93,"target":15},{"source":94,"target":15},{"source":16,"target":0},{"source":16,"target":95},{"source":16,"target":96},{"source":16,"target":97},{"source":16,"target":98},{"source":95,"target":16},{"source":96,"target":16},{"source":97,"target":16},{"source":98,"target":16},{"source":17,"target":0},{"source":17,"target":99},{"source":17,"target":100},{"source":17,"target":101},{"source":17,"target":102},{"source":17,"target":103},{"source":17,"target":104},{"source":99,"target":17},{"source":100,"target":17},{"source":101,"target":17},{"source":102,"target":17},{"source":103,"target":17},{"source":104,"target":17},{"source":18,"target":0},{"source":18,"target":105},{"source":18,"target":106},{"source":18,"target":107},{"source":18,"target":108},{"source":18,"target":109},{"source":18,"target":110},{"source":105,"target":18},{"source":106,"target":18},{"source":107,"target":18},{"source":108,"target":18},{"source":109,"target":18},{"source":110,"target":18}],"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="LazyRuleInheritanceTest" nsURI="LazyRuleInheritanceTest" nsPrefix="LazyRuleInheritanceTest"> <eClassifiers xsi:type="ecore:EClass" name="ClassA"/> <eSubpackages name="subpackage" nsURI="subpackage" nsPrefix="subpackage"> <eClassifiers xsi:type="ecore:EClass" name="ClassB" abstract="true"/> </eSubpackages> </ecore:EPackage>
github:ecore:/data/eclipse/atl/tests/org.eclipse.m2m.atl.emftvm.tests/test-data/LazyRuleInheritanceTest.ecore
ecore
LazyRuleInheritanceTest ClassA subpackage ClassB
null
{"directed":true,"nodes":[{"nsPrefix":"LazyRuleInheritanceTest","nsURI":"LazyRuleInheritanceTest","name":"LazyRuleInheritanceTest","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ClassA","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"nsPrefix":"subpackage","nsURI":"subpackage","name":"subpackage","id":2,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ClassB","instanceClass":null,"abstract":true,"id":3,"interface":false,"eClass":"EClass"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":1,"target":0},{"source":2,"target":3},{"source":2,"target":0},{"source":3,"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="migration" nsURI="http://www.eclipse.org/emf/edapt/migration/0.3" nsPrefix="migration"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Metamodel to represent models during migration"/> </eAnnotations> <eClassifiers xsi:type="ecore:EClass" name="Repository"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The repository to migrate the model conforming to a metamodel"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="model" lowerBound="1" eType="#//Model" containment="true" eOpposite="#//Model/repository"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Get the model of this repository"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="metamodel" lowerBound="1" eType="#//Metamodel" containment="true" eOpposite="#//Metamodel/repository"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The metamodel of this repository"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Model"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The model in the repository consisting of several resources"/> </eAnnotations> <eOperations name="getAllInstances" upperBound="-1" eType="#//Instance"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Get all instances of a class, including all sub classes"/> </eAnnotations> <eParameters name="eClass" lowerBound="1" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EClass"/> </eOperations> <eOperations name="getAllInstances" upperBound="-1" eType="#//Instance"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Get all instances of a class, including all sub classes"/> </eAnnotations> <eParameters name="className" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eOperations> <eOperations name="getInstances" upperBound="-1" eType="#//Instance"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Get all instances of a class, excluding sub classes"/> </eAnnotations> <eParameters name="eClass" lowerBound="1" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EClass"/> </eOperations> <eOperations name="getInstances" upperBound="-1" eType="#//Instance"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Get all instances of a class, excluding sub classes"/> </eAnnotations> <eParameters name="className" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eOperations> <eOperations name="getType" eType="#//Type"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Get the container for instances that conform to a certain class"/> </eAnnotations> <eParameters name="eClass" lowerBound="1" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EClass"/> </eOperations> <eOperations name="createExtentMap" lowerBound="1"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Create a map to access instances by their class"/> </eAnnotations> <eGenericType eClassifier="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EMap"> <eTypeArguments eClassifier="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EClass"/> <eTypeArguments eClassifier="#//Set"> <eTypeArguments eClassifier="#//Instance"/> </eTypeArguments> </eGenericType> </eOperations> <eOperations name="newInstance" lowerBound="1" eType="#//Instance"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Create a new instance of a certain class"/> </eAnnotations> <eParameters name="eClass" lowerBound="1" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EClass"/> </eOperations> <eOperations name="newInstance" lowerBound="1" eType="#//Instance"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Create a new instance of a certain class"/> </eAnnotations> <eParameters name="className" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eOperations> <eOperations name="delete"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Delete an instance from the model, including all the contained instances"/> </eAnnotations> <eParameters name="instance" lowerBound="1" eType="#//Instance"/> </eOperations> <eOperations name="validate" eExceptions="#//MigrationException"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Validate the model"/> </eAnnotations> </eOperations> <eOperations name="checkConformance" eExceptions="#//MigrationException"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Check whether the model conforms to the metamodel"/> </eAnnotations> </eOperations> <eOperations name="commit" eExceptions="#//MigrationException"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Commit the changes to the repository, i.e. check conformance and consistency"/> </eAnnotations> </eOperations> <eOperations name="newResource" lowerBound="1" eType="#//ModelResource"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Create a new model resource"/> </eAnnotations> <eParameters name="uri" lowerBound="1" eType="#//URI"/> </eOperations> <eStructuralFeatures xsi:type="ecore:EReference" name="metamodel" eType="#//Metamodel"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Get the metamodel to which this model conforms"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="types" upperBound="-1" eType="#//Type" containment="true" eOpposite="#//Type/model"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Containers for the classes from which instances exist"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="reflection" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Whether the reflection interface allows to access the real model structure"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="resources" upperBound="-1" eType="#//ModelResource" containment="true" eOpposite="#//ModelResource/model"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Resources of which this model consists"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="repository" eType="#//Repository" eOpposite="#//Repository/model"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Repository to which this model belongs"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ModelResource" eSuperTypes="#//AbstractResource"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Resource for model parts"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="rootInstances" upperBound="-1" eType="#//Instance"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The instances which are the root elements of the resource"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="model" eType="#//Model" eOpposite="#//Model/resources"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Type"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A container for instances of a certain class"/> </eAnnotations> <eOperations name="newInstance" lowerBound="1" eType="#//Instance"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Create an instance of the type"/> </eAnnotations> </eOperations> <eStructuralFeatures xsi:type="ecore:EReference" name="eClass" lowerBound="1" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EClass"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Get the class to which the instances of this type conform"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="instances" upperBound="-1" eType="#//Instance" containment="true" eOpposite="#//Instance/type"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Get the instances that conform to the class"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="model" lowerBound="1" eType="#//Model" eOpposite="#//Model/types"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Get the model by which these instances are contained"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Instance"> <eAnnotations source="http://www.eclipse.org/emf/2002/Ecore"> <details key="constraints" value="validContainment validType"/> </eAnnotations> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="An instance of a class"/> </eAnnotations> <eOperations name="getSlot" eType="#//Slot"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Get the slot that conforms to the feature"/> </eAnnotations> <eParameters name="feature" lowerBound="1" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EStructuralFeature"/> </eOperations> <eOperations name="get"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Get the value of the feature"/> </eAnnotations> <eGenericType eTypeParameter="#//Instance/get/V"/> <eTypeParameters name="V"/> <eParameters name="feature" lowerBound="1" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EStructuralFeature"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"/> </eParameters> </eOperations> <eOperations name="get"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Get the value of the feature which is given by its name"/> </eAnnotations> <eGenericType eTypeParameter="#//Instance/get.1/V"/> <eTypeParameters name="V"/> <eParameters name="featureName" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eOperations> <eOperations name="getInverse" upperBound="-1" eType="#//Instance"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Get the instances that refer to this instance through a reference"/> </eAnnotations> <eParameters name="reference" lowerBound="1" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EReference"/> </eOperations> <eOperations name="getInverse" upperBound="-1" eType="#//Instance"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Get the instances which refer to this instance through a reference (given by its name)"/> </eAnnotations> <eParameters name="referenceName" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eOperations> <eOperations name="getEClass" lowerBound="1" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EClass"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Get the class to which the instance conforms"/> </eAnnotations> </eOperations> <eOperations name="isSet" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Check whether the value of a feature is set"/> </eAnnotations> <eParameters name="feature" lowerBound="1" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EStructuralFeature"/> </eOperations> <eOperations name="set"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Set the value of the feature"/> </eAnnotations> <eParameters name="feature" lowerBound="1" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EStructuralFeature"/> <eParameters name="value" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EJavaObject"/> </eOperations> <eOperations name="set"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Set the value of a feature which is given by its name"/> </eAnnotations> <eParameters name="featureName" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eParameters name="value" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EJavaObject"/> </eOperations> <eOperations name="unset"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Unset the value of the feature"/> </eAnnotations> <eGenericType eTypeParameter="#//Instance/unset/V"/> <eTypeParameters name="V"/> <eParameters name="feature" lowerBound="1" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EStructuralFeature"/> </eOperations> <eOperations name="add"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Add an element at a certain position to the value of the feature"/> </eAnnotations> <eParameters name="feature" lowerBound="1" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EStructuralFeature"/> <eParameters name="index" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/> <eParameters name="value" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EJavaObject"/> </eOperations> <eOperations name="add"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Add an element to the value of the feature"/> </eAnnotations> <eParameters name="feature" lowerBound="1" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EStructuralFeature"/> <eParameters name="value" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EJavaObject"/> </eOperations> <eOperations name="add"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Add an element to the value of a feature which is given by its name"/> </eAnnotations> <eParameters name="featureName" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eParameters name="value" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EJavaObject"/> </eOperations> <eOperations name="add"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Add an element at a certain position to the value of a feature which is given by its name"/> </eAnnotations> <eParameters name="featureName" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eParameters name="index" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/> <eParameters name="value" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EJavaObject"/> </eOperations> <eOperations name="remove"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Remove an element from the value of the feature"/> </eAnnotations> <eParameters name="feature" lowerBound="1" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EStructuralFeature"/> <eParameters name="value" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EJavaObject"/> </eOperations> <eOperations name="remove"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Remove an element at a certain position from the value of the feature"/> </eAnnotations> <eParameters name="feature" lowerBound="1" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EStructuralFeature"/> <eParameters name="index" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/> </eOperations> <eOperations name="remove"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Remove an element from the value of a feature which is given by its name"/> </eAnnotations> <eParameters name="featureName" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eParameters name="value" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EJavaObject"/> </eOperations> <eOperations name="migrate"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Change the type of instance to a different class"/> </eAnnotations> <eParameters name="eClass" lowerBound="1" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EClass"/> </eOperations> <eOperations name="migrate"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Change the type of instance to a different class which is given by its name"/> </eAnnotations> <eParameters name="className" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eOperations> <eOperations name="instanceOf" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Check whether the instance is of a certain type (or its sub types)"/> </eAnnotations> <eParameters name="eClass" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EClass"/> </eOperations> <eOperations name="instanceOf" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Check whether the instance is of a certain type (or its sub types)"/> </eAnnotations> <eParameters name="className" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eOperations> <eOperations name="getContainer" eType="#//Instance"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Get the element by which the instance is contained"/> </eAnnotations> </eOperations> <eOperations name="getContents" upperBound="-1" eType="#//Instance"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Get the elements which are contained by the instance"/> </eAnnotations> </eOperations> <eOperations name="getContainerReference" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EReference"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Get the reference by which the instance is contained"/> </eAnnotations> </eOperations> <eOperations name="getResource" eType="#//ModelResource"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Get the resource in which this instance is contained"/> </eAnnotations> </eOperations> <eOperations name="isProxy" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Find out whether the instance is a proxy, i.e. has its URI set"/> </eAnnotations> </eOperations> <eOperations name="copy" eType="#//Instance"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Copy this instance, including its contents"/> </eAnnotations> </eOperations> <eOperations name="getLink" eType="#//Instance"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Get the value of a single-valued reference which is given by its name"/> </eAnnotations> <eParameters name="referenceName" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eOperations> <eOperations name="getLinks" upperBound="-1" eType="#//Instance"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Get the value of a multi-valued reference which is given by its name"/> </eAnnotations> <eParameters name="referenceName" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eOperations> <eOperations name="getLink" eType="#//Instance"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Get the value of a single-valued reference"/> </eAnnotations> <eParameters name="reference" lowerBound="1" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EReference"/> </eOperations> <eOperations name="getLinks" upperBound="-1" eType="#//Instance"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Get the values of a multi-valued reference"/> </eAnnotations> <eParameters name="reference" lowerBound="1" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EReference"/> </eOperations> <eOperations name="validate" lowerBound="1"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Validate the elements rooted at the instance"/> </eAnnotations> </eOperations> <eOperations name="validate" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Validate the elements rooted at the instance and add all the violations to a diagnostic"/> </eAnnotations> <eParameters name="chain" eType="#//DiagnosticChain"/> </eOperations> <eOperations name="evaluate" eExceptions="#//MigrationException"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Evaluate an OCL constraint with the instance as context"/> </eAnnotations> <eGenericType eTypeParameter="#//Instance/evaluate/V"/> <eTypeParameters name="V"/> <eParameters name="expression" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eOperations> <eStructuralFeatures xsi:type="ecore:EReference" name="slots" upperBound="-1" eType="#//Slot" containment="true" eOpposite="#//Slot/instance"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The slots defined by the instance"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="type" lowerBound="1" eType="#//Type" eOpposite="#//Type/instances"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The type container to which the instance belongs"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="references" upperBound="-1" eType="#//ReferenceSlot" eOpposite="#//ReferenceSlot/values"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The slots from which the instance is referenced"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="uri" eType="#//URI"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The Uniform Resource Identifier (URI) of the instance in case the instance is a proxy"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="uuid" 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 unique and unchangeable identifier of the instance"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Slot" abstract="true"> <eAnnotations source="http://www.eclipse.org/emf/2002/Ecore"> <details key="constraints" value="validFeature validMultiplicity"/> </eAnnotations> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A slot holds the values of a feature"/> </eAnnotations> <eOperations name="getEFeature" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EStructuralFeature"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Get the feature to which the slot conforms"/> </eAnnotations> </eOperations> <eStructuralFeatures xsi:type="ecore:EReference" name="instance" lowerBound="1" eType="#//Instance" eOpposite="#//Instance/slots"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The instance to which this slot belongs"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="AttributeSlot" eSuperTypes="#//Slot"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A slot for the values of an attribute"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="eAttribute" lowerBound="1" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EAttribute"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The attribute to which the slot conforms"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="values" unique="false" upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EJavaObject"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The values of an attribute slot"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ReferenceSlot" eSuperTypes="#//Slot"> <eAnnotations source="http://www.eclipse.org/emf/2002/Ecore"> <details key="constraints" value="validType noDanglingReference validOpposite"/> </eAnnotations> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A slot for the values of a reference"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="eReference" lowerBound="1" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EReference"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The reference to which the slot conforms"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="values" upperBound="-1" eType="#//Instance" eOpposite="#//Instance/references"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The values of the reference slot"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Metamodel"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The metamodel in the repository consisting of several resources"/> </eAnnotations> <eOperations name="getEPackage" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EPackage"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Resolve a package of the metamodel by its fully qualified name"/> </eAnnotations> <eParameters name="name" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eOperations> <eOperations name="getEClassifier" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EClassifier"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Resolve a classifier of the metamodel by its fully qualified name"/> </eAnnotations> <eParameters name="name" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eOperations> <eOperations name="getEFeature" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EStructuralFeature"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Resolve a feature of the metamodel by its fully qualified name"/> </eAnnotations> <eParameters name="name" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eOperations> <eOperations name="getEClass" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EClass"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Resolve a class of the metamodel by its fully qualified name"/> </eAnnotations> <eParameters name="name" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eOperations> <eOperations name="getEReference" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EReference"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Resolve a reference of the metamodel by its fully qualified name"/> </eAnnotations> <eParameters name="name" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eOperations> <eOperations name="getEAttribute" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EAttribute"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Resolve an attribute of the metamodel by its fully qualified name"/> </eAnnotations> <eParameters name="name" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eOperations> <eOperations name="getEDataType" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EDataType"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Resolve a data type of the metamodel by its fully qualified name"/> </eAnnotations> <eParameters name="name" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eOperations> <eOperations name="getElement" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EModelElement"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Resolve a metamodel element by its fully qualified name"/> </eAnnotations> <eParameters name="name" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eOperations> <eOperations name="validate" eExceptions="#//MigrationException"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Validate the metamodel"/> </eAnnotations> </eOperations> <eOperations name="getEPackages" upperBound="-1" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EPackage"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The root packages of all resources of which the metamodel consists"/> </eAnnotations> </eOperations> <eOperations name="setDefaultPackage"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Set the package used as default to resolve metamodel elements"/> </eAnnotations> <eParameters name="packageName" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eOperations> <eOperations name="getEEnum" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EEnum"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Resolve an enumeration of the metamodel by its fully qualified name"/> </eAnnotations> <eParameters name="name" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eOperations> <eOperations name="getEEnumLiteral" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EEnumLiteral"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Resolve an enumeration literal of the metamodel by its fully qualified name"/> </eAnnotations> <eParameters name="name" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eOperations> <eOperations name="delete"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Delete an element from the metamodel"/> </eAnnotations> <eParameters name="metamodelElement" lowerBound="1" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EModelElement"/> </eOperations> <eOperations name="getInverse" upperBound="-1"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Get the metamodel elements that refer to a certain metamodel elements through a reference"/> </eAnnotations> <eGenericType eTypeParameter="#//Metamodel/getInverse/V"/> <eTypeParameters name="V"/> <eParameters name="metamodelElement" lowerBound="1" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EModelElement"/> <eParameters name="reference" lowerBound="1" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EReference"/> </eOperations> <eOperations name="getESubTypes" upperBound="-1" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EClass"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Get all direct sub types of a class"/> </eAnnotations> <eParameters name="eClass" lowerBound="1" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EClass"/> </eOperations> <eOperations name="getEAllSubTypes" upperBound="-1" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EClass"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Get all direct and indirect sub types of a class"/> </eAnnotations> <eParameters name="eClass" lowerBound="1" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EClass"/> </eOperations> <eOperations name="setEOpposite"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Set the opposite of a reference, adapting opposite values in the model"/> </eAnnotations> <eParameters name="reference" lowerBound="1" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EReference"/> <eParameters name="opposite" lowerBound="1" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EReference"/> </eOperations> <eStructuralFeatures xsi:type="ecore:EReference" name="resources" upperBound="-1" eType="#//MetamodelResource" containment="true" eOpposite="#//MetamodelResource/metamodel"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The resources of which this metamodel consists"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="repository" eType="#//Repository" eOpposite="#//Repository/metamodel"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The repository to which the metamodel belongs"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="defaultPackage" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EPackage"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Packages that constitute the root of a metamodel resource"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="MetamodelResource" eSuperTypes="#//AbstractResource"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Resource for metamodel parts"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="rootPackages" upperBound="-1" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EPackage"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Packages that constitute the root of a metamodel resource"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="metamodel" eType="#//Metamodel" eOpposite="#//Metamodel/resources"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="AbstractResource" abstract="true"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Base class for model and metamodel resources"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="uri" lowerBound="1" eType="#//URI"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Uniform Resource Identifier (URI) of this resource"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="encoding" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EDataType" name="Set" instanceClassName="java.util.Set" serializable="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Set of elements"/> </eAnnotations> <eTypeParameters name="E"/> </eClassifiers> <eClassifiers xsi:type="ecore:EDataType" name="DiagnosticChain" instanceClassName="org.eclipse.emf.common.util.DiagnosticChain"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="An accumulator of diagnostics"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EDataType" name="URI" instanceClassName="org.eclipse.emf.common.util.URI"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Representation of a Uniform Resource Identifier (URI) for resources"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EDataType" name="DiagnosticException" instanceClassName="org.eclipse.emf.edapt.migration.DiagnosticException"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Exception that encapsulates constraint violations"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EDataType" name="MigrationException" instanceClassName="org.eclipse.emf.edapt.migration.MigrationException" serializable="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Exception indicating a failure to parse or validate OCL constraints"/> </eAnnotations> </eClassifiers> </ecore:EPackage>
github:ecore:/data/bonitasoft/bonita-studio/patched-plugins/org.eclipse.emf.edapt.migration/model/model.ecore
ecore
migration Repository model metamodel Model getAllInstances eClass getAllInstances className getInstances eClass getInstances className getType eClass createExtentMap newInstance eClass newInstance className delete instance validate checkConformance commit newResource uri metamodel types reflection resources repository ModelResource rootInstances model Type newInstance eClass instances model Instance getSlot feature get V feature get V featureName getInverse reference getInverse referenceName getEClass isSet feature set feature value set featureName value unset V feature add feature index value add feature value add featureName value add featureName index value remove feature value remove feature index remove featureName value migrate eClass migrate className instanceOf eClass instanceOf className getContainer getContents getContainerReference getResource isProxy copy getLink referenceName getLinks referenceName getLink reference getLinks reference validate validate chain evaluate V expression slots type references uri uuid Slot getEFeature instance AttributeSlot eAttribute values ReferenceSlot eReference values Metamodel getEPackage name getEClassifier name getEFeature name getEClass name getEReference name getEAttribute name getEDataType name getElement name validate getEPackages setDefaultPackage packageName getEEnum name getEEnumLiteral name delete metamodelElement getInverse V metamodelElement reference getESubTypes eClass getEAllSubTypes eClass setEOpposite reference opposite resources repository defaultPackage MetamodelResource rootPackages metamodel AbstractResource uri encoding Set java.util.Set java.util.Set E DiagnosticChain org.eclipse.emf.common.util.DiagnosticChain org.eclipse.emf.common.util.DiagnosticChain URI org.eclipse.emf.common.util.URI org.eclipse.emf.common.util.URI DiagnosticException org.eclipse.emf.edapt.migration.DiagnosticException org.eclipse.emf.edapt.migration.DiagnosticException MigrationException org.eclipse.emf.edapt.migration.MigrationException org.eclipse.emf.edapt.migration.MigrationException
null
{"directed":true,"nodes":[{"nsPrefix":"migration","nsURI":"http://www.eclipse.org/emf/edapt/migration/0.3","name":"migration","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Repository","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Model","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ModelResource","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Type","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Instance","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Slot","instanceClass":null,"abstract":true,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AttributeSlot","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ReferenceSlot","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Metamodel","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MetamodelResource","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AbstractResource","instanceClass":null,"abstract":true,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":"java.util.Set","defaultValue":null,"instanceClassName":"java.util.Set","name":"Set","instanceClass":"java.util.Set","id":12,"serializable":false,"eClass":"EDataType"},{"instanceTypeName":"org.eclipse.emf.common.util.DiagnosticChain","defaultValue":null,"instanceClassName":"org.eclipse.emf.common.util.DiagnosticChain","name":"DiagnosticChain","instanceClass":"org.eclipse.emf.common.util.DiagnosticChain","id":13,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"org.eclipse.emf.common.util.URI","defaultValue":null,"instanceClassName":"org.eclipse.emf.common.util.URI","name":"URI","instanceClass":"org.eclipse.emf.common.util.URI","id":14,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"org.eclipse.emf.edapt.migration.DiagnosticException","defaultValue":null,"instanceClassName":"org.eclipse.emf.edapt.migration.DiagnosticException","name":"DiagnosticException","instanceClass":null,"id":15,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"org.eclipse.emf.edapt.migration.MigrationException","defaultValue":null,"instanceClassName":"org.eclipse.emf.edapt.migration.MigrationException","name":"MigrationException","instanceClass":null,"id":16,"serializable":false,"eClass":"EDataType"},{"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":"model","changeable":true,"resolveProxies":true,"lowerBound":1,"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":"metamodel","changeable":true,"resolveProxies":true,"lowerBound":1,"id":18,"derived":false},{"id":19,"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":"repository","changeable":true,"resolveProxies":true,"lowerBound":0,"id":20,"derived":false},{"id":21,"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":"repository","changeable":true,"resolveProxies":true,"lowerBound":0,"id":22,"derived":false},{"ordered":true,"upperBound":-1,"unique":true,"name":"getAllInstances","lowerBound":0,"id":23,"many":true,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":-1,"unique":true,"name":"getAllInstances","lowerBound":0,"id":24,"many":true,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":-1,"unique":true,"name":"getInstances","lowerBound":0,"id":25,"many":true,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":-1,"unique":true,"name":"getInstances","lowerBound":0,"id":26,"many":true,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getType","lowerBound":0,"id":27,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"createExtentMap","lowerBound":1,"id":28,"many":false,"required":true,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"newInstance","lowerBound":1,"id":29,"many":false,"required":true,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"newInstance","lowerBound":1,"id":30,"many":false,"required":true,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"delete","lowerBound":0,"id":31,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"validate","lowerBound":0,"id":32,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"checkConformance","lowerBound":0,"id":33,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"commit","lowerBound":0,"id":34,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"newResource","lowerBound":1,"id":35,"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":false,"unsettable":false,"transient":false,"unique":true,"name":"metamodel","changeable":true,"resolveProxies":true,"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":false,"unique":true,"name":"types","changeable":true,"resolveProxies":true,"lowerBound":0,"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":"reflection","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":"resources","changeable":true,"resolveProxies":true,"lowerBound":0,"id":39,"derived":false},{"id":40,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"eClass","lowerBound":1,"id":41,"many":false,"required":true,"eClass":"EParameter"},{"id":42,"eClass":"EGenericType"},{"id":43,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"className","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":"eClass","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":"className","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":"eClass","lowerBound":1,"id":53,"many":false,"required":true,"eClass":"EParameter"},{"id":54,"eClass":"EGenericType"},{"id":55,"eClass":"EGenericType"},{"id":56,"eClass":"EGenericType"},{"id":57,"eClass":"EGenericType"},{"id":58,"eClass":"EGenericType"},{"id":59,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"eClass","lowerBound":1,"id":60,"many":false,"required":true,"eClass":"EParameter"},{"id":61,"eClass":"EGenericType"},{"id":62,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"className","lowerBound":1,"id":63,"many":false,"required":true,"eClass":"EParameter"},{"id":64,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"instance","lowerBound":1,"id":65,"many":false,"required":true,"eClass":"EParameter"},{"id":66,"eClass":"EGenericType"},{"id":67,"eClass":"EGenericType"},{"id":68,"eClass":"EGenericType"},{"id":69,"eClass":"EGenericType"},{"id":70,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"uri","lowerBound":1,"id":71,"many":false,"required":true,"eClass":"EParameter"},{"id":72,"eClass":"EGenericType"},{"id":73,"eClass":"EGenericType"},{"id":74,"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":"model","changeable":true,"resolveProxies":true,"lowerBound":1,"id":75,"derived":false},{"id":76,"eClass":"EGenericType"},{"id":77,"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":"model","changeable":true,"resolveProxies":true,"lowerBound":0,"id":78,"derived":false},{"id":79,"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":"rootInstances","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,"unique":true,"name":"newInstance","lowerBound":1,"id":84,"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":"eClass","changeable":true,"resolveProxies":true,"lowerBound":1,"id":85,"derived":false},{"container":false,"ordered":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":86,"derived":false},{"id":87,"eClass":"EGenericType"},{"id":88,"eClass":"EGenericType"},{"id":89,"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":"type","changeable":true,"resolveProxies":true,"lowerBound":1,"id":90,"derived":false},{"id":91,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"getSlot","lowerBound":0,"id":92,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"get","lowerBound":0,"id":93,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"get","lowerBound":0,"id":94,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":-1,"unique":true,"name":"getInverse","lowerBound":0,"id":95,"many":true,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":-1,"unique":true,"name":"getInverse","lowerBound":0,"id":96,"many":true,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getEClass","lowerBound":1,"id":97,"many":false,"required":true,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"isSet","lowerBound":1,"id":98,"many":false,"required":true,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"set","lowerBound":0,"id":99,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"set","lowerBound":0,"id":100,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"unset","lowerBound":0,"id":101,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"add","lowerBound":0,"id":102,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"add","lowerBound":0,"id":103,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"add","lowerBound":0,"id":104,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"add","lowerBound":0,"id":105,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"remove","lowerBound":0,"id":106,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"remove","lowerBound":0,"id":107,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"remove","lowerBound":0,"id":108,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"migrate","lowerBound":0,"id":109,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"migrate","lowerBound":0,"id":110,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"instanceOf","lowerBound":0,"id":111,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"instanceOf","lowerBound":0,"id":112,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getContainer","lowerBound":0,"id":113,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":-1,"unique":true,"name":"getContents","lowerBound":0,"id":114,"many":true,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getContainerReference","lowerBound":0,"id":115,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getResource","lowerBound":0,"id":116,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"isProxy","lowerBound":1,"id":117,"many":false,"required":true,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"copy","lowerBound":0,"id":118,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getLink","lowerBound":0,"id":119,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":-1,"unique":true,"name":"getLinks","lowerBound":0,"id":120,"many":true,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getLink","lowerBound":0,"id":121,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":-1,"unique":true,"name":"getLinks","lowerBound":0,"id":122,"many":true,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"validate","lowerBound":1,"id":123,"many":false,"required":true,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"validate","lowerBound":1,"id":124,"many":false,"required":true,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"evaluate","lowerBound":0,"id":125,"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":"slots","changeable":true,"resolveProxies":true,"lowerBound":0,"id":126,"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":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":"uri","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":"uuid","changeable":true,"lowerBound":0,"iD":false,"id":129,"derived":false},{"id":130,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"feature","lowerBound":1,"id":131,"many":false,"required":true,"eClass":"EParameter"},{"id":132,"eClass":"EGenericType"},{"id":133,"eClass":"EGenericType"},{"name":"V","id":134,"eClass":"ETypeParameter"},{"ordered":true,"upperBound":1,"unique":true,"name":"feature","lowerBound":1,"id":135,"many":false,"required":true,"eClass":"EParameter"},{"id":136,"eClass":"EGenericType"},{"id":137,"eClass":"EGenericType"},{"name":"V","id":138,"eClass":"ETypeParameter"},{"ordered":true,"upperBound":1,"unique":true,"name":"featureName","lowerBound":1,"id":139,"many":false,"required":true,"eClass":"EParameter"},{"id":140,"eClass":"EGenericType"},{"id":141,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"reference","lowerBound":1,"id":142,"many":false,"required":true,"eClass":"EParameter"},{"id":143,"eClass":"EGenericType"},{"id":144,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"referenceName","lowerBound":1,"id":145,"many":false,"required":true,"eClass":"EParameter"},{"id":146,"eClass":"EGenericType"},{"id":147,"eClass":"EGenericType"},{"id":148,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"feature","lowerBound":1,"id":149,"many":false,"required":true,"eClass":"EParameter"},{"id":150,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"feature","lowerBound":1,"id":151,"many":false,"required":true,"eClass":"EParameter"},{"ordered":true,"upperBound":1,"unique":true,"name":"value","lowerBound":0,"id":152,"many":false,"required":false,"eClass":"EParameter"},{"id":153,"eClass":"EGenericType"},{"id":154,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"featureName","lowerBound":1,"id":155,"many":false,"required":true,"eClass":"EParameter"},{"ordered":true,"upperBound":1,"unique":true,"name":"value","lowerBound":0,"id":156,"many":false,"required":false,"eClass":"EParameter"},{"id":157,"eClass":"EGenericType"},{"id":158,"eClass":"EGenericType"},{"id":159,"eClass":"EGenericType"},{"name":"V","id":160,"eClass":"ETypeParameter"},{"ordered":true,"upperBound":1,"unique":true,"name":"feature","lowerBound":1,"id":161,"many":false,"required":true,"eClass":"EParameter"},{"id":162,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"feature","lowerBound":1,"id":163,"many":false,"required":true,"eClass":"EParameter"},{"ordered":true,"upperBound":1,"unique":true,"name":"index","lowerBound":1,"id":164,"many":false,"required":true,"eClass":"EParameter"},{"ordered":true,"upperBound":1,"unique":true,"name":"value","lowerBound":1,"id":165,"many":false,"required":true,"eClass":"EParameter"},{"id":166,"eClass":"EGenericType"},{"id":167,"eClass":"EGenericType"},{"id":168,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"feature","lowerBound":1,"id":169,"many":false,"required":true,"eClass":"EParameter"},{"ordered":true,"upperBound":1,"unique":true,"name":"value","lowerBound":1,"id":170,"many":false,"required":true,"eClass":"EParameter"},{"id":171,"eClass":"EGenericType"},{"id":172,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"featureName","lowerBound":1,"id":173,"many":false,"required":true,"eClass":"EParameter"},{"ordered":true,"upperBound":1,"unique":true,"name":"value","lowerBound":1,"id":174,"many":false,"required":true,"eClass":"EParameter"},{"id":175,"eClass":"EGenericType"},{"id":176,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"featureName","lowerBound":1,"id":177,"many":false,"required":true,"eClass":"EParameter"},{"ordered":true,"upperBound":1,"unique":true,"name":"index","lowerBound":1,"id":178,"many":false,"required":true,"eClass":"EParameter"},{"ordered":true,"upperBound":1,"unique":true,"name":"value","lowerBound":1,"id":179,"many":false,"required":true,"eClass":"EParameter"},{"id":180,"eClass":"EGenericType"},{"id":181,"eClass":"EGenericType"},{"id":182,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"feature","lowerBound":1,"id":183,"many":false,"required":true,"eClass":"EParameter"},{"ordered":true,"upperBound":1,"unique":true,"name":"value","lowerBound":1,"id":184,"many":false,"required":true,"eClass":"EParameter"},{"id":185,"eClass":"EGenericType"},{"id":186,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"feature","lowerBound":1,"id":187,"many":false,"required":true,"eClass":"EParameter"},{"ordered":true,"upperBound":1,"unique":true,"name":"index","lowerBound":1,"id":188,"many":false,"required":true,"eClass":"EParameter"},{"id":189,"eClass":"EGenericType"},{"id":190,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"featureName","lowerBound":1,"id":191,"many":false,"required":true,"eClass":"EParameter"},{"ordered":true,"upperBound":1,"unique":true,"name":"value","lowerBound":1,"id":192,"many":false,"required":true,"eClass":"EParameter"},{"id":193,"eClass":"EGenericType"},{"id":194,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"eClass","lowerBound":1,"id":195,"many":false,"required":true,"eClass":"EParameter"},{"id":196,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"className","lowerBound":1,"id":197,"many":false,"required":true,"eClass":"EParameter"},{"id":198,"eClass":"EGenericType"},{"id":199,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"eClass","lowerBound":0,"id":200,"many":false,"required":false,"eClass":"EParameter"},{"id":201,"eClass":"EGenericType"},{"id":202,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"className","lowerBound":0,"id":203,"many":false,"required":false,"eClass":"EParameter"},{"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"},{"id":211,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"referenceName","lowerBound":1,"id":212,"many":false,"required":true,"eClass":"EParameter"},{"id":213,"eClass":"EGenericType"},{"id":214,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"referenceName","lowerBound":1,"id":215,"many":false,"required":true,"eClass":"EParameter"},{"id":216,"eClass":"EGenericType"},{"id":217,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"reference","lowerBound":1,"id":218,"many":false,"required":true,"eClass":"EParameter"},{"id":219,"eClass":"EGenericType"},{"id":220,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"reference","lowerBound":1,"id":221,"many":false,"required":true,"eClass":"EParameter"},{"id":222,"eClass":"EGenericType"},{"id":223,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"chain","lowerBound":0,"id":224,"many":false,"required":false,"eClass":"EParameter"},{"id":225,"eClass":"EGenericType"},{"id":226,"eClass":"EGenericType"},{"name":"V","id":227,"eClass":"ETypeParameter"},{"ordered":true,"upperBound":1,"unique":true,"name":"expression","lowerBound":1,"id":228,"many":false,"required":true,"eClass":"EParameter"},{"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":false,"unique":true,"name":"instance","changeable":true,"resolveProxies":true,"lowerBound":1,"id":232,"derived":false},{"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":false,"unsettable":false,"transient":false,"unique":true,"name":"values","changeable":true,"resolveProxies":true,"lowerBound":0,"id":235,"derived":false},{"id":236,"eClass":"EGenericType"},{"id":237,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"getEFeature","lowerBound":0,"id":238,"many":false,"required":false,"eClass":"EOperation"},{"id":239,"eClass":"EGenericType"},{"id":240,"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":"eAttribute","changeable":true,"resolveProxies":true,"lowerBound":1,"id":241,"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":"values","changeable":true,"lowerBound":0,"iD":false,"id":242,"derived":false},{"id":243,"eClass":"EGenericType"},{"id":244,"eClass":"EGenericType"},{"id":245,"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":"eReference","changeable":true,"resolveProxies":true,"lowerBound":1,"id":246,"derived":false},{"id":247,"eClass":"EGenericType"},{"id":248,"eClass":"EGenericType"},{"id":249,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"getEPackage","lowerBound":0,"id":250,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getEClassifier","lowerBound":0,"id":251,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getEFeature","lowerBound":0,"id":252,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getEClass","lowerBound":0,"id":253,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getEReference","lowerBound":0,"id":254,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getEAttribute","lowerBound":0,"id":255,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getEDataType","lowerBound":0,"id":256,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getElement","lowerBound":0,"id":257,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"validate","lowerBound":0,"id":258,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":-1,"unique":true,"name":"getEPackages","lowerBound":0,"id":259,"many":true,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"setDefaultPackage","lowerBound":0,"id":260,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getEEnum","lowerBound":0,"id":261,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getEEnumLiteral","lowerBound":0,"id":262,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"delete","lowerBound":0,"id":263,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":-1,"unique":true,"name":"getInverse","lowerBound":0,"id":264,"many":true,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":-1,"unique":true,"name":"getESubTypes","lowerBound":0,"id":265,"many":true,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":-1,"unique":true,"name":"getEAllSubTypes","lowerBound":0,"id":266,"many":true,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"setEOpposite","lowerBound":0,"id":267,"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":"resources","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":false,"unsettable":false,"transient":false,"unique":true,"name":"defaultPackage","changeable":true,"resolveProxies":true,"lowerBound":0,"id":269,"derived":false},{"id":270,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"name","lowerBound":1,"id":271,"many":false,"required":true,"eClass":"EParameter"},{"id":272,"eClass":"EGenericType"},{"id":273,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"name","lowerBound":1,"id":274,"many":false,"required":true,"eClass":"EParameter"},{"id":275,"eClass":"EGenericType"},{"id":276,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"name","lowerBound":1,"id":277,"many":false,"required":true,"eClass":"EParameter"},{"id":278,"eClass":"EGenericType"},{"id":279,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"name","lowerBound":1,"id":280,"many":false,"required":true,"eClass":"EParameter"},{"id":281,"eClass":"EGenericType"},{"id":282,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"name","lowerBound":1,"id":283,"many":false,"required":true,"eClass":"EParameter"},{"id":284,"eClass":"EGenericType"},{"id":285,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"name","lowerBound":1,"id":286,"many":false,"required":true,"eClass":"EParameter"},{"id":287,"eClass":"EGenericType"},{"id":288,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"name","lowerBound":1,"id":289,"many":false,"required":true,"eClass":"EParameter"},{"id":290,"eClass":"EGenericType"},{"id":291,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"name","lowerBound":1,"id":292,"many":false,"required":true,"eClass":"EParameter"},{"id":293,"eClass":"EGenericType"},{"id":294,"eClass":"EGenericType"},{"id":295,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"packageName","lowerBound":1,"id":296,"many":false,"required":true,"eClass":"EParameter"},{"id":297,"eClass":"EGenericType"},{"id":298,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"name","lowerBound":1,"id":299,"many":false,"required":true,"eClass":"EParameter"},{"id":300,"eClass":"EGenericType"},{"id":301,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"name","lowerBound":1,"id":302,"many":false,"required":true,"eClass":"EParameter"},{"id":303,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"metamodelElement","lowerBound":1,"id":304,"many":false,"required":true,"eClass":"EParameter"},{"id":305,"eClass":"EGenericType"},{"id":306,"eClass":"EGenericType"},{"name":"V","id":307,"eClass":"ETypeParameter"},{"ordered":true,"upperBound":1,"unique":true,"name":"metamodelElement","lowerBound":1,"id":308,"many":false,"required":true,"eClass":"EParameter"},{"ordered":true,"upperBound":1,"unique":true,"name":"reference","lowerBound":1,"id":309,"many":false,"required":true,"eClass":"EParameter"},{"id":310,"eClass":"EGenericType"},{"id":311,"eClass":"EGenericType"},{"id":312,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"eClass","lowerBound":1,"id":313,"many":false,"required":true,"eClass":"EParameter"},{"id":314,"eClass":"EGenericType"},{"id":315,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"eClass","lowerBound":1,"id":316,"many":false,"required":true,"eClass":"EParameter"},{"id":317,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"reference","lowerBound":1,"id":318,"many":false,"required":true,"eClass":"EParameter"},{"ordered":true,"upperBound":1,"unique":true,"name":"opposite","lowerBound":1,"id":319,"many":false,"required":true,"eClass":"EParameter"},{"id":320,"eClass":"EGenericType"},{"id":321,"eClass":"EGenericType"},{"id":322,"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":"metamodel","changeable":true,"resolveProxies":true,"lowerBound":0,"id":323,"derived":false},{"id":324,"eClass":"EGenericType"},{"id":325,"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":"rootPackages","changeable":true,"resolveProxies":true,"lowerBound":0,"id":326,"derived":false},{"id":327,"eClass":"EGenericType"},{"id":328,"eClass":"EGenericType"},{"id":329,"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":330,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"encoding","changeable":true,"lowerBound":0,"iD":false,"id":331,"derived":false},{"id":332,"eClass":"EGenericType"},{"id":333,"eClass":"EGenericType"},{"name":"E","id":334,"eClass":"ETypeParameter"}],"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":17,"target":2},{"source":17,"target":19},{"source":17,"target":1},{"source":17,"target":20},{"source":19,"target":2},{"source":18,"target":9},{"source":18,"target":21},{"source":18,"target":1},{"source":18,"target":22},{"source":21,"target":9},{"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":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":38},{"source":2,"target":39},{"source":2,"target":20},{"source":23,"target":5},{"source":23,"target":40},{"source":23,"target":2},{"source":23,"target":41},{"source":40,"target":5},{"source":41,"target":42},{"source":41,"target":23},{"source":24,"target":5},{"source":24,"target":43},{"source":24,"target":2},{"source":24,"target":44},{"source":43,"target":5},{"source":44,"target":45},{"source":44,"target":24},{"source":25,"target":5},{"source":25,"target":46},{"source":25,"target":2},{"source":25,"target":47},{"source":46,"target":5},{"source":47,"target":48},{"source":47,"target":25},{"source":26,"target":5},{"source":26,"target":49},{"source":26,"target":2},{"source":26,"target":50},{"source":49,"target":5},{"source":50,"target":51},{"source":50,"target":26},{"source":27,"target":4},{"source":27,"target":52},{"source":27,"target":2},{"source":27,"target":53},{"source":52,"target":4},{"source":53,"target":54},{"source":53,"target":27},{"source":28,"target":55},{"source":28,"target":2},{"source":55,"target":56},{"source":55,"target":57},{"source":57,"target":58},{"source":57,"target":12},{"source":58,"target":5},{"source":29,"target":5},{"source":29,"target":59},{"source":29,"target":2},{"source":29,"target":60},{"source":59,"target":5},{"source":60,"target":61},{"source":60,"target":29},{"source":30,"target":5},{"source":30,"target":62},{"source":30,"target":2},{"source":30,"target":63},{"source":62,"target":5},{"source":63,"target":64},{"source":63,"target":30},{"source":31,"target":2},{"source":31,"target":65},{"source":65,"target":5},{"source":65,"target":66},{"source":65,"target":31},{"source":66,"target":5},{"source":32,"target":2},{"source":32,"target":16},{"source":32,"target":67},{"source":67,"target":16},{"source":33,"target":2},{"source":33,"target":16},{"source":33,"target":68},{"source":68,"target":16},{"source":34,"target":2},{"source":34,"target":16},{"source":34,"target":69},{"source":69,"target":16},{"source":35,"target":3},{"source":35,"target":70},{"source":35,"target":2},{"source":35,"target":71},{"source":70,"target":3},{"source":71,"target":14},{"source":71,"target":72},{"source":71,"target":35},{"source":72,"target":14},{"source":36,"target":9},{"source":36,"target":73},{"source":36,"target":2},{"source":73,"target":9},{"source":37,"target":4},{"source":37,"target":74},{"source":37,"target":2},{"source":37,"target":75},{"source":74,"target":4},{"source":38,"target":76},{"source":38,"target":2},{"source":39,"target":3},{"source":39,"target":77},{"source":39,"target":2},{"source":39,"target":78},{"source":77,"target":3},{"source":20,"target":1},{"source":20,"target":79},{"source":20,"target":2},{"source":20,"target":17},{"source":79,"target":1},{"source":3,"target":0},{"source":3,"target":11},{"source":3,"target":80},{"source":3,"target":78},{"source":3,"target":81},{"source":80,"target":5},{"source":80,"target":82},{"source":80,"target":3},{"source":82,"target":5},{"source":78,"target":2},{"source":78,"target":83},{"source":78,"target":3},{"source":78,"target":39},{"source":83,"target":2},{"source":81,"target":11},{"source":4,"target":0},{"source":4,"target":84},{"source":4,"target":85},{"source":4,"target":86},{"source":4,"target":75},{"source":84,"target":5},{"source":84,"target":87},{"source":84,"target":4},{"source":87,"target":5},{"source":85,"target":88},{"source":85,"target":4},{"source":86,"target":5},{"source":86,"target":89},{"source":86,"target":4},{"source":86,"target":90},{"source":89,"target":5},{"source":75,"target":2},{"source":75,"target":91},{"source":75,"target":4},{"source":75,"target":37},{"source":91,"target":2},{"source":5,"target":0},{"source":5,"target":92},{"source":5,"target":93},{"source":5,"target":94},{"source":5,"target":95},{"source":5,"target":96},{"source":5,"target":97},{"source":5,"target":98},{"source":5,"target":99},{"source":5,"target":100},{"source":5,"target":101},{"source":5,"target":102},{"source":5,"target":103},{"source":5,"target":104},{"source":5,"target":105},{"source":5,"target":106},{"source":5,"target":107},{"source":5,"target":108},{"source":5,"target":109},{"source":5,"target":110},{"source":5,"target":111},{"source":5,"target":112},{"source":5,"target":113},{"source":5,"target":114},{"source":5,"target":115},{"source":5,"target":116},{"source":5,"target":117},{"source":5,"target":118},{"source":5,"target":119},{"source":5,"target":120},{"source":5,"target":121},{"source":5,"target":122},{"source":5,"target":123},{"source":5,"target":124},{"source":5,"target":125},{"source":5,"target":126},{"source":5,"target":90},{"source":5,"target":127},{"source":5,"target":128},{"source":5,"target":129},{"source":92,"target":6},{"source":92,"target":130},{"source":92,"target":5},{"source":92,"target":131},{"source":130,"target":6},{"source":131,"target":132},{"source":131,"target":92},{"source":93,"target":133},{"source":93,"target":5},{"source":93,"target":134},{"source":93,"target":135},{"source":133,"target":134},{"source":135,"target":136},{"source":135,"target":93},{"source":94,"target":137},{"source":94,"target":5},{"source":94,"target":138},{"source":94,"target":139},{"source":137,"target":138},{"source":139,"target":140},{"source":139,"target":94},{"source":95,"target":5},{"source":95,"target":141},{"source":95,"target":5},{"source":95,"target":142},{"source":141,"target":5},{"source":142,"target":143},{"source":142,"target":95},{"source":96,"target":5},{"source":96,"target":144},{"source":96,"target":5},{"source":96,"target":145},{"source":144,"target":5},{"source":145,"target":146},{"source":145,"target":96},{"source":97,"target":147},{"source":97,"target":5},{"source":98,"target":148},{"source":98,"target":5},{"source":98,"target":149},{"source":149,"target":150},{"source":149,"target":98},{"source":99,"target":5},{"source":99,"target":151},{"source":99,"target":152},{"source":151,"target":153},{"source":151,"target":99},{"source":152,"target":154},{"source":152,"target":99},{"source":100,"target":5},{"source":100,"target":155},{"source":100,"target":156},{"source":155,"target":157},{"source":155,"target":100},{"source":156,"target":158},{"source":156,"target":100},{"source":101,"target":159},{"source":101,"target":5},{"source":101,"target":160},{"source":101,"target":161},{"source":159,"target":160},{"source":161,"target":162},{"source":161,"target":101},{"source":102,"target":5},{"source":102,"target":163},{"source":102,"target":164},{"source":102,"target":165},{"source":163,"target":166},{"source":163,"target":102},{"source":164,"target":167},{"source":164,"target":102},{"source":165,"target":168},{"source":165,"target":102},{"source":103,"target":5},{"source":103,"target":169},{"source":103,"target":170},{"source":169,"target":171},{"source":169,"target":103},{"source":170,"target":172},{"source":170,"target":103},{"source":104,"target":5},{"source":104,"target":173},{"source":104,"target":174},{"source":173,"target":175},{"source":173,"target":104},{"source":174,"target":176},{"source":174,"target":104},{"source":105,"target":5},{"source":105,"target":177},{"source":105,"target":178},{"source":105,"target":179},{"source":177,"target":180},{"source":177,"target":105},{"source":178,"target":181},{"source":178,"target":105},{"source":179,"target":182},{"source":179,"target":105},{"source":106,"target":5},{"source":106,"target":183},{"source":106,"target":184},{"source":183,"target":185},{"source":183,"target":106},{"source":184,"target":186},{"source":184,"target":106},{"source":107,"target":5},{"source":107,"target":187},{"source":107,"target":188},{"source":187,"target":189},{"source":187,"target":107},{"source":188,"target":190},{"source":188,"target":107},{"source":108,"target":5},{"source":108,"target":191},{"source":108,"target":192},{"source":191,"target":193},{"source":191,"target":108},{"source":192,"target":194},{"source":192,"target":108},{"source":109,"target":5},{"source":109,"target":195},{"source":195,"target":196},{"source":195,"target":109},{"source":110,"target":5},{"source":110,"target":197},{"source":197,"target":198},{"source":197,"target":110},{"source":111,"target":199},{"source":111,"target":5},{"source":111,"target":200},{"source":200,"target":201},{"source":200,"target":111},{"source":112,"target":202},{"source":112,"target":5},{"source":112,"target":203},{"source":203,"target":204},{"source":203,"target":112},{"source":113,"target":5},{"source":113,"target":205},{"source":113,"target":5},{"source":205,"target":5},{"source":114,"target":5},{"source":114,"target":206},{"source":114,"target":5},{"source":206,"target":5},{"source":115,"target":207},{"source":115,"target":5},{"source":116,"target":3},{"source":116,"target":208},{"source":116,"target":5},{"source":208,"target":3},{"source":117,"target":209},{"source":117,"target":5},{"source":118,"target":5},{"source":118,"target":210},{"source":118,"target":5},{"source":210,"target":5},{"source":119,"target":5},{"source":119,"target":211},{"source":119,"target":5},{"source":119,"target":212},{"source":211,"target":5},{"source":212,"target":213},{"source":212,"target":119},{"source":120,"target":5},{"source":120,"target":214},{"source":120,"target":5},{"source":120,"target":215},{"source":214,"target":5},{"source":215,"target":216},{"source":215,"target":120},{"source":121,"target":5},{"source":121,"target":217},{"source":121,"target":5},{"source":121,"target":218},{"source":217,"target":5},{"source":218,"target":219},{"source":218,"target":121},{"source":122,"target":5},{"source":122,"target":220},{"source":122,"target":5},{"source":122,"target":221},{"source":220,"target":5},{"source":221,"target":222},{"source":221,"target":122},{"source":123,"target":5},{"source":124,"target":223},{"source":124,"target":5},{"source":124,"target":224},{"source":224,"target":13},{"source":224,"target":225},{"source":224,"target":124},{"source":225,"target":13},{"source":125,"target":226},{"source":125,"target":5},{"source":125,"target":227},{"source":125,"target":228},{"source":125,"target":16},{"source":125,"target":229},{"source":226,"target":227},{"source":228,"target":230},{"source":228,"target":125},{"source":229,"target":16},{"source":126,"target":6},{"source":126,"target":231},{"source":126,"target":5},{"source":126,"target":232},{"source":231,"target":6},{"source":90,"target":4},{"source":90,"target":233},{"source":90,"target":5},{"source":90,"target":86},{"source":233,"target":4},{"source":127,"target":8},{"source":127,"target":234},{"source":127,"target":5},{"source":127,"target":235},{"source":234,"target":8},{"source":128,"target":14},{"source":128,"target":236},{"source":128,"target":5},{"source":236,"target":14},{"source":129,"target":237},{"source":129,"target":5},{"source":6,"target":0},{"source":6,"target":238},{"source":6,"target":232},{"source":238,"target":239},{"source":238,"target":6},{"source":232,"target":5},{"source":232,"target":240},{"source":232,"target":6},{"source":232,"target":126},{"source":240,"target":5},{"source":7,"target":0},{"source":7,"target":6},{"source":7,"target":241},{"source":7,"target":242},{"source":7,"target":243},{"source":241,"target":244},{"source":241,"target":7},{"source":242,"target":245},{"source":242,"target":7},{"source":243,"target":6},{"source":8,"target":0},{"source":8,"target":6},{"source":8,"target":246},{"source":8,"target":235},{"source":8,"target":247},{"source":246,"target":248},{"source":246,"target":8},{"source":235,"target":5},{"source":235,"target":249},{"source":235,"target":8},{"source":235,"target":127},{"source":249,"target":5},{"source":247,"target":6},{"source":9,"target":0},{"source":9,"target":250},{"source":9,"target":251},{"source":9,"target":252},{"source":9,"target":253},{"source":9,"target":254},{"source":9,"target":255},{"source":9,"target":256},{"source":9,"target":257},{"source":9,"target":258},{"source":9,"target":259},{"source":9,"target":260},{"source":9,"target":261},{"source":9,"target":262},{"source":9,"target":263},{"source":9,"target":264},{"source":9,"target":265},{"source":9,"target":266},{"source":9,"target":267},{"source":9,"target":268},{"source":9,"target":22},{"source":9,"target":269},{"source":250,"target":270},{"source":250,"target":9},{"source":250,"target":271},{"source":271,"target":272},{"source":271,"target":250},{"source":251,"target":273},{"source":251,"target":9},{"source":251,"target":274},{"source":274,"target":275},{"source":274,"target":251},{"source":252,"target":276},{"source":252,"target":9},{"source":252,"target":277},{"source":277,"target":278},{"source":277,"target":252},{"source":253,"target":279},{"source":253,"target":9},{"source":253,"target":280},{"source":280,"target":281},{"source":280,"target":253},{"source":254,"target":282},{"source":254,"target":9},{"source":254,"target":283},{"source":283,"target":284},{"source":283,"target":254},{"source":255,"target":285},{"source":255,"target":9},{"source":255,"target":286},{"source":286,"target":287},{"source":286,"target":255},{"source":256,"target":288},{"source":256,"target":9},{"source":256,"target":289},{"source":289,"target":290},{"source":289,"target":256},{"source":257,"target":291},{"source":257,"target":9},{"source":257,"target":292},{"source":292,"target":293},{"source":292,"target":257},{"source":258,"target":9},{"source":258,"target":16},{"source":258,"target":294},{"source":294,"target":16},{"source":259,"target":295},{"source":259,"target":9},{"source":260,"target":9},{"source":260,"target":296},{"source":296,"target":297},{"source":296,"target":260},{"source":261,"target":298},{"source":261,"target":9},{"source":261,"target":299},{"source":299,"target":300},{"source":299,"target":261},{"source":262,"target":301},{"source":262,"target":9},{"source":262,"target":302},{"source":302,"target":303},{"source":302,"target":262},{"source":263,"target":9},{"source":263,"target":304},{"source":304,"target":305},{"source":304,"target":263},{"source":264,"target":306},{"source":264,"target":9},{"source":264,"target":307},{"source":264,"target":308},{"source":264,"target":309},{"source":306,"target":307},{"source":308,"target":310},{"source":308,"target":264},{"source":309,"target":311},{"source":309,"target":264},{"source":265,"target":312},{"source":265,"target":9},{"source":265,"target":313},{"source":313,"target":314},{"source":313,"target":265},{"source":266,"target":315},{"source":266,"target":9},{"source":266,"target":316},{"source":316,"target":317},{"source":316,"target":266},{"source":267,"target":9},{"source":267,"target":318},{"source":267,"target":319},{"source":318,"target":320},{"source":318,"target":267},{"source":319,"target":321},{"source":319,"target":267},{"source":268,"target":10},{"source":268,"target":322},{"source":268,"target":9},{"source":268,"target":323},{"source":322,"target":10},{"source":22,"target":1},{"source":22,"target":324},{"source":22,"target":9},{"source":22,"target":18},{"source":324,"target":1},{"source":269,"target":325},{"source":269,"target":9},{"source":10,"target":0},{"source":10,"target":11},{"source":10,"target":326},{"source":10,"target":323},{"source":10,"target":327},{"source":326,"target":328},{"source":326,"target":10},{"source":323,"target":9},{"source":323,"target":329},{"source":323,"target":10},{"source":323,"target":268},{"source":329,"target":9},{"source":327,"target":11},{"source":11,"target":0},{"source":11,"target":330},{"source":11,"target":331},{"source":330,"target":14},{"source":330,"target":332},{"source":330,"target":11},{"source":332,"target":14},{"source":331,"target":333},{"source":331,"target":11},{"source":12,"target":0},{"source":12,"target":334},{"source":13,"target":0},{"source":14,"target":0},{"source":15,"target":0},{"source":16,"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="spoon" nsURI="http://spoon" nsPrefix="spoon"> <eClassifiers xsi:type="ecore:EDataType" name="Object" instanceClassName="java.lang.Object"/> <eClassifiers xsi:type="ecore:EDataType" name="Constructor" instanceClassName="java.lang.reflect.Constructor"/> <eClassifiers xsi:type="ecore:EDataType" name="Method" instanceClassName="java.lang.reflect.Method"/> <eClassifiers xsi:type="ecore:EDataType" name="Boolean" instanceClassName="java.lang.Boolean"/> <eClassifiers xsi:type="ecore:EDataType" name="Field" instanceClassName="java.lang.reflect.Field"/> <eClassifiers xsi:type="ecore:EDataType" name="String" instanceClassName="java.lang.String"/> <eClassifiers xsi:type="ecore:EDataType" name="Class" instanceClassName="java.lang.Class"/> <eClassifiers xsi:type="ecore:EDataType" name="Annotation" instanceClassName="java.lang.annotation.Annotation"/> <eClassifiers xsi:type="ecore:EDataType" name="Integer" instanceClassName="java.lang.Integer"/> <eClassifiers xsi:type="ecore:EDataType" name="BinaryOperatorKind" instanceClassName="spoon.reflect.code.BinaryOperatorKind"/> <eClassifiers xsi:type="ecore:EDataType" name="UnaryOperatorKind" instanceClassName="spoon.reflect.code.UnaryOperatorKind"/> <eClassifiers xsi:type="ecore:EDataType" name="ModifierKind" instanceClassName="spoon.reflect.declaration.ModifierKind"/> <eClassifiers xsi:type="ecore:EDataType" name="File" instanceClassName="java.io.File"/> <eClassifiers xsi:type="ecore:EClass" name="Dummy" abstract="true"/> <eSubpackages name="reflect" nsURI="http://spoon#reflect" nsPrefix="spoon.reflect"> <eClassifiers xsi:type="ecore:EClass" name="Dummy"/> <eSubpackages name="reference" nsURI="http://spoon#reflect.reference" nsPrefix="spoon.reflect.reference"> <eClassifiers xsi:type="ecore:EClass" name="CtArrayTypeReference" eSuperTypes="#//reflect/reference/CtTypeReference #//facade/CtArrayTypeReference"> <eStructuralFeatures xsi:type="ecore:EReference" name="ComponentType" eType="#//reflect/reference/CtTypeReference"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CtExecutableReference" eSuperTypes="#//reflect/reference/CtGenericElementReference #//reflect/reference/CtReference #//facade/CtExecutableReference"> <eStructuralFeatures xsi:type="ecore:EReference" name="Type" eType="#//reflect/reference/CtTypeReference"/> <eStructuralFeatures xsi:type="ecore:EReference" name="DeclaringType" eType="#//reflect/reference/CtTypeReference"/> <eStructuralFeatures xsi:type="ecore:EReference" name="ParameterTypes" upperBound="-1" eType="#//reflect/reference/CtTypeReference"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="Static" eType="#//Boolean"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="ActualConstructor" eType="#//Constructor" changeable="false" volatile="true" transient="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="ActualMethod" eType="#//Method" changeable="false" volatile="true" transient="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CtFieldReference" eSuperTypes="#//reflect/reference/CtVariableReference #//facade/CtFieldReference"> <eStructuralFeatures xsi:type="ecore:EReference" name="DeclaringType" eType="#//reflect/reference/CtTypeReference"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="Final" eType="#//Boolean"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="Static" eType="#//Boolean"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="ActualField" eType="#//Field" changeable="false" volatile="true" transient="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="QualifiedName" eType="#//String" changeable="false" volatile="true" transient="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CtGenericElementReference" eSuperTypes="#//facade/CtGenericElementReference"> <eStructuralFeatures xsi:type="ecore:EReference" name="ActualTypeArguments" upperBound="-1" eType="#//reflect/reference/CtTypeReference"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CtLocalVariableReference" eSuperTypes="#//reflect/reference/CtVariableReference #//facade/CtLocalVariableReference"/> <eClassifiers xsi:type="ecore:EClass" name="CtPackageReference" eSuperTypes="#//reflect/reference/CtReference #//facade/CtPackageReference"/> <eClassifiers xsi:type="ecore:EClass" name="CtParameterReference" eSuperTypes="#//reflect/reference/CtVariableReference #//facade/CtParameterReference"> <eStructuralFeatures xsi:type="ecore:EReference" name="DeclaringExecutable" eType="#//reflect/reference/CtExecutableReference"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CtReference" eSuperTypes="#//facade/CtReference"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="SimpleName" eType="#//String"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="Annotations" upperBound="-1" eType="#//Annotation" changeable="false"/> <eStructuralFeatures xsi:type="ecore:EReference" name="Declaration" eType="#//reflect/declaration/CtElement" changeable="false"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CtTypeParameterReference" eSuperTypes="#//reflect/reference/CtTypeReference #//facade/CtTypeParameterReference"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="Upper" eType="#//Boolean"/> <eStructuralFeatures xsi:type="ecore:EReference" name="Bounds" upperBound="-1" eType="#//reflect/reference/CtTypeReference"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CtTypeReference" eSuperTypes="#//reflect/reference/CtGenericElementReference #//reflect/reference/CtReference #//facade/CtTypeReference"> <eStructuralFeatures xsi:type="ecore:EReference" name="DeclaringType" eType="#//reflect/reference/CtTypeReference"/> <eStructuralFeatures xsi:type="ecore:EReference" name="Package" eType="#//reflect/reference/CtPackageReference"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="ActualClass" eType="#//Class" changeable="false" volatile="true" transient="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="Primitif" eType="#//Boolean" changeable="false" volatile="true" transient="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="QualifiedName" eType="#//String" changeable="false" volatile="true" transient="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CtVariableReference" eSuperTypes="#//reflect/reference/CtReference #//facade/CtVariableReference"> <eStructuralFeatures xsi:type="ecore:EReference" name="Type" eType="#//reflect/reference/CtTypeReference"/> </eClassifiers> </eSubpackages> <eSubpackages name="code" nsURI="http://spoon#reflect.code" nsPrefix="spoon.reflect.code"> <eClassifiers xsi:type="ecore:EClass" name="CtAbstractInvocation" eSuperTypes="#//reflect/declaration/CtElement #//facade/CtAbstractInvocation"> <eStructuralFeatures xsi:type="ecore:EReference" name="Executable" eType="#//reflect/reference/CtExecutableReference"/> <eStructuralFeatures xsi:type="ecore:EReference" name="Arguments" upperBound="-1" eType="#//reflect/code/CtExpression"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CtArrayAccess" eSuperTypes="#//reflect/code/CtTargetedExpression #//facade/CtArrayAccess"> <eStructuralFeatures xsi:type="ecore:EReference" name="IndexExpression" eType="#//reflect/code/CtExpression"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CtAssert" eSuperTypes="#//reflect/code/CtStatement #//facade/CtAssert"> <eStructuralFeatures xsi:type="ecore:EReference" name="Expression" eType="#//reflect/code/CtExpression"/> <eStructuralFeatures xsi:type="ecore:EReference" name="AssertExpression" eType="#//reflect/code/CtExpression"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CtAssignment" eSuperTypes="#//reflect/code/CtExpression #//reflect/code/CtStatement #//facade/CtAssignment"> <eStructuralFeatures xsi:type="ecore:EReference" name="Assignment" eType="#//reflect/code/CtExpression"/> <eStructuralFeatures xsi:type="ecore:EReference" name="Assigned" eType="#//reflect/code/CtExpression"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CtBinaryOperator" eSuperTypes="#//reflect/code/CtExpression #//facade/CtBinaryOperator"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="Kind" eType="#//BinaryOperatorKind"/> <eStructuralFeatures xsi:type="ecore:EReference" name="RightHandOperand" eType="#//reflect/code/CtExpression"/> <eStructuralFeatures xsi:type="ecore:EReference" name="LeftHandOperand" eType="#//reflect/code/CtExpression"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CtBlock" eSuperTypes="#//reflect/code/CtStatement #//facade/CtBlock"> <eStructuralFeatures xsi:type="ecore:EReference" name="Statements" upperBound="-1" eType="#//reflect/code/CtStatement"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CtBreak" eSuperTypes="#//reflect/code/CtCFlowBreak #//facade/CtBreak"> <eStructuralFeatures xsi:type="ecore:EReference" name="LabelledStatement" eType="#//reflect/code/CtStatement"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CtCFlowBreak" eSuperTypes="#//reflect/code/CtStatement #//facade/CtCFlowBreak"/> <eClassifiers xsi:type="ecore:EClass" name="CtCase" eSuperTypes="#//reflect/code/CtStatement #//facade/CtCase"> <eStructuralFeatures xsi:type="ecore:EReference" name="CaseExpression" eType="#//reflect/code/CtExpression"/> <eStructuralFeatures xsi:type="ecore:EReference" name="Statements" upperBound="-1" eType="#//reflect/code/CtStatement"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CtCatch" eSuperTypes="#//reflect/code/CtCodeElement #//facade/CtCatch"> <eStructuralFeatures xsi:type="ecore:EReference" name="Body" eType="#//reflect/code/CtBlock"/> <eStructuralFeatures xsi:type="ecore:EReference" name="Parameter" eType="#//reflect/code/CtLocalVariable"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CtCodeElement" eSuperTypes="#//reflect/declaration/CtElement #//facade/CtCodeElement"/> <eClassifiers xsi:type="ecore:EClass" name="CtConditional" eSuperTypes="#//reflect/code/CtExpression #//facade/CtConditional"> <eStructuralFeatures xsi:type="ecore:EReference" name="ElseExpression" eType="#//reflect/code/CtExpression"/> <eStructuralFeatures xsi:type="ecore:EReference" name="Condition" eType="#//reflect/code/CtExpression"/> <eStructuralFeatures xsi:type="ecore:EReference" name="ThenExpression" eType="#//reflect/code/CtExpression"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CtContinue" eSuperTypes="#//reflect/code/CtCFlowBreak #//facade/CtContinue"> <eStructuralFeatures xsi:type="ecore:EReference" name="LabelledStatement" eType="#//reflect/code/CtStatement"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CtDo" eSuperTypes="#//reflect/code/CtLoop #//facade/CtDo"> <eStructuralFeatures xsi:type="ecore:EReference" name="LoopingExpression" eType="#//reflect/code/CtExpression"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CtFieldAccess" eSuperTypes="#//reflect/code/CtTargetedExpression #//reflect/code/CtVariableAccess #//facade/CtFieldAccess"/> <eClassifiers xsi:type="ecore:EClass" name="CtFor" eSuperTypes="#//reflect/code/CtLoop #//facade/CtFor"> <eStructuralFeatures xsi:type="ecore:EReference" name="ForInit" upperBound="-1" eType="#//reflect/code/CtStatement"/> <eStructuralFeatures xsi:type="ecore:EReference" name="ForUpdate" upperBound="-1" eType="#//reflect/code/CtStatement"/> <eStructuralFeatures xsi:type="ecore:EReference" name="Expression" eType="#//reflect/code/CtExpression"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CtExpression" eSuperTypes="#//reflect/code/CtCodeElement #//reflect/declaration/CtTypedElement #//facade/CtExpression"> <eStructuralFeatures xsi:type="ecore:EReference" name="TypeCasts" upperBound="-1" eType="#//reflect/reference/CtTypeReference"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CtForEach" eSuperTypes="#//reflect/code/CtLoop #//facade/CtForEach"> <eStructuralFeatures xsi:type="ecore:EReference" name="Expression" eType="#//reflect/code/CtExpression"/> <eStructuralFeatures xsi:type="ecore:EReference" name="Variable" eType="#//reflect/code/CtLocalVariable"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CtIf" eSuperTypes="#//reflect/code/CtStatement #//facade/CtIf"> <eStructuralFeatures xsi:type="ecore:EReference" name="ThenStatement" eType="#//reflect/code/CtStatement"/> <eStructuralFeatures xsi:type="ecore:EReference" name="Condition" eType="#//reflect/code/CtExpression"/> <eStructuralFeatures xsi:type="ecore:EReference" name="ElseStatement" eType="#//reflect/code/CtStatement"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CtInvocation" eSuperTypes="#//reflect/code/CtAbstractInvocation #//reflect/code/CtStatement #//reflect/code/CtTargetedExpression #//facade/CtInvocation"/> <eClassifiers xsi:type="ecore:EClass" name="CtLiteral" eSuperTypes="#//reflect/code/CtExpression #//facade/CtLiteral"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="Value" eType="#//Object"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CtLocalVariable" eSuperTypes="#//reflect/code/CtStatement #//reflect/declaration/CtVariable #//facade/CtLocalVariable"/> <eClassifiers xsi:type="ecore:EClass" name="CtLoop" eSuperTypes="#//reflect/code/CtStatement #//facade/CtLoop"> <eStructuralFeatures xsi:type="ecore:EReference" name="Body" eType="#//reflect/code/CtStatement"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CtNewArray" eSuperTypes="#//reflect/code/CtExpression #//facade/CtNewArray"> <eStructuralFeatures xsi:type="ecore:EReference" name="DimensionExpressions" upperBound="-1" eType="#//reflect/code/CtExpression"/> <eStructuralFeatures xsi:type="ecore:EReference" name="Elements" upperBound="-1" eType="#//reflect/code/CtExpression"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CtNewClass" eSuperTypes="#//reflect/code/CtAbstractInvocation #//reflect/code/CtExpression #//reflect/code/CtStatement #//facade/CtNewClass"> <eStructuralFeatures xsi:type="ecore:EReference" name="AnonymousClass" eType="#//reflect/declaration/CtClass"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CtOperatorAssignment" eSuperTypes="#//reflect/code/CtAssignment #//facade/CtOperatorAssignment"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="Kind" eType="#//BinaryOperatorKind"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CtReturn" eSuperTypes="#//reflect/code/CtCFlowBreak #//facade/CtReturn"> <eStructuralFeatures xsi:type="ecore:EReference" name="ReturnedExpression" eType="#//reflect/code/CtExpression"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CtStatement" eSuperTypes="#//reflect/code/CtCodeElement #//facade/CtStatement"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="Label" eType="#//String"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CtStatementList" eSuperTypes="#//reflect/code/CtCodeElement #//facade/CtStatementList"> <eStructuralFeatures xsi:type="ecore:EReference" name="Statements" upperBound="-1" eType="#//reflect/code/CtStatement"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CtSwitch" eSuperTypes="#//reflect/code/CtStatement #//facade/CtSwitch"> <eStructuralFeatures xsi:type="ecore:EReference" name="Selector" eType="#//reflect/code/CtExpression"/> <eStructuralFeatures xsi:type="ecore:EReference" name="Cases" upperBound="-1" eType="#//reflect/code/CtCase"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CtSynchronized" eSuperTypes="#//reflect/code/CtStatement #//facade/CtSynchronized"> <eStructuralFeatures xsi:type="ecore:EReference" name="Block" eType="#//reflect/code/CtBlock"/> <eStructuralFeatures xsi:type="ecore:EReference" name="Expression" eType="#//reflect/code/CtExpression"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CtTargetedExpression" eSuperTypes="#//reflect/code/CtExpression #//facade/CtTargetedExpression"> <eStructuralFeatures xsi:type="ecore:EReference" name="Target" eType="#//reflect/code/CtExpression"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CtThrow" eSuperTypes="#//reflect/code/CtCFlowBreak #//facade/CtThrow"> <eStructuralFeatures xsi:type="ecore:EReference" name="ThrownExpression" eType="#//reflect/code/CtExpression"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CtTry" eSuperTypes="#//reflect/code/CtStatement #//facade/CtTry"> <eStructuralFeatures xsi:type="ecore:EReference" name="Finalizer" eType="#//reflect/code/CtBlock"/> <eStructuralFeatures xsi:type="ecore:EReference" name="Body" eType="#//reflect/code/CtBlock"/> <eStructuralFeatures xsi:type="ecore:EReference" name="Catchers" upperBound="-1" eType="#//reflect/code/CtCatch"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CtUnaryOperator" eSuperTypes="#//reflect/code/CtExpression #//reflect/code/CtStatement #//facade/CtUnaryOperator"> <eStructuralFeatures xsi:type="ecore:EReference" name="Operand" eType="#//reflect/code/CtExpression"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="Kind" eType="#//UnaryOperatorKind"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CtVariableAccess" eSuperTypes="#//reflect/code/CtExpression #//facade/CtVariableAccess"> <eStructuralFeatures xsi:type="ecore:EReference" name="Variable" eType="#//reflect/reference/CtVariableReference"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CtWhile" eSuperTypes="#//reflect/code/CtLoop #//facade/CtWhile"> <eStructuralFeatures xsi:type="ecore:EReference" name="LoopingExpression" eType="#//reflect/code/CtExpression"/> </eClassifiers> </eSubpackages> <eSubpackages name="declaration" nsURI="http://spoon#reflect.declaration" nsPrefix="spoon.reflect.declaration"> <eClassifiers xsi:type="ecore:EClass" name="CtAnnotation" eSuperTypes="#//reflect/declaration/CtElement #//facade/CtAnnotation"> <eStructuralFeatures xsi:type="ecore:EReference" name="AnnotationType" eType="#//reflect/reference/CtTypeReference"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="ActualAnnotation" eType="#//Object" changeable="false"/> <eStructuralFeatures xsi:type="ecore:EReference" name="ElementsVal" upperBound="-1" eType="#//reflect/declaration/CtAnnotationElementValue" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CtAnnotationType" eSuperTypes="#//reflect/declaration/CtSimpleType #//facade/CtAnnotationType"/> <eClassifiers xsi:type="ecore:EClass" name="CtAnonymousExecutable" eSuperTypes="#//reflect/declaration/CtElement #//reflect/declaration/CtModifiable #//facade/CtAnonymousExecutable"> <eStructuralFeatures xsi:type="ecore:EReference" name="Body" eType="#//reflect/code/CtBlock"/> <eStructuralFeatures xsi:type="ecore:EReference" name="OwnerClass" eType="#//reflect/declaration/CtClass" changeable="false" eOpposite="#//reflect/declaration/CtClass/AnonymousExecutables"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CtClass" eSuperTypes="#//reflect/declaration/CtType #//facade/CtClass"> <eStructuralFeatures xsi:type="ecore:EReference" name="Superclass" eType="#//reflect/reference/CtTypeReference"/> <eStructuralFeatures xsi:type="ecore:EReference" name="AnonymousExecutables" upperBound="-1" eType="#//reflect/declaration/CtAnonymousExecutable" eOpposite="#//reflect/declaration/CtAnonymousExecutable/OwnerClass"/> <eStructuralFeatures xsi:type="ecore:EReference" name="Constructors" upperBound="-1" eType="#//reflect/declaration/CtConstructor"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CtConstructor" eSuperTypes="#//reflect/declaration/CtExecutable #//facade/CtConstructor"/> <eClassifiers xsi:type="ecore:EClass" name="CtElement" eSuperTypes="#//facade/CtElement"> <eStructuralFeatures xsi:type="ecore:EReference" name="Annotations" upperBound="-1" eType="#//reflect/declaration/CtAnnotation"/> <eStructuralFeatures xsi:type="ecore:EReference" name="Position" eType="#//reflect/declaration/SourcePosition"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="DocComment" eType="#//String"/> <eStructuralFeatures xsi:type="ecore:EReference" name="Parent" eType="#//reflect/declaration/CtElement"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CtEnum" eSuperTypes="#//reflect/declaration/CtType #//facade/CtEnum"/> <eClassifiers xsi:type="ecore:EClass" name="CtExecutable" eSuperTypes="#//reflect/declaration/CtGenericElement #//reflect/declaration/CtNamedElement #//facade/CtExecutable"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="EXECUTABLE_SEPARATOR" eType="#//String"> <eAnnotations source="SpoonGenerics"> <details key="type" value="java.lang.String"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="Parameters" upperBound="-1" eType="#//reflect/declaration/CtParameter"/> <eStructuralFeatures xsi:type="ecore:EReference" name="Body" eType="#//reflect/code/CtBlock"/> <eStructuralFeatures xsi:type="ecore:EReference" name="ThrownTypes" upperBound="-1" eType="#//reflect/reference/CtTypeReference"/> <eStructuralFeatures xsi:type="ecore:EReference" name="DeclaringType" eType="#//reflect/declaration/CtType" changeable="false" volatile="true" transient="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CtField" eSuperTypes="#//reflect/declaration/CtNamedElement #//reflect/declaration/CtVariable #//facade/CtField"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="FIELD_SEPARATOR" eType="#//String"> <eAnnotations source="SpoonGenerics"> <details key="type" value="java.lang.String"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="DeclaringType" eType="#//reflect/declaration/CtSimpleType" changeable="false" volatile="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CtGenericElement" eSuperTypes="#//reflect/declaration/CtElement #//facade/CtGenericElement"> <eStructuralFeatures xsi:type="ecore:EReference" name="FormalTypeParameters" upperBound="-1" eType="#//reflect/reference/CtTypeReference"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CtInterface" eSuperTypes="#//reflect/declaration/CtType #//facade/CtInterface"/> <eClassifiers xsi:type="ecore:EClass" name="CtMethod" eSuperTypes="#//reflect/declaration/CtExecutable #//reflect/declaration/CtTypedElement #//facade/CtMethod"/> <eClassifiers xsi:type="ecore:EClass" name="CtModifiable" eSuperTypes="#//facade/CtModifiable"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="Modifiers" upperBound="-1" eType="#//ModifierKind"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CtNamedElement" eSuperTypes="#//reflect/declaration/CtElement #//reflect/declaration/CtModifiable #//facade/CtNamedElement"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="SimpleName" eType="#//String"/> <eStructuralFeatures xsi:type="ecore:EReference" name="Reference" eType="#//reflect/reference/CtReference" changeable="false"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CtPackage" eSuperTypes="#//reflect/declaration/CtNamedElement #//facade/CtPackage"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="PACKAGE_SEPARATOR" eType="#//String"> <eAnnotations source="SpoonGenerics"> <details key="type" value="java.lang.String"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="TOP_LEVEL_PACKAGE_NAME" eType="#//String"> <eAnnotations source="SpoonGenerics"> <details key="type" value="java.lang.String"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="Packages" upperBound="-1" eType="#//reflect/declaration/CtPackage" eOpposite="#//reflect/declaration/CtPackage/DeclaringPackage"/> <eStructuralFeatures xsi:type="ecore:EReference" name="Types" upperBound="-1" eType="#//reflect/declaration/CtSimpleType" eOpposite="#//reflect/declaration/CtSimpleType/Package"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="QualifiedName" eType="#//String" changeable="false" volatile="true" transient="true" defaultValueLiteral=""/> <eStructuralFeatures xsi:type="ecore:EReference" name="DeclaringPackage" eType="#//reflect/declaration/CtPackage" changeable="false" eOpposite="#//reflect/declaration/CtPackage/Packages"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CtParameter" eSuperTypes="#//reflect/declaration/CtNamedElement #//reflect/declaration/CtVariable #//facade/CtParameter"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="VarArgs" eType="#//Boolean"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CtSimpleType" eSuperTypes="#//reflect/declaration/CtNamedElement #//facade/CtSimpleType"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="INNERTTYPE_SEPARATOR" eType="#//String"> <eAnnotations source="SpoonGenerics"> <details key="type" value="java.lang.String"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="Fields" upperBound="-1" eType="#//reflect/declaration/CtField"/> <eStructuralFeatures xsi:type="ecore:EReference" name="NestedTypes" upperBound="-1" eType="#//reflect/declaration/CtSimpleType" eOpposite="#//reflect/declaration/CtSimpleType/DeclaringType"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="ActualClass" eType="#//Class" changeable="false"/> <eStructuralFeatures xsi:type="ecore:EReference" name="DeclaringType" eType="#//reflect/declaration/CtSimpleType" changeable="false" volatile="true" resolveProxies="false" eOpposite="#//reflect/declaration/CtSimpleType/NestedTypes"/> <eStructuralFeatures xsi:type="ecore:EReference" name="AllFields" upperBound="-1" eType="#//reflect/declaration/CtField" changeable="false" volatile="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="TopLevel" eType="#//Boolean" changeable="false"/> <eStructuralFeatures xsi:type="ecore:EReference" name="Package" eType="#//reflect/declaration/CtPackage" changeable="false" volatile="true" eOpposite="#//reflect/declaration/CtPackage/Types"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="QualifiedName" eType="#//String" changeable="false" volatile="true" transient="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CtType" eSuperTypes="#//reflect/declaration/CtGenericElement #//reflect/declaration/CtSimpleType #//facade/CtType"> <eStructuralFeatures xsi:type="ecore:EReference" name="Methods" upperBound="-1" eType="#//reflect/declaration/CtMethod"/> <eStructuralFeatures xsi:type="ecore:EReference" name="Superinterfaces" upperBound="-1" eType="#//reflect/reference/CtTypeReference" changeable="false"/> <eStructuralFeatures xsi:type="ecore:EReference" name="AllMethods" upperBound="-1" eType="#//reflect/declaration/CtMethod" changeable="false" volatile="true" transient="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CtTypeParameter" eSuperTypes="#//reflect/declaration/CtElement #//facade/CtTypeParameter"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="Name" eType="#//String"/> <eStructuralFeatures xsi:type="ecore:EReference" name="Bounds" upperBound="-1" eType="#//reflect/reference/CtTypeReference"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CtTypedElement" eSuperTypes="#//facade/CtTypedElement"> <eStructuralFeatures xsi:type="ecore:EReference" name="Type" eType="#//reflect/reference/CtTypeReference"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CtVariable" eSuperTypes="#//reflect/declaration/CtNamedElement #//reflect/declaration/CtTypedElement #//facade/CtVariable"> <eStructuralFeatures xsi:type="ecore:EReference" name="DefaultExpression" eType="#//reflect/code/CtExpression"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="SourcePosition" eSuperTypes="#//facade/SourcePosition"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="Line" eType="#//Integer" changeable="false" volatile="true" transient="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="Column" eType="#//Integer" changeable="false" volatile="true" transient="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="File" eType="#//File" changeable="false" volatile="true" transient="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CtAnnotationElementValue"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="key" eType="#//String"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="valueString" upperBound="-1" eType="#//String"/> <eStructuralFeatures xsi:type="ecore:EReference" name="valueRef" upperBound="-1" eType="#//reflect/reference/CtReference"/> <eStructuralFeatures xsi:type="ecore:EReference" name="valueElement" upperBound="-1" eType="#//reflect/declaration/CtElement"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="Many" eType="#//Boolean"/> </eClassifiers> </eSubpackages> </eSubpackages> <eSubpackages name="facade" nsURI="http://spoon#facade" nsPrefix="spoon.facade"> <eClassifiers xsi:type="ecore:EClass" name="CtArrayTypeReference" instanceClassName="spoon.reflect.reference.CtArrayTypeReference" interface="true" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="CtExecutableReference" instanceClassName="spoon.reflect.reference.CtExecutableReference" interface="true" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="CtFieldReference" instanceClassName="spoon.reflect.reference.CtFieldReference" interface="true" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="CtGenericElementReference" instanceClassName="spoon.reflect.reference.CtGenericElementReference" interface="true" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="CtLocalVariableReference" instanceClassName="spoon.reflect.reference.CtLocalVariableReference" interface="true" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="CtPackageReference" instanceClassName="spoon.reflect.reference.CtPackageReference" interface="true" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="CtParameterReference" instanceClassName="spoon.reflect.reference.CtParameterReference" interface="true" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="CtReference" instanceClassName="spoon.reflect.reference.CtReference" interface="true" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="CtTypeParameterReference" instanceClassName="spoon.reflect.reference.CtTypeParameterReference" interface="true" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="CtTypeReference" instanceClassName="spoon.reflect.reference.CtTypeReference" interface="true" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="CtVariableReference" instanceClassName="spoon.reflect.reference.CtVariableReference" interface="true" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="CtAbstractInvocation" instanceClassName="spoon.reflect.code.CtAbstractInvocation" interface="true" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="CtArrayAccess" instanceClassName="spoon.reflect.code.CtArrayAccess" interface="true" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="CtAssert" instanceClassName="spoon.reflect.code.CtAssert" interface="true" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="CtAssignment" instanceClassName="spoon.reflect.code.CtAssignment" interface="true" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="CtBinaryOperator" instanceClassName="spoon.reflect.code.CtBinaryOperator" interface="true" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="CtBlock" instanceClassName="spoon.reflect.code.CtBlock" interface="true" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="CtBreak" instanceClassName="spoon.reflect.code.CtBreak" interface="true" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="CtCFlowBreak" instanceClassName="spoon.reflect.code.CtCFlowBreak" interface="true" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="CtCase" instanceClassName="spoon.reflect.code.CtCase" interface="true" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="CtCatch" instanceClassName="spoon.reflect.code.CtCatch" interface="true" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="CtCodeElement" instanceClassName="spoon.reflect.code.CtCodeElement" interface="true" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="CtConditional" instanceClassName="spoon.reflect.code.CtConditional" interface="true" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="CtContinue" instanceClassName="spoon.reflect.code.CtContinue" interface="true" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="CtDo" instanceClassName="spoon.reflect.code.CtDo" interface="true" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="CtExpression" instanceClassName="spoon.reflect.code.CtExpression" interface="true" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="CtFieldAccess" instanceClassName="spoon.reflect.code.CtFieldAccess" interface="true" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="CtFor" instanceClassName="spoon.reflect.code.CtFor" interface="true" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="CtForEach" instanceClassName="spoon.reflect.code.CtForEach" interface="true" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="CtIf" instanceClassName="spoon.reflect.code.CtIf" interface="true" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="CtInvocation" instanceClassName="spoon.reflect.code.CtInvocation" interface="true" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="CtLiteral" instanceClassName="spoon.reflect.code.CtLiteral" interface="true" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="CtLocalVariable" instanceClassName="spoon.reflect.code.CtLocalVariable" interface="true" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="CtLoop" instanceClassName="spoon.reflect.code.CtLoop" interface="true" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="CtNewArray" instanceClassName="spoon.reflect.code.CtNewArray" interface="true" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="CtNewClass" instanceClassName="spoon.reflect.code.CtNewClass" interface="true" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="CtOperatorAssignment" instanceClassName="spoon.reflect.code.CtOperatorAssignment" interface="true" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="CtReturn" instanceClassName="spoon.reflect.code.CtReturn" interface="true" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="CtStatement" instanceClassName="spoon.reflect.code.CtStatement" interface="true" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="CtStatementList" instanceClassName="spoon.reflect.code.CtStatementList" interface="true" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="CtSwitch" instanceClassName="spoon.reflect.code.CtSwitch" interface="true" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="CtSynchronized" instanceClassName="spoon.reflect.code.CtSynchronized" interface="true" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="CtTargetedExpression" instanceClassName="spoon.reflect.code.CtTargetedExpression" interface="true" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="CtThrow" instanceClassName="spoon.reflect.code.CtThrow" interface="true" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="CtTry" instanceClassName="spoon.reflect.code.CtTry" interface="true" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="CtUnaryOperator" instanceClassName="spoon.reflect.code.CtUnaryOperator" interface="true" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="CtVariableAccess" instanceClassName="spoon.reflect.code.CtVariableAccess" interface="true" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="CtWhile" instanceClassName="spoon.reflect.code.CtWhile" interface="true" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="CtAnnotation" instanceClassName="spoon.reflect.declaration.CtAnnotation" interface="true" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="CtAnnotationType" instanceClassName="spoon.reflect.declaration.CtAnnotationType" interface="true" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="CtAnonymousExecutable" instanceClassName="spoon.reflect.declaration.CtAnonymousExecutable" interface="true" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="CtClass" instanceClassName="spoon.reflect.declaration.CtClass" interface="true" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="CtConstructor" instanceClassName="spoon.reflect.declaration.CtConstructor" interface="true" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="CtElement" instanceClassName="spoon.reflect.declaration.CtElement" interface="true" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="CtEnum" instanceClassName="spoon.reflect.declaration.CtEnum" interface="true" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="CtExecutable" instanceClassName="spoon.reflect.declaration.CtExecutable" interface="true" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="CtField" instanceClassName="spoon.reflect.declaration.CtField" interface="true" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="CtGenericElement" instanceClassName="spoon.reflect.declaration.CtGenericElement" interface="true" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="CtInterface" instanceClassName="spoon.reflect.declaration.CtInterface" interface="true" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="CtMethod" instanceClassName="spoon.reflect.declaration.CtMethod" interface="true" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="CtModifiable" instanceClassName="spoon.reflect.declaration.CtModifiable" interface="true" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="CtNamedElement" instanceClassName="spoon.reflect.declaration.CtNamedElement" interface="true" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="CtPackage" instanceClassName="spoon.reflect.declaration.CtPackage" interface="true" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="CtParameter" instanceClassName="spoon.reflect.declaration.CtParameter" interface="true" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="CtSimpleType" instanceClassName="spoon.reflect.declaration.CtSimpleType" interface="true" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="CtType" instanceClassName="spoon.reflect.declaration.CtType" interface="true" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="CtTypeParameter" instanceClassName="spoon.reflect.declaration.CtTypeParameter" interface="true" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="CtTypedElement" instanceClassName="spoon.reflect.declaration.CtTypedElement" interface="true" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="CtVariable" instanceClassName="spoon.reflect.declaration.CtVariable" interface="true" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="SourcePosition" instanceClassName="spoon.reflect.declaration.SourcePosition" interface="true" abstract="true"/> </eSubpackages> </ecore:EPackage>
github:ecore:/data/diverse-project/kermeta/java_projects/fr.irisa.triskell.SpoonEMF/model/java5.ecore
ecore
spoon Object java.lang.Object java.lang.Object Constructor java.lang.reflect.Constructor java.lang.reflect.Constructor Method java.lang.reflect.Method java.lang.reflect.Method Boolean java.lang.Boolean java.lang.Boolean Field java.lang.reflect.Field java.lang.reflect.Field String java.lang.String java.lang.String Class java.lang.Class java.lang.Class Annotation java.lang.annotation.Annotation java.lang.annotation.Annotation Integer java.lang.Integer java.lang.Integer BinaryOperatorKind spoon.reflect.code.BinaryOperatorKind spoon.reflect.code.BinaryOperatorKind UnaryOperatorKind spoon.reflect.code.UnaryOperatorKind spoon.reflect.code.UnaryOperatorKind ModifierKind spoon.reflect.declaration.ModifierKind spoon.reflect.declaration.ModifierKind File java.io.File java.io.File Dummy reflect Dummy reference CtArrayTypeReference ComponentType CtExecutableReference Type DeclaringType ParameterTypes Static ActualConstructor ActualMethod CtFieldReference DeclaringType Final Static ActualField QualifiedName CtGenericElementReference ActualTypeArguments CtLocalVariableReference CtPackageReference CtParameterReference DeclaringExecutable CtReference SimpleName Annotations Declaration CtTypeParameterReference Upper Bounds CtTypeReference DeclaringType Package ActualClass Primitif QualifiedName CtVariableReference Type code CtAbstractInvocation Executable Arguments CtArrayAccess IndexExpression CtAssert Expression AssertExpression CtAssignment Assignment Assigned CtBinaryOperator Kind RightHandOperand LeftHandOperand CtBlock Statements CtBreak LabelledStatement CtCFlowBreak CtCase CaseExpression Statements CtCatch Body Parameter CtCodeElement CtConditional ElseExpression Condition ThenExpression CtContinue LabelledStatement CtDo LoopingExpression CtFieldAccess CtFor ForInit ForUpdate Expression CtExpression TypeCasts CtForEach Expression Variable CtIf ThenStatement Condition ElseStatement CtInvocation CtLiteral Value CtLocalVariable CtLoop Body CtNewArray DimensionExpressions Elements CtNewClass AnonymousClass CtOperatorAssignment Kind CtReturn ReturnedExpression CtStatement Label CtStatementList Statements CtSwitch Selector Cases CtSynchronized Block Expression CtTargetedExpression Target CtThrow ThrownExpression CtTry Finalizer Body Catchers CtUnaryOperator Operand Kind CtVariableAccess Variable CtWhile LoopingExpression declaration CtAnnotation AnnotationType ActualAnnotation ElementsVal CtAnnotationType CtAnonymousExecutable Body OwnerClass CtClass Superclass AnonymousExecutables Constructors CtConstructor CtElement Annotations Position DocComment Parent CtEnum CtExecutable EXECUTABLE_SEPARATOR Parameters Body ThrownTypes DeclaringType CtField FIELD_SEPARATOR DeclaringType CtGenericElement FormalTypeParameters CtInterface CtMethod CtModifiable Modifiers CtNamedElement SimpleName Reference CtPackage PACKAGE_SEPARATOR TOP_LEVEL_PACKAGE_NAME Packages Types QualifiedName DeclaringPackage CtParameter VarArgs CtSimpleType INNERTTYPE_SEPARATOR Fields NestedTypes ActualClass DeclaringType AllFields TopLevel Package QualifiedName CtType Methods Superinterfaces AllMethods CtTypeParameter Name Bounds CtTypedElement Type CtVariable DefaultExpression SourcePosition Line Column File CtAnnotationElementValue key valueString valueRef valueElement Many facade CtArrayTypeReference spoon.reflect.reference.CtArrayTypeReference spoon.reflect.reference.CtArrayTypeReference CtExecutableReference spoon.reflect.reference.CtExecutableReference spoon.reflect.reference.CtExecutableReference CtFieldReference spoon.reflect.reference.CtFieldReference spoon.reflect.reference.CtFieldReference CtGenericElementReference spoon.reflect.reference.CtGenericElementReference spoon.reflect.reference.CtGenericElementReference CtLocalVariableReference spoon.reflect.reference.CtLocalVariableReference spoon.reflect.reference.CtLocalVariableReference CtPackageReference spoon.reflect.reference.CtPackageReference spoon.reflect.reference.CtPackageReference CtParameterReference spoon.reflect.reference.CtParameterReference spoon.reflect.reference.CtParameterReference CtReference spoon.reflect.reference.CtReference spoon.reflect.reference.CtReference CtTypeParameterReference spoon.reflect.reference.CtTypeParameterReference spoon.reflect.reference.CtTypeParameterReference CtTypeReference spoon.reflect.reference.CtTypeReference spoon.reflect.reference.CtTypeReference CtVariableReference spoon.reflect.reference.CtVariableReference spoon.reflect.reference.CtVariableReference CtAbstractInvocation spoon.reflect.code.CtAbstractInvocation spoon.reflect.code.CtAbstractInvocation CtArrayAccess spoon.reflect.code.CtArrayAccess spoon.reflect.code.CtArrayAccess CtAssert spoon.reflect.code.CtAssert spoon.reflect.code.CtAssert CtAssignment spoon.reflect.code.CtAssignment spoon.reflect.code.CtAssignment CtBinaryOperator spoon.reflect.code.CtBinaryOperator spoon.reflect.code.CtBinaryOperator CtBlock spoon.reflect.code.CtBlock spoon.reflect.code.CtBlock CtBreak spoon.reflect.code.CtBreak spoon.reflect.code.CtBreak CtCFlowBreak spoon.reflect.code.CtCFlowBreak spoon.reflect.code.CtCFlowBreak CtCase spoon.reflect.code.CtCase spoon.reflect.code.CtCase CtCatch spoon.reflect.code.CtCatch spoon.reflect.code.CtCatch CtCodeElement spoon.reflect.code.CtCodeElement spoon.reflect.code.CtCodeElement CtConditional spoon.reflect.code.CtConditional spoon.reflect.code.CtConditional CtContinue spoon.reflect.code.CtContinue spoon.reflect.code.CtContinue CtDo spoon.reflect.code.CtDo spoon.reflect.code.CtDo CtExpression spoon.reflect.code.CtExpression spoon.reflect.code.CtExpression CtFieldAccess spoon.reflect.code.CtFieldAccess spoon.reflect.code.CtFieldAccess CtFor spoon.reflect.code.CtFor spoon.reflect.code.CtFor CtForEach spoon.reflect.code.CtForEach spoon.reflect.code.CtForEach CtIf spoon.reflect.code.CtIf spoon.reflect.code.CtIf CtInvocation spoon.reflect.code.CtInvocation spoon.reflect.code.CtInvocation CtLiteral spoon.reflect.code.CtLiteral spoon.reflect.code.CtLiteral CtLocalVariable spoon.reflect.code.CtLocalVariable spoon.reflect.code.CtLocalVariable CtLoop spoon.reflect.code.CtLoop spoon.reflect.code.CtLoop CtNewArray spoon.reflect.code.CtNewArray spoon.reflect.code.CtNewArray CtNewClass spoon.reflect.code.CtNewClass spoon.reflect.code.CtNewClass CtOperatorAssignment spoon.reflect.code.CtOperatorAssignment spoon.reflect.code.CtOperatorAssignment CtReturn spoon.reflect.code.CtReturn spoon.reflect.code.CtReturn CtStatement spoon.reflect.code.CtStatement spoon.reflect.code.CtStatement CtStatementList spoon.reflect.code.CtStatementList spoon.reflect.code.CtStatementList CtSwitch spoon.reflect.code.CtSwitch spoon.reflect.code.CtSwitch CtSynchronized spoon.reflect.code.CtSynchronized spoon.reflect.code.CtSynchronized CtTargetedExpression spoon.reflect.code.CtTargetedExpression spoon.reflect.code.CtTargetedExpression CtThrow spoon.reflect.code.CtThrow spoon.reflect.code.CtThrow CtTry spoon.reflect.code.CtTry spoon.reflect.code.CtTry CtUnaryOperator spoon.reflect.code.CtUnaryOperator spoon.reflect.code.CtUnaryOperator CtVariableAccess spoon.reflect.code.CtVariableAccess spoon.reflect.code.CtVariableAccess CtWhile spoon.reflect.code.CtWhile spoon.reflect.code.CtWhile CtAnnotation spoon.reflect.declaration.CtAnnotation spoon.reflect.declaration.CtAnnotation CtAnnotationType spoon.reflect.declaration.CtAnnotationType spoon.reflect.declaration.CtAnnotationType CtAnonymousExecutable spoon.reflect.declaration.CtAnonymousExecutable spoon.reflect.declaration.CtAnonymousExecutable CtClass spoon.reflect.declaration.CtClass spoon.reflect.declaration.CtClass CtConstructor spoon.reflect.declaration.CtConstructor spoon.reflect.declaration.CtConstructor CtElement spoon.reflect.declaration.CtElement spoon.reflect.declaration.CtElement CtEnum spoon.reflect.declaration.CtEnum spoon.reflect.declaration.CtEnum CtExecutable spoon.reflect.declaration.CtExecutable spoon.reflect.declaration.CtExecutable CtField spoon.reflect.declaration.CtField spoon.reflect.declaration.CtField CtGenericElement spoon.reflect.declaration.CtGenericElement spoon.reflect.declaration.CtGenericElement CtInterface spoon.reflect.declaration.CtInterface spoon.reflect.declaration.CtInterface CtMethod spoon.reflect.declaration.CtMethod spoon.reflect.declaration.CtMethod CtModifiable spoon.reflect.declaration.CtModifiable spoon.reflect.declaration.CtModifiable CtNamedElement spoon.reflect.declaration.CtNamedElement spoon.reflect.declaration.CtNamedElement CtPackage spoon.reflect.declaration.CtPackage spoon.reflect.declaration.CtPackage CtParameter spoon.reflect.declaration.CtParameter spoon.reflect.declaration.CtParameter CtSimpleType spoon.reflect.declaration.CtSimpleType spoon.reflect.declaration.CtSimpleType CtType spoon.reflect.declaration.CtType spoon.reflect.declaration.CtType CtTypeParameter spoon.reflect.declaration.CtTypeParameter spoon.reflect.declaration.CtTypeParameter CtTypedElement spoon.reflect.declaration.CtTypedElement spoon.reflect.declaration.CtTypedElement CtVariable spoon.reflect.declaration.CtVariable spoon.reflect.declaration.CtVariable SourcePosition spoon.reflect.declaration.SourcePosition spoon.reflect.declaration.SourcePosition
null
{"directed":true,"nodes":[{"nsPrefix":"spoon","nsURI":"http://spoon","name":"spoon","id":0,"eClass":"EPackage"},{"instanceTypeName":"java.lang.Object","defaultValue":null,"instanceClassName":"java.lang.Object","name":"Object","instanceClass":"java.lang.Object","id":1,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.lang.reflect.Constructor","defaultValue":null,"instanceClassName":"java.lang.reflect.Constructor","name":"Constructor","instanceClass":"java.lang.reflect.Constructor","id":2,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.lang.reflect.Method","defaultValue":null,"instanceClassName":"java.lang.reflect.Method","name":"Method","instanceClass":"java.lang.reflect.Method","id":3,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.lang.Boolean","defaultValue":null,"instanceClassName":"java.lang.Boolean","name":"Boolean","instanceClass":"java.lang.Boolean","id":4,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.lang.reflect.Field","defaultValue":null,"instanceClassName":"java.lang.reflect.Field","name":"Field","instanceClass":"java.lang.reflect.Field","id":5,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.lang.String","defaultValue":null,"instanceClassName":"java.lang.String","name":"String","instanceClass":"java.lang.String","id":6,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.lang.Class","defaultValue":null,"instanceClassName":"java.lang.Class","name":"Class","instanceClass":"java.lang.Class","id":7,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.lang.annotation.Annotation","defaultValue":null,"instanceClassName":"java.lang.annotation.Annotation","name":"Annotation","instanceClass":"java.lang.annotation.Annotation","id":8,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.lang.Integer","defaultValue":null,"instanceClassName":"java.lang.Integer","name":"Integer","instanceClass":"java.lang.Integer","id":9,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"spoon.reflect.code.BinaryOperatorKind","defaultValue":null,"instanceClassName":"spoon.reflect.code.BinaryOperatorKind","name":"BinaryOperatorKind","instanceClass":null,"id":10,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"spoon.reflect.code.UnaryOperatorKind","defaultValue":null,"instanceClassName":"spoon.reflect.code.UnaryOperatorKind","name":"UnaryOperatorKind","instanceClass":null,"id":11,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"spoon.reflect.declaration.ModifierKind","defaultValue":null,"instanceClassName":"spoon.reflect.declaration.ModifierKind","name":"ModifierKind","instanceClass":null,"id":12,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.io.File","defaultValue":null,"instanceClassName":"java.io.File","name":"File","instanceClass":"java.io.File","id":13,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Dummy","instanceClass":null,"abstract":true,"id":14,"interface":false,"eClass":"EClass"},{"nsPrefix":"spoon.reflect","nsURI":"http://spoon#reflect","name":"reflect","id":15,"eClass":"EPackage"},{"nsPrefix":"spoon.facade","nsURI":"http://spoon#facade","name":"facade","id":16,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Dummy","instanceClass":null,"abstract":false,"id":17,"interface":false,"eClass":"EClass"},{"nsPrefix":"spoon.reflect.reference","nsURI":"http://spoon#reflect.reference","name":"reference","id":18,"eClass":"EPackage"},{"nsPrefix":"spoon.reflect.code","nsURI":"http://spoon#reflect.code","name":"code","id":19,"eClass":"EPackage"},{"nsPrefix":"spoon.reflect.declaration","nsURI":"http://spoon#reflect.declaration","name":"declaration","id":20,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CtArrayTypeReference","instanceClass":null,"abstract":false,"id":21,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CtExecutableReference","instanceClass":null,"abstract":false,"id":22,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CtFieldReference","instanceClass":null,"abstract":false,"id":23,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CtGenericElementReference","instanceClass":null,"abstract":false,"id":24,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CtLocalVariableReference","instanceClass":null,"abstract":false,"id":25,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CtPackageReference","instanceClass":null,"abstract":false,"id":26,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CtParameterReference","instanceClass":null,"abstract":false,"id":27,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CtReference","instanceClass":null,"abstract":false,"id":28,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CtTypeParameterReference","instanceClass":null,"abstract":false,"id":29,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CtTypeReference","instanceClass":null,"abstract":false,"id":30,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CtVariableReference","instanceClass":null,"abstract":false,"id":31,"interface":false,"eClass":"EClass"},{"instanceTypeName":"spoon.reflect.reference.CtArrayTypeReference","defaultValue":null,"instanceClassName":"spoon.reflect.reference.CtArrayTypeReference","name":"CtArrayTypeReference","instanceClass":null,"abstract":true,"id":32,"interface":true,"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":"ComponentType","changeable":true,"resolveProxies":true,"lowerBound":0,"id":33,"derived":false},{"id":34,"eClass":"EGenericType"},{"id":35,"eClass":"EGenericType"},{"id":36,"eClass":"EGenericType"},{"instanceTypeName":"spoon.reflect.reference.CtExecutableReference","defaultValue":null,"instanceClassName":"spoon.reflect.reference.CtExecutableReference","name":"CtExecutableReference","instanceClass":null,"abstract":true,"id":37,"interface":true,"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":"Type","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":"DeclaringType","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":false,"unsettable":false,"transient":false,"unique":true,"name":"ParameterTypes","changeable":true,"resolveProxies":true,"lowerBound":0,"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":"Static","changeable":true,"lowerBound":0,"iD":false,"id":41,"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":"ActualConstructor","changeable":false,"lowerBound":0,"iD":false,"id":42,"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":"ActualMethod","changeable":false,"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"},{"instanceTypeName":"spoon.reflect.reference.CtFieldReference","defaultValue":null,"instanceClassName":"spoon.reflect.reference.CtFieldReference","name":"CtFieldReference","instanceClass":null,"abstract":true,"id":53,"interface":true,"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":"DeclaringType","changeable":true,"resolveProxies":true,"lowerBound":0,"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":"Final","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":"Static","changeable":true,"lowerBound":0,"iD":false,"id":56,"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":"ActualField","changeable":false,"lowerBound":0,"iD":false,"id":57,"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":"QualifiedName","changeable":false,"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"},{"instanceTypeName":"spoon.reflect.reference.CtGenericElementReference","defaultValue":null,"instanceClassName":"spoon.reflect.reference.CtGenericElementReference","name":"CtGenericElementReference","instanceClass":null,"abstract":true,"id":66,"interface":true,"eClass":"EClass"},{"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":"ActualTypeArguments","changeable":true,"resolveProxies":true,"lowerBound":0,"id":67,"derived":false},{"id":68,"eClass":"EGenericType"},{"id":69,"eClass":"EGenericType"},{"instanceTypeName":"spoon.reflect.reference.CtLocalVariableReference","defaultValue":null,"instanceClassName":"spoon.reflect.reference.CtLocalVariableReference","name":"CtLocalVariableReference","instanceClass":null,"abstract":true,"id":70,"interface":true,"eClass":"EClass"},{"id":71,"eClass":"EGenericType"},{"id":72,"eClass":"EGenericType"},{"instanceTypeName":"spoon.reflect.reference.CtPackageReference","defaultValue":null,"instanceClassName":"spoon.reflect.reference.CtPackageReference","name":"CtPackageReference","instanceClass":null,"abstract":true,"id":73,"interface":true,"eClass":"EClass"},{"id":74,"eClass":"EGenericType"},{"id":75,"eClass":"EGenericType"},{"instanceTypeName":"spoon.reflect.reference.CtParameterReference","defaultValue":null,"instanceClassName":"spoon.reflect.reference.CtParameterReference","name":"CtParameterReference","instanceClass":null,"abstract":true,"id":76,"interface":true,"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":"DeclaringExecutable","changeable":true,"resolveProxies":true,"lowerBound":0,"id":77,"derived":false},{"id":78,"eClass":"EGenericType"},{"id":79,"eClass":"EGenericType"},{"id":80,"eClass":"EGenericType"},{"instanceTypeName":"spoon.reflect.reference.CtReference","defaultValue":null,"instanceClassName":"spoon.reflect.reference.CtReference","name":"CtReference","instanceClass":null,"abstract":true,"id":81,"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":"SimpleName","changeable":true,"lowerBound":0,"iD":false,"id":82,"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":"Annotations","changeable":false,"lowerBound":0,"iD":false,"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":"Declaration","changeable":false,"resolveProxies":true,"lowerBound":0,"id":84,"derived":false},{"id":85,"eClass":"EGenericType"},{"id":86,"eClass":"EGenericType"},{"id":87,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CtElement","instanceClass":null,"abstract":false,"id":88,"interface":false,"eClass":"EClass"},{"id":89,"eClass":"EGenericType"},{"instanceTypeName":"spoon.reflect.reference.CtTypeParameterReference","defaultValue":null,"instanceClassName":"spoon.reflect.reference.CtTypeParameterReference","name":"CtTypeParameterReference","instanceClass":null,"abstract":true,"id":90,"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":"Upper","changeable":true,"lowerBound":0,"iD":false,"id":91,"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":"Bounds","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"},{"instanceTypeName":"spoon.reflect.reference.CtTypeReference","defaultValue":null,"instanceClassName":"spoon.reflect.reference.CtTypeReference","name":"CtTypeReference","instanceClass":null,"abstract":true,"id":97,"interface":true,"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":"DeclaringType","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":"Package","changeable":true,"resolveProxies":true,"lowerBound":0,"id":99,"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":"ActualClass","changeable":false,"lowerBound":0,"iD":false,"id":100,"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":"Primitif","changeable":false,"lowerBound":0,"iD":false,"id":101,"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":"QualifiedName","changeable":false,"lowerBound":0,"iD":false,"id":102,"derived":false},{"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"},{"instanceTypeName":"spoon.reflect.reference.CtVariableReference","defaultValue":null,"instanceClassName":"spoon.reflect.reference.CtVariableReference","name":"CtVariableReference","instanceClass":null,"abstract":true,"id":111,"interface":true,"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":"Type","changeable":true,"resolveProxies":true,"lowerBound":0,"id":112,"derived":false},{"id":113,"eClass":"EGenericType"},{"id":114,"eClass":"EGenericType"},{"id":115,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CtAbstractInvocation","instanceClass":null,"abstract":false,"id":116,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CtArrayAccess","instanceClass":null,"abstract":false,"id":117,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CtAssert","instanceClass":null,"abstract":false,"id":118,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CtAssignment","instanceClass":null,"abstract":false,"id":119,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CtBinaryOperator","instanceClass":null,"abstract":false,"id":120,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CtBlock","instanceClass":null,"abstract":false,"id":121,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CtBreak","instanceClass":null,"abstract":false,"id":122,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CtCFlowBreak","instanceClass":null,"abstract":false,"id":123,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CtCase","instanceClass":null,"abstract":false,"id":124,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CtCatch","instanceClass":null,"abstract":false,"id":125,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CtCodeElement","instanceClass":null,"abstract":false,"id":126,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CtConditional","instanceClass":null,"abstract":false,"id":127,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CtContinue","instanceClass":null,"abstract":false,"id":128,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CtDo","instanceClass":null,"abstract":false,"id":129,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CtFieldAccess","instanceClass":null,"abstract":false,"id":130,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CtFor","instanceClass":null,"abstract":false,"id":131,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CtExpression","instanceClass":null,"abstract":false,"id":132,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CtForEach","instanceClass":null,"abstract":false,"id":133,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CtIf","instanceClass":null,"abstract":false,"id":134,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CtInvocation","instanceClass":null,"abstract":false,"id":135,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CtLiteral","instanceClass":null,"abstract":false,"id":136,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CtLocalVariable","instanceClass":null,"abstract":false,"id":137,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CtLoop","instanceClass":null,"abstract":false,"id":138,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CtNewArray","instanceClass":null,"abstract":false,"id":139,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CtNewClass","instanceClass":null,"abstract":false,"id":140,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CtOperatorAssignment","instanceClass":null,"abstract":false,"id":141,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CtReturn","instanceClass":null,"abstract":false,"id":142,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CtStatement","instanceClass":null,"abstract":false,"id":143,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CtStatementList","instanceClass":null,"abstract":false,"id":144,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CtSwitch","instanceClass":null,"abstract":false,"id":145,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CtSynchronized","instanceClass":null,"abstract":false,"id":146,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CtTargetedExpression","instanceClass":null,"abstract":false,"id":147,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CtThrow","instanceClass":null,"abstract":false,"id":148,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CtTry","instanceClass":null,"abstract":false,"id":149,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CtUnaryOperator","instanceClass":null,"abstract":false,"id":150,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CtVariableAccess","instanceClass":null,"abstract":false,"id":151,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CtWhile","instanceClass":null,"abstract":false,"id":152,"interface":false,"eClass":"EClass"},{"instanceTypeName":"spoon.reflect.code.CtAbstractInvocation","defaultValue":null,"instanceClassName":"spoon.reflect.code.CtAbstractInvocation","name":"CtAbstractInvocation","instanceClass":null,"abstract":true,"id":153,"interface":true,"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":"Executable","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":false,"unsettable":false,"transient":false,"unique":true,"name":"Arguments","changeable":true,"resolveProxies":true,"lowerBound":0,"id":155,"derived":false},{"id":156,"eClass":"EGenericType"},{"id":157,"eClass":"EGenericType"},{"id":158,"eClass":"EGenericType"},{"id":159,"eClass":"EGenericType"},{"instanceTypeName":"spoon.reflect.code.CtArrayAccess","defaultValue":null,"instanceClassName":"spoon.reflect.code.CtArrayAccess","name":"CtArrayAccess","instanceClass":null,"abstract":true,"id":160,"interface":true,"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":"IndexExpression","changeable":true,"resolveProxies":true,"lowerBound":0,"id":161,"derived":false},{"id":162,"eClass":"EGenericType"},{"id":163,"eClass":"EGenericType"},{"id":164,"eClass":"EGenericType"},{"instanceTypeName":"spoon.reflect.code.CtAssert","defaultValue":null,"instanceClassName":"spoon.reflect.code.CtAssert","name":"CtAssert","instanceClass":null,"abstract":true,"id":165,"interface":true,"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":"Expression","changeable":true,"resolveProxies":true,"lowerBound":0,"id":166,"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":"AssertExpression","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"},{"instanceTypeName":"spoon.reflect.code.CtAssignment","defaultValue":null,"instanceClassName":"spoon.reflect.code.CtAssignment","name":"CtAssignment","instanceClass":null,"abstract":true,"id":172,"interface":true,"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":"Assignment","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":false,"unsettable":false,"transient":false,"unique":true,"name":"Assigned","changeable":true,"resolveProxies":true,"lowerBound":0,"id":174,"derived":false},{"id":175,"eClass":"EGenericType"},{"id":176,"eClass":"EGenericType"},{"id":177,"eClass":"EGenericType"},{"id":178,"eClass":"EGenericType"},{"id":179,"eClass":"EGenericType"},{"instanceTypeName":"spoon.reflect.code.CtBinaryOperator","defaultValue":null,"instanceClassName":"spoon.reflect.code.CtBinaryOperator","name":"CtBinaryOperator","instanceClass":null,"abstract":true,"id":180,"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":"Kind","changeable":true,"lowerBound":0,"iD":false,"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":"RightHandOperand","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":false,"unsettable":false,"transient":false,"unique":true,"name":"LeftHandOperand","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"},{"instanceTypeName":"spoon.reflect.code.CtBlock","defaultValue":null,"instanceClassName":"spoon.reflect.code.CtBlock","name":"CtBlock","instanceClass":null,"abstract":true,"id":189,"interface":true,"eClass":"EClass"},{"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":"Statements","changeable":true,"resolveProxies":true,"lowerBound":0,"id":190,"derived":false},{"id":191,"eClass":"EGenericType"},{"id":192,"eClass":"EGenericType"},{"id":193,"eClass":"EGenericType"},{"instanceTypeName":"spoon.reflect.code.CtBreak","defaultValue":null,"instanceClassName":"spoon.reflect.code.CtBreak","name":"CtBreak","instanceClass":null,"abstract":true,"id":194,"interface":true,"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":"LabelledStatement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":195,"derived":false},{"id":196,"eClass":"EGenericType"},{"id":197,"eClass":"EGenericType"},{"id":198,"eClass":"EGenericType"},{"instanceTypeName":"spoon.reflect.code.CtCFlowBreak","defaultValue":null,"instanceClassName":"spoon.reflect.code.CtCFlowBreak","name":"CtCFlowBreak","instanceClass":null,"abstract":true,"id":199,"interface":true,"eClass":"EClass"},{"id":200,"eClass":"EGenericType"},{"id":201,"eClass":"EGenericType"},{"instanceTypeName":"spoon.reflect.code.CtCase","defaultValue":null,"instanceClassName":"spoon.reflect.code.CtCase","name":"CtCase","instanceClass":null,"abstract":true,"id":202,"interface":true,"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":"CaseExpression","changeable":true,"resolveProxies":true,"lowerBound":0,"id":203,"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":"Statements","changeable":true,"resolveProxies":true,"lowerBound":0,"id":204,"derived":false},{"id":205,"eClass":"EGenericType"},{"id":206,"eClass":"EGenericType"},{"id":207,"eClass":"EGenericType"},{"id":208,"eClass":"EGenericType"},{"instanceTypeName":"spoon.reflect.code.CtCatch","defaultValue":null,"instanceClassName":"spoon.reflect.code.CtCatch","name":"CtCatch","instanceClass":null,"abstract":true,"id":209,"interface":true,"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":"Body","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":"Parameter","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"},{"instanceTypeName":"spoon.reflect.code.CtCodeElement","defaultValue":null,"instanceClassName":"spoon.reflect.code.CtCodeElement","name":"CtCodeElement","instanceClass":null,"abstract":true,"id":216,"interface":true,"eClass":"EClass"},{"id":217,"eClass":"EGenericType"},{"id":218,"eClass":"EGenericType"},{"instanceTypeName":"spoon.reflect.code.CtConditional","defaultValue":null,"instanceClassName":"spoon.reflect.code.CtConditional","name":"CtConditional","instanceClass":null,"abstract":true,"id":219,"interface":true,"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":"ElseExpression","changeable":true,"resolveProxies":true,"lowerBound":0,"id":220,"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":"Condition","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":"ThenExpression","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"},{"id":227,"eClass":"EGenericType"},{"instanceTypeName":"spoon.reflect.code.CtContinue","defaultValue":null,"instanceClassName":"spoon.reflect.code.CtContinue","name":"CtContinue","instanceClass":null,"abstract":true,"id":228,"interface":true,"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":"LabelledStatement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":229,"derived":false},{"id":230,"eClass":"EGenericType"},{"id":231,"eClass":"EGenericType"},{"id":232,"eClass":"EGenericType"},{"instanceTypeName":"spoon.reflect.code.CtDo","defaultValue":null,"instanceClassName":"spoon.reflect.code.CtDo","name":"CtDo","instanceClass":null,"abstract":true,"id":233,"interface":true,"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":"LoopingExpression","changeable":true,"resolveProxies":true,"lowerBound":0,"id":234,"derived":false},{"id":235,"eClass":"EGenericType"},{"id":236,"eClass":"EGenericType"},{"id":237,"eClass":"EGenericType"},{"instanceTypeName":"spoon.reflect.code.CtFieldAccess","defaultValue":null,"instanceClassName":"spoon.reflect.code.CtFieldAccess","name":"CtFieldAccess","instanceClass":null,"abstract":true,"id":238,"interface":true,"eClass":"EClass"},{"id":239,"eClass":"EGenericType"},{"id":240,"eClass":"EGenericType"},{"id":241,"eClass":"EGenericType"},{"instanceTypeName":"spoon.reflect.code.CtFor","defaultValue":null,"instanceClassName":"spoon.reflect.code.CtFor","name":"CtFor","instanceClass":null,"abstract":true,"id":242,"interface":true,"eClass":"EClass"},{"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":"ForInit","changeable":true,"resolveProxies":true,"lowerBound":0,"id":243,"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":"ForUpdate","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":false,"unsettable":false,"transient":false,"unique":true,"name":"Expression","changeable":true,"resolveProxies":true,"lowerBound":0,"id":245,"derived":false},{"id":246,"eClass":"EGenericType"},{"id":247,"eClass":"EGenericType"},{"id":248,"eClass":"EGenericType"},{"id":249,"eClass":"EGenericType"},{"id":250,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CtTypedElement","instanceClass":null,"abstract":false,"id":251,"interface":false,"eClass":"EClass"},{"instanceTypeName":"spoon.reflect.code.CtExpression","defaultValue":null,"instanceClassName":"spoon.reflect.code.CtExpression","name":"CtExpression","instanceClass":null,"abstract":true,"id":252,"interface":true,"eClass":"EClass"},{"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":"TypeCasts","changeable":true,"resolveProxies":true,"lowerBound":0,"id":253,"derived":false},{"id":254,"eClass":"EGenericType"},{"id":255,"eClass":"EGenericType"},{"id":256,"eClass":"EGenericType"},{"id":257,"eClass":"EGenericType"},{"instanceTypeName":"spoon.reflect.code.CtForEach","defaultValue":null,"instanceClassName":"spoon.reflect.code.CtForEach","name":"CtForEach","instanceClass":null,"abstract":true,"id":258,"interface":true,"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":"Expression","changeable":true,"resolveProxies":true,"lowerBound":0,"id":259,"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":"Variable","changeable":true,"resolveProxies":true,"lowerBound":0,"id":260,"derived":false},{"id":261,"eClass":"EGenericType"},{"id":262,"eClass":"EGenericType"},{"id":263,"eClass":"EGenericType"},{"id":264,"eClass":"EGenericType"},{"instanceTypeName":"spoon.reflect.code.CtIf","defaultValue":null,"instanceClassName":"spoon.reflect.code.CtIf","name":"CtIf","instanceClass":null,"abstract":true,"id":265,"interface":true,"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":"ThenStatement","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":false,"unsettable":false,"transient":false,"unique":true,"name":"Condition","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":false,"unsettable":false,"transient":false,"unique":true,"name":"ElseStatement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":268,"derived":false},{"id":269,"eClass":"EGenericType"},{"id":270,"eClass":"EGenericType"},{"id":271,"eClass":"EGenericType"},{"id":272,"eClass":"EGenericType"},{"id":273,"eClass":"EGenericType"},{"instanceTypeName":"spoon.reflect.code.CtInvocation","defaultValue":null,"instanceClassName":"spoon.reflect.code.CtInvocation","name":"CtInvocation","instanceClass":null,"abstract":true,"id":274,"interface":true,"eClass":"EClass"},{"id":275,"eClass":"EGenericType"},{"id":276,"eClass":"EGenericType"},{"id":277,"eClass":"EGenericType"},{"id":278,"eClass":"EGenericType"},{"instanceTypeName":"spoon.reflect.code.CtLiteral","defaultValue":null,"instanceClassName":"spoon.reflect.code.CtLiteral","name":"CtLiteral","instanceClass":null,"abstract":true,"id":279,"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":"Value","changeable":true,"lowerBound":0,"iD":false,"id":280,"derived":false},{"id":281,"eClass":"EGenericType"},{"id":282,"eClass":"EGenericType"},{"id":283,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CtVariable","instanceClass":null,"abstract":false,"id":284,"interface":false,"eClass":"EClass"},{"instanceTypeName":"spoon.reflect.code.CtLocalVariable","defaultValue":null,"instanceClassName":"spoon.reflect.code.CtLocalVariable","name":"CtLocalVariable","instanceClass":null,"abstract":true,"id":285,"interface":true,"eClass":"EClass"},{"id":286,"eClass":"EGenericType"},{"id":287,"eClass":"EGenericType"},{"id":288,"eClass":"EGenericType"},{"instanceTypeName":"spoon.reflect.code.CtLoop","defaultValue":null,"instanceClassName":"spoon.reflect.code.CtLoop","name":"CtLoop","instanceClass":null,"abstract":true,"id":289,"interface":true,"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":"Body","changeable":true,"resolveProxies":true,"lowerBound":0,"id":290,"derived":false},{"id":291,"eClass":"EGenericType"},{"id":292,"eClass":"EGenericType"},{"id":293,"eClass":"EGenericType"},{"instanceTypeName":"spoon.reflect.code.CtNewArray","defaultValue":null,"instanceClassName":"spoon.reflect.code.CtNewArray","name":"CtNewArray","instanceClass":null,"abstract":true,"id":294,"interface":true,"eClass":"EClass"},{"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":"DimensionExpressions","changeable":true,"resolveProxies":true,"lowerBound":0,"id":295,"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":"Elements","changeable":true,"resolveProxies":true,"lowerBound":0,"id":296,"derived":false},{"id":297,"eClass":"EGenericType"},{"id":298,"eClass":"EGenericType"},{"id":299,"eClass":"EGenericType"},{"id":300,"eClass":"EGenericType"},{"instanceTypeName":"spoon.reflect.code.CtNewClass","defaultValue":null,"instanceClassName":"spoon.reflect.code.CtNewClass","name":"CtNewClass","instanceClass":null,"abstract":true,"id":301,"interface":true,"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":"AnonymousClass","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"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CtClass","instanceClass":null,"abstract":false,"id":307,"interface":false,"eClass":"EClass"},{"id":308,"eClass":"EGenericType"},{"instanceTypeName":"spoon.reflect.code.CtOperatorAssignment","defaultValue":null,"instanceClassName":"spoon.reflect.code.CtOperatorAssignment","name":"CtOperatorAssignment","instanceClass":null,"abstract":true,"id":309,"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":"Kind","changeable":true,"lowerBound":0,"iD":false,"id":310,"derived":false},{"id":311,"eClass":"EGenericType"},{"id":312,"eClass":"EGenericType"},{"id":313,"eClass":"EGenericType"},{"instanceTypeName":"spoon.reflect.code.CtReturn","defaultValue":null,"instanceClassName":"spoon.reflect.code.CtReturn","name":"CtReturn","instanceClass":null,"abstract":true,"id":314,"interface":true,"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":"ReturnedExpression","changeable":true,"resolveProxies":true,"lowerBound":0,"id":315,"derived":false},{"id":316,"eClass":"EGenericType"},{"id":317,"eClass":"EGenericType"},{"id":318,"eClass":"EGenericType"},{"instanceTypeName":"spoon.reflect.code.CtStatement","defaultValue":null,"instanceClassName":"spoon.reflect.code.CtStatement","name":"CtStatement","instanceClass":null,"abstract":true,"id":319,"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":"Label","changeable":true,"lowerBound":0,"iD":false,"id":320,"derived":false},{"id":321,"eClass":"EGenericType"},{"id":322,"eClass":"EGenericType"},{"id":323,"eClass":"EGenericType"},{"instanceTypeName":"spoon.reflect.code.CtStatementList","defaultValue":null,"instanceClassName":"spoon.reflect.code.CtStatementList","name":"CtStatementList","instanceClass":null,"abstract":true,"id":324,"interface":true,"eClass":"EClass"},{"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":"Statements","changeable":true,"resolveProxies":true,"lowerBound":0,"id":325,"derived":false},{"id":326,"eClass":"EGenericType"},{"id":327,"eClass":"EGenericType"},{"id":328,"eClass":"EGenericType"},{"instanceTypeName":"spoon.reflect.code.CtSwitch","defaultValue":null,"instanceClassName":"spoon.reflect.code.CtSwitch","name":"CtSwitch","instanceClass":null,"abstract":true,"id":329,"interface":true,"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":"Selector","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":false,"unsettable":false,"transient":false,"unique":true,"name":"Cases","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"},{"instanceTypeName":"spoon.reflect.code.CtSynchronized","defaultValue":null,"instanceClassName":"spoon.reflect.code.CtSynchronized","name":"CtSynchronized","instanceClass":null,"abstract":true,"id":336,"interface":true,"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":"Block","changeable":true,"resolveProxies":true,"lowerBound":0,"id":337,"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":"Expression","changeable":true,"resolveProxies":true,"lowerBound":0,"id":338,"derived":false},{"id":339,"eClass":"EGenericType"},{"id":340,"eClass":"EGenericType"},{"id":341,"eClass":"EGenericType"},{"id":342,"eClass":"EGenericType"},{"instanceTypeName":"spoon.reflect.code.CtTargetedExpression","defaultValue":null,"instanceClassName":"spoon.reflect.code.CtTargetedExpression","name":"CtTargetedExpression","instanceClass":null,"abstract":true,"id":343,"interface":true,"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":"Target","changeable":true,"resolveProxies":true,"lowerBound":0,"id":344,"derived":false},{"id":345,"eClass":"EGenericType"},{"id":346,"eClass":"EGenericType"},{"id":347,"eClass":"EGenericType"},{"instanceTypeName":"spoon.reflect.code.CtThrow","defaultValue":null,"instanceClassName":"spoon.reflect.code.CtThrow","name":"CtThrow","instanceClass":null,"abstract":true,"id":348,"interface":true,"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":"ThrownExpression","changeable":true,"resolveProxies":true,"lowerBound":0,"id":349,"derived":false},{"id":350,"eClass":"EGenericType"},{"id":351,"eClass":"EGenericType"},{"id":352,"eClass":"EGenericType"},{"instanceTypeName":"spoon.reflect.code.CtTry","defaultValue":null,"instanceClassName":"spoon.reflect.code.CtTry","name":"CtTry","instanceClass":null,"abstract":true,"id":353,"interface":true,"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":"Finalizer","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":"Body","changeable":true,"resolveProxies":true,"lowerBound":0,"id":355,"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":"Catchers","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"},{"instanceTypeName":"spoon.reflect.code.CtUnaryOperator","defaultValue":null,"instanceClassName":"spoon.reflect.code.CtUnaryOperator","name":"CtUnaryOperator","instanceClass":null,"abstract":true,"id":362,"interface":true,"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":"Operand","changeable":true,"resolveProxies":true,"lowerBound":0,"id":363,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"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":364,"derived":false},{"id":365,"eClass":"EGenericType"},{"id":366,"eClass":"EGenericType"},{"id":367,"eClass":"EGenericType"},{"id":368,"eClass":"EGenericType"},{"id":369,"eClass":"EGenericType"},{"instanceTypeName":"spoon.reflect.code.CtVariableAccess","defaultValue":null,"instanceClassName":"spoon.reflect.code.CtVariableAccess","name":"CtVariableAccess","instanceClass":null,"abstract":true,"id":370,"interface":true,"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":"Variable","changeable":true,"resolveProxies":true,"lowerBound":0,"id":371,"derived":false},{"id":372,"eClass":"EGenericType"},{"id":373,"eClass":"EGenericType"},{"id":374,"eClass":"EGenericType"},{"instanceTypeName":"spoon.reflect.code.CtWhile","defaultValue":null,"instanceClassName":"spoon.reflect.code.CtWhile","name":"CtWhile","instanceClass":null,"abstract":true,"id":375,"interface":true,"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":"LoopingExpression","changeable":true,"resolveProxies":true,"lowerBound":0,"id":376,"derived":false},{"id":377,"eClass":"EGenericType"},{"id":378,"eClass":"EGenericType"},{"id":379,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CtAnnotation","instanceClass":null,"abstract":false,"id":380,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CtAnnotationType","instanceClass":null,"abstract":false,"id":381,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CtAnonymousExecutable","instanceClass":null,"abstract":false,"id":382,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CtConstructor","instanceClass":null,"abstract":false,"id":383,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CtEnum","instanceClass":null,"abstract":false,"id":384,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CtExecutable","instanceClass":null,"abstract":false,"id":385,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CtField","instanceClass":null,"abstract":false,"id":386,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CtGenericElement","instanceClass":null,"abstract":false,"id":387,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CtInterface","instanceClass":null,"abstract":false,"id":388,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CtMethod","instanceClass":null,"abstract":false,"id":389,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CtModifiable","instanceClass":null,"abstract":false,"id":390,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CtNamedElement","instanceClass":null,"abstract":false,"id":391,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CtPackage","instanceClass":null,"abstract":false,"id":392,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CtParameter","instanceClass":null,"abstract":false,"id":393,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CtSimpleType","instanceClass":null,"abstract":false,"id":394,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CtType","instanceClass":null,"abstract":false,"id":395,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CtTypeParameter","instanceClass":null,"abstract":false,"id":396,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SourcePosition","instanceClass":null,"abstract":false,"id":397,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CtAnnotationElementValue","instanceClass":null,"abstract":false,"id":398,"interface":false,"eClass":"EClass"},{"instanceTypeName":"spoon.reflect.declaration.CtAnnotation","defaultValue":null,"instanceClassName":"spoon.reflect.declaration.CtAnnotation","name":"CtAnnotation","instanceClass":null,"abstract":true,"id":399,"interface":true,"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":"AnnotationType","changeable":true,"resolveProxies":true,"lowerBound":0,"id":400,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"ActualAnnotation","changeable":false,"lowerBound":0,"iD":false,"id":401,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"ElementsVal","changeable":true,"resolveProxies":true,"lowerBound":0,"id":402,"derived":false},{"id":403,"eClass":"EGenericType"},{"id":404,"eClass":"EGenericType"},{"id":405,"eClass":"EGenericType"},{"id":406,"eClass":"EGenericType"},{"id":407,"eClass":"EGenericType"},{"instanceTypeName":"spoon.reflect.declaration.CtAnnotationType","defaultValue":null,"instanceClassName":"spoon.reflect.declaration.CtAnnotationType","name":"CtAnnotationType","instanceClass":null,"abstract":true,"id":408,"interface":true,"eClass":"EClass"},{"id":409,"eClass":"EGenericType"},{"id":410,"eClass":"EGenericType"},{"instanceTypeName":"spoon.reflect.declaration.CtAnonymousExecutable","defaultValue":null,"instanceClassName":"spoon.reflect.declaration.CtAnonymousExecutable","name":"CtAnonymousExecutable","instanceClass":null,"abstract":true,"id":411,"interface":true,"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":"Body","changeable":true,"resolveProxies":true,"lowerBound":0,"id":412,"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":"OwnerClass","changeable":false,"resolveProxies":true,"lowerBound":0,"id":413,"derived":false},{"id":414,"eClass":"EGenericType"},{"id":415,"eClass":"EGenericType"},{"id":416,"eClass":"EGenericType"},{"id":417,"eClass":"EGenericType"},{"id":418,"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":"AnonymousExecutables","changeable":true,"resolveProxies":true,"lowerBound":0,"id":419,"derived":false},{"instanceTypeName":"spoon.reflect.declaration.CtClass","defaultValue":null,"instanceClassName":"spoon.reflect.declaration.CtClass","name":"CtClass","instanceClass":null,"abstract":true,"id":420,"interface":true,"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":"Superclass","changeable":true,"resolveProxies":true,"lowerBound":0,"id":421,"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":"Constructors","changeable":true,"resolveProxies":true,"lowerBound":0,"id":422,"derived":false},{"id":423,"eClass":"EGenericType"},{"id":424,"eClass":"EGenericType"},{"id":425,"eClass":"EGenericType"},{"id":426,"eClass":"EGenericType"},{"id":427,"eClass":"EGenericType"},{"instanceTypeName":"spoon.reflect.declaration.CtConstructor","defaultValue":null,"instanceClassName":"spoon.reflect.declaration.CtConstructor","name":"CtConstructor","instanceClass":null,"abstract":true,"id":428,"interface":true,"eClass":"EClass"},{"id":429,"eClass":"EGenericType"},{"id":430,"eClass":"EGenericType"},{"instanceTypeName":"spoon.reflect.declaration.CtElement","defaultValue":null,"instanceClassName":"spoon.reflect.declaration.CtElement","name":"CtElement","instanceClass":null,"abstract":true,"id":431,"interface":true,"eClass":"EClass"},{"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":"Annotations","changeable":true,"resolveProxies":true,"lowerBound":0,"id":432,"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":"Position","changeable":true,"resolveProxies":true,"lowerBound":0,"id":433,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"DocComment","changeable":true,"lowerBound":0,"iD":false,"id":434,"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":435,"derived":false},{"id":436,"eClass":"EGenericType"},{"id":437,"eClass":"EGenericType"},{"id":438,"eClass":"EGenericType"},{"id":439,"eClass":"EGenericType"},{"id":440,"eClass":"EGenericType"},{"instanceTypeName":"spoon.reflect.declaration.CtEnum","defaultValue":null,"instanceClassName":"spoon.reflect.declaration.CtEnum","name":"CtEnum","instanceClass":null,"abstract":true,"id":441,"interface":true,"eClass":"EClass"},{"id":442,"eClass":"EGenericType"},{"id":443,"eClass":"EGenericType"},{"instanceTypeName":"spoon.reflect.declaration.CtExecutable","defaultValue":null,"instanceClassName":"spoon.reflect.declaration.CtExecutable","name":"CtExecutable","instanceClass":null,"abstract":true,"id":444,"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":"EXECUTABLE_SEPARATOR","changeable":true,"lowerBound":0,"iD":false,"id":445,"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":"Parameters","changeable":true,"resolveProxies":true,"lowerBound":0,"id":446,"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":"Body","changeable":true,"resolveProxies":true,"lowerBound":0,"id":447,"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":"ThrownTypes","changeable":true,"resolveProxies":true,"lowerBound":0,"id":448,"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":"DeclaringType","changeable":false,"resolveProxies":true,"lowerBound":0,"id":449,"derived":false},{"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"},{"instanceTypeName":"spoon.reflect.declaration.CtField","defaultValue":null,"instanceClassName":"spoon.reflect.declaration.CtField","name":"CtField","instanceClass":null,"abstract":true,"id":458,"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":"FIELD_SEPARATOR","changeable":true,"lowerBound":0,"iD":false,"id":459,"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":false,"unique":true,"name":"DeclaringType","changeable":false,"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"},{"instanceTypeName":"spoon.reflect.declaration.CtGenericElement","defaultValue":null,"instanceClassName":"spoon.reflect.declaration.CtGenericElement","name":"CtGenericElement","instanceClass":null,"abstract":true,"id":466,"interface":true,"eClass":"EClass"},{"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":"FormalTypeParameters","changeable":true,"resolveProxies":true,"lowerBound":0,"id":467,"derived":false},{"id":468,"eClass":"EGenericType"},{"id":469,"eClass":"EGenericType"},{"id":470,"eClass":"EGenericType"},{"instanceTypeName":"spoon.reflect.declaration.CtInterface","defaultValue":null,"instanceClassName":"spoon.reflect.declaration.CtInterface","name":"CtInterface","instanceClass":null,"abstract":true,"id":471,"interface":true,"eClass":"EClass"},{"id":472,"eClass":"EGenericType"},{"id":473,"eClass":"EGenericType"},{"instanceTypeName":"spoon.reflect.declaration.CtMethod","defaultValue":null,"instanceClassName":"spoon.reflect.declaration.CtMethod","name":"CtMethod","instanceClass":null,"abstract":true,"id":474,"interface":true,"eClass":"EClass"},{"id":475,"eClass":"EGenericType"},{"id":476,"eClass":"EGenericType"},{"id":477,"eClass":"EGenericType"},{"instanceTypeName":"spoon.reflect.declaration.CtModifiable","defaultValue":null,"instanceClassName":"spoon.reflect.declaration.CtModifiable","name":"CtModifiable","instanceClass":null,"abstract":true,"id":478,"interface":true,"eClass":"EClass"},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"Modifiers","changeable":true,"lowerBound":0,"iD":false,"id":479,"derived":false},{"id":480,"eClass":"EGenericType"},{"id":481,"eClass":"EGenericType"},{"instanceTypeName":"spoon.reflect.declaration.CtNamedElement","defaultValue":null,"instanceClassName":"spoon.reflect.declaration.CtNamedElement","name":"CtNamedElement","instanceClass":null,"abstract":true,"id":482,"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":"SimpleName","changeable":true,"lowerBound":0,"iD":false,"id":483,"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":"Reference","changeable":false,"resolveProxies":true,"lowerBound":0,"id":484,"derived":false},{"id":485,"eClass":"EGenericType"},{"id":486,"eClass":"EGenericType"},{"id":487,"eClass":"EGenericType"},{"id":488,"eClass":"EGenericType"},{"id":489,"eClass":"EGenericType"},{"instanceTypeName":"spoon.reflect.declaration.CtPackage","defaultValue":null,"instanceClassName":"spoon.reflect.declaration.CtPackage","name":"CtPackage","instanceClass":null,"abstract":true,"id":490,"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":"PACKAGE_SEPARATOR","changeable":true,"lowerBound":0,"iD":false,"id":491,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"TOP_LEVEL_PACKAGE_NAME","changeable":true,"lowerBound":0,"iD":false,"id":492,"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":"Packages","changeable":true,"resolveProxies":true,"lowerBound":0,"id":493,"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":"Types","changeable":true,"resolveProxies":true,"lowerBound":0,"id":494,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":"","volatile":true,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"","unsettable":false,"transient":true,"unique":true,"name":"QualifiedName","changeable":false,"lowerBound":0,"iD":false,"id":495,"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":"DeclaringPackage","changeable":false,"resolveProxies":true,"lowerBound":0,"id":496,"derived":false},{"id":497,"eClass":"EGenericType"},{"id":498,"eClass":"EGenericType"},{"id":499,"eClass":"EGenericType"},{"id":500,"eClass":"EGenericType"},{"id":501,"eClass":"EGenericType"},{"id":502,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":true,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"Package","changeable":false,"resolveProxies":true,"lowerBound":0,"id":503,"derived":false},{"id":504,"eClass":"EGenericType"},{"id":505,"eClass":"EGenericType"},{"instanceTypeName":"spoon.reflect.declaration.CtParameter","defaultValue":null,"instanceClassName":"spoon.reflect.declaration.CtParameter","name":"CtParameter","instanceClass":null,"abstract":true,"id":506,"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":"VarArgs","changeable":true,"lowerBound":0,"iD":false,"id":507,"derived":false},{"id":508,"eClass":"EGenericType"},{"id":509,"eClass":"EGenericType"},{"id":510,"eClass":"EGenericType"},{"id":511,"eClass":"EGenericType"},{"instanceTypeName":"spoon.reflect.declaration.CtSimpleType","defaultValue":null,"instanceClassName":"spoon.reflect.declaration.CtSimpleType","name":"CtSimpleType","instanceClass":null,"abstract":true,"id":512,"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":"INNERTTYPE_SEPARATOR","changeable":true,"lowerBound":0,"iD":false,"id":513,"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":"Fields","changeable":true,"resolveProxies":true,"lowerBound":0,"id":514,"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":"NestedTypes","changeable":true,"resolveProxies":true,"lowerBound":0,"id":515,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"ActualClass","changeable":false,"lowerBound":0,"iD":false,"id":516,"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":false,"unique":true,"name":"DeclaringType","changeable":false,"resolveProxies":false,"lowerBound":0,"id":517,"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":"AllFields","changeable":false,"resolveProxies":true,"lowerBound":0,"id":518,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"TopLevel","changeable":false,"lowerBound":0,"iD":false,"id":519,"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":"QualifiedName","changeable":false,"lowerBound":0,"iD":false,"id":520,"derived":false},{"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"},{"instanceTypeName":"spoon.reflect.declaration.CtType","defaultValue":null,"instanceClassName":"spoon.reflect.declaration.CtType","name":"CtType","instanceClass":null,"abstract":true,"id":532,"interface":true,"eClass":"EClass"},{"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":"Methods","changeable":true,"resolveProxies":true,"lowerBound":0,"id":533,"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":"Superinterfaces","changeable":false,"resolveProxies":true,"lowerBound":0,"id":534,"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":"AllMethods","changeable":false,"resolveProxies":true,"lowerBound":0,"id":535,"derived":false},{"id":536,"eClass":"EGenericType"},{"id":537,"eClass":"EGenericType"},{"id":538,"eClass":"EGenericType"},{"id":539,"eClass":"EGenericType"},{"id":540,"eClass":"EGenericType"},{"id":541,"eClass":"EGenericType"},{"instanceTypeName":"spoon.reflect.declaration.CtTypeParameter","defaultValue":null,"instanceClassName":"spoon.reflect.declaration.CtTypeParameter","name":"CtTypeParameter","instanceClass":null,"abstract":true,"id":542,"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":"Name","changeable":true,"lowerBound":0,"iD":false,"id":543,"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":"Bounds","changeable":true,"resolveProxies":true,"lowerBound":0,"id":544,"derived":false},{"id":545,"eClass":"EGenericType"},{"id":546,"eClass":"EGenericType"},{"id":547,"eClass":"EGenericType"},{"id":548,"eClass":"EGenericType"},{"instanceTypeName":"spoon.reflect.declaration.CtTypedElement","defaultValue":null,"instanceClassName":"spoon.reflect.declaration.CtTypedElement","name":"CtTypedElement","instanceClass":null,"abstract":true,"id":549,"interface":true,"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":"Type","changeable":true,"resolveProxies":true,"lowerBound":0,"id":550,"derived":false},{"id":551,"eClass":"EGenericType"},{"id":552,"eClass":"EGenericType"},{"instanceTypeName":"spoon.reflect.declaration.CtVariable","defaultValue":null,"instanceClassName":"spoon.reflect.declaration.CtVariable","name":"CtVariable","instanceClass":null,"abstract":true,"id":553,"interface":true,"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":"DefaultExpression","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"},{"instanceTypeName":"spoon.reflect.declaration.SourcePosition","defaultValue":null,"instanceClassName":"spoon.reflect.declaration.SourcePosition","name":"SourcePosition","instanceClass":null,"abstract":true,"id":559,"interface":true,"eClass":"EClass"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":true,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":true,"unique":true,"name":"Line","changeable":false,"lowerBound":0,"iD":false,"id":560,"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":"Column","changeable":false,"lowerBound":0,"iD":false,"id":561,"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":"File","changeable":false,"lowerBound":0,"iD":false,"id":562,"derived":false},{"id":563,"eClass":"EGenericType"},{"id":564,"eClass":"EGenericType"},{"id":565,"eClass":"EGenericType"},{"id":566,"eClass":"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":567,"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":"valueString","changeable":true,"lowerBound":0,"iD":false,"id":568,"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":"valueRef","changeable":true,"resolveProxies":true,"lowerBound":0,"id":569,"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":"valueElement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":570,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"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":571,"derived":false},{"id":572,"eClass":"EGenericType"},{"id":573,"eClass":"EGenericType"},{"id":574,"eClass":"EGenericType"},{"id":575,"eClass":"EGenericType"},{"id":576,"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":2,"target":0},{"source":3,"target":0},{"source":4,"target":0},{"source":5,"target":0},{"source":6,"target":0},{"source":7,"target":0},{"source":8,"target":0},{"source":9,"target":0},{"source":10,"target":0},{"source":11,"target":0},{"source":12,"target":0},{"source":13,"target":0},{"source":14,"target":0},{"source":15,"target":17},{"source":15,"target":18},{"source":15,"target":19},{"source":15,"target":20},{"source":15,"target":0},{"source":17,"target":15},{"source":18,"target":21},{"source":18,"target":22},{"source":18,"target":23},{"source":18,"target":24},{"source":18,"target":25},{"source":18,"target":26},{"source":18,"target":27},{"source":18,"target":28},{"source":18,"target":29},{"source":18,"target":30},{"source":18,"target":31},{"source":18,"target":15},{"source":21,"target":18},{"source":21,"target":30},{"source":21,"target":32},{"source":21,"target":33},{"source":21,"target":34},{"source":21,"target":35},{"source":33,"target":30},{"source":33,"target":36},{"source":33,"target":21},{"source":36,"target":30},{"source":34,"target":30},{"source":35,"target":32},{"source":22,"target":18},{"source":22,"target":24},{"source":22,"target":28},{"source":22,"target":37},{"source":22,"target":38},{"source":22,"target":39},{"source":22,"target":40},{"source":22,"target":41},{"source":22,"target":42},{"source":22,"target":43},{"source":22,"target":44},{"source":22,"target":45},{"source":22,"target":46},{"source":38,"target":30},{"source":38,"target":47},{"source":38,"target":22},{"source":47,"target":30},{"source":39,"target":30},{"source":39,"target":48},{"source":39,"target":22},{"source":48,"target":30},{"source":40,"target":30},{"source":40,"target":49},{"source":40,"target":22},{"source":49,"target":30},{"source":41,"target":4},{"source":41,"target":50},{"source":41,"target":22},{"source":50,"target":4},{"source":42,"target":2},{"source":42,"target":51},{"source":42,"target":22},{"source":51,"target":2},{"source":43,"target":3},{"source":43,"target":52},{"source":43,"target":22},{"source":52,"target":3},{"source":44,"target":24},{"source":45,"target":28},{"source":46,"target":37},{"source":23,"target":18},{"source":23,"target":31},{"source":23,"target":53},{"source":23,"target":54},{"source":23,"target":55},{"source":23,"target":56},{"source":23,"target":57},{"source":23,"target":58},{"source":23,"target":59},{"source":23,"target":60},{"source":54,"target":30},{"source":54,"target":61},{"source":54,"target":23},{"source":61,"target":30},{"source":55,"target":4},{"source":55,"target":62},{"source":55,"target":23},{"source":62,"target":4},{"source":56,"target":4},{"source":56,"target":63},{"source":56,"target":23},{"source":63,"target":4},{"source":57,"target":5},{"source":57,"target":64},{"source":57,"target":23},{"source":64,"target":5},{"source":58,"target":6},{"source":58,"target":65},{"source":58,"target":23},{"source":65,"target":6},{"source":59,"target":31},{"source":60,"target":53},{"source":24,"target":18},{"source":24,"target":66},{"source":24,"target":67},{"source":24,"target":68},{"source":67,"target":30},{"source":67,"target":69},{"source":67,"target":24},{"source":69,"target":30},{"source":68,"target":66},{"source":25,"target":18},{"source":25,"target":31},{"source":25,"target":70},{"source":25,"target":71},{"source":25,"target":72},{"source":71,"target":31},{"source":72,"target":70},{"source":26,"target":18},{"source":26,"target":28},{"source":26,"target":73},{"source":26,"target":74},{"source":26,"target":75},{"source":74,"target":28},{"source":75,"target":73},{"source":27,"target":18},{"source":27,"target":31},{"source":27,"target":76},{"source":27,"target":77},{"source":27,"target":78},{"source":27,"target":79},{"source":77,"target":22},{"source":77,"target":80},{"source":77,"target":27},{"source":80,"target":22},{"source":78,"target":31},{"source":79,"target":76},{"source":28,"target":18},{"source":28,"target":81},{"source":28,"target":82},{"source":28,"target":83},{"source":28,"target":84},{"source":28,"target":85},{"source":82,"target":6},{"source":82,"target":86},{"source":82,"target":28},{"source":86,"target":6},{"source":83,"target":8},{"source":83,"target":87},{"source":83,"target":28},{"source":87,"target":8},{"source":84,"target":88},{"source":84,"target":89},{"source":84,"target":28},{"source":89,"target":88},{"source":85,"target":81},{"source":29,"target":18},{"source":29,"target":30},{"source":29,"target":90},{"source":29,"target":91},{"source":29,"target":92},{"source":29,"target":93},{"source":29,"target":94},{"source":91,"target":4},{"source":91,"target":95},{"source":91,"target":29},{"source":95,"target":4},{"source":92,"target":30},{"source":92,"target":96},{"source":92,"target":29},{"source":96,"target":30},{"source":93,"target":30},{"source":94,"target":90},{"source":30,"target":18},{"source":30,"target":24},{"source":30,"target":28},{"source":30,"target":97},{"source":30,"target":98},{"source":30,"target":99},{"source":30,"target":100},{"source":30,"target":101},{"source":30,"target":102},{"source":30,"target":103},{"source":30,"target":104},{"source":30,"target":105},{"source":98,"target":30},{"source":98,"target":106},{"source":98,"target":30},{"source":106,"target":30},{"source":99,"target":26},{"source":99,"target":107},{"source":99,"target":30},{"source":107,"target":26},{"source":100,"target":7},{"source":100,"target":108},{"source":100,"target":30},{"source":108,"target":7},{"source":101,"target":4},{"source":101,"target":109},{"source":101,"target":30},{"source":109,"target":4},{"source":102,"target":6},{"source":102,"target":110},{"source":102,"target":30},{"source":110,"target":6},{"source":103,"target":24},{"source":104,"target":28},{"source":105,"target":97},{"source":31,"target":18},{"source":31,"target":28},{"source":31,"target":111},{"source":31,"target":112},{"source":31,"target":113},{"source":31,"target":114},{"source":112,"target":30},{"source":112,"target":115},{"source":112,"target":31},{"source":115,"target":30},{"source":113,"target":28},{"source":114,"target":111},{"source":19,"target":116},{"source":19,"target":117},{"source":19,"target":118},{"source":19,"target":119},{"source":19,"target":120},{"source":19,"target":121},{"source":19,"target":122},{"source":19,"target":123},{"source":19,"target":124},{"source":19,"target":125},{"source":19,"target":126},{"source":19,"target":127},{"source":19,"target":128},{"source":19,"target":129},{"source":19,"target":130},{"source":19,"target":131},{"source":19,"target":132},{"source":19,"target":133},{"source":19,"target":134},{"source":19,"target":135},{"source":19,"target":136},{"source":19,"target":137},{"source":19,"target":138},{"source":19,"target":139},{"source":19,"target":140},{"source":19,"target":141},{"source":19,"target":142},{"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":19,"target":150},{"source":19,"target":151},{"source":19,"target":152},{"source":19,"target":15},{"source":116,"target":19},{"source":116,"target":88},{"source":116,"target":153},{"source":116,"target":154},{"source":116,"target":155},{"source":116,"target":156},{"source":116,"target":157},{"source":154,"target":22},{"source":154,"target":158},{"source":154,"target":116},{"source":158,"target":22},{"source":155,"target":132},{"source":155,"target":159},{"source":155,"target":116},{"source":159,"target":132},{"source":156,"target":88},{"source":157,"target":153},{"source":117,"target":19},{"source":117,"target":147},{"source":117,"target":160},{"source":117,"target":161},{"source":117,"target":162},{"source":117,"target":163},{"source":161,"target":132},{"source":161,"target":164},{"source":161,"target":117},{"source":164,"target":132},{"source":162,"target":147},{"source":163,"target":160},{"source":118,"target":19},{"source":118,"target":143},{"source":118,"target":165},{"source":118,"target":166},{"source":118,"target":167},{"source":118,"target":168},{"source":118,"target":169},{"source":166,"target":132},{"source":166,"target":170},{"source":166,"target":118},{"source":170,"target":132},{"source":167,"target":132},{"source":167,"target":171},{"source":167,"target":118},{"source":171,"target":132},{"source":168,"target":143},{"source":169,"target":165},{"source":119,"target":19},{"source":119,"target":132},{"source":119,"target":143},{"source":119,"target":172},{"source":119,"target":173},{"source":119,"target":174},{"source":119,"target":175},{"source":119,"target":176},{"source":119,"target":177},{"source":173,"target":132},{"source":173,"target":178},{"source":173,"target":119},{"source":178,"target":132},{"source":174,"target":132},{"source":174,"target":179},{"source":174,"target":119},{"source":179,"target":132},{"source":175,"target":132},{"source":176,"target":143},{"source":177,"target":172},{"source":120,"target":19},{"source":120,"target":132},{"source":120,"target":180},{"source":120,"target":181},{"source":120,"target":182},{"source":120,"target":183},{"source":120,"target":184},{"source":120,"target":185},{"source":181,"target":10},{"source":181,"target":186},{"source":181,"target":120},{"source":186,"target":10},{"source":182,"target":132},{"source":182,"target":187},{"source":182,"target":120},{"source":187,"target":132},{"source":183,"target":132},{"source":183,"target":188},{"source":183,"target":120},{"source":188,"target":132},{"source":184,"target":132},{"source":185,"target":180},{"source":121,"target":19},{"source":121,"target":143},{"source":121,"target":189},{"source":121,"target":190},{"source":121,"target":191},{"source":121,"target":192},{"source":190,"target":143},{"source":190,"target":193},{"source":190,"target":121},{"source":193,"target":143},{"source":191,"target":143},{"source":192,"target":189},{"source":122,"target":19},{"source":122,"target":123},{"source":122,"target":194},{"source":122,"target":195},{"source":122,"target":196},{"source":122,"target":197},{"source":195,"target":143},{"source":195,"target":198},{"source":195,"target":122},{"source":198,"target":143},{"source":196,"target":123},{"source":197,"target":194},{"source":123,"target":19},{"source":123,"target":143},{"source":123,"target":199},{"source":123,"target":200},{"source":123,"target":201},{"source":200,"target":143},{"source":201,"target":199},{"source":124,"target":19},{"source":124,"target":143},{"source":124,"target":202},{"source":124,"target":203},{"source":124,"target":204},{"source":124,"target":205},{"source":124,"target":206},{"source":203,"target":132},{"source":203,"target":207},{"source":203,"target":124},{"source":207,"target":132},{"source":204,"target":143},{"source":204,"target":208},{"source":204,"target":124},{"source":208,"target":143},{"source":205,"target":143},{"source":206,"target":202},{"source":125,"target":19},{"source":125,"target":126},{"source":125,"target":209},{"source":125,"target":210},{"source":125,"target":211},{"source":125,"target":212},{"source":125,"target":213},{"source":210,"target":121},{"source":210,"target":214},{"source":210,"target":125},{"source":214,"target":121},{"source":211,"target":137},{"source":211,"target":215},{"source":211,"target":125},{"source":215,"target":137},{"source":212,"target":126},{"source":213,"target":209},{"source":126,"target":19},{"source":126,"target":88},{"source":126,"target":216},{"source":126,"target":217},{"source":126,"target":218},{"source":217,"target":88},{"source":218,"target":216},{"source":127,"target":19},{"source":127,"target":132},{"source":127,"target":219},{"source":127,"target":220},{"source":127,"target":221},{"source":127,"target":222},{"source":127,"target":223},{"source":127,"target":224},{"source":220,"target":132},{"source":220,"target":225},{"source":220,"target":127},{"source":225,"target":132},{"source":221,"target":132},{"source":221,"target":226},{"source":221,"target":127},{"source":226,"target":132},{"source":222,"target":132},{"source":222,"target":227},{"source":222,"target":127},{"source":227,"target":132},{"source":223,"target":132},{"source":224,"target":219},{"source":128,"target":19},{"source":128,"target":123},{"source":128,"target":228},{"source":128,"target":229},{"source":128,"target":230},{"source":128,"target":231},{"source":229,"target":143},{"source":229,"target":232},{"source":229,"target":128},{"source":232,"target":143},{"source":230,"target":123},{"source":231,"target":228},{"source":129,"target":19},{"source":129,"target":138},{"source":129,"target":233},{"source":129,"target":234},{"source":129,"target":235},{"source":129,"target":236},{"source":234,"target":132},{"source":234,"target":237},{"source":234,"target":129},{"source":237,"target":132},{"source":235,"target":138},{"source":236,"target":233},{"source":130,"target":19},{"source":130,"target":147},{"source":130,"target":151},{"source":130,"target":238},{"source":130,"target":239},{"source":130,"target":240},{"source":130,"target":241},{"source":239,"target":147},{"source":240,"target":151},{"source":241,"target":238},{"source":131,"target":19},{"source":131,"target":138},{"source":131,"target":242},{"source":131,"target":243},{"source":131,"target":244},{"source":131,"target":245},{"source":131,"target":246},{"source":131,"target":247},{"source":243,"target":143},{"source":243,"target":248},{"source":243,"target":131},{"source":248,"target":143},{"source":244,"target":143},{"source":244,"target":249},{"source":244,"target":131},{"source":249,"target":143},{"source":245,"target":132},{"source":245,"target":250},{"source":245,"target":131},{"source":250,"target":132},{"source":246,"target":138},{"source":247,"target":242},{"source":132,"target":19},{"source":132,"target":126},{"source":132,"target":251},{"source":132,"target":252},{"source":132,"target":253},{"source":132,"target":254},{"source":132,"target":255},{"source":132,"target":256},{"source":253,"target":30},{"source":253,"target":257},{"source":253,"target":132},{"source":257,"target":30},{"source":254,"target":126},{"source":255,"target":251},{"source":256,"target":252},{"source":133,"target":19},{"source":133,"target":138},{"source":133,"target":258},{"source":133,"target":259},{"source":133,"target":260},{"source":133,"target":261},{"source":133,"target":262},{"source":259,"target":132},{"source":259,"target":263},{"source":259,"target":133},{"source":263,"target":132},{"source":260,"target":137},{"source":260,"target":264},{"source":260,"target":133},{"source":264,"target":137},{"source":261,"target":138},{"source":262,"target":258},{"source":134,"target":19},{"source":134,"target":143},{"source":134,"target":265},{"source":134,"target":266},{"source":134,"target":267},{"source":134,"target":268},{"source":134,"target":269},{"source":134,"target":270},{"source":266,"target":143},{"source":266,"target":271},{"source":266,"target":134},{"source":271,"target":143},{"source":267,"target":132},{"source":267,"target":272},{"source":267,"target":134},{"source":272,"target":132},{"source":268,"target":143},{"source":268,"target":273},{"source":268,"target":134},{"source":273,"target":143},{"source":269,"target":143},{"source":270,"target":265},{"source":135,"target":19},{"source":135,"target":116},{"source":135,"target":143},{"source":135,"target":147},{"source":135,"target":274},{"source":135,"target":275},{"source":135,"target":276},{"source":135,"target":277},{"source":135,"target":278},{"source":275,"target":116},{"source":276,"target":143},{"source":277,"target":147},{"source":278,"target":274},{"source":136,"target":19},{"source":136,"target":132},{"source":136,"target":279},{"source":136,"target":280},{"source":136,"target":281},{"source":136,"target":282},{"source":280,"target":1},{"source":280,"target":283},{"source":280,"target":136},{"source":283,"target":1},{"source":281,"target":132},{"source":282,"target":279},{"source":137,"target":19},{"source":137,"target":143},{"source":137,"target":284},{"source":137,"target":285},{"source":137,"target":286},{"source":137,"target":287},{"source":137,"target":288},{"source":286,"target":143},{"source":287,"target":284},{"source":288,"target":285},{"source":138,"target":19},{"source":138,"target":143},{"source":138,"target":289},{"source":138,"target":290},{"source":138,"target":291},{"source":138,"target":292},{"source":290,"target":143},{"source":290,"target":293},{"source":290,"target":138},{"source":293,"target":143},{"source":291,"target":143},{"source":292,"target":289},{"source":139,"target":19},{"source":139,"target":132},{"source":139,"target":294},{"source":139,"target":295},{"source":139,"target":296},{"source":139,"target":297},{"source":139,"target":298},{"source":295,"target":132},{"source":295,"target":299},{"source":295,"target":139},{"source":299,"target":132},{"source":296,"target":132},{"source":296,"target":300},{"source":296,"target":139},{"source":300,"target":132},{"source":297,"target":132},{"source":298,"target":294},{"source":140,"target":19},{"source":140,"target":116},{"source":140,"target":132},{"source":140,"target":143},{"source":140,"target":301},{"source":140,"target":302},{"source":140,"target":303},{"source":140,"target":304},{"source":140,"target":305},{"source":140,"target":306},{"source":302,"target":307},{"source":302,"target":308},{"source":302,"target":140},{"source":308,"target":307},{"source":303,"target":116},{"source":304,"target":132},{"source":305,"target":143},{"source":306,"target":301},{"source":141,"target":19},{"source":141,"target":119},{"source":141,"target":309},{"source":141,"target":310},{"source":141,"target":311},{"source":141,"target":312},{"source":310,"target":10},{"source":310,"target":313},{"source":310,"target":141},{"source":313,"target":10},{"source":311,"target":119},{"source":312,"target":309},{"source":142,"target":19},{"source":142,"target":123},{"source":142,"target":314},{"source":142,"target":315},{"source":142,"target":316},{"source":142,"target":317},{"source":315,"target":132},{"source":315,"target":318},{"source":315,"target":142},{"source":318,"target":132},{"source":316,"target":123},{"source":317,"target":314},{"source":143,"target":19},{"source":143,"target":126},{"source":143,"target":319},{"source":143,"target":320},{"source":143,"target":321},{"source":143,"target":322},{"source":320,"target":6},{"source":320,"target":323},{"source":320,"target":143},{"source":323,"target":6},{"source":321,"target":126},{"source":322,"target":319},{"source":144,"target":19},{"source":144,"target":126},{"source":144,"target":324},{"source":144,"target":325},{"source":144,"target":326},{"source":144,"target":327},{"source":325,"target":143},{"source":325,"target":328},{"source":325,"target":144},{"source":328,"target":143},{"source":326,"target":126},{"source":327,"target":324},{"source":145,"target":19},{"source":145,"target":143},{"source":145,"target":329},{"source":145,"target":330},{"source":145,"target":331},{"source":145,"target":332},{"source":145,"target":333},{"source":330,"target":132},{"source":330,"target":334},{"source":330,"target":145},{"source":334,"target":132},{"source":331,"target":124},{"source":331,"target":335},{"source":331,"target":145},{"source":335,"target":124},{"source":332,"target":143},{"source":333,"target":329},{"source":146,"target":19},{"source":146,"target":143},{"source":146,"target":336},{"source":146,"target":337},{"source":146,"target":338},{"source":146,"target":339},{"source":146,"target":340},{"source":337,"target":121},{"source":337,"target":341},{"source":337,"target":146},{"source":341,"target":121},{"source":338,"target":132},{"source":338,"target":342},{"source":338,"target":146},{"source":342,"target":132},{"source":339,"target":143},{"source":340,"target":336},{"source":147,"target":19},{"source":147,"target":132},{"source":147,"target":343},{"source":147,"target":344},{"source":147,"target":345},{"source":147,"target":346},{"source":344,"target":132},{"source":344,"target":347},{"source":344,"target":147},{"source":347,"target":132},{"source":345,"target":132},{"source":346,"target":343},{"source":148,"target":19},{"source":148,"target":123},{"source":148,"target":348},{"source":148,"target":349},{"source":148,"target":350},{"source":148,"target":351},{"source":349,"target":132},{"source":349,"target":352},{"source":349,"target":148},{"source":352,"target":132},{"source":350,"target":123},{"source":351,"target":348},{"source":149,"target":19},{"source":149,"target":143},{"source":149,"target":353},{"source":149,"target":354},{"source":149,"target":355},{"source":149,"target":356},{"source":149,"target":357},{"source":149,"target":358},{"source":354,"target":121},{"source":354,"target":359},{"source":354,"target":149},{"source":359,"target":121},{"source":355,"target":121},{"source":355,"target":360},{"source":355,"target":149},{"source":360,"target":121},{"source":356,"target":125},{"source":356,"target":361},{"source":356,"target":149},{"source":361,"target":125},{"source":357,"target":143},{"source":358,"target":353},{"source":150,"target":19},{"source":150,"target":132},{"source":150,"target":143},{"source":150,"target":362},{"source":150,"target":363},{"source":150,"target":364},{"source":150,"target":365},{"source":150,"target":366},{"source":150,"target":367},{"source":363,"target":132},{"source":363,"target":368},{"source":363,"target":150},{"source":368,"target":132},{"source":364,"target":11},{"source":364,"target":369},{"source":364,"target":150},{"source":369,"target":11},{"source":365,"target":132},{"source":366,"target":143},{"source":367,"target":362},{"source":151,"target":19},{"source":151,"target":132},{"source":151,"target":370},{"source":151,"target":371},{"source":151,"target":372},{"source":151,"target":373},{"source":371,"target":31},{"source":371,"target":374},{"source":371,"target":151},{"source":374,"target":31},{"source":372,"target":132},{"source":373,"target":370},{"source":152,"target":19},{"source":152,"target":138},{"source":152,"target":375},{"source":152,"target":376},{"source":152,"target":377},{"source":152,"target":378},{"source":376,"target":132},{"source":376,"target":379},{"source":376,"target":152},{"source":379,"target":132},{"source":377,"target":138},{"source":378,"target":375},{"source":20,"target":380},{"source":20,"target":381},{"source":20,"target":382},{"source":20,"target":307},{"source":20,"target":383},{"source":20,"target":88},{"source":20,"target":384},{"source":20,"target":385},{"source":20,"target":386},{"source":20,"target":387},{"source":20,"target":388},{"source":20,"target":389},{"source":20,"target":390},{"source":20,"target":391},{"source":20,"target":392},{"source":20,"target":393},{"source":20,"target":394},{"source":20,"target":395},{"source":20,"target":396},{"source":20,"target":251},{"source":20,"target":284},{"source":20,"target":397},{"source":20,"target":398},{"source":20,"target":15},{"source":380,"target":20},{"source":380,"target":88},{"source":380,"target":399},{"source":380,"target":400},{"source":380,"target":401},{"source":380,"target":402},{"source":380,"target":403},{"source":380,"target":404},{"source":400,"target":30},{"source":400,"target":405},{"source":400,"target":380},{"source":405,"target":30},{"source":401,"target":1},{"source":401,"target":406},{"source":401,"target":380},{"source":406,"target":1},{"source":402,"target":398},{"source":402,"target":407},{"source":402,"target":380},{"source":407,"target":398},{"source":403,"target":88},{"source":404,"target":399},{"source":381,"target":20},{"source":381,"target":394},{"source":381,"target":408},{"source":381,"target":409},{"source":381,"target":410},{"source":409,"target":394},{"source":410,"target":408},{"source":382,"target":20},{"source":382,"target":88},{"source":382,"target":390},{"source":382,"target":411},{"source":382,"target":412},{"source":382,"target":413},{"source":382,"target":414},{"source":382,"target":415},{"source":382,"target":416},{"source":412,"target":121},{"source":412,"target":417},{"source":412,"target":382},{"source":417,"target":121},{"source":413,"target":307},{"source":413,"target":418},{"source":413,"target":382},{"source":413,"target":419},{"source":418,"target":307},{"source":414,"target":88},{"source":415,"target":390},{"source":416,"target":411},{"source":307,"target":20},{"source":307,"target":395},{"source":307,"target":420},{"source":307,"target":421},{"source":307,"target":419},{"source":307,"target":422},{"source":307,"target":423},{"source":307,"target":424},{"source":421,"target":30},{"source":421,"target":425},{"source":421,"target":307},{"source":425,"target":30},{"source":419,"target":382},{"source":419,"target":426},{"source":419,"target":307},{"source":419,"target":413},{"source":426,"target":382},{"source":422,"target":383},{"source":422,"target":427},{"source":422,"target":307},{"source":427,"target":383},{"source":423,"target":395},{"source":424,"target":420},{"source":383,"target":20},{"source":383,"target":385},{"source":383,"target":428},{"source":383,"target":429},{"source":383,"target":430},{"source":429,"target":385},{"source":430,"target":428},{"source":88,"target":20},{"source":88,"target":431},{"source":88,"target":432},{"source":88,"target":433},{"source":88,"target":434},{"source":88,"target":435},{"source":88,"target":436},{"source":432,"target":380},{"source":432,"target":437},{"source":432,"target":88},{"source":437,"target":380},{"source":433,"target":397},{"source":433,"target":438},{"source":433,"target":88},{"source":438,"target":397},{"source":434,"target":6},{"source":434,"target":439},{"source":434,"target":88},{"source":439,"target":6},{"source":435,"target":88},{"source":435,"target":440},{"source":435,"target":88},{"source":440,"target":88},{"source":436,"target":431},{"source":384,"target":20},{"source":384,"target":395},{"source":384,"target":441},{"source":384,"target":442},{"source":384,"target":443},{"source":442,"target":395},{"source":443,"target":441},{"source":385,"target":20},{"source":385,"target":387},{"source":385,"target":391},{"source":385,"target":444},{"source":385,"target":445},{"source":385,"target":446},{"source":385,"target":447},{"source":385,"target":448},{"source":385,"target":449},{"source":385,"target":450},{"source":385,"target":451},{"source":385,"target":452},{"source":445,"target":6},{"source":445,"target":453},{"source":445,"target":385},{"source":453,"target":6},{"source":446,"target":393},{"source":446,"target":454},{"source":446,"target":385},{"source":454,"target":393},{"source":447,"target":121},{"source":447,"target":455},{"source":447,"target":385},{"source":455,"target":121},{"source":448,"target":30},{"source":448,"target":456},{"source":448,"target":385},{"source":456,"target":30},{"source":449,"target":395},{"source":449,"target":457},{"source":449,"target":385},{"source":457,"target":395},{"source":450,"target":387},{"source":451,"target":391},{"source":452,"target":444},{"source":386,"target":20},{"source":386,"target":391},{"source":386,"target":284},{"source":386,"target":458},{"source":386,"target":459},{"source":386,"target":460},{"source":386,"target":461},{"source":386,"target":462},{"source":386,"target":463},{"source":459,"target":6},{"source":459,"target":464},{"source":459,"target":386},{"source":464,"target":6},{"source":460,"target":394},{"source":460,"target":465},{"source":460,"target":386},{"source":465,"target":394},{"source":461,"target":391},{"source":462,"target":284},{"source":463,"target":458},{"source":387,"target":20},{"source":387,"target":88},{"source":387,"target":466},{"source":387,"target":467},{"source":387,"target":468},{"source":387,"target":469},{"source":467,"target":30},{"source":467,"target":470},{"source":467,"target":387},{"source":470,"target":30},{"source":468,"target":88},{"source":469,"target":466},{"source":388,"target":20},{"source":388,"target":395},{"source":388,"target":471},{"source":388,"target":472},{"source":388,"target":473},{"source":472,"target":395},{"source":473,"target":471},{"source":389,"target":20},{"source":389,"target":385},{"source":389,"target":251},{"source":389,"target":474},{"source":389,"target":475},{"source":389,"target":476},{"source":389,"target":477},{"source":475,"target":385},{"source":476,"target":251},{"source":477,"target":474},{"source":390,"target":20},{"source":390,"target":478},{"source":390,"target":479},{"source":390,"target":480},{"source":479,"target":12},{"source":479,"target":481},{"source":479,"target":390},{"source":481,"target":12},{"source":480,"target":478},{"source":391,"target":20},{"source":391,"target":88},{"source":391,"target":390},{"source":391,"target":482},{"source":391,"target":483},{"source":391,"target":484},{"source":391,"target":485},{"source":391,"target":486},{"source":391,"target":487},{"source":483,"target":6},{"source":483,"target":488},{"source":483,"target":391},{"source":488,"target":6},{"source":484,"target":28},{"source":484,"target":489},{"source":484,"target":391},{"source":489,"target":28},{"source":485,"target":88},{"source":486,"target":390},{"source":487,"target":482},{"source":392,"target":20},{"source":392,"target":391},{"source":392,"target":490},{"source":392,"target":491},{"source":392,"target":492},{"source":392,"target":493},{"source":392,"target":494},{"source":392,"target":495},{"source":392,"target":496},{"source":392,"target":497},{"source":392,"target":498},{"source":491,"target":6},{"source":491,"target":499},{"source":491,"target":392},{"source":499,"target":6},{"source":492,"target":6},{"source":492,"target":500},{"source":492,"target":392},{"source":500,"target":6},{"source":493,"target":392},{"source":493,"target":501},{"source":493,"target":392},{"source":493,"target":496},{"source":501,"target":392},{"source":494,"target":394},{"source":494,"target":502},{"source":494,"target":392},{"source":494,"target":503},{"source":502,"target":394},{"source":495,"target":6},{"source":495,"target":504},{"source":495,"target":392},{"source":504,"target":6},{"source":496,"target":392},{"source":496,"target":505},{"source":496,"target":392},{"source":496,"target":493},{"source":505,"target":392},{"source":497,"target":391},{"source":498,"target":490},{"source":393,"target":20},{"source":393,"target":391},{"source":393,"target":284},{"source":393,"target":506},{"source":393,"target":507},{"source":393,"target":508},{"source":393,"target":509},{"source":393,"target":510},{"source":507,"target":4},{"source":507,"target":511},{"source":507,"target":393},{"source":511,"target":4},{"source":508,"target":391},{"source":509,"target":284},{"source":510,"target":506},{"source":394,"target":20},{"source":394,"target":391},{"source":394,"target":512},{"source":394,"target":513},{"source":394,"target":514},{"source":394,"target":515},{"source":394,"target":516},{"source":394,"target":517},{"source":394,"target":518},{"source":394,"target":519},{"source":394,"target":503},{"source":394,"target":520},{"source":394,"target":521},{"source":394,"target":522},{"source":513,"target":6},{"source":513,"target":523},{"source":513,"target":394},{"source":523,"target":6},{"source":514,"target":386},{"source":514,"target":524},{"source":514,"target":394},{"source":524,"target":386},{"source":515,"target":394},{"source":515,"target":525},{"source":515,"target":394},{"source":515,"target":517},{"source":525,"target":394},{"source":516,"target":7},{"source":516,"target":526},{"source":516,"target":394},{"source":526,"target":7},{"source":517,"target":394},{"source":517,"target":527},{"source":517,"target":394},{"source":517,"target":515},{"source":527,"target":394},{"source":518,"target":386},{"source":518,"target":528},{"source":518,"target":394},{"source":528,"target":386},{"source":519,"target":4},{"source":519,"target":529},{"source":519,"target":394},{"source":529,"target":4},{"source":503,"target":392},{"source":503,"target":530},{"source":503,"target":394},{"source":503,"target":494},{"source":530,"target":392},{"source":520,"target":6},{"source":520,"target":531},{"source":520,"target":394},{"source":531,"target":6},{"source":521,"target":391},{"source":522,"target":512},{"source":395,"target":20},{"source":395,"target":387},{"source":395,"target":394},{"source":395,"target":532},{"source":395,"target":533},{"source":395,"target":534},{"source":395,"target":535},{"source":395,"target":536},{"source":395,"target":537},{"source":395,"target":538},{"source":533,"target":389},{"source":533,"target":539},{"source":533,"target":395},{"source":539,"target":389},{"source":534,"target":30},{"source":534,"target":540},{"source":534,"target":395},{"source":540,"target":30},{"source":535,"target":389},{"source":535,"target":541},{"source":535,"target":395},{"source":541,"target":389},{"source":536,"target":387},{"source":537,"target":394},{"source":538,"target":532},{"source":396,"target":20},{"source":396,"target":88},{"source":396,"target":542},{"source":396,"target":543},{"source":396,"target":544},{"source":396,"target":545},{"source":396,"target":546},{"source":543,"target":6},{"source":543,"target":547},{"source":543,"target":396},{"source":547,"target":6},{"source":544,"target":30},{"source":544,"target":548},{"source":544,"target":396},{"source":548,"target":30},{"source":545,"target":88},{"source":546,"target":542},{"source":251,"target":20},{"source":251,"target":549},{"source":251,"target":550},{"source":251,"target":551},{"source":550,"target":30},{"source":550,"target":552},{"source":550,"target":251},{"source":552,"target":30},{"source":551,"target":549},{"source":284,"target":20},{"source":284,"target":391},{"source":284,"target":251},{"source":284,"target":553},{"source":284,"target":554},{"source":284,"target":555},{"source":284,"target":556},{"source":284,"target":557},{"source":554,"target":132},{"source":554,"target":558},{"source":554,"target":284},{"source":558,"target":132},{"source":555,"target":391},{"source":556,"target":251},{"source":557,"target":553},{"source":397,"target":20},{"source":397,"target":559},{"source":397,"target":560},{"source":397,"target":561},{"source":397,"target":562},{"source":397,"target":563},{"source":560,"target":9},{"source":560,"target":564},{"source":560,"target":397},{"source":564,"target":9},{"source":561,"target":9},{"source":561,"target":565},{"source":561,"target":397},{"source":565,"target":9},{"source":562,"target":13},{"source":562,"target":566},{"source":562,"target":397},{"source":566,"target":13},{"source":563,"target":559},{"source":398,"target":20},{"source":398,"target":567},{"source":398,"target":568},{"source":398,"target":569},{"source":398,"target":570},{"source":398,"target":571},{"source":567,"target":6},{"source":567,"target":572},{"source":567,"target":398},{"source":572,"target":6},{"source":568,"target":6},{"source":568,"target":573},{"source":568,"target":398},{"source":573,"target":6},{"source":569,"target":28},{"source":569,"target":574},{"source":569,"target":398},{"source":574,"target":28},{"source":570,"target":88},{"source":570,"target":575},{"source":570,"target":398},{"source":575,"target":88},{"source":571,"target":4},{"source":571,"target":576},{"source":571,"target":398},{"source":576,"target":4},{"source":16,"target":32},{"source":16,"target":37},{"source":16,"target":53},{"source":16,"target":66},{"source":16,"target":70},{"source":16,"target":73},{"source":16,"target":76},{"source":16,"target":81},{"source":16,"target":90},{"source":16,"target":97},{"source":16,"target":111},{"source":16,"target":153},{"source":16,"target":160},{"source":16,"target":165},{"source":16,"target":172},{"source":16,"target":180},{"source":16,"target":189},{"source":16,"target":194},{"source":16,"target":199},{"source":16,"target":202},{"source":16,"target":209},{"source":16,"target":216},{"source":16,"target":219},{"source":16,"target":228},{"source":16,"target":233},{"source":16,"target":252},{"source":16,"target":238},{"source":16,"target":242},{"source":16,"target":258},{"source":16,"target":265},{"source":16,"target":274},{"source":16,"target":279},{"source":16,"target":285},{"source":16,"target":289},{"source":16,"target":294},{"source":16,"target":301},{"source":16,"target":309},{"source":16,"target":314},{"source":16,"target":319},{"source":16,"target":324},{"source":16,"target":329},{"source":16,"target":336},{"source":16,"target":343},{"source":16,"target":348},{"source":16,"target":353},{"source":16,"target":362},{"source":16,"target":370},{"source":16,"target":375},{"source":16,"target":399},{"source":16,"target":408},{"source":16,"target":411},{"source":16,"target":420},{"source":16,"target":428},{"source":16,"target":431},{"source":16,"target":441},{"source":16,"target":444},{"source":16,"target":458},{"source":16,"target":466},{"source":16,"target":471},{"source":16,"target":474},{"source":16,"target":478},{"source":16,"target":482},{"source":16,"target":490},{"source":16,"target":506},{"source":16,"target":512},{"source":16,"target":532},{"source":16,"target":542},{"source":16,"target":549},{"source":16,"target":553},{"source":16,"target":559},{"source":16,"target":0},{"source":32,"target":16},{"source":37,"target":16},{"source":53,"target":16},{"source":66,"target":16},{"source":70,"target":16},{"source":73,"target":16},{"source":76,"target":16},{"source":81,"target":16},{"source":90,"target":16},{"source":97,"target":16},{"source":111,"target":16},{"source":153,"target":16},{"source":160,"target":16},{"source":165,"target":16},{"source":172,"target":16},{"source":180,"target":16},{"source":189,"target":16},{"source":194,"target":16},{"source":199,"target":16},{"source":202,"target":16},{"source":209,"target":16},{"source":216,"target":16},{"source":219,"target":16},{"source":228,"target":16},{"source":233,"target":16},{"source":252,"target":16},{"source":238,"target":16},{"source":242,"target":16},{"source":258,"target":16},{"source":265,"target":16},{"source":274,"target":16},{"source":279,"target":16},{"source":285,"target":16},{"source":289,"target":16},{"source":294,"target":16},{"source":301,"target":16},{"source":309,"target":16},{"source":314,"target":16},{"source":319,"target":16},{"source":324,"target":16},{"source":329,"target":16},{"source":336,"target":16},{"source":343,"target":16},{"source":348,"target":16},{"source":353,"target":16},{"source":362,"target":16},{"source":370,"target":16},{"source":375,"target":16},{"source":399,"target":16},{"source":408,"target":16},{"source":411,"target":16},{"source":420,"target":16},{"source":428,"target":16},{"source":431,"target":16},{"source":441,"target":16},{"source":444,"target":16},{"source":458,"target":16},{"source":466,"target":16},{"source":471,"target":16},{"source":474,"target":16},{"source":478,"target":16},{"source":482,"target":16},{"source":490,"target":16},{"source":506,"target":16},{"source":512,"target":16},{"source":532,"target":16},{"source":542,"target":16},{"source":549,"target":16},{"source":553,"target":16},{"source":559,"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="hlcorestructure" nsURI="http:///symmetricnet.hlcorestructure.ecore" nsPrefix="hlcorestructure"> <eClassifiers xsi:type="ecore:EClass" name="PetriNetDoc"> <eAnnotations source="http://www.pnml.org/models/HLAPI"/> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="tag" value="pnml"/> <details key="kind" value="son"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="nets" ordered="false" lowerBound="1" upperBound="-1" eType="#//PetriNet" containment="true" eOpposite="#//PetriNet/containerPetriNetDoc"> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="kind" value="follow"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="xmlns" ordered="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" changeable="false" defaultValueLiteral="http://www.pnml.org/version-2009/grammar/pnml"> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="tag" value="xmlns"/> <details key="kind" value="attribute"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="PetriNet"> <eAnnotations source="http://www.pnml.org/models/HLAPI"/> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="kind" value="son"/> <details key="tag" value="net"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="id" ordered="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" defaultValueLiteral="" iD="true"> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="tag" value="id"/> <details key="kind" value="id"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="type" ordered="false" lowerBound="1" eType="#//PNType" defaultValueLiteral="http://www.pnml.org/version-2009/grammar/symmetricnet"> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="tag" value="type"/> <details key="kind" value="attribute"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="pages" ordered="false" lowerBound="1" upperBound="-1" eType="#//Page" containment="true" eOpposite="#//Page/containerPetriNet"> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="kind" value="follow"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="name" ordered="false" eType="#//Name" containment="true" eOpposite="#//Name/containerNamePetriNet"> <eAnnotations source="redefines"/> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="kind" value="follow"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="toolspecifics" ordered="false" upperBound="-1" eType="#//ToolInfo" containment="true" eOpposite="#//ToolInfo/containerPetriNet"> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="kind" value="follow"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="containerPetriNetDoc" ordered="false" lowerBound="1" eType="#//PetriNetDoc" eOpposite="#//PetriNetDoc/nets"/> <eStructuralFeatures xsi:type="ecore:EReference" name="declaration" upperBound="-1" eType="#//Declaration" containment="true" eOpposite="#//Declaration/containerDeclarationPetriNet"> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="kind" value="follow"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="PNType"> <eAnnotations source="http://www.pnml.org/models/HLAPI"/> <eLiterals name="SYMNET" value="2" literal="http://www.pnml.org/version-2009/grammar/symmetricnet"/> <eLiterals name="COREMODEL" literal="http://www.pnml.org/version-2009/grammar/pnmlcoremodel"/> <eLiterals name="PTNET" value="1" literal="http://www.pnml.org/version-2009/grammar/ptnet"/> <eLiterals name="HLPN" value="3" literal="http://www.pnml.org/version-2009/grammar/highlevelnet"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Page" eSuperTypes="#//PnObject"> <eAnnotations source="http://www.pnml.org/models/HLAPI"/> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="kind" value="son"/> <details key="tag" value="page"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="objects" ordered="false" upperBound="-1" eType="#//PnObject" containment="true" eOpposite="#//PnObject/containerPage"> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="kind" value="follow"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="containerPetriNet" ordered="false" eType="#//PetriNet" eOpposite="#//PetriNet/pages"/> <eStructuralFeatures xsi:type="ecore:EReference" name="nodegraphics" eType="#//NodeGraphics" containment="true" eOpposite="#//NodeGraphics/containerPage"> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="kind" value="follow"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="declaration" upperBound="-1" eType="#//Declaration" containment="true" eOpposite="#//Declaration/containerDeclarationPage"> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="kind" value="follow"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="PnObject" abstract="true"> <eAnnotations source="http://www.pnml.org/models/HLAPI"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="id" ordered="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" iD="true"> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="tag" value="id"/> <details key="kind" value="id"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="name" ordered="false" eType="#//Name" containment="true" eOpposite="#//Name/containerNamePnObject"> <eAnnotations source="redefines"/> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="kind" value="follow"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="toolspecifics" ordered="false" upperBound="-1" eType="#//ToolInfo" containment="true" eOpposite="#//ToolInfo/containerPnObject"> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="kind" value="follow"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="containerPage" ordered="false" unique="false" eType="#//Page" eOpposite="#//Page/objects"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Name" eSuperTypes="#//Annotation"> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="tag" value="name"/> <details key="kind" value="son"/> </eAnnotations> <eAnnotations source="http://www.pnml.org/models/HLAPI"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="text" ordered="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="tag" value="text"/> <details key="kind" value="son"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="containerNamePetriNet" eType="#//PetriNet" eOpposite="#//PetriNet/name"/> <eStructuralFeatures xsi:type="ecore:EReference" name="containerNamePnObject" eType="#//PnObject" eOpposite="#//PnObject/name"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ToolInfo"> <eAnnotations source="http://www.pnml.org/models/HLAPI"/> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="tag" value="toolspecific"/> <details key="kind" value="son"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="tool" ordered="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="tag" value="tool"/> <details key="kind" value="attribute"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="version" ordered="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="tag" value="version"/> <details key="kind" value="attribute"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="formattedXMLBuffer" ordered="false" eType="#//LongString"> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="kind" value="son"/> <details key="tag" value=""/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="toolInfoGrammarURI" ordered="false" eType="#//URI"/> <eStructuralFeatures xsi:type="ecore:EReference" name="containerPetriNet" ordered="false" eType="#//PetriNet" eOpposite="#//PetriNet/toolspecifics"/> <eStructuralFeatures xsi:type="ecore:EReference" name="containerPnObject" ordered="false" eType="#//PnObject" eOpposite="#//PnObject/toolspecifics"/> <eStructuralFeatures xsi:type="ecore:EReference" name="containerLabel" ordered="false" eType="#//Label" eOpposite="#//Label/toolspecifics"/> <eStructuralFeatures xsi:type="ecore:EReference" name="toolInfoModel" eType="#//AnyObject" containment="true" eOpposite="#//AnyObject/containerToolInfo"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Label" abstract="true"> <eAnnotations source="http://www.pnml.org/models/HLAPI"/> <eStructuralFeatures xsi:type="ecore:EReference" name="toolspecifics" ordered="false" upperBound="-1" eType="#//ToolInfo" containment="true" eOpposite="#//ToolInfo/containerLabel"> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="kind" value="follow"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="NodeGraphics" eSuperTypes="#//Graphics"> <eAnnotations source="http://www.pnml.org/models/HLAPI"/> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="tag" value="graphics"/> <details key="kind" value="son"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="position" ordered="false" eType="#//Position" containment="true" eOpposite="#//Position/containerPNodeGraphics"> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="kind" value="follow"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="dimension" ordered="false" eType="#//Dimension" containment="true" eOpposite="#//Dimension/containerDNodeGraphics"> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="kind" value="follow"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="fill" ordered="false" eType="#//Fill" containment="true" eOpposite="#//Fill/containerNodeGraphics"> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="kind" value="follow"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="line" ordered="false" eType="#//Line" containment="true" eOpposite="#//Line/containerNodeGraphics"> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="kind" value="follow"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="containerNode" eType="#//Node" eOpposite="#//Node/nodegraphics"/> <eStructuralFeatures xsi:type="ecore:EReference" name="containerPage" eType="#//Page" eOpposite="#//Page/nodegraphics"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Graphics" abstract="true"> <eAnnotations source="http://www.pnml.org/models/HLAPI"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Coordinate" abstract="true"> <eAnnotations source="http://www.pnml.org/models/HLAPI"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="x" ordered="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="tag" value="x"/> <details key="kind" value="attribute"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="y" ordered="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="tag" value="y"/> <details key="kind" value="attribute"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Position" eSuperTypes="#//Coordinate"> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="tag" value="position"/> <details key="kind" value="son"/> </eAnnotations> <eAnnotations source="http://www.pnml.org/models/HLAPI"/> <eStructuralFeatures xsi:type="ecore:EReference" name="containerArcGraphics" ordered="false" eType="#//ArcGraphics" eOpposite="#//ArcGraphics/positions"/> <eStructuralFeatures xsi:type="ecore:EReference" name="containerPNodeGraphics" eType="#//NodeGraphics" eOpposite="#//NodeGraphics/position"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Offset" eSuperTypes="#//Coordinate"> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="tag" value="offset"/> <details key="kind" value="son"/> </eAnnotations> <eAnnotations source="http://www.pnml.org/models/HLAPI"/> <eStructuralFeatures xsi:type="ecore:EReference" name="containerAnnotationGraphics" ordered="false" eType="#//AnnotationGraphics" eOpposite="#//AnnotationGraphics/offset"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Dimension" eSuperTypes="#//Coordinate"> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="tag" value="dimension"/> <details key="kind" value="son"/> </eAnnotations> <eAnnotations source="http://www.pnml.org/models/HLAPI"/> <eStructuralFeatures xsi:type="ecore:EReference" name="containerDNodeGraphics" ordered="false" eType="#//NodeGraphics" eOpposite="#//NodeGraphics/dimension"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="AnnotationGraphics" eSuperTypes="#//Graphics"> <eAnnotations source="http://www.pnml.org/models/HLAPI"/> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="tag" value="graphics"/> <details key="kind" value="son"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="offset" ordered="false" eType="#//Offset" containment="true" eOpposite="#//Offset/containerAnnotationGraphics"> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="kind" value="follow"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="fill" ordered="false" eType="#//Fill" containment="true" eOpposite="#//Fill/containerAnnotationGraphics"> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="kind" value="follow"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="line" ordered="false" eType="#//Line" containment="true" eOpposite="#//Line/containerAnnotationGraphics"> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="kind" value="follow"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="font" ordered="false" eType="#//Font" containment="true" eOpposite="#//Font/containerAnnotationGraphics"> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="kind" value="follow"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="containerAnnotation" eType="#//Annotation" eOpposite="#//Annotation/annotationgraphics"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Fill"> <eAnnotations source="http://www.pnml.org/models/HLAPI"/> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="tag" value="fill"/> <details key="kind" value="son"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="color" ordered="false" eType="#//CSS2Color" defaultValueLiteral="black"> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="tag" value="color"/> <details key="kind" value="attribute"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="gradientcolor" ordered="false" eType="#//CSS2Color" defaultValueLiteral="black"> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="tag" value="gradient-color"/> <details key="kind" value="attribute"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="gradientrotation" ordered="false" eType="#//Gradient"> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="tag" value="gradient-rotation"/> <details key="kind" value="attribute"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="image" ordered="false" eType="#//URI"> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="tag" value="image"/> <details key="kind" value="attribute"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="containerNodeGraphics" ordered="false" eType="#//NodeGraphics" eOpposite="#//NodeGraphics/fill"/> <eStructuralFeatures xsi:type="ecore:EReference" name="containerAnnotationGraphics" ordered="false" eType="#//AnnotationGraphics" eOpposite="#//AnnotationGraphics/fill"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="CSS2Color"> <eAnnotations source="http://www.pnml.org/models/HLAPI"/> <eLiterals name="AQUA" literal="aqua"/> <eLiterals name="BLACK" value="1" literal="black"/> <eLiterals name="BLUE" value="2" literal="blue"/> <eLiterals name="FUCHSIA" value="3" literal="fuchsia"/> <eLiterals name="GRAY" value="4" literal="gray"/> <eLiterals name="GREEN" value="5" literal="green"/> <eLiterals name="LIME" value="6" literal="lime"/> <eLiterals name="MAROON" value="7" literal="maroon"/> <eLiterals name="NAVY" value="8" literal="navy"/> <eLiterals name="OLIVE" value="9" literal="olive"/> <eLiterals name="ORANGE" value="10" literal="orange"/> <eLiterals name="PURPLE" value="11" literal="purple"/> <eLiterals name="RED" value="12" literal="red"/> <eLiterals name="SILVER" value="13" literal="silver"/> <eLiterals name="TEAL" value="14" literal="teal"/> <eLiterals name="WHITE" value="15" literal="white"/> <eLiterals name="YELLOW" value="16" literal="yellow"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="Gradient"> <eAnnotations source="http://www.pnml.org/models/HLAPI"/> <eLiterals name="HORIZONTAL" literal="horizontal"/> <eLiterals name="VERTICAL" value="1" literal="vertical"/> <eLiterals name="DIAGONAL" value="2" literal="diagonal"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Line"> <eAnnotations source="http://www.pnml.org/models/HLAPI"/> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="tag" value="line"/> <details key="kind" value="son"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="color" ordered="false" eType="#//CSS2Color" defaultValueLiteral="black"> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="tag" value="color"/> <details key="kind" value="attribute"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="shape" ordered="false" eType="#//LineShape" defaultValueLiteral="line"> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="tag" value="shape"/> <details key="kind" value="attribute"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="width" ordered="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="tag" value="width"/> <details key="kind" value="attribute"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="containerNodeGraphics" ordered="false" eType="#//NodeGraphics" eOpposite="#//NodeGraphics/line"/> <eStructuralFeatures xsi:type="ecore:EReference" name="containerArcGraphics" ordered="false" eType="#//ArcGraphics" eOpposite="#//ArcGraphics/line"/> <eStructuralFeatures xsi:type="ecore:EReference" name="containerAnnotationGraphics" ordered="false" eType="#//AnnotationGraphics" eOpposite="#//AnnotationGraphics/line"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="style" eType="#//LineStyle"> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="tag" value="style"/> <details key="kind" value="attribute"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="LineShape"> <eAnnotations source="http://www.pnml.org/models/HLAPI"/> <eLiterals name="LINE" literal="line"/> <eLiterals name="CURVE" value="1" literal="curve"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ArcGraphics" eSuperTypes="#//Graphics"> <eAnnotations source="http://www.pnml.org/models/HLAPI"/> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="tag" value="graphics"/> <details key="kind" value="son"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="positions" upperBound="-1" eType="#//Position" containment="true" eOpposite="#//Position/containerArcGraphics"> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="kind" value="follow"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="line" ordered="false" eType="#//Line" containment="true" eOpposite="#//Line/containerArcGraphics"> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="kind" value="follow"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="containerArc" eType="#//Arc" eOpposite="#//Arc/arcgraphics"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Arc" eSuperTypes="#//PnObject"> <eAnnotations source="http://www.pnml.org/models/HLAPI"> <eAnnotations source="http://www.pnml.org/models/OCL"> <details key="samePageSourceTarget" value="self.source.containerPage = self.target.containerPage"/> </eAnnotations> </eAnnotations> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="tag" value="arc"/> <details key="kind" value="son"/> </eAnnotations> <eAnnotations source="http://www.eclipse.org/emf/2002/Ecore"> <details key="constraints" value="samePageSourceTarget differentSourceTarget"/> </eAnnotations> <eAnnotations source="http://www.pnml.org/models/OCL"> <details key="samePageSourceTarget" value="self.source.containerPage = self.target.containerPage"/> <details key="differentSourceTarget" value="(self.source.oclIsKindOf(PlaceNode) and self.target.oclIsKindOf(TransitionNode)) or (self.source.oclIsKindOf(TransitionNode) and self.target.oclIsKindOf(PlaceNode))"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="source" ordered="false" lowerBound="1" eType="#//Node" eOpposite="#//Node/OutArcs"> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="kind" value="idref"/> <details key="tag" value="source"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="target" ordered="false" lowerBound="1" eType="#//Node" eOpposite="#//Node/InArcs"> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="kind" value="idref"/> <details key="tag" value="target"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="arcgraphics" ordered="false" eType="#//ArcGraphics" containment="true" eOpposite="#//ArcGraphics/containerArc"> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="kind" value="follow"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="hlinscription" eType="#//HLAnnotation" containment="true" eOpposite="#//HLAnnotation/containerArc"> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="kind" value="follow"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Node" abstract="true" eSuperTypes="#//PnObject"> <eAnnotations source="http://www.pnml.org/models/HLAPI"/> <eStructuralFeatures xsi:type="ecore:EReference" name="InArcs" ordered="false" upperBound="-1" eType="#//Arc" changeable="false" eOpposite="#//Arc/target"/> <eStructuralFeatures xsi:type="ecore:EReference" name="OutArcs" ordered="false" upperBound="-1" eType="#//Arc" changeable="false" eOpposite="#//Arc/source"/> <eStructuralFeatures xsi:type="ecore:EReference" name="nodegraphics" eType="#//NodeGraphics" containment="true" eOpposite="#//NodeGraphics/containerNode"> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="kind" value="follow"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Font"> <eAnnotations source="http://www.pnml.org/models/HLAPI"/> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="tag" value="font"/> <details key="kind" value="son"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="align" ordered="false" eType="#//FontAlign" defaultValueLiteral="left"> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="tag" value="align"/> <details key="kind" value="attribute"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="decoration" ordered="false" eType="#//FontDecoration" defaultValueLiteral="underline"> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="tag" value="decoration"/> <details key="kind" value="attribute"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="family" ordered="false" eType="#//CSS2FontFamily" defaultValueLiteral="verdana"> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="tag" value="family"/> <details key="kind" value="attribute"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="rotation" ordered="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBigDecimal"> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="tag" value="rotation"/> <details key="kind" value="attribute"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="size" ordered="false" eType="#//CSS2FontSize" defaultValueLiteral="small"> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="tag" value="size"/> <details key="kind" value="attribute"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="style" ordered="false" eType="#//CSS2FontStyle" defaultValueLiteral="normal"> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="tag" value="style"/> <details key="kind" value="attribute"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="weight" ordered="false" eType="#//CSS2FontWeight"> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="tag" value="weight"/> <details key="kind" value="attribute"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="containerAnnotationGraphics" ordered="false" eType="#//AnnotationGraphics" eOpposite="#//AnnotationGraphics/font"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="FontAlign"> <eAnnotations source="http://www.pnml.org/models/HLAPI"/> <eLiterals name="LEFT" literal="left"/> <eLiterals name="CENTER" value="1" literal="center"/> <eLiterals name="RIGHT" value="2" literal="right"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="FontDecoration"> <eAnnotations source="http://www.pnml.org/models/HLAPI"/> <eLiterals name="UNDERLINE" literal="underline"/> <eLiterals name="OVERLINE" value="1" literal="overline"/> <eLiterals name="LINETHROUGH" value="2" literal="linethrough"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="CSS2FontFamily"> <eAnnotations source="http://www.pnml.org/models/HLAPI"/> <eLiterals name="VERDANA" literal="verdana"/> <eLiterals name="ARIAL" value="1" literal="arial"/> <eLiterals name="TIMES" value="2" literal="times"/> <eLiterals name="GEORGIA" value="3" literal="georgia"/> <eLiterals name="TREBUCHET" value="4" literal="trebuchet"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="CSS2FontSize"> <eAnnotations source="http://www.pnml.org/models/HLAPI"/> <eLiterals name="XXSMALL" literal="xxsmall"/> <eLiterals name="XSMALL" value="1" literal="xsmall"/> <eLiterals name="SMALL" value="2" literal="small"/> <eLiterals name="MEDIUM" value="3" literal="medium"/> <eLiterals name="LARGE" value="4" literal="large"/> <eLiterals name="XLARGE" value="5" literal="xlarge"/> <eLiterals name="XXLARGE" value="6" literal="xxlarge"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="CSS2FontStyle"> <eAnnotations source="http://www.pnml.org/models/HLAPI"/> <eLiterals name="NORMAL" literal="normal"/> <eLiterals name="ITALIC" value="1" literal="italic"/> <eLiterals name="OBLIQUE" value="2" literal="oblique"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="CSS2FontWeight"> <eAnnotations source="http://www.pnml.org/models/HLAPI"/> <eLiterals name="NORMAL" literal="normal"/> <eLiterals name="BOLD" value="1" literal="bold"/> <eLiterals name="BOLDER" value="2" literal="bolder"/> <eLiterals name="LIGHTER" value="3" literal="lighter"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="PlaceNode" abstract="true" eSuperTypes="#//Node"> <eAnnotations source="http://www.pnml.org/models/HLAPI"/> <eStructuralFeatures xsi:type="ecore:EReference" name="referencingPlaces" upperBound="-1" eType="#//RefPlace" changeable="false" eOpposite="#//RefPlace/ref"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="TransitionNode" abstract="true" eSuperTypes="#//Node"> <eAnnotations source="http://www.pnml.org/models/HLAPI"/> <eStructuralFeatures xsi:type="ecore:EReference" name="referencingTransitions" upperBound="-1" eType="#//RefTransition" changeable="false" eOpposite="#//RefTransition/ref"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Place" eSuperTypes="#//PlaceNode"> <eAnnotations source="http://www.pnml.org/models/HLAPI"/> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="tag" value="place"/> <details key="kind" value="son"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="type" eType="#//Type" containment="true" eOpposite="#//Type/containerPlace"> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="kind" value="follow"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="hlinitialMarking" eType="#//HLMarking" containment="true" eOpposite="#//HLMarking/containerPlace"> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="kind" value="follow"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="RefTransition" eSuperTypes="#//TransitionNode"> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="tag" value="referenceTransition"/> <details key="kind" value="son"/> </eAnnotations> <eAnnotations source="http://www.pnml.org/models/HLAPI"/> <eStructuralFeatures xsi:type="ecore:EReference" name="ref" ordered="false" lowerBound="1" eType="#//TransitionNode" eOpposite="#//TransitionNode/referencingTransitions"> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="kind" value="idref"/> <details key="tag" value="ref"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Transition" eSuperTypes="#//TransitionNode"> <eAnnotations source="http://www.pnml.org/models/HLAPI"/> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="tag" value="transition"/> <details key="kind" value="son"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="condition" eType="#//Condition" containment="true" eOpposite="#//Condition/containerTransition"> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="kind" value="follow"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="RefPlace" eSuperTypes="#//PlaceNode"> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="tag" value="referencePlace"/> <details key="kind" value="son"/> </eAnnotations> <eAnnotations source="http://www.pnml.org/models/HLAPI"/> <eStructuralFeatures xsi:type="ecore:EReference" name="ref" ordered="false" lowerBound="1" eType="#//PlaceNode" eOpposite="#//PlaceNode/referencingPlaces"> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="kind" value="idref"/> <details key="tag" value="ref"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Attribute" abstract="true" eSuperTypes="#//Label"/> <eClassifiers xsi:type="ecore:EEnum" name="LineStyle"> <eAnnotations source="http://www.pnml.org/models/HLAPI"/> <eLiterals name="SOLID" literal="solid"/> <eLiterals name="DASH" value="1" literal="dash"/> <eLiterals name="DOT" value="2" literal="dot"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Annotation" abstract="true" eSuperTypes="#//Label"> <eAnnotations source="http://www.pnml.org/models/HLAPI"/> <eStructuralFeatures xsi:type="ecore:EReference" name="annotationgraphics" ordered="false" eType="#//AnnotationGraphics" containment="true" eOpposite="#//AnnotationGraphics/containerAnnotation"> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="kind" value="follow"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EDataType" name="URI" instanceClassName="java.net.URI"/> <eClassifiers xsi:type="ecore:EDataType" name="LongString" instanceClassName="java.lang.StringBuffer"/> <eClassifiers xsi:type="ecore:EClass" name="AnyObject" abstract="true"> <eAnnotations source="http://www.pnml.org/models/HLAPI"/> <eStructuralFeatures xsi:type="ecore:EReference" name="containerToolInfo" eType="#//ToolInfo" changeable="false" eOpposite="#//ToolInfo/toolInfoModel"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="HLCoreAnnotation" abstract="true" eSuperTypes="#//Annotation"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="text" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="tag" value="text"/> <details key="kind" value="son"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Type" eSuperTypes="#//HLCoreAnnotation"> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="tag" value="type"/> <details key="kind" value="son"/> </eAnnotations> <eAnnotations source="http://www.pnml.org/models/HLAPI"/> <eStructuralFeatures xsi:type="ecore:EReference" name="structure" eType="ecore:EClass terms.ecore#//Sort" containment="true" eOpposite="terms.ecore#//Sort/containerType"> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="tag" value="structure"/> <details key="kind" value="follow"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="containerPlace" eType="#//Place" eOpposite="#//Place/type"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="HLMarking" eSuperTypes="#//HLCoreAnnotation"> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="tag" value="hlinitialMarking"/> <details key="kind" value="son"/> </eAnnotations> <eAnnotations source="http://www.pnml.org/models/HLAPI"/> <eStructuralFeatures xsi:type="ecore:EReference" name="structure" eType="ecore:EClass terms.ecore#//Term" containment="true" eOpposite="terms.ecore#//Term/containerHLMarking"> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="tag" value="structure"/> <details key="kind" value="follow"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="containerPlace" eType="#//Place" eOpposite="#//Place/hlinitialMarking"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Condition" eSuperTypes="#//HLCoreAnnotation"> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="tag" value="condition"/> <details key="kind" value="son"/> </eAnnotations> <eAnnotations source="http://www.pnml.org/models/HLAPI"/> <eStructuralFeatures xsi:type="ecore:EReference" name="structure" eType="ecore:EClass terms.ecore#//Term" containment="true" eOpposite="terms.ecore#//Term/containerCondition"> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="tag" value="structure"/> <details key="kind" value="follow"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="containerTransition" eType="#//Transition" eOpposite="#//Transition/condition"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="HLAnnotation" eSuperTypes="#//HLCoreAnnotation"> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="tag" value="hlinscription"/> <details key="kind" value="son"/> </eAnnotations> <eAnnotations source="http://www.pnml.org/models/HLAPI"/> <eStructuralFeatures xsi:type="ecore:EReference" name="structure" eType="ecore:EClass terms.ecore#//Term" containment="true" eOpposite="terms.ecore#//Term/containerHLAnnotation"> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="tag" value="structure"/> <details key="kind" value="follow"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="containerArc" eType="#//Arc" eOpposite="#//Arc/hlinscription"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Declaration" eSuperTypes="#//HLCoreAnnotation"> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="tag" value="declaration"/> <details key="kind" value="son"/> </eAnnotations> <eAnnotations source="http://www.pnml.org/models/HLAPI"/> <eStructuralFeatures xsi:type="ecore:EReference" name="structure" eType="ecore:EClass terms.ecore#//Declarations" containment="true" eOpposite="terms.ecore#//Declarations/containerDeclaration"> <eAnnotations source="http://www.pnml.org/models/ToPNML"> <details key="tag" value="structure"/> <details key="kind" value="follow"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="containerDeclarationPetriNet" eType="#//PetriNet" eOpposite="#//PetriNet/declaration"/> <eStructuralFeatures xsi:type="ecore:EReference" name="containerDeclarationPage" eType="#//Page" eOpposite="#//Page/declaration"/> </eClassifiers> </ecore:EPackage>
github:ecore:/data/lip6/pnmlframework/pnmlFw-Low_Level_API_Generation/model/symmetric-net/hlcorestructure.ecore
ecore
hlcorestructure PetriNetDoc nets xmlns http://www.pnml.org/version-2009/grammar/pnml PetriNet id type http://www.pnml.org/version-2009/grammar/symmetricnet pages name toolspecifics containerPetriNetDoc declaration PNType SYMNET http://www.pnml.org/version-2009/grammar/symmetricnet COREMODEL http://www.pnml.org/version-2009/grammar/pnmlcoremodel PTNET http://www.pnml.org/version-2009/grammar/ptnet HLPN http://www.pnml.org/version-2009/grammar/highlevelnet Page objects containerPetriNet nodegraphics declaration PnObject id name toolspecifics containerPage Name text containerNamePetriNet containerNamePnObject ToolInfo tool version formattedXMLBuffer toolInfoGrammarURI containerPetriNet containerPnObject containerLabel toolInfoModel Label toolspecifics NodeGraphics position dimension fill line containerNode containerPage Graphics Coordinate x y Position containerArcGraphics containerPNodeGraphics Offset containerAnnotationGraphics Dimension containerDNodeGraphics AnnotationGraphics offset fill line font containerAnnotation Fill color black gradientcolor black gradientrotation image containerNodeGraphics containerAnnotationGraphics CSS2Color AQUA aqua BLACK black BLUE blue FUCHSIA fuchsia GRAY gray GREEN green LIME lime MAROON maroon NAVY navy OLIVE olive ORANGE orange PURPLE purple RED red SILVER silver TEAL teal WHITE white YELLOW yellow Gradient HORIZONTAL horizontal VERTICAL vertical DIAGONAL diagonal Line color black shape line width containerNodeGraphics containerArcGraphics containerAnnotationGraphics style LineShape LINE line CURVE curve ArcGraphics positions line containerArc Arc source target arcgraphics hlinscription Node InArcs OutArcs nodegraphics Font align left decoration underline family verdana rotation size small style normal weight containerAnnotationGraphics FontAlign LEFT left CENTER center RIGHT right FontDecoration UNDERLINE underline OVERLINE overline LINETHROUGH linethrough CSS2FontFamily VERDANA verdana ARIAL arial TIMES times GEORGIA georgia TREBUCHET trebuchet CSS2FontSize XXSMALL xxsmall XSMALL xsmall SMALL small MEDIUM medium LARGE large XLARGE xlarge XXLARGE xxlarge CSS2FontStyle NORMAL normal ITALIC italic OBLIQUE oblique CSS2FontWeight NORMAL normal BOLD bold BOLDER bolder LIGHTER lighter PlaceNode referencingPlaces TransitionNode referencingTransitions Place type hlinitialMarking RefTransition ref Transition condition RefPlace ref Attribute LineStyle SOLID solid DASH dash DOT dot Annotation annotationgraphics URI java.net.URI java.net.URI LongString java.lang.StringBuffer java.lang.StringBuffer AnyObject containerToolInfo HLCoreAnnotation text Type structure containerPlace HLMarking structure containerPlace Condition structure containerTransition HLAnnotation structure containerArc Declaration structure containerDeclarationPetriNet containerDeclarationPage
null
{"directed":true,"nodes":[{"nsPrefix":"hlcorestructure","nsURI":"http:///symmetricnet.hlcorestructure.ecore","name":"hlcorestructure","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PetriNetDoc","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PetriNet","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"PNType","instanceClass":null,"id":3,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Page","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PnObject","instanceClass":null,"abstract":true,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Name","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ToolInfo","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Label","instanceClass":null,"abstract":true,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NodeGraphics","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Graphics","instanceClass":null,"abstract":true,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Coordinate","instanceClass":null,"abstract":true,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Position","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Offset","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Dimension","instanceClass":null,"abstract":false,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AnnotationGraphics","instanceClass":null,"abstract":false,"id":15,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Fill","instanceClass":null,"abstract":false,"id":16,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"CSS2Color","instanceClass":null,"id":17,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"Gradient","instanceClass":null,"id":18,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Line","instanceClass":null,"abstract":false,"id":19,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"LineShape","instanceClass":null,"id":20,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ArcGraphics","instanceClass":null,"abstract":false,"id":21,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Arc","instanceClass":null,"abstract":false,"id":22,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Node","instanceClass":null,"abstract":true,"id":23,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Font","instanceClass":null,"abstract":false,"id":24,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"FontAlign","instanceClass":null,"id":25,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"FontDecoration","instanceClass":null,"id":26,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"CSS2FontFamily","instanceClass":null,"id":27,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"CSS2FontSize","instanceClass":null,"id":28,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"CSS2FontStyle","instanceClass":null,"id":29,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"CSS2FontWeight","instanceClass":null,"id":30,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PlaceNode","instanceClass":null,"abstract":true,"id":31,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TransitionNode","instanceClass":null,"abstract":true,"id":32,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Place","instanceClass":null,"abstract":false,"id":33,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RefTransition","instanceClass":null,"abstract":false,"id":34,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Transition","instanceClass":null,"abstract":false,"id":35,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RefPlace","instanceClass":null,"abstract":false,"id":36,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Attribute","instanceClass":null,"abstract":true,"id":37,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"LineStyle","instanceClass":null,"id":38,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Annotation","instanceClass":null,"abstract":true,"id":39,"interface":false,"eClass":"EClass"},{"instanceTypeName":"java.net.URI","defaultValue":null,"instanceClassName":"java.net.URI","name":"URI","instanceClass":"java.net.URI","id":40,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.lang.StringBuffer","defaultValue":null,"instanceClassName":"java.lang.StringBuffer","name":"LongString","instanceClass":"java.lang.StringBuffer","id":41,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AnyObject","instanceClass":null,"abstract":true,"id":42,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"HLCoreAnnotation","instanceClass":null,"abstract":true,"id":43,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Type","instanceClass":null,"abstract":false,"id":44,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"HLMarking","instanceClass":null,"abstract":false,"id":45,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Condition","instanceClass":null,"abstract":false,"id":46,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"HLAnnotation","instanceClass":null,"abstract":false,"id":47,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Declaration","instanceClass":null,"abstract":false,"id":48,"interface":false,"eClass":"EClass"},{"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":"nets","changeable":true,"resolveProxies":true,"lowerBound":1,"id":49,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":"http://www.pnml.org/version-2009/grammar/pnml","volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"http://www.pnml.org/version-2009/grammar/pnml","unsettable":false,"transient":false,"unique":true,"name":"xmlns","changeable":false,"lowerBound":0,"iD":false,"id":50,"derived":false},{"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":"containerPetriNetDoc","changeable":true,"resolveProxies":true,"lowerBound":1,"id":52,"derived":false},{"id":53,"eClass":"EGenericType"},{"ordered":false,"upperBound":1,"defaultValue":"","volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"","unsettable":false,"transient":false,"unique":true,"name":"id","changeable":true,"lowerBound":1,"iD":true,"id":54,"derived":false},{"ordered":false,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"http://www.pnml.org/version-2009/grammar/symmetricnet","unsettable":false,"transient":false,"unique":true,"name":"type","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":true,"unsettable":false,"transient":false,"unique":true,"name":"pages","changeable":true,"resolveProxies":true,"lowerBound":1,"id":56,"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":"name","changeable":true,"resolveProxies":true,"lowerBound":0,"id":57,"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":"toolspecifics","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":"declaration","changeable":true,"resolveProxies":true,"lowerBound":0,"id":59,"derived":false},{"id":60,"eClass":"EGenericType"},{"id":61,"eClass":"EGenericType"},{"id":62,"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":"containerPetriNet","changeable":true,"resolveProxies":true,"lowerBound":0,"id":63,"derived":false},{"id":64,"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":"containerNamePetriNet","changeable":true,"resolveProxies":true,"lowerBound":0,"id":65,"derived":false},{"id":66,"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":"containerPetriNet","changeable":true,"resolveProxies":true,"lowerBound":0,"id":67,"derived":false},{"id":68,"eClass":"EGenericType"},{"id":69,"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":"containerDeclarationPetriNet","changeable":true,"resolveProxies":true,"lowerBound":0,"id":70,"derived":false},{"name":"SYMNET","id":71,"value":2,"literal":"http://www.pnml.org/version-2009/grammar/symmetricnet","eClass":"EEnumLiteral"},{"name":"COREMODEL","id":72,"value":0,"literal":"http://www.pnml.org/version-2009/grammar/pnmlcoremodel","eClass":"EEnumLiteral"},{"name":"PTNET","id":73,"value":1,"literal":"http://www.pnml.org/version-2009/grammar/ptnet","eClass":"EEnumLiteral"},{"name":"HLPN","id":74,"value":3,"literal":"http://www.pnml.org/version-2009/grammar/highlevelnet","eClass":"EEnumLiteral"},{"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":"objects","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":true,"unsettable":false,"transient":false,"unique":true,"name":"nodegraphics","changeable":true,"resolveProxies":true,"lowerBound":0,"id":76,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"declaration","changeable":true,"resolveProxies":true,"lowerBound":0,"id":77,"derived":false},{"id":78,"eClass":"EGenericType"},{"id":79,"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":"containerPage","changeable":true,"resolveProxies":true,"lowerBound":0,"id":80,"derived":false},{"id":81,"eClass":"EGenericType"},{"id":82,"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":"containerPage","changeable":true,"resolveProxies":true,"lowerBound":0,"id":83,"derived":false},{"id":84,"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":"containerDeclarationPage","changeable":true,"resolveProxies":true,"lowerBound":0,"id":85,"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":true,"id":86,"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":"name","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":"toolspecifics","changeable":true,"resolveProxies":true,"lowerBound":0,"id":88,"derived":false},{"id":89,"eClass":"EGenericType"},{"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":"containerNamePnObject","changeable":true,"resolveProxies":true,"lowerBound":0,"id":91,"derived":false},{"id":92,"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":"containerPnObject","changeable":true,"resolveProxies":true,"lowerBound":0,"id":93,"derived":false},{"id":94,"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":95,"derived":false},{"id":96,"eClass":"EGenericType"},{"id":97,"eClass":"EGenericType"},{"id":98,"eClass":"EGenericType"},{"id":99,"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":"tool","changeable":true,"lowerBound":1,"iD":false,"id":100,"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":"version","changeable":true,"lowerBound":1,"iD":false,"id":101,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"formattedXMLBuffer","changeable":true,"lowerBound":0,"iD":false,"id":102,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"toolInfoGrammarURI","changeable":true,"lowerBound":0,"iD":false,"id":103,"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":"containerLabel","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":true,"unsettable":false,"transient":false,"unique":true,"name":"toolInfoModel","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"},{"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":"toolspecifics","changeable":true,"resolveProxies":true,"lowerBound":0,"id":113,"derived":false},{"id":114,"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":"containerToolInfo","changeable":false,"resolveProxies":true,"lowerBound":0,"id":115,"derived":false},{"id":116,"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":"position","changeable":true,"resolveProxies":true,"lowerBound":0,"id":117,"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":"dimension","changeable":true,"resolveProxies":true,"lowerBound":0,"id":118,"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":"fill","changeable":true,"resolveProxies":true,"lowerBound":0,"id":119,"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":"line","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":"containerNode","changeable":true,"resolveProxies":true,"lowerBound":0,"id":121,"derived":false},{"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":false,"unique":true,"name":"containerPNodeGraphics","changeable":true,"resolveProxies":true,"lowerBound":0,"id":124,"derived":false},{"id":125,"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":"containerDNodeGraphics","changeable":true,"resolveProxies":true,"lowerBound":0,"id":126,"derived":false},{"id":127,"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":"containerNodeGraphics","changeable":true,"resolveProxies":true,"lowerBound":0,"id":128,"derived":false},{"id":129,"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":"containerNodeGraphics","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":"nodegraphics","changeable":true,"resolveProxies":true,"lowerBound":0,"id":132,"derived":false},{"id":133,"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":"x","changeable":true,"lowerBound":1,"iD":false,"id":134,"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":"y","changeable":true,"lowerBound":1,"iD":false,"id":135,"derived":false},{"id":136,"eClass":"EGenericType"},{"id":137,"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":"containerArcGraphics","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":"positions","changeable":true,"resolveProxies":true,"lowerBound":0,"id":141,"derived":false},{"id":142,"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":"containerAnnotationGraphics","changeable":true,"resolveProxies":true,"lowerBound":0,"id":143,"derived":false},{"id":144,"eClass":"EGenericType"},{"id":145,"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":"offset","changeable":true,"resolveProxies":true,"lowerBound":0,"id":146,"derived":false},{"id":147,"eClass":"EGenericType"},{"id":148,"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":"fill","changeable":true,"resolveProxies":true,"lowerBound":0,"id":149,"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":"line","changeable":true,"resolveProxies":true,"lowerBound":0,"id":150,"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":"font","changeable":true,"resolveProxies":true,"lowerBound":0,"id":151,"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":"containerAnnotation","changeable":true,"resolveProxies":true,"lowerBound":0,"id":152,"derived":false},{"id":153,"eClass":"EGenericType"},{"id":154,"eClass":"EGenericType"},{"id":155,"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":"containerAnnotationGraphics","changeable":true,"resolveProxies":true,"lowerBound":0,"id":156,"derived":false},{"id":157,"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":"containerAnnotationGraphics","changeable":true,"resolveProxies":true,"lowerBound":0,"id":158,"derived":false},{"id":159,"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":"containerAnnotationGraphics","changeable":true,"resolveProxies":true,"lowerBound":0,"id":160,"derived":false},{"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":"annotationgraphics","changeable":true,"resolveProxies":true,"lowerBound":0,"id":162,"derived":false},{"ordered":false,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"black","unsettable":false,"transient":false,"unique":true,"name":"color","changeable":true,"lowerBound":0,"iD":false,"id":163,"derived":false},{"ordered":false,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"black","unsettable":false,"transient":false,"unique":true,"name":"gradientcolor","changeable":true,"lowerBound":0,"iD":false,"id":164,"derived":false},{"ordered":false,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"gradientrotation","changeable":true,"lowerBound":0,"iD":false,"id":165,"derived":false},{"ordered":false,"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":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"},{"name":"AQUA","id":173,"value":0,"literal":"aqua","eClass":"EEnumLiteral"},{"name":"BLACK","id":174,"value":1,"literal":"black","eClass":"EEnumLiteral"},{"name":"BLUE","id":175,"value":2,"literal":"blue","eClass":"EEnumLiteral"},{"name":"FUCHSIA","id":176,"value":3,"literal":"fuchsia","eClass":"EEnumLiteral"},{"name":"GRAY","id":177,"value":4,"literal":"gray","eClass":"EEnumLiteral"},{"name":"GREEN","id":178,"value":5,"literal":"green","eClass":"EEnumLiteral"},{"name":"LIME","id":179,"value":6,"literal":"lime","eClass":"EEnumLiteral"},{"name":"MAROON","id":180,"value":7,"literal":"maroon","eClass":"EEnumLiteral"},{"name":"NAVY","id":181,"value":8,"literal":"navy","eClass":"EEnumLiteral"},{"name":"OLIVE","id":182,"value":9,"literal":"olive","eClass":"EEnumLiteral"},{"name":"ORANGE","id":183,"value":10,"literal":"orange","eClass":"EEnumLiteral"},{"name":"PURPLE","id":184,"value":11,"literal":"purple","eClass":"EEnumLiteral"},{"name":"RED","id":185,"value":12,"literal":"red","eClass":"EEnumLiteral"},{"name":"SILVER","id":186,"value":13,"literal":"silver","eClass":"EEnumLiteral"},{"name":"TEAL","id":187,"value":14,"literal":"teal","eClass":"EEnumLiteral"},{"name":"WHITE","id":188,"value":15,"literal":"white","eClass":"EEnumLiteral"},{"name":"YELLOW","id":189,"value":16,"literal":"yellow","eClass":"EEnumLiteral"},{"name":"HORIZONTAL","id":190,"value":0,"literal":"horizontal","eClass":"EEnumLiteral"},{"name":"VERTICAL","id":191,"value":1,"literal":"vertical","eClass":"EEnumLiteral"},{"name":"DIAGONAL","id":192,"value":2,"literal":"diagonal","eClass":"EEnumLiteral"},{"ordered":false,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"black","unsettable":false,"transient":false,"unique":true,"name":"color","changeable":true,"lowerBound":0,"iD":false,"id":193,"derived":false},{"ordered":false,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"line","unsettable":false,"transient":false,"unique":true,"name":"shape","changeable":true,"lowerBound":0,"iD":false,"id":194,"derived":false},{"ordered":false,"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":195,"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":"containerArcGraphics","changeable":true,"resolveProxies":true,"lowerBound":0,"id":196,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"style","changeable":true,"lowerBound":0,"iD":false,"id":197,"derived":false},{"id":198,"eClass":"EGenericType"},{"id":199,"eClass":"EGenericType"},{"id":200,"eClass":"EGenericType"},{"id":201,"eClass":"EGenericType"},{"id":202,"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":"line","changeable":true,"resolveProxies":true,"lowerBound":0,"id":203,"derived":false},{"id":204,"eClass":"EGenericType"},{"id":205,"eClass":"EGenericType"},{"name":"LINE","id":206,"value":0,"literal":"line","eClass":"EEnumLiteral"},{"name":"CURVE","id":207,"value":1,"literal":"curve","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":"containerArc","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"},{"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":"arcgraphics","changeable":true,"resolveProxies":true,"lowerBound":0,"id":213,"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":"source","changeable":true,"resolveProxies":true,"lowerBound":1,"id":214,"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":"target","changeable":true,"resolveProxies":true,"lowerBound":1,"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":"hlinscription","changeable":true,"resolveProxies":true,"lowerBound":0,"id":216,"derived":false},{"id":217,"eClass":"EGenericType"},{"id":218,"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":"OutArcs","changeable":false,"resolveProxies":true,"lowerBound":0,"id":219,"derived":false},{"id":220,"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":"InArcs","changeable":false,"resolveProxies":true,"lowerBound":0,"id":221,"derived":false},{"id":222,"eClass":"EGenericType"},{"id":223,"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":"containerArc","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"},{"ordered":false,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"left","unsettable":false,"transient":false,"unique":true,"name":"align","changeable":true,"lowerBound":0,"iD":false,"id":229,"derived":false},{"ordered":false,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"underline","unsettable":false,"transient":false,"unique":true,"name":"decoration","changeable":true,"lowerBound":0,"iD":false,"id":230,"derived":false},{"ordered":false,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"verdana","unsettable":false,"transient":false,"unique":true,"name":"family","changeable":true,"lowerBound":0,"iD":false,"id":231,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"rotation","changeable":true,"lowerBound":0,"iD":false,"id":232,"derived":false},{"ordered":false,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"small","unsettable":false,"transient":false,"unique":true,"name":"size","changeable":true,"lowerBound":0,"iD":false,"id":233,"derived":false},{"ordered":false,"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":234,"derived":false},{"ordered":false,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"weight","changeable":true,"lowerBound":0,"iD":false,"id":235,"derived":false},{"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"},{"name":"LEFT","id":244,"value":0,"literal":"left","eClass":"EEnumLiteral"},{"name":"CENTER","id":245,"value":1,"literal":"center","eClass":"EEnumLiteral"},{"name":"RIGHT","id":246,"value":2,"literal":"right","eClass":"EEnumLiteral"},{"name":"UNDERLINE","id":247,"value":0,"literal":"underline","eClass":"EEnumLiteral"},{"name":"OVERLINE","id":248,"value":1,"literal":"overline","eClass":"EEnumLiteral"},{"name":"LINETHROUGH","id":249,"value":2,"literal":"linethrough","eClass":"EEnumLiteral"},{"name":"VERDANA","id":250,"value":0,"literal":"verdana","eClass":"EEnumLiteral"},{"name":"ARIAL","id":251,"value":1,"literal":"arial","eClass":"EEnumLiteral"},{"name":"TIMES","id":252,"value":2,"literal":"times","eClass":"EEnumLiteral"},{"name":"GEORGIA","id":253,"value":3,"literal":"georgia","eClass":"EEnumLiteral"},{"name":"TREBUCHET","id":254,"value":4,"literal":"trebuchet","eClass":"EEnumLiteral"},{"name":"XXSMALL","id":255,"value":0,"literal":"xxsmall","eClass":"EEnumLiteral"},{"name":"XSMALL","id":256,"value":1,"literal":"xsmall","eClass":"EEnumLiteral"},{"name":"SMALL","id":257,"value":2,"literal":"small","eClass":"EEnumLiteral"},{"name":"MEDIUM","id":258,"value":3,"literal":"medium","eClass":"EEnumLiteral"},{"name":"LARGE","id":259,"value":4,"literal":"large","eClass":"EEnumLiteral"},{"name":"XLARGE","id":260,"value":5,"literal":"xlarge","eClass":"EEnumLiteral"},{"name":"XXLARGE","id":261,"value":6,"literal":"xxlarge","eClass":"EEnumLiteral"},{"name":"NORMAL","id":262,"value":0,"literal":"normal","eClass":"EEnumLiteral"},{"name":"ITALIC","id":263,"value":1,"literal":"italic","eClass":"EEnumLiteral"},{"name":"OBLIQUE","id":264,"value":2,"literal":"oblique","eClass":"EEnumLiteral"},{"name":"NORMAL","id":265,"value":0,"literal":"normal","eClass":"EEnumLiteral"},{"name":"BOLD","id":266,"value":1,"literal":"bold","eClass":"EEnumLiteral"},{"name":"BOLDER","id":267,"value":2,"literal":"bolder","eClass":"EEnumLiteral"},{"name":"LIGHTER","id":268,"value":3,"literal":"lighter","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":"referencingPlaces","changeable":false,"resolveProxies":true,"lowerBound":0,"id":269,"derived":false},{"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":"ref","changeable":true,"resolveProxies":true,"lowerBound":1,"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":false,"transient":false,"unique":true,"name":"referencingTransitions","changeable":false,"resolveProxies":true,"lowerBound":0,"id":273,"derived":false},{"id":274,"eClass":"EGenericType"},{"id":275,"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":"ref","changeable":true,"resolveProxies":true,"lowerBound":1,"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":"type","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":"hlinitialMarking","changeable":true,"resolveProxies":true,"lowerBound":0,"id":278,"derived":false},{"id":279,"eClass":"EGenericType"},{"id":280,"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":"containerPlace","changeable":true,"resolveProxies":true,"lowerBound":0,"id":281,"derived":false},{"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":false,"unique":true,"name":"containerPlace","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":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"condition","changeable":true,"resolveProxies":true,"lowerBound":0,"id":286,"derived":false},{"id":287,"eClass":"EGenericType"},{"id":288,"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":"containerTransition","changeable":true,"resolveProxies":true,"lowerBound":0,"id":289,"derived":false},{"id":290,"eClass":"EGenericType"},{"id":291,"eClass":"EGenericType"},{"id":292,"eClass":"EGenericType"},{"name":"SOLID","id":293,"value":0,"literal":"solid","eClass":"EEnumLiteral"},{"name":"DASH","id":294,"value":1,"literal":"dash","eClass":"EEnumLiteral"},{"name":"DOT","id":295,"value":2,"literal":"dot","eClass":"EEnumLiteral"},{"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":"text","changeable":true,"lowerBound":0,"iD":false,"id":299,"derived":false},{"id":300,"eClass":"EGenericType"},{"id":301,"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":"structure","changeable":true,"resolveProxies":true,"lowerBound":0,"id":302,"derived":false},{"id":303,"eClass":"EGenericType"},{"id":304,"eClass":"EGenericType"},{"id":305,"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":"structure","changeable":true,"resolveProxies":true,"lowerBound":0,"id":306,"derived":false},{"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":true,"unsettable":false,"transient":false,"unique":true,"name":"structure","changeable":true,"resolveProxies":true,"lowerBound":0,"id":310,"derived":false},{"id":311,"eClass":"EGenericType"},{"id":312,"eClass":"EGenericType"},{"id":313,"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":"structure","changeable":true,"resolveProxies":true,"lowerBound":0,"id":314,"derived":false},{"id":315,"eClass":"EGenericType"},{"id":316,"eClass":"EGenericType"},{"id":317,"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":"structure","changeable":true,"resolveProxies":true,"lowerBound":0,"id":318,"derived":false},{"id":319,"eClass":"EGenericType"},{"id":320,"eClass":"EGenericType"},{"id":321,"eClass":"EGenericType"},{"id":322,"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":49,"target":2},{"source":49,"target":51},{"source":49,"target":1},{"source":49,"target":52},{"source":51,"target":2},{"source":50,"target":53},{"source":50,"target":1},{"source":2,"target":0},{"source":2,"target":54},{"source":2,"target":55},{"source":2,"target":56},{"source":2,"target":57},{"source":2,"target":58},{"source":2,"target":52},{"source":2,"target":59},{"source":54,"target":60},{"source":54,"target":2},{"source":55,"target":3},{"source":55,"target":61},{"source":55,"target":2},{"source":61,"target":3},{"source":56,"target":4},{"source":56,"target":62},{"source":56,"target":2},{"source":56,"target":63},{"source":62,"target":4},{"source":57,"target":6},{"source":57,"target":64},{"source":57,"target":2},{"source":57,"target":65},{"source":64,"target":6},{"source":58,"target":7},{"source":58,"target":66},{"source":58,"target":2},{"source":58,"target":67},{"source":66,"target":7},{"source":52,"target":1},{"source":52,"target":68},{"source":52,"target":2},{"source":52,"target":49},{"source":68,"target":1},{"source":59,"target":48},{"source":59,"target":69},{"source":59,"target":2},{"source":59,"target":70},{"source":69,"target":48},{"source":3,"target":0},{"source":3,"target":71},{"source":3,"target":72},{"source":3,"target":73},{"source":3,"target":74},{"source":71,"target":3},{"source":72,"target":3},{"source":73,"target":3},{"source":74,"target":3},{"source":4,"target":0},{"source":4,"target":5},{"source":4,"target":75},{"source":4,"target":63},{"source":4,"target":76},{"source":4,"target":77},{"source":4,"target":78},{"source":75,"target":5},{"source":75,"target":79},{"source":75,"target":4},{"source":75,"target":80},{"source":79,"target":5},{"source":63,"target":2},{"source":63,"target":81},{"source":63,"target":4},{"source":63,"target":56},{"source":81,"target":2},{"source":76,"target":9},{"source":76,"target":82},{"source":76,"target":4},{"source":76,"target":83},{"source":82,"target":9},{"source":77,"target":48},{"source":77,"target":84},{"source":77,"target":4},{"source":77,"target":85},{"source":84,"target":48},{"source":78,"target":5},{"source":5,"target":0},{"source":5,"target":86},{"source":5,"target":87},{"source":5,"target":88},{"source":5,"target":80},{"source":86,"target":89},{"source":86,"target":5},{"source":87,"target":6},{"source":87,"target":90},{"source":87,"target":5},{"source":87,"target":91},{"source":90,"target":6},{"source":88,"target":7},{"source":88,"target":92},{"source":88,"target":5},{"source":88,"target":93},{"source":92,"target":7},{"source":80,"target":4},{"source":80,"target":94},{"source":80,"target":5},{"source":80,"target":75},{"source":94,"target":4},{"source":6,"target":0},{"source":6,"target":39},{"source":6,"target":95},{"source":6,"target":65},{"source":6,"target":91},{"source":6,"target":96},{"source":95,"target":97},{"source":95,"target":6},{"source":65,"target":2},{"source":65,"target":98},{"source":65,"target":6},{"source":65,"target":57},{"source":98,"target":2},{"source":91,"target":5},{"source":91,"target":99},{"source":91,"target":6},{"source":91,"target":87},{"source":99,"target":5},{"source":96,"target":39},{"source":7,"target":0},{"source":7,"target":100},{"source":7,"target":101},{"source":7,"target":102},{"source":7,"target":103},{"source":7,"target":67},{"source":7,"target":93},{"source":7,"target":104},{"source":7,"target":105},{"source":100,"target":106},{"source":100,"target":7},{"source":101,"target":107},{"source":101,"target":7},{"source":102,"target":41},{"source":102,"target":108},{"source":102,"target":7},{"source":108,"target":41},{"source":103,"target":40},{"source":103,"target":109},{"source":103,"target":7},{"source":109,"target":40},{"source":67,"target":2},{"source":67,"target":110},{"source":67,"target":7},{"source":67,"target":58},{"source":110,"target":2},{"source":93,"target":5},{"source":93,"target":111},{"source":93,"target":7},{"source":93,"target":88},{"source":111,"target":5},{"source":104,"target":8},{"source":104,"target":112},{"source":104,"target":7},{"source":104,"target":113},{"source":112,"target":8},{"source":105,"target":42},{"source":105,"target":114},{"source":105,"target":7},{"source":105,"target":115},{"source":114,"target":42},{"source":8,"target":0},{"source":8,"target":113},{"source":113,"target":7},{"source":113,"target":116},{"source":113,"target":8},{"source":113,"target":104},{"source":116,"target":7},{"source":9,"target":0},{"source":9,"target":10},{"source":9,"target":117},{"source":9,"target":118},{"source":9,"target":119},{"source":9,"target":120},{"source":9,"target":121},{"source":9,"target":83},{"source":9,"target":122},{"source":117,"target":12},{"source":117,"target":123},{"source":117,"target":9},{"source":117,"target":124},{"source":123,"target":12},{"source":118,"target":14},{"source":118,"target":125},{"source":118,"target":9},{"source":118,"target":126},{"source":125,"target":14},{"source":119,"target":16},{"source":119,"target":127},{"source":119,"target":9},{"source":119,"target":128},{"source":127,"target":16},{"source":120,"target":19},{"source":120,"target":129},{"source":120,"target":9},{"source":120,"target":130},{"source":129,"target":19},{"source":121,"target":23},{"source":121,"target":131},{"source":121,"target":9},{"source":121,"target":132},{"source":131,"target":23},{"source":83,"target":4},{"source":83,"target":133},{"source":83,"target":9},{"source":83,"target":76},{"source":133,"target":4},{"source":122,"target":10},{"source":10,"target":0},{"source":11,"target":0},{"source":11,"target":134},{"source":11,"target":135},{"source":134,"target":136},{"source":134,"target":11},{"source":135,"target":137},{"source":135,"target":11},{"source":12,"target":0},{"source":12,"target":11},{"source":12,"target":138},{"source":12,"target":124},{"source":12,"target":139},{"source":138,"target":21},{"source":138,"target":140},{"source":138,"target":12},{"source":138,"target":141},{"source":140,"target":21},{"source":124,"target":9},{"source":124,"target":142},{"source":124,"target":12},{"source":124,"target":117},{"source":142,"target":9},{"source":139,"target":11},{"source":13,"target":0},{"source":13,"target":11},{"source":13,"target":143},{"source":13,"target":144},{"source":143,"target":15},{"source":143,"target":145},{"source":143,"target":13},{"source":143,"target":146},{"source":145,"target":15},{"source":144,"target":11},{"source":14,"target":0},{"source":14,"target":11},{"source":14,"target":126},{"source":14,"target":147},{"source":126,"target":9},{"source":126,"target":148},{"source":126,"target":14},{"source":126,"target":118},{"source":148,"target":9},{"source":147,"target":11},{"source":15,"target":0},{"source":15,"target":10},{"source":15,"target":146},{"source":15,"target":149},{"source":15,"target":150},{"source":15,"target":151},{"source":15,"target":152},{"source":15,"target":153},{"source":146,"target":13},{"source":146,"target":154},{"source":146,"target":15},{"source":146,"target":143},{"source":154,"target":13},{"source":149,"target":16},{"source":149,"target":155},{"source":149,"target":15},{"source":149,"target":156},{"source":155,"target":16},{"source":150,"target":19},{"source":150,"target":157},{"source":150,"target":15},{"source":150,"target":158},{"source":157,"target":19},{"source":151,"target":24},{"source":151,"target":159},{"source":151,"target":15},{"source":151,"target":160},{"source":159,"target":24},{"source":152,"target":39},{"source":152,"target":161},{"source":152,"target":15},{"source":152,"target":162},{"source":161,"target":39},{"source":153,"target":10},{"source":16,"target":0},{"source":16,"target":163},{"source":16,"target":164},{"source":16,"target":165},{"source":16,"target":166},{"source":16,"target":128},{"source":16,"target":156},{"source":163,"target":17},{"source":163,"target":167},{"source":163,"target":16},{"source":167,"target":17},{"source":164,"target":17},{"source":164,"target":168},{"source":164,"target":16},{"source":168,"target":17},{"source":165,"target":18},{"source":165,"target":169},{"source":165,"target":16},{"source":169,"target":18},{"source":166,"target":40},{"source":166,"target":170},{"source":166,"target":16},{"source":170,"target":40},{"source":128,"target":9},{"source":128,"target":171},{"source":128,"target":16},{"source":128,"target":119},{"source":171,"target":9},{"source":156,"target":15},{"source":156,"target":172},{"source":156,"target":16},{"source":156,"target":149},{"source":172,"target":15},{"source":17,"target":0},{"source":17,"target":173},{"source":17,"target":174},{"source":17,"target":175},{"source":17,"target":176},{"source":17,"target":177},{"source":17,"target":178},{"source":17,"target":179},{"source":17,"target":180},{"source":17,"target":181},{"source":17,"target":182},{"source":17,"target":183},{"source":17,"target":184},{"source":17,"target":185},{"source":17,"target":186},{"source":17,"target":187},{"source":17,"target":188},{"source":17,"target":189},{"source":173,"target":17},{"source":174,"target":17},{"source":175,"target":17},{"source":176,"target":17},{"source":177,"target":17},{"source":178,"target":17},{"source":179,"target":17},{"source":180,"target":17},{"source":181,"target":17},{"source":182,"target":17},{"source":183,"target":17},{"source":184,"target":17},{"source":185,"target":17},{"source":186,"target":17},{"source":187,"target":17},{"source":188,"target":17},{"source":189,"target":17},{"source":18,"target":0},{"source":18,"target":190},{"source":18,"target":191},{"source":18,"target":192},{"source":190,"target":18},{"source":191,"target":18},{"source":192,"target":18},{"source":19,"target":0},{"source":19,"target":193},{"source":19,"target":194},{"source":19,"target":195},{"source":19,"target":130},{"source":19,"target":196},{"source":19,"target":158},{"source":19,"target":197},{"source":193,"target":17},{"source":193,"target":198},{"source":193,"target":19},{"source":198,"target":17},{"source":194,"target":20},{"source":194,"target":199},{"source":194,"target":19},{"source":199,"target":20},{"source":195,"target":200},{"source":195,"target":19},{"source":130,"target":9},{"source":130,"target":201},{"source":130,"target":19},{"source":130,"target":120},{"source":201,"target":9},{"source":196,"target":21},{"source":196,"target":202},{"source":196,"target":19},{"source":196,"target":203},{"source":202,"target":21},{"source":158,"target":15},{"source":158,"target":204},{"source":158,"target":19},{"source":158,"target":150},{"source":204,"target":15},{"source":197,"target":38},{"source":197,"target":205},{"source":197,"target":19},{"source":205,"target":38},{"source":20,"target":0},{"source":20,"target":206},{"source":20,"target":207},{"source":206,"target":20},{"source":207,"target":20},{"source":21,"target":0},{"source":21,"target":10},{"source":21,"target":141},{"source":21,"target":203},{"source":21,"target":208},{"source":21,"target":209},{"source":141,"target":12},{"source":141,"target":210},{"source":141,"target":21},{"source":141,"target":138},{"source":210,"target":12},{"source":203,"target":19},{"source":203,"target":211},{"source":203,"target":21},{"source":203,"target":196},{"source":211,"target":19},{"source":208,"target":22},{"source":208,"target":212},{"source":208,"target":21},{"source":208,"target":213},{"source":212,"target":22},{"source":209,"target":10},{"source":22,"target":0},{"source":22,"target":5},{"source":22,"target":214},{"source":22,"target":215},{"source":22,"target":213},{"source":22,"target":216},{"source":22,"target":217},{"source":214,"target":23},{"source":214,"target":218},{"source":214,"target":22},{"source":214,"target":219},{"source":218,"target":23},{"source":215,"target":23},{"source":215,"target":220},{"source":215,"target":22},{"source":215,"target":221},{"source":220,"target":23},{"source":213,"target":21},{"source":213,"target":222},{"source":213,"target":22},{"source":213,"target":208},{"source":222,"target":21},{"source":216,"target":47},{"source":216,"target":223},{"source":216,"target":22},{"source":216,"target":224},{"source":223,"target":47},{"source":217,"target":5},{"source":23,"target":0},{"source":23,"target":5},{"source":23,"target":221},{"source":23,"target":219},{"source":23,"target":132},{"source":23,"target":225},{"source":221,"target":22},{"source":221,"target":226},{"source":221,"target":23},{"source":221,"target":215},{"source":226,"target":22},{"source":219,"target":22},{"source":219,"target":227},{"source":219,"target":23},{"source":219,"target":214},{"source":227,"target":22},{"source":132,"target":9},{"source":132,"target":228},{"source":132,"target":23},{"source":132,"target":121},{"source":228,"target":9},{"source":225,"target":5},{"source":24,"target":0},{"source":24,"target":229},{"source":24,"target":230},{"source":24,"target":231},{"source":24,"target":232},{"source":24,"target":233},{"source":24,"target":234},{"source":24,"target":235},{"source":24,"target":160},{"source":229,"target":25},{"source":229,"target":236},{"source":229,"target":24},{"source":236,"target":25},{"source":230,"target":26},{"source":230,"target":237},{"source":230,"target":24},{"source":237,"target":26},{"source":231,"target":27},{"source":231,"target":238},{"source":231,"target":24},{"source":238,"target":27},{"source":232,"target":239},{"source":232,"target":24},{"source":233,"target":28},{"source":233,"target":240},{"source":233,"target":24},{"source":240,"target":28},{"source":234,"target":29},{"source":234,"target":241},{"source":234,"target":24},{"source":241,"target":29},{"source":235,"target":30},{"source":235,"target":242},{"source":235,"target":24},{"source":242,"target":30},{"source":160,"target":15},{"source":160,"target":243},{"source":160,"target":24},{"source":160,"target":151},{"source":243,"target":15},{"source":25,"target":0},{"source":25,"target":244},{"source":25,"target":245},{"source":25,"target":246},{"source":244,"target":25},{"source":245,"target":25},{"source":246,"target":25},{"source":26,"target":0},{"source":26,"target":247},{"source":26,"target":248},{"source":26,"target":249},{"source":247,"target":26},{"source":248,"target":26},{"source":249,"target":26},{"source":27,"target":0},{"source":27,"target":250},{"source":27,"target":251},{"source":27,"target":252},{"source":27,"target":253},{"source":27,"target":254},{"source":250,"target":27},{"source":251,"target":27},{"source":252,"target":27},{"source":253,"target":27},{"source":254,"target":27},{"source":28,"target":0},{"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":255,"target":28},{"source":256,"target":28},{"source":257,"target":28},{"source":258,"target":28},{"source":259,"target":28},{"source":260,"target":28},{"source":261,"target":28},{"source":29,"target":0},{"source":29,"target":262},{"source":29,"target":263},{"source":29,"target":264},{"source":262,"target":29},{"source":263,"target":29},{"source":264,"target":29},{"source":30,"target":0},{"source":30,"target":265},{"source":30,"target":266},{"source":30,"target":267},{"source":30,"target":268},{"source":265,"target":30},{"source":266,"target":30},{"source":267,"target":30},{"source":268,"target":30},{"source":31,"target":0},{"source":31,"target":23},{"source":31,"target":269},{"source":31,"target":270},{"source":269,"target":36},{"source":269,"target":271},{"source":269,"target":31},{"source":269,"target":272},{"source":271,"target":36},{"source":270,"target":23},{"source":32,"target":0},{"source":32,"target":23},{"source":32,"target":273},{"source":32,"target":274},{"source":273,"target":34},{"source":273,"target":275},{"source":273,"target":32},{"source":273,"target":276},{"source":275,"target":34},{"source":274,"target":23},{"source":33,"target":0},{"source":33,"target":31},{"source":33,"target":277},{"source":33,"target":278},{"source":33,"target":279},{"source":277,"target":44},{"source":277,"target":280},{"source":277,"target":33},{"source":277,"target":281},{"source":280,"target":44},{"source":278,"target":45},{"source":278,"target":282},{"source":278,"target":33},{"source":278,"target":283},{"source":282,"target":45},{"source":279,"target":31},{"source":34,"target":0},{"source":34,"target":32},{"source":34,"target":276},{"source":34,"target":284},{"source":276,"target":32},{"source":276,"target":285},{"source":276,"target":34},{"source":276,"target":273},{"source":285,"target":32},{"source":284,"target":32},{"source":35,"target":0},{"source":35,"target":32},{"source":35,"target":286},{"source":35,"target":287},{"source":286,"target":46},{"source":286,"target":288},{"source":286,"target":35},{"source":286,"target":289},{"source":288,"target":46},{"source":287,"target":32},{"source":36,"target":0},{"source":36,"target":31},{"source":36,"target":272},{"source":36,"target":290},{"source":272,"target":31},{"source":272,"target":291},{"source":272,"target":36},{"source":272,"target":269},{"source":291,"target":31},{"source":290,"target":31},{"source":37,"target":0},{"source":37,"target":8},{"source":37,"target":292},{"source":292,"target":8},{"source":38,"target":0},{"source":38,"target":293},{"source":38,"target":294},{"source":38,"target":295},{"source":293,"target":38},{"source":294,"target":38},{"source":295,"target":38},{"source":39,"target":0},{"source":39,"target":8},{"source":39,"target":162},{"source":39,"target":296},{"source":162,"target":15},{"source":162,"target":297},{"source":162,"target":39},{"source":162,"target":152},{"source":297,"target":15},{"source":296,"target":8},{"source":40,"target":0},{"source":41,"target":0},{"source":42,"target":0},{"source":42,"target":115},{"source":115,"target":7},{"source":115,"target":298},{"source":115,"target":42},{"source":115,"target":105},{"source":298,"target":7},{"source":43,"target":0},{"source":43,"target":39},{"source":43,"target":299},{"source":43,"target":300},{"source":299,"target":301},{"source":299,"target":43},{"source":300,"target":39},{"source":44,"target":0},{"source":44,"target":43},{"source":44,"target":302},{"source":44,"target":281},{"source":44,"target":303},{"source":302,"target":304},{"source":302,"target":44},{"source":281,"target":33},{"source":281,"target":305},{"source":281,"target":44},{"source":281,"target":277},{"source":305,"target":33},{"source":303,"target":43},{"source":45,"target":0},{"source":45,"target":43},{"source":45,"target":306},{"source":45,"target":283},{"source":45,"target":307},{"source":306,"target":308},{"source":306,"target":45},{"source":283,"target":33},{"source":283,"target":309},{"source":283,"target":45},{"source":283,"target":278},{"source":309,"target":33},{"source":307,"target":43},{"source":46,"target":0},{"source":46,"target":43},{"source":46,"target":310},{"source":46,"target":289},{"source":46,"target":311},{"source":310,"target":312},{"source":310,"target":46},{"source":289,"target":35},{"source":289,"target":313},{"source":289,"target":46},{"source":289,"target":286},{"source":313,"target":35},{"source":311,"target":43},{"source":47,"target":0},{"source":47,"target":43},{"source":47,"target":314},{"source":47,"target":224},{"source":47,"target":315},{"source":314,"target":316},{"source":314,"target":47},{"source":224,"target":22},{"source":224,"target":317},{"source":224,"target":47},{"source":224,"target":216},{"source":317,"target":22},{"source":315,"target":43},{"source":48,"target":0},{"source":48,"target":43},{"source":48,"target":318},{"source":48,"target":70},{"source":48,"target":85},{"source":48,"target":319},{"source":318,"target":320},{"source":318,"target":48},{"source":70,"target":2},{"source":70,"target":321},{"source":70,"target":48},{"source":70,"target":59},{"source":321,"target":2},{"source":85,"target":4},{"source":85,"target":322},{"source":85,"target":48},{"source":85,"target":77},{"source":322,"target":4},{"source":319,"target":43}],"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="ecore" nsURI="http://conflictingreference/" nsPrefix="ecore"> <eClassifiers xsi:type="ecore:EClass" name="EClass"> <eStructuralFeatures xsi:type="ecore:EReference" name="eSuperTypes" upperBound="-1" eType="#//EAttribute"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="EAttribute"/> </ecore:EPackage>
github:ecore:/data/diverse-project/melange/tests/fr.inria.diverse.melange.tests/tests-inputs/metamodels/merge/ConflictingReference.ecore
ecore
ecore EClass eSuperTypes EAttribute
null
{"directed":true,"nodes":[{"nsPrefix":"ecore","nsURI":"http://conflictingreference/","name":"ecore","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EClass","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EAttribute","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"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":"eSuperTypes","changeable":true,"resolveProxies":true,"lowerBound":0,"id":3,"derived":false},{"id":4,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":1,"target":0},{"source":1,"target":3},{"source":3,"target":2},{"source":3,"target":4},{"source":3,"target":1},{"source":4,"target":2},{"source":2,"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="ImagePresentationService" nsURI="http://de.fraunhofer.iem.reqpat.rmf.presentation.image" nsPrefix="de.fraunhofer.iem.reqpat.rmf.presentation.image"> <eClassifiers xsi:type="ecore:EClass" name="ImagePresentationServiceConfiguration" eSuperTypes="configuration.ecore#//ProrPresentationConfiguration"/> </ecore:EPackage>
github:ecore:/data/fraunhofer-iem/reqpat/de.fraunhofer.iem.reqpat.rmf.presentation.image/model/imagepresentationservice.ecore
ecore
ImagePresentationService ImagePresentationServiceConfiguration
null
{"directed":true,"nodes":[{"nsPrefix":"de.fraunhofer.iem.reqpat.rmf.presentation.image","nsURI":"http://de.fraunhofer.iem.reqpat.rmf.presentation.image","name":"ImagePresentationService","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ImagePresentationServiceConfiguration","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"id":2,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":1,"target":0},{"source":1,"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="emf" nsURI="http:///uk/ac/ed/inf/pepa/emf.ecore" nsPrefix="uk.ac.ed.inf.pepa.emf"> <eClassifiers xsi:type="ecore:EClass" name="Action" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="Activity"> <eStructuralFeatures xsi:type="ecore:EReference" name="rate" lowerBound="1" eType="#//Rate" containment="true" resolveProxies="false"/> <eStructuralFeatures xsi:type="ecore:EReference" name="action" lowerBound="1" eType="#//Action" containment="true" resolveProxies="false"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Aggregation" eSuperTypes="#//Process"> <eStructuralFeatures xsi:type="ecore:EReference" name="process" lowerBound="1" eType="#//Process" containment="true" resolveProxies="false"/> <eStructuralFeatures xsi:type="ecore:EReference" name="copies" eType="#//FiniteRate" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="BinaryOperator" abstract="true" eSuperTypes="#//Process"> <eStructuralFeatures xsi:type="ecore:EReference" name="rightHandSide" lowerBound="1" eType="#//Process" containment="true" resolveProxies="false"/> <eStructuralFeatures xsi:type="ecore:EReference" name="leftHandSide" lowerBound="1" eType="#//Process" containment="true" resolveProxies="false"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Choice" eSuperTypes="#//BinaryOperator"/> <eClassifiers xsi:type="ecore:EClass" name="Cooperation" eSuperTypes="#//BinaryOperator #//ProcessWithSet"/> <eClassifiers xsi:type="ecore:EClass" name="FiniteRate" abstract="true" eSuperTypes="#//Rate"/> <eClassifiers xsi:type="ecore:EClass" name="Hiding" eSuperTypes="#//ProcessWithSet"> <eStructuralFeatures xsi:type="ecore:EReference" name="hiddenProcess" lowerBound="1" eType="#//Process" containment="true" resolveProxies="false"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Model"> <eStructuralFeatures xsi:type="ecore:EReference" name="systemEquation" lowerBound="1" eType="#//Process" containment="true" resolveProxies="false"/> <eStructuralFeatures xsi:type="ecore:EReference" name="processAssignments" upperBound="-1" eType="#//ProcessAssignment" containment="true" resolveProxies="false"/> <eStructuralFeatures xsi:type="ecore:EReference" name="rateAssignments" upperBound="-1" eType="#//RateAssignment" containment="true" resolveProxies="false"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="PassiveRate" eSuperTypes="#//Rate"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="weight" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Prefix" eSuperTypes="#//Process"> <eStructuralFeatures xsi:type="ecore:EReference" name="targetProcess" lowerBound="1" eType="#//Process" containment="true" resolveProxies="false"/> <eStructuralFeatures xsi:type="ecore:EReference" name="activity" lowerBound="1" eType="#//Activity" containment="true" resolveProxies="false"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Process" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="ProcessWithSet" abstract="true" eSuperTypes="#//Process"> <eStructuralFeatures xsi:type="ecore:EReference" name="actions" upperBound="-1" eType="#//ActionIdentifier" containment="true" resolveProxies="false"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Rate" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="SilentAction" eSuperTypes="#//Action"/> <eClassifiers xsi:type="ecore:EClass" name="ActionIdentifier" eSuperTypes="#//Action"> <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="NumberLiteral" eSuperTypes="#//FiniteRate"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ProcessAssignment"> <eStructuralFeatures xsi:type="ecore:EReference" name="processIdentifier" lowerBound="1" eType="#//ProcessIdentifier" containment="true" resolveProxies="false"/> <eStructuralFeatures xsi:type="ecore:EReference" name="process" lowerBound="1" eType="#//Process" containment="true" resolveProxies="false"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ProcessIdentifier" eSuperTypes="#//Process"> <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="RateAssignment"> <eStructuralFeatures xsi:type="ecore:EReference" name="rateIdentifier" lowerBound="1" eType="#//RateIdentifier" containment="true" resolveProxies="false"/> <eStructuralFeatures xsi:type="ecore:EReference" name="rate" lowerBound="1" eType="#//FiniteRate" containment="true" resolveProxies="false"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="RateExpression" eSuperTypes="#//FiniteRate"> <eStructuralFeatures xsi:type="ecore:EReference" name="leftHandSide" lowerBound="1" eType="#//FiniteRate" containment="true" resolveProxies="false"/> <eStructuralFeatures xsi:type="ecore:EReference" name="rightHandSide" lowerBound="1" eType="#//FiniteRate" containment="true" resolveProxies="false"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="operator" eType="#//RateOperator"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="RateIdentifier" eSuperTypes="#//FiniteRate"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="RateOperator"> <eLiterals name="Plus"/> <eLiterals name="Minus" value="1"/> <eLiterals name="Divide" value="2"/> <eLiterals name="Times" value="3"/> </eClassifiers> </ecore:EPackage>
github:ecore:/data/PEPA-UEDIN/PEPA-Eclipse-Plug-in/uk.ac.ed.inf.pepa.emf/model/emf.ecore
ecore
emf Action Activity rate action Aggregation process copies BinaryOperator rightHandSide leftHandSide Choice Cooperation FiniteRate Hiding hiddenProcess Model systemEquation processAssignments rateAssignments PassiveRate weight Prefix targetProcess activity Process ProcessWithSet actions Rate SilentAction ActionIdentifier name NumberLiteral value ProcessAssignment processIdentifier process ProcessIdentifier name RateAssignment rateIdentifier rate RateExpression leftHandSide rightHandSide operator RateIdentifier name RateOperator Plus Plus Minus Minus Divide Divide Times Times
null
{"directed":true,"nodes":[{"nsPrefix":"uk.ac.ed.inf.pepa.emf","nsURI":"http:///uk/ac/ed/inf/pepa/emf.ecore","name":"emf","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Action","instanceClass":null,"abstract":true,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Activity","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Aggregation","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BinaryOperator","instanceClass":null,"abstract":true,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Choice","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Cooperation","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FiniteRate","instanceClass":null,"abstract":true,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Hiding","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Model","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PassiveRate","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Prefix","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Process","instanceClass":null,"abstract":true,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ProcessWithSet","instanceClass":null,"abstract":true,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Rate","instanceClass":null,"abstract":true,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SilentAction","instanceClass":null,"abstract":false,"id":15,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ActionIdentifier","instanceClass":null,"abstract":false,"id":16,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NumberLiteral","instanceClass":null,"abstract":false,"id":17,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ProcessAssignment","instanceClass":null,"abstract":false,"id":18,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ProcessIdentifier","instanceClass":null,"abstract":false,"id":19,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RateAssignment","instanceClass":null,"abstract":false,"id":20,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RateExpression","instanceClass":null,"abstract":false,"id":21,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RateIdentifier","instanceClass":null,"abstract":false,"id":22,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"RateOperator","instanceClass":null,"id":23,"serializable":true,"eClass":"EEnum"},{"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":"rate","changeable":true,"resolveProxies":false,"lowerBound":1,"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":"action","changeable":true,"resolveProxies":false,"lowerBound":1,"id":25,"derived":false},{"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":true,"unsettable":false,"transient":false,"unique":true,"name":"process","changeable":true,"resolveProxies":false,"lowerBound":1,"id":28,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"copies","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":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"rightHandSide","changeable":true,"resolveProxies":false,"lowerBound":1,"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":"leftHandSide","changeable":true,"resolveProxies":false,"lowerBound":1,"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"},{"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":"hiddenProcess","changeable":true,"resolveProxies":false,"lowerBound":1,"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":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"systemEquation","changeable":true,"resolveProxies":false,"lowerBound":1,"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":"processAssignments","changeable":true,"resolveProxies":false,"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":"rateAssignments","changeable":true,"resolveProxies":false,"lowerBound":0,"id":47,"derived":false},{"id":48,"eClass":"EGenericType"},{"id":49,"eClass":"EGenericType"},{"id":50,"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":"weight","changeable":true,"lowerBound":0,"iD":false,"id":51,"derived":false},{"id":52,"eClass":"EGenericType"},{"id":53,"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":"targetProcess","changeable":true,"resolveProxies":false,"lowerBound":1,"id":54,"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":"activity","changeable":true,"resolveProxies":false,"lowerBound":1,"id":55,"derived":false},{"id":56,"eClass":"EGenericType"},{"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":"actions","changeable":true,"resolveProxies":false,"lowerBound":0,"id":59,"derived":false},{"id":60,"eClass":"EGenericType"},{"id":61,"eClass":"EGenericType"},{"id":62,"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":63,"derived":false},{"id":64,"eClass":"EGenericType"},{"id":65,"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":66,"derived":false},{"id":67,"eClass":"EGenericType"},{"id":68,"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":"processIdentifier","changeable":true,"resolveProxies":false,"lowerBound":1,"id":69,"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":"process","changeable":true,"resolveProxies":false,"lowerBound":1,"id":70,"derived":false},{"id":71,"eClass":"EGenericType"},{"id":72,"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":73,"derived":false},{"id":74,"eClass":"EGenericType"},{"id":75,"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":"rateIdentifier","changeable":true,"resolveProxies":false,"lowerBound":1,"id":76,"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":"rate","changeable":true,"resolveProxies":false,"lowerBound":1,"id":77,"derived":false},{"id":78,"eClass":"EGenericType"},{"id":79,"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":"leftHandSide","changeable":true,"resolveProxies":false,"lowerBound":1,"id":80,"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":"rightHandSide","changeable":true,"resolveProxies":false,"lowerBound":1,"id":81,"derived":false},{"ordered":true,"upperBound":1,"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":82,"derived":false},{"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},{"id":88,"eClass":"EGenericType"},{"id":89,"eClass":"EGenericType"},{"name":"Plus","id":90,"value":0,"literal":"Plus","eClass":"EEnumLiteral"},{"name":"Minus","id":91,"value":1,"literal":"Minus","eClass":"EEnumLiteral"},{"name":"Divide","id":92,"value":2,"literal":"Divide","eClass":"EEnumLiteral"},{"name":"Times","id":93,"value":3,"literal":"Times","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":2,"target":0},{"source":2,"target":24},{"source":2,"target":25},{"source":24,"target":14},{"source":24,"target":26},{"source":24,"target":2},{"source":26,"target":14},{"source":25,"target":1},{"source":25,"target":27},{"source":25,"target":2},{"source":27,"target":1},{"source":3,"target":0},{"source":3,"target":12},{"source":3,"target":28},{"source":3,"target":29},{"source":3,"target":30},{"source":28,"target":12},{"source":28,"target":31},{"source":28,"target":3},{"source":31,"target":12},{"source":29,"target":7},{"source":29,"target":32},{"source":29,"target":3},{"source":32,"target":7},{"source":30,"target":12},{"source":4,"target":0},{"source":4,"target":12},{"source":4,"target":33},{"source":4,"target":34},{"source":4,"target":35},{"source":33,"target":12},{"source":33,"target":36},{"source":33,"target":4},{"source":36,"target":12},{"source":34,"target":12},{"source":34,"target":37},{"source":34,"target":4},{"source":37,"target":12},{"source":35,"target":12},{"source":5,"target":0},{"source":5,"target":4},{"source":5,"target":38},{"source":38,"target":4},{"source":6,"target":0},{"source":6,"target":4},{"source":6,"target":13},{"source":6,"target":39},{"source":6,"target":40},{"source":39,"target":4},{"source":40,"target":13},{"source":7,"target":0},{"source":7,"target":14},{"source":7,"target":41},{"source":41,"target":14},{"source":8,"target":0},{"source":8,"target":13},{"source":8,"target":42},{"source":8,"target":43},{"source":42,"target":12},{"source":42,"target":44},{"source":42,"target":8},{"source":44,"target":12},{"source":43,"target":13},{"source":9,"target":0},{"source":9,"target":45},{"source":9,"target":46},{"source":9,"target":47},{"source":45,"target":12},{"source":45,"target":48},{"source":45,"target":9},{"source":48,"target":12},{"source":46,"target":18},{"source":46,"target":49},{"source":46,"target":9},{"source":49,"target":18},{"source":47,"target":20},{"source":47,"target":50},{"source":47,"target":9},{"source":50,"target":20},{"source":10,"target":0},{"source":10,"target":14},{"source":10,"target":51},{"source":10,"target":52},{"source":51,"target":53},{"source":51,"target":10},{"source":52,"target":14},{"source":11,"target":0},{"source":11,"target":12},{"source":11,"target":54},{"source":11,"target":55},{"source":11,"target":56},{"source":54,"target":12},{"source":54,"target":57},{"source":54,"target":11},{"source":57,"target":12},{"source":55,"target":2},{"source":55,"target":58},{"source":55,"target":11},{"source":58,"target":2},{"source":56,"target":12},{"source":12,"target":0},{"source":13,"target":0},{"source":13,"target":12},{"source":13,"target":59},{"source":13,"target":60},{"source":59,"target":16},{"source":59,"target":61},{"source":59,"target":13},{"source":61,"target":16},{"source":60,"target":12},{"source":14,"target":0},{"source":15,"target":0},{"source":15,"target":1},{"source":15,"target":62},{"source":62,"target":1},{"source":16,"target":0},{"source":16,"target":1},{"source":16,"target":63},{"source":16,"target":64},{"source":63,"target":65},{"source":63,"target":16},{"source":64,"target":1},{"source":17,"target":0},{"source":17,"target":7},{"source":17,"target":66},{"source":17,"target":67},{"source":66,"target":68},{"source":66,"target":17},{"source":67,"target":7},{"source":18,"target":0},{"source":18,"target":69},{"source":18,"target":70},{"source":69,"target":19},{"source":69,"target":71},{"source":69,"target":18},{"source":71,"target":19},{"source":70,"target":12},{"source":70,"target":72},{"source":70,"target":18},{"source":72,"target":12},{"source":19,"target":0},{"source":19,"target":12},{"source":19,"target":73},{"source":19,"target":74},{"source":73,"target":75},{"source":73,"target":19},{"source":74,"target":12},{"source":20,"target":0},{"source":20,"target":76},{"source":20,"target":77},{"source":76,"target":22},{"source":76,"target":78},{"source":76,"target":20},{"source":78,"target":22},{"source":77,"target":7},{"source":77,"target":79},{"source":77,"target":20},{"source":79,"target":7},{"source":21,"target":0},{"source":21,"target":7},{"source":21,"target":80},{"source":21,"target":81},{"source":21,"target":82},{"source":21,"target":83},{"source":80,"target":7},{"source":80,"target":84},{"source":80,"target":21},{"source":84,"target":7},{"source":81,"target":7},{"source":81,"target":85},{"source":81,"target":21},{"source":85,"target":7},{"source":82,"target":23},{"source":82,"target":86},{"source":82,"target":21},{"source":86,"target":23},{"source":83,"target":7},{"source":22,"target":0},{"source":22,"target":7},{"source":22,"target":87},{"source":22,"target":88},{"source":87,"target":89},{"source":87,"target":22},{"source":88,"target":7},{"source":23,"target":0},{"source":23,"target":90},{"source":23,"target":91},{"source":23,"target":92},{"source":23,"target":93},{"source":90,"target":23},{"source":91,"target":23},{"source":92,"target":23},{"source":93,"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="store" nsURI="store" nsPrefix="store"> <eClassifiers xsi:type="ecore:EEnum" name="UserType"> <eLiterals name="SYSTEM"/> <eLiterals name="ADMIN" value="1"/> <eLiterals name="USER" value="2"/> <eLiterals name="READ_ONLY" value="3"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="SIPrefix"> <eLiterals name="meter"/> <eLiterals name="attometer" value="-18"/> <eLiterals name="femtometer" value="-15"/> <eLiterals name="picometer" value="-12"/> <eLiterals name="nanometer" value="-9"/> <eLiterals name="micrometer" value="-6"/> <eLiterals name="millimeter" value="-3"/> <eLiterals name="centimeter" value="-2"/> <eLiterals name="decimeter" value="-1"/> <eLiterals name="decameter" value="1"/> <eLiterals name="hectometer" value="2"/> <eLiterals name="kilometer" value="3"/> <eLiterals name="megameter" value="6"/> <eLiterals name="gigameter" value="9"/> <eLiterals name="terameter" value="12"/> <eLiterals name="petameter" value="15"/> <eLiterals name="exameter" value="18"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="ObjectState"> <eLiterals name="ACTIVE"/> <eLiterals name="DELETED" value="1"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Project"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="id" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="hasAuthorizedUsers" upperBound="-1" eType="#//User" eOpposite="#//User/hasRightsOn"/> <eStructuralFeatures xsi:type="ecore:EReference" name="concreteRevisions" upperBound="-1" eType="#//ConcreteRevision" eOpposite="#//ConcreteRevision/project"/> <eStructuralFeatures xsi:type="ecore:EReference" name="revisions" upperBound="-1" eType="#//Revision" eOpposite="#//Revision/project"/> <eStructuralFeatures xsi:type="ecore:EReference" name="lastConcreteRevision" eType="#//ConcreteRevision"/> <eStructuralFeatures xsi:type="ecore:EReference" name="lastRevision" eType="#//Revision"/> <eStructuralFeatures xsi:type="ecore:EReference" name="checkouts" upperBound="-1" eType="#//Checkout" eOpposite="#//Checkout/project"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="state" eType="#//ObjectState"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="createdDate" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDate"/> <eStructuralFeatures xsi:type="ecore:EReference" name="createdBy" eType="#//User"/> <eStructuralFeatures xsi:type="ecore:EReference" name="geoTag" eType="#//GeoTag" eOpposite="#//GeoTag/projects"/> <eStructuralFeatures xsi:type="ecore:EReference" name="subProjects" upperBound="-1" eType="#//Project" eOpposite="#//Project/parent"/> <eStructuralFeatures xsi:type="ecore:EReference" name="parent" eType="#//Project" eOpposite="#//Project/subProjects"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="description" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="clashDetectionSettings" eType="#//ClashDetectionSettings" eOpposite="#//ClashDetectionSettings/projects"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="exportLengthMeasurePrefix" eType="#//SIPrefix"/> <eStructuralFeatures xsi:type="ecore:EReference" name="extendedData" upperBound="-1" eType="#//ExtendedData"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="User"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" 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"/> <eStructuralFeatures xsi:type="ecore:EReference" name="hasRightsOn" upperBound="-1" eType="#//Project" eOpposite="#//Project/hasAuthorizedUsers"/> <eStructuralFeatures xsi:type="ecore:EReference" name="revisions" upperBound="-1" eType="#//Revision"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="state" eType="#//ObjectState"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="createdOn" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDate"/> <eStructuralFeatures xsi:type="ecore:EReference" name="createdBy" eType="#//User"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="userType" eType="#//UserType"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="username" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="lastSeen" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDate"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="validationToken" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="validationTokenCreated" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDate"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="notificationUrl" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="schemas" upperBound="-1" eType="#//ExtendedDataSchema" eOpposite="#//ExtendedDataSchema/users"/> <eStructuralFeatures xsi:type="ecore:EReference" name="extendedData" upperBound="-1" eType="#//ExtendedData" eOpposite="#//ExtendedData/user"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Clash"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name2" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="type1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="type2" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="revision1" eType="#//Revision"/> <eStructuralFeatures xsi:type="ecore:EReference" name="revision2" eType="#//Revision"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="EidClash" eSuperTypes="#//Clash"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="eid1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//ELongObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="eid2" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//ELongObject"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="GuidClash" eSuperTypes="#//Clash"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="guid1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="guid2" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ClashDetectionSettings"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="enabled" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBooleanObject"/> <eStructuralFeatures xsi:type="ecore:EReference" name="projects" upperBound="-1" eType="#//Project" eOpposite="#//Project/clashDetectionSettings"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="margin" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDoubleObject"/> <eStructuralFeatures xsi:type="ecore:EReference" name="revisions" upperBound="-1" eType="#//Revision"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="ignoredClasses" upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Revision"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="id" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"/> <eStructuralFeatures xsi:type="ecore:EReference" name="user" eType="#//User"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="date" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDate"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="comment" 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#//ELongObject"/> <eStructuralFeatures xsi:type="ecore:EReference" name="concreteRevisions" upperBound="-1" eType="#//ConcreteRevision" eOpposite="#//ConcreteRevision/revisions"/> <eStructuralFeatures xsi:type="ecore:EReference" name="lastConcreteRevision" eType="#//ConcreteRevision"/> <eStructuralFeatures xsi:type="ecore:EReference" name="checkouts" upperBound="-1" eType="#//Checkout" eOpposite="#//Checkout/revision"/> <eStructuralFeatures xsi:type="ecore:EReference" name="project" eType="#//Project" eOpposite="#//Project/revisions"/> <eStructuralFeatures xsi:type="ecore:EReference" name="lastClashes" upperBound="-1" eType="#//Clash"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="tag" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="lastError" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="bmi" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="nrClashes" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="laid" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//ELongObject"/> <eStructuralFeatures xsi:type="ecore:EReference" name="extendedData" upperBound="-1" eType="#//ExtendedData"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ConcreteRevision"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="id" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"/> <eStructuralFeatures xsi:type="ecore:EReference" name="project" eType="#//Project" eOpposite="#//Project/concreteRevisions"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="checksum" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EByteArray"/> <eStructuralFeatures xsi:type="ecore:EReference" name="revisions" upperBound="-1" eType="#//Revision" eOpposite="#//Revision/concreteRevisions"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="size" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//ELongObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="date" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDate"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="lastError" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="user" eType="#//User"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="GeoTag"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="enabled" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBooleanObject"/> <eStructuralFeatures xsi:type="ecore:EReference" name="projects" upperBound="-1" eType="#//Project" eOpposite="#//Project/geoTag"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="x" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDoubleObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="y" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDoubleObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="z" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDoubleObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="epsg" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="directionAngle" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDoubleObject"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Checkout"> <eStructuralFeatures xsi:type="ecore:EReference" name="user" eType="#//User"/> <eStructuralFeatures xsi:type="ecore:EReference" name="revision" eType="#//Revision" eOpposite="#//Revision/checkouts"/> <eStructuralFeatures xsi:type="ecore:EReference" name="project" eType="#//Project" eOpposite="#//Project/checkouts"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="date" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDate"/> <eStructuralFeatures xsi:type="ecore:EReference" name="checkin" eType="#//Revision"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="active" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBooleanObject"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Settings"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="showVersionUpgradeAvailable" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBooleanObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="sendConfirmationEmailAfterRegistration" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="useCaching" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBooleanObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="allowSelfRegistration" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBooleanObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="autoTestClashes" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBooleanObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="intelligentMerging" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBooleanObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="allowUsersToCreateTopLevelProjects" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="checkinMergingEnabled" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBooleanObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="registrationAddition" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="smtpServer" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="emailSenderAddress" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="customLogoAddress" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="siteAddress" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="hideUserListForNonAdmin" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBooleanObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="protocolBuffersPort" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"/> <eStructuralFeatures xsi:type="ecore:EReference" name="serializers" upperBound="-1" eType="#//Serializer" eOpposite="#//Serializer/settings"/> <eStructuralFeatures xsi:type="ecore:EReference" name="objectIDMs" upperBound="-1" eType="#//ObjectIDM" eOpposite="#//ObjectIDM/settings"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="headerAddition" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="footerAddition" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="mergeIdentifier" eType="#//MergeIdentifier"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="cacheOutputFiles" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBooleanObject"/> <eStructuralFeatures xsi:type="ecore:EReference" name="ifcEngines" upperBound="-1" eType="#//IfcEngine" eOpposite="#//IfcEngine/settings"/> <eStructuralFeatures xsi:type="ecore:EReference" name="plugins" upperBound="-1" eType="#//Plugin" eOpposite="#//Plugin/settings"/> <eStructuralFeatures xsi:type="ecore:EReference" name="deserializers" upperBound="-1" eType="#//Deserializer" eOpposite="#//Deserializer/settings"/> <eStructuralFeatures xsi:type="ecore:EReference" name="schemas" upperBound="-1" eType="#//ExtendedDataSchema" eOpposite="#//ExtendedDataSchema/settings"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Serializer"> <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="extension" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="contentType" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="className" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="enabled" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBooleanObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="defaultSerializer" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBooleanObject"/> <eStructuralFeatures xsi:type="ecore:EReference" name="objectIDM" eType="#//ObjectIDM" eOpposite="#//ObjectIDM/serializers"/> <eStructuralFeatures xsi:type="ecore:EReference" name="settings" eType="#//Settings" eOpposite="#//Settings/serializers"/> <eStructuralFeatures xsi:type="ecore:EReference" name="ifcEngine" eType="#//IfcEngine" eOpposite="#//IfcEngine/serializers"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ObjectIDM"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="className" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="enabled" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBooleanObject"/> <eStructuralFeatures xsi:type="ecore:EReference" name="serializers" upperBound="-1" eType="#//Serializer" eOpposite="#//Serializer/objectIDM"/> <eStructuralFeatures xsi:type="ecore:EReference" name="settings" eType="#//Settings" eOpposite="#//Settings/objectIDMs"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="MergeIdentifier"> <eLiterals name="NAME"/> <eLiterals name="GUID" value="1"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="IfcEngine"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="active" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBooleanObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="className" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="enabled" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBooleanObject"/> <eStructuralFeatures xsi:type="ecore:EReference" name="serializers" upperBound="-1" eType="#//Serializer" eOpposite="#//Serializer/ifcEngine"/> <eStructuralFeatures xsi:type="ecore:EReference" name="settings" eType="#//Settings" eOpposite="#//Settings/ifcEngines"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Plugin"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="enabled" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBooleanObject"/> <eStructuralFeatures xsi:type="ecore:EReference" name="settings" eType="#//Settings" eOpposite="#//Settings/plugins"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Deserializer"> <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="className" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="enabled" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBooleanObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="defaultDeserializer" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBooleanObject"/> <eStructuralFeatures xsi:type="ecore:EReference" name="settings" eType="#//Settings" eOpposite="#//Settings/deserializers"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CheckinResult"> <eStructuralFeatures xsi:type="ecore:EReference" name="revision" eType="#//Revision"/> <eStructuralFeatures xsi:type="ecore:EReference" name="project" eType="#//Project"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="progress" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="lastError" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="status" eType="#//CheckinStatus"/> </eClassifiers> <eClassifiers xsi:type="ecore:EDataType" name="DataHandler" instanceClassName="javax.activation.DataHandler"/> <eClassifiers xsi:type="ecore:EClass" name="DownloadResult"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="projectName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="revisionNr" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="file" eType="#//DataHandler"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CheckoutResult" eSuperTypes="#//DownloadResult"/> <eClassifiers xsi:type="ecore:EClass" name="DataValue"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="fieldName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="DataObject"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="type" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="guid" 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:EReference" name="values" upperBound="-1" eType="#//DataValue"> <eAnnotations source="embedsreference"/> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="UserSession"> <eStructuralFeatures xsi:type="ecore:EReference" name="user" eType="#//User"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="username" 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="type" eType="#//UserType"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="remoteAddress" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="activeSince" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDate"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="lastActive" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDate"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="accessMethod" eType="ecore:EEnum log#//AccessMethod"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Migration"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="number" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="description" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="executed" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBooleanObject"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ReferenceDataValue" eSuperTypes="#//DataValue"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="typeName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="guid" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ListDataValue" eSuperTypes="#//DataValue"> <eStructuralFeatures xsi:type="ecore:EReference" name="values" upperBound="-1" eType="#//DataValue"> <eAnnotations source="embedsreference"/> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="SimpleDataValue" eSuperTypes="#//DataValue"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="stringValue" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="DatabaseInformationItem"> <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="DatabaseInformationCategory"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="title" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="items" upperBound="-1" eType="#//DatabaseInformationItem"> <eAnnotations source="embedsreference"/> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="DatabaseInformation"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="numberOfProjects" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="numberOfUsers" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="numberOfRevisions" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="numberOfCheckouts" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="databaseSizeInBytes" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//ELongObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="type" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="created" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDate"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="location" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="schemaVersion" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"/> <eStructuralFeatures xsi:type="ecore:EReference" name="categories" upperBound="-1" eType="#//DatabaseInformationCategory"> <eAnnotations source="embedsreference"/> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="SerializerPluginDescriptor"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="pluginClassName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="defaultName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="defaultExtension" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="defaultContentType" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="DeserializerPluginDescriptor"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="pluginClassName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="defaultName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="RevisionSummaryType"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="count" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="RevisionSummaryContainer"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="types" upperBound="-1" eType="#//RevisionSummaryType"> <eAnnotations source="embedsreference"/> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="RevisionSummary"> <eStructuralFeatures xsi:type="ecore:EReference" name="list" upperBound="-1" eType="#//RevisionSummaryContainer"> <eAnnotations source="embedsreference"/> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="PluginDescriptor"> <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="location" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="enabled" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBooleanObject"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="LongAction"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="identification" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="user" eType="#//User"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="start" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDate"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="username" 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="LongCheckinAction" eSuperTypes="#//LongAction"> <eStructuralFeatures xsi:type="ecore:EReference" name="revisions" upperBound="-1" eType="#//Revision"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ObjectIDMPluginDescriptor"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="className" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="CompareIdentifier"> <eLiterals name="NAME_ID"/> <eLiterals name="GUID_ID" value="1"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="CompareType"> <eLiterals name="ALL"/> <eLiterals name="ADD" value="1"/> <eLiterals name="MODIFY" value="2"/> <eLiterals name="DELETE" value="3"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CompareItem"> <eStructuralFeatures xsi:type="ecore:EReference" name="dataObject" eType="#//DataObject"> <eAnnotations source="embedsreference"/> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ObjectAdded" eSuperTypes="#//CompareItem"/> <eClassifiers xsi:type="ecore:EClass" name="ObjectRemoved" eSuperTypes="#//CompareItem"/> <eClassifiers xsi:type="ecore:EClass" name="ObjectModified" eSuperTypes="#//CompareItem"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="fieldName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <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"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CompareContainer"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="type" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="items" upperBound="-1" eType="#//CompareItem"> <eAnnotations source="embedsreference"/> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CompareResult"> <eStructuralFeatures xsi:type="ecore:EReference" name="items" upperBound="-1" eType="#//CompareContainer"> <eAnnotations source="embedsreference"/> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="ActionState"> <eLiterals name="UNKNOWN"/> <eLiterals name="STARTED" value="1"/> <eLiterals name="FINISHED" value="2"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="LongActionState"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="progress" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="state" eType="#//ActionState"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Notification"/> <eClassifiers xsi:type="ecore:EClass" name="NewProjectNotification" eSuperTypes="#//Notification"> <eStructuralFeatures xsi:type="ecore:EReference" name="project" eType="#//Project"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="NewRevisionNotification" eSuperTypes="#//Notification"> <eStructuralFeatures xsi:type="ecore:EReference" name="revision" eType="#//Revision"/> <eStructuralFeatures xsi:type="ecore:EReference" name="project" eType="#//Project"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CompileResult"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="compileOke" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBooleanObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="warnings" upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="errors" upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="RunResult"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="runOke" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBooleanObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="warnings" upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="errors" upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="output" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="ServerState"> <eLiterals name="UNDEFINED"/> <eLiterals name="NOT_SETUP" value="1"/> <eLiterals name="MIGRATION_REQUIRED" value="2"/> <eLiterals name="MIGRATION_IMPOSSIBLE" value="3"/> <eLiterals name="FATAL_ERROR" value="4"/> <eLiterals name="RUNNING" value="5"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ServerInfo"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="serverState" eType="#//ServerState"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="errorMessage" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Version"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="major" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="minor" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="revision" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="date" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDate"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="downloadUrl" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="supportUrl" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="supportEmail" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="IfcEnginePluginDescriptor"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="pluginClassName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="defaultName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="CheckinStatus"> <eLiterals name="CH_NONE"/> <eLiterals name="CH_STARTED" value="1"/> <eLiterals name="CH_FINISHED" value="2"/> <eLiterals name="CH_ERROR" value="3"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="ExtendedDataSchemaType"> <eLiterals name="XSD"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ExtendedDataSchema"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="url" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="data" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EByteArray"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="validate" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="type" eType="#//ExtendedDataSchemaType"/> <eStructuralFeatures xsi:type="ecore:EReference" name="settings" eType="#//Settings" eOpposite="#//Settings/schemas"/> <eStructuralFeatures xsi:type="ecore:EReference" name="users" upperBound="-1" eType="#//User" eOpposite="#//User/schemas"/> <eStructuralFeatures xsi:type="ecore:EReference" name="extendedData" upperBound="-1" eType="#//ExtendedData" eOpposite="#//ExtendedData/schema"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ExtendedData"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="url" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="data" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EByteArray"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="title" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="added" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDate"/> <eStructuralFeatures xsi:type="ecore:EReference" name="user" eType="#//User" eOpposite="#//User/extendedData"/> <eStructuralFeatures xsi:type="ecore:EReference" name="schema" eType="#//ExtendedDataSchema" eOpposite="#//ExtendedDataSchema/extendedData"/> </eClassifiers> </ecore:EPackage>
github:ecore:/data/fvde/crudml/tum.ma.crudml/store.ecore
ecore
store UserType SYSTEM SYSTEM ADMIN ADMIN USER USER READ_ONLY READ_ONLY SIPrefix meter meter attometer attometer femtometer femtometer picometer picometer nanometer nanometer micrometer micrometer millimeter millimeter centimeter centimeter decimeter decimeter decameter decameter hectometer hectometer kilometer kilometer megameter megameter gigameter gigameter terameter terameter petameter petameter exameter exameter ObjectState ACTIVE ACTIVE DELETED DELETED Project id name hasAuthorizedUsers concreteRevisions revisions lastConcreteRevision lastRevision checkouts state createdDate createdBy geoTag subProjects parent description clashDetectionSettings exportLengthMeasurePrefix extendedData User name password hasRightsOn revisions state createdOn createdBy userType username lastSeen validationToken validationTokenCreated notificationUrl schemas extendedData Clash name1 name2 type1 type2 revision1 revision2 EidClash eid1 eid2 GuidClash guid1 guid2 ClashDetectionSettings enabled projects margin revisions ignoredClasses Revision id user date comment size concreteRevisions lastConcreteRevision checkouts project lastClashes tag lastError bmi nrClashes laid extendedData ConcreteRevision id project checksum revisions size date lastError user GeoTag enabled projects x y z epsg directionAngle Checkout user revision project date checkin active Settings showVersionUpgradeAvailable sendConfirmationEmailAfterRegistration useCaching allowSelfRegistration autoTestClashes intelligentMerging allowUsersToCreateTopLevelProjects checkinMergingEnabled registrationAddition smtpServer emailSenderAddress customLogoAddress siteAddress hideUserListForNonAdmin protocolBuffersPort serializers objectIDMs headerAddition footerAddition mergeIdentifier cacheOutputFiles ifcEngines plugins deserializers schemas Serializer name description extension contentType className enabled defaultSerializer objectIDM settings ifcEngine ObjectIDM name className enabled serializers settings MergeIdentifier NAME NAME GUID GUID IfcEngine name active className enabled serializers settings Plugin name enabled settings Deserializer name description className enabled defaultDeserializer settings CheckinResult revision project progress lastError status DataHandler javax.activation.DataHandler javax.activation.DataHandler DownloadResult projectName revisionNr file CheckoutResult DataValue fieldName DataObject type guid name values UserSession user username name type remoteAddress activeSince lastActive accessMethod Migration number description executed ReferenceDataValue typeName guid ListDataValue values SimpleDataValue stringValue DatabaseInformationItem key value DatabaseInformationCategory title items DatabaseInformation numberOfProjects numberOfUsers numberOfRevisions numberOfCheckouts databaseSizeInBytes type created location schemaVersion categories SerializerPluginDescriptor pluginClassName defaultName defaultExtension defaultContentType DeserializerPluginDescriptor pluginClassName defaultName RevisionSummaryType name count RevisionSummaryContainer name types RevisionSummary list PluginDescriptor name description location enabled LongAction identification user start username name LongCheckinAction revisions ObjectIDMPluginDescriptor className CompareIdentifier NAME_ID NAME_ID GUID_ID GUID_ID CompareType ALL ALL ADD ADD MODIFY MODIFY DELETE DELETE CompareItem dataObject ObjectAdded ObjectRemoved ObjectModified fieldName oldValue newValue CompareContainer type items CompareResult items ActionState UNKNOWN UNKNOWN STARTED STARTED FINISHED FINISHED LongActionState progress state Notification NewProjectNotification project NewRevisionNotification revision project CompileResult compileOke warnings errors RunResult runOke warnings errors output ServerState UNDEFINED UNDEFINED NOT_SETUP NOT_SETUP MIGRATION_REQUIRED MIGRATION_REQUIRED MIGRATION_IMPOSSIBLE MIGRATION_IMPOSSIBLE FATAL_ERROR FATAL_ERROR RUNNING RUNNING ServerInfo serverState errorMessage Version major minor revision date downloadUrl supportUrl supportEmail IfcEnginePluginDescriptor pluginClassName defaultName CheckinStatus CH_NONE CH_NONE CH_STARTED CH_STARTED CH_FINISHED CH_FINISHED CH_ERROR CH_ERROR ExtendedDataSchemaType XSD XSD ExtendedDataSchema name url data validate type settings users extendedData ExtendedData url data title added user schema
null
{"directed":true,"nodes":[{"nsPrefix":"store","nsURI":"store","name":"store","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"instanceClassName":null,"name":"UserType","instanceClass":null,"id":1,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"SIPrefix","instanceClass":null,"id":2,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"ObjectState","instanceClass":null,"id":3,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Project","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"User","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Clash","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EidClash","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"GuidClash","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ClashDetectionSettings","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Revision","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ConcreteRevision","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"GeoTag","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Checkout","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Settings","instanceClass":null,"abstract":false,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Serializer","instanceClass":null,"abstract":false,"id":15,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ObjectIDM","instanceClass":null,"abstract":false,"id":16,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"MergeIdentifier","instanceClass":null,"id":17,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IfcEngine","instanceClass":null,"abstract":false,"id":18,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Plugin","instanceClass":null,"abstract":false,"id":19,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Deserializer","instanceClass":null,"abstract":false,"id":20,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CheckinResult","instanceClass":null,"abstract":false,"id":21,"interface":false,"eClass":"EClass"},{"instanceTypeName":"javax.activation.DataHandler","defaultValue":null,"instanceClassName":"javax.activation.DataHandler","name":"DataHandler","instanceClass":null,"id":22,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DownloadResult","instanceClass":null,"abstract":false,"id":23,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CheckoutResult","instanceClass":null,"abstract":false,"id":24,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DataValue","instanceClass":null,"abstract":false,"id":25,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DataObject","instanceClass":null,"abstract":false,"id":26,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"UserSession","instanceClass":null,"abstract":false,"id":27,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Migration","instanceClass":null,"abstract":false,"id":28,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ReferenceDataValue","instanceClass":null,"abstract":false,"id":29,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ListDataValue","instanceClass":null,"abstract":false,"id":30,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SimpleDataValue","instanceClass":null,"abstract":false,"id":31,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DatabaseInformationItem","instanceClass":null,"abstract":false,"id":32,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DatabaseInformationCategory","instanceClass":null,"abstract":false,"id":33,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DatabaseInformation","instanceClass":null,"abstract":false,"id":34,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SerializerPluginDescriptor","instanceClass":null,"abstract":false,"id":35,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DeserializerPluginDescriptor","instanceClass":null,"abstract":false,"id":36,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RevisionSummaryType","instanceClass":null,"abstract":false,"id":37,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RevisionSummaryContainer","instanceClass":null,"abstract":false,"id":38,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RevisionSummary","instanceClass":null,"abstract":false,"id":39,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PluginDescriptor","instanceClass":null,"abstract":false,"id":40,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LongAction","instanceClass":null,"abstract":false,"id":41,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LongCheckinAction","instanceClass":null,"abstract":false,"id":42,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ObjectIDMPluginDescriptor","instanceClass":null,"abstract":false,"id":43,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"CompareIdentifier","instanceClass":null,"id":44,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"CompareType","instanceClass":null,"id":45,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CompareItem","instanceClass":null,"abstract":false,"id":46,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ObjectAdded","instanceClass":null,"abstract":false,"id":47,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ObjectRemoved","instanceClass":null,"abstract":false,"id":48,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ObjectModified","instanceClass":null,"abstract":false,"id":49,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CompareContainer","instanceClass":null,"abstract":false,"id":50,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CompareResult","instanceClass":null,"abstract":false,"id":51,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"ActionState","instanceClass":null,"id":52,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LongActionState","instanceClass":null,"abstract":false,"id":53,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Notification","instanceClass":null,"abstract":false,"id":54,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NewProjectNotification","instanceClass":null,"abstract":false,"id":55,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NewRevisionNotification","instanceClass":null,"abstract":false,"id":56,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CompileResult","instanceClass":null,"abstract":false,"id":57,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RunResult","instanceClass":null,"abstract":false,"id":58,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"ServerState","instanceClass":null,"id":59,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ServerInfo","instanceClass":null,"abstract":false,"id":60,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Version","instanceClass":null,"abstract":false,"id":61,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IfcEnginePluginDescriptor","instanceClass":null,"abstract":false,"id":62,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"CheckinStatus","instanceClass":null,"id":63,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"ExtendedDataSchemaType","instanceClass":null,"id":64,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExtendedDataSchema","instanceClass":null,"abstract":false,"id":65,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExtendedData","instanceClass":null,"abstract":false,"id":66,"interface":false,"eClass":"EClass"},{"name":"SYSTEM","id":67,"value":0,"literal":"SYSTEM","eClass":"EEnumLiteral"},{"name":"ADMIN","id":68,"value":1,"literal":"ADMIN","eClass":"EEnumLiteral"},{"name":"USER","id":69,"value":2,"literal":"USER","eClass":"EEnumLiteral"},{"name":"READ_ONLY","id":70,"value":3,"literal":"READ_ONLY","eClass":"EEnumLiteral"},{"name":"meter","id":71,"value":0,"literal":"meter","eClass":"EEnumLiteral"},{"name":"attometer","id":72,"value":-18,"literal":"attometer","eClass":"EEnumLiteral"},{"name":"femtometer","id":73,"value":-15,"literal":"femtometer","eClass":"EEnumLiteral"},{"name":"picometer","id":74,"value":-12,"literal":"picometer","eClass":"EEnumLiteral"},{"name":"nanometer","id":75,"value":-9,"literal":"nanometer","eClass":"EEnumLiteral"},{"name":"micrometer","id":76,"value":-6,"literal":"micrometer","eClass":"EEnumLiteral"},{"name":"millimeter","id":77,"value":-3,"literal":"millimeter","eClass":"EEnumLiteral"},{"name":"centimeter","id":78,"value":-2,"literal":"centimeter","eClass":"EEnumLiteral"},{"name":"decimeter","id":79,"value":-1,"literal":"decimeter","eClass":"EEnumLiteral"},{"name":"decameter","id":80,"value":1,"literal":"decameter","eClass":"EEnumLiteral"},{"name":"hectometer","id":81,"value":2,"literal":"hectometer","eClass":"EEnumLiteral"},{"name":"kilometer","id":82,"value":3,"literal":"kilometer","eClass":"EEnumLiteral"},{"name":"megameter","id":83,"value":6,"literal":"megameter","eClass":"EEnumLiteral"},{"name":"gigameter","id":84,"value":9,"literal":"gigameter","eClass":"EEnumLiteral"},{"name":"terameter","id":85,"value":12,"literal":"terameter","eClass":"EEnumLiteral"},{"name":"petameter","id":86,"value":15,"literal":"petameter","eClass":"EEnumLiteral"},{"name":"exameter","id":87,"value":18,"literal":"exameter","eClass":"EEnumLiteral"},{"name":"ACTIVE","id":88,"value":0,"literal":"ACTIVE","eClass":"EEnumLiteral"},{"name":"DELETED","id":89,"value":1,"literal":"DELETED","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":false,"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},{"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":"hasAuthorizedUsers","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":false,"unsettable":false,"transient":false,"unique":true,"name":"concreteRevisions","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":false,"unsettable":false,"transient":false,"unique":true,"name":"revisions","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":"lastConcreteRevision","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":"lastRevision","changeable":true,"resolveProxies":true,"lowerBound":0,"id":96,"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":"checkouts","changeable":true,"resolveProxies":true,"lowerBound":0,"id":97,"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":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":"createdDate","changeable":true,"lowerBound":0,"iD":false,"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":"createdBy","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":"geoTag","changeable":true,"resolveProxies":true,"lowerBound":0,"id":101,"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":"subProjects","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":"parent","changeable":true,"resolveProxies":true,"lowerBound":0,"id":103,"derived":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":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":"clashDetectionSettings","changeable":true,"resolveProxies":true,"lowerBound":0,"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":"exportLengthMeasurePrefix","changeable":true,"lowerBound":0,"iD":false,"id":106,"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":"extendedData","changeable":true,"resolveProxies":true,"lowerBound":0,"id":107,"derived":false},{"id":108,"eClass":"EGenericType"},{"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":false,"unsettable":false,"transient":false,"unique":true,"name":"hasRightsOn","changeable":true,"resolveProxies":true,"lowerBound":0,"id":111,"derived":false},{"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":"project","changeable":true,"resolveProxies":true,"lowerBound":0,"id":113,"derived":false},{"id":114,"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":115,"derived":false},{"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":false,"unsettable":false,"transient":false,"unique":true,"name":"project","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"},{"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":"projects","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"},{"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":"projects","changeable":true,"resolveProxies":true,"lowerBound":0,"id":129,"derived":false},{"id":130,"eClass":"EGenericType"},{"id":131,"eClass":"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":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":"password","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":"revisions","changeable":true,"resolveProxies":true,"lowerBound":0,"id":134,"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":135,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"createdOn","changeable":true,"lowerBound":0,"iD":false,"id":136,"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":"createdBy","changeable":true,"resolveProxies":true,"lowerBound":0,"id":137,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"userType","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":"username","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":"lastSeen","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":"validationToken","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":"validationTokenCreated","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":"notificationUrl","changeable":true,"lowerBound":0,"iD":false,"id":143,"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":"schemas","changeable":true,"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":false,"unsettable":false,"transient":false,"unique":true,"name":"extendedData","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"},{"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"},{"id":157,"eClass":"EGenericType"},{"id":158,"eClass":"EGenericType"},{"id":159,"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":"users","changeable":true,"resolveProxies":true,"lowerBound":0,"id":160,"derived":false},{"id":161,"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":"user","changeable":true,"resolveProxies":true,"lowerBound":0,"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":"name1","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":"name2","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":"type1","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":"type2","changeable":true,"lowerBound":0,"iD":false,"id":166,"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":"revision1","changeable":true,"resolveProxies":true,"lowerBound":0,"id":167,"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":"revision2","changeable":true,"resolveProxies":true,"lowerBound":0,"id":168,"derived":false},{"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":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"eid1","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":"eid2","changeable":true,"lowerBound":0,"iD":false,"id":176,"derived":false},{"id":177,"eClass":"EGenericType"},{"id":178,"eClass":"EGenericType"},{"id":179,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"guid1","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":"guid2","changeable":true,"lowerBound":0,"iD":false,"id":181,"derived":false},{"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":"enabled","changeable":true,"lowerBound":0,"iD":false,"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":"margin","changeable":true,"lowerBound":0,"iD":false,"id":186,"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":"revisions","changeable":true,"resolveProxies":true,"lowerBound":0,"id":187,"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":"ignoredClasses","changeable":true,"lowerBound":0,"iD":false,"id":188,"derived":false},{"id":189,"eClass":"EGenericType"},{"id":190,"eClass":"EGenericType"},{"id":191,"eClass":"EGenericType"},{"id":192,"eClass":"EGenericType"},{"id":193,"eClass":"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":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":"user","changeable":true,"resolveProxies":true,"lowerBound":0,"id":195,"derived":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":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":"comment","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":"size","changeable":true,"lowerBound":0,"iD":false,"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":"concreteRevisions","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":false,"unsettable":false,"transient":false,"unique":true,"name":"lastConcreteRevision","changeable":true,"resolveProxies":true,"lowerBound":0,"id":200,"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":"checkouts","changeable":true,"resolveProxies":true,"lowerBound":0,"id":201,"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":"lastClashes","changeable":true,"resolveProxies":true,"lowerBound":0,"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":"tag","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":"lastError","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":"bmi","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":"nrClashes","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":"laid","changeable":true,"lowerBound":0,"iD":false,"id":207,"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":"extendedData","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"},{"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":"revisions","changeable":true,"resolveProxies":true,"lowerBound":0,"id":215,"derived":false},{"id":216,"eClass":"EGenericType"},{"id":217,"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":"revision","changeable":true,"resolveProxies":true,"lowerBound":0,"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"},{"id":225,"eClass":"EGenericType"},{"id":226,"eClass":"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":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":"checksum","changeable":true,"lowerBound":0,"iD":false,"id":228,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"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":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":"date","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":"lastError","changeable":true,"lowerBound":0,"iD":false,"id":231,"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":"user","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"},{"id":237,"eClass":"EGenericType"},{"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":"enabled","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":"x","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":"y","changeable":true,"lowerBound":0,"iD":false,"id":243,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"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":244,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"epsg","changeable":true,"lowerBound":0,"iD":false,"id":245,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"directionAngle","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"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"user","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":"date","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":false,"unsettable":false,"transient":false,"unique":true,"name":"checkin","changeable":true,"resolveProxies":true,"lowerBound":0,"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":"active","changeable":true,"lowerBound":0,"iD":false,"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"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"showVersionUpgradeAvailable","changeable":true,"lowerBound":0,"iD":false,"id":264,"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":"sendConfirmationEmailAfterRegistration","changeable":true,"lowerBound":0,"iD":false,"id":265,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"useCaching","changeable":true,"lowerBound":0,"iD":false,"id":266,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"allowSelfRegistration","changeable":true,"lowerBound":0,"iD":false,"id":267,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"autoTestClashes","changeable":true,"lowerBound":0,"iD":false,"id":268,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"intelligentMerging","changeable":true,"lowerBound":0,"iD":false,"id":269,"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":"allowUsersToCreateTopLevelProjects","changeable":true,"lowerBound":0,"iD":false,"id":270,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"checkinMergingEnabled","changeable":true,"lowerBound":0,"iD":false,"id":271,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"registrationAddition","changeable":true,"lowerBound":0,"iD":false,"id":272,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"smtpServer","changeable":true,"lowerBound":0,"iD":false,"id":273,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"emailSenderAddress","changeable":true,"lowerBound":0,"iD":false,"id":274,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"customLogoAddress","changeable":true,"lowerBound":0,"iD":false,"id":275,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"siteAddress","changeable":true,"lowerBound":0,"iD":false,"id":276,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"hideUserListForNonAdmin","changeable":true,"lowerBound":0,"iD":false,"id":277,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"protocolBuffersPort","changeable":true,"lowerBound":0,"iD":false,"id":278,"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":"serializers","changeable":true,"resolveProxies":true,"lowerBound":0,"id":279,"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":"objectIDMs","changeable":true,"resolveProxies":true,"lowerBound":0,"id":280,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"headerAddition","changeable":true,"lowerBound":0,"iD":false,"id":281,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"footerAddition","changeable":true,"lowerBound":0,"iD":false,"id":282,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"mergeIdentifier","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":"cacheOutputFiles","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":false,"unsettable":false,"transient":false,"unique":true,"name":"ifcEngines","changeable":true,"resolveProxies":true,"lowerBound":0,"id":285,"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":"plugins","changeable":true,"resolveProxies":true,"lowerBound":0,"id":286,"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":"deserializers","changeable":true,"resolveProxies":true,"lowerBound":0,"id":287,"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":"schemas","changeable":true,"resolveProxies":true,"lowerBound":0,"id":288,"derived":false},{"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"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"settings","changeable":true,"resolveProxies":true,"lowerBound":0,"id":305,"derived":false},{"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":"settings","changeable":true,"resolveProxies":true,"lowerBound":0,"id":307,"derived":false},{"id":308,"eClass":"EGenericType"},{"id":309,"eClass":"EGenericType"},{"id":310,"eClass":"EGenericType"},{"id":311,"eClass":"EGenericType"},{"id":312,"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":"settings","changeable":true,"resolveProxies":true,"lowerBound":0,"id":313,"derived":false},{"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":"settings","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":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"settings","changeable":true,"resolveProxies":true,"lowerBound":0,"id":317,"derived":false},{"id":318,"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":"settings","changeable":true,"resolveProxies":true,"lowerBound":0,"id":319,"derived":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":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":"description","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":"extension","changeable":true,"lowerBound":0,"iD":false,"id":322,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"contentType","changeable":true,"lowerBound":0,"iD":false,"id":323,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"className","changeable":true,"lowerBound":0,"iD":false,"id":324,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"enabled","changeable":true,"lowerBound":0,"iD":false,"id":325,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"defaultSerializer","changeable":true,"lowerBound":0,"iD":false,"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":"objectIDM","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":"ifcEngine","changeable":true,"resolveProxies":true,"lowerBound":0,"id":328,"derived":false},{"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"},{"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":"serializers","changeable":true,"resolveProxies":true,"lowerBound":0,"id":337,"derived":false},{"id":338,"eClass":"EGenericType"},{"id":339,"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":"serializers","changeable":true,"resolveProxies":true,"lowerBound":0,"id":340,"derived":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":341,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"className","changeable":true,"lowerBound":0,"iD":false,"id":342,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"enabled","changeable":true,"lowerBound":0,"iD":false,"id":343,"derived":false},{"id":344,"eClass":"EGenericType"},{"id":345,"eClass":"EGenericType"},{"id":346,"eClass":"EGenericType"},{"id":347,"eClass":"EGenericType"},{"id":348,"eClass":"EGenericType"},{"name":"NAME","id":349,"value":0,"literal":"NAME","eClass":"EEnumLiteral"},{"name":"GUID","id":350,"value":1,"literal":"GUID","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":351,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"active","changeable":true,"lowerBound":0,"iD":false,"id":352,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"className","changeable":true,"lowerBound":0,"iD":false,"id":353,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"enabled","changeable":true,"lowerBound":0,"iD":false,"id":354,"derived":false},{"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":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":361,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"enabled","changeable":true,"lowerBound":0,"iD":false,"id":362,"derived":false},{"id":363,"eClass":"EGenericType"},{"id":364,"eClass":"EGenericType"},{"id":365,"eClass":"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":366,"derived":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":367,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"className","changeable":true,"lowerBound":0,"iD":false,"id":368,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"enabled","changeable":true,"lowerBound":0,"iD":false,"id":369,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"defaultDeserializer","changeable":true,"lowerBound":0,"iD":false,"id":370,"derived":false},{"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":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"revision","changeable":true,"resolveProxies":true,"lowerBound":0,"id":377,"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":"project","changeable":true,"resolveProxies":true,"lowerBound":0,"id":378,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"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":379,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"lastError","changeable":true,"lowerBound":0,"iD":false,"id":380,"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":381,"derived":false},{"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":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"projectName","changeable":true,"lowerBound":0,"iD":false,"id":387,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"revisionNr","changeable":true,"lowerBound":0,"iD":false,"id":388,"derived":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":389,"derived":false},{"id":390,"eClass":"EGenericType"},{"id":391,"eClass":"EGenericType"},{"id":392,"eClass":"EGenericType"},{"id":393,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"fieldName","changeable":true,"lowerBound":0,"iD":false,"id":394,"derived":false},{"id":395,"eClass":"EGenericType"},{"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":396,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"guid","changeable":true,"lowerBound":0,"iD":false,"id":397,"derived":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":398,"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":"values","changeable":true,"resolveProxies":true,"lowerBound":0,"id":399,"derived":false},{"id":400,"eClass":"EGenericType"},{"id":401,"eClass":"EGenericType"},{"id":402,"eClass":"EGenericType"},{"id":403,"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":"user","changeable":true,"resolveProxies":true,"lowerBound":0,"id":404,"derived":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":405,"derived":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":406,"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":407,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"remoteAddress","changeable":true,"lowerBound":0,"iD":false,"id":408,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"activeSince","changeable":true,"lowerBound":0,"iD":false,"id":409,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"lastActive","changeable":true,"lowerBound":0,"iD":false,"id":410,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"accessMethod","changeable":true,"lowerBound":0,"iD":false,"id":411,"derived":false},{"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"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"number","changeable":true,"lowerBound":0,"iD":false,"id":420,"derived":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":421,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"executed","changeable":true,"lowerBound":0,"iD":false,"id":422,"derived":false},{"id":423,"eClass":"EGenericType"},{"id":424,"eClass":"EGenericType"},{"id":425,"eClass":"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":426,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"guid","changeable":true,"lowerBound":0,"iD":false,"id":427,"derived":false},{"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":false,"unsettable":false,"transient":false,"unique":true,"name":"values","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":"stringValue","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":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"key","changeable":true,"lowerBound":0,"iD":false,"id":437,"derived":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":438,"derived":false},{"id":439,"eClass":"EGenericType"},{"id":440,"eClass":"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":441,"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":"items","changeable":true,"resolveProxies":true,"lowerBound":0,"id":442,"derived":false},{"id":443,"eClass":"EGenericType"},{"id":444,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"numberOfProjects","changeable":true,"lowerBound":0,"iD":false,"id":445,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"numberOfUsers","changeable":true,"lowerBound":0,"iD":false,"id":446,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"numberOfRevisions","changeable":true,"lowerBound":0,"iD":false,"id":447,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"numberOfCheckouts","changeable":true,"lowerBound":0,"iD":false,"id":448,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"databaseSizeInBytes","changeable":true,"lowerBound":0,"iD":false,"id":449,"derived":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":450,"derived":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":451,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"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":452,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"schemaVersion","changeable":true,"lowerBound":0,"iD":false,"id":453,"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":"categories","changeable":true,"resolveProxies":true,"lowerBound":0,"id":454,"derived":false},{"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"},{"id":462,"eClass":"EGenericType"},{"id":463,"eClass":"EGenericType"},{"id":464,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"pluginClassName","changeable":true,"lowerBound":0,"iD":false,"id":465,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"defaultName","changeable":true,"lowerBound":0,"iD":false,"id":466,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"defaultExtension","changeable":true,"lowerBound":0,"iD":false,"id":467,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"defaultContentType","changeable":true,"lowerBound":0,"iD":false,"id":468,"derived":false},{"id":469,"eClass":"EGenericType"},{"id":470,"eClass":"EGenericType"},{"id":471,"eClass":"EGenericType"},{"id":472,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"pluginClassName","changeable":true,"lowerBound":0,"iD":false,"id":473,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"defaultName","changeable":true,"lowerBound":0,"iD":false,"id":474,"derived":false},{"id":475,"eClass":"EGenericType"},{"id":476,"eClass":"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":477,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"count","changeable":true,"lowerBound":0,"iD":false,"id":478,"derived":false},{"id":479,"eClass":"EGenericType"},{"id":480,"eClass":"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":481,"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":"types","changeable":true,"resolveProxies":true,"lowerBound":0,"id":482,"derived":false},{"id":483,"eClass":"EGenericType"},{"id":484,"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":"list","changeable":true,"resolveProxies":true,"lowerBound":0,"id":485,"derived":false},{"id":486,"eClass":"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":487,"derived":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":488,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"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":489,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"enabled","changeable":true,"lowerBound":0,"iD":false,"id":490,"derived":false},{"id":491,"eClass":"EGenericType"},{"id":492,"eClass":"EGenericType"},{"id":493,"eClass":"EGenericType"},{"id":494,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"identification","changeable":true,"lowerBound":0,"iD":false,"id":495,"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":"user","changeable":true,"resolveProxies":true,"lowerBound":0,"id":496,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"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":497,"derived":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":498,"derived":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":499,"derived":false},{"id":500,"eClass":"EGenericType"},{"id":501,"eClass":"EGenericType"},{"id":502,"eClass":"EGenericType"},{"id":503,"eClass":"EGenericType"},{"id":504,"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":"revisions","changeable":true,"resolveProxies":true,"lowerBound":0,"id":505,"derived":false},{"id":506,"eClass":"EGenericType"},{"id":507,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"className","changeable":true,"lowerBound":0,"iD":false,"id":508,"derived":false},{"id":509,"eClass":"EGenericType"},{"name":"NAME_ID","id":510,"value":0,"literal":"NAME_ID","eClass":"EEnumLiteral"},{"name":"GUID_ID","id":511,"value":1,"literal":"GUID_ID","eClass":"EEnumLiteral"},{"name":"ALL","id":512,"value":0,"literal":"ALL","eClass":"EEnumLiteral"},{"name":"ADD","id":513,"value":1,"literal":"ADD","eClass":"EEnumLiteral"},{"name":"MODIFY","id":514,"value":2,"literal":"MODIFY","eClass":"EEnumLiteral"},{"name":"DELETE","id":515,"value":3,"literal":"DELETE","eClass":"EEnumLiteral"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"dataObject","changeable":true,"resolveProxies":true,"lowerBound":0,"id":516,"derived":false},{"id":517,"eClass":"EGenericType"},{"id":518,"eClass":"EGenericType"},{"id":519,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"fieldName","changeable":true,"lowerBound":0,"iD":false,"id":520,"derived":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":521,"derived":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":522,"derived":false},{"id":523,"eClass":"EGenericType"},{"id":524,"eClass":"EGenericType"},{"id":525,"eClass":"EGenericType"},{"id":526,"eClass":"EGenericType"},{"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":527,"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":"items","changeable":true,"resolveProxies":true,"lowerBound":0,"id":528,"derived":false},{"id":529,"eClass":"EGenericType"},{"id":530,"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":"items","changeable":true,"resolveProxies":true,"lowerBound":0,"id":531,"derived":false},{"id":532,"eClass":"EGenericType"},{"name":"UNKNOWN","id":533,"value":0,"literal":"UNKNOWN","eClass":"EEnumLiteral"},{"name":"STARTED","id":534,"value":1,"literal":"STARTED","eClass":"EEnumLiteral"},{"name":"FINISHED","id":535,"value":2,"literal":"FINISHED","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":"progress","changeable":true,"lowerBound":0,"iD":false,"id":536,"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":537,"derived":false},{"id":538,"eClass":"EGenericType"},{"id":539,"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":540,"derived":false},{"id":541,"eClass":"EGenericType"},{"id":542,"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":"revision","changeable":true,"resolveProxies":true,"lowerBound":0,"id":543,"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":"project","changeable":true,"resolveProxies":true,"lowerBound":0,"id":544,"derived":false},{"id":545,"eClass":"EGenericType"},{"id":546,"eClass":"EGenericType"},{"id":547,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"compileOke","changeable":true,"lowerBound":0,"iD":false,"id":548,"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":"warnings","changeable":true,"lowerBound":0,"iD":false,"id":549,"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":"errors","changeable":true,"lowerBound":0,"iD":false,"id":550,"derived":false},{"id":551,"eClass":"EGenericType"},{"id":552,"eClass":"EGenericType"},{"id":553,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"runOke","changeable":true,"lowerBound":0,"iD":false,"id":554,"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":"warnings","changeable":true,"lowerBound":0,"iD":false,"id":555,"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":"errors","changeable":true,"lowerBound":0,"iD":false,"id":556,"derived":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","changeable":true,"lowerBound":0,"iD":false,"id":557,"derived":false},{"id":558,"eClass":"EGenericType"},{"id":559,"eClass":"EGenericType"},{"id":560,"eClass":"EGenericType"},{"id":561,"eClass":"EGenericType"},{"name":"UNDEFINED","id":562,"value":0,"literal":"UNDEFINED","eClass":"EEnumLiteral"},{"name":"NOT_SETUP","id":563,"value":1,"literal":"NOT_SETUP","eClass":"EEnumLiteral"},{"name":"MIGRATION_REQUIRED","id":564,"value":2,"literal":"MIGRATION_REQUIRED","eClass":"EEnumLiteral"},{"name":"MIGRATION_IMPOSSIBLE","id":565,"value":3,"literal":"MIGRATION_IMPOSSIBLE","eClass":"EEnumLiteral"},{"name":"FATAL_ERROR","id":566,"value":4,"literal":"FATAL_ERROR","eClass":"EEnumLiteral"},{"name":"RUNNING","id":567,"value":5,"literal":"RUNNING","eClass":"EEnumLiteral"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"serverState","changeable":true,"lowerBound":0,"iD":false,"id":568,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"errorMessage","changeable":true,"lowerBound":0,"iD":false,"id":569,"derived":false},{"id":570,"eClass":"EGenericType"},{"id":571,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"major","changeable":true,"lowerBound":0,"iD":false,"id":572,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"minor","changeable":true,"lowerBound":0,"iD":false,"id":573,"derived":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":574,"derived":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":575,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"downloadUrl","changeable":true,"lowerBound":0,"iD":false,"id":576,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"supportUrl","changeable":true,"lowerBound":0,"iD":false,"id":577,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"supportEmail","changeable":true,"lowerBound":0,"iD":false,"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"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"pluginClassName","changeable":true,"lowerBound":0,"iD":false,"id":586,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"defaultName","changeable":true,"lowerBound":0,"iD":false,"id":587,"derived":false},{"id":588,"eClass":"EGenericType"},{"id":589,"eClass":"EGenericType"},{"name":"CH_NONE","id":590,"value":0,"literal":"CH_NONE","eClass":"EEnumLiteral"},{"name":"CH_STARTED","id":591,"value":1,"literal":"CH_STARTED","eClass":"EEnumLiteral"},{"name":"CH_FINISHED","id":592,"value":2,"literal":"CH_FINISHED","eClass":"EEnumLiteral"},{"name":"CH_ERROR","id":593,"value":3,"literal":"CH_ERROR","eClass":"EEnumLiteral"},{"name":"XSD","id":594,"value":0,"literal":"XSD","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":595,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"url","changeable":true,"lowerBound":0,"iD":false,"id":596,"derived":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":597,"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":"validate","changeable":true,"lowerBound":0,"iD":false,"id":598,"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":599,"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":"extendedData","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"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"schema","changeable":true,"resolveProxies":true,"lowerBound":0,"id":609,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"url","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":"data","changeable":true,"lowerBound":0,"iD":false,"id":611,"derived":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":612,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"added","changeable":true,"lowerBound":0,"iD":false,"id":613,"derived":false},{"id":614,"eClass":"EGenericType"},{"id":615,"eClass":"EGenericType"},{"id":616,"eClass":"EGenericType"},{"id":617,"eClass":"EGenericType"},{"id":618,"eClass":"EGenericType"},{"id":619,"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":1,"target":0},{"source":1,"target":67},{"source":1,"target":68},{"source":1,"target":69},{"source":1,"target":70},{"source":67,"target":1},{"source":68,"target":1},{"source":69,"target":1},{"source":70,"target":1},{"source":2,"target":0},{"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":86},{"source":2,"target":87},{"source":71,"target":2},{"source":72,"target":2},{"source":73,"target":2},{"source":74,"target":2},{"source":75,"target":2},{"source":76,"target":2},{"source":77,"target":2},{"source":78,"target":2},{"source":79,"target":2},{"source":80,"target":2},{"source":81,"target":2},{"source":82,"target":2},{"source":83,"target":2},{"source":84,"target":2},{"source":85,"target":2},{"source":86,"target":2},{"source":87,"target":2},{"source":3,"target":0},{"source":3,"target":88},{"source":3,"target":89},{"source":88,"target":3},{"source":89,"target":3},{"source":4,"target":0},{"source":4,"target":90},{"source":4,"target":91},{"source":4,"target":92},{"source":4,"target":93},{"source":4,"target":94},{"source":4,"target":95},{"source":4,"target":96},{"source":4,"target":97},{"source":4,"target":98},{"source":4,"target":99},{"source":4,"target":100},{"source":4,"target":101},{"source":4,"target":102},{"source":4,"target":103},{"source":4,"target":104},{"source":4,"target":105},{"source":4,"target":106},{"source":4,"target":107},{"source":90,"target":108},{"source":90,"target":4},{"source":91,"target":109},{"source":91,"target":4},{"source":92,"target":5},{"source":92,"target":110},{"source":92,"target":4},{"source":92,"target":111},{"source":110,"target":5},{"source":93,"target":11},{"source":93,"target":112},{"source":93,"target":4},{"source":93,"target":113},{"source":112,"target":11},{"source":94,"target":10},{"source":94,"target":114},{"source":94,"target":4},{"source":94,"target":115},{"source":114,"target":10},{"source":95,"target":11},{"source":95,"target":116},{"source":95,"target":4},{"source":116,"target":11},{"source":96,"target":10},{"source":96,"target":117},{"source":96,"target":4},{"source":117,"target":10},{"source":97,"target":13},{"source":97,"target":118},{"source":97,"target":4},{"source":97,"target":119},{"source":118,"target":13},{"source":98,"target":3},{"source":98,"target":120},{"source":98,"target":4},{"source":120,"target":3},{"source":99,"target":121},{"source":99,"target":4},{"source":100,"target":5},{"source":100,"target":122},{"source":100,"target":4},{"source":122,"target":5},{"source":101,"target":12},{"source":101,"target":123},{"source":101,"target":4},{"source":101,"target":124},{"source":123,"target":12},{"source":102,"target":4},{"source":102,"target":125},{"source":102,"target":4},{"source":102,"target":103},{"source":125,"target":4},{"source":103,"target":4},{"source":103,"target":126},{"source":103,"target":4},{"source":103,"target":102},{"source":126,"target":4},{"source":104,"target":127},{"source":104,"target":4},{"source":105,"target":9},{"source":105,"target":128},{"source":105,"target":4},{"source":105,"target":129},{"source":128,"target":9},{"source":106,"target":2},{"source":106,"target":130},{"source":106,"target":4},{"source":130,"target":2},{"source":107,"target":66},{"source":107,"target":131},{"source":107,"target":4},{"source":131,"target":66},{"source":5,"target":0},{"source":5,"target":132},{"source":5,"target":133},{"source":5,"target":111},{"source":5,"target":134},{"source":5,"target":135},{"source":5,"target":136},{"source":5,"target":137},{"source":5,"target":138},{"source":5,"target":139},{"source":5,"target":140},{"source":5,"target":141},{"source":5,"target":142},{"source":5,"target":143},{"source":5,"target":144},{"source":5,"target":145},{"source":132,"target":146},{"source":132,"target":5},{"source":133,"target":147},{"source":133,"target":5},{"source":111,"target":4},{"source":111,"target":148},{"source":111,"target":5},{"source":111,"target":92},{"source":148,"target":4},{"source":134,"target":10},{"source":134,"target":149},{"source":134,"target":5},{"source":149,"target":10},{"source":135,"target":3},{"source":135,"target":150},{"source":135,"target":5},{"source":150,"target":3},{"source":136,"target":151},{"source":136,"target":5},{"source":137,"target":5},{"source":137,"target":152},{"source":137,"target":5},{"source":152,"target":5},{"source":138,"target":1},{"source":138,"target":153},{"source":138,"target":5},{"source":153,"target":1},{"source":139,"target":154},{"source":139,"target":5},{"source":140,"target":155},{"source":140,"target":5},{"source":141,"target":156},{"source":141,"target":5},{"source":142,"target":157},{"source":142,"target":5},{"source":143,"target":158},{"source":143,"target":5},{"source":144,"target":65},{"source":144,"target":159},{"source":144,"target":5},{"source":144,"target":160},{"source":159,"target":65},{"source":145,"target":66},{"source":145,"target":161},{"source":145,"target":5},{"source":145,"target":162},{"source":161,"target":66},{"source":6,"target":0},{"source":6,"target":163},{"source":6,"target":164},{"source":6,"target":165},{"source":6,"target":166},{"source":6,"target":167},{"source":6,"target":168},{"source":163,"target":169},{"source":163,"target":6},{"source":164,"target":170},{"source":164,"target":6},{"source":165,"target":171},{"source":165,"target":6},{"source":166,"target":172},{"source":166,"target":6},{"source":167,"target":10},{"source":167,"target":173},{"source":167,"target":6},{"source":173,"target":10},{"source":168,"target":10},{"source":168,"target":174},{"source":168,"target":6},{"source":174,"target":10},{"source":7,"target":0},{"source":7,"target":6},{"source":7,"target":175},{"source":7,"target":176},{"source":7,"target":177},{"source":175,"target":178},{"source":175,"target":7},{"source":176,"target":179},{"source":176,"target":7},{"source":177,"target":6},{"source":8,"target":0},{"source":8,"target":6},{"source":8,"target":180},{"source":8,"target":181},{"source":8,"target":182},{"source":180,"target":183},{"source":180,"target":8},{"source":181,"target":184},{"source":181,"target":8},{"source":182,"target":6},{"source":9,"target":0},{"source":9,"target":185},{"source":9,"target":129},{"source":9,"target":186},{"source":9,"target":187},{"source":9,"target":188},{"source":185,"target":189},{"source":185,"target":9},{"source":129,"target":4},{"source":129,"target":190},{"source":129,"target":9},{"source":129,"target":105},{"source":190,"target":4},{"source":186,"target":191},{"source":186,"target":9},{"source":187,"target":10},{"source":187,"target":192},{"source":187,"target":9},{"source":192,"target":10},{"source":188,"target":193},{"source":188,"target":9},{"source":10,"target":0},{"source":10,"target":194},{"source":10,"target":195},{"source":10,"target":196},{"source":10,"target":197},{"source":10,"target":198},{"source":10,"target":199},{"source":10,"target":200},{"source":10,"target":201},{"source":10,"target":115},{"source":10,"target":202},{"source":10,"target":203},{"source":10,"target":204},{"source":10,"target":205},{"source":10,"target":206},{"source":10,"target":207},{"source":10,"target":208},{"source":194,"target":209},{"source":194,"target":10},{"source":195,"target":5},{"source":195,"target":210},{"source":195,"target":10},{"source":210,"target":5},{"source":196,"target":211},{"source":196,"target":10},{"source":197,"target":212},{"source":197,"target":10},{"source":198,"target":213},{"source":198,"target":10},{"source":199,"target":11},{"source":199,"target":214},{"source":199,"target":10},{"source":199,"target":215},{"source":214,"target":11},{"source":200,"target":11},{"source":200,"target":216},{"source":200,"target":10},{"source":216,"target":11},{"source":201,"target":13},{"source":201,"target":217},{"source":201,"target":10},{"source":201,"target":218},{"source":217,"target":13},{"source":115,"target":4},{"source":115,"target":219},{"source":115,"target":10},{"source":115,"target":94},{"source":219,"target":4},{"source":202,"target":6},{"source":202,"target":220},{"source":202,"target":10},{"source":220,"target":6},{"source":203,"target":221},{"source":203,"target":10},{"source":204,"target":222},{"source":204,"target":10},{"source":205,"target":223},{"source":205,"target":10},{"source":206,"target":224},{"source":206,"target":10},{"source":207,"target":225},{"source":207,"target":10},{"source":208,"target":66},{"source":208,"target":226},{"source":208,"target":10},{"source":226,"target":66},{"source":11,"target":0},{"source":11,"target":227},{"source":11,"target":113},{"source":11,"target":228},{"source":11,"target":215},{"source":11,"target":229},{"source":11,"target":230},{"source":11,"target":231},{"source":11,"target":232},{"source":227,"target":233},{"source":227,"target":11},{"source":113,"target":4},{"source":113,"target":234},{"source":113,"target":11},{"source":113,"target":93},{"source":234,"target":4},{"source":228,"target":235},{"source":228,"target":11},{"source":215,"target":10},{"source":215,"target":236},{"source":215,"target":11},{"source":215,"target":199},{"source":236,"target":10},{"source":229,"target":237},{"source":229,"target":11},{"source":230,"target":238},{"source":230,"target":11},{"source":231,"target":239},{"source":231,"target":11},{"source":232,"target":5},{"source":232,"target":240},{"source":232,"target":11},{"source":240,"target":5},{"source":12,"target":0},{"source":12,"target":241},{"source":12,"target":124},{"source":12,"target":242},{"source":12,"target":243},{"source":12,"target":244},{"source":12,"target":245},{"source":12,"target":246},{"source":241,"target":247},{"source":241,"target":12},{"source":124,"target":4},{"source":124,"target":248},{"source":124,"target":12},{"source":124,"target":101},{"source":248,"target":4},{"source":242,"target":249},{"source":242,"target":12},{"source":243,"target":250},{"source":243,"target":12},{"source":244,"target":251},{"source":244,"target":12},{"source":245,"target":252},{"source":245,"target":12},{"source":246,"target":253},{"source":246,"target":12},{"source":13,"target":0},{"source":13,"target":254},{"source":13,"target":218},{"source":13,"target":119},{"source":13,"target":255},{"source":13,"target":256},{"source":13,"target":257},{"source":254,"target":5},{"source":254,"target":258},{"source":254,"target":13},{"source":258,"target":5},{"source":218,"target":10},{"source":218,"target":259},{"source":218,"target":13},{"source":218,"target":201},{"source":259,"target":10},{"source":119,"target":4},{"source":119,"target":260},{"source":119,"target":13},{"source":119,"target":97},{"source":260,"target":4},{"source":255,"target":261},{"source":255,"target":13},{"source":256,"target":10},{"source":256,"target":262},{"source":256,"target":13},{"source":262,"target":10},{"source":257,"target":263},{"source":257,"target":13},{"source":14,"target":0},{"source":14,"target":264},{"source":14,"target":265},{"source":14,"target":266},{"source":14,"target":267},{"source":14,"target":268},{"source":14,"target":269},{"source":14,"target":270},{"source":14,"target":271},{"source":14,"target":272},{"source":14,"target":273},{"source":14,"target":274},{"source":14,"target":275},{"source":14,"target":276},{"source":14,"target":277},{"source":14,"target":278},{"source":14,"target":279},{"source":14,"target":280},{"source":14,"target":281},{"source":14,"target":282},{"source":14,"target":283},{"source":14,"target":284},{"source":14,"target":285},{"source":14,"target":286},{"source":14,"target":287},{"source":14,"target":288},{"source":264,"target":289},{"source":264,"target":14},{"source":265,"target":290},{"source":265,"target":14},{"source":266,"target":291},{"source":266,"target":14},{"source":267,"target":292},{"source":267,"target":14},{"source":268,"target":293},{"source":268,"target":14},{"source":269,"target":294},{"source":269,"target":14},{"source":270,"target":295},{"source":270,"target":14},{"source":271,"target":296},{"source":271,"target":14},{"source":272,"target":297},{"source":272,"target":14},{"source":273,"target":298},{"source":273,"target":14},{"source":274,"target":299},{"source":274,"target":14},{"source":275,"target":300},{"source":275,"target":14},{"source":276,"target":301},{"source":276,"target":14},{"source":277,"target":302},{"source":277,"target":14},{"source":278,"target":303},{"source":278,"target":14},{"source":279,"target":15},{"source":279,"target":304},{"source":279,"target":14},{"source":279,"target":305},{"source":304,"target":15},{"source":280,"target":16},{"source":280,"target":306},{"source":280,"target":14},{"source":280,"target":307},{"source":306,"target":16},{"source":281,"target":308},{"source":281,"target":14},{"source":282,"target":309},{"source":282,"target":14},{"source":283,"target":17},{"source":283,"target":310},{"source":283,"target":14},{"source":310,"target":17},{"source":284,"target":311},{"source":284,"target":14},{"source":285,"target":18},{"source":285,"target":312},{"source":285,"target":14},{"source":285,"target":313},{"source":312,"target":18},{"source":286,"target":19},{"source":286,"target":314},{"source":286,"target":14},{"source":286,"target":315},{"source":314,"target":19},{"source":287,"target":20},{"source":287,"target":316},{"source":287,"target":14},{"source":287,"target":317},{"source":316,"target":20},{"source":288,"target":65},{"source":288,"target":318},{"source":288,"target":14},{"source":288,"target":319},{"source":318,"target":65},{"source":15,"target":0},{"source":15,"target":320},{"source":15,"target":321},{"source":15,"target":322},{"source":15,"target":323},{"source":15,"target":324},{"source":15,"target":325},{"source":15,"target":326},{"source":15,"target":327},{"source":15,"target":305},{"source":15,"target":328},{"source":320,"target":329},{"source":320,"target":15},{"source":321,"target":330},{"source":321,"target":15},{"source":322,"target":331},{"source":322,"target":15},{"source":323,"target":332},{"source":323,"target":15},{"source":324,"target":333},{"source":324,"target":15},{"source":325,"target":334},{"source":325,"target":15},{"source":326,"target":335},{"source":326,"target":15},{"source":327,"target":16},{"source":327,"target":336},{"source":327,"target":15},{"source":327,"target":337},{"source":336,"target":16},{"source":305,"target":14},{"source":305,"target":338},{"source":305,"target":15},{"source":305,"target":279},{"source":338,"target":14},{"source":328,"target":18},{"source":328,"target":339},{"source":328,"target":15},{"source":328,"target":340},{"source":339,"target":18},{"source":16,"target":0},{"source":16,"target":341},{"source":16,"target":342},{"source":16,"target":343},{"source":16,"target":337},{"source":16,"target":307},{"source":341,"target":344},{"source":341,"target":16},{"source":342,"target":345},{"source":342,"target":16},{"source":343,"target":346},{"source":343,"target":16},{"source":337,"target":15},{"source":337,"target":347},{"source":337,"target":16},{"source":337,"target":327},{"source":347,"target":15},{"source":307,"target":14},{"source":307,"target":348},{"source":307,"target":16},{"source":307,"target":280},{"source":348,"target":14},{"source":17,"target":0},{"source":17,"target":349},{"source":17,"target":350},{"source":349,"target":17},{"source":350,"target":17},{"source":18,"target":0},{"source":18,"target":351},{"source":18,"target":352},{"source":18,"target":353},{"source":18,"target":354},{"source":18,"target":340},{"source":18,"target":313},{"source":351,"target":355},{"source":351,"target":18},{"source":352,"target":356},{"source":352,"target":18},{"source":353,"target":357},{"source":353,"target":18},{"source":354,"target":358},{"source":354,"target":18},{"source":340,"target":15},{"source":340,"target":359},{"source":340,"target":18},{"source":340,"target":328},{"source":359,"target":15},{"source":313,"target":14},{"source":313,"target":360},{"source":313,"target":18},{"source":313,"target":285},{"source":360,"target":14},{"source":19,"target":0},{"source":19,"target":361},{"source":19,"target":362},{"source":19,"target":315},{"source":361,"target":363},{"source":361,"target":19},{"source":362,"target":364},{"source":362,"target":19},{"source":315,"target":14},{"source":315,"target":365},{"source":315,"target":19},{"source":315,"target":286},{"source":365,"target":14},{"source":20,"target":0},{"source":20,"target":366},{"source":20,"target":367},{"source":20,"target":368},{"source":20,"target":369},{"source":20,"target":370},{"source":20,"target":317},{"source":366,"target":371},{"source":366,"target":20},{"source":367,"target":372},{"source":367,"target":20},{"source":368,"target":373},{"source":368,"target":20},{"source":369,"target":374},{"source":369,"target":20},{"source":370,"target":375},{"source":370,"target":20},{"source":317,"target":14},{"source":317,"target":376},{"source":317,"target":20},{"source":317,"target":287},{"source":376,"target":14},{"source":21,"target":0},{"source":21,"target":377},{"source":21,"target":378},{"source":21,"target":379},{"source":21,"target":380},{"source":21,"target":381},{"source":377,"target":10},{"source":377,"target":382},{"source":377,"target":21},{"source":382,"target":10},{"source":378,"target":4},{"source":378,"target":383},{"source":378,"target":21},{"source":383,"target":4},{"source":379,"target":384},{"source":379,"target":21},{"source":380,"target":385},{"source":380,"target":21},{"source":381,"target":63},{"source":381,"target":386},{"source":381,"target":21},{"source":386,"target":63},{"source":22,"target":0},{"source":23,"target":0},{"source":23,"target":387},{"source":23,"target":388},{"source":23,"target":389},{"source":387,"target":390},{"source":387,"target":23},{"source":388,"target":391},{"source":388,"target":23},{"source":389,"target":22},{"source":389,"target":392},{"source":389,"target":23},{"source":392,"target":22},{"source":24,"target":0},{"source":24,"target":23},{"source":24,"target":393},{"source":393,"target":23},{"source":25,"target":0},{"source":25,"target":394},{"source":394,"target":395},{"source":394,"target":25},{"source":26,"target":0},{"source":26,"target":396},{"source":26,"target":397},{"source":26,"target":398},{"source":26,"target":399},{"source":396,"target":400},{"source":396,"target":26},{"source":397,"target":401},{"source":397,"target":26},{"source":398,"target":402},{"source":398,"target":26},{"source":399,"target":25},{"source":399,"target":403},{"source":399,"target":26},{"source":403,"target":25},{"source":27,"target":0},{"source":27,"target":404},{"source":27,"target":405},{"source":27,"target":406},{"source":27,"target":407},{"source":27,"target":408},{"source":27,"target":409},{"source":27,"target":410},{"source":27,"target":411},{"source":404,"target":5},{"source":404,"target":412},{"source":404,"target":27},{"source":412,"target":5},{"source":405,"target":413},{"source":405,"target":27},{"source":406,"target":414},{"source":406,"target":27},{"source":407,"target":1},{"source":407,"target":415},{"source":407,"target":27},{"source":415,"target":1},{"source":408,"target":416},{"source":408,"target":27},{"source":409,"target":417},{"source":409,"target":27},{"source":410,"target":418},{"source":410,"target":27},{"source":411,"target":419},{"source":411,"target":27},{"source":28,"target":0},{"source":28,"target":420},{"source":28,"target":421},{"source":28,"target":422},{"source":420,"target":423},{"source":420,"target":28},{"source":421,"target":424},{"source":421,"target":28},{"source":422,"target":425},{"source":422,"target":28},{"source":29,"target":0},{"source":29,"target":25},{"source":29,"target":426},{"source":29,"target":427},{"source":29,"target":428},{"source":426,"target":429},{"source":426,"target":29},{"source":427,"target":430},{"source":427,"target":29},{"source":428,"target":25},{"source":30,"target":0},{"source":30,"target":25},{"source":30,"target":431},{"source":30,"target":432},{"source":431,"target":25},{"source":431,"target":433},{"source":431,"target":30},{"source":433,"target":25},{"source":432,"target":25},{"source":31,"target":0},{"source":31,"target":25},{"source":31,"target":434},{"source":31,"target":435},{"source":434,"target":436},{"source":434,"target":31},{"source":435,"target":25},{"source":32,"target":0},{"source":32,"target":437},{"source":32,"target":438},{"source":437,"target":439},{"source":437,"target":32},{"source":438,"target":440},{"source":438,"target":32},{"source":33,"target":0},{"source":33,"target":441},{"source":33,"target":442},{"source":441,"target":443},{"source":441,"target":33},{"source":442,"target":32},{"source":442,"target":444},{"source":442,"target":33},{"source":444,"target":32},{"source":34,"target":0},{"source":34,"target":445},{"source":34,"target":446},{"source":34,"target":447},{"source":34,"target":448},{"source":34,"target":449},{"source":34,"target":450},{"source":34,"target":451},{"source":34,"target":452},{"source":34,"target":453},{"source":34,"target":454},{"source":445,"target":455},{"source":445,"target":34},{"source":446,"target":456},{"source":446,"target":34},{"source":447,"target":457},{"source":447,"target":34},{"source":448,"target":458},{"source":448,"target":34},{"source":449,"target":459},{"source":449,"target":34},{"source":450,"target":460},{"source":450,"target":34},{"source":451,"target":461},{"source":451,"target":34},{"source":452,"target":462},{"source":452,"target":34},{"source":453,"target":463},{"source":453,"target":34},{"source":454,"target":33},{"source":454,"target":464},{"source":454,"target":34},{"source":464,"target":33},{"source":35,"target":0},{"source":35,"target":465},{"source":35,"target":466},{"source":35,"target":467},{"source":35,"target":468},{"source":465,"target":469},{"source":465,"target":35},{"source":466,"target":470},{"source":466,"target":35},{"source":467,"target":471},{"source":467,"target":35},{"source":468,"target":472},{"source":468,"target":35},{"source":36,"target":0},{"source":36,"target":473},{"source":36,"target":474},{"source":473,"target":475},{"source":473,"target":36},{"source":474,"target":476},{"source":474,"target":36},{"source":37,"target":0},{"source":37,"target":477},{"source":37,"target":478},{"source":477,"target":479},{"source":477,"target":37},{"source":478,"target":480},{"source":478,"target":37},{"source":38,"target":0},{"source":38,"target":481},{"source":38,"target":482},{"source":481,"target":483},{"source":481,"target":38},{"source":482,"target":37},{"source":482,"target":484},{"source":482,"target":38},{"source":484,"target":37},{"source":39,"target":0},{"source":39,"target":485},{"source":485,"target":38},{"source":485,"target":486},{"source":485,"target":39},{"source":486,"target":38},{"source":40,"target":0},{"source":40,"target":487},{"source":40,"target":488},{"source":40,"target":489},{"source":40,"target":490},{"source":487,"target":491},{"source":487,"target":40},{"source":488,"target":492},{"source":488,"target":40},{"source":489,"target":493},{"source":489,"target":40},{"source":490,"target":494},{"source":490,"target":40},{"source":41,"target":0},{"source":41,"target":495},{"source":41,"target":496},{"source":41,"target":497},{"source":41,"target":498},{"source":41,"target":499},{"source":495,"target":500},{"source":495,"target":41},{"source":496,"target":5},{"source":496,"target":501},{"source":496,"target":41},{"source":501,"target":5},{"source":497,"target":502},{"source":497,"target":41},{"source":498,"target":503},{"source":498,"target":41},{"source":499,"target":504},{"source":499,"target":41},{"source":42,"target":0},{"source":42,"target":41},{"source":42,"target":505},{"source":42,"target":506},{"source":505,"target":10},{"source":505,"target":507},{"source":505,"target":42},{"source":507,"target":10},{"source":506,"target":41},{"source":43,"target":0},{"source":43,"target":508},{"source":508,"target":509},{"source":508,"target":43},{"source":44,"target":0},{"source":44,"target":510},{"source":44,"target":511},{"source":510,"target":44},{"source":511,"target":44},{"source":45,"target":0},{"source":45,"target":512},{"source":45,"target":513},{"source":45,"target":514},{"source":45,"target":515},{"source":512,"target":45},{"source":513,"target":45},{"source":514,"target":45},{"source":515,"target":45},{"source":46,"target":0},{"source":46,"target":516},{"source":516,"target":26},{"source":516,"target":517},{"source":516,"target":46},{"source":517,"target":26},{"source":47,"target":0},{"source":47,"target":46},{"source":47,"target":518},{"source":518,"target":46},{"source":48,"target":0},{"source":48,"target":46},{"source":48,"target":519},{"source":519,"target":46},{"source":49,"target":0},{"source":49,"target":46},{"source":49,"target":520},{"source":49,"target":521},{"source":49,"target":522},{"source":49,"target":523},{"source":520,"target":524},{"source":520,"target":49},{"source":521,"target":525},{"source":521,"target":49},{"source":522,"target":526},{"source":522,"target":49},{"source":523,"target":46},{"source":50,"target":0},{"source":50,"target":527},{"source":50,"target":528},{"source":527,"target":529},{"source":527,"target":50},{"source":528,"target":46},{"source":528,"target":530},{"source":528,"target":50},{"source":530,"target":46},{"source":51,"target":0},{"source":51,"target":531},{"source":531,"target":50},{"source":531,"target":532},{"source":531,"target":51},{"source":532,"target":50},{"source":52,"target":0},{"source":52,"target":533},{"source":52,"target":534},{"source":52,"target":535},{"source":533,"target":52},{"source":534,"target":52},{"source":535,"target":52},{"source":53,"target":0},{"source":53,"target":536},{"source":53,"target":537},{"source":536,"target":538},{"source":536,"target":53},{"source":537,"target":52},{"source":537,"target":539},{"source":537,"target":53},{"source":539,"target":52},{"source":54,"target":0},{"source":55,"target":0},{"source":55,"target":54},{"source":55,"target":540},{"source":55,"target":541},{"source":540,"target":4},{"source":540,"target":542},{"source":540,"target":55},{"source":542,"target":4},{"source":541,"target":54},{"source":56,"target":0},{"source":56,"target":54},{"source":56,"target":543},{"source":56,"target":544},{"source":56,"target":545},{"source":543,"target":10},{"source":543,"target":546},{"source":543,"target":56},{"source":546,"target":10},{"source":544,"target":4},{"source":544,"target":547},{"source":544,"target":56},{"source":547,"target":4},{"source":545,"target":54},{"source":57,"target":0},{"source":57,"target":548},{"source":57,"target":549},{"source":57,"target":550},{"source":548,"target":551},{"source":548,"target":57},{"source":549,"target":552},{"source":549,"target":57},{"source":550,"target":553},{"source":550,"target":57},{"source":58,"target":0},{"source":58,"target":554},{"source":58,"target":555},{"source":58,"target":556},{"source":58,"target":557},{"source":554,"target":558},{"source":554,"target":58},{"source":555,"target":559},{"source":555,"target":58},{"source":556,"target":560},{"source":556,"target":58},{"source":557,"target":561},{"source":557,"target":58},{"source":59,"target":0},{"source":59,"target":562},{"source":59,"target":563},{"source":59,"target":564},{"source":59,"target":565},{"source":59,"target":566},{"source":59,"target":567},{"source":562,"target":59},{"source":563,"target":59},{"source":564,"target":59},{"source":565,"target":59},{"source":566,"target":59},{"source":567,"target":59},{"source":60,"target":0},{"source":60,"target":568},{"source":60,"target":569},{"source":568,"target":59},{"source":568,"target":570},{"source":568,"target":60},{"source":570,"target":59},{"source":569,"target":571},{"source":569,"target":60},{"source":61,"target":0},{"source":61,"target":572},{"source":61,"target":573},{"source":61,"target":574},{"source":61,"target":575},{"source":61,"target":576},{"source":61,"target":577},{"source":61,"target":578},{"source":572,"target":579},{"source":572,"target":61},{"source":573,"target":580},{"source":573,"target":61},{"source":574,"target":581},{"source":574,"target":61},{"source":575,"target":582},{"source":575,"target":61},{"source":576,"target":583},{"source":576,"target":61},{"source":577,"target":584},{"source":577,"target":61},{"source":578,"target":585},{"source":578,"target":61},{"source":62,"target":0},{"source":62,"target":586},{"source":62,"target":587},{"source":586,"target":588},{"source":586,"target":62},{"source":587,"target":589},{"source":587,"target":62},{"source":63,"target":0},{"source":63,"target":590},{"source":63,"target":591},{"source":63,"target":592},{"source":63,"target":593},{"source":590,"target":63},{"source":591,"target":63},{"source":592,"target":63},{"source":593,"target":63},{"source":64,"target":0},{"source":64,"target":594},{"source":594,"target":64},{"source":65,"target":0},{"source":65,"target":595},{"source":65,"target":596},{"source":65,"target":597},{"source":65,"target":598},{"source":65,"target":599},{"source":65,"target":319},{"source":65,"target":160},{"source":65,"target":600},{"source":595,"target":601},{"source":595,"target":65},{"source":596,"target":602},{"source":596,"target":65},{"source":597,"target":603},{"source":597,"target":65},{"source":598,"target":604},{"source":598,"target":65},{"source":599,"target":64},{"source":599,"target":605},{"source":599,"target":65},{"source":605,"target":64},{"source":319,"target":14},{"source":319,"target":606},{"source":319,"target":65},{"source":319,"target":288},{"source":606,"target":14},{"source":160,"target":5},{"source":160,"target":607},{"source":160,"target":65},{"source":160,"target":144},{"source":607,"target":5},{"source":600,"target":66},{"source":600,"target":608},{"source":600,"target":65},{"source":600,"target":609},{"source":608,"target":66},{"source":66,"target":0},{"source":66,"target":610},{"source":66,"target":611},{"source":66,"target":612},{"source":66,"target":613},{"source":66,"target":162},{"source":66,"target":609},{"source":610,"target":614},{"source":610,"target":66},{"source":611,"target":615},{"source":611,"target":66},{"source":612,"target":616},{"source":612,"target":66},{"source":613,"target":617},{"source":613,"target":66},{"source":162,"target":5},{"source":162,"target":618},{"source":162,"target":66},{"source":162,"target":145},{"source":618,"target":5},{"source":609,"target":65},{"source":609,"target":619},{"source":609,"target":66},{"source":609,"target":600},{"source":619,"target":65}],"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="jSchema" nsURI="http://www.xtext.org/example/mydsl/JSchema" nsPrefix="jSchema"> <eClassifiers xsi:type="ecore:EClass" name="Model"> <eStructuralFeatures xsi:type="ecore:EReference" name="AbstractObject" upperBound="-1" eType="#//AbstractObject" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Number"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="number" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="decimal" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="AbstractObject"/> <eClassifiers xsi:type="ecore:EClass" name="MainObject" eSuperTypes="#//AbstractObject"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="objectName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="root" eType="#//IsRoot" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="includeObjects" eType="#//Includes" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="properties" upperBound="-1" eType="#//hasProperties" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="PrimitiveObject" eSuperTypes="#//AbstractObject"> <eStructuralFeatures xsi:type="ecore:EReference" name="type" eType="#//PrimitiveTypes" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="primitiveProperties" upperBound="-1" eType="#//PrimitiveProperties" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ExtendedObject" eSuperTypes="#//AbstractObject"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="objectName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="extendsID" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="overRiddenProperties" upperBound="-1" eType="#//hasProperties" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="properties" upperBound="-1" eType="#//hasProperties" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="PrimitiveTypes"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="stringName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="string" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="array" eType="#//Array" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="numID" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="number" eType="#//Number" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="IsRoot"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="string" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="hasProperties"> <eStructuralFeatures xsi:type="ecore:EReference" name="properties" eType="#//Property" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Property"> <eStructuralFeatures xsi:type="ecore:EReference" name="propPrim" eType="#//PrimitiveObject" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="propObj" eType="#//MainObject" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="PrimitiveProperties"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="stringLength" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="patternString" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="stringFormat" eType="#//FormatTypes"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="FormatTypes"> <eLiterals name="default" literal="null"/> <eLiterals name="date_time" value="1" literal="date-time"/> <eLiterals name="time" value="2" literal="time"/> <eLiterals name="date" value="3" literal="date"/> <eLiterals name="email" value="4" literal="email"/> <eLiterals name="idn_email" value="5" literal="idn-email"/> <eLiterals name="hostname" value="6" literal="hostname"/> <eLiterals name="ipv4" value="7" literal="ipv4"/> <eLiterals name="ipv6" value="8" literal="ipv6"/> <eLiterals name="uri" value="9" literal="uri"/> <eLiterals name="uri_reference" value="10" literal="uri-reference"/> <eLiterals name="iri" value="11" literal="iri"/> <eLiterals name="iri_reference" value="12" literal="iri-reference"/> <eLiterals name="uri_template" value="13" literal="uri-template"/> <eLiterals name="json_pointer" value="14" literal="json-pointer"/> <eLiterals name="relative_json_pointer" value="15" literal="relative-json-pointer"/> <eLiterals name="regex" value="16" literal="regex"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Includes"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="objectID" unique="false" upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Array"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="arrayName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="properties" upperBound="-1" eType="#//Property" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="arrayType" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> </ecore:EPackage>
github:ecore:/data/danielvs1234/JSchema_New/org.xtext.example.JSchema/model/generated/JSchema.ecore
ecore
jSchema Model AbstractObject Number number decimal AbstractObject MainObject objectName root includeObjects properties PrimitiveObject type primitiveProperties ExtendedObject objectName extendsID overRiddenProperties properties PrimitiveTypes stringName string array numID number IsRoot string hasProperties properties Property propPrim propObj PrimitiveProperties stringLength patternString stringFormat FormatTypes default null date_time date-time time time date date email email idn_email idn-email hostname hostname ipv4 ipv4 ipv6 ipv6 uri uri uri_reference uri-reference iri iri iri_reference iri-reference uri_template uri-template json_pointer json-pointer relative_json_pointer relative-json-pointer regex regex Includes objectID Array arrayName properties arrayType
null
{"directed":true,"nodes":[{"nsPrefix":"jSchema","nsURI":"http://www.xtext.org/example/mydsl/JSchema","name":"jSchema","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":"Number","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AbstractObject","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MainObject","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PrimitiveObject","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExtendedObject","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PrimitiveTypes","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IsRoot","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"hasProperties","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":"PrimitiveProperties","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"FormatTypes","instanceClass":null,"id":12,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Includes","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Array","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":"AbstractObject","changeable":true,"resolveProxies":true,"lowerBound":0,"id":15,"derived":false},{"id":16,"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":"number","changeable":true,"lowerBound":0,"iD":false,"id":17,"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":"decimal","changeable":true,"lowerBound":0,"iD":false,"id":18,"derived":false},{"id":19,"eClass":"EGenericType"},{"id":20,"eClass":"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":21,"derived":false},{"container":false,"ordered":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":22,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"includeObjects","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":true,"unsettable":false,"transient":false,"unique":true,"name":"properties","changeable":true,"resolveProxies":true,"lowerBound":0,"id":24,"derived":false},{"id":25,"eClass":"EGenericType"},{"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":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"type","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":"primitiveProperties","changeable":true,"resolveProxies":true,"lowerBound":0,"id":31,"derived":false},{"id":32,"eClass":"EGenericType"},{"id":33,"eClass":"EGenericType"},{"id":34,"eClass":"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":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":"extendsID","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":"overRiddenProperties","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":"properties","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":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"stringName","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":"string","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":"array","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":"numID","changeable":true,"lowerBound":0,"iD":false,"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":"number","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"},{"id":53,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"string","changeable":true,"lowerBound":0,"iD":false,"id":54,"derived":false},{"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":"properties","changeable":true,"resolveProxies":true,"lowerBound":0,"id":56,"derived":false},{"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":"propPrim","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":"propObj","changeable":true,"resolveProxies":true,"lowerBound":0,"id":59,"derived":false},{"id":60,"eClass":"EGenericType"},{"id":61,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"stringLength","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":"patternString","changeable":true,"lowerBound":0,"iD":false,"id":63,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"stringFormat","changeable":true,"lowerBound":0,"iD":false,"id":64,"derived":false},{"id":65,"eClass":"EGenericType"},{"id":66,"eClass":"EGenericType"},{"id":67,"eClass":"EGenericType"},{"name":"default","id":68,"value":0,"literal":"null","eClass":"EEnumLiteral"},{"name":"date_time","id":69,"value":1,"literal":"date-time","eClass":"EEnumLiteral"},{"name":"time","id":70,"value":2,"literal":"time","eClass":"EEnumLiteral"},{"name":"date","id":71,"value":3,"literal":"date","eClass":"EEnumLiteral"},{"name":"email","id":72,"value":4,"literal":"email","eClass":"EEnumLiteral"},{"name":"idn_email","id":73,"value":5,"literal":"idn-email","eClass":"EEnumLiteral"},{"name":"hostname","id":74,"value":6,"literal":"hostname","eClass":"EEnumLiteral"},{"name":"ipv4","id":75,"value":7,"literal":"ipv4","eClass":"EEnumLiteral"},{"name":"ipv6","id":76,"value":8,"literal":"ipv6","eClass":"EEnumLiteral"},{"name":"uri","id":77,"value":9,"literal":"uri","eClass":"EEnumLiteral"},{"name":"uri_reference","id":78,"value":10,"literal":"uri-reference","eClass":"EEnumLiteral"},{"name":"iri","id":79,"value":11,"literal":"iri","eClass":"EEnumLiteral"},{"name":"iri_reference","id":80,"value":12,"literal":"iri-reference","eClass":"EEnumLiteral"},{"name":"uri_template","id":81,"value":13,"literal":"uri-template","eClass":"EEnumLiteral"},{"name":"json_pointer","id":82,"value":14,"literal":"json-pointer","eClass":"EEnumLiteral"},{"name":"relative_json_pointer","id":83,"value":15,"literal":"relative-json-pointer","eClass":"EEnumLiteral"},{"name":"regex","id":84,"value":16,"literal":"regex","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":"objectID","changeable":true,"lowerBound":0,"iD":false,"id":85,"derived":false},{"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":"arrayName","changeable":true,"lowerBound":0,"iD":false,"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":"properties","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":"arrayType","changeable":true,"lowerBound":0,"iD":false,"id":89,"derived":false},{"id":90,"eClass":"EGenericType"},{"id":91,"eClass":"EGenericType"},{"id":92,"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":1,"target":0},{"source":1,"target":15},{"source":15,"target":3},{"source":15,"target":16},{"source":15,"target":1},{"source":16,"target":3},{"source":2,"target":0},{"source":2,"target":17},{"source":2,"target":18},{"source":17,"target":19},{"source":17,"target":2},{"source":18,"target":20},{"source":18,"target":2},{"source":3,"target":0},{"source":4,"target":0},{"source":4,"target":3},{"source":4,"target":21},{"source":4,"target":22},{"source":4,"target":23},{"source":4,"target":24},{"source":4,"target":25},{"source":21,"target":26},{"source":21,"target":4},{"source":22,"target":8},{"source":22,"target":27},{"source":22,"target":4},{"source":27,"target":8},{"source":23,"target":13},{"source":23,"target":28},{"source":23,"target":4},{"source":28,"target":13},{"source":24,"target":9},{"source":24,"target":29},{"source":24,"target":4},{"source":29,"target":9},{"source":25,"target":3},{"source":5,"target":0},{"source":5,"target":3},{"source":5,"target":30},{"source":5,"target":31},{"source":5,"target":32},{"source":30,"target":7},{"source":30,"target":33},{"source":30,"target":5},{"source":33,"target":7},{"source":31,"target":11},{"source":31,"target":34},{"source":31,"target":5},{"source":34,"target":11},{"source":32,"target":3},{"source":6,"target":0},{"source":6,"target":3},{"source":6,"target":35},{"source":6,"target":36},{"source":6,"target":37},{"source":6,"target":38},{"source":6,"target":39},{"source":35,"target":40},{"source":35,"target":6},{"source":36,"target":41},{"source":36,"target":6},{"source":37,"target":9},{"source":37,"target":42},{"source":37,"target":6},{"source":42,"target":9},{"source":38,"target":9},{"source":38,"target":43},{"source":38,"target":6},{"source":43,"target":9},{"source":39,"target":3},{"source":7,"target":0},{"source":7,"target":44},{"source":7,"target":45},{"source":7,"target":46},{"source":7,"target":47},{"source":7,"target":48},{"source":44,"target":49},{"source":44,"target":7},{"source":45,"target":50},{"source":45,"target":7},{"source":46,"target":14},{"source":46,"target":51},{"source":46,"target":7},{"source":51,"target":14},{"source":47,"target":52},{"source":47,"target":7},{"source":48,"target":2},{"source":48,"target":53},{"source":48,"target":7},{"source":53,"target":2},{"source":8,"target":0},{"source":8,"target":54},{"source":54,"target":55},{"source":54,"target":8},{"source":9,"target":0},{"source":9,"target":56},{"source":56,"target":10},{"source":56,"target":57},{"source":56,"target":9},{"source":57,"target":10},{"source":10,"target":0},{"source":10,"target":58},{"source":10,"target":59},{"source":58,"target":5},{"source":58,"target":60},{"source":58,"target":10},{"source":60,"target":5},{"source":59,"target":4},{"source":59,"target":61},{"source":59,"target":10},{"source":61,"target":4},{"source":11,"target":0},{"source":11,"target":62},{"source":11,"target":63},{"source":11,"target":64},{"source":62,"target":65},{"source":62,"target":11},{"source":63,"target":66},{"source":63,"target":11},{"source":64,"target":12},{"source":64,"target":67},{"source":64,"target":11},{"source":67,"target":12},{"source":12,"target":0},{"source":12,"target":68},{"source":12,"target":69},{"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":12,"target":76},{"source":12,"target":77},{"source":12,"target":78},{"source":12,"target":79},{"source":12,"target":80},{"source":12,"target":81},{"source":12,"target":82},{"source":12,"target":83},{"source":12,"target":84},{"source":68,"target":12},{"source":69,"target":12},{"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":76,"target":12},{"source":77,"target":12},{"source":78,"target":12},{"source":79,"target":12},{"source":80,"target":12},{"source":81,"target":12},{"source":82,"target":12},{"source":83,"target":12},{"source":84,"target":12},{"source":13,"target":0},{"source":13,"target":85},{"source":85,"target":86},{"source":85,"target":13},{"source":14,"target":0},{"source":14,"target":87},{"source":14,"target":88},{"source":14,"target":89},{"source":87,"target":90},{"source":87,"target":14},{"source":88,"target":10},{"source":88,"target":91},{"source":88,"target":14},{"source":91,"target":10},{"source":89,"target":92},{"source":89,"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="test_package" nsURI="http://www.eclipse.org/ocl/examples/ui/tests/test" nsPrefix="test"> <eClassifiers xsi:type="ecore:EClass" name="TestClass"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="testFeature" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> </ecore:EPackage>
github:ecore:/data/nagaraj1993/Mutation-testing/Old System Test Cases Project/org.eclipse.ocl.examples.xtext.tests/models/wizard/Test.ecore
ecore
test_package TestClass testFeature
null
{"directed":true,"nodes":[{"nsPrefix":"test","nsURI":"http://www.eclipse.org/ocl/examples/ui/tests/test","name":"test_package","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TestClass","instanceClass":null,"abstract":false,"id":1,"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":"testFeature","changeable":true,"lowerBound":0,"iD":false,"id":2,"derived":false},{"id":3,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":1,"target":0},{"source":1,"target":2},{"source":2,"target":3},{"source":2,"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="touseflock" nsURI="http://com.misc.touse.moplaf.flock.emf" nsPrefix="tufl"> <eClassifiers xsi:type="ecore:EClass" name="ToUseDomain" eSuperTypes="../../com.misc.common.moplaf.propagator/model/propagator.ecore#//ObjectWithPropagatorFunctionAdapter ../../com.misc.common.moplaf.propagator/model/propagator.ecore#//ObjectWithPropagatorFunctionAdapterScope"> <eOperations name="refresh"/> <eStructuralFeatures xsi:type="ecore:EReference" name="Location" upperBound="-1" eType="#//ToUseLocation" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="Resource" upperBound="-1" eType="#//ToUseResource" containment="true" eOpposite="#//ToUseResource/Domain"/> <eStructuralFeatures xsi:type="ecore:EReference" name="FlockScope" eType="#//FlockScopeToUse" containment="true" eOpposite="#//FlockScopeToUse/ToUseDomain"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ToUseResource" abstract="true"> <eOperations name="refreshChain"/> <eStructuralFeatures xsi:type="ecore:EReference" name="Domain" lowerBound="1" eType="#//ToUseDomain" eOpposite="#//ToUseDomain/Resource"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="Name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="Chain" eType="ecore:EClass ../../com.misc.common.moplaf.flock.emf/model/flock.ecore#//Chain" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ToUseResourceTransition"> <eOperations name="refreshResource"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="Comments" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="Resource" lowerBound="1" eType="#//ToUseResource"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ToUseResourceConfiguration" eSuperTypes="#//ToUseResourceTransition"> <eOperations name="refreshChainConfiguration"/> <eStructuralFeatures xsi:type="ecore:EReference" name="ChainConfiguration" eType="ecore:EClass ../../com.misc.common.moplaf.flock.emf/model/flock.ecore#//ChainConfiguration" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ToUseResourceMount" eSuperTypes="#//ToUseResourceTransition"> <eOperations name="refreshChainMount"/> <eStructuralFeatures xsi:type="ecore:EReference" name="ChainMount" eType="ecore:EClass ../../com.misc.common.moplaf.flock.emf/model/flock.ecore#//ChainMount" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Tractor" eSuperTypes="#//ToUseResource"> <eStructuralFeatures xsi:type="ecore:EReference" name="Configuration" upperBound="-1" eType="#//TractorConfiguration" containment="true" eOpposite="#//TractorConfiguration/Tractor"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Trailer" eSuperTypes="#//ToUseResource"> <eStructuralFeatures xsi:type="ecore:EReference" name="Detach" upperBound="-1" eType="#//DetachTrailer" containment="true" eOpposite="#//DetachTrailer/Trailer"/> <eStructuralFeatures xsi:type="ecore:EReference" name="Attach" upperBound="-1" eType="#//AttachTrailer" containment="true" eOpposite="#//AttachTrailer/Trailer"/> <eStructuralFeatures xsi:type="ecore:EReference" name="Configuration" upperBound="-1" eType="#//TrailerConfiguration" containment="true" eOpposite="#//TrailerConfiguration/Trailer"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Shipment" eSuperTypes="#//ToUseResource"> <eStructuralFeatures xsi:type="ecore:EReference" name="Load" upperBound="-1" eType="#//LoadShipment" containment="true" eOpposite="#//LoadShipment/Shipment"/> <eStructuralFeatures xsi:type="ecore:EReference" name="Unload" upperBound="-1" eType="#//UnloadShipment" containment="true" eOpposite="#//UnloadShipment/Shipment"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="TractorConfiguration" eSuperTypes="#//ToUseResourceConfiguration"> <eStructuralFeatures xsi:type="ecore:EReference" name="Tractor" lowerBound="1" eType="#//Tractor" eOpposite="#//Tractor/Configuration"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="AttachTrailer" eSuperTypes="#//ToUseResourceMount"> <eStructuralFeatures xsi:type="ecore:EReference" name="Trailer" lowerBound="1" eType="#//Trailer" eOpposite="#//Trailer/Attach"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="DetachTrailer" eSuperTypes="#//ToUseResourceMount"> <eStructuralFeatures xsi:type="ecore:EReference" name="Trailer" lowerBound="1" eType="#//Trailer" eOpposite="#//Trailer/Detach"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="TrailerConfiguration" eSuperTypes="#//ToUseResourceConfiguration"> <eStructuralFeatures xsi:type="ecore:EReference" name="Trailer" lowerBound="1" eType="#//Trailer" eOpposite="#//Trailer/Configuration"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="LoadShipment" eSuperTypes="#//ToUseResourceMount"> <eStructuralFeatures xsi:type="ecore:EReference" name="Shipment" lowerBound="1" eType="#//Shipment" eOpposite="#//Shipment/Load"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="UnloadShipment" eSuperTypes="#//ToUseResourceMount"> <eStructuralFeatures xsi:type="ecore:EReference" name="Shipment" lowerBound="1" eType="#//Shipment" eOpposite="#//Shipment/Unload"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ToUseLocation" eSuperTypes="../../com.misc.common.moplaf.flock.emf/model/flock.ecore#//Location"> <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="FlockScopeToUse" eSuperTypes="../../com.misc.common.moplaf.flock.emf/model/flock.ecore#//FlockScope"> <eStructuralFeatures xsi:type="ecore:EReference" name="ToUseDomain" eType="#//ToUseDomain" eOpposite="#//ToUseDomain/FlockScope"/> </eClassifiers> </ecore:EPackage>
github:ecore:/data/MichelSc/touse.moplaf/touse.moplaf.flock/com.misc.touse.moplaf.flock.emf/model/touseflock.ecore
ecore
touseflock ToUseDomain refresh Location Resource FlockScope ToUseResource refreshChain Domain Name Chain ToUseResourceTransition refreshResource Comments Resource ToUseResourceConfiguration refreshChainConfiguration ChainConfiguration ToUseResourceMount refreshChainMount ChainMount Tractor Configuration Trailer Detach Attach Configuration Shipment Load Unload TractorConfiguration Tractor AttachTrailer Trailer DetachTrailer Trailer TrailerConfiguration Trailer LoadShipment Shipment UnloadShipment Shipment ToUseLocation Name FlockScopeToUse ToUseDomain
null
{"directed":true,"nodes":[{"nsPrefix":"tufl","nsURI":"http://com.misc.touse.moplaf.flock.emf","name":"touseflock","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ToUseDomain","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ToUseResource","instanceClass":null,"abstract":true,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ToUseResourceTransition","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ToUseResourceConfiguration","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ToUseResourceMount","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Tractor","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Trailer","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Shipment","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TractorConfiguration","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AttachTrailer","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DetachTrailer","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TrailerConfiguration","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LoadShipment","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"UnloadShipment","instanceClass":null,"abstract":false,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ToUseLocation","instanceClass":null,"abstract":false,"id":15,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FlockScopeToUse","instanceClass":null,"abstract":false,"id":16,"interface":false,"eClass":"EClass"},{"ordered":true,"upperBound":1,"unique":true,"name":"refresh","lowerBound":0,"id":17,"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":"Location","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":"Resource","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":"FlockScope","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"},{"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":"Domain","changeable":true,"resolveProxies":true,"lowerBound":1,"id":25,"derived":false},{"id":26,"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":"ToUseDomain","changeable":true,"resolveProxies":true,"lowerBound":0,"id":27,"derived":false},{"ordered":true,"upperBound":1,"unique":true,"name":"refreshChain","lowerBound":0,"id":28,"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":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":"Chain","changeable":true,"resolveProxies":true,"lowerBound":0,"id":30,"derived":false},{"id":31,"eClass":"EGenericType"},{"id":32,"eClass":"EGenericType"},{"id":33,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"refreshResource","lowerBound":0,"id":34,"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":"Comments","changeable":true,"lowerBound":0,"iD":false,"id":35,"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":"Resource","changeable":true,"resolveProxies":true,"lowerBound":1,"id":36,"derived":false},{"id":37,"eClass":"EGenericType"},{"id":38,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"refreshChainConfiguration","lowerBound":0,"id":39,"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":"ChainConfiguration","changeable":true,"resolveProxies":true,"lowerBound":0,"id":40,"derived":false},{"id":41,"eClass":"EGenericType"},{"id":42,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"refreshChainMount","lowerBound":0,"id":43,"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":"ChainMount","changeable":true,"resolveProxies":true,"lowerBound":0,"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":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"Configuration","changeable":true,"resolveProxies":true,"lowerBound":0,"id":47,"derived":false},{"id":48,"eClass":"EGenericType"},{"id":49,"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":"Tractor","changeable":true,"resolveProxies":true,"lowerBound":1,"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":"Detach","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":true,"unsettable":false,"transient":false,"unique":true,"name":"Attach","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":"Configuration","changeable":true,"resolveProxies":true,"lowerBound":0,"id":53,"derived":false},{"id":54,"eClass":"EGenericType"},{"id":55,"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":"Trailer","changeable":true,"resolveProxies":true,"lowerBound":1,"id":56,"derived":false},{"id":57,"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":"Trailer","changeable":true,"resolveProxies":true,"lowerBound":1,"id":58,"derived":false},{"id":59,"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":"Trailer","changeable":true,"resolveProxies":true,"lowerBound":1,"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":"Load","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":"Unload","changeable":true,"resolveProxies":true,"lowerBound":0,"id":62,"derived":false},{"id":63,"eClass":"EGenericType"},{"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":"Shipment","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":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"Shipment","changeable":true,"resolveProxies":true,"lowerBound":1,"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"},{"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":"Name","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"}],"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":1},{"source":18,"target":15},{"source":18,"target":23},{"source":18,"target":1},{"source":23,"target":15},{"source":19,"target":2},{"source":19,"target":24},{"source":19,"target":1},{"source":19,"target":25},{"source":24,"target":2},{"source":20,"target":16},{"source":20,"target":26},{"source":20,"target":1},{"source":20,"target":27},{"source":26,"target":16},{"source":2,"target":0},{"source":2,"target":28},{"source":2,"target":25},{"source":2,"target":29},{"source":2,"target":30},{"source":28,"target":2},{"source":25,"target":1},{"source":25,"target":31},{"source":25,"target":2},{"source":25,"target":19},{"source":31,"target":1},{"source":29,"target":32},{"source":29,"target":2},{"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":3},{"source":35,"target":37},{"source":35,"target":3},{"source":36,"target":2},{"source":36,"target":38},{"source":36,"target":3},{"source":38,"target":2},{"source":4,"target":0},{"source":4,"target":3},{"source":4,"target":39},{"source":4,"target":40},{"source":4,"target":41},{"source":39,"target":4},{"source":40,"target":42},{"source":40,"target":4},{"source":41,"target":3},{"source":5,"target":0},{"source":5,"target":3},{"source":5,"target":43},{"source":5,"target":44},{"source":5,"target":45},{"source":43,"target":5},{"source":44,"target":46},{"source":44,"target":5},{"source":45,"target":3},{"source":6,"target":0},{"source":6,"target":2},{"source":6,"target":47},{"source":6,"target":48},{"source":47,"target":9},{"source":47,"target":49},{"source":47,"target":6},{"source":47,"target":50},{"source":49,"target":9},{"source":48,"target":2},{"source":7,"target":0},{"source":7,"target":2},{"source":7,"target":51},{"source":7,"target":52},{"source":7,"target":53},{"source":7,"target":54},{"source":51,"target":11},{"source":51,"target":55},{"source":51,"target":7},{"source":51,"target":56},{"source":55,"target":11},{"source":52,"target":10},{"source":52,"target":57},{"source":52,"target":7},{"source":52,"target":58},{"source":57,"target":10},{"source":53,"target":12},{"source":53,"target":59},{"source":53,"target":7},{"source":53,"target":60},{"source":59,"target":12},{"source":54,"target":2},{"source":8,"target":0},{"source":8,"target":2},{"source":8,"target":61},{"source":8,"target":62},{"source":8,"target":63},{"source":61,"target":13},{"source":61,"target":64},{"source":61,"target":8},{"source":61,"target":65},{"source":64,"target":13},{"source":62,"target":14},{"source":62,"target":66},{"source":62,"target":8},{"source":62,"target":67},{"source":66,"target":14},{"source":63,"target":2},{"source":9,"target":0},{"source":9,"target":4},{"source":9,"target":50},{"source":9,"target":68},{"source":50,"target":6},{"source":50,"target":69},{"source":50,"target":9},{"source":50,"target":47},{"source":69,"target":6},{"source":68,"target":4},{"source":10,"target":0},{"source":10,"target":5},{"source":10,"target":58},{"source":10,"target":70},{"source":58,"target":7},{"source":58,"target":71},{"source":58,"target":10},{"source":58,"target":52},{"source":71,"target":7},{"source":70,"target":5},{"source":11,"target":0},{"source":11,"target":5},{"source":11,"target":56},{"source":11,"target":72},{"source":56,"target":7},{"source":56,"target":73},{"source":56,"target":11},{"source":56,"target":51},{"source":73,"target":7},{"source":72,"target":5},{"source":12,"target":0},{"source":12,"target":4},{"source":12,"target":60},{"source":12,"target":74},{"source":60,"target":7},{"source":60,"target":75},{"source":60,"target":12},{"source":60,"target":53},{"source":75,"target":7},{"source":74,"target":4},{"source":13,"target":0},{"source":13,"target":5},{"source":13,"target":65},{"source":13,"target":76},{"source":65,"target":8},{"source":65,"target":77},{"source":65,"target":13},{"source":65,"target":61},{"source":77,"target":8},{"source":76,"target":5},{"source":14,"target":0},{"source":14,"target":5},{"source":14,"target":67},{"source":14,"target":78},{"source":67,"target":8},{"source":67,"target":79},{"source":67,"target":14},{"source":67,"target":62},{"source":79,"target":8},{"source":78,"target":5},{"source":15,"target":0},{"source":15,"target":80},{"source":15,"target":81},{"source":80,"target":82},{"source":80,"target":15},{"source":16,"target":0},{"source":16,"target":27},{"source":16,"target":83},{"source":27,"target":1},{"source":27,"target":84},{"source":27,"target":16},{"source":27,"target":20},{"source":84,"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="bz390942" nsURI="http://www.eclipse.org/emf/texo/test/model/issues/bz390942" nsPrefix="bz390942"> <eClassifiers xsi:type="ecore:EClass" name="BZ390942"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFloat"/> </eClassifiers> </ecore:EPackage>
github:ecore:/data/PSI-Polska/texo/tests/org.eclipse.emf.texo.modelgenerator.test/src/org/eclipse/emf/texo/modelgenerator/test/models/issues/bz390942.ecore
ecore
bz390942 BZ390942 value
null
{"directed":true,"nodes":[{"nsPrefix":"bz390942","nsURI":"http://www.eclipse.org/emf/texo/test/model/issues/bz390942","name":"bz390942","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BZ390942","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"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":2,"derived":false},{"id":3,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":1,"target":0},{"source":1,"target":2},{"source":2,"target":3},{"source":2,"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="bz404132" nsURI="http://www.eclipse.org/emf/texo/test/model/issues/bz404132" nsPrefix="bz404132"> <eClassifiers xsi:type="ecore:EClass" name="Test404132"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> </ecore:EPackage>
github:ecore:/data/PSI-Polska/texo/tests/org.eclipse.emf.texo.modelgenerator.test/src/org/eclipse/emf/texo/modelgenerator/test/models/issues/bz404132.ecore
ecore
bz404132 Test404132 name
null
{"directed":true,"nodes":[{"nsPrefix":"bz404132","nsURI":"http://www.eclipse.org/emf/texo/test/model/issues/bz404132","name":"bz404132","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Test404132","instanceClass":null,"abstract":false,"id":1,"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":2,"derived":false},{"id":3,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":1,"target":0},{"source":1,"target":2},{"source":2,"target":3},{"source":2,"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="gseq" nsURI="http://mleduc.fr/gseq" nsPrefix="gseq"> <eClassifiers xsi:type="ecore:EClass" name="Program"> <eOperations name="init"/> <eStructuralFeatures xsi:type="ecore:EReference" name="methods" upperBound="-1" eType="#//Method" containment="true" eOpposite="#//Method/inProgram"/> <eStructuralFeatures xsi:type="ecore:EReference" name="startMethod" lowerBound="1" eType="#//Method"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Method"> <eOperations name="call"/> <eStructuralFeatures xsi:type="ecore:EReference" name="operations" upperBound="-1" eType="#//Operation" containment="true" eOpposite="#//Operation/executedBy"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="inProgram" lowerBound="1" eType="#//Program" eOpposite="#//Program/methods"/> <eStructuralFeatures xsi:type="ecore:EReference" name="calledBy" upperBound="-1" eType="#//MethodCall" eOpposite="#//MethodCall/methodToCall"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Operation" abstract="true"> <eOperations name="execute"/> <eStructuralFeatures xsi:type="ecore:EReference" name="executedBy" eType="#//Method" eOpposite="#//Method/operations"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Print" eSuperTypes="#//Operation"> <eOperations name="print"/> <eStructuralFeatures xsi:type="ecore:EReference" name="toPrint" lowerBound="1" eType="#//Operation" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="MethodCall" eSuperTypes="#//IntegerExpression"> <eStructuralFeatures xsi:type="ecore:EReference" name="methodToCall" lowerBound="1" eType="#//Method" eOpposite="#//Method/calledBy"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="BooleanExpression" abstract="true" eSuperTypes="#//Operation"> <eOperations name="bvalue" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/> <eOperations name="pretty" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="If" eSuperTypes="#//Operation"> <eStructuralFeatures xsi:type="ecore:EReference" name="elseBranch" eType="#//Operation" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="thenBranch" lowerBound="1" eType="#//Operation" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="conditionIf" lowerBound="1" eType="#//BooleanExpression" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="True" eSuperTypes="#//BooleanExpression"/> <eClassifiers xsi:type="ecore:EClass" name="False" eSuperTypes="#//BooleanExpression"/> <eClassifiers xsi:type="ecore:EClass" name="Equality" eSuperTypes="#//BooleanExpression"> <eStructuralFeatures xsi:type="ecore:EReference" name="leftEquality" lowerBound="1" eType="#//IntegerExpression"/> <eStructuralFeatures xsi:type="ecore:EReference" name="rightEquality" lowerBound="1" eType="#//IntegerExpression"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Not" eSuperTypes="#//BooleanExpression"> <eStructuralFeatures xsi:type="ecore:EReference" name="notExpression" lowerBound="1" eType="#//BooleanExpression"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="And" eSuperTypes="#//BooleanExpression"> <eStructuralFeatures xsi:type="ecore:EReference" name="leftAnd" lowerBound="1" eType="#//BooleanExpression"/> <eStructuralFeatures xsi:type="ecore:EReference" name="rightAnd" lowerBound="1" eType="#//BooleanExpression"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="IntegerExpression" abstract="true" eSuperTypes="#//Operation"> <eOperations name="ivalue" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//ELong"/> <eOperations name="pretty" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Const" eSuperTypes="#//IntegerExpression"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="value" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//ELong"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Var" eSuperTypes="#//IntegerExpression"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="varName" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Assign" eSuperTypes="#//Operation"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="varName" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="assignedExpression" lowerBound="1" eType="#//IntegerExpression" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Plus" eSuperTypes="#//IntegerExpression"> <eStructuralFeatures xsi:type="ecore:EReference" name="leftPlus" lowerBound="1" eType="#//IntegerExpression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="rightPlus" lowerBound="1" eType="#//IntegerExpression" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="GreaterThan" eSuperTypes="#//BooleanExpression"> <eStructuralFeatures xsi:type="ecore:EReference" name="leftGreaterThan" lowerBound="1" eType="#//IntegerExpression"/> <eStructuralFeatures xsi:type="ecore:EReference" name="rightGreaterThan" eType="#//IntegerExpression"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="While" eSuperTypes="#//Operation"> <eStructuralFeatures xsi:type="ecore:EReference" name="whileCondition" eType="#//BooleanExpression"/> <eStructuralFeatures xsi:type="ecore:EReference" name="whileExpression" lowerBound="1" eType="#//IntegerExpression"/> </eClassifiers> </ecore:EPackage>
github:ecore:/data/manuelleduc/xp-gemoc-concurrent/without_metamodel/languages_workbenches/gseq/fr.mleduc.gseq.model/model/gseq.ecore
ecore
gseq Program init methods startMethod Method call operations name inProgram calledBy Operation execute executedBy Print print toPrint MethodCall methodToCall BooleanExpression bvalue pretty If elseBranch thenBranch conditionIf True False Equality leftEquality rightEquality Not notExpression And leftAnd rightAnd IntegerExpression ivalue pretty Const value Var varName Assign varName assignedExpression Plus leftPlus rightPlus GreaterThan leftGreaterThan rightGreaterThan While whileCondition whileExpression
null
{"directed":true,"nodes":[{"nsPrefix":"gseq","nsURI":"http://mleduc.fr/gseq","name":"gseq","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Program","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Method","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Operation","instanceClass":null,"abstract":true,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Print","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MethodCall","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BooleanExpression","instanceClass":null,"abstract":true,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"If","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"True","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"False","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Equality","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Not","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"And","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IntegerExpression","instanceClass":null,"abstract":true,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Const","instanceClass":null,"abstract":false,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Var","instanceClass":null,"abstract":false,"id":15,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Assign","instanceClass":null,"abstract":false,"id":16,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Plus","instanceClass":null,"abstract":false,"id":17,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"GreaterThan","instanceClass":null,"abstract":false,"id":18,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"While","instanceClass":null,"abstract":false,"id":19,"interface":false,"eClass":"EClass"},{"ordered":true,"upperBound":1,"unique":true,"name":"init","lowerBound":0,"id":20,"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":"methods","changeable":true,"resolveProxies":true,"lowerBound":0,"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":"startMethod","changeable":true,"resolveProxies":true,"lowerBound":1,"id":22,"derived":false},{"id":23,"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":"inProgram","changeable":true,"resolveProxies":true,"lowerBound":1,"id":24,"derived":false},{"id":25,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"call","lowerBound":0,"id":26,"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":"operations","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":"name","changeable":true,"lowerBound":0,"iD":false,"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":"calledBy","changeable":true,"resolveProxies":true,"lowerBound":0,"id":29,"derived":false},{"id":30,"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":"executedBy","changeable":true,"resolveProxies":true,"lowerBound":0,"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":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"methodToCall","changeable":true,"resolveProxies":true,"lowerBound":1,"id":35,"derived":false},{"ordered":true,"upperBound":1,"unique":true,"name":"execute","lowerBound":0,"id":36,"many":false,"required":false,"eClass":"EOperation"},{"id":37,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"print","lowerBound":0,"id":38,"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":"toPrint","changeable":true,"resolveProxies":true,"lowerBound":1,"id":39,"derived":false},{"id":40,"eClass":"EGenericType"},{"id":41,"eClass":"EGenericType"},{"id":42,"eClass":"EGenericType"},{"id":43,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"bvalue","lowerBound":0,"id":44,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"pretty","lowerBound":0,"id":45,"many":false,"required":false,"eClass":"EOperation"},{"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":"elseBranch","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":true,"unsettable":false,"transient":false,"unique":true,"name":"thenBranch","changeable":true,"resolveProxies":true,"lowerBound":1,"id":50,"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":"conditionIf","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"},{"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":false,"unsettable":false,"transient":false,"unique":true,"name":"leftEquality","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":false,"unsettable":false,"transient":false,"unique":true,"name":"rightEquality","changeable":true,"resolveProxies":true,"lowerBound":1,"id":59,"derived":false},{"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":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"notExpression","changeable":true,"resolveProxies":true,"lowerBound":1,"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":"leftAnd","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":"rightAnd","changeable":true,"resolveProxies":true,"lowerBound":1,"id":67,"derived":false},{"id":68,"eClass":"EGenericType"},{"id":69,"eClass":"EGenericType"},{"id":70,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"ivalue","lowerBound":0,"id":71,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"pretty","lowerBound":0,"id":72,"many":false,"required":false,"eClass":"EOperation"},{"id":73,"eClass":"EGenericType"},{"id":74,"eClass":"EGenericType"},{"id":75,"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":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":"varName","changeable":true,"lowerBound":1,"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":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"varName","changeable":true,"lowerBound":1,"iD":false,"id":82,"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":"assignedExpression","changeable":true,"resolveProxies":true,"lowerBound":1,"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":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"leftPlus","changeable":true,"resolveProxies":true,"lowerBound":1,"id":87,"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":"rightPlus","changeable":true,"resolveProxies":true,"lowerBound":1,"id":88,"derived":false},{"id":89,"eClass":"EGenericType"},{"id":90,"eClass":"EGenericType"},{"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":"leftGreaterThan","changeable":true,"resolveProxies":true,"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":false,"unsettable":false,"transient":false,"unique":true,"name":"rightGreaterThan","changeable":true,"resolveProxies":true,"lowerBound":0,"id":93,"derived":false},{"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":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"whileCondition","changeable":true,"resolveProxies":true,"lowerBound":0,"id":97,"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":"whileExpression","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":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":1},{"source":21,"target":2},{"source":21,"target":23},{"source":21,"target":1},{"source":21,"target":24},{"source":23,"target":2},{"source":22,"target":2},{"source":22,"target":25},{"source":22,"target":1},{"source":25,"target":2},{"source":2,"target":0},{"source":2,"target":26},{"source":2,"target":27},{"source":2,"target":28},{"source":2,"target":24},{"source":2,"target":29},{"source":26,"target":2},{"source":27,"target":3},{"source":27,"target":30},{"source":27,"target":2},{"source":27,"target":31},{"source":30,"target":3},{"source":28,"target":32},{"source":28,"target":2},{"source":24,"target":1},{"source":24,"target":33},{"source":24,"target":2},{"source":24,"target":21},{"source":33,"target":1},{"source":29,"target":5},{"source":29,"target":34},{"source":29,"target":2},{"source":29,"target":35},{"source":34,"target":5},{"source":3,"target":0},{"source":3,"target":36},{"source":3,"target":31},{"source":36,"target":3},{"source":31,"target":2},{"source":31,"target":37},{"source":31,"target":3},{"source":31,"target":27},{"source":37,"target":2},{"source":4,"target":0},{"source":4,"target":3},{"source":4,"target":38},{"source":4,"target":39},{"source":4,"target":40},{"source":38,"target":4},{"source":39,"target":3},{"source":39,"target":41},{"source":39,"target":4},{"source":41,"target":3},{"source":40,"target":3},{"source":5,"target":0},{"source":5,"target":13},{"source":5,"target":35},{"source":5,"target":42},{"source":35,"target":2},{"source":35,"target":43},{"source":35,"target":5},{"source":35,"target":29},{"source":43,"target":2},{"source":42,"target":13},{"source":6,"target":0},{"source":6,"target":3},{"source":6,"target":44},{"source":6,"target":45},{"source":6,"target":46},{"source":44,"target":47},{"source":44,"target":6},{"source":45,"target":48},{"source":45,"target":6},{"source":46,"target":3},{"source":7,"target":0},{"source":7,"target":3},{"source":7,"target":49},{"source":7,"target":50},{"source":7,"target":51},{"source":7,"target":52},{"source":49,"target":3},{"source":49,"target":53},{"source":49,"target":7},{"source":53,"target":3},{"source":50,"target":3},{"source":50,"target":54},{"source":50,"target":7},{"source":54,"target":3},{"source":51,"target":6},{"source":51,"target":55},{"source":51,"target":7},{"source":55,"target":6},{"source":52,"target":3},{"source":8,"target":0},{"source":8,"target":6},{"source":8,"target":56},{"source":56,"target":6},{"source":9,"target":0},{"source":9,"target":6},{"source":9,"target":57},{"source":57,"target":6},{"source":10,"target":0},{"source":10,"target":6},{"source":10,"target":58},{"source":10,"target":59},{"source":10,"target":60},{"source":58,"target":13},{"source":58,"target":61},{"source":58,"target":10},{"source":61,"target":13},{"source":59,"target":13},{"source":59,"target":62},{"source":59,"target":10},{"source":62,"target":13},{"source":60,"target":6},{"source":11,"target":0},{"source":11,"target":6},{"source":11,"target":63},{"source":11,"target":64},{"source":63,"target":6},{"source":63,"target":65},{"source":63,"target":11},{"source":65,"target":6},{"source":64,"target":6},{"source":12,"target":0},{"source":12,"target":6},{"source":12,"target":66},{"source":12,"target":67},{"source":12,"target":68},{"source":66,"target":6},{"source":66,"target":69},{"source":66,"target":12},{"source":69,"target":6},{"source":67,"target":6},{"source":67,"target":70},{"source":67,"target":12},{"source":70,"target":6},{"source":68,"target":6},{"source":13,"target":0},{"source":13,"target":3},{"source":13,"target":71},{"source":13,"target":72},{"source":13,"target":73},{"source":71,"target":74},{"source":71,"target":13},{"source":72,"target":75},{"source":72,"target":13},{"source":73,"target":3},{"source":14,"target":0},{"source":14,"target":13},{"source":14,"target":76},{"source":14,"target":77},{"source":76,"target":78},{"source":76,"target":14},{"source":77,"target":13},{"source":15,"target":0},{"source":15,"target":13},{"source":15,"target":79},{"source":15,"target":80},{"source":79,"target":81},{"source":79,"target":15},{"source":80,"target":13},{"source":16,"target":0},{"source":16,"target":3},{"source":16,"target":82},{"source":16,"target":83},{"source":16,"target":84},{"source":82,"target":85},{"source":82,"target":16},{"source":83,"target":13},{"source":83,"target":86},{"source":83,"target":16},{"source":86,"target":13},{"source":84,"target":3},{"source":17,"target":0},{"source":17,"target":13},{"source":17,"target":87},{"source":17,"target":88},{"source":17,"target":89},{"source":87,"target":13},{"source":87,"target":90},{"source":87,"target":17},{"source":90,"target":13},{"source":88,"target":13},{"source":88,"target":91},{"source":88,"target":17},{"source":91,"target":13},{"source":89,"target":13},{"source":18,"target":0},{"source":18,"target":6},{"source":18,"target":92},{"source":18,"target":93},{"source":18,"target":94},{"source":92,"target":13},{"source":92,"target":95},{"source":92,"target":18},{"source":95,"target":13},{"source":93,"target":13},{"source":93,"target":96},{"source":93,"target":18},{"source":96,"target":13},{"source":94,"target":6},{"source":19,"target":0},{"source":19,"target":3},{"source":19,"target":97},{"source":19,"target":98},{"source":19,"target":99},{"source":97,"target":6},{"source":97,"target":100},{"source":97,"target":19},{"source":100,"target":6},{"source":98,"target":13},{"source":98,"target":101},{"source":98,"target":19},{"source":101,"target":13},{"source":99,"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="store" nsURI="store" nsPrefix="store"> <eClassifiers xsi:type="ecore:EEnum" name="UserType"> <eLiterals name="SYSTEM"/> <eLiterals name="ADMIN" value="1"/> <eLiterals name="USER" value="2"/> <eLiterals name="READ_ONLY" value="3"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="SIPrefix"> <eLiterals name="meter"/> <eLiterals name="attometer" value="-18"/> <eLiterals name="femtometer" value="-15"/> <eLiterals name="picometer" value="-12"/> <eLiterals name="nanometer" value="-9"/> <eLiterals name="micrometer" value="-6"/> <eLiterals name="millimeter" value="-3"/> <eLiterals name="centimeter" value="-2"/> <eLiterals name="decimeter" value="-1"/> <eLiterals name="decameter" value="1"/> <eLiterals name="hectometer" value="2"/> <eLiterals name="kilometer" value="3"/> <eLiterals name="megameter" value="6"/> <eLiterals name="gigameter" value="9"/> <eLiterals name="terameter" value="12"/> <eLiterals name="petameter" value="15"/> <eLiterals name="exameter" value="18"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="ObjectState"> <eLiterals name="ACTIVE"/> <eLiterals name="DELETED" value="1"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Project"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="id" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="hasAuthorizedUsers" upperBound="-1" eType="#//User" eOpposite="#//User/hasRightsOn"/> <eStructuralFeatures xsi:type="ecore:EReference" name="concreteRevisions" upperBound="-1" eType="#//ConcreteRevision" eOpposite="#//ConcreteRevision/project"/> <eStructuralFeatures xsi:type="ecore:EReference" name="revisions" upperBound="-1" eType="#//Revision" eOpposite="#//Revision/project"/> <eStructuralFeatures xsi:type="ecore:EReference" name="lastConcreteRevision" eType="#//ConcreteRevision"/> <eStructuralFeatures xsi:type="ecore:EReference" name="lastRevision" eType="#//Revision"/> <eStructuralFeatures xsi:type="ecore:EReference" name="checkouts" upperBound="-1" eType="#//Checkout" eOpposite="#//Checkout/project"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="state" eType="#//ObjectState"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="createdDate" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDate"/> <eStructuralFeatures xsi:type="ecore:EReference" name="createdBy" eType="#//User"/> <eStructuralFeatures xsi:type="ecore:EReference" name="geoTag" eType="#//GeoTag" eOpposite="#//GeoTag/projects"/> <eStructuralFeatures xsi:type="ecore:EReference" name="subProjects" upperBound="-1" eType="#//Project" eOpposite="#//Project/parent"/> <eStructuralFeatures xsi:type="ecore:EReference" name="parent" eType="#//Project" eOpposite="#//Project/subProjects"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="description" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="clashDetectionSettings" eType="#//ClashDetectionSettings" eOpposite="#//ClashDetectionSettings/projects"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="exportLengthMeasurePrefix" eType="#//SIPrefix"/> <eStructuralFeatures xsi:type="ecore:EReference" name="extendedData" upperBound="-1" eType="#//ExtendedData"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="User"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" 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"/> <eStructuralFeatures xsi:type="ecore:EReference" name="hasRightsOn" upperBound="-1" eType="#//Project" eOpposite="#//Project/hasAuthorizedUsers"/> <eStructuralFeatures xsi:type="ecore:EReference" name="revisions" upperBound="-1" eType="#//Revision"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="state" eType="#//ObjectState"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="createdOn" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDate"/> <eStructuralFeatures xsi:type="ecore:EReference" name="createdBy" eType="#//User"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="userType" eType="#//UserType"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="username" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="lastSeen" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDate"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="validationToken" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="validationTokenCreated" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDate"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="notificationUrl" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="schemas" upperBound="-1" eType="#//ExtendedDataSchema" eOpposite="#//ExtendedDataSchema/users"/> <eStructuralFeatures xsi:type="ecore:EReference" name="extendedData" upperBound="-1" eType="#//ExtendedData" eOpposite="#//ExtendedData/user"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Clash"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name2" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="type1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="type2" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="revision1" eType="#//Revision"/> <eStructuralFeatures xsi:type="ecore:EReference" name="revision2" eType="#//Revision"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="EidClash" eSuperTypes="#//Clash"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="eid1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//ELongObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="eid2" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//ELongObject"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="GuidClash" eSuperTypes="#//Clash"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="guid1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="guid2" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ClashDetectionSettings"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="enabled" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBooleanObject"/> <eStructuralFeatures xsi:type="ecore:EReference" name="projects" upperBound="-1" eType="#//Project" eOpposite="#//Project/clashDetectionSettings"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="margin" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDoubleObject"/> <eStructuralFeatures xsi:type="ecore:EReference" name="revisions" upperBound="-1" eType="#//Revision"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="ignoredClasses" upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Revision"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="id" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"/> <eStructuralFeatures xsi:type="ecore:EReference" name="user" eType="#//User"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="date" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDate"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="comment" 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#//ELongObject"/> <eStructuralFeatures xsi:type="ecore:EReference" name="concreteRevisions" upperBound="-1" eType="#//ConcreteRevision" eOpposite="#//ConcreteRevision/revisions"/> <eStructuralFeatures xsi:type="ecore:EReference" name="lastConcreteRevision" eType="#//ConcreteRevision"/> <eStructuralFeatures xsi:type="ecore:EReference" name="checkouts" upperBound="-1" eType="#//Checkout" eOpposite="#//Checkout/revision"/> <eStructuralFeatures xsi:type="ecore:EReference" name="project" eType="#//Project" eOpposite="#//Project/revisions"/> <eStructuralFeatures xsi:type="ecore:EReference" name="lastClashes" upperBound="-1" eType="#//Clash"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="tag" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="lastError" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="bmi" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="nrClashes" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="laid" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//ELongObject"/> <eStructuralFeatures xsi:type="ecore:EReference" name="extendedData" upperBound="-1" eType="#//ExtendedData"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ConcreteRevision"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="id" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"/> <eStructuralFeatures xsi:type="ecore:EReference" name="project" eType="#//Project" eOpposite="#//Project/concreteRevisions"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="checksum" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EByteArray"/> <eStructuralFeatures xsi:type="ecore:EReference" name="revisions" upperBound="-1" eType="#//Revision" eOpposite="#//Revision/concreteRevisions"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="size" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//ELongObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="date" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDate"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="lastError" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="user" eType="#//User"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="GeoTag"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="enabled" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBooleanObject"/> <eStructuralFeatures xsi:type="ecore:EReference" name="projects" upperBound="-1" eType="#//Project" eOpposite="#//Project/geoTag"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="x" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDoubleObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="y" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDoubleObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="z" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDoubleObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="epsg" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="directionAngle" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDoubleObject"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Checkout"> <eStructuralFeatures xsi:type="ecore:EReference" name="user" eType="#//User"/> <eStructuralFeatures xsi:type="ecore:EReference" name="revision" eType="#//Revision" eOpposite="#//Revision/checkouts"/> <eStructuralFeatures xsi:type="ecore:EReference" name="project" eType="#//Project" eOpposite="#//Project/checkouts"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="date" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDate"/> <eStructuralFeatures xsi:type="ecore:EReference" name="checkin" eType="#//Revision"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="active" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBooleanObject"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Settings"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="showVersionUpgradeAvailable" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBooleanObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="sendConfirmationEmailAfterRegistration" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="useCaching" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBooleanObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="allowSelfRegistration" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBooleanObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="autoTestClashes" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBooleanObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="intelligentMerging" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBooleanObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="allowUsersToCreateTopLevelProjects" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="checkinMergingEnabled" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBooleanObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="registrationAddition" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="smtpServer" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="emailSenderAddress" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="customLogoAddress" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="siteAddress" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="hideUserListForNonAdmin" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBooleanObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="protocolBuffersPort" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"/> <eStructuralFeatures xsi:type="ecore:EReference" name="serializers" upperBound="-1" eType="#//Serializer" eOpposite="#//Serializer/settings"/> <eStructuralFeatures xsi:type="ecore:EReference" name="objectIDMs" upperBound="-1" eType="#//ObjectIDM" eOpposite="#//ObjectIDM/settings"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="headerAddition" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="footerAddition" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="mergeIdentifier" eType="#//MergeIdentifier"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="cacheOutputFiles" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBooleanObject"/> <eStructuralFeatures xsi:type="ecore:EReference" name="ifcEngines" upperBound="-1" eType="#//IfcEngine" eOpposite="#//IfcEngine/settings"/> <eStructuralFeatures xsi:type="ecore:EReference" name="plugins" upperBound="-1" eType="#//Plugin" eOpposite="#//Plugin/settings"/> <eStructuralFeatures xsi:type="ecore:EReference" name="deserializers" upperBound="-1" eType="#//Deserializer" eOpposite="#//Deserializer/settings"/> <eStructuralFeatures xsi:type="ecore:EReference" name="schemas" upperBound="-1" eType="#//ExtendedDataSchema" eOpposite="#//ExtendedDataSchema/settings"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Serializer"> <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="extension" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="contentType" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="className" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="enabled" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBooleanObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="defaultSerializer" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBooleanObject"/> <eStructuralFeatures xsi:type="ecore:EReference" name="objectIDM" eType="#//ObjectIDM" eOpposite="#//ObjectIDM/serializers"/> <eStructuralFeatures xsi:type="ecore:EReference" name="settings" eType="#//Settings" eOpposite="#//Settings/serializers"/> <eStructuralFeatures xsi:type="ecore:EReference" name="ifcEngine" eType="#//IfcEngine" eOpposite="#//IfcEngine/serializers"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ObjectIDM"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="className" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="enabled" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBooleanObject"/> <eStructuralFeatures xsi:type="ecore:EReference" name="serializers" upperBound="-1" eType="#//Serializer" eOpposite="#//Serializer/objectIDM"/> <eStructuralFeatures xsi:type="ecore:EReference" name="settings" eType="#//Settings" eOpposite="#//Settings/objectIDMs"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="MergeIdentifier"> <eLiterals name="NAME"/> <eLiterals name="GUID" value="1"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="IfcEngine"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="active" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBooleanObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="className" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="enabled" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBooleanObject"/> <eStructuralFeatures xsi:type="ecore:EReference" name="serializers" upperBound="-1" eType="#//Serializer" eOpposite="#//Serializer/ifcEngine"/> <eStructuralFeatures xsi:type="ecore:EReference" name="settings" eType="#//Settings" eOpposite="#//Settings/ifcEngines"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Plugin"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="enabled" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBooleanObject"/> <eStructuralFeatures xsi:type="ecore:EReference" name="settings" eType="#//Settings" eOpposite="#//Settings/plugins"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Deserializer"> <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="className" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="enabled" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBooleanObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="defaultDeserializer" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBooleanObject"/> <eStructuralFeatures xsi:type="ecore:EReference" name="settings" eType="#//Settings" eOpposite="#//Settings/deserializers"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CheckinResult"> <eStructuralFeatures xsi:type="ecore:EReference" name="revision" eType="#//Revision"/> <eStructuralFeatures xsi:type="ecore:EReference" name="project" eType="#//Project"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="progress" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="lastError" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="status" eType="#//CheckinStatus"/> </eClassifiers> <eClassifiers xsi:type="ecore:EDataType" name="DataHandler" instanceClassName="javax.activation.DataHandler"/> <eClassifiers xsi:type="ecore:EClass" name="DownloadResult"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="projectName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="revisionNr" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="file" eType="#//DataHandler"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CheckoutResult" eSuperTypes="#//DownloadResult"/> <eClassifiers xsi:type="ecore:EClass" name="DataValue"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="fieldName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="DataObject"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="type" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="guid" 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:EReference" name="values" upperBound="-1" eType="#//DataValue"> <eAnnotations source="embedsreference"/> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="UserSession"> <eStructuralFeatures xsi:type="ecore:EReference" name="user" eType="#//User"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="username" 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="type" eType="#//UserType"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="remoteAddress" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="activeSince" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDate"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="lastActive" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDate"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="accessMethod" eType="ecore:EEnum log#//AccessMethod"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Migration"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="number" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="description" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="executed" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBooleanObject"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ReferenceDataValue" eSuperTypes="#//DataValue"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="typeName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="guid" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ListDataValue" eSuperTypes="#//DataValue"> <eStructuralFeatures xsi:type="ecore:EReference" name="values" upperBound="-1" eType="#//DataValue"> <eAnnotations source="embedsreference"/> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="SimpleDataValue" eSuperTypes="#//DataValue"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="stringValue" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="DatabaseInformationItem"> <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="DatabaseInformationCategory"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="title" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="items" upperBound="-1" eType="#//DatabaseInformationItem"> <eAnnotations source="embedsreference"/> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="DatabaseInformation"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="numberOfProjects" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="numberOfUsers" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="numberOfRevisions" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="numberOfCheckouts" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="databaseSizeInBytes" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//ELongObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="type" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="created" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDate"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="location" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="schemaVersion" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"/> <eStructuralFeatures xsi:type="ecore:EReference" name="categories" upperBound="-1" eType="#//DatabaseInformationCategory"> <eAnnotations source="embedsreference"/> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="SerializerPluginDescriptor"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="pluginClassName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="defaultName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="defaultExtension" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="defaultContentType" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="DeserializerPluginDescriptor"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="pluginClassName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="defaultName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="RevisionSummaryType"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="count" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="RevisionSummaryContainer"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="types" upperBound="-1" eType="#//RevisionSummaryType"> <eAnnotations source="embedsreference"/> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="RevisionSummary"> <eStructuralFeatures xsi:type="ecore:EReference" name="list" upperBound="-1" eType="#//RevisionSummaryContainer"> <eAnnotations source="embedsreference"/> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="PluginDescriptor"> <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="location" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="enabled" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBooleanObject"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="LongAction"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="identification" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="user" eType="#//User"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="start" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDate"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="username" 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="LongCheckinAction" eSuperTypes="#//LongAction"> <eStructuralFeatures xsi:type="ecore:EReference" name="revisions" upperBound="-1" eType="#//Revision"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ObjectIDMPluginDescriptor"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="className" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="CompareIdentifier"> <eLiterals name="NAME_ID"/> <eLiterals name="GUID_ID" value="1"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="CompareType"> <eLiterals name="ALL"/> <eLiterals name="ADD" value="1"/> <eLiterals name="MODIFY" value="2"/> <eLiterals name="DELETE" value="3"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CompareItem"> <eStructuralFeatures xsi:type="ecore:EReference" name="dataObject" eType="#//DataObject"> <eAnnotations source="embedsreference"/> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ObjectAdded" eSuperTypes="#//CompareItem"/> <eClassifiers xsi:type="ecore:EClass" name="ObjectRemoved" eSuperTypes="#//CompareItem"/> <eClassifiers xsi:type="ecore:EClass" name="ObjectModified" eSuperTypes="#//CompareItem"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="fieldName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <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"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CompareContainer"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="type" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="items" upperBound="-1" eType="#//CompareItem"> <eAnnotations source="embedsreference"/> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CompareResult"> <eStructuralFeatures xsi:type="ecore:EReference" name="items" upperBound="-1" eType="#//CompareContainer"> <eAnnotations source="embedsreference"/> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="ActionState"> <eLiterals name="UNKNOWN"/> <eLiterals name="STARTED" value="1"/> <eLiterals name="FINISHED" value="2"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="LongActionState"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="progress" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="state" eType="#//ActionState"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Notification"/> <eClassifiers xsi:type="ecore:EClass" name="NewProjectNotification" eSuperTypes="#//Notification"> <eStructuralFeatures xsi:type="ecore:EReference" name="project" eType="#//Project"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="NewRevisionNotification" eSuperTypes="#//Notification"> <eStructuralFeatures xsi:type="ecore:EReference" name="revision" eType="#//Revision"/> <eStructuralFeatures xsi:type="ecore:EReference" name="project" eType="#//Project"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CompileResult"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="compileOke" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBooleanObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="warnings" upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="errors" upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="RunResult"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="runOke" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBooleanObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="warnings" upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="errors" upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="output" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="ServerState"> <eLiterals name="UNDEFINED"/> <eLiterals name="NOT_SETUP" value="1"/> <eLiterals name="MIGRATION_REQUIRED" value="2"/> <eLiterals name="MIGRATION_IMPOSSIBLE" value="3"/> <eLiterals name="FATAL_ERROR" value="4"/> <eLiterals name="RUNNING" value="5"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ServerInfo"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="serverState" eType="#//ServerState"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="errorMessage" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Version"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="major" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="minor" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="revision" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="date" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDate"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="downloadUrl" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="supportUrl" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="supportEmail" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="IfcEnginePluginDescriptor"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="pluginClassName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="defaultName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="CheckinStatus"> <eLiterals name="CH_NONE"/> <eLiterals name="CH_STARTED" value="1"/> <eLiterals name="CH_FINISHED" value="2"/> <eLiterals name="CH_ERROR" value="3"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="ExtendedDataSchemaType"> <eLiterals name="XSD"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ExtendedDataSchema"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="url" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="data" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EByteArray"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="validate" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="type" eType="#//ExtendedDataSchemaType"/> <eStructuralFeatures xsi:type="ecore:EReference" name="settings" eType="#//Settings" eOpposite="#//Settings/schemas"/> <eStructuralFeatures xsi:type="ecore:EReference" name="users" upperBound="-1" eType="#//User" eOpposite="#//User/schemas"/> <eStructuralFeatures xsi:type="ecore:EReference" name="extendedData" upperBound="-1" eType="#//ExtendedData" eOpposite="#//ExtendedData/schema"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ExtendedData"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="url" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="data" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EByteArray"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="title" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="added" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDate"/> <eStructuralFeatures xsi:type="ecore:EReference" name="user" eType="#//User" eOpposite="#//User/extendedData"/> <eStructuralFeatures xsi:type="ecore:EReference" name="schema" eType="#//ExtendedDataSchema" eOpposite="#//ExtendedDataSchema/extendedData"/> </eClassifiers> </ecore:EPackage>
github:ecore:/data/gssi/metamodel-dataset-analysis-toolchain/metamodels/store.ecore
ecore
store UserType SYSTEM SYSTEM ADMIN ADMIN USER USER READ_ONLY READ_ONLY SIPrefix meter meter attometer attometer femtometer femtometer picometer picometer nanometer nanometer micrometer micrometer millimeter millimeter centimeter centimeter decimeter decimeter decameter decameter hectometer hectometer kilometer kilometer megameter megameter gigameter gigameter terameter terameter petameter petameter exameter exameter ObjectState ACTIVE ACTIVE DELETED DELETED Project id name hasAuthorizedUsers concreteRevisions revisions lastConcreteRevision lastRevision checkouts state createdDate createdBy geoTag subProjects parent description clashDetectionSettings exportLengthMeasurePrefix extendedData User name password hasRightsOn revisions state createdOn createdBy userType username lastSeen validationToken validationTokenCreated notificationUrl schemas extendedData Clash name1 name2 type1 type2 revision1 revision2 EidClash eid1 eid2 GuidClash guid1 guid2 ClashDetectionSettings enabled projects margin revisions ignoredClasses Revision id user date comment size concreteRevisions lastConcreteRevision checkouts project lastClashes tag lastError bmi nrClashes laid extendedData ConcreteRevision id project checksum revisions size date lastError user GeoTag enabled projects x y z epsg directionAngle Checkout user revision project date checkin active Settings showVersionUpgradeAvailable sendConfirmationEmailAfterRegistration useCaching allowSelfRegistration autoTestClashes intelligentMerging allowUsersToCreateTopLevelProjects checkinMergingEnabled registrationAddition smtpServer emailSenderAddress customLogoAddress siteAddress hideUserListForNonAdmin protocolBuffersPort serializers objectIDMs headerAddition footerAddition mergeIdentifier cacheOutputFiles ifcEngines plugins deserializers schemas Serializer name description extension contentType className enabled defaultSerializer objectIDM settings ifcEngine ObjectIDM name className enabled serializers settings MergeIdentifier NAME NAME GUID GUID IfcEngine name active className enabled serializers settings Plugin name enabled settings Deserializer name description className enabled defaultDeserializer settings CheckinResult revision project progress lastError status DataHandler javax.activation.DataHandler javax.activation.DataHandler DownloadResult projectName revisionNr file CheckoutResult DataValue fieldName DataObject type guid name values UserSession user username name type remoteAddress activeSince lastActive accessMethod Migration number description executed ReferenceDataValue typeName guid ListDataValue values SimpleDataValue stringValue DatabaseInformationItem key value DatabaseInformationCategory title items DatabaseInformation numberOfProjects numberOfUsers numberOfRevisions numberOfCheckouts databaseSizeInBytes type created location schemaVersion categories SerializerPluginDescriptor pluginClassName defaultName defaultExtension defaultContentType DeserializerPluginDescriptor pluginClassName defaultName RevisionSummaryType name count RevisionSummaryContainer name types RevisionSummary list PluginDescriptor name description location enabled LongAction identification user start username name LongCheckinAction revisions ObjectIDMPluginDescriptor className CompareIdentifier NAME_ID NAME_ID GUID_ID GUID_ID CompareType ALL ALL ADD ADD MODIFY MODIFY DELETE DELETE CompareItem dataObject ObjectAdded ObjectRemoved ObjectModified fieldName oldValue newValue CompareContainer type items CompareResult items ActionState UNKNOWN UNKNOWN STARTED STARTED FINISHED FINISHED LongActionState progress state Notification NewProjectNotification project NewRevisionNotification revision project CompileResult compileOke warnings errors RunResult runOke warnings errors output ServerState UNDEFINED UNDEFINED NOT_SETUP NOT_SETUP MIGRATION_REQUIRED MIGRATION_REQUIRED MIGRATION_IMPOSSIBLE MIGRATION_IMPOSSIBLE FATAL_ERROR FATAL_ERROR RUNNING RUNNING ServerInfo serverState errorMessage Version major minor revision date downloadUrl supportUrl supportEmail IfcEnginePluginDescriptor pluginClassName defaultName CheckinStatus CH_NONE CH_NONE CH_STARTED CH_STARTED CH_FINISHED CH_FINISHED CH_ERROR CH_ERROR ExtendedDataSchemaType XSD XSD ExtendedDataSchema name url data validate type settings users extendedData ExtendedData url data title added user schema
null
{"directed":true,"nodes":[{"nsPrefix":"store","nsURI":"store","name":"store","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"instanceClassName":null,"name":"UserType","instanceClass":null,"id":1,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"SIPrefix","instanceClass":null,"id":2,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"ObjectState","instanceClass":null,"id":3,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Project","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"User","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Clash","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EidClash","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"GuidClash","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ClashDetectionSettings","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Revision","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ConcreteRevision","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"GeoTag","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Checkout","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Settings","instanceClass":null,"abstract":false,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Serializer","instanceClass":null,"abstract":false,"id":15,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ObjectIDM","instanceClass":null,"abstract":false,"id":16,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"MergeIdentifier","instanceClass":null,"id":17,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IfcEngine","instanceClass":null,"abstract":false,"id":18,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Plugin","instanceClass":null,"abstract":false,"id":19,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Deserializer","instanceClass":null,"abstract":false,"id":20,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CheckinResult","instanceClass":null,"abstract":false,"id":21,"interface":false,"eClass":"EClass"},{"instanceTypeName":"javax.activation.DataHandler","defaultValue":null,"instanceClassName":"javax.activation.DataHandler","name":"DataHandler","instanceClass":null,"id":22,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DownloadResult","instanceClass":null,"abstract":false,"id":23,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CheckoutResult","instanceClass":null,"abstract":false,"id":24,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DataValue","instanceClass":null,"abstract":false,"id":25,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DataObject","instanceClass":null,"abstract":false,"id":26,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"UserSession","instanceClass":null,"abstract":false,"id":27,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Migration","instanceClass":null,"abstract":false,"id":28,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ReferenceDataValue","instanceClass":null,"abstract":false,"id":29,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ListDataValue","instanceClass":null,"abstract":false,"id":30,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SimpleDataValue","instanceClass":null,"abstract":false,"id":31,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DatabaseInformationItem","instanceClass":null,"abstract":false,"id":32,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DatabaseInformationCategory","instanceClass":null,"abstract":false,"id":33,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DatabaseInformation","instanceClass":null,"abstract":false,"id":34,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SerializerPluginDescriptor","instanceClass":null,"abstract":false,"id":35,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DeserializerPluginDescriptor","instanceClass":null,"abstract":false,"id":36,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RevisionSummaryType","instanceClass":null,"abstract":false,"id":37,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RevisionSummaryContainer","instanceClass":null,"abstract":false,"id":38,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RevisionSummary","instanceClass":null,"abstract":false,"id":39,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PluginDescriptor","instanceClass":null,"abstract":false,"id":40,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LongAction","instanceClass":null,"abstract":false,"id":41,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LongCheckinAction","instanceClass":null,"abstract":false,"id":42,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ObjectIDMPluginDescriptor","instanceClass":null,"abstract":false,"id":43,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"CompareIdentifier","instanceClass":null,"id":44,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"CompareType","instanceClass":null,"id":45,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CompareItem","instanceClass":null,"abstract":false,"id":46,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ObjectAdded","instanceClass":null,"abstract":false,"id":47,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ObjectRemoved","instanceClass":null,"abstract":false,"id":48,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ObjectModified","instanceClass":null,"abstract":false,"id":49,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CompareContainer","instanceClass":null,"abstract":false,"id":50,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CompareResult","instanceClass":null,"abstract":false,"id":51,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"ActionState","instanceClass":null,"id":52,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LongActionState","instanceClass":null,"abstract":false,"id":53,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Notification","instanceClass":null,"abstract":false,"id":54,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NewProjectNotification","instanceClass":null,"abstract":false,"id":55,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NewRevisionNotification","instanceClass":null,"abstract":false,"id":56,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CompileResult","instanceClass":null,"abstract":false,"id":57,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RunResult","instanceClass":null,"abstract":false,"id":58,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"ServerState","instanceClass":null,"id":59,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ServerInfo","instanceClass":null,"abstract":false,"id":60,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Version","instanceClass":null,"abstract":false,"id":61,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IfcEnginePluginDescriptor","instanceClass":null,"abstract":false,"id":62,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"CheckinStatus","instanceClass":null,"id":63,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"ExtendedDataSchemaType","instanceClass":null,"id":64,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExtendedDataSchema","instanceClass":null,"abstract":false,"id":65,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExtendedData","instanceClass":null,"abstract":false,"id":66,"interface":false,"eClass":"EClass"},{"name":"SYSTEM","id":67,"value":0,"literal":"SYSTEM","eClass":"EEnumLiteral"},{"name":"ADMIN","id":68,"value":1,"literal":"ADMIN","eClass":"EEnumLiteral"},{"name":"USER","id":69,"value":2,"literal":"USER","eClass":"EEnumLiteral"},{"name":"READ_ONLY","id":70,"value":3,"literal":"READ_ONLY","eClass":"EEnumLiteral"},{"name":"meter","id":71,"value":0,"literal":"meter","eClass":"EEnumLiteral"},{"name":"attometer","id":72,"value":-18,"literal":"attometer","eClass":"EEnumLiteral"},{"name":"femtometer","id":73,"value":-15,"literal":"femtometer","eClass":"EEnumLiteral"},{"name":"picometer","id":74,"value":-12,"literal":"picometer","eClass":"EEnumLiteral"},{"name":"nanometer","id":75,"value":-9,"literal":"nanometer","eClass":"EEnumLiteral"},{"name":"micrometer","id":76,"value":-6,"literal":"micrometer","eClass":"EEnumLiteral"},{"name":"millimeter","id":77,"value":-3,"literal":"millimeter","eClass":"EEnumLiteral"},{"name":"centimeter","id":78,"value":-2,"literal":"centimeter","eClass":"EEnumLiteral"},{"name":"decimeter","id":79,"value":-1,"literal":"decimeter","eClass":"EEnumLiteral"},{"name":"decameter","id":80,"value":1,"literal":"decameter","eClass":"EEnumLiteral"},{"name":"hectometer","id":81,"value":2,"literal":"hectometer","eClass":"EEnumLiteral"},{"name":"kilometer","id":82,"value":3,"literal":"kilometer","eClass":"EEnumLiteral"},{"name":"megameter","id":83,"value":6,"literal":"megameter","eClass":"EEnumLiteral"},{"name":"gigameter","id":84,"value":9,"literal":"gigameter","eClass":"EEnumLiteral"},{"name":"terameter","id":85,"value":12,"literal":"terameter","eClass":"EEnumLiteral"},{"name":"petameter","id":86,"value":15,"literal":"petameter","eClass":"EEnumLiteral"},{"name":"exameter","id":87,"value":18,"literal":"exameter","eClass":"EEnumLiteral"},{"name":"ACTIVE","id":88,"value":0,"literal":"ACTIVE","eClass":"EEnumLiteral"},{"name":"DELETED","id":89,"value":1,"literal":"DELETED","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":false,"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},{"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":"hasAuthorizedUsers","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":false,"unsettable":false,"transient":false,"unique":true,"name":"concreteRevisions","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":false,"unsettable":false,"transient":false,"unique":true,"name":"revisions","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":"lastConcreteRevision","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":"lastRevision","changeable":true,"resolveProxies":true,"lowerBound":0,"id":96,"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":"checkouts","changeable":true,"resolveProxies":true,"lowerBound":0,"id":97,"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":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":"createdDate","changeable":true,"lowerBound":0,"iD":false,"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":"createdBy","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":"geoTag","changeable":true,"resolveProxies":true,"lowerBound":0,"id":101,"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":"subProjects","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":"parent","changeable":true,"resolveProxies":true,"lowerBound":0,"id":103,"derived":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":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":"clashDetectionSettings","changeable":true,"resolveProxies":true,"lowerBound":0,"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":"exportLengthMeasurePrefix","changeable":true,"lowerBound":0,"iD":false,"id":106,"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":"extendedData","changeable":true,"resolveProxies":true,"lowerBound":0,"id":107,"derived":false},{"id":108,"eClass":"EGenericType"},{"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":false,"unsettable":false,"transient":false,"unique":true,"name":"hasRightsOn","changeable":true,"resolveProxies":true,"lowerBound":0,"id":111,"derived":false},{"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":"project","changeable":true,"resolveProxies":true,"lowerBound":0,"id":113,"derived":false},{"id":114,"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":115,"derived":false},{"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":false,"unsettable":false,"transient":false,"unique":true,"name":"project","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"},{"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":"projects","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"},{"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":"projects","changeable":true,"resolveProxies":true,"lowerBound":0,"id":129,"derived":false},{"id":130,"eClass":"EGenericType"},{"id":131,"eClass":"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":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":"password","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":"revisions","changeable":true,"resolveProxies":true,"lowerBound":0,"id":134,"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":135,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"createdOn","changeable":true,"lowerBound":0,"iD":false,"id":136,"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":"createdBy","changeable":true,"resolveProxies":true,"lowerBound":0,"id":137,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"userType","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":"username","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":"lastSeen","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":"validationToken","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":"validationTokenCreated","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":"notificationUrl","changeable":true,"lowerBound":0,"iD":false,"id":143,"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":"schemas","changeable":true,"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":false,"unsettable":false,"transient":false,"unique":true,"name":"extendedData","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"},{"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"},{"id":157,"eClass":"EGenericType"},{"id":158,"eClass":"EGenericType"},{"id":159,"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":"users","changeable":true,"resolveProxies":true,"lowerBound":0,"id":160,"derived":false},{"id":161,"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":"user","changeable":true,"resolveProxies":true,"lowerBound":0,"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":"name1","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":"name2","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":"type1","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":"type2","changeable":true,"lowerBound":0,"iD":false,"id":166,"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":"revision1","changeable":true,"resolveProxies":true,"lowerBound":0,"id":167,"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":"revision2","changeable":true,"resolveProxies":true,"lowerBound":0,"id":168,"derived":false},{"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":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"eid1","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":"eid2","changeable":true,"lowerBound":0,"iD":false,"id":176,"derived":false},{"id":177,"eClass":"EGenericType"},{"id":178,"eClass":"EGenericType"},{"id":179,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"guid1","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":"guid2","changeable":true,"lowerBound":0,"iD":false,"id":181,"derived":false},{"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":"enabled","changeable":true,"lowerBound":0,"iD":false,"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":"margin","changeable":true,"lowerBound":0,"iD":false,"id":186,"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":"revisions","changeable":true,"resolveProxies":true,"lowerBound":0,"id":187,"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":"ignoredClasses","changeable":true,"lowerBound":0,"iD":false,"id":188,"derived":false},{"id":189,"eClass":"EGenericType"},{"id":190,"eClass":"EGenericType"},{"id":191,"eClass":"EGenericType"},{"id":192,"eClass":"EGenericType"},{"id":193,"eClass":"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":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":"user","changeable":true,"resolveProxies":true,"lowerBound":0,"id":195,"derived":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":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":"comment","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":"size","changeable":true,"lowerBound":0,"iD":false,"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":"concreteRevisions","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":false,"unsettable":false,"transient":false,"unique":true,"name":"lastConcreteRevision","changeable":true,"resolveProxies":true,"lowerBound":0,"id":200,"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":"checkouts","changeable":true,"resolveProxies":true,"lowerBound":0,"id":201,"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":"lastClashes","changeable":true,"resolveProxies":true,"lowerBound":0,"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":"tag","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":"lastError","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":"bmi","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":"nrClashes","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":"laid","changeable":true,"lowerBound":0,"iD":false,"id":207,"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":"extendedData","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"},{"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":"revisions","changeable":true,"resolveProxies":true,"lowerBound":0,"id":215,"derived":false},{"id":216,"eClass":"EGenericType"},{"id":217,"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":"revision","changeable":true,"resolveProxies":true,"lowerBound":0,"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"},{"id":225,"eClass":"EGenericType"},{"id":226,"eClass":"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":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":"checksum","changeable":true,"lowerBound":0,"iD":false,"id":228,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"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":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":"date","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":"lastError","changeable":true,"lowerBound":0,"iD":false,"id":231,"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":"user","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"},{"id":237,"eClass":"EGenericType"},{"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":"enabled","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":"x","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":"y","changeable":true,"lowerBound":0,"iD":false,"id":243,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"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":244,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"epsg","changeable":true,"lowerBound":0,"iD":false,"id":245,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"directionAngle","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"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"user","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":"date","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":false,"unsettable":false,"transient":false,"unique":true,"name":"checkin","changeable":true,"resolveProxies":true,"lowerBound":0,"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":"active","changeable":true,"lowerBound":0,"iD":false,"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"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"showVersionUpgradeAvailable","changeable":true,"lowerBound":0,"iD":false,"id":264,"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":"sendConfirmationEmailAfterRegistration","changeable":true,"lowerBound":0,"iD":false,"id":265,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"useCaching","changeable":true,"lowerBound":0,"iD":false,"id":266,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"allowSelfRegistration","changeable":true,"lowerBound":0,"iD":false,"id":267,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"autoTestClashes","changeable":true,"lowerBound":0,"iD":false,"id":268,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"intelligentMerging","changeable":true,"lowerBound":0,"iD":false,"id":269,"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":"allowUsersToCreateTopLevelProjects","changeable":true,"lowerBound":0,"iD":false,"id":270,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"checkinMergingEnabled","changeable":true,"lowerBound":0,"iD":false,"id":271,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"registrationAddition","changeable":true,"lowerBound":0,"iD":false,"id":272,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"smtpServer","changeable":true,"lowerBound":0,"iD":false,"id":273,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"emailSenderAddress","changeable":true,"lowerBound":0,"iD":false,"id":274,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"customLogoAddress","changeable":true,"lowerBound":0,"iD":false,"id":275,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"siteAddress","changeable":true,"lowerBound":0,"iD":false,"id":276,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"hideUserListForNonAdmin","changeable":true,"lowerBound":0,"iD":false,"id":277,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"protocolBuffersPort","changeable":true,"lowerBound":0,"iD":false,"id":278,"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":"serializers","changeable":true,"resolveProxies":true,"lowerBound":0,"id":279,"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":"objectIDMs","changeable":true,"resolveProxies":true,"lowerBound":0,"id":280,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"headerAddition","changeable":true,"lowerBound":0,"iD":false,"id":281,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"footerAddition","changeable":true,"lowerBound":0,"iD":false,"id":282,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"mergeIdentifier","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":"cacheOutputFiles","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":false,"unsettable":false,"transient":false,"unique":true,"name":"ifcEngines","changeable":true,"resolveProxies":true,"lowerBound":0,"id":285,"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":"plugins","changeable":true,"resolveProxies":true,"lowerBound":0,"id":286,"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":"deserializers","changeable":true,"resolveProxies":true,"lowerBound":0,"id":287,"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":"schemas","changeable":true,"resolveProxies":true,"lowerBound":0,"id":288,"derived":false},{"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"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"settings","changeable":true,"resolveProxies":true,"lowerBound":0,"id":305,"derived":false},{"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":"settings","changeable":true,"resolveProxies":true,"lowerBound":0,"id":307,"derived":false},{"id":308,"eClass":"EGenericType"},{"id":309,"eClass":"EGenericType"},{"id":310,"eClass":"EGenericType"},{"id":311,"eClass":"EGenericType"},{"id":312,"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":"settings","changeable":true,"resolveProxies":true,"lowerBound":0,"id":313,"derived":false},{"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":"settings","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":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"settings","changeable":true,"resolveProxies":true,"lowerBound":0,"id":317,"derived":false},{"id":318,"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":"settings","changeable":true,"resolveProxies":true,"lowerBound":0,"id":319,"derived":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":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":"description","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":"extension","changeable":true,"lowerBound":0,"iD":false,"id":322,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"contentType","changeable":true,"lowerBound":0,"iD":false,"id":323,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"className","changeable":true,"lowerBound":0,"iD":false,"id":324,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"enabled","changeable":true,"lowerBound":0,"iD":false,"id":325,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"defaultSerializer","changeable":true,"lowerBound":0,"iD":false,"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":"objectIDM","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":"ifcEngine","changeable":true,"resolveProxies":true,"lowerBound":0,"id":328,"derived":false},{"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"},{"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":"serializers","changeable":true,"resolveProxies":true,"lowerBound":0,"id":337,"derived":false},{"id":338,"eClass":"EGenericType"},{"id":339,"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":"serializers","changeable":true,"resolveProxies":true,"lowerBound":0,"id":340,"derived":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":341,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"className","changeable":true,"lowerBound":0,"iD":false,"id":342,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"enabled","changeable":true,"lowerBound":0,"iD":false,"id":343,"derived":false},{"id":344,"eClass":"EGenericType"},{"id":345,"eClass":"EGenericType"},{"id":346,"eClass":"EGenericType"},{"id":347,"eClass":"EGenericType"},{"id":348,"eClass":"EGenericType"},{"name":"NAME","id":349,"value":0,"literal":"NAME","eClass":"EEnumLiteral"},{"name":"GUID","id":350,"value":1,"literal":"GUID","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":351,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"active","changeable":true,"lowerBound":0,"iD":false,"id":352,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"className","changeable":true,"lowerBound":0,"iD":false,"id":353,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"enabled","changeable":true,"lowerBound":0,"iD":false,"id":354,"derived":false},{"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":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":361,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"enabled","changeable":true,"lowerBound":0,"iD":false,"id":362,"derived":false},{"id":363,"eClass":"EGenericType"},{"id":364,"eClass":"EGenericType"},{"id":365,"eClass":"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":366,"derived":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":367,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"className","changeable":true,"lowerBound":0,"iD":false,"id":368,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"enabled","changeable":true,"lowerBound":0,"iD":false,"id":369,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"defaultDeserializer","changeable":true,"lowerBound":0,"iD":false,"id":370,"derived":false},{"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":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"revision","changeable":true,"resolveProxies":true,"lowerBound":0,"id":377,"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":"project","changeable":true,"resolveProxies":true,"lowerBound":0,"id":378,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"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":379,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"lastError","changeable":true,"lowerBound":0,"iD":false,"id":380,"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":381,"derived":false},{"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":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"projectName","changeable":true,"lowerBound":0,"iD":false,"id":387,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"revisionNr","changeable":true,"lowerBound":0,"iD":false,"id":388,"derived":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":389,"derived":false},{"id":390,"eClass":"EGenericType"},{"id":391,"eClass":"EGenericType"},{"id":392,"eClass":"EGenericType"},{"id":393,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"fieldName","changeable":true,"lowerBound":0,"iD":false,"id":394,"derived":false},{"id":395,"eClass":"EGenericType"},{"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":396,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"guid","changeable":true,"lowerBound":0,"iD":false,"id":397,"derived":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":398,"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":"values","changeable":true,"resolveProxies":true,"lowerBound":0,"id":399,"derived":false},{"id":400,"eClass":"EGenericType"},{"id":401,"eClass":"EGenericType"},{"id":402,"eClass":"EGenericType"},{"id":403,"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":"user","changeable":true,"resolveProxies":true,"lowerBound":0,"id":404,"derived":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":405,"derived":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":406,"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":407,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"remoteAddress","changeable":true,"lowerBound":0,"iD":false,"id":408,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"activeSince","changeable":true,"lowerBound":0,"iD":false,"id":409,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"lastActive","changeable":true,"lowerBound":0,"iD":false,"id":410,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"accessMethod","changeable":true,"lowerBound":0,"iD":false,"id":411,"derived":false},{"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"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"number","changeable":true,"lowerBound":0,"iD":false,"id":420,"derived":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":421,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"executed","changeable":true,"lowerBound":0,"iD":false,"id":422,"derived":false},{"id":423,"eClass":"EGenericType"},{"id":424,"eClass":"EGenericType"},{"id":425,"eClass":"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":426,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"guid","changeable":true,"lowerBound":0,"iD":false,"id":427,"derived":false},{"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":false,"unsettable":false,"transient":false,"unique":true,"name":"values","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":"stringValue","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":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"key","changeable":true,"lowerBound":0,"iD":false,"id":437,"derived":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":438,"derived":false},{"id":439,"eClass":"EGenericType"},{"id":440,"eClass":"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":441,"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":"items","changeable":true,"resolveProxies":true,"lowerBound":0,"id":442,"derived":false},{"id":443,"eClass":"EGenericType"},{"id":444,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"numberOfProjects","changeable":true,"lowerBound":0,"iD":false,"id":445,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"numberOfUsers","changeable":true,"lowerBound":0,"iD":false,"id":446,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"numberOfRevisions","changeable":true,"lowerBound":0,"iD":false,"id":447,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"numberOfCheckouts","changeable":true,"lowerBound":0,"iD":false,"id":448,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"databaseSizeInBytes","changeable":true,"lowerBound":0,"iD":false,"id":449,"derived":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":450,"derived":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":451,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"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":452,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"schemaVersion","changeable":true,"lowerBound":0,"iD":false,"id":453,"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":"categories","changeable":true,"resolveProxies":true,"lowerBound":0,"id":454,"derived":false},{"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"},{"id":462,"eClass":"EGenericType"},{"id":463,"eClass":"EGenericType"},{"id":464,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"pluginClassName","changeable":true,"lowerBound":0,"iD":false,"id":465,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"defaultName","changeable":true,"lowerBound":0,"iD":false,"id":466,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"defaultExtension","changeable":true,"lowerBound":0,"iD":false,"id":467,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"defaultContentType","changeable":true,"lowerBound":0,"iD":false,"id":468,"derived":false},{"id":469,"eClass":"EGenericType"},{"id":470,"eClass":"EGenericType"},{"id":471,"eClass":"EGenericType"},{"id":472,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"pluginClassName","changeable":true,"lowerBound":0,"iD":false,"id":473,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"defaultName","changeable":true,"lowerBound":0,"iD":false,"id":474,"derived":false},{"id":475,"eClass":"EGenericType"},{"id":476,"eClass":"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":477,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"count","changeable":true,"lowerBound":0,"iD":false,"id":478,"derived":false},{"id":479,"eClass":"EGenericType"},{"id":480,"eClass":"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":481,"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":"types","changeable":true,"resolveProxies":true,"lowerBound":0,"id":482,"derived":false},{"id":483,"eClass":"EGenericType"},{"id":484,"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":"list","changeable":true,"resolveProxies":true,"lowerBound":0,"id":485,"derived":false},{"id":486,"eClass":"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":487,"derived":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":488,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"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":489,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"enabled","changeable":true,"lowerBound":0,"iD":false,"id":490,"derived":false},{"id":491,"eClass":"EGenericType"},{"id":492,"eClass":"EGenericType"},{"id":493,"eClass":"EGenericType"},{"id":494,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"identification","changeable":true,"lowerBound":0,"iD":false,"id":495,"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":"user","changeable":true,"resolveProxies":true,"lowerBound":0,"id":496,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"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":497,"derived":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":498,"derived":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":499,"derived":false},{"id":500,"eClass":"EGenericType"},{"id":501,"eClass":"EGenericType"},{"id":502,"eClass":"EGenericType"},{"id":503,"eClass":"EGenericType"},{"id":504,"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":"revisions","changeable":true,"resolveProxies":true,"lowerBound":0,"id":505,"derived":false},{"id":506,"eClass":"EGenericType"},{"id":507,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"className","changeable":true,"lowerBound":0,"iD":false,"id":508,"derived":false},{"id":509,"eClass":"EGenericType"},{"name":"NAME_ID","id":510,"value":0,"literal":"NAME_ID","eClass":"EEnumLiteral"},{"name":"GUID_ID","id":511,"value":1,"literal":"GUID_ID","eClass":"EEnumLiteral"},{"name":"ALL","id":512,"value":0,"literal":"ALL","eClass":"EEnumLiteral"},{"name":"ADD","id":513,"value":1,"literal":"ADD","eClass":"EEnumLiteral"},{"name":"MODIFY","id":514,"value":2,"literal":"MODIFY","eClass":"EEnumLiteral"},{"name":"DELETE","id":515,"value":3,"literal":"DELETE","eClass":"EEnumLiteral"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"dataObject","changeable":true,"resolveProxies":true,"lowerBound":0,"id":516,"derived":false},{"id":517,"eClass":"EGenericType"},{"id":518,"eClass":"EGenericType"},{"id":519,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"fieldName","changeable":true,"lowerBound":0,"iD":false,"id":520,"derived":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":521,"derived":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":522,"derived":false},{"id":523,"eClass":"EGenericType"},{"id":524,"eClass":"EGenericType"},{"id":525,"eClass":"EGenericType"},{"id":526,"eClass":"EGenericType"},{"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":527,"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":"items","changeable":true,"resolveProxies":true,"lowerBound":0,"id":528,"derived":false},{"id":529,"eClass":"EGenericType"},{"id":530,"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":"items","changeable":true,"resolveProxies":true,"lowerBound":0,"id":531,"derived":false},{"id":532,"eClass":"EGenericType"},{"name":"UNKNOWN","id":533,"value":0,"literal":"UNKNOWN","eClass":"EEnumLiteral"},{"name":"STARTED","id":534,"value":1,"literal":"STARTED","eClass":"EEnumLiteral"},{"name":"FINISHED","id":535,"value":2,"literal":"FINISHED","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":"progress","changeable":true,"lowerBound":0,"iD":false,"id":536,"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":537,"derived":false},{"id":538,"eClass":"EGenericType"},{"id":539,"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":540,"derived":false},{"id":541,"eClass":"EGenericType"},{"id":542,"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":"revision","changeable":true,"resolveProxies":true,"lowerBound":0,"id":543,"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":"project","changeable":true,"resolveProxies":true,"lowerBound":0,"id":544,"derived":false},{"id":545,"eClass":"EGenericType"},{"id":546,"eClass":"EGenericType"},{"id":547,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"compileOke","changeable":true,"lowerBound":0,"iD":false,"id":548,"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":"warnings","changeable":true,"lowerBound":0,"iD":false,"id":549,"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":"errors","changeable":true,"lowerBound":0,"iD":false,"id":550,"derived":false},{"id":551,"eClass":"EGenericType"},{"id":552,"eClass":"EGenericType"},{"id":553,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"runOke","changeable":true,"lowerBound":0,"iD":false,"id":554,"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":"warnings","changeable":true,"lowerBound":0,"iD":false,"id":555,"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":"errors","changeable":true,"lowerBound":0,"iD":false,"id":556,"derived":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","changeable":true,"lowerBound":0,"iD":false,"id":557,"derived":false},{"id":558,"eClass":"EGenericType"},{"id":559,"eClass":"EGenericType"},{"id":560,"eClass":"EGenericType"},{"id":561,"eClass":"EGenericType"},{"name":"UNDEFINED","id":562,"value":0,"literal":"UNDEFINED","eClass":"EEnumLiteral"},{"name":"NOT_SETUP","id":563,"value":1,"literal":"NOT_SETUP","eClass":"EEnumLiteral"},{"name":"MIGRATION_REQUIRED","id":564,"value":2,"literal":"MIGRATION_REQUIRED","eClass":"EEnumLiteral"},{"name":"MIGRATION_IMPOSSIBLE","id":565,"value":3,"literal":"MIGRATION_IMPOSSIBLE","eClass":"EEnumLiteral"},{"name":"FATAL_ERROR","id":566,"value":4,"literal":"FATAL_ERROR","eClass":"EEnumLiteral"},{"name":"RUNNING","id":567,"value":5,"literal":"RUNNING","eClass":"EEnumLiteral"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"serverState","changeable":true,"lowerBound":0,"iD":false,"id":568,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"errorMessage","changeable":true,"lowerBound":0,"iD":false,"id":569,"derived":false},{"id":570,"eClass":"EGenericType"},{"id":571,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"major","changeable":true,"lowerBound":0,"iD":false,"id":572,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"minor","changeable":true,"lowerBound":0,"iD":false,"id":573,"derived":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":574,"derived":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":575,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"downloadUrl","changeable":true,"lowerBound":0,"iD":false,"id":576,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"supportUrl","changeable":true,"lowerBound":0,"iD":false,"id":577,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"supportEmail","changeable":true,"lowerBound":0,"iD":false,"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"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"pluginClassName","changeable":true,"lowerBound":0,"iD":false,"id":586,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"defaultName","changeable":true,"lowerBound":0,"iD":false,"id":587,"derived":false},{"id":588,"eClass":"EGenericType"},{"id":589,"eClass":"EGenericType"},{"name":"CH_NONE","id":590,"value":0,"literal":"CH_NONE","eClass":"EEnumLiteral"},{"name":"CH_STARTED","id":591,"value":1,"literal":"CH_STARTED","eClass":"EEnumLiteral"},{"name":"CH_FINISHED","id":592,"value":2,"literal":"CH_FINISHED","eClass":"EEnumLiteral"},{"name":"CH_ERROR","id":593,"value":3,"literal":"CH_ERROR","eClass":"EEnumLiteral"},{"name":"XSD","id":594,"value":0,"literal":"XSD","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":595,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"url","changeable":true,"lowerBound":0,"iD":false,"id":596,"derived":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":597,"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":"validate","changeable":true,"lowerBound":0,"iD":false,"id":598,"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":599,"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":"extendedData","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"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"schema","changeable":true,"resolveProxies":true,"lowerBound":0,"id":609,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"url","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":"data","changeable":true,"lowerBound":0,"iD":false,"id":611,"derived":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":612,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"added","changeable":true,"lowerBound":0,"iD":false,"id":613,"derived":false},{"id":614,"eClass":"EGenericType"},{"id":615,"eClass":"EGenericType"},{"id":616,"eClass":"EGenericType"},{"id":617,"eClass":"EGenericType"},{"id":618,"eClass":"EGenericType"},{"id":619,"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":1,"target":0},{"source":1,"target":67},{"source":1,"target":68},{"source":1,"target":69},{"source":1,"target":70},{"source":67,"target":1},{"source":68,"target":1},{"source":69,"target":1},{"source":70,"target":1},{"source":2,"target":0},{"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":86},{"source":2,"target":87},{"source":71,"target":2},{"source":72,"target":2},{"source":73,"target":2},{"source":74,"target":2},{"source":75,"target":2},{"source":76,"target":2},{"source":77,"target":2},{"source":78,"target":2},{"source":79,"target":2},{"source":80,"target":2},{"source":81,"target":2},{"source":82,"target":2},{"source":83,"target":2},{"source":84,"target":2},{"source":85,"target":2},{"source":86,"target":2},{"source":87,"target":2},{"source":3,"target":0},{"source":3,"target":88},{"source":3,"target":89},{"source":88,"target":3},{"source":89,"target":3},{"source":4,"target":0},{"source":4,"target":90},{"source":4,"target":91},{"source":4,"target":92},{"source":4,"target":93},{"source":4,"target":94},{"source":4,"target":95},{"source":4,"target":96},{"source":4,"target":97},{"source":4,"target":98},{"source":4,"target":99},{"source":4,"target":100},{"source":4,"target":101},{"source":4,"target":102},{"source":4,"target":103},{"source":4,"target":104},{"source":4,"target":105},{"source":4,"target":106},{"source":4,"target":107},{"source":90,"target":108},{"source":90,"target":4},{"source":91,"target":109},{"source":91,"target":4},{"source":92,"target":5},{"source":92,"target":110},{"source":92,"target":4},{"source":92,"target":111},{"source":110,"target":5},{"source":93,"target":11},{"source":93,"target":112},{"source":93,"target":4},{"source":93,"target":113},{"source":112,"target":11},{"source":94,"target":10},{"source":94,"target":114},{"source":94,"target":4},{"source":94,"target":115},{"source":114,"target":10},{"source":95,"target":11},{"source":95,"target":116},{"source":95,"target":4},{"source":116,"target":11},{"source":96,"target":10},{"source":96,"target":117},{"source":96,"target":4},{"source":117,"target":10},{"source":97,"target":13},{"source":97,"target":118},{"source":97,"target":4},{"source":97,"target":119},{"source":118,"target":13},{"source":98,"target":3},{"source":98,"target":120},{"source":98,"target":4},{"source":120,"target":3},{"source":99,"target":121},{"source":99,"target":4},{"source":100,"target":5},{"source":100,"target":122},{"source":100,"target":4},{"source":122,"target":5},{"source":101,"target":12},{"source":101,"target":123},{"source":101,"target":4},{"source":101,"target":124},{"source":123,"target":12},{"source":102,"target":4},{"source":102,"target":125},{"source":102,"target":4},{"source":102,"target":103},{"source":125,"target":4},{"source":103,"target":4},{"source":103,"target":126},{"source":103,"target":4},{"source":103,"target":102},{"source":126,"target":4},{"source":104,"target":127},{"source":104,"target":4},{"source":105,"target":9},{"source":105,"target":128},{"source":105,"target":4},{"source":105,"target":129},{"source":128,"target":9},{"source":106,"target":2},{"source":106,"target":130},{"source":106,"target":4},{"source":130,"target":2},{"source":107,"target":66},{"source":107,"target":131},{"source":107,"target":4},{"source":131,"target":66},{"source":5,"target":0},{"source":5,"target":132},{"source":5,"target":133},{"source":5,"target":111},{"source":5,"target":134},{"source":5,"target":135},{"source":5,"target":136},{"source":5,"target":137},{"source":5,"target":138},{"source":5,"target":139},{"source":5,"target":140},{"source":5,"target":141},{"source":5,"target":142},{"source":5,"target":143},{"source":5,"target":144},{"source":5,"target":145},{"source":132,"target":146},{"source":132,"target":5},{"source":133,"target":147},{"source":133,"target":5},{"source":111,"target":4},{"source":111,"target":148},{"source":111,"target":5},{"source":111,"target":92},{"source":148,"target":4},{"source":134,"target":10},{"source":134,"target":149},{"source":134,"target":5},{"source":149,"target":10},{"source":135,"target":3},{"source":135,"target":150},{"source":135,"target":5},{"source":150,"target":3},{"source":136,"target":151},{"source":136,"target":5},{"source":137,"target":5},{"source":137,"target":152},{"source":137,"target":5},{"source":152,"target":5},{"source":138,"target":1},{"source":138,"target":153},{"source":138,"target":5},{"source":153,"target":1},{"source":139,"target":154},{"source":139,"target":5},{"source":140,"target":155},{"source":140,"target":5},{"source":141,"target":156},{"source":141,"target":5},{"source":142,"target":157},{"source":142,"target":5},{"source":143,"target":158},{"source":143,"target":5},{"source":144,"target":65},{"source":144,"target":159},{"source":144,"target":5},{"source":144,"target":160},{"source":159,"target":65},{"source":145,"target":66},{"source":145,"target":161},{"source":145,"target":5},{"source":145,"target":162},{"source":161,"target":66},{"source":6,"target":0},{"source":6,"target":163},{"source":6,"target":164},{"source":6,"target":165},{"source":6,"target":166},{"source":6,"target":167},{"source":6,"target":168},{"source":163,"target":169},{"source":163,"target":6},{"source":164,"target":170},{"source":164,"target":6},{"source":165,"target":171},{"source":165,"target":6},{"source":166,"target":172},{"source":166,"target":6},{"source":167,"target":10},{"source":167,"target":173},{"source":167,"target":6},{"source":173,"target":10},{"source":168,"target":10},{"source":168,"target":174},{"source":168,"target":6},{"source":174,"target":10},{"source":7,"target":0},{"source":7,"target":6},{"source":7,"target":175},{"source":7,"target":176},{"source":7,"target":177},{"source":175,"target":178},{"source":175,"target":7},{"source":176,"target":179},{"source":176,"target":7},{"source":177,"target":6},{"source":8,"target":0},{"source":8,"target":6},{"source":8,"target":180},{"source":8,"target":181},{"source":8,"target":182},{"source":180,"target":183},{"source":180,"target":8},{"source":181,"target":184},{"source":181,"target":8},{"source":182,"target":6},{"source":9,"target":0},{"source":9,"target":185},{"source":9,"target":129},{"source":9,"target":186},{"source":9,"target":187},{"source":9,"target":188},{"source":185,"target":189},{"source":185,"target":9},{"source":129,"target":4},{"source":129,"target":190},{"source":129,"target":9},{"source":129,"target":105},{"source":190,"target":4},{"source":186,"target":191},{"source":186,"target":9},{"source":187,"target":10},{"source":187,"target":192},{"source":187,"target":9},{"source":192,"target":10},{"source":188,"target":193},{"source":188,"target":9},{"source":10,"target":0},{"source":10,"target":194},{"source":10,"target":195},{"source":10,"target":196},{"source":10,"target":197},{"source":10,"target":198},{"source":10,"target":199},{"source":10,"target":200},{"source":10,"target":201},{"source":10,"target":115},{"source":10,"target":202},{"source":10,"target":203},{"source":10,"target":204},{"source":10,"target":205},{"source":10,"target":206},{"source":10,"target":207},{"source":10,"target":208},{"source":194,"target":209},{"source":194,"target":10},{"source":195,"target":5},{"source":195,"target":210},{"source":195,"target":10},{"source":210,"target":5},{"source":196,"target":211},{"source":196,"target":10},{"source":197,"target":212},{"source":197,"target":10},{"source":198,"target":213},{"source":198,"target":10},{"source":199,"target":11},{"source":199,"target":214},{"source":199,"target":10},{"source":199,"target":215},{"source":214,"target":11},{"source":200,"target":11},{"source":200,"target":216},{"source":200,"target":10},{"source":216,"target":11},{"source":201,"target":13},{"source":201,"target":217},{"source":201,"target":10},{"source":201,"target":218},{"source":217,"target":13},{"source":115,"target":4},{"source":115,"target":219},{"source":115,"target":10},{"source":115,"target":94},{"source":219,"target":4},{"source":202,"target":6},{"source":202,"target":220},{"source":202,"target":10},{"source":220,"target":6},{"source":203,"target":221},{"source":203,"target":10},{"source":204,"target":222},{"source":204,"target":10},{"source":205,"target":223},{"source":205,"target":10},{"source":206,"target":224},{"source":206,"target":10},{"source":207,"target":225},{"source":207,"target":10},{"source":208,"target":66},{"source":208,"target":226},{"source":208,"target":10},{"source":226,"target":66},{"source":11,"target":0},{"source":11,"target":227},{"source":11,"target":113},{"source":11,"target":228},{"source":11,"target":215},{"source":11,"target":229},{"source":11,"target":230},{"source":11,"target":231},{"source":11,"target":232},{"source":227,"target":233},{"source":227,"target":11},{"source":113,"target":4},{"source":113,"target":234},{"source":113,"target":11},{"source":113,"target":93},{"source":234,"target":4},{"source":228,"target":235},{"source":228,"target":11},{"source":215,"target":10},{"source":215,"target":236},{"source":215,"target":11},{"source":215,"target":199},{"source":236,"target":10},{"source":229,"target":237},{"source":229,"target":11},{"source":230,"target":238},{"source":230,"target":11},{"source":231,"target":239},{"source":231,"target":11},{"source":232,"target":5},{"source":232,"target":240},{"source":232,"target":11},{"source":240,"target":5},{"source":12,"target":0},{"source":12,"target":241},{"source":12,"target":124},{"source":12,"target":242},{"source":12,"target":243},{"source":12,"target":244},{"source":12,"target":245},{"source":12,"target":246},{"source":241,"target":247},{"source":241,"target":12},{"source":124,"target":4},{"source":124,"target":248},{"source":124,"target":12},{"source":124,"target":101},{"source":248,"target":4},{"source":242,"target":249},{"source":242,"target":12},{"source":243,"target":250},{"source":243,"target":12},{"source":244,"target":251},{"source":244,"target":12},{"source":245,"target":252},{"source":245,"target":12},{"source":246,"target":253},{"source":246,"target":12},{"source":13,"target":0},{"source":13,"target":254},{"source":13,"target":218},{"source":13,"target":119},{"source":13,"target":255},{"source":13,"target":256},{"source":13,"target":257},{"source":254,"target":5},{"source":254,"target":258},{"source":254,"target":13},{"source":258,"target":5},{"source":218,"target":10},{"source":218,"target":259},{"source":218,"target":13},{"source":218,"target":201},{"source":259,"target":10},{"source":119,"target":4},{"source":119,"target":260},{"source":119,"target":13},{"source":119,"target":97},{"source":260,"target":4},{"source":255,"target":261},{"source":255,"target":13},{"source":256,"target":10},{"source":256,"target":262},{"source":256,"target":13},{"source":262,"target":10},{"source":257,"target":263},{"source":257,"target":13},{"source":14,"target":0},{"source":14,"target":264},{"source":14,"target":265},{"source":14,"target":266},{"source":14,"target":267},{"source":14,"target":268},{"source":14,"target":269},{"source":14,"target":270},{"source":14,"target":271},{"source":14,"target":272},{"source":14,"target":273},{"source":14,"target":274},{"source":14,"target":275},{"source":14,"target":276},{"source":14,"target":277},{"source":14,"target":278},{"source":14,"target":279},{"source":14,"target":280},{"source":14,"target":281},{"source":14,"target":282},{"source":14,"target":283},{"source":14,"target":284},{"source":14,"target":285},{"source":14,"target":286},{"source":14,"target":287},{"source":14,"target":288},{"source":264,"target":289},{"source":264,"target":14},{"source":265,"target":290},{"source":265,"target":14},{"source":266,"target":291},{"source":266,"target":14},{"source":267,"target":292},{"source":267,"target":14},{"source":268,"target":293},{"source":268,"target":14},{"source":269,"target":294},{"source":269,"target":14},{"source":270,"target":295},{"source":270,"target":14},{"source":271,"target":296},{"source":271,"target":14},{"source":272,"target":297},{"source":272,"target":14},{"source":273,"target":298},{"source":273,"target":14},{"source":274,"target":299},{"source":274,"target":14},{"source":275,"target":300},{"source":275,"target":14},{"source":276,"target":301},{"source":276,"target":14},{"source":277,"target":302},{"source":277,"target":14},{"source":278,"target":303},{"source":278,"target":14},{"source":279,"target":15},{"source":279,"target":304},{"source":279,"target":14},{"source":279,"target":305},{"source":304,"target":15},{"source":280,"target":16},{"source":280,"target":306},{"source":280,"target":14},{"source":280,"target":307},{"source":306,"target":16},{"source":281,"target":308},{"source":281,"target":14},{"source":282,"target":309},{"source":282,"target":14},{"source":283,"target":17},{"source":283,"target":310},{"source":283,"target":14},{"source":310,"target":17},{"source":284,"target":311},{"source":284,"target":14},{"source":285,"target":18},{"source":285,"target":312},{"source":285,"target":14},{"source":285,"target":313},{"source":312,"target":18},{"source":286,"target":19},{"source":286,"target":314},{"source":286,"target":14},{"source":286,"target":315},{"source":314,"target":19},{"source":287,"target":20},{"source":287,"target":316},{"source":287,"target":14},{"source":287,"target":317},{"source":316,"target":20},{"source":288,"target":65},{"source":288,"target":318},{"source":288,"target":14},{"source":288,"target":319},{"source":318,"target":65},{"source":15,"target":0},{"source":15,"target":320},{"source":15,"target":321},{"source":15,"target":322},{"source":15,"target":323},{"source":15,"target":324},{"source":15,"target":325},{"source":15,"target":326},{"source":15,"target":327},{"source":15,"target":305},{"source":15,"target":328},{"source":320,"target":329},{"source":320,"target":15},{"source":321,"target":330},{"source":321,"target":15},{"source":322,"target":331},{"source":322,"target":15},{"source":323,"target":332},{"source":323,"target":15},{"source":324,"target":333},{"source":324,"target":15},{"source":325,"target":334},{"source":325,"target":15},{"source":326,"target":335},{"source":326,"target":15},{"source":327,"target":16},{"source":327,"target":336},{"source":327,"target":15},{"source":327,"target":337},{"source":336,"target":16},{"source":305,"target":14},{"source":305,"target":338},{"source":305,"target":15},{"source":305,"target":279},{"source":338,"target":14},{"source":328,"target":18},{"source":328,"target":339},{"source":328,"target":15},{"source":328,"target":340},{"source":339,"target":18},{"source":16,"target":0},{"source":16,"target":341},{"source":16,"target":342},{"source":16,"target":343},{"source":16,"target":337},{"source":16,"target":307},{"source":341,"target":344},{"source":341,"target":16},{"source":342,"target":345},{"source":342,"target":16},{"source":343,"target":346},{"source":343,"target":16},{"source":337,"target":15},{"source":337,"target":347},{"source":337,"target":16},{"source":337,"target":327},{"source":347,"target":15},{"source":307,"target":14},{"source":307,"target":348},{"source":307,"target":16},{"source":307,"target":280},{"source":348,"target":14},{"source":17,"target":0},{"source":17,"target":349},{"source":17,"target":350},{"source":349,"target":17},{"source":350,"target":17},{"source":18,"target":0},{"source":18,"target":351},{"source":18,"target":352},{"source":18,"target":353},{"source":18,"target":354},{"source":18,"target":340},{"source":18,"target":313},{"source":351,"target":355},{"source":351,"target":18},{"source":352,"target":356},{"source":352,"target":18},{"source":353,"target":357},{"source":353,"target":18},{"source":354,"target":358},{"source":354,"target":18},{"source":340,"target":15},{"source":340,"target":359},{"source":340,"target":18},{"source":340,"target":328},{"source":359,"target":15},{"source":313,"target":14},{"source":313,"target":360},{"source":313,"target":18},{"source":313,"target":285},{"source":360,"target":14},{"source":19,"target":0},{"source":19,"target":361},{"source":19,"target":362},{"source":19,"target":315},{"source":361,"target":363},{"source":361,"target":19},{"source":362,"target":364},{"source":362,"target":19},{"source":315,"target":14},{"source":315,"target":365},{"source":315,"target":19},{"source":315,"target":286},{"source":365,"target":14},{"source":20,"target":0},{"source":20,"target":366},{"source":20,"target":367},{"source":20,"target":368},{"source":20,"target":369},{"source":20,"target":370},{"source":20,"target":317},{"source":366,"target":371},{"source":366,"target":20},{"source":367,"target":372},{"source":367,"target":20},{"source":368,"target":373},{"source":368,"target":20},{"source":369,"target":374},{"source":369,"target":20},{"source":370,"target":375},{"source":370,"target":20},{"source":317,"target":14},{"source":317,"target":376},{"source":317,"target":20},{"source":317,"target":287},{"source":376,"target":14},{"source":21,"target":0},{"source":21,"target":377},{"source":21,"target":378},{"source":21,"target":379},{"source":21,"target":380},{"source":21,"target":381},{"source":377,"target":10},{"source":377,"target":382},{"source":377,"target":21},{"source":382,"target":10},{"source":378,"target":4},{"source":378,"target":383},{"source":378,"target":21},{"source":383,"target":4},{"source":379,"target":384},{"source":379,"target":21},{"source":380,"target":385},{"source":380,"target":21},{"source":381,"target":63},{"source":381,"target":386},{"source":381,"target":21},{"source":386,"target":63},{"source":22,"target":0},{"source":23,"target":0},{"source":23,"target":387},{"source":23,"target":388},{"source":23,"target":389},{"source":387,"target":390},{"source":387,"target":23},{"source":388,"target":391},{"source":388,"target":23},{"source":389,"target":22},{"source":389,"target":392},{"source":389,"target":23},{"source":392,"target":22},{"source":24,"target":0},{"source":24,"target":23},{"source":24,"target":393},{"source":393,"target":23},{"source":25,"target":0},{"source":25,"target":394},{"source":394,"target":395},{"source":394,"target":25},{"source":26,"target":0},{"source":26,"target":396},{"source":26,"target":397},{"source":26,"target":398},{"source":26,"target":399},{"source":396,"target":400},{"source":396,"target":26},{"source":397,"target":401},{"source":397,"target":26},{"source":398,"target":402},{"source":398,"target":26},{"source":399,"target":25},{"source":399,"target":403},{"source":399,"target":26},{"source":403,"target":25},{"source":27,"target":0},{"source":27,"target":404},{"source":27,"target":405},{"source":27,"target":406},{"source":27,"target":407},{"source":27,"target":408},{"source":27,"target":409},{"source":27,"target":410},{"source":27,"target":411},{"source":404,"target":5},{"source":404,"target":412},{"source":404,"target":27},{"source":412,"target":5},{"source":405,"target":413},{"source":405,"target":27},{"source":406,"target":414},{"source":406,"target":27},{"source":407,"target":1},{"source":407,"target":415},{"source":407,"target":27},{"source":415,"target":1},{"source":408,"target":416},{"source":408,"target":27},{"source":409,"target":417},{"source":409,"target":27},{"source":410,"target":418},{"source":410,"target":27},{"source":411,"target":419},{"source":411,"target":27},{"source":28,"target":0},{"source":28,"target":420},{"source":28,"target":421},{"source":28,"target":422},{"source":420,"target":423},{"source":420,"target":28},{"source":421,"target":424},{"source":421,"target":28},{"source":422,"target":425},{"source":422,"target":28},{"source":29,"target":0},{"source":29,"target":25},{"source":29,"target":426},{"source":29,"target":427},{"source":29,"target":428},{"source":426,"target":429},{"source":426,"target":29},{"source":427,"target":430},{"source":427,"target":29},{"source":428,"target":25},{"source":30,"target":0},{"source":30,"target":25},{"source":30,"target":431},{"source":30,"target":432},{"source":431,"target":25},{"source":431,"target":433},{"source":431,"target":30},{"source":433,"target":25},{"source":432,"target":25},{"source":31,"target":0},{"source":31,"target":25},{"source":31,"target":434},{"source":31,"target":435},{"source":434,"target":436},{"source":434,"target":31},{"source":435,"target":25},{"source":32,"target":0},{"source":32,"target":437},{"source":32,"target":438},{"source":437,"target":439},{"source":437,"target":32},{"source":438,"target":440},{"source":438,"target":32},{"source":33,"target":0},{"source":33,"target":441},{"source":33,"target":442},{"source":441,"target":443},{"source":441,"target":33},{"source":442,"target":32},{"source":442,"target":444},{"source":442,"target":33},{"source":444,"target":32},{"source":34,"target":0},{"source":34,"target":445},{"source":34,"target":446},{"source":34,"target":447},{"source":34,"target":448},{"source":34,"target":449},{"source":34,"target":450},{"source":34,"target":451},{"source":34,"target":452},{"source":34,"target":453},{"source":34,"target":454},{"source":445,"target":455},{"source":445,"target":34},{"source":446,"target":456},{"source":446,"target":34},{"source":447,"target":457},{"source":447,"target":34},{"source":448,"target":458},{"source":448,"target":34},{"source":449,"target":459},{"source":449,"target":34},{"source":450,"target":460},{"source":450,"target":34},{"source":451,"target":461},{"source":451,"target":34},{"source":452,"target":462},{"source":452,"target":34},{"source":453,"target":463},{"source":453,"target":34},{"source":454,"target":33},{"source":454,"target":464},{"source":454,"target":34},{"source":464,"target":33},{"source":35,"target":0},{"source":35,"target":465},{"source":35,"target":466},{"source":35,"target":467},{"source":35,"target":468},{"source":465,"target":469},{"source":465,"target":35},{"source":466,"target":470},{"source":466,"target":35},{"source":467,"target":471},{"source":467,"target":35},{"source":468,"target":472},{"source":468,"target":35},{"source":36,"target":0},{"source":36,"target":473},{"source":36,"target":474},{"source":473,"target":475},{"source":473,"target":36},{"source":474,"target":476},{"source":474,"target":36},{"source":37,"target":0},{"source":37,"target":477},{"source":37,"target":478},{"source":477,"target":479},{"source":477,"target":37},{"source":478,"target":480},{"source":478,"target":37},{"source":38,"target":0},{"source":38,"target":481},{"source":38,"target":482},{"source":481,"target":483},{"source":481,"target":38},{"source":482,"target":37},{"source":482,"target":484},{"source":482,"target":38},{"source":484,"target":37},{"source":39,"target":0},{"source":39,"target":485},{"source":485,"target":38},{"source":485,"target":486},{"source":485,"target":39},{"source":486,"target":38},{"source":40,"target":0},{"source":40,"target":487},{"source":40,"target":488},{"source":40,"target":489},{"source":40,"target":490},{"source":487,"target":491},{"source":487,"target":40},{"source":488,"target":492},{"source":488,"target":40},{"source":489,"target":493},{"source":489,"target":40},{"source":490,"target":494},{"source":490,"target":40},{"source":41,"target":0},{"source":41,"target":495},{"source":41,"target":496},{"source":41,"target":497},{"source":41,"target":498},{"source":41,"target":499},{"source":495,"target":500},{"source":495,"target":41},{"source":496,"target":5},{"source":496,"target":501},{"source":496,"target":41},{"source":501,"target":5},{"source":497,"target":502},{"source":497,"target":41},{"source":498,"target":503},{"source":498,"target":41},{"source":499,"target":504},{"source":499,"target":41},{"source":42,"target":0},{"source":42,"target":41},{"source":42,"target":505},{"source":42,"target":506},{"source":505,"target":10},{"source":505,"target":507},{"source":505,"target":42},{"source":507,"target":10},{"source":506,"target":41},{"source":43,"target":0},{"source":43,"target":508},{"source":508,"target":509},{"source":508,"target":43},{"source":44,"target":0},{"source":44,"target":510},{"source":44,"target":511},{"source":510,"target":44},{"source":511,"target":44},{"source":45,"target":0},{"source":45,"target":512},{"source":45,"target":513},{"source":45,"target":514},{"source":45,"target":515},{"source":512,"target":45},{"source":513,"target":45},{"source":514,"target":45},{"source":515,"target":45},{"source":46,"target":0},{"source":46,"target":516},{"source":516,"target":26},{"source":516,"target":517},{"source":516,"target":46},{"source":517,"target":26},{"source":47,"target":0},{"source":47,"target":46},{"source":47,"target":518},{"source":518,"target":46},{"source":48,"target":0},{"source":48,"target":46},{"source":48,"target":519},{"source":519,"target":46},{"source":49,"target":0},{"source":49,"target":46},{"source":49,"target":520},{"source":49,"target":521},{"source":49,"target":522},{"source":49,"target":523},{"source":520,"target":524},{"source":520,"target":49},{"source":521,"target":525},{"source":521,"target":49},{"source":522,"target":526},{"source":522,"target":49},{"source":523,"target":46},{"source":50,"target":0},{"source":50,"target":527},{"source":50,"target":528},{"source":527,"target":529},{"source":527,"target":50},{"source":528,"target":46},{"source":528,"target":530},{"source":528,"target":50},{"source":530,"target":46},{"source":51,"target":0},{"source":51,"target":531},{"source":531,"target":50},{"source":531,"target":532},{"source":531,"target":51},{"source":532,"target":50},{"source":52,"target":0},{"source":52,"target":533},{"source":52,"target":534},{"source":52,"target":535},{"source":533,"target":52},{"source":534,"target":52},{"source":535,"target":52},{"source":53,"target":0},{"source":53,"target":536},{"source":53,"target":537},{"source":536,"target":538},{"source":536,"target":53},{"source":537,"target":52},{"source":537,"target":539},{"source":537,"target":53},{"source":539,"target":52},{"source":54,"target":0},{"source":55,"target":0},{"source":55,"target":54},{"source":55,"target":540},{"source":55,"target":541},{"source":540,"target":4},{"source":540,"target":542},{"source":540,"target":55},{"source":542,"target":4},{"source":541,"target":54},{"source":56,"target":0},{"source":56,"target":54},{"source":56,"target":543},{"source":56,"target":544},{"source":56,"target":545},{"source":543,"target":10},{"source":543,"target":546},{"source":543,"target":56},{"source":546,"target":10},{"source":544,"target":4},{"source":544,"target":547},{"source":544,"target":56},{"source":547,"target":4},{"source":545,"target":54},{"source":57,"target":0},{"source":57,"target":548},{"source":57,"target":549},{"source":57,"target":550},{"source":548,"target":551},{"source":548,"target":57},{"source":549,"target":552},{"source":549,"target":57},{"source":550,"target":553},{"source":550,"target":57},{"source":58,"target":0},{"source":58,"target":554},{"source":58,"target":555},{"source":58,"target":556},{"source":58,"target":557},{"source":554,"target":558},{"source":554,"target":58},{"source":555,"target":559},{"source":555,"target":58},{"source":556,"target":560},{"source":556,"target":58},{"source":557,"target":561},{"source":557,"target":58},{"source":59,"target":0},{"source":59,"target":562},{"source":59,"target":563},{"source":59,"target":564},{"source":59,"target":565},{"source":59,"target":566},{"source":59,"target":567},{"source":562,"target":59},{"source":563,"target":59},{"source":564,"target":59},{"source":565,"target":59},{"source":566,"target":59},{"source":567,"target":59},{"source":60,"target":0},{"source":60,"target":568},{"source":60,"target":569},{"source":568,"target":59},{"source":568,"target":570},{"source":568,"target":60},{"source":570,"target":59},{"source":569,"target":571},{"source":569,"target":60},{"source":61,"target":0},{"source":61,"target":572},{"source":61,"target":573},{"source":61,"target":574},{"source":61,"target":575},{"source":61,"target":576},{"source":61,"target":577},{"source":61,"target":578},{"source":572,"target":579},{"source":572,"target":61},{"source":573,"target":580},{"source":573,"target":61},{"source":574,"target":581},{"source":574,"target":61},{"source":575,"target":582},{"source":575,"target":61},{"source":576,"target":583},{"source":576,"target":61},{"source":577,"target":584},{"source":577,"target":61},{"source":578,"target":585},{"source":578,"target":61},{"source":62,"target":0},{"source":62,"target":586},{"source":62,"target":587},{"source":586,"target":588},{"source":586,"target":62},{"source":587,"target":589},{"source":587,"target":62},{"source":63,"target":0},{"source":63,"target":590},{"source":63,"target":591},{"source":63,"target":592},{"source":63,"target":593},{"source":590,"target":63},{"source":591,"target":63},{"source":592,"target":63},{"source":593,"target":63},{"source":64,"target":0},{"source":64,"target":594},{"source":594,"target":64},{"source":65,"target":0},{"source":65,"target":595},{"source":65,"target":596},{"source":65,"target":597},{"source":65,"target":598},{"source":65,"target":599},{"source":65,"target":319},{"source":65,"target":160},{"source":65,"target":600},{"source":595,"target":601},{"source":595,"target":65},{"source":596,"target":602},{"source":596,"target":65},{"source":597,"target":603},{"source":597,"target":65},{"source":598,"target":604},{"source":598,"target":65},{"source":599,"target":64},{"source":599,"target":605},{"source":599,"target":65},{"source":605,"target":64},{"source":319,"target":14},{"source":319,"target":606},{"source":319,"target":65},{"source":319,"target":288},{"source":606,"target":14},{"source":160,"target":5},{"source":160,"target":607},{"source":160,"target":65},{"source":160,"target":144},{"source":607,"target":5},{"source":600,"target":66},{"source":600,"target":608},{"source":600,"target":65},{"source":600,"target":609},{"source":608,"target":66},{"source":66,"target":0},{"source":66,"target":610},{"source":66,"target":611},{"source":66,"target":612},{"source":66,"target":613},{"source":66,"target":162},{"source":66,"target":609},{"source":610,"target":614},{"source":610,"target":66},{"source":611,"target":615},{"source":611,"target":66},{"source":612,"target":616},{"source":612,"target":66},{"source":613,"target":617},{"source":613,"target":66},{"source":162,"target":5},{"source":162,"target":618},{"source":162,"target":66},{"source":162,"target":145},{"source":618,"target":5},{"source":609,"target":65},{"source":609,"target":619},{"source":609,"target":66},{"source":609,"target":600},{"source":619,"target":65}],"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="fragment" nsURI="http://www.eclipse.org/ui/2010/UIModel/fragment" nsPrefix="fragment"> <eClassifiers xsi:type="ecore:EClass" name="ModelFragments"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="&lt;p>&#xD;&#xA;&lt;strong>Developers&lt;/strong>:&#xD;&#xA;Add more detailed documentation by editing this comment in &#xD;&#xA;/org.eclipse.e4.ui.model.workbench/model/ModelFragment.ecore. &#xD;&#xA;There is a GenModel/documentation node under each type and attribute.&#xD;&#xA;&lt;/p>&#xD;&#xA;@since 1.0"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="imports" upperBound="-1" eType="ecore:EClass platform:/plugin/org.eclipse.e4.ui.model.workbench/model/UIElements.ecore#//ApplicationElement" containment="true"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="&lt;p>&#xD;&#xA;&lt;strong>Developers&lt;/strong>:&#xD;&#xA;Add more detailed documentation by editing this comment in &#xD;&#xA;/org.eclipse.e4.ui.model.workbench/model/ModelFragment.ecore. &#xD;&#xA;There is a GenModel/documentation node under each type and attribute.&#xD;&#xA;&lt;/p>"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="fragments" upperBound="-1" eType="#//ModelFragment" containment="true"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="&lt;p>&#xD;&#xA;&lt;strong>Developers&lt;/strong>:&#xD;&#xA;Add more detailed documentation by editing this comment in &#xD;&#xA;/org.eclipse.e4.ui.model.workbench/model/ModelFragment.ecore. &#xD;&#xA;There is a GenModel/documentation node under each type and attribute.&#xD;&#xA;&lt;/p>"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ModelFragment" abstract="true"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="&lt;p>&#xD;&#xA;&lt;strong>Developers&lt;/strong>:&#xD;&#xA;Add more detailed documentation by editing this comment in &#xD;&#xA;/org.eclipse.e4.ui.model.workbench/model/ModelFragment.ecore. &#xD;&#xA;There is a GenModel/documentation node under each type and attribute.&#xD;&#xA;&lt;/p>&#xD;&#xA;@since 1.0"/> </eAnnotations> <eOperations name="merge" upperBound="-1" eType="ecore:EClass platform:/plugin/org.eclipse.e4.ui.model.workbench/model/UIElements.ecore#//ApplicationElement"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="&lt;p>&#xD;&#xA;&lt;strong>Developers&lt;/strong>:&#xD;&#xA;Add more detailed documentation by editing this comment in &#xD;&#xA;/org.eclipse.e4.ui.model.workbench/model/ModelFragment.ecore. &#xD;&#xA;There is a GenModel/documentation node under each type and attribute.&#xD;&#xA;&lt;/p>"/> </eAnnotations> <eParameters name="application" eType="ecore:EClass platform:/plugin/org.eclipse.e4.ui.model.workbench/model/UIElements.ecore#//Application"/> </eOperations> <eStructuralFeatures xsi:type="ecore:EReference" name="elements" upperBound="-1" eType="ecore:EClass platform:/plugin/org.eclipse.e4.ui.model.workbench/model/UIElements.ecore#//ApplicationElement" containment="true"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="&lt;p>&#xD;&#xA;&lt;strong>Developers&lt;/strong>:&#xD;&#xA;Add more detailed documentation by editing this comment in &#xD;&#xA;/org.eclipse.e4.ui.model.workbench/model/ModelFragment.ecore. &#xD;&#xA;There is a GenModel/documentation node under each type and attribute.&#xD;&#xA;&lt;/p>"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="StringModelFragment" eSuperTypes="#//ModelFragment"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="&lt;p>&#xD;&#xA;&lt;strong>Developers&lt;/strong>:&#xD;&#xA;Add more detailed documentation by editing this comment in &#xD;&#xA;/org.eclipse.e4.ui.model.workbench/model/ModelFragment.ecore. &#xD;&#xA;There is a GenModel/documentation node under each type and attribute.&#xD;&#xA;&lt;/p>&#xD;&#xA;@since 1.0"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="featurename" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="&lt;p>&#xD;&#xA;&lt;strong>Developers&lt;/strong>:&#xD;&#xA;Add more detailed documentation by editing this comment in &#xD;&#xA;/org.eclipse.e4.ui.model.workbench/model/ModelFragment.ecore. &#xD;&#xA;There is a GenModel/documentation node under each type and attribute.&#xD;&#xA;&lt;/p>"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="parentElementId" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="&lt;p>&#xD;&#xA;&lt;strong>Developers&lt;/strong>:&#xD;&#xA;Add more detailed documentation by editing this comment in &#xD;&#xA;/org.eclipse.e4.ui.model.workbench/model/ModelFragment.ecore. &#xD;&#xA;There is a GenModel/documentation node under each type and attribute.&#xD;&#xA;&lt;/p>"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="positionInList" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="&lt;p>&#xD;&#xA;&lt;strong>Developers&lt;/strong>:&#xD;&#xA;Add more detailed documentation by editing this comment in &#xD;&#xA;/org.eclipse.e4.ui.model.workbench/model/ModelFragment.ecore. &#xD;&#xA;There is a GenModel/documentation node under each type and attribute.&#xD;&#xA;&lt;/p>"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> </ecore:EPackage>
github:ecore:/data/swt-javafx/eclipse.platform.ui/bundles/org.eclipse.e4.ui.model.workbench/model/ModelFragment.ecore
ecore
fragment ModelFragments imports fragments ModelFragment merge application elements StringModelFragment featurename parentElementId positionInList
null
{"directed":true,"nodes":[{"nsPrefix":"fragment","nsURI":"http://www.eclipse.org/ui/2010/UIModel/fragment","name":"fragment","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ModelFragments","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ModelFragment","instanceClass":null,"abstract":true,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StringModelFragment","instanceClass":null,"abstract":false,"id":3,"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":"imports","changeable":true,"resolveProxies":true,"lowerBound":0,"id":4,"derived":false},{"container":false,"ordered":true,"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":5,"derived":false},{"id":6,"eClass":"EGenericType"},{"id":7,"eClass":"EGenericType"},{"ordered":true,"upperBound":-1,"unique":true,"name":"merge","lowerBound":0,"id":8,"many":true,"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":"elements","changeable":true,"resolveProxies":true,"lowerBound":0,"id":9,"derived":false},{"id":10,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"application","lowerBound":0,"id":11,"many":false,"required":false,"eClass":"EParameter"},{"id":12,"eClass":"EGenericType"},{"id":13,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"featurename","changeable":true,"lowerBound":0,"iD":false,"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":"parentElementId","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":"positionInList","changeable":true,"lowerBound":0,"iD":false,"id":16,"derived":false},{"id":17,"eClass":"EGenericType"},{"id":18,"eClass":"EGenericType"},{"id":19,"eClass":"EGenericType"},{"id":20,"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":4,"target":6},{"source":4,"target":1},{"source":5,"target":2},{"source":5,"target":7},{"source":5,"target":1},{"source":7,"target":2},{"source":2,"target":0},{"source":2,"target":8},{"source":2,"target":9},{"source":8,"target":10},{"source":8,"target":2},{"source":8,"target":11},{"source":11,"target":12},{"source":11,"target":8},{"source":9,"target":13},{"source":9,"target":2},{"source":3,"target":0},{"source":3,"target":2},{"source":3,"target":14},{"source":3,"target":15},{"source":3,"target":16},{"source":3,"target":17},{"source":14,"target":18},{"source":14,"target":3},{"source":15,"target":19},{"source":15,"target":3},{"source":16,"target":20},{"source":16,"target":3},{"source":17,"target":2}],"multigraph":true}
true
<?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="atlext" nsURI="http://anatlyzer/atl/ext" nsPrefix="atlext"> <eSubpackages name="ATL" nsURI="http://anatlyzer/atlext/ATL" nsPrefix="atl_ext_atl"> <eClassifiers xsi:type="ecore:EClass" name="LocatedElement" abstract="true"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="location" ordered="false" unique="false" eType="#//PrimitiveTypes/String"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="commentsBefore" unique="false" upperBound="-1" eType="#//PrimitiveTypes/String"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="commentsAfter" unique="false" upperBound="-1" eType="#//PrimitiveTypes/String"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="fileLocation" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="fileObject" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EJavaObject"/> <eStructuralFeatures xsi:type="ecore:EReference" name="problems" upperBound="-1" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EObject"/> <eStructuralFeatures xsi:type="ecore:EReference" name="annotations" upperBound="-1" eType="#//ATL/StringToStringMap" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Unit" eSuperTypes="#//ATL/LocatedElement"> <eStructuralFeatures xsi:type="ecore:EReference" name="libraries" ordered="false" upperBound="-1" eType="#//ATL/LibraryRef" containment="true" eOpposite="#//ATL/LibraryRef/unit"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" ordered="false" unique="false" lowerBound="1" eType="#//PrimitiveTypes/String"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Library" eSuperTypes="#//ATL/Unit"> <eStructuralFeatures xsi:type="ecore:EReference" name="helpers" upperBound="-1" eType="#//ATL/Helper" containment="true" eOpposite="#//ATL/Helper/library"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Query" eSuperTypes="#//ATL/Unit"> <eStructuralFeatures xsi:type="ecore:EReference" name="body" ordered="false" lowerBound="1" eType="#//OCL/OclExpression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="helpers" upperBound="-1" eType="#//ATL/Helper" containment="true" eOpposite="#//ATL/Helper/query"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Module" eSuperTypes="#//ATL/Unit"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="isRefining" ordered="false" unique="false" lowerBound="1" eType="#//PrimitiveTypes/Boolean"/> <eStructuralFeatures xsi:type="ecore:EReference" name="inModels" lowerBound="1" upperBound="-1" eType="#//OCL/OclModel" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="outModels" ordered="false" lowerBound="1" upperBound="-1" eType="#//OCL/OclModel" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="elements" upperBound="-1" eType="#//ATL/ModuleElement" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ModuleElement" abstract="true" eSuperTypes="#//ATL/LocatedElement"/> <eClassifiers xsi:type="ecore:EClass" name="Helper" abstract="true" eSuperTypes="#//ATL/ModuleElement #//ATL/Callable"> <eStructuralFeatures xsi:type="ecore:EReference" name="query" ordered="false" eType="#//ATL/Query" eOpposite="#//ATL/Query/helpers"/> <eStructuralFeatures xsi:type="ecore:EReference" name="library" ordered="false" eType="#//ATL/Library" eOpposite="#//ATL/Library/helpers"/> <eStructuralFeatures xsi:type="ecore:EReference" name="definition" ordered="false" lowerBound="1" eType="#//OCL/OclFeatureDefinition" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="hasContext" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean" defaultValueLiteral="false"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="isAttribute" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean" defaultValueLiteral="false"/> <eStructuralFeatures xsi:type="ecore:EReference" name="inferredReturnType" eType="ecore:EClass ../types.ecore#//Type"/> <eStructuralFeatures xsi:type="ecore:EReference" name="staticReturnType" eType="ecore:EClass ../types.ecore#//Type"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="StaticHelper" eSuperTypes="#//ATL/Helper #//ATL/ModuleCallable"/> <eClassifiers xsi:type="ecore:EClass" name="ContextHelper" eSuperTypes="#//ATL/Helper"> <eStructuralFeatures xsi:type="ecore:EReference" name="contextType" lowerBound="1" eType="ecore:EClass ../types.ecore#//Type"/> <eStructuralFeatures xsi:type="ecore:EReference" name="polymorphicCalledBy" upperBound="-1" eType="#//OCL/PropertyCallExp" eOpposite="#//OCL/PropertyCallExp/dynamicResolvers"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Rule" abstract="true" eSuperTypes="#//ATL/ModuleElement"> <eStructuralFeatures xsi:type="ecore:EReference" name="outPattern" ordered="false" eType="#//ATL/OutPattern" containment="true" eOpposite="#//ATL/OutPattern/rule"/> <eStructuralFeatures xsi:type="ecore:EReference" name="actionBlock" ordered="false" eType="#//ATL/ActionBlock" containment="true" eOpposite="#//ATL/ActionBlock/rule"/> <eStructuralFeatures xsi:type="ecore:EReference" name="variables" upperBound="-1" eType="#//ATL/RuleVariableDeclaration" containment="true" eOpposite="#//ATL/RuleVariableDeclaration/rule"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" ordered="false" unique="false" lowerBound="1" eType="#//PrimitiveTypes/String"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="StaticRule" abstract="true" eSuperTypes="#//ATL/ModuleCallable #//ATL/Rule"/> <eClassifiers xsi:type="ecore:EClass" name="ModuleCallable" abstract="true" eSuperTypes="#//ATL/Callable"/> <eClassifiers xsi:type="ecore:EClass" name="Callable" abstract="true"> <eStructuralFeatures xsi:type="ecore:EReference" name="calledBy" upperBound="-1" eType="#//OCL/PropertyCallExp"/> <eStructuralFeatures xsi:type="ecore:EReference" name="callableParameters" upperBound="-1" eType="#//ATL/CallableParameter" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="RuleWithPattern" abstract="true" eSuperTypes="#//ATL/Rule"> <eStructuralFeatures xsi:type="ecore:EReference" name="inPattern" ordered="false" eType="#//ATL/InPattern" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="children" ordered="false" upperBound="-1" eType="#//ATL/RuleWithPattern" eOpposite="#//ATL/RuleWithPattern/superRule"/> <eStructuralFeatures xsi:type="ecore:EReference" name="superRule" ordered="false" eType="#//ATL/RuleWithPattern" eOpposite="#//ATL/RuleWithPattern/children"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="isAbstract" ordered="false" unique="false" lowerBound="1" eType="#//PrimitiveTypes/Boolean"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="isRefining" ordered="false" unique="false" lowerBound="1" eType="#//PrimitiveTypes/Boolean"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="isNoDefault" ordered="false" unique="false" lowerBound="1" eType="#//PrimitiveTypes/Boolean"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="MatchedRule" eSuperTypes="#//ATL/RuleWithPattern"/> <eClassifiers xsi:type="ecore:EClass" name="LazyRule" eSuperTypes="#//ATL/RuleWithPattern #//ATL/StaticRule"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="isUnique" ordered="false" unique="false" lowerBound="1" eType="#//PrimitiveTypes/Boolean"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CalledRule" eSuperTypes="#//ATL/StaticRule"> <eStructuralFeatures xsi:type="ecore:EReference" name="parameters" ordered="false" upperBound="-1" eType="#//OCL/Parameter" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="isEntrypoint" ordered="false" unique="false" lowerBound="1" eType="#//PrimitiveTypes/Boolean"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="isEndpoint" ordered="false" unique="false" lowerBound="1" eType="#//PrimitiveTypes/Boolean"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="InPattern" eSuperTypes="#//ATL/LocatedElement"> <eStructuralFeatures xsi:type="ecore:EReference" name="elements" ordered="false" lowerBound="1" upperBound="-1" eType="#//ATL/InPatternElement" containment="true" eOpposite="#//ATL/InPatternElement/inPattern"/> <eStructuralFeatures xsi:type="ecore:EReference" name="filter" ordered="false" eType="#//OCL/OclExpression" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="OutPattern" eSuperTypes="#//ATL/LocatedElement"> <eStructuralFeatures xsi:type="ecore:EReference" name="rule" ordered="false" lowerBound="1" eType="#//ATL/Rule" eOpposite="#//ATL/Rule/outPattern"/> <eStructuralFeatures xsi:type="ecore:EReference" name="dropPattern" ordered="false" eType="#//ATL/DropPattern" containment="true" eOpposite="#//ATL/DropPattern/outPattern"/> <eStructuralFeatures xsi:type="ecore:EReference" name="elements" lowerBound="1" upperBound="-1" eType="#//ATL/OutPatternElement" containment="true" eOpposite="#//ATL/OutPatternElement/outPattern"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="DropPattern" eSuperTypes="#//ATL/LocatedElement"> <eStructuralFeatures xsi:type="ecore:EReference" name="outPattern" ordered="false" lowerBound="1" eType="#//ATL/OutPattern" eOpposite="#//ATL/OutPattern/dropPattern"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="PatternElement" abstract="true" eSuperTypes="#//OCL/VariableDeclaration"/> <eClassifiers xsi:type="ecore:EClass" name="InPatternElement" abstract="true" eSuperTypes="#//ATL/PatternElement"> <eStructuralFeatures xsi:type="ecore:EReference" name="mapsTo" ordered="false" lowerBound="1" eType="#//ATL/OutPatternElement" eOpposite="#//ATL/OutPatternElement/sourceElement"/> <eStructuralFeatures xsi:type="ecore:EReference" name="inPattern" ordered="false" lowerBound="1" eType="#//ATL/InPattern" eOpposite="#//ATL/InPattern/elements"/> <eStructuralFeatures xsi:type="ecore:EReference" name="models" ordered="false" upperBound="-1" eType="#//OCL/OclModel"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="SimpleInPatternElement" eSuperTypes="#//ATL/InPatternElement"/> <eClassifiers xsi:type="ecore:EClass" name="OutPatternElement" abstract="true" eSuperTypes="#//ATL/PatternElement"> <eStructuralFeatures xsi:type="ecore:EReference" name="outPattern" ordered="false" lowerBound="1" eType="#//ATL/OutPattern" eOpposite="#//ATL/OutPattern/elements"/> <eStructuralFeatures xsi:type="ecore:EReference" name="sourceElement" ordered="false" eType="#//ATL/InPatternElement" eOpposite="#//ATL/InPatternElement/mapsTo"/> <eStructuralFeatures xsi:type="ecore:EReference" name="bindings" upperBound="-1" eType="#//ATL/Binding" containment="true" eOpposite="#//ATL/Binding/outPatternElement"/> <eStructuralFeatures xsi:type="ecore:EReference" name="model" ordered="false" eType="#//OCL/OclModel"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="SimpleOutPatternElement" eSuperTypes="#//ATL/OutPatternElement"> <eStructuralFeatures xsi:type="ecore:EReference" name="reverseBindings" upperBound="-1" eType="#//OCL/OclExpression" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ForEachOutPatternElement" eSuperTypes="#//ATL/OutPatternElement"> <eStructuralFeatures xsi:type="ecore:EReference" name="collection" ordered="false" lowerBound="1" eType="#//OCL/OclExpression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="iterator" ordered="false" lowerBound="1" eType="#//OCL/Iterator" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Binding" eSuperTypes="#//ATL/LocatedElement"> <eStructuralFeatures xsi:type="ecore:EReference" name="value" ordered="false" lowerBound="1" eType="#//OCL/OclExpression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="outPatternElement" ordered="false" lowerBound="1" eType="#//ATL/OutPatternElement" eOpposite="#//ATL/OutPatternElement/bindings"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="propertyName" ordered="false" unique="false" lowerBound="1" eType="#//PrimitiveTypes/String"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="isAssignment" ordered="false" unique="false" lowerBound="1" eType="#//PrimitiveTypes/Boolean"/> <eStructuralFeatures xsi:type="ecore:EReference" name="writtenFeature" lowerBound="1" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EObject"/> <eStructuralFeatures xsi:type="ecore:EReference" name="leftType" lowerBound="1" eType="ecore:EClass ../types.ecore#//Type"/> <eStructuralFeatures xsi:type="ecore:EReference" name="resolvedBy" upperBound="-1" eType="#//ATL/RuleResolutionInfo" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="RuleVariableDeclaration" eSuperTypes="#//OCL/VariableDeclaration"> <eStructuralFeatures xsi:type="ecore:EReference" name="rule" ordered="false" lowerBound="1" eType="#//ATL/Rule" eOpposite="#//ATL/Rule/variables"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="LibraryRef" eSuperTypes="#//ATL/LocatedElement"> <eStructuralFeatures xsi:type="ecore:EReference" name="unit" ordered="false" lowerBound="1" eType="#//ATL/Unit" eOpposite="#//ATL/Unit/libraries"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" ordered="false" unique="false" lowerBound="1" eType="#//PrimitiveTypes/String"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ActionBlock" eSuperTypes="#//ATL/LocatedElement"> <eStructuralFeatures xsi:type="ecore:EReference" name="rule" ordered="false" lowerBound="1" eType="#//ATL/Rule" eOpposite="#//ATL/Rule/actionBlock"/> <eStructuralFeatures xsi:type="ecore:EReference" name="statements" upperBound="-1" eType="#//ATL/Statement" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Statement" abstract="true" eSuperTypes="#//ATL/LocatedElement"/> <eClassifiers xsi:type="ecore:EClass" name="ExpressionStat" eSuperTypes="#//ATL/Statement"> <eStructuralFeatures xsi:type="ecore:EReference" name="expression" ordered="false" lowerBound="1" eType="#//OCL/OclExpression" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="BindingStat" eSuperTypes="#//ATL/Statement"> <eStructuralFeatures xsi:type="ecore:EReference" name="source" ordered="false" lowerBound="1" eType="#//OCL/OclExpression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="propertyName" ordered="false" unique="false" lowerBound="1" eType="#//PrimitiveTypes/String"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="isAssignment" ordered="false" unique="false" lowerBound="1" eType="#//PrimitiveTypes/Boolean"/> <eStructuralFeatures xsi:type="ecore:EReference" name="value" ordered="false" lowerBound="1" eType="#//OCL/OclExpression" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="IfStat" eSuperTypes="#//ATL/Statement"> <eStructuralFeatures xsi:type="ecore:EReference" name="condition" ordered="false" lowerBound="1" eType="#//OCL/OclExpression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="thenStatements" upperBound="-1" eType="#//ATL/Statement" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="elseStatements" upperBound="-1" eType="#//ATL/Statement" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ForStat" eSuperTypes="#//ATL/Statement"> <eStructuralFeatures xsi:type="ecore:EReference" name="iterator" ordered="false" lowerBound="1" eType="#//OCL/Iterator" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="collection" ordered="false" lowerBound="1" eType="#//OCL/OclExpression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="statements" upperBound="-1" eType="#//ATL/Statement" containment="true"/> </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" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CallableParameter"> <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="staticType" lowerBound="1" eType="ecore:EClass ../types.ecore#//Type"/> <eStructuralFeatures xsi:type="ecore:EReference" name="paramDeclaration" eType="#//OCL/VariableDeclaration"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="RuleResolutionInfo"> <eStructuralFeatures xsi:type="ecore:EReference" name="rule" lowerBound="1" eType="#//ATL/MatchedRule"/> <eStructuralFeatures xsi:type="ecore:EReference" name="allInvolvedRules" lowerBound="1" upperBound="-1" eType="#//ATL/MatchedRule"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="status" lowerBound="1" eType="#//ATL/RuleResolutionStatus"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="RuleResolutionStatus"> <eLiterals name="RESOLUTION_UNKNOWN"/> <eLiterals name="RESOLUTION_CONFIRMED" value="1"/> <eLiterals name="RESOLUTION_DISCARDED" value="2"/> </eClassifiers> </eSubpackages> <eSubpackages name="OCL" nsURI="http://anatlyzer/atl/ext/OCL" nsPrefix="atl_ext_ocl"> <eClassifiers xsi:type="ecore:EClass" name="OclExpression" abstract="true" eSuperTypes="#//ATL/LocatedElement #//OCL/TypedElement"> <eStructuralFeatures xsi:type="ecore:EReference" name="type" ordered="false" eType="#//OCL/OclType" containment="true" eOpposite="#//OCL/OclType/oclExpression"/> <eStructuralFeatures xsi:type="ecore:EReference" name="ifExp3" ordered="false" eType="#//OCL/IfExp" eOpposite="#//OCL/IfExp/elseExpression"/> <eStructuralFeatures xsi:type="ecore:EReference" name="appliedProperty" ordered="false" eType="#//OCL/PropertyCallExp" eOpposite="#//OCL/PropertyCallExp/source"/> <eStructuralFeatures xsi:type="ecore:EReference" name="collection" ordered="false" eType="#//OCL/CollectionExp" eOpposite="#//OCL/CollectionExp/elements"/> <eStructuralFeatures xsi:type="ecore:EReference" name="letExp" ordered="false" eType="#//OCL/LetExp" eOpposite="#//OCL/LetExp/in_"/> <eStructuralFeatures xsi:type="ecore:EReference" name="loopExp" ordered="false" eType="#//OCL/LoopExp" eOpposite="#//OCL/LoopExp/body"/> <eStructuralFeatures xsi:type="ecore:EReference" name="parentOperation" ordered="false" eType="#//OCL/OperationCallExp" eOpposite="#//OCL/OperationCallExp/arguments"/> <eStructuralFeatures xsi:type="ecore:EReference" name="initializedVariable" ordered="false" eType="#//OCL/VariableDeclaration" eOpposite="#//OCL/VariableDeclaration/initExpression"/> <eStructuralFeatures xsi:type="ecore:EReference" name="ifExp2" ordered="false" eType="#//OCL/IfExp" eOpposite="#//OCL/IfExp/thenExpression"/> <eStructuralFeatures xsi:type="ecore:EReference" name="owningOperation" ordered="false" eType="#//OCL/Operation" eOpposite="#//OCL/Operation/body"/> <eStructuralFeatures xsi:type="ecore:EReference" name="ifExp1" ordered="false" eType="#//OCL/IfExp" eOpposite="#//OCL/IfExp/condition"/> <eStructuralFeatures xsi:type="ecore:EReference" name="owningAttribute" ordered="false" eType="#//OCL/Attribute" eOpposite="#//OCL/Attribute/initExpression"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="implicitlyCasted" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean" defaultValueLiteral="false"/> <eStructuralFeatures xsi:type="ecore:EReference" name="noCastedType" eType="ecore:EClass ../types.ecore#//Type"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="VariableExp" eSuperTypes="#//OCL/OclExpression"> <eStructuralFeatures xsi:type="ecore:EReference" name="referredVariable" ordered="false" lowerBound="1" eType="#//OCL/VariableDeclaration" eOpposite="#//OCL/VariableDeclaration/variableExp"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="SuperExp" eSuperTypes="#//OCL/OclExpression"/> <eClassifiers xsi:type="ecore:EClass" name="PrimitiveExp" abstract="true" eSuperTypes="#//OCL/OclExpression"/> <eClassifiers xsi:type="ecore:EClass" name="StringExp" eSuperTypes="#//OCL/PrimitiveExp"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="stringSymbol" ordered="false" unique="false" lowerBound="1" eType="#//PrimitiveTypes/String"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="BooleanExp" eSuperTypes="#//OCL/PrimitiveExp"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="booleanSymbol" ordered="false" unique="false" lowerBound="1" eType="#//PrimitiveTypes/Boolean"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="NumericExp" abstract="true" eSuperTypes="#//OCL/PrimitiveExp"/> <eClassifiers xsi:type="ecore:EClass" name="RealExp" eSuperTypes="#//OCL/NumericExp"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="realSymbol" ordered="false" unique="false" lowerBound="1" eType="#//PrimitiveTypes/Double"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="IntegerExp" eSuperTypes="#//OCL/NumericExp"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="integerSymbol" ordered="false" unique="false" lowerBound="1" eType="#//PrimitiveTypes/Integer"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CollectionExp" abstract="true" eSuperTypes="#//OCL/OclExpression"> <eStructuralFeatures xsi:type="ecore:EReference" name="elements" upperBound="-1" eType="#//OCL/OclExpression" containment="true" eOpposite="#//OCL/OclExpression/collection"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="BagExp" eSuperTypes="#//OCL/CollectionExp"/> <eClassifiers xsi:type="ecore:EClass" name="OrderedSetExp" eSuperTypes="#//OCL/CollectionExp"/> <eClassifiers xsi:type="ecore:EClass" name="SequenceExp" eSuperTypes="#//OCL/CollectionExp"/> <eClassifiers xsi:type="ecore:EClass" name="SetExp" eSuperTypes="#//OCL/CollectionExp"/> <eClassifiers xsi:type="ecore:EClass" name="TupleExp" eSuperTypes="#//OCL/OclExpression"> <eStructuralFeatures xsi:type="ecore:EReference" name="tuplePart" upperBound="-1" eType="#//OCL/TuplePart" containment="true" eOpposite="#//OCL/TuplePart/tuple"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="TuplePart" eSuperTypes="#//OCL/VariableDeclaration"> <eStructuralFeatures xsi:type="ecore:EReference" name="tuple" ordered="false" lowerBound="1" eType="#//OCL/TupleExp" eOpposite="#//OCL/TupleExp/tuplePart"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="MapExp" eSuperTypes="#//OCL/OclExpression"> <eStructuralFeatures xsi:type="ecore:EReference" name="elements" upperBound="-1" eType="#//OCL/MapElement" containment="true" eOpposite="#//OCL/MapElement/map"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="MapElement" eSuperTypes="#//ATL/LocatedElement"> <eStructuralFeatures xsi:type="ecore:EReference" name="map" ordered="false" lowerBound="1" eType="#//OCL/MapExp" eOpposite="#//OCL/MapExp/elements"/> <eStructuralFeatures xsi:type="ecore:EReference" name="key" ordered="false" lowerBound="1" eType="#//OCL/OclExpression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="value" ordered="false" lowerBound="1" eType="#//OCL/OclExpression" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="EnumLiteralExp" eSuperTypes="#//OCL/OclExpression"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" ordered="false" unique="false" lowerBound="1" eType="#//PrimitiveTypes/String"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="OclUndefinedExp" eSuperTypes="#//OCL/OclExpression"/> <eClassifiers xsi:type="ecore:EClass" name="PropertyCallExp" abstract="true" eSuperTypes="#//OCL/OclExpression"> <eStructuralFeatures xsi:type="ecore:EReference" name="source" ordered="false" lowerBound="1" eType="#//OCL/OclExpression" containment="true" eOpposite="#//OCL/OclExpression/appliedProperty"/> <eStructuralFeatures xsi:type="ecore:EReference" name="usedFeature" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EObject"/> <eStructuralFeatures xsi:type="ecore:EReference" name="subtypeFeatures" upperBound="-1" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EObject"/> <eStructuralFeatures xsi:type="ecore:EReference" name="receptorType" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="isStaticCall" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean" defaultValueLiteral="false"/> <eStructuralFeatures xsi:type="ecore:EReference" name="staticResolver" lowerBound="1" eType="#//ATL/Callable"/> <eStructuralFeatures xsi:type="ecore:EReference" name="dynamicResolvers" upperBound="-1" eType="#//ATL/ContextHelper" eOpposite="#//ATL/ContextHelper/polymorphicCalledBy"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="NavigationOrAttributeCallExp" eSuperTypes="#//OCL/PropertyCallExp"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" ordered="false" unique="false" lowerBound="1" eType="#//PrimitiveTypes/String"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="OperationCallExp" eSuperTypes="#//OCL/PropertyCallExp"> <eStructuralFeatures xsi:type="ecore:EReference" name="arguments" upperBound="-1" eType="#//OCL/OclExpression" containment="true" eOpposite="#//OCL/OclExpression/parentOperation"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="operationName" ordered="false" unique="false" lowerBound="1" eType="#//PrimitiveTypes/String"/> <eStructuralFeatures xsi:type="ecore:EReference" name="resolveTempResolvedBy" upperBound="-1" eType="#//OCL/ResolveTempResolution" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="OperatorCallExp" eSuperTypes="#//OCL/OperationCallExp"/> <eClassifiers xsi:type="ecore:EClass" name="CollectionOperationCallExp" eSuperTypes="#//OCL/OperationCallExp"/> <eClassifiers xsi:type="ecore:EClass" name="LoopExp" abstract="true" eSuperTypes="#//OCL/PropertyCallExp"> <eStructuralFeatures xsi:type="ecore:EReference" name="body" ordered="false" lowerBound="1" eType="#//OCL/OclExpression" containment="true" eOpposite="#//OCL/OclExpression/loopExp"/> <eStructuralFeatures xsi:type="ecore:EReference" name="iterators" ordered="false" lowerBound="1" upperBound="-1" eType="#//OCL/Iterator" containment="true" eOpposite="#//OCL/Iterator/loopExpr"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="IterateExp" eSuperTypes="#//OCL/LoopExp"> <eStructuralFeatures xsi:type="ecore:EReference" name="result" ordered="false" lowerBound="1" eType="#//OCL/VariableDeclaration" containment="true" eOpposite="#//OCL/VariableDeclaration/baseExp"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="IteratorExp" eSuperTypes="#//OCL/LoopExp"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" ordered="false" unique="false" lowerBound="1" eType="#//PrimitiveTypes/String"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="LetExp" eSuperTypes="#//OCL/OclExpression"> <eStructuralFeatures xsi:type="ecore:EReference" name="variable" ordered="false" lowerBound="1" eType="#//OCL/VariableDeclaration" containment="true" eOpposite="#//OCL/VariableDeclaration/letExp"/> <eStructuralFeatures xsi:type="ecore:EReference" name="in_" ordered="false" lowerBound="1" eType="#//OCL/OclExpression" containment="true" eOpposite="#//OCL/OclExpression/letExp"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="IfExp" eSuperTypes="#//OCL/OclExpression"> <eStructuralFeatures xsi:type="ecore:EReference" name="thenExpression" ordered="false" lowerBound="1" eType="#//OCL/OclExpression" containment="true" eOpposite="#//OCL/OclExpression/ifExp2"/> <eStructuralFeatures xsi:type="ecore:EReference" name="condition" ordered="false" lowerBound="1" eType="#//OCL/OclExpression" containment="true" eOpposite="#//OCL/OclExpression/ifExp1"/> <eStructuralFeatures xsi:type="ecore:EReference" name="elseExpression" ordered="false" lowerBound="1" eType="#//OCL/OclExpression" containment="true" eOpposite="#//OCL/OclExpression/ifExp3"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="VariableDeclaration" eSuperTypes="#//ATL/LocatedElement #//OCL/TypedElement"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="id" ordered="false" unique="false" eType="#//PrimitiveTypes/String"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="varName" ordered="false" unique="false" lowerBound="1" eType="#//PrimitiveTypes/String"/> <eStructuralFeatures xsi:type="ecore:EReference" name="type" ordered="false" eType="#//OCL/OclType" containment="true" eOpposite="#//OCL/OclType/variableDeclaration"/> <eStructuralFeatures xsi:type="ecore:EReference" name="initExpression" ordered="false" eType="#//OCL/OclExpression" containment="true" eOpposite="#//OCL/OclExpression/initializedVariable"/> <eStructuralFeatures xsi:type="ecore:EReference" name="letExp" ordered="false" eType="#//OCL/LetExp" eOpposite="#//OCL/LetExp/variable"/> <eStructuralFeatures xsi:type="ecore:EReference" name="baseExp" ordered="false" eType="#//OCL/IterateExp" eOpposite="#//OCL/IterateExp/result"/> <eStructuralFeatures xsi:type="ecore:EReference" name="variableExp" ordered="false" upperBound="-1" eType="#//OCL/VariableExp" eOpposite="#//OCL/VariableExp/referredVariable"/> <eStructuralFeatures xsi:type="ecore:EReference" name="staticType" eType="ecore:EClass ../types.ecore#//Type"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Iterator" eSuperTypes="#//OCL/VariableDeclaration"> <eStructuralFeatures xsi:type="ecore:EReference" name="loopExpr" ordered="false" eType="#//OCL/LoopExp" eOpposite="#//OCL/LoopExp/iterators"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Parameter" eSuperTypes="#//OCL/VariableDeclaration"/> <eClassifiers xsi:type="ecore:EClass" name="CollectionType" eSuperTypes="#//OCL/OclType"> <eStructuralFeatures xsi:type="ecore:EReference" name="elementType" ordered="false" lowerBound="1" eType="#//OCL/OclType" containment="true" eOpposite="#//OCL/OclType/collectionTypes"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="OclType" eSuperTypes="#//OCL/OclExpression"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" ordered="false" unique="false" lowerBound="1" eType="#//PrimitiveTypes/String"/> <eStructuralFeatures xsi:type="ecore:EReference" name="definitions" ordered="false" eType="#//OCL/OclContextDefinition" eOpposite="#//OCL/OclContextDefinition/context_"/> <eStructuralFeatures xsi:type="ecore:EReference" name="oclExpression" ordered="false" eType="#//OCL/OclExpression" eOpposite="#//OCL/OclExpression/type"/> <eStructuralFeatures xsi:type="ecore:EReference" name="operation" ordered="false" eType="#//OCL/Operation" eOpposite="#//OCL/Operation/returnType"/> <eStructuralFeatures xsi:type="ecore:EReference" name="mapType2" ordered="false" eType="#//OCL/MapType" eOpposite="#//OCL/MapType/valueType"/> <eStructuralFeatures xsi:type="ecore:EReference" name="attribute" ordered="false" eType="#//OCL/Attribute" eOpposite="#//OCL/Attribute/type"/> <eStructuralFeatures xsi:type="ecore:EReference" name="mapType" ordered="false" eType="#//OCL/MapType" eOpposite="#//OCL/MapType/keyType"/> <eStructuralFeatures xsi:type="ecore:EReference" name="collectionTypes" ordered="false" eType="#//OCL/CollectionType" eOpposite="#//OCL/CollectionType/elementType"/> <eStructuralFeatures xsi:type="ecore:EReference" name="tupleTypeAttribute" ordered="false" eType="#//OCL/TupleTypeAttribute" eOpposite="#//OCL/TupleTypeAttribute/type"/> <eStructuralFeatures xsi:type="ecore:EReference" name="variableDeclaration" ordered="false" eType="#//OCL/VariableDeclaration" eOpposite="#//OCL/VariableDeclaration/type"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Primitive" abstract="true" eSuperTypes="#//OCL/OclType"/> <eClassifiers xsi:type="ecore:EClass" name="StringType" eSuperTypes="#//OCL/Primitive"/> <eClassifiers xsi:type="ecore:EClass" name="BooleanType" eSuperTypes="#//OCL/Primitive"/> <eClassifiers xsi:type="ecore:EClass" name="NumericType" abstract="true" eSuperTypes="#//OCL/Primitive"/> <eClassifiers xsi:type="ecore:EClass" name="IntegerType" eSuperTypes="#//OCL/NumericType"/> <eClassifiers xsi:type="ecore:EClass" name="RealType" eSuperTypes="#//OCL/NumericType"/> <eClassifiers xsi:type="ecore:EClass" name="BagType" eSuperTypes="#//OCL/CollectionType"/> <eClassifiers xsi:type="ecore:EClass" name="OrderedSetType" eSuperTypes="#//OCL/CollectionType"/> <eClassifiers xsi:type="ecore:EClass" name="SequenceType" eSuperTypes="#//OCL/CollectionType"/> <eClassifiers xsi:type="ecore:EClass" name="SetType" eSuperTypes="#//OCL/CollectionType"/> <eClassifiers xsi:type="ecore:EClass" name="OclAnyType" eSuperTypes="#//OCL/OclType"/> <eClassifiers xsi:type="ecore:EClass" name="TupleType" eSuperTypes="#//OCL/OclType"> <eStructuralFeatures xsi:type="ecore:EReference" name="attributes" upperBound="-1" eType="#//OCL/TupleTypeAttribute" containment="true" eOpposite="#//OCL/TupleTypeAttribute/tupleType"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="TupleTypeAttribute" eSuperTypes="#//ATL/LocatedElement"> <eStructuralFeatures xsi:type="ecore:EReference" name="type" ordered="false" lowerBound="1" eType="#//OCL/OclType" containment="true" eOpposite="#//OCL/OclType/tupleTypeAttribute"/> <eStructuralFeatures xsi:type="ecore:EReference" name="tupleType" ordered="false" lowerBound="1" eType="#//OCL/TupleType" eOpposite="#//OCL/TupleType/attributes"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" ordered="false" unique="false" lowerBound="1" eType="#//PrimitiveTypes/String"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="OclModelElement" eSuperTypes="#//OCL/OclType"> <eStructuralFeatures xsi:type="ecore:EReference" name="model" ordered="false" lowerBound="1" eType="#//OCL/OclModel" eOpposite="#//OCL/OclModel/elements"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="MapType" eSuperTypes="#//OCL/OclType"> <eStructuralFeatures xsi:type="ecore:EReference" name="valueType" ordered="false" lowerBound="1" eType="#//OCL/OclType" containment="true" eOpposite="#//OCL/OclType/mapType2"/> <eStructuralFeatures xsi:type="ecore:EReference" name="keyType" ordered="false" lowerBound="1" eType="#//OCL/OclType" containment="true" eOpposite="#//OCL/OclType/mapType"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="OclFeatureDefinition" eSuperTypes="#//ATL/LocatedElement"> <eStructuralFeatures xsi:type="ecore:EReference" name="feature" ordered="false" lowerBound="1" eType="#//OCL/OclFeature" containment="true" eOpposite="#//OCL/OclFeature/definition"/> <eStructuralFeatures xsi:type="ecore:EReference" name="context_" ordered="false" eType="#//OCL/OclContextDefinition" containment="true" eOpposite="#//OCL/OclContextDefinition/definition"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="OclContextDefinition" eSuperTypes="#//ATL/LocatedElement"> <eStructuralFeatures xsi:type="ecore:EReference" name="definition" ordered="false" lowerBound="1" eType="#//OCL/OclFeatureDefinition" eOpposite="#//OCL/OclFeatureDefinition/context_"/> <eStructuralFeatures xsi:type="ecore:EReference" name="context_" ordered="false" lowerBound="1" eType="#//OCL/OclType" containment="true" eOpposite="#//OCL/OclType/definitions"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="OclFeature" abstract="true" eSuperTypes="#//ATL/LocatedElement"> <eStructuralFeatures xsi:type="ecore:EReference" name="definition" ordered="false" eType="#//OCL/OclFeatureDefinition" eOpposite="#//OCL/OclFeatureDefinition/feature"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Attribute" eSuperTypes="#//OCL/OclFeature"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" ordered="false" unique="false" lowerBound="1" eType="#//PrimitiveTypes/String"/> <eStructuralFeatures xsi:type="ecore:EReference" name="initExpression" ordered="false" lowerBound="1" eType="#//OCL/OclExpression" containment="true" eOpposite="#//OCL/OclExpression/owningAttribute"/> <eStructuralFeatures xsi:type="ecore:EReference" name="type" ordered="false" lowerBound="1" eType="#//OCL/OclType" containment="true" eOpposite="#//OCL/OclType/attribute"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Operation" eSuperTypes="#//OCL/OclFeature"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" ordered="false" unique="false" lowerBound="1" eType="#//PrimitiveTypes/String"/> <eStructuralFeatures xsi:type="ecore:EReference" name="parameters" upperBound="-1" eType="#//OCL/Parameter" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="returnType" ordered="false" lowerBound="1" eType="#//OCL/OclType" containment="true" eOpposite="#//OCL/OclType/operation"/> <eStructuralFeatures xsi:type="ecore:EReference" name="body" ordered="false" lowerBound="1" eType="#//OCL/OclExpression" containment="true" eOpposite="#//OCL/OclExpression/owningOperation"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="OclModel" eSuperTypes="#//ATL/LocatedElement"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" ordered="false" unique="false" lowerBound="1" eType="#//PrimitiveTypes/String"/> <eStructuralFeatures xsi:type="ecore:EReference" name="metamodel" ordered="false" lowerBound="1" eType="#//OCL/OclModel" eOpposite="#//OCL/OclModel/model"/> <eStructuralFeatures xsi:type="ecore:EReference" name="elements" ordered="false" upperBound="-1" eType="#//OCL/OclModelElement" eOpposite="#//OCL/OclModelElement/model"/> <eStructuralFeatures xsi:type="ecore:EReference" name="model" ordered="false" upperBound="-1" eType="#//OCL/OclModel" eOpposite="#//OCL/OclModel/metamodel"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="TypedElement" abstract="true"> <eStructuralFeatures xsi:type="ecore:EReference" name="inferredType" eType="ecore:EClass ../types.ecore#//Type"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ResolveTempResolution" eSuperTypes="#//ATL/RuleResolutionInfo"> <eStructuralFeatures xsi:type="ecore:EReference" name="element" lowerBound="1" eType="#//ATL/OutPatternElement"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="JavaBody" eSuperTypes="#//OCL/OclExpression"/> <eClassifiers xsi:type="ecore:EClass" name="GetAppliedStereotypesBody" eSuperTypes="#//OCL/JavaBody"/> </eSubpackages> <eSubpackages name="PrimitiveTypes" nsURI="http://anatlyzer/atl/ext/PrimitiveTypes" nsPrefix="atl_ext_ptypes"> <eClassifiers xsi:type="ecore:EDataType" name="Boolean" instanceClassName="boolean"/> <eClassifiers xsi:type="ecore:EDataType" name="Double" instanceClassName="double"/> <eClassifiers xsi:type="ecore:EDataType" name="Integer" instanceClassName="int"/> <eClassifiers xsi:type="ecore:EDataType" name="String" instanceClassName="java.lang.String"/> </eSubpackages> <eSubpackages name="OCL2" nsURI="http://anatlyzer/atl/ext/OCL2" nsPrefix="atl_ext_ocl2"> <eClassifiers xsi:type="ecore:EClass" name="SelectByKind" eSuperTypes="#//OCL/CollectionOperationCallExp"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="isExact" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean" defaultValueLiteral="false"/> </eClassifiers> </eSubpackages> </ecore:EPackage>
github:ecore:/data/anatlyzer/anatlyzer/plugins/anatlyzer.atl.typing/model/generated/merged.ecore
ecore
atlext ATL LocatedElement location commentsBefore commentsAfter fileLocation fileObject problems annotations Unit libraries name Library helpers Query body helpers Module isRefining inModels outModels elements ModuleElement Helper query library definition hasContext false isAttribute false inferredReturnType staticReturnType StaticHelper ContextHelper contextType polymorphicCalledBy Rule outPattern actionBlock variables name StaticRule ModuleCallable Callable calledBy callableParameters RuleWithPattern inPattern children superRule isAbstract isRefining isNoDefault MatchedRule LazyRule isUnique CalledRule parameters isEntrypoint isEndpoint InPattern elements filter OutPattern rule dropPattern elements DropPattern outPattern PatternElement InPatternElement mapsTo inPattern models SimpleInPatternElement OutPatternElement outPattern sourceElement bindings model SimpleOutPatternElement reverseBindings ForEachOutPatternElement collection iterator Binding value outPatternElement propertyName isAssignment writtenFeature leftType resolvedBy RuleVariableDeclaration rule LibraryRef unit name ActionBlock rule statements Statement ExpressionStat expression BindingStat source propertyName isAssignment value IfStat condition thenStatements elseStatements ForStat iterator collection statements StringToStringMap java.util.Map$Entry java.util.Map$Entry key value CallableParameter name staticType paramDeclaration RuleResolutionInfo rule allInvolvedRules status RuleResolutionStatus RESOLUTION_UNKNOWN RESOLUTION_UNKNOWN RESOLUTION_CONFIRMED RESOLUTION_CONFIRMED RESOLUTION_DISCARDED RESOLUTION_DISCARDED OCL OclExpression type ifExp3 appliedProperty collection letExp loopExp parentOperation initializedVariable ifExp2 owningOperation ifExp1 owningAttribute implicitlyCasted false noCastedType VariableExp referredVariable SuperExp PrimitiveExp StringExp stringSymbol BooleanExp booleanSymbol NumericExp RealExp realSymbol IntegerExp integerSymbol CollectionExp elements BagExp OrderedSetExp SequenceExp SetExp TupleExp tuplePart TuplePart tuple MapExp elements MapElement map key value EnumLiteralExp name OclUndefinedExp PropertyCallExp source usedFeature subtypeFeatures receptorType isStaticCall false staticResolver dynamicResolvers NavigationOrAttributeCallExp name OperationCallExp arguments operationName resolveTempResolvedBy OperatorCallExp CollectionOperationCallExp LoopExp body iterators IterateExp result IteratorExp name LetExp variable in_ IfExp thenExpression condition elseExpression VariableDeclaration id varName type initExpression letExp baseExp variableExp staticType Iterator loopExpr Parameter CollectionType elementType OclType name definitions oclExpression operation mapType2 attribute mapType collectionTypes tupleTypeAttribute variableDeclaration Primitive StringType BooleanType NumericType IntegerType RealType BagType OrderedSetType SequenceType SetType OclAnyType TupleType attributes TupleTypeAttribute type tupleType name OclModelElement model MapType valueType keyType OclFeatureDefinition feature context_ OclContextDefinition definition context_ OclFeature definition Attribute name initExpression type Operation name parameters returnType body OclModel name metamodel elements model TypedElement inferredType ResolveTempResolution element JavaBody GetAppliedStereotypesBody PrimitiveTypes Boolean boolean boolean Double double double Integer int int String java.lang.String java.lang.String OCL2 SelectByKind isExact false
null
{"directed":true,"nodes":[{"nsPrefix":"atlext","nsURI":"http://anatlyzer/atl/ext","name":"atlext","id":0,"eClass":"EPackage"},{"nsPrefix":"atl_ext_atl","nsURI":"http://anatlyzer/atlext/ATL","name":"ATL","id":1,"eClass":"EPackage"},{"nsPrefix":"atl_ext_ocl","nsURI":"http://anatlyzer/atl/ext/OCL","name":"OCL","id":2,"eClass":"EPackage"},{"nsPrefix":"atl_ext_ptypes","nsURI":"http://anatlyzer/atl/ext/PrimitiveTypes","name":"PrimitiveTypes","id":3,"eClass":"EPackage"},{"nsPrefix":"atl_ext_ocl2","nsURI":"http://anatlyzer/atl/ext/OCL2","name":"OCL2","id":4,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LocatedElement","instanceClass":null,"abstract":true,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Unit","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Library","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Query","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Module","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ModuleElement","instanceClass":null,"abstract":true,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Helper","instanceClass":null,"abstract":true,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StaticHelper","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ContextHelper","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Rule","instanceClass":null,"abstract":true,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StaticRule","instanceClass":null,"abstract":true,"id":15,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ModuleCallable","instanceClass":null,"abstract":true,"id":16,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Callable","instanceClass":null,"abstract":true,"id":17,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RuleWithPattern","instanceClass":null,"abstract":true,"id":18,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MatchedRule","instanceClass":null,"abstract":false,"id":19,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LazyRule","instanceClass":null,"abstract":false,"id":20,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CalledRule","instanceClass":null,"abstract":false,"id":21,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InPattern","instanceClass":null,"abstract":false,"id":22,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OutPattern","instanceClass":null,"abstract":false,"id":23,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DropPattern","instanceClass":null,"abstract":false,"id":24,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PatternElement","instanceClass":null,"abstract":true,"id":25,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InPatternElement","instanceClass":null,"abstract":true,"id":26,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SimpleInPatternElement","instanceClass":null,"abstract":false,"id":27,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OutPatternElement","instanceClass":null,"abstract":true,"id":28,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SimpleOutPatternElement","instanceClass":null,"abstract":false,"id":29,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ForEachOutPatternElement","instanceClass":null,"abstract":false,"id":30,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Binding","instanceClass":null,"abstract":false,"id":31,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RuleVariableDeclaration","instanceClass":null,"abstract":false,"id":32,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LibraryRef","instanceClass":null,"abstract":false,"id":33,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ActionBlock","instanceClass":null,"abstract":false,"id":34,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Statement","instanceClass":null,"abstract":true,"id":35,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExpressionStat","instanceClass":null,"abstract":false,"id":36,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BindingStat","instanceClass":null,"abstract":false,"id":37,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IfStat","instanceClass":null,"abstract":false,"id":38,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ForStat","instanceClass":null,"abstract":false,"id":39,"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":40,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CallableParameter","instanceClass":null,"abstract":false,"id":41,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RuleResolutionInfo","instanceClass":null,"abstract":false,"id":42,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"RuleResolutionStatus","instanceClass":null,"id":43,"serializable":true,"eClass":"EEnum"},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"location","changeable":true,"lowerBound":0,"iD":false,"id":44,"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":"commentsBefore","changeable":true,"lowerBound":0,"iD":false,"id":45,"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":"commentsAfter","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":"fileLocation","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":"fileObject","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":"problems","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":"annotations","changeable":true,"resolveProxies":true,"lowerBound":0,"id":50,"derived":false},{"instanceTypeName":"java.lang.String","defaultValue":null,"instanceClassName":"java.lang.String","name":"String","instanceClass":"java.lang.String","id":51,"serializable":true,"eClass":"EDataType"},{"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"},{"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":"libraries","changeable":true,"resolveProxies":true,"lowerBound":0,"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":"name","changeable":true,"lowerBound":1,"iD":false,"id":60,"derived":false},{"id":61,"eClass":"EGenericType"},{"id":62,"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":"unit","changeable":true,"resolveProxies":true,"lowerBound":1,"id":63,"derived":false},{"id":64,"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":"helpers","changeable":true,"resolveProxies":true,"lowerBound":0,"id":65,"derived":false},{"id":66,"eClass":"EGenericType"},{"id":67,"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":"library","changeable":true,"resolveProxies":true,"lowerBound":0,"id":68,"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":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":"helpers","changeable":true,"resolveProxies":true,"lowerBound":0,"id":70,"derived":false},{"id":71,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OclExpression","instanceClass":null,"abstract":true,"id":72,"interface":false,"eClass":"EClass"},{"id":73,"eClass":"EGenericType"},{"id":74,"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":"query","changeable":true,"resolveProxies":true,"lowerBound":0,"id":75,"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":"isRefining","changeable":true,"lowerBound":1,"iD":false,"id":76,"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":"inModels","changeable":true,"resolveProxies":true,"lowerBound":1,"id":77,"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":"outModels","changeable":true,"resolveProxies":true,"lowerBound":1,"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":"elements","changeable":true,"resolveProxies":true,"lowerBound":0,"id":79,"derived":false},{"id":80,"eClass":"EGenericType"},{"instanceTypeName":"boolean","defaultValue":false,"instanceClassName":"boolean","name":"Boolean","instanceClass":"boolean","id":81,"serializable":true,"eClass":"EDataType"},{"id":82,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OclModel","instanceClass":null,"abstract":false,"id":83,"interface":false,"eClass":"EClass"},{"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":true,"unsettable":false,"transient":false,"unique":true,"name":"definition","changeable":true,"resolveProxies":true,"lowerBound":1,"id":88,"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":"hasContext","changeable":true,"lowerBound":1,"iD":false,"id":89,"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":"isAttribute","changeable":true,"lowerBound":1,"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":false,"unsettable":false,"transient":false,"unique":true,"name":"inferredReturnType","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":"staticReturnType","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"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OclFeatureDefinition","instanceClass":null,"abstract":false,"id":97,"interface":false,"eClass":"EClass"},{"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"},{"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":"contextType","changeable":true,"resolveProxies":true,"lowerBound":1,"id":105,"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":"polymorphicCalledBy","changeable":true,"resolveProxies":true,"lowerBound":0,"id":106,"derived":false},{"id":107,"eClass":"EGenericType"},{"id":108,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PropertyCallExp","instanceClass":null,"abstract":true,"id":109,"interface":false,"eClass":"EClass"},{"id":110,"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":"dynamicResolvers","changeable":true,"resolveProxies":true,"lowerBound":0,"id":111,"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":"outPattern","changeable":true,"resolveProxies":true,"lowerBound":0,"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":"actionBlock","changeable":true,"resolveProxies":true,"lowerBound":0,"id":113,"derived":false},{"container":false,"ordered":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":114,"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":115,"derived":false},{"id":116,"eClass":"EGenericType"},{"id":117,"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":"rule","changeable":true,"resolveProxies":true,"lowerBound":1,"id":118,"derived":false},{"id":119,"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":"rule","changeable":true,"resolveProxies":true,"lowerBound":1,"id":120,"derived":false},{"id":121,"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":"rule","changeable":true,"resolveProxies":true,"lowerBound":1,"id":122,"derived":false},{"id":123,"eClass":"EGenericType"},{"id":124,"eClass":"EGenericType"},{"id":125,"eClass":"EGenericType"},{"id":126,"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":"calledBy","changeable":true,"resolveProxies":true,"lowerBound":0,"id":127,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"callableParameters","changeable":true,"resolveProxies":true,"lowerBound":0,"id":128,"derived":false},{"id":129,"eClass":"EGenericType"},{"id":130,"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":"inPattern","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":false,"unsettable":false,"transient":false,"unique":true,"name":"children","changeable":true,"resolveProxies":true,"lowerBound":0,"id":132,"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":"superRule","changeable":true,"resolveProxies":true,"lowerBound":0,"id":133,"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":"isAbstract","changeable":true,"lowerBound":1,"iD":false,"id":134,"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":"isRefining","changeable":true,"lowerBound":1,"iD":false,"id":135,"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":"isNoDefault","changeable":true,"lowerBound":1,"iD":false,"id":136,"derived":false},{"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":false,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"isUnique","changeable":true,"lowerBound":1,"iD":false,"id":145,"derived":false},{"id":146,"eClass":"EGenericType"},{"id":147,"eClass":"EGenericType"},{"id":148,"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":"parameters","changeable":true,"resolveProxies":true,"lowerBound":0,"id":149,"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":"isEntrypoint","changeable":true,"lowerBound":1,"iD":false,"id":150,"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":"isEndpoint","changeable":true,"lowerBound":1,"iD":false,"id":151,"derived":false},{"id":152,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Parameter","instanceClass":null,"abstract":false,"id":153,"interface":false,"eClass":"EClass"},{"id":154,"eClass":"EGenericType"},{"id":155,"eClass":"EGenericType"},{"id":156,"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":"elements","changeable":true,"resolveProxies":true,"lowerBound":1,"id":157,"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":"filter","changeable":true,"resolveProxies":true,"lowerBound":0,"id":158,"derived":false},{"id":159,"eClass":"EGenericType"},{"id":160,"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":"inPattern","changeable":true,"resolveProxies":true,"lowerBound":1,"id":161,"derived":false},{"id":162,"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":"dropPattern","changeable":true,"resolveProxies":true,"lowerBound":0,"id":163,"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":"elements","changeable":true,"resolveProxies":true,"lowerBound":1,"id":164,"derived":false},{"id":165,"eClass":"EGenericType"},{"id":166,"eClass":"EGenericType"},{"id":167,"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":"outPattern","changeable":true,"resolveProxies":true,"lowerBound":1,"id":168,"derived":false},{"id":169,"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":"outPattern","changeable":true,"resolveProxies":true,"lowerBound":1,"id":170,"derived":false},{"id":171,"eClass":"EGenericType"},{"id":172,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"VariableDeclaration","instanceClass":null,"abstract":false,"id":173,"interface":false,"eClass":"EClass"},{"id":174,"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":"mapsTo","changeable":true,"resolveProxies":true,"lowerBound":1,"id":175,"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":"models","changeable":true,"resolveProxies":true,"lowerBound":0,"id":176,"derived":false},{"id":177,"eClass":"EGenericType"},{"id":178,"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":"sourceElement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":179,"derived":false},{"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":"bindings","changeable":true,"resolveProxies":true,"lowerBound":0,"id":183,"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":"model","changeable":true,"resolveProxies":true,"lowerBound":0,"id":184,"derived":false},{"id":185,"eClass":"EGenericType"},{"id":186,"eClass":"EGenericType"},{"id":187,"eClass":"EGenericType"},{"id":188,"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":"outPatternElement","changeable":true,"resolveProxies":true,"lowerBound":1,"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":"reverseBindings","changeable":true,"resolveProxies":true,"lowerBound":0,"id":191,"derived":false},{"id":192,"eClass":"EGenericType"},{"id":193,"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":"collection","changeable":true,"resolveProxies":true,"lowerBound":1,"id":194,"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":"iterator","changeable":true,"resolveProxies":true,"lowerBound":1,"id":195,"derived":false},{"id":196,"eClass":"EGenericType"},{"id":197,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Iterator","instanceClass":null,"abstract":false,"id":198,"interface":false,"eClass":"EClass"},{"id":199,"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":200,"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":"propertyName","changeable":true,"lowerBound":1,"iD":false,"id":201,"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":"isAssignment","changeable":true,"lowerBound":1,"iD":false,"id":202,"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":"writtenFeature","changeable":true,"resolveProxies":true,"lowerBound":1,"id":203,"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":"leftType","changeable":true,"resolveProxies":true,"lowerBound":1,"id":204,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"resolvedBy","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"},{"id":210,"eClass":"EGenericType"},{"id":211,"eClass":"EGenericType"},{"id":212,"eClass":"EGenericType"},{"id":213,"eClass":"EGenericType"},{"id":214,"eClass":"EGenericType"},{"id":215,"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":216,"derived":false},{"id":217,"eClass":"EGenericType"},{"id":218,"eClass":"EGenericType"},{"id":219,"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":220,"derived":false},{"id":221,"eClass":"EGenericType"},{"id":222,"eClass":"EGenericType"},{"id":223,"eClass":"EGenericType"},{"id":224,"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":225,"derived":false},{"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":"source","changeable":true,"resolveProxies":true,"lowerBound":1,"id":228,"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":"propertyName","changeable":true,"lowerBound":1,"iD":false,"id":229,"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":"isAssignment","changeable":true,"lowerBound":1,"iD":false,"id":230,"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":231,"derived":false},{"id":232,"eClass":"EGenericType"},{"id":233,"eClass":"EGenericType"},{"id":234,"eClass":"EGenericType"},{"id":235,"eClass":"EGenericType"},{"id":236,"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":"condition","changeable":true,"resolveProxies":true,"lowerBound":1,"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":"thenStatements","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":"elseStatements","changeable":true,"resolveProxies":true,"lowerBound":0,"id":239,"derived":false},{"id":240,"eClass":"EGenericType"},{"id":241,"eClass":"EGenericType"},{"id":242,"eClass":"EGenericType"},{"id":243,"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":"iterator","changeable":true,"resolveProxies":true,"lowerBound":1,"id":244,"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":"collection","changeable":true,"resolveProxies":true,"lowerBound":1,"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":"statements","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"},{"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":251,"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":252,"derived":false},{"id":253,"eClass":"EGenericType"},{"id":254,"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":255,"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":"staticType","changeable":true,"resolveProxies":true,"lowerBound":1,"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":"paramDeclaration","changeable":true,"resolveProxies":true,"lowerBound":0,"id":257,"derived":false},{"id":258,"eClass":"EGenericType"},{"id":259,"eClass":"EGenericType"},{"id":260,"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":"rule","changeable":true,"resolveProxies":true,"lowerBound":1,"id":261,"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":"allInvolvedRules","changeable":true,"resolveProxies":true,"lowerBound":1,"id":262,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"status","changeable":true,"lowerBound":1,"iD":false,"id":263,"derived":false},{"id":264,"eClass":"EGenericType"},{"id":265,"eClass":"EGenericType"},{"id":266,"eClass":"EGenericType"},{"name":"RESOLUTION_UNKNOWN","id":267,"value":0,"literal":"RESOLUTION_UNKNOWN","eClass":"EEnumLiteral"},{"name":"RESOLUTION_CONFIRMED","id":268,"value":1,"literal":"RESOLUTION_CONFIRMED","eClass":"EEnumLiteral"},{"name":"RESOLUTION_DISCARDED","id":269,"value":2,"literal":"RESOLUTION_DISCARDED","eClass":"EEnumLiteral"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"VariableExp","instanceClass":null,"abstract":false,"id":270,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SuperExp","instanceClass":null,"abstract":false,"id":271,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PrimitiveExp","instanceClass":null,"abstract":true,"id":272,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StringExp","instanceClass":null,"abstract":false,"id":273,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BooleanExp","instanceClass":null,"abstract":false,"id":274,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NumericExp","instanceClass":null,"abstract":true,"id":275,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RealExp","instanceClass":null,"abstract":false,"id":276,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IntegerExp","instanceClass":null,"abstract":false,"id":277,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CollectionExp","instanceClass":null,"abstract":true,"id":278,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BagExp","instanceClass":null,"abstract":false,"id":279,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OrderedSetExp","instanceClass":null,"abstract":false,"id":280,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SequenceExp","instanceClass":null,"abstract":false,"id":281,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SetExp","instanceClass":null,"abstract":false,"id":282,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TupleExp","instanceClass":null,"abstract":false,"id":283,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TuplePart","instanceClass":null,"abstract":false,"id":284,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MapExp","instanceClass":null,"abstract":false,"id":285,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MapElement","instanceClass":null,"abstract":false,"id":286,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EnumLiteralExp","instanceClass":null,"abstract":false,"id":287,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OclUndefinedExp","instanceClass":null,"abstract":false,"id":288,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NavigationOrAttributeCallExp","instanceClass":null,"abstract":false,"id":289,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OperationCallExp","instanceClass":null,"abstract":false,"id":290,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OperatorCallExp","instanceClass":null,"abstract":false,"id":291,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CollectionOperationCallExp","instanceClass":null,"abstract":false,"id":292,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LoopExp","instanceClass":null,"abstract":true,"id":293,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IterateExp","instanceClass":null,"abstract":false,"id":294,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IteratorExp","instanceClass":null,"abstract":false,"id":295,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LetExp","instanceClass":null,"abstract":false,"id":296,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IfExp","instanceClass":null,"abstract":false,"id":297,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CollectionType","instanceClass":null,"abstract":false,"id":298,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OclType","instanceClass":null,"abstract":false,"id":299,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Primitive","instanceClass":null,"abstract":true,"id":300,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StringType","instanceClass":null,"abstract":false,"id":301,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BooleanType","instanceClass":null,"abstract":false,"id":302,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NumericType","instanceClass":null,"abstract":true,"id":303,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IntegerType","instanceClass":null,"abstract":false,"id":304,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RealType","instanceClass":null,"abstract":false,"id":305,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BagType","instanceClass":null,"abstract":false,"id":306,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OrderedSetType","instanceClass":null,"abstract":false,"id":307,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SequenceType","instanceClass":null,"abstract":false,"id":308,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SetType","instanceClass":null,"abstract":false,"id":309,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OclAnyType","instanceClass":null,"abstract":false,"id":310,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TupleType","instanceClass":null,"abstract":false,"id":311,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TupleTypeAttribute","instanceClass":null,"abstract":false,"id":312,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OclModelElement","instanceClass":null,"abstract":false,"id":313,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MapType","instanceClass":null,"abstract":false,"id":314,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OclContextDefinition","instanceClass":null,"abstract":false,"id":315,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OclFeature","instanceClass":null,"abstract":true,"id":316,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Attribute","instanceClass":null,"abstract":false,"id":317,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Operation","instanceClass":null,"abstract":false,"id":318,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TypedElement","instanceClass":null,"abstract":true,"id":319,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ResolveTempResolution","instanceClass":null,"abstract":false,"id":320,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"JavaBody","instanceClass":null,"abstract":false,"id":321,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"GetAppliedStereotypesBody","instanceClass":null,"abstract":false,"id":322,"interface":false,"eClass":"EClass"},{"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":323,"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":"ifExp3","changeable":true,"resolveProxies":true,"lowerBound":0,"id":324,"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":"appliedProperty","changeable":true,"resolveProxies":true,"lowerBound":0,"id":325,"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":"collection","changeable":true,"resolveProxies":true,"lowerBound":0,"id":326,"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":"letExp","changeable":true,"resolveProxies":true,"lowerBound":0,"id":327,"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":"loopExp","changeable":true,"resolveProxies":true,"lowerBound":0,"id":328,"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":"parentOperation","changeable":true,"resolveProxies":true,"lowerBound":0,"id":329,"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":"initializedVariable","changeable":true,"resolveProxies":true,"lowerBound":0,"id":330,"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":"ifExp2","changeable":true,"resolveProxies":true,"lowerBound":0,"id":331,"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":"owningOperation","changeable":true,"resolveProxies":true,"lowerBound":0,"id":332,"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":"ifExp1","changeable":true,"resolveProxies":true,"lowerBound":0,"id":333,"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":"owningAttribute","changeable":true,"resolveProxies":true,"lowerBound":0,"id":334,"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":"implicitlyCasted","changeable":true,"lowerBound":0,"iD":false,"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":"noCastedType","changeable":true,"resolveProxies":true,"lowerBound":0,"id":336,"derived":false},{"id":337,"eClass":"EGenericType"},{"id":338,"eClass":"EGenericType"},{"id":339,"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":"oclExpression","changeable":true,"resolveProxies":true,"lowerBound":0,"id":340,"derived":false},{"id":341,"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":342,"derived":false},{"id":343,"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":"source","changeable":true,"resolveProxies":true,"lowerBound":1,"id":344,"derived":false},{"id":345,"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":346,"derived":false},{"id":347,"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":"in_","changeable":true,"resolveProxies":true,"lowerBound":1,"id":348,"derived":false},{"id":349,"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":350,"derived":false},{"id":351,"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":"arguments","changeable":true,"resolveProxies":true,"lowerBound":0,"id":352,"derived":false},{"id":353,"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":"initExpression","changeable":true,"resolveProxies":true,"lowerBound":0,"id":354,"derived":false},{"id":355,"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":"thenExpression","changeable":true,"resolveProxies":true,"lowerBound":1,"id":356,"derived":false},{"id":357,"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":358,"derived":false},{"id":359,"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":"condition","changeable":true,"resolveProxies":true,"lowerBound":1,"id":360,"derived":false},{"id":361,"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":"initExpression","changeable":true,"resolveProxies":true,"lowerBound":1,"id":362,"derived":false},{"id":363,"eClass":"EGenericType"},{"id":364,"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":"referredVariable","changeable":true,"resolveProxies":true,"lowerBound":1,"id":365,"derived":false},{"id":366,"eClass":"EGenericType"},{"id":367,"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":"variableExp","changeable":true,"resolveProxies":true,"lowerBound":0,"id":368,"derived":false},{"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":false,"name":"stringSymbol","changeable":true,"lowerBound":1,"iD":false,"id":371,"derived":false},{"id":372,"eClass":"EGenericType"},{"id":373,"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":"booleanSymbol","changeable":true,"lowerBound":1,"iD":false,"id":374,"derived":false},{"id":375,"eClass":"EGenericType"},{"id":376,"eClass":"EGenericType"},{"id":377,"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":"realSymbol","changeable":true,"lowerBound":1,"iD":false,"id":378,"derived":false},{"id":379,"eClass":"EGenericType"},{"instanceTypeName":"double","defaultValue":0.0,"instanceClassName":"double","name":"Double","instanceClass":"double","id":380,"serializable":true,"eClass":"EDataType"},{"id":381,"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":"integerSymbol","changeable":true,"lowerBound":1,"iD":false,"id":382,"derived":false},{"id":383,"eClass":"EGenericType"},{"instanceTypeName":"int","defaultValue":0,"instanceClassName":"int","name":"Integer","instanceClass":"int","id":384,"serializable":true,"eClass":"EDataType"},{"id":385,"eClass":"EGenericType"},{"id":386,"eClass":"EGenericType"},{"id":387,"eClass":"EGenericType"},{"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":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"tuplePart","changeable":true,"resolveProxies":true,"lowerBound":0,"id":392,"derived":false},{"id":393,"eClass":"EGenericType"},{"id":394,"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":"tuple","changeable":true,"resolveProxies":true,"lowerBound":1,"id":395,"derived":false},{"id":396,"eClass":"EGenericType"},{"id":397,"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":398,"derived":false},{"id":399,"eClass":"EGenericType"},{"id":400,"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":"map","changeable":true,"resolveProxies":true,"lowerBound":1,"id":401,"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":"key","changeable":true,"resolveProxies":true,"lowerBound":1,"id":402,"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":403,"derived":false},{"id":404,"eClass":"EGenericType"},{"id":405,"eClass":"EGenericType"},{"id":406,"eClass":"EGenericType"},{"id":407,"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":408,"derived":false},{"id":409,"eClass":"EGenericType"},{"id":410,"eClass":"EGenericType"},{"id":411,"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":"usedFeature","changeable":true,"resolveProxies":true,"lowerBound":0,"id":412,"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":"subtypeFeatures","changeable":true,"resolveProxies":true,"lowerBound":0,"id":413,"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":"receptorType","changeable":true,"resolveProxies":true,"lowerBound":0,"id":414,"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":"isStaticCall","changeable":true,"lowerBound":1,"iD":false,"id":415,"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":"staticResolver","changeable":true,"resolveProxies":true,"lowerBound":1,"id":416,"derived":false},{"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":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":425,"derived":false},{"id":426,"eClass":"EGenericType"},{"id":427,"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":"operationName","changeable":true,"lowerBound":1,"iD":false,"id":428,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"resolveTempResolvedBy","changeable":true,"resolveProxies":true,"lowerBound":0,"id":429,"derived":false},{"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":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"iterators","changeable":true,"resolveProxies":true,"lowerBound":1,"id":436,"derived":false},{"id":437,"eClass":"EGenericType"},{"id":438,"eClass":"EGenericType"},{"id":439,"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":"loopExpr","changeable":true,"resolveProxies":true,"lowerBound":0,"id":440,"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":"result","changeable":true,"resolveProxies":true,"lowerBound":1,"id":441,"derived":false},{"id":442,"eClass":"EGenericType"},{"id":443,"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":"baseExp","changeable":true,"resolveProxies":true,"lowerBound":0,"id":444,"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":445,"derived":false},{"id":446,"eClass":"EGenericType"},{"id":447,"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":"variable","changeable":true,"resolveProxies":true,"lowerBound":1,"id":448,"derived":false},{"id":449,"eClass":"EGenericType"},{"id":450,"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":"letExp","changeable":true,"resolveProxies":true,"lowerBound":0,"id":451,"derived":false},{"id":452,"eClass":"EGenericType"},{"id":453,"eClass":"EGenericType"},{"id":454,"eClass":"EGenericType"},{"id":455,"eClass":"EGenericType"},{"id":456,"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":"id","changeable":true,"lowerBound":0,"iD":false,"id":457,"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":"varName","changeable":true,"lowerBound":1,"iD":false,"id":458,"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":459,"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":"staticType","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"},{"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":"variableDeclaration","changeable":true,"resolveProxies":true,"lowerBound":0,"id":466,"derived":false},{"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"},{"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":"elementType","changeable":true,"resolveProxies":true,"lowerBound":1,"id":475,"derived":false},{"id":476,"eClass":"EGenericType"},{"id":477,"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":"collectionTypes","changeable":true,"resolveProxies":true,"lowerBound":0,"id":478,"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":479,"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":"definitions","changeable":true,"resolveProxies":true,"lowerBound":0,"id":480,"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":"operation","changeable":true,"resolveProxies":true,"lowerBound":0,"id":481,"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":"mapType2","changeable":true,"resolveProxies":true,"lowerBound":0,"id":482,"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":"attribute","changeable":true,"resolveProxies":true,"lowerBound":0,"id":483,"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":"mapType","changeable":true,"resolveProxies":true,"lowerBound":0,"id":484,"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":"tupleTypeAttribute","changeable":true,"resolveProxies":true,"lowerBound":0,"id":485,"derived":false},{"id":486,"eClass":"EGenericType"},{"id":487,"eClass":"EGenericType"},{"id":488,"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":"context_","changeable":true,"resolveProxies":true,"lowerBound":1,"id":489,"derived":false},{"id":490,"eClass":"EGenericType"},{"id":491,"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":"returnType","changeable":true,"resolveProxies":true,"lowerBound":1,"id":492,"derived":false},{"id":493,"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":"valueType","changeable":true,"resolveProxies":true,"lowerBound":1,"id":494,"derived":false},{"id":495,"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":496,"derived":false},{"id":497,"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":"keyType","changeable":true,"resolveProxies":true,"lowerBound":1,"id":498,"derived":false},{"id":499,"eClass":"EGenericType"},{"id":500,"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":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"},{"id":510,"eClass":"EGenericType"},{"id":511,"eClass":"EGenericType"},{"id":512,"eClass":"EGenericType"},{"id":513,"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":"attributes","changeable":true,"resolveProxies":true,"lowerBound":0,"id":514,"derived":false},{"id":515,"eClass":"EGenericType"},{"id":516,"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":"tupleType","changeable":true,"resolveProxies":true,"lowerBound":1,"id":517,"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":518,"derived":false},{"id":519,"eClass":"EGenericType"},{"id":520,"eClass":"EGenericType"},{"id":521,"eClass":"EGenericType"},{"id":522,"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":"model","changeable":true,"resolveProxies":true,"lowerBound":1,"id":523,"derived":false},{"id":524,"eClass":"EGenericType"},{"id":525,"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":"elements","changeable":true,"resolveProxies":true,"lowerBound":0,"id":526,"derived":false},{"id":527,"eClass":"EGenericType"},{"id":528,"eClass":"EGenericType"},{"id":529,"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":"feature","changeable":true,"resolveProxies":true,"lowerBound":1,"id":530,"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":"context_","changeable":true,"resolveProxies":true,"lowerBound":0,"id":531,"derived":false},{"id":532,"eClass":"EGenericType"},{"id":533,"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":"definition","changeable":true,"resolveProxies":true,"lowerBound":0,"id":534,"derived":false},{"id":535,"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":"definition","changeable":true,"resolveProxies":true,"lowerBound":1,"id":536,"derived":false},{"id":537,"eClass":"EGenericType"},{"id":538,"eClass":"EGenericType"},{"id":539,"eClass":"EGenericType"},{"id":540,"eClass":"EGenericType"},{"id":541,"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":542,"derived":false},{"id":543,"eClass":"EGenericType"},{"id":544,"eClass":"EGenericType"},{"id":545,"eClass":"EGenericType"},{"id":546,"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":547,"derived":false},{"container":false,"ordered":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":548,"derived":false},{"id":549,"eClass":"EGenericType"},{"id":550,"eClass":"EGenericType"},{"id":551,"eClass":"EGenericType"},{"id":552,"eClass":"EGenericType"},{"id":553,"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":554,"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":"metamodel","changeable":true,"resolveProxies":true,"lowerBound":1,"id":555,"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":"model","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"},{"id":561,"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":"inferredType","changeable":true,"resolveProxies":true,"lowerBound":0,"id":562,"derived":false},{"id":563,"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":564,"derived":false},{"id":565,"eClass":"EGenericType"},{"id":566,"eClass":"EGenericType"},{"id":567,"eClass":"EGenericType"},{"id":568,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SelectByKind","instanceClass":null,"abstract":false,"id":569,"interface":false,"eClass":"EClass"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"false","unsettable":false,"transient":false,"unique":true,"name":"isExact","changeable":true,"lowerBound":1,"iD":false,"id":570,"derived":false},{"id":571,"eClass":"EGenericType"},{"id":572,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":0,"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":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":1,"target":25},{"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":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":0},{"source":5,"target":1},{"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":5,"target":50},{"source":44,"target":51},{"source":44,"target":52},{"source":44,"target":5},{"source":52,"target":51},{"source":45,"target":51},{"source":45,"target":53},{"source":45,"target":5},{"source":53,"target":51},{"source":46,"target":51},{"source":46,"target":54},{"source":46,"target":5},{"source":54,"target":51},{"source":47,"target":55},{"source":47,"target":5},{"source":48,"target":56},{"source":48,"target":5},{"source":49,"target":57},{"source":49,"target":5},{"source":50,"target":40},{"source":50,"target":58},{"source":50,"target":5},{"source":58,"target":40},{"source":6,"target":1},{"source":6,"target":5},{"source":6,"target":59},{"source":6,"target":60},{"source":6,"target":61},{"source":59,"target":33},{"source":59,"target":62},{"source":59,"target":6},{"source":59,"target":63},{"source":62,"target":33},{"source":60,"target":51},{"source":60,"target":64},{"source":60,"target":6},{"source":64,"target":51},{"source":61,"target":5},{"source":7,"target":1},{"source":7,"target":6},{"source":7,"target":65},{"source":7,"target":66},{"source":65,"target":11},{"source":65,"target":67},{"source":65,"target":7},{"source":65,"target":68},{"source":67,"target":11},{"source":66,"target":6},{"source":8,"target":1},{"source":8,"target":6},{"source":8,"target":69},{"source":8,"target":70},{"source":8,"target":71},{"source":69,"target":72},{"source":69,"target":73},{"source":69,"target":8},{"source":73,"target":72},{"source":70,"target":11},{"source":70,"target":74},{"source":70,"target":8},{"source":70,"target":75},{"source":74,"target":11},{"source":71,"target":6},{"source":9,"target":1},{"source":9,"target":6},{"source":9,"target":76},{"source":9,"target":77},{"source":9,"target":78},{"source":9,"target":79},{"source":9,"target":80},{"source":76,"target":81},{"source":76,"target":82},{"source":76,"target":9},{"source":82,"target":81},{"source":77,"target":83},{"source":77,"target":84},{"source":77,"target":9},{"source":84,"target":83},{"source":78,"target":83},{"source":78,"target":85},{"source":78,"target":9},{"source":85,"target":83},{"source":79,"target":10},{"source":79,"target":86},{"source":79,"target":9},{"source":86,"target":10},{"source":80,"target":6},{"source":10,"target":1},{"source":10,"target":5},{"source":10,"target":87},{"source":87,"target":5},{"source":11,"target":1},{"source":11,"target":10},{"source":11,"target":17},{"source":11,"target":75},{"source":11,"target":68},{"source":11,"target":88},{"source":11,"target":89},{"source":11,"target":90},{"source":11,"target":91},{"source":11,"target":92},{"source":11,"target":93},{"source":11,"target":94},{"source":75,"target":8},{"source":75,"target":95},{"source":75,"target":11},{"source":75,"target":70},{"source":95,"target":8},{"source":68,"target":7},{"source":68,"target":96},{"source":68,"target":11},{"source":68,"target":65},{"source":96,"target":7},{"source":88,"target":97},{"source":88,"target":98},{"source":88,"target":11},{"source":98,"target":97},{"source":89,"target":99},{"source":89,"target":11},{"source":90,"target":100},{"source":90,"target":11},{"source":91,"target":101},{"source":91,"target":11},{"source":92,"target":102},{"source":92,"target":11},{"source":93,"target":10},{"source":94,"target":17},{"source":12,"target":1},{"source":12,"target":11},{"source":12,"target":16},{"source":12,"target":103},{"source":12,"target":104},{"source":103,"target":11},{"source":104,"target":16},{"source":13,"target":1},{"source":13,"target":11},{"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":110},{"source":106,"target":13},{"source":106,"target":111},{"source":110,"target":109},{"source":107,"target":11},{"source":14,"target":1},{"source":14,"target":10},{"source":14,"target":112},{"source":14,"target":113},{"source":14,"target":114},{"source":14,"target":115},{"source":14,"target":116},{"source":112,"target":23},{"source":112,"target":117},{"source":112,"target":14},{"source":112,"target":118},{"source":117,"target":23},{"source":113,"target":34},{"source":113,"target":119},{"source":113,"target":14},{"source":113,"target":120},{"source":119,"target":34},{"source":114,"target":32},{"source":114,"target":121},{"source":114,"target":14},{"source":114,"target":122},{"source":121,"target":32},{"source":115,"target":51},{"source":115,"target":123},{"source":115,"target":14},{"source":123,"target":51},{"source":116,"target":10},{"source":15,"target":1},{"source":15,"target":16},{"source":15,"target":14},{"source":15,"target":124},{"source":15,"target":125},{"source":124,"target":16},{"source":125,"target":14},{"source":16,"target":1},{"source":16,"target":17},{"source":16,"target":126},{"source":126,"target":17},{"source":17,"target":1},{"source":17,"target":127},{"source":17,"target":128},{"source":127,"target":109},{"source":127,"target":129},{"source":127,"target":17},{"source":129,"target":109},{"source":128,"target":41},{"source":128,"target":130},{"source":128,"target":17},{"source":130,"target":41},{"source":18,"target":1},{"source":18,"target":14},{"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":18,"target":137},{"source":131,"target":22},{"source":131,"target":138},{"source":131,"target":18},{"source":138,"target":22},{"source":132,"target":18},{"source":132,"target":139},{"source":132,"target":18},{"source":132,"target":133},{"source":139,"target":18},{"source":133,"target":18},{"source":133,"target":140},{"source":133,"target":18},{"source":133,"target":132},{"source":140,"target":18},{"source":134,"target":81},{"source":134,"target":141},{"source":134,"target":18},{"source":141,"target":81},{"source":135,"target":81},{"source":135,"target":142},{"source":135,"target":18},{"source":142,"target":81},{"source":136,"target":81},{"source":136,"target":143},{"source":136,"target":18},{"source":143,"target":81},{"source":137,"target":14},{"source":19,"target":1},{"source":19,"target":18},{"source":19,"target":144},{"source":144,"target":18},{"source":20,"target":1},{"source":20,"target":18},{"source":20,"target":15},{"source":20,"target":145},{"source":20,"target":146},{"source":20,"target":147},{"source":145,"target":81},{"source":145,"target":148},{"source":145,"target":20},{"source":148,"target":81},{"source":146,"target":18},{"source":147,"target":15},{"source":21,"target":1},{"source":21,"target":15},{"source":21,"target":149},{"source":21,"target":150},{"source":21,"target":151},{"source":21,"target":152},{"source":149,"target":153},{"source":149,"target":154},{"source":149,"target":21},{"source":154,"target":153},{"source":150,"target":81},{"source":150,"target":155},{"source":150,"target":21},{"source":155,"target":81},{"source":151,"target":81},{"source":151,"target":156},{"source":151,"target":21},{"source":156,"target":81},{"source":152,"target":15},{"source":22,"target":1},{"source":22,"target":5},{"source":22,"target":157},{"source":22,"target":158},{"source":22,"target":159},{"source":157,"target":26},{"source":157,"target":160},{"source":157,"target":22},{"source":157,"target":161},{"source":160,"target":26},{"source":158,"target":72},{"source":158,"target":162},{"source":158,"target":22},{"source":162,"target":72},{"source":159,"target":5},{"source":23,"target":1},{"source":23,"target":5},{"source":23,"target":118},{"source":23,"target":163},{"source":23,"target":164},{"source":23,"target":165},{"source":118,"target":14},{"source":118,"target":166},{"source":118,"target":23},{"source":118,"target":112},{"source":166,"target":14},{"source":163,"target":24},{"source":163,"target":167},{"source":163,"target":23},{"source":163,"target":168},{"source":167,"target":24},{"source":164,"target":28},{"source":164,"target":169},{"source":164,"target":23},{"source":164,"target":170},{"source":169,"target":28},{"source":165,"target":5},{"source":24,"target":1},{"source":24,"target":5},{"source":24,"target":168},{"source":24,"target":171},{"source":168,"target":23},{"source":168,"target":172},{"source":168,"target":24},{"source":168,"target":163},{"source":172,"target":23},{"source":171,"target":5},{"source":25,"target":1},{"source":25,"target":173},{"source":25,"target":174},{"source":174,"target":173},{"source":26,"target":1},{"source":26,"target":25},{"source":26,"target":175},{"source":26,"target":161},{"source":26,"target":176},{"source":26,"target":177},{"source":175,"target":28},{"source":175,"target":178},{"source":175,"target":26},{"source":175,"target":179},{"source":178,"target":28},{"source":161,"target":22},{"source":161,"target":180},{"source":161,"target":26},{"source":161,"target":157},{"source":180,"target":22},{"source":176,"target":83},{"source":176,"target":181},{"source":176,"target":26},{"source":181,"target":83},{"source":177,"target":25},{"source":27,"target":1},{"source":27,"target":26},{"source":27,"target":182},{"source":182,"target":26},{"source":28,"target":1},{"source":28,"target":25},{"source":28,"target":170},{"source":28,"target":179},{"source":28,"target":183},{"source":28,"target":184},{"source":28,"target":185},{"source":170,"target":23},{"source":170,"target":186},{"source":170,"target":28},{"source":170,"target":164},{"source":186,"target":23},{"source":179,"target":26},{"source":179,"target":187},{"source":179,"target":28},{"source":179,"target":175},{"source":187,"target":26},{"source":183,"target":31},{"source":183,"target":188},{"source":183,"target":28},{"source":183,"target":189},{"source":188,"target":31},{"source":184,"target":83},{"source":184,"target":190},{"source":184,"target":28},{"source":190,"target":83},{"source":185,"target":25},{"source":29,"target":1},{"source":29,"target":28},{"source":29,"target":191},{"source":29,"target":192},{"source":191,"target":72},{"source":191,"target":193},{"source":191,"target":29},{"source":193,"target":72},{"source":192,"target":28},{"source":30,"target":1},{"source":30,"target":28},{"source":30,"target":194},{"source":30,"target":195},{"source":30,"target":196},{"source":194,"target":72},{"source":194,"target":197},{"source":194,"target":30},{"source":197,"target":72},{"source":195,"target":198},{"source":195,"target":199},{"source":195,"target":30},{"source":199,"target":198},{"source":196,"target":28},{"source":31,"target":1},{"source":31,"target":5},{"source":31,"target":200},{"source":31,"target":189},{"source":31,"target":201},{"source":31,"target":202},{"source":31,"target":203},{"source":31,"target":204},{"source":31,"target":205},{"source":31,"target":206},{"source":200,"target":72},{"source":200,"target":207},{"source":200,"target":31},{"source":207,"target":72},{"source":189,"target":28},{"source":189,"target":208},{"source":189,"target":31},{"source":189,"target":183},{"source":208,"target":28},{"source":201,"target":51},{"source":201,"target":209},{"source":201,"target":31},{"source":209,"target":51},{"source":202,"target":81},{"source":202,"target":210},{"source":202,"target":31},{"source":210,"target":81},{"source":203,"target":211},{"source":203,"target":31},{"source":204,"target":212},{"source":204,"target":31},{"source":205,"target":42},{"source":205,"target":213},{"source":205,"target":31},{"source":213,"target":42},{"source":206,"target":5},{"source":32,"target":1},{"source":32,"target":173},{"source":32,"target":122},{"source":32,"target":214},{"source":122,"target":14},{"source":122,"target":215},{"source":122,"target":32},{"source":122,"target":114},{"source":215,"target":14},{"source":214,"target":173},{"source":33,"target":1},{"source":33,"target":5},{"source":33,"target":63},{"source":33,"target":216},{"source":33,"target":217},{"source":63,"target":6},{"source":63,"target":218},{"source":63,"target":33},{"source":63,"target":59},{"source":218,"target":6},{"source":216,"target":51},{"source":216,"target":219},{"source":216,"target":33},{"source":219,"target":51},{"source":217,"target":5},{"source":34,"target":1},{"source":34,"target":5},{"source":34,"target":120},{"source":34,"target":220},{"source":34,"target":221},{"source":120,"target":14},{"source":120,"target":222},{"source":120,"target":34},{"source":120,"target":113},{"source":222,"target":14},{"source":220,"target":35},{"source":220,"target":223},{"source":220,"target":34},{"source":223,"target":35},{"source":221,"target":5},{"source":35,"target":1},{"source":35,"target":5},{"source":35,"target":224},{"source":224,"target":5},{"source":36,"target":1},{"source":36,"target":35},{"source":36,"target":225},{"source":36,"target":226},{"source":225,"target":72},{"source":225,"target":227},{"source":225,"target":36},{"source":227,"target":72},{"source":226,"target":35},{"source":37,"target":1},{"source":37,"target":35},{"source":37,"target":228},{"source":37,"target":229},{"source":37,"target":230},{"source":37,"target":231},{"source":37,"target":232},{"source":228,"target":72},{"source":228,"target":233},{"source":228,"target":37},{"source":233,"target":72},{"source":229,"target":51},{"source":229,"target":234},{"source":229,"target":37},{"source":234,"target":51},{"source":230,"target":81},{"source":230,"target":235},{"source":230,"target":37},{"source":235,"target":81},{"source":231,"target":72},{"source":231,"target":236},{"source":231,"target":37},{"source":236,"target":72},{"source":232,"target":35},{"source":38,"target":1},{"source":38,"target":35},{"source":38,"target":237},{"source":38,"target":238},{"source":38,"target":239},{"source":38,"target":240},{"source":237,"target":72},{"source":237,"target":241},{"source":237,"target":38},{"source":241,"target":72},{"source":238,"target":35},{"source":238,"target":242},{"source":238,"target":38},{"source":242,"target":35},{"source":239,"target":35},{"source":239,"target":243},{"source":239,"target":38},{"source":243,"target":35},{"source":240,"target":35},{"source":39,"target":1},{"source":39,"target":35},{"source":39,"target":244},{"source":39,"target":245},{"source":39,"target":246},{"source":39,"target":247},{"source":244,"target":198},{"source":244,"target":248},{"source":244,"target":39},{"source":248,"target":198},{"source":245,"target":72},{"source":245,"target":249},{"source":245,"target":39},{"source":249,"target":72},{"source":246,"target":35},{"source":246,"target":250},{"source":246,"target":39},{"source":250,"target":35},{"source":247,"target":35},{"source":40,"target":1},{"source":40,"target":251},{"source":40,"target":252},{"source":251,"target":253},{"source":251,"target":40},{"source":252,"target":254},{"source":252,"target":40},{"source":41,"target":1},{"source":41,"target":255},{"source":41,"target":256},{"source":41,"target":257},{"source":255,"target":258},{"source":255,"target":41},{"source":256,"target":259},{"source":256,"target":41},{"source":257,"target":173},{"source":257,"target":260},{"source":257,"target":41},{"source":260,"target":173},{"source":42,"target":1},{"source":42,"target":261},{"source":42,"target":262},{"source":42,"target":263},{"source":261,"target":19},{"source":261,"target":264},{"source":261,"target":42},{"source":264,"target":19},{"source":262,"target":19},{"source":262,"target":265},{"source":262,"target":42},{"source":265,"target":19},{"source":263,"target":43},{"source":263,"target":266},{"source":263,"target":42},{"source":266,"target":43},{"source":43,"target":1},{"source":43,"target":267},{"source":43,"target":268},{"source":43,"target":269},{"source":267,"target":43},{"source":268,"target":43},{"source":269,"target":43},{"source":2,"target":72},{"source":2,"target":270},{"source":2,"target":271},{"source":2,"target":272},{"source":2,"target":273},{"source":2,"target":274},{"source":2,"target":275},{"source":2,"target":276},{"source":2,"target":277},{"source":2,"target":278},{"source":2,"target":279},{"source":2,"target":280},{"source":2,"target":281},{"source":2,"target":282},{"source":2,"target":283},{"source":2,"target":284},{"source":2,"target":285},{"source":2,"target":286},{"source":2,"target":287},{"source":2,"target":288},{"source":2,"target":109},{"source":2,"target":289},{"source":2,"target":290},{"source":2,"target":291},{"source":2,"target":292},{"source":2,"target":293},{"source":2,"target":294},{"source":2,"target":295},{"source":2,"target":296},{"source":2,"target":297},{"source":2,"target":173},{"source":2,"target":198},{"source":2,"target":153},{"source":2,"target":298},{"source":2,"target":299},{"source":2,"target":300},{"source":2,"target":301},{"source":2,"target":302},{"source":2,"target":303},{"source":2,"target":304},{"source":2,"target":305},{"source":2,"target":306},{"source":2,"target":307},{"source":2,"target":308},{"source":2,"target":309},{"source":2,"target":310},{"source":2,"target":311},{"source":2,"target":312},{"source":2,"target":313},{"source":2,"target":314},{"source":2,"target":97},{"source":2,"target":315},{"source":2,"target":316},{"source":2,"target":317},{"source":2,"target":318},{"source":2,"target":83},{"source":2,"target":319},{"source":2,"target":320},{"source":2,"target":321},{"source":2,"target":322},{"source":2,"target":0},{"source":72,"target":2},{"source":72,"target":5},{"source":72,"target":319},{"source":72,"target":323},{"source":72,"target":324},{"source":72,"target":325},{"source":72,"target":326},{"source":72,"target":327},{"source":72,"target":328},{"source":72,"target":329},{"source":72,"target":330},{"source":72,"target":331},{"source":72,"target":332},{"source":72,"target":333},{"source":72,"target":334},{"source":72,"target":335},{"source":72,"target":336},{"source":72,"target":337},{"source":72,"target":338},{"source":323,"target":299},{"source":323,"target":339},{"source":323,"target":72},{"source":323,"target":340},{"source":339,"target":299},{"source":324,"target":297},{"source":324,"target":341},{"source":324,"target":72},{"source":324,"target":342},{"source":341,"target":297},{"source":325,"target":109},{"source":325,"target":343},{"source":325,"target":72},{"source":325,"target":344},{"source":343,"target":109},{"source":326,"target":278},{"source":326,"target":345},{"source":326,"target":72},{"source":326,"target":346},{"source":345,"target":278},{"source":327,"target":296},{"source":327,"target":347},{"source":327,"target":72},{"source":327,"target":348},{"source":347,"target":296},{"source":328,"target":293},{"source":328,"target":349},{"source":328,"target":72},{"source":328,"target":350},{"source":349,"target":293},{"source":329,"target":290},{"source":329,"target":351},{"source":329,"target":72},{"source":329,"target":352},{"source":351,"target":290},{"source":330,"target":173},{"source":330,"target":353},{"source":330,"target":72},{"source":330,"target":354},{"source":353,"target":173},{"source":331,"target":297},{"source":331,"target":355},{"source":331,"target":72},{"source":331,"target":356},{"source":355,"target":297},{"source":332,"target":318},{"source":332,"target":357},{"source":332,"target":72},{"source":332,"target":358},{"source":357,"target":318},{"source":333,"target":297},{"source":333,"target":359},{"source":333,"target":72},{"source":333,"target":360},{"source":359,"target":297},{"source":334,"target":317},{"source":334,"target":361},{"source":334,"target":72},{"source":334,"target":362},{"source":361,"target":317},{"source":335,"target":363},{"source":335,"target":72},{"source":336,"target":364},{"source":336,"target":72},{"source":337,"target":5},{"source":338,"target":319},{"source":270,"target":2},{"source":270,"target":72},{"source":270,"target":365},{"source":270,"target":366},{"source":365,"target":173},{"source":365,"target":367},{"source":365,"target":270},{"source":365,"target":368},{"source":367,"target":173},{"source":366,"target":72},{"source":271,"target":2},{"source":271,"target":72},{"source":271,"target":369},{"source":369,"target":72},{"source":272,"target":2},{"source":272,"target":72},{"source":272,"target":370},{"source":370,"target":72},{"source":273,"target":2},{"source":273,"target":272},{"source":273,"target":371},{"source":273,"target":372},{"source":371,"target":51},{"source":371,"target":373},{"source":371,"target":273},{"source":373,"target":51},{"source":372,"target":272},{"source":274,"target":2},{"source":274,"target":272},{"source":274,"target":374},{"source":274,"target":375},{"source":374,"target":81},{"source":374,"target":376},{"source":374,"target":274},{"source":376,"target":81},{"source":375,"target":272},{"source":275,"target":2},{"source":275,"target":272},{"source":275,"target":377},{"source":377,"target":272},{"source":276,"target":2},{"source":276,"target":275},{"source":276,"target":378},{"source":276,"target":379},{"source":378,"target":380},{"source":378,"target":381},{"source":378,"target":276},{"source":381,"target":380},{"source":379,"target":275},{"source":277,"target":2},{"source":277,"target":275},{"source":277,"target":382},{"source":277,"target":383},{"source":382,"target":384},{"source":382,"target":385},{"source":382,"target":277},{"source":385,"target":384},{"source":383,"target":275},{"source":278,"target":2},{"source":278,"target":72},{"source":278,"target":346},{"source":278,"target":386},{"source":346,"target":72},{"source":346,"target":387},{"source":346,"target":278},{"source":346,"target":326},{"source":387,"target":72},{"source":386,"target":72},{"source":279,"target":2},{"source":279,"target":278},{"source":279,"target":388},{"source":388,"target":278},{"source":280,"target":2},{"source":280,"target":278},{"source":280,"target":389},{"source":389,"target":278},{"source":281,"target":2},{"source":281,"target":278},{"source":281,"target":390},{"source":390,"target":278},{"source":282,"target":2},{"source":282,"target":278},{"source":282,"target":391},{"source":391,"target":278},{"source":283,"target":2},{"source":283,"target":72},{"source":283,"target":392},{"source":283,"target":393},{"source":392,"target":284},{"source":392,"target":394},{"source":392,"target":283},{"source":392,"target":395},{"source":394,"target":284},{"source":393,"target":72},{"source":284,"target":2},{"source":284,"target":173},{"source":284,"target":395},{"source":284,"target":396},{"source":395,"target":283},{"source":395,"target":397},{"source":395,"target":284},{"source":395,"target":392},{"source":397,"target":283},{"source":396,"target":173},{"source":285,"target":2},{"source":285,"target":72},{"source":285,"target":398},{"source":285,"target":399},{"source":398,"target":286},{"source":398,"target":400},{"source":398,"target":285},{"source":398,"target":401},{"source":400,"target":286},{"source":399,"target":72},{"source":286,"target":2},{"source":286,"target":5},{"source":286,"target":401},{"source":286,"target":402},{"source":286,"target":403},{"source":286,"target":404},{"source":401,"target":285},{"source":401,"target":405},{"source":401,"target":286},{"source":401,"target":398},{"source":405,"target":285},{"source":402,"target":72},{"source":402,"target":406},{"source":402,"target":286},{"source":406,"target":72},{"source":403,"target":72},{"source":403,"target":407},{"source":403,"target":286},{"source":407,"target":72},{"source":404,"target":5},{"source":287,"target":2},{"source":287,"target":72},{"source":287,"target":408},{"source":287,"target":409},{"source":408,"target":51},{"source":408,"target":410},{"source":408,"target":287},{"source":410,"target":51},{"source":409,"target":72},{"source":288,"target":2},{"source":288,"target":72},{"source":288,"target":411},{"source":411,"target":72},{"source":109,"target":2},{"source":109,"target":72},{"source":109,"target":344},{"source":109,"target":412},{"source":109,"target":413},{"source":109,"target":414},{"source":109,"target":415},{"source":109,"target":416},{"source":109,"target":111},{"source":109,"target":417},{"source":344,"target":72},{"source":344,"target":418},{"source":344,"target":109},{"source":344,"target":325},{"source":418,"target":72},{"source":412,"target":419},{"source":412,"target":109},{"source":413,"target":420},{"source":413,"target":109},{"source":414,"target":421},{"source":414,"target":109},{"source":415,"target":422},{"source":415,"target":109},{"source":416,"target":17},{"source":416,"target":423},{"source":416,"target":109},{"source":423,"target":17},{"source":111,"target":13},{"source":111,"target":424},{"source":111,"target":109},{"source":111,"target":106},{"source":424,"target":13},{"source":417,"target":72},{"source":289,"target":2},{"source":289,"target":109},{"source":289,"target":425},{"source":289,"target":426},{"source":425,"target":51},{"source":425,"target":427},{"source":425,"target":289},{"source":427,"target":51},{"source":426,"target":109},{"source":290,"target":2},{"source":290,"target":109},{"source":290,"target":352},{"source":290,"target":428},{"source":290,"target":429},{"source":290,"target":430},{"source":352,"target":72},{"source":352,"target":431},{"source":352,"target":290},{"source":352,"target":329},{"source":431,"target":72},{"source":428,"target":51},{"source":428,"target":432},{"source":428,"target":290},{"source":432,"target":51},{"source":429,"target":320},{"source":429,"target":433},{"source":429,"target":290},{"source":433,"target":320},{"source":430,"target":109},{"source":291,"target":2},{"source":291,"target":290},{"source":291,"target":434},{"source":434,"target":290},{"source":292,"target":2},{"source":292,"target":290},{"source":292,"target":435},{"source":435,"target":290},{"source":293,"target":2},{"source":293,"target":109},{"source":293,"target":350},{"source":293,"target":436},{"source":293,"target":437},{"source":350,"target":72},{"source":350,"target":438},{"source":350,"target":293},{"source":350,"target":328},{"source":438,"target":72},{"source":436,"target":198},{"source":436,"target":439},{"source":436,"target":293},{"source":436,"target":440},{"source":439,"target":198},{"source":437,"target":109},{"source":294,"target":2},{"source":294,"target":293},{"source":294,"target":441},{"source":294,"target":442},{"source":441,"target":173},{"source":441,"target":443},{"source":441,"target":294},{"source":441,"target":444},{"source":443,"target":173},{"source":442,"target":293},{"source":295,"target":2},{"source":295,"target":293},{"source":295,"target":445},{"source":295,"target":446},{"source":445,"target":51},{"source":445,"target":447},{"source":445,"target":295},{"source":447,"target":51},{"source":446,"target":293},{"source":296,"target":2},{"source":296,"target":72},{"source":296,"target":448},{"source":296,"target":348},{"source":296,"target":449},{"source":448,"target":173},{"source":448,"target":450},{"source":448,"target":296},{"source":448,"target":451},{"source":450,"target":173},{"source":348,"target":72},{"source":348,"target":452},{"source":348,"target":296},{"source":348,"target":327},{"source":452,"target":72},{"source":449,"target":72},{"source":297,"target":2},{"source":297,"target":72},{"source":297,"target":356},{"source":297,"target":360},{"source":297,"target":342},{"source":297,"target":453},{"source":356,"target":72},{"source":356,"target":454},{"source":356,"target":297},{"source":356,"target":331},{"source":454,"target":72},{"source":360,"target":72},{"source":360,"target":455},{"source":360,"target":297},{"source":360,"target":333},{"source":455,"target":72},{"source":342,"target":72},{"source":342,"target":456},{"source":342,"target":297},{"source":342,"target":324},{"source":456,"target":72},{"source":453,"target":72},{"source":173,"target":2},{"source":173,"target":5},{"source":173,"target":319},{"source":173,"target":457},{"source":173,"target":458},{"source":173,"target":459},{"source":173,"target":354},{"source":173,"target":451},{"source":173,"target":444},{"source":173,"target":368},{"source":173,"target":460},{"source":173,"target":461},{"source":173,"target":462},{"source":457,"target":51},{"source":457,"target":463},{"source":457,"target":173},{"source":463,"target":51},{"source":458,"target":51},{"source":458,"target":464},{"source":458,"target":173},{"source":464,"target":51},{"source":459,"target":299},{"source":459,"target":465},{"source":459,"target":173},{"source":459,"target":466},{"source":465,"target":299},{"source":354,"target":72},{"source":354,"target":467},{"source":354,"target":173},{"source":354,"target":330},{"source":467,"target":72},{"source":451,"target":296},{"source":451,"target":468},{"source":451,"target":173},{"source":451,"target":448},{"source":468,"target":296},{"source":444,"target":294},{"source":444,"target":469},{"source":444,"target":173},{"source":444,"target":441},{"source":469,"target":294},{"source":368,"target":270},{"source":368,"target":470},{"source":368,"target":173},{"source":368,"target":365},{"source":470,"target":270},{"source":460,"target":471},{"source":460,"target":173},{"source":461,"target":5},{"source":462,"target":319},{"source":198,"target":2},{"source":198,"target":173},{"source":198,"target":440},{"source":198,"target":472},{"source":440,"target":293},{"source":440,"target":473},{"source":440,"target":198},{"source":440,"target":436},{"source":473,"target":293},{"source":472,"target":173},{"source":153,"target":2},{"source":153,"target":173},{"source":153,"target":474},{"source":474,"target":173},{"source":298,"target":2},{"source":298,"target":299},{"source":298,"target":475},{"source":298,"target":476},{"source":475,"target":299},{"source":475,"target":477},{"source":475,"target":298},{"source":475,"target":478},{"source":477,"target":299},{"source":476,"target":299},{"source":299,"target":2},{"source":299,"target":72},{"source":299,"target":479},{"source":299,"target":480},{"source":299,"target":340},{"source":299,"target":481},{"source":299,"target":482},{"source":299,"target":483},{"source":299,"target":484},{"source":299,"target":478},{"source":299,"target":485},{"source":299,"target":466},{"source":299,"target":486},{"source":479,"target":51},{"source":479,"target":487},{"source":479,"target":299},{"source":487,"target":51},{"source":480,"target":315},{"source":480,"target":488},{"source":480,"target":299},{"source":480,"target":489},{"source":488,"target":315},{"source":340,"target":72},{"source":340,"target":490},{"source":340,"target":299},{"source":340,"target":323},{"source":490,"target":72},{"source":481,"target":318},{"source":481,"target":491},{"source":481,"target":299},{"source":481,"target":492},{"source":491,"target":318},{"source":482,"target":314},{"source":482,"target":493},{"source":482,"target":299},{"source":482,"target":494},{"source":493,"target":314},{"source":483,"target":317},{"source":483,"target":495},{"source":483,"target":299},{"source":483,"target":496},{"source":495,"target":317},{"source":484,"target":314},{"source":484,"target":497},{"source":484,"target":299},{"source":484,"target":498},{"source":497,"target":314},{"source":478,"target":298},{"source":478,"target":499},{"source":478,"target":299},{"source":478,"target":475},{"source":499,"target":298},{"source":485,"target":312},{"source":485,"target":500},{"source":485,"target":299},{"source":485,"target":501},{"source":500,"target":312},{"source":466,"target":173},{"source":466,"target":502},{"source":466,"target":299},{"source":466,"target":459},{"source":502,"target":173},{"source":486,"target":72},{"source":300,"target":2},{"source":300,"target":299},{"source":300,"target":503},{"source":503,"target":299},{"source":301,"target":2},{"source":301,"target":300},{"source":301,"target":504},{"source":504,"target":300},{"source":302,"target":2},{"source":302,"target":300},{"source":302,"target":505},{"source":505,"target":300},{"source":303,"target":2},{"source":303,"target":300},{"source":303,"target":506},{"source":506,"target":300},{"source":304,"target":2},{"source":304,"target":303},{"source":304,"target":507},{"source":507,"target":303},{"source":305,"target":2},{"source":305,"target":303},{"source":305,"target":508},{"source":508,"target":303},{"source":306,"target":2},{"source":306,"target":298},{"source":306,"target":509},{"source":509,"target":298},{"source":307,"target":2},{"source":307,"target":298},{"source":307,"target":510},{"source":510,"target":298},{"source":308,"target":2},{"source":308,"target":298},{"source":308,"target":511},{"source":511,"target":298},{"source":309,"target":2},{"source":309,"target":298},{"source":309,"target":512},{"source":512,"target":298},{"source":310,"target":2},{"source":310,"target":299},{"source":310,"target":513},{"source":513,"target":299},{"source":311,"target":2},{"source":311,"target":299},{"source":311,"target":514},{"source":311,"target":515},{"source":514,"target":312},{"source":514,"target":516},{"source":514,"target":311},{"source":514,"target":517},{"source":516,"target":312},{"source":515,"target":299},{"source":312,"target":2},{"source":312,"target":5},{"source":312,"target":501},{"source":312,"target":517},{"source":312,"target":518},{"source":312,"target":519},{"source":501,"target":299},{"source":501,"target":520},{"source":501,"target":312},{"source":501,"target":485},{"source":520,"target":299},{"source":517,"target":311},{"source":517,"target":521},{"source":517,"target":312},{"source":517,"target":514},{"source":521,"target":311},{"source":518,"target":51},{"source":518,"target":522},{"source":518,"target":312},{"source":522,"target":51},{"source":519,"target":5},{"source":313,"target":2},{"source":313,"target":299},{"source":313,"target":523},{"source":313,"target":524},{"source":523,"target":83},{"source":523,"target":525},{"source":523,"target":313},{"source":523,"target":526},{"source":525,"target":83},{"source":524,"target":299},{"source":314,"target":2},{"source":314,"target":299},{"source":314,"target":494},{"source":314,"target":498},{"source":314,"target":527},{"source":494,"target":299},{"source":494,"target":528},{"source":494,"target":314},{"source":494,"target":482},{"source":528,"target":299},{"source":498,"target":299},{"source":498,"target":529},{"source":498,"target":314},{"source":498,"target":484},{"source":529,"target":299},{"source":527,"target":299},{"source":97,"target":2},{"source":97,"target":5},{"source":97,"target":530},{"source":97,"target":531},{"source":97,"target":532},{"source":530,"target":316},{"source":530,"target":533},{"source":530,"target":97},{"source":530,"target":534},{"source":533,"target":316},{"source":531,"target":315},{"source":531,"target":535},{"source":531,"target":97},{"source":531,"target":536},{"source":535,"target":315},{"source":532,"target":5},{"source":315,"target":2},{"source":315,"target":5},{"source":315,"target":536},{"source":315,"target":489},{"source":315,"target":537},{"source":536,"target":97},{"source":536,"target":538},{"source":536,"target":315},{"source":536,"target":531},{"source":538,"target":97},{"source":489,"target":299},{"source":489,"target":539},{"source":489,"target":315},{"source":489,"target":480},{"source":539,"target":299},{"source":537,"target":5},{"source":316,"target":2},{"source":316,"target":5},{"source":316,"target":534},{"source":316,"target":540},{"source":534,"target":97},{"source":534,"target":541},{"source":534,"target":316},{"source":534,"target":530},{"source":541,"target":97},{"source":540,"target":5},{"source":317,"target":2},{"source":317,"target":316},{"source":317,"target":542},{"source":317,"target":362},{"source":317,"target":496},{"source":317,"target":543},{"source":542,"target":51},{"source":542,"target":544},{"source":542,"target":317},{"source":544,"target":51},{"source":362,"target":72},{"source":362,"target":545},{"source":362,"target":317},{"source":362,"target":334},{"source":545,"target":72},{"source":496,"target":299},{"source":496,"target":546},{"source":496,"target":317},{"source":496,"target":483},{"source":546,"target":299},{"source":543,"target":316},{"source":318,"target":2},{"source":318,"target":316},{"source":318,"target":547},{"source":318,"target":548},{"source":318,"target":492},{"source":318,"target":358},{"source":318,"target":549},{"source":547,"target":51},{"source":547,"target":550},{"source":547,"target":318},{"source":550,"target":51},{"source":548,"target":153},{"source":548,"target":551},{"source":548,"target":318},{"source":551,"target":153},{"source":492,"target":299},{"source":492,"target":552},{"source":492,"target":318},{"source":492,"target":481},{"source":552,"target":299},{"source":358,"target":72},{"source":358,"target":553},{"source":358,"target":318},{"source":358,"target":332},{"source":553,"target":72},{"source":549,"target":316},{"source":83,"target":2},{"source":83,"target":5},{"source":83,"target":554},{"source":83,"target":555},{"source":83,"target":526},{"source":83,"target":556},{"source":83,"target":557},{"source":554,"target":51},{"source":554,"target":558},{"source":554,"target":83},{"source":558,"target":51},{"source":555,"target":83},{"source":555,"target":559},{"source":555,"target":83},{"source":555,"target":556},{"source":559,"target":83},{"source":526,"target":313},{"source":526,"target":560},{"source":526,"target":83},{"source":526,"target":523},{"source":560,"target":313},{"source":556,"target":83},{"source":556,"target":561},{"source":556,"target":83},{"source":556,"target":555},{"source":561,"target":83},{"source":557,"target":5},{"source":319,"target":2},{"source":319,"target":562},{"source":562,"target":563},{"source":562,"target":319},{"source":320,"target":2},{"source":320,"target":42},{"source":320,"target":564},{"source":320,"target":565},{"source":564,"target":28},{"source":564,"target":566},{"source":564,"target":320},{"source":566,"target":28},{"source":565,"target":42},{"source":321,"target":2},{"source":321,"target":72},{"source":321,"target":567},{"source":567,"target":72},{"source":322,"target":2},{"source":322,"target":321},{"source":322,"target":568},{"source":568,"target":321},{"source":3,"target":81},{"source":3,"target":380},{"source":3,"target":384},{"source":3,"target":51},{"source":3,"target":0},{"source":81,"target":3},{"source":380,"target":3},{"source":384,"target":3},{"source":51,"target":3},{"source":4,"target":569},{"source":4,"target":0},{"source":569,"target":4},{"source":569,"target":292},{"source":569,"target":570},{"source":569,"target":571},{"source":570,"target":572},{"source":570,"target":569},{"source":571,"target":292}],"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="bz397220" nsURI="http://www.eclipse.org/emf/texo/test/model/issues/bz397220" nsPrefix="bz397220"> <eClassifiers xsi:type="ecore:EClass" name="Test397220"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> </ecore:EPackage>
github:ecore:/data/PSI-Polska/texo/tests/org.eclipse.emf.texo.modelgenerator.test/src/org/eclipse/emf/texo/modelgenerator/test/models/issues/bz397220.ecore
ecore
bz397220 Test397220 name
null
{"directed":true,"nodes":[{"nsPrefix":"bz397220","nsURI":"http://www.eclipse.org/emf/texo/test/model/issues/bz397220","name":"bz397220","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Test397220","instanceClass":null,"abstract":false,"id":1,"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":2,"derived":false},{"id":3,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":1,"target":0},{"source":1,"target":2},{"source":2,"target":3},{"source":2,"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="bz386923" nsURI="http://www.eclipse.org/emf/texo/test/model/issues/bz386923" nsPrefix="bz386923"> <eClassifiers xsi:type="ecore:EClass" name="Test386923"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> </ecore:EPackage>
github:ecore:/data/PSI-Polska/texo/tests/org.eclipse.emf.texo.modelgenerator.test/src/org/eclipse/emf/texo/modelgenerator/test/models/issues/bz386923.ecore
ecore
bz386923 Test386923 name
null
{"directed":true,"nodes":[{"nsPrefix":"bz386923","nsURI":"http://www.eclipse.org/emf/texo/test/model/issues/bz386923","name":"bz386923","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Test386923","instanceClass":null,"abstract":false,"id":1,"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":2,"derived":false},{"id":3,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":1,"target":0},{"source":1,"target":2},{"source":2,"target":3},{"source":2,"target":1}],"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="activitydiagramTrace" nsURI="activitydiagramTrace" nsPrefix="activitydiagramTrace"> <eClassifiers xsi:type="ecore:EClass" name="SpecificTrace"> <eStructuralFeatures xsi:type="ecore:EReference" name="Activitydiagram_ActivityNode_AddTokens1_Sequence" upperBound="-1" eType="//Steps/Activitydiagram_ActivityNode_AddTokens1"/> <eStructuralFeatures xsi:type="ecore:EReference" name="Activitydiagram_ActivityNode_Execute_Sequence" upperBound="-1" eType="//Steps/Activitydiagram_ActivityNode_Execute"/> <eStructuralFeatures xsi:type="ecore:EReference" name="Activitydiagram_ActivityNode_RemoveToken1_Sequence" upperBound="-1" eType="//Steps/Activitydiagram_ActivityNode_RemoveToken1"/> <eStructuralFeatures xsi:type="ecore:EReference" name="Activitydiagram_ActivityNode_SendOffers1_Sequence" upperBound="-1" eType="//Steps/Activitydiagram_ActivityNode_SendOffers1"/> <eStructuralFeatures xsi:type="ecore:EReference" name="Activitydiagram_ActivityNode_TakeOfferdTokens1_Sequence" upperBound="-1" eType="//Steps/Activitydiagram_ActivityNode_TakeOfferdTokens1"/> <eStructuralFeatures xsi:type="ecore:EReference" name="Activitydiagram_ActivityNode_Terminate_Sequence" upperBound="-1" eType="//Steps/Activitydiagram_ActivityNode_Terminate"/> <eStructuralFeatures xsi:type="ecore:EReference" name="Activitydiagram_Activity_Execute_Sequence" upperBound="-1" eType="//Steps/Activitydiagram_Activity_Execute"/> <eStructuralFeatures xsi:type="ecore:EReference" name="Activitydiagram_Activity_Reset_Sequence" upperBound="-1" eType="//Steps/Activitydiagram_Activity_Reset"/> <eStructuralFeatures xsi:type="ecore:EReference" name="Activitydiagram_BooleanVariable_Execute_Sequence" upperBound="-1" eType="//Steps/Activitydiagram_BooleanVariable_Execute"/> <eStructuralFeatures xsi:type="ecore:EReference" name="Activitydiagram_BooleanVariable_Init_Sequence" upperBound="-1" eType="//Steps/Activitydiagram_BooleanVariable_Init"/> <eStructuralFeatures xsi:type="ecore:EReference" name="Activitydiagram_DecisionNode_SendOffers1_Sequence" upperBound="-1" eType="//Steps/Activitydiagram_DecisionNode_SendOffers1"/> <eStructuralFeatures xsi:type="ecore:EReference" name="Activitydiagram_IntegerVariable_Execute_Sequence" upperBound="-1" eType="//Steps/Activitydiagram_IntegerVariable_Execute"/> <eStructuralFeatures xsi:type="ecore:EReference" name="Activitydiagram_IntegerVariable_Init_Sequence" upperBound="-1" eType="//Steps/Activitydiagram_IntegerVariable_Init"/> <eStructuralFeatures xsi:type="ecore:EReference" name="Activitydiagram_Variable_Execute_Sequence" upperBound="-1" eType="//Steps/Activitydiagram_Variable_Execute"/> <eStructuralFeatures xsi:type="ecore:EReference" name="Activitydiagram_Variable_Init_Sequence" upperBound="-1" eType="//Steps/Activitydiagram_Variable_Init"/> <eStructuralFeatures xsi:type="ecore:EReference" name="activitydiagram_tracedActivityFinalNodes" ordered="false" upperBound="-1" eType="//States/activitydiagram/TracedActivityFinalNode" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="activitydiagram_tracedActivityNodes" ordered="false" upperBound="-1" eType="//States/activitydiagram/TracedActivityNode" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="activitydiagram_tracedActivitys" ordered="false" upperBound="-1" eType="//States/activitydiagram/TracedActivity" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="activitydiagram_tracedBooleanVariables" ordered="false" upperBound="-1" eType="//States/activitydiagram/TracedBooleanVariable" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="activitydiagram_tracedControlFlows" ordered="false" upperBound="-1" eType="//States/activitydiagram/TracedControlFlow" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="activitydiagram_tracedControlTokens" ordered="false" upperBound="-1" eType="//States/activitydiagram/TracedControlToken" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="activitydiagram_tracedDecisionNodes" ordered="false" upperBound="-1" eType="//States/activitydiagram/TracedDecisionNode" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="activitydiagram_tracedForkNodes" ordered="false" upperBound="-1" eType="//States/activitydiagram/TracedForkNode" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="activitydiagram_tracedForkedTokens" ordered="false" upperBound="-1" eType="//States/activitydiagram/TracedForkedToken" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="activitydiagram_tracedInitialNodes" ordered="false" upperBound="-1" eType="//States/activitydiagram/TracedInitialNode" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="activitydiagram_tracedInputValues" ordered="false" upperBound="-1" eType="//States/activitydiagram/TracedInputValue" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="activitydiagram_tracedInputs" ordered="false" upperBound="-1" eType="//States/activitydiagram/TracedInput" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="activitydiagram_tracedIntegerVariables" ordered="false" upperBound="-1" eType="//States/activitydiagram/TracedIntegerVariable" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="activitydiagram_tracedJoinNodes" ordered="false" upperBound="-1" eType="//States/activitydiagram/TracedJoinNode" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="activitydiagram_tracedMergeNodes" ordered="false" upperBound="-1" eType="//States/activitydiagram/TracedMergeNode" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="activitydiagram_tracedOffers" ordered="false" upperBound="-1" eType="//States/activitydiagram/TracedOffer" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="activitydiagram_tracedOpaqueActions" ordered="false" upperBound="-1" eType="//States/activitydiagram/TracedOpaqueAction" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="activitydiagram_tracedTokens" ordered="false" upperBound="-1" eType="//States/activitydiagram/TracedToken" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="activitydiagram_tracedTraces" ordered="false" upperBound="-1" eType="//States/activitydiagram/TracedTrace" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="activitydiagram_tracedVariables" ordered="false" upperBound="-1" eType="//States/activitydiagram/TracedVariable" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="statesTrace" upperBound="-1" eType="//States/State" containment="true"/> <eGenericSuperTypes> <eTypeArguments> <eTypeArguments eClassifier="//Steps/SpecificStep"/> <eClassifier xsi:type="ecore:EClass" href="../../fr.inria.diverse.trace.commons.model/model/GenericTrace.ecore#//SequentialStep"/> </eTypeArguments> <eClassifier xsi:type="ecore:EClass" href="../../fr.inria.diverse.trace.commons.model/model/GenericTrace.ecore#//Trace"/> </eGenericSuperTypes> </eClassifiers> <eSubpackages name="Steps" nsURI="activitydiagramTrace_Steps" nsPrefix="events"> <eClassifiers xsi:type="ecore:EClass" name="Activitydiagram_ActivityNode_AddTokens1"> <eSuperTypes href="#//Steps/Activitydiagram_Activity_Execute_AbstractSubStep"/> <eSuperTypes href="#//Steps/Activitydiagram_ActivityNode_Execute_AbstractSubStep"/> <eSuperTypes href="#//Steps/SpecificStep"/> <eSuperTypes href="../../fr.inria.diverse.trace.commons.model/model/GenericTrace.ecore#//SmallStep"/> <eOperations name="getCaller" lowerBound="1" eType="//States/activitydiagram/TracedActivityNode"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="body" value="return (activitydiagramTrace.States.activitydiagram.TracedActivityNode) this.getMseoccurrence().getMse().getCaller();"/> </eAnnotations> </eOperations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Activitydiagram_ActivityNode_Execute"> <eOperations name="getCaller" lowerBound="1" eType="//States/activitydiagram/TracedActivityNode"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="body" value="return (activitydiagramTrace.States.activitydiagram.TracedActivityNode) this.getMseoccurrence().getMse().getCaller();"/> </eAnnotations> </eOperations> <eGenericSuperTypes eClassifier="//Steps/Activitydiagram_Activity_Execute_AbstractSubStep"/> <eGenericSuperTypes eClassifier="//Steps/SpecificStep"/> <eGenericSuperTypes> <eTypeArguments eClassifier="//Steps/Activitydiagram_ActivityNode_Execute_AbstractSubStep"/> <eClassifier xsi:type="ecore:EClass" href="../../fr.inria.diverse.trace.commons.model/model/GenericTrace.ecore#//SequentialStep"/> </eGenericSuperTypes> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Activitydiagram_ActivityNode_Execute_AbstractSubStep" abstract="true" interface="true" eSuperTypes="//Steps/SpecificStep"/> <eClassifiers xsi:type="ecore:EClass" name="Activitydiagram_ActivityNode_Execute_ImplicitStep"> <eSuperTypes href="#//Steps/Activitydiagram_ActivityNode_Execute_AbstractSubStep"/> <eSuperTypes href="../../fr.inria.diverse.trace.commons.model/model/GenericTrace.ecore#//SmallStep"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Activitydiagram_ActivityNode_RemoveToken1"> <eSuperTypes href="#//Steps/SpecificStep"/> <eSuperTypes href="../../fr.inria.diverse.trace.commons.model/model/GenericTrace.ecore#//SmallStep"/> <eOperations name="getCaller" lowerBound="1" eType="//States/activitydiagram/TracedActivityNode"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="body" value="return (activitydiagramTrace.States.activitydiagram.TracedActivityNode) this.getMseoccurrence().getMse().getCaller();"/> </eAnnotations> </eOperations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Activitydiagram_ActivityNode_SendOffers1"> <eSuperTypes href="#//Steps/SpecificStep"/> <eSuperTypes href="../../fr.inria.diverse.trace.commons.model/model/GenericTrace.ecore#//SmallStep"/> <eSuperTypes href="#//Steps/Activitydiagram_Activity_Execute_AbstractSubStep"/> <eSuperTypes href="#//Steps/Activitydiagram_ActivityNode_Execute_AbstractSubStep"/> <eOperations name="getCaller" lowerBound="1" eType="//States/activitydiagram/TracedActivityNode"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="body" value="return (activitydiagramTrace.States.activitydiagram.TracedActivityNode) this.getMseoccurrence().getMse().getCaller();"/> </eAnnotations> </eOperations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Activitydiagram_ActivityNode_TakeOfferdTokens1"> <eSuperTypes href="#//Steps/SpecificStep"/> <eSuperTypes href="../../fr.inria.diverse.trace.commons.model/model/GenericTrace.ecore#//SmallStep"/> <eSuperTypes href="#//Steps/Activitydiagram_Activity_Execute_AbstractSubStep"/> <eSuperTypes href="#//Steps/Activitydiagram_ActivityNode_Execute_AbstractSubStep"/> <eOperations name="getCaller" lowerBound="1" eType="//States/activitydiagram/TracedActivityNode"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="body" value="return (activitydiagramTrace.States.activitydiagram.TracedActivityNode) this.getMseoccurrence().getMse().getCaller();"/> </eAnnotations> </eOperations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Activitydiagram_ActivityNode_Terminate"> <eSuperTypes href="#//Steps/SpecificStep"/> <eSuperTypes href="../../fr.inria.diverse.trace.commons.model/model/GenericTrace.ecore#//SmallStep"/> <eOperations name="getCaller" lowerBound="1" eType="//States/activitydiagram/TracedActivityNode"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="body" value="return (activitydiagramTrace.States.activitydiagram.TracedActivityNode) this.getMseoccurrence().getMse().getCaller();"/> </eAnnotations> </eOperations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Activitydiagram_Activity_Execute"> <eOperations name="getCaller" lowerBound="1" eType="//States/activitydiagram/TracedActivity"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="body" value="return (activitydiagramTrace.States.activitydiagram.TracedActivity) this.getMseoccurrence().getMse().getCaller();"/> </eAnnotations> </eOperations> <eGenericSuperTypes eClassifier="//Steps/SpecificStep"/> <eGenericSuperTypes> <eTypeArguments eClassifier="//Steps/Activitydiagram_Activity_Execute_AbstractSubStep"/> <eClassifier xsi:type="ecore:EClass" href="../../fr.inria.diverse.trace.commons.model/model/GenericTrace.ecore#//SequentialStep"/> </eGenericSuperTypes> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Activitydiagram_Activity_Execute_AbstractSubStep" abstract="true" interface="true" eSuperTypes="//Steps/SpecificStep"/> <eClassifiers xsi:type="ecore:EClass" name="Activitydiagram_Activity_Execute_ImplicitStep"> <eSuperTypes href="#//Steps/Activitydiagram_Activity_Execute_AbstractSubStep"/> <eSuperTypes href="../../fr.inria.diverse.trace.commons.model/model/GenericTrace.ecore#//SmallStep"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Activitydiagram_Activity_Reset"> <eSuperTypes href="#//Steps/SpecificStep"/> <eSuperTypes href="../../fr.inria.diverse.trace.commons.model/model/GenericTrace.ecore#//SmallStep"/> <eOperations name="getCaller" lowerBound="1" eType="//States/activitydiagram/TracedActivity"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="body" value="return (activitydiagramTrace.States.activitydiagram.TracedActivity) this.getMseoccurrence().getMse().getCaller();"/> </eAnnotations> </eOperations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Activitydiagram_BooleanVariable_Execute"> <eSuperTypes href="#//Steps/SpecificStep"/> <eSuperTypes href="../../fr.inria.diverse.trace.commons.model/model/GenericTrace.ecore#//SmallStep"/> <eOperations name="getCaller" lowerBound="1" eType="//States/activitydiagram/TracedBooleanVariable"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="body" value="return (activitydiagramTrace.States.activitydiagram.TracedBooleanVariable) this.getMseoccurrence().getMse().getCaller();"/> </eAnnotations> </eOperations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Activitydiagram_BooleanVariable_Init"> <eSuperTypes href="#//Steps/Activitydiagram_Activity_Execute_AbstractSubStep"/> <eSuperTypes href="#//Steps/SpecificStep"/> <eSuperTypes href="../../fr.inria.diverse.trace.commons.model/model/GenericTrace.ecore#//SmallStep"/> <eOperations name="getCaller" lowerBound="1" eType="//States/activitydiagram/TracedBooleanVariable"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="body" value="return (activitydiagramTrace.States.activitydiagram.TracedBooleanVariable) this.getMseoccurrence().getMse().getCaller();"/> </eAnnotations> </eOperations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Activitydiagram_DecisionNode_SendOffers1"> <eSuperTypes href="#//Steps/Activitydiagram_Activity_Execute_AbstractSubStep"/> <eSuperTypes href="#//Steps/Activitydiagram_ActivityNode_Execute_AbstractSubStep"/> <eSuperTypes href="#//Steps/SpecificStep"/> <eSuperTypes href="../../fr.inria.diverse.trace.commons.model/model/GenericTrace.ecore#//SmallStep"/> <eOperations name="getCaller" lowerBound="1" eType="//States/activitydiagram/TracedDecisionNode"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="body" value="return (activitydiagramTrace.States.activitydiagram.TracedDecisionNode) this.getMseoccurrence().getMse().getCaller();"/> </eAnnotations> </eOperations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Activitydiagram_IntegerVariable_Execute"> <eSuperTypes href="#//Steps/SpecificStep"/> <eSuperTypes href="../../fr.inria.diverse.trace.commons.model/model/GenericTrace.ecore#//SmallStep"/> <eOperations name="getCaller" lowerBound="1" eType="//States/activitydiagram/TracedIntegerVariable"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="body" value="return (activitydiagramTrace.States.activitydiagram.TracedIntegerVariable) this.getMseoccurrence().getMse().getCaller();"/> </eAnnotations> </eOperations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Activitydiagram_IntegerVariable_Init"> <eSuperTypes href="#//Steps/Activitydiagram_Activity_Execute_AbstractSubStep"/> <eSuperTypes href="#//Steps/SpecificStep"/> <eSuperTypes href="../../fr.inria.diverse.trace.commons.model/model/GenericTrace.ecore#//SmallStep"/> <eOperations name="getCaller" lowerBound="1" eType="//States/activitydiagram/TracedIntegerVariable"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="body" value="return (activitydiagramTrace.States.activitydiagram.TracedIntegerVariable) this.getMseoccurrence().getMse().getCaller();"/> </eAnnotations> </eOperations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Activitydiagram_Variable_Execute"> <eSuperTypes href="#//Steps/SpecificStep"/> <eSuperTypes href="../../fr.inria.diverse.trace.commons.model/model/GenericTrace.ecore#//SmallStep"/> <eOperations name="getCaller" lowerBound="1" eType="//States/activitydiagram/TracedVariable"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="body" value="return (activitydiagramTrace.States.activitydiagram.TracedVariable) this.getMseoccurrence().getMse().getCaller();"/> </eAnnotations> </eOperations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Activitydiagram_Variable_Init"> <eSuperTypes href="#//Steps/Activitydiagram_Activity_Execute_AbstractSubStep"/> <eSuperTypes href="#//Steps/SpecificStep"/> <eSuperTypes href="../../fr.inria.diverse.trace.commons.model/model/GenericTrace.ecore#//SmallStep"/> <eOperations name="getCaller" lowerBound="1" eType="//States/activitydiagram/TracedVariable"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="body" value="return (activitydiagramTrace.States.activitydiagram.TracedVariable) this.getMseoccurrence().getMse().getCaller();"/> </eAnnotations> </eOperations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="RootImplicitStep"> <eSuperTypes href="../../fr.inria.diverse.trace.commons.model/model/GenericTrace.ecore#//SmallStep"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="SpecificStep" abstract="true" interface="true"> <eSuperTypes href="../../fr.inria.diverse.trace.commons.model/model/GenericTrace.ecore#//Step"/> <eStructuralFeatures xsi:type="ecore:EReference" name="endingState" eType="//States/State" eOpposite="//States/State/endedSteps"/> <eStructuralFeatures xsi:type="ecore:EReference" name="startingState" lowerBound="1" eType="//States/State" eOpposite="//States/State/startedSteps"/> </eClassifiers> </eSubpackages> <eSubpackages name="States" nsURI="activitydiagramTrace_States" nsPrefix="tracedclasses"> <eClassifiers xsi:type="ecore:EClass" name="ActivityEdge_offers_Value" eSuperTypes="//States/Value"> <eAnnotations source="http://www.modelexecution.org/trace/XMOF"> <details key="executionMetamodelElement"/> </eAnnotations> <eOperations name="getStatesNoOpposite" lowerBound="1" upperBound="-1" eType="//States/State"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="body" value="return this.getStates();"/> </eAnnotations> </eOperations> <eStructuralFeatures xsi:type="ecore:EReference" name="offers" upperBound="-1" eType="//States/activitydiagram/TracedOffer"> <eAnnotations source="aspect"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="parent" lowerBound="1" eType="//States/activitydiagram/TracedActivityEdge" eOpposite="//States/activitydiagram/TracedActivityEdge/offersSequence"/> <eStructuralFeatures xsi:type="ecore:EReference" name="states" lowerBound="1" upperBound="-1" eType="//States/State" eOpposite="//States/State/activityEdge_offers_Values"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ActivityNode_heldTokens_Value" eSuperTypes="//States/Value"> <eAnnotations source="http://www.modelexecution.org/trace/XMOF"> <details key="executionMetamodelElement"/> </eAnnotations> <eOperations name="getStatesNoOpposite" lowerBound="1" upperBound="-1" eType="//States/State"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="body" value="return this.getStates();"/> </eAnnotations> </eOperations> <eStructuralFeatures xsi:type="ecore:EReference" name="heldTokens" upperBound="-1" eType="//States/activitydiagram/TracedToken"> <eAnnotations source="aspect"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="parent" lowerBound="1" eType="//States/activitydiagram/TracedActivityNode" eOpposite="//States/activitydiagram/TracedActivityNode/heldTokensSequence"/> <eStructuralFeatures xsi:type="ecore:EReference" name="states" lowerBound="1" upperBound="-1" eType="//States/State" eOpposite="//States/State/activityNode_heldTokens_Values"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Activity_trace_Value" eSuperTypes="//States/Value"> <eAnnotations source="http://www.modelexecution.org/trace/XMOF"> <details key="executionMetamodelElement"/> </eAnnotations> <eOperations name="getStatesNoOpposite" lowerBound="1" upperBound="-1" eType="//States/State"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="body" value="return this.getStates();"/> </eAnnotations> </eOperations> <eStructuralFeatures xsi:type="ecore:EReference" name="parent" lowerBound="1" eType="//States/activitydiagram/TracedActivity" eOpposite="//States/activitydiagram/TracedActivity/traceSequence"/> <eStructuralFeatures xsi:type="ecore:EReference" name="states" lowerBound="1" upperBound="-1" eType="//States/State" eOpposite="//States/State/activity_trace_Values"/> <eStructuralFeatures xsi:type="ecore:EReference" name="trace" eType="//States/activitydiagram/TracedTrace"> <eAnnotations source="aspect"/> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ForkedToken_baseToken_Value" eSuperTypes="//States/Value"> <eAnnotations source="http://www.modelexecution.org/trace/XMOF"> <details key="executionMetamodelElement"/> </eAnnotations> <eOperations name="getStatesNoOpposite" lowerBound="1" upperBound="-1" eType="//States/State"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="body" value="return this.getStates();"/> </eAnnotations> </eOperations> <eStructuralFeatures xsi:type="ecore:EReference" name="baseToken" unique="false" eType="//States/activitydiagram/TracedToken"> <eAnnotations source="aspect"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="parent" lowerBound="1" eType="//States/activitydiagram/TracedForkedToken" eOpposite="//States/activitydiagram/TracedForkedToken/baseTokenSequence"/> <eStructuralFeatures xsi:type="ecore:EReference" name="states" lowerBound="1" upperBound="-1" eType="//States/State" eOpposite="//States/State/forkedToken_baseToken_Values"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ForkedToken_remainingOffersCount_Value" eSuperTypes="//States/Value"> <eAnnotations source="http://www.modelexecution.org/trace/XMOF"> <details key="executionMetamodelElement"/> </eAnnotations> <eOperations name="getStatesNoOpposite" lowerBound="1" upperBound="-1" eType="//States/State"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="body" value="return this.getStates();"/> </eAnnotations> </eOperations> <eStructuralFeatures xsi:type="ecore:EReference" name="parent" lowerBound="1" eType="//States/activitydiagram/TracedForkedToken" eOpposite="//States/activitydiagram/TracedForkedToken/remainingOffersCountSequence"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="remainingOffersCount" unique="false"> <eAnnotations source="aspect"/> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//EInt"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="states" lowerBound="1" upperBound="-1" eType="//States/State" eOpposite="//States/State/forkedToken_remainingOffersCount_Values"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="InputValue_value_Value" eSuperTypes="//States/Value"> <eAnnotations source="http://www.modelexecution.org/trace/XMOF"> <details key="executionMetamodelElement"/> </eAnnotations> <eOperations name="getStatesNoOpposite" lowerBound="1" upperBound="-1" eType="//States/State"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="body" value="return this.getStates();"/> </eAnnotations> </eOperations> <eStructuralFeatures xsi:type="ecore:EReference" name="parent" lowerBound="1" eType="//States/activitydiagram/TracedInputValue" eOpposite="//States/activitydiagram/TracedInputValue/valueSequence"/> <eStructuralFeatures xsi:type="ecore:EReference" name="states" lowerBound="1" upperBound="-1" eType="//States/State" eOpposite="//States/State/inputValue_value_Values"/> <eStructuralFeatures xsi:type="ecore:EReference" name="value"> <eAnnotations source="aspect"/> <eType xsi:type="ecore:EClass" href="../../org.gemoc.activitydiagram.sequential.xactivitydiagram/model/XActivityDiagram.ecore#//Value"/> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="InputValue_variable_Value" eSuperTypes="//States/Value"> <eAnnotations source="http://www.modelexecution.org/trace/XMOF"> <details key="executionMetamodelElement"/> </eAnnotations> <eOperations name="getStatesNoOpposite" lowerBound="1" upperBound="-1" eType="//States/State"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="body" value="return this.getStates();"/> </eAnnotations> </eOperations> <eStructuralFeatures xsi:type="ecore:EReference" name="parent" lowerBound="1" eType="//States/activitydiagram/TracedInputValue" eOpposite="//States/activitydiagram/TracedInputValue/variableSequence"/> <eStructuralFeatures xsi:type="ecore:EReference" name="states" lowerBound="1" upperBound="-1" eType="//States/State" eOpposite="//States/State/inputValue_variable_Values"/> <eStructuralFeatures xsi:type="ecore:EReference" name="variable" unique="false" eType="//States/activitydiagram/TracedVariable"> <eAnnotations source="aspect"/> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Input_inputValues_Value" eSuperTypes="//States/Value"> <eAnnotations source="http://www.modelexecution.org/trace/XMOF"> <details key="executionMetamodelElement"/> </eAnnotations> <eOperations name="getStatesNoOpposite" lowerBound="1" upperBound="-1" eType="//States/State"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="body" value="return this.getStates();"/> </eAnnotations> </eOperations> <eStructuralFeatures xsi:type="ecore:EReference" name="inputValues" upperBound="-1" eType="//States/activitydiagram/TracedInputValue"> <eAnnotations source="aspect"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="parent" lowerBound="1" eType="//States/activitydiagram/TracedInput" eOpposite="//States/activitydiagram/TracedInput/inputValuesSequence"/> <eStructuralFeatures xsi:type="ecore:EReference" name="states" lowerBound="1" upperBound="-1" eType="//States/State" eOpposite="//States/State/input_inputValues_Values"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Offer_offeredTokens_Value" eSuperTypes="//States/Value"> <eAnnotations source="http://www.modelexecution.org/trace/XMOF"> <details key="executionMetamodelElement"/> </eAnnotations> <eOperations name="getStatesNoOpposite" lowerBound="1" upperBound="-1" eType="//States/State"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="body" value="return this.getStates();"/> </eAnnotations> </eOperations> <eStructuralFeatures xsi:type="ecore:EReference" name="offeredTokens" unique="false" upperBound="-1" eType="//States/activitydiagram/TracedToken"> <eAnnotations source="aspect"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="parent" lowerBound="1" eType="//States/activitydiagram/TracedOffer" eOpposite="//States/activitydiagram/TracedOffer/offeredTokensSequence"/> <eStructuralFeatures xsi:type="ecore:EReference" name="states" lowerBound="1" upperBound="-1" eType="//States/State" eOpposite="//States/State/offer_offeredTokens_Values"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="State"> <eStructuralFeatures xsi:type="ecore:EReference" name="activityEdge_offers_Values" ordered="false" upperBound="-1" eType="//States/ActivityEdge_offers_Value" eOpposite="//States/ActivityEdge_offers_Value/states"/> <eStructuralFeatures xsi:type="ecore:EReference" name="activityNode_heldTokens_Values" ordered="false" upperBound="-1" eType="//States/ActivityNode_heldTokens_Value" eOpposite="//States/ActivityNode_heldTokens_Value/states"/> <eStructuralFeatures xsi:type="ecore:EReference" name="activity_trace_Values" ordered="false" upperBound="-1" eType="//States/Activity_trace_Value" eOpposite="//States/Activity_trace_Value/states"/> <eStructuralFeatures xsi:type="ecore:EReference" name="endedSteps" upperBound="-1" eType="//Steps/SpecificStep" eOpposite="//Steps/SpecificStep/endingState"/> <eStructuralFeatures xsi:type="ecore:EReference" name="forkedToken_baseToken_Values" ordered="false" upperBound="-1" eType="//States/ForkedToken_baseToken_Value" eOpposite="//States/ForkedToken_baseToken_Value/states"/> <eStructuralFeatures xsi:type="ecore:EReference" name="forkedToken_remainingOffersCount_Values" ordered="false" upperBound="-1" eType="//States/ForkedToken_remainingOffersCount_Value" eOpposite="//States/ForkedToken_remainingOffersCount_Value/states"/> <eStructuralFeatures xsi:type="ecore:EReference" name="inputValue_value_Values" ordered="false" upperBound="-1" eType="//States/InputValue_value_Value" eOpposite="//States/InputValue_value_Value/states"/> <eStructuralFeatures xsi:type="ecore:EReference" name="inputValue_variable_Values" ordered="false" upperBound="-1" eType="//States/InputValue_variable_Value" eOpposite="//States/InputValue_variable_Value/states"/> <eStructuralFeatures xsi:type="ecore:EReference" name="input_inputValues_Values" ordered="false" upperBound="-1" eType="//States/Input_inputValues_Value" eOpposite="//States/Input_inputValues_Value/states"/> <eStructuralFeatures xsi:type="ecore:EReference" name="offer_offeredTokens_Values" ordered="false" upperBound="-1" eType="//States/Offer_offeredTokens_Value" eOpposite="//States/Offer_offeredTokens_Value/states"/> <eStructuralFeatures xsi:type="ecore:EReference" name="startedSteps" upperBound="-1" eType="//Steps/SpecificStep" eOpposite="//Steps/SpecificStep/startingState"/> <eStructuralFeatures xsi:type="ecore:EReference" name="trace_executedNodes_Values" ordered="false" upperBound="-1" eType="//States/Trace_executedNodes_Value" eOpposite="//States/Trace_executedNodes_Value/states"/> <eStructuralFeatures xsi:type="ecore:EReference" name="variable_currentValue_Values" ordered="false" upperBound="-1" eType="//States/Variable_currentValue_Value" eOpposite="//States/Variable_currentValue_Value/states"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Trace_executedNodes_Value" eSuperTypes="//States/Value"> <eAnnotations source="http://www.modelexecution.org/trace/XMOF"> <details key="executionMetamodelElement"/> </eAnnotations> <eOperations name="getStatesNoOpposite" lowerBound="1" upperBound="-1" eType="//States/State"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="body" value="return this.getStates();"/> </eAnnotations> </eOperations> <eStructuralFeatures xsi:type="ecore:EReference" name="executedNodes" unique="false" upperBound="-1" eType="//States/activitydiagram/TracedActivityNode"> <eAnnotations source="aspect"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="parent" lowerBound="1" eType="//States/activitydiagram/TracedTrace" eOpposite="//States/activitydiagram/TracedTrace/executedNodesSequence"/> <eStructuralFeatures xsi:type="ecore:EReference" name="states" lowerBound="1" upperBound="-1" eType="//States/State" eOpposite="//States/State/trace_executedNodes_Values"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Value" abstract="true" interface="true"> <eStructuralFeatures xsi:type="ecore:EReference" name="statesNoOpposite" lowerBound="1" upperBound="-1" eType="//States/State" changeable="false" volatile="true" transient="true" derived="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Variable_currentValue_Value" eSuperTypes="//States/Value"> <eAnnotations source="http://www.modelexecution.org/trace/XMOF"> <details key="executionMetamodelElement"/> </eAnnotations> <eOperations name="getStatesNoOpposite" lowerBound="1" upperBound="-1" eType="//States/State"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="body" value="return this.getStates();"/> </eAnnotations> </eOperations> <eStructuralFeatures xsi:type="ecore:EReference" name="currentValue" unique="false"> <eAnnotations source="aspect"/> <eType xsi:type="ecore:EClass" href="../../org.gemoc.activitydiagram.sequential.xactivitydiagram/model/XActivityDiagram.ecore#//Value"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="parent" lowerBound="1" eType="//States/activitydiagram/TracedVariable" eOpposite="//States/activitydiagram/TracedVariable/currentValueSequence"/> <eStructuralFeatures xsi:type="ecore:EReference" name="states" lowerBound="1" upperBound="-1" eType="//States/State" eOpposite="//States/State/variable_currentValue_Values"/> </eClassifiers> <eSubpackages name="activitydiagram" nsURI="activitydiagramTrace_activitydiagram" nsPrefix=""> <eClassifiers xsi:type="ecore:EClass" name="TracedAction" abstract="true" eSuperTypes="//States/activitydiagram/TracedExecutableNode"/> <eClassifiers xsi:type="ecore:EClass" name="TracedActivity" eSuperTypes="//States/activitydiagram/TracedNamedElement"> <eStructuralFeatures xsi:type="ecore:EReference" name="originalObject"> <eType xsi:type="ecore:EClass" href="../../org.gemoc.activitydiagram.sequential.xactivitydiagram/model/XActivityDiagram.ecore#//Activity"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="traceSequence" upperBound="-1" eType="//States/Activity_trace_Value" containment="true" eOpposite="//States/Activity_trace_Value/parent"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="TracedActivityEdge" abstract="true" eSuperTypes="//States/activitydiagram/TracedNamedElement"> <eStructuralFeatures xsi:type="ecore:EReference" name="offersSequence" upperBound="-1" eType="//States/ActivityEdge_offers_Value" containment="true" eOpposite="//States/ActivityEdge_offers_Value/parent"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="TracedActivityFinalNode" eSuperTypes="//States/activitydiagram/TracedFinalNode"/> <eClassifiers xsi:type="ecore:EClass" name="TracedActivityNode" eSuperTypes="//States/activitydiagram/TracedNamedElement"> <eStructuralFeatures xsi:type="ecore:EReference" name="heldTokensSequence" upperBound="-1" eType="//States/ActivityNode_heldTokens_Value" containment="true" eOpposite="//States/ActivityNode_heldTokens_Value/parent"/> <eStructuralFeatures xsi:type="ecore:EReference" name="originalObject_ActivityNode"> <eType xsi:type="ecore:EClass" href="../../org.gemoc.activitydiagram.sequential.xactivitydiagram/model/XActivityDiagram.ecore#//ActivityNode"/> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="TracedBooleanVariable" eSuperTypes="//States/activitydiagram/TracedVariable"/> <eClassifiers xsi:type="ecore:EClass" name="TracedControlFlow" eSuperTypes="//States/activitydiagram/TracedActivityEdge"> <eStructuralFeatures xsi:type="ecore:EReference" name="originalObject"> <eType xsi:type="ecore:EClass" href="../../org.gemoc.activitydiagram.sequential.xactivitydiagram/model/XActivityDiagram.ecore#//ControlFlow"/> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="TracedControlNode" abstract="true" eSuperTypes="//States/activitydiagram/TracedActivityNode"/> <eClassifiers xsi:type="ecore:EClass" name="TracedControlToken" eSuperTypes="//States/activitydiagram/TracedToken"/> <eClassifiers xsi:type="ecore:EClass" name="TracedDecisionNode" eSuperTypes="//States/activitydiagram/TracedControlNode"/> <eClassifiers xsi:type="ecore:EClass" name="TracedExecutableNode" abstract="true" eSuperTypes="//States/activitydiagram/TracedActivityNode"/> <eClassifiers xsi:type="ecore:EClass" name="TracedFinalNode" abstract="true" eSuperTypes="//States/activitydiagram/TracedControlNode"/> <eClassifiers xsi:type="ecore:EClass" name="TracedForkNode" eSuperTypes="//States/activitydiagram/TracedControlNode"/> <eClassifiers xsi:type="ecore:EClass" name="TracedForkedToken" eSuperTypes="//States/activitydiagram/TracedToken"> <eStructuralFeatures xsi:type="ecore:EReference" name="baseTokenSequence" upperBound="-1" eType="//States/ForkedToken_baseToken_Value" containment="true" eOpposite="//States/ForkedToken_baseToken_Value/parent"/> <eStructuralFeatures xsi:type="ecore:EReference" name="remainingOffersCountSequence" upperBound="-1" eType="//States/ForkedToken_remainingOffersCount_Value" containment="true" eOpposite="//States/ForkedToken_remainingOffersCount_Value/parent"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="TracedInitialNode" eSuperTypes="//States/activitydiagram/TracedControlNode"/> <eClassifiers xsi:type="ecore:EClass" name="TracedInput"> <eStructuralFeatures xsi:type="ecore:EReference" name="inputValuesSequence" upperBound="-1" eType="//States/Input_inputValues_Value" containment="true" eOpposite="//States/Input_inputValues_Value/parent"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="TracedInputValue"> <eStructuralFeatures xsi:type="ecore:EReference" name="valueSequence" upperBound="-1" eType="//States/InputValue_value_Value" containment="true" eOpposite="//States/InputValue_value_Value/parent"/> <eStructuralFeatures xsi:type="ecore:EReference" name="variableSequence" upperBound="-1" eType="//States/InputValue_variable_Value" containment="true" eOpposite="//States/InputValue_variable_Value/parent"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="TracedIntegerVariable" eSuperTypes="//States/activitydiagram/TracedVariable"/> <eClassifiers xsi:type="ecore:EClass" name="TracedJoinNode" eSuperTypes="//States/activitydiagram/TracedControlNode"/> <eClassifiers xsi:type="ecore:EClass" name="TracedMergeNode" eSuperTypes="//States/activitydiagram/TracedControlNode"/> <eClassifiers xsi:type="ecore:EClass" name="TracedNamedElement" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="TracedOffer"> <eStructuralFeatures xsi:type="ecore:EReference" name="offeredTokensSequence" upperBound="-1" eType="//States/Offer_offeredTokens_Value" containment="true" eOpposite="//States/Offer_offeredTokens_Value/parent"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="TracedOpaqueAction" eSuperTypes="//States/activitydiagram/TracedAction"/> <eClassifiers xsi:type="ecore:EClass" name="TracedToken"/> <eClassifiers xsi:type="ecore:EClass" name="TracedTrace"> <eStructuralFeatures xsi:type="ecore:EReference" name="executedNodesSequence" upperBound="-1" eType="//States/Trace_executedNodes_Value" containment="true" eOpposite="//States/Trace_executedNodes_Value/parent"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="TracedVariable"> <eStructuralFeatures xsi:type="ecore:EReference" name="currentValueSequence" upperBound="-1" eType="//States/Variable_currentValue_Value" containment="true" eOpposite="//States/Variable_currentValue_Value/parent"/> <eStructuralFeatures xsi:type="ecore:EReference" name="originalObject_Variable"> <eType xsi:type="ecore:EClass" href="../../org.gemoc.activitydiagram.sequential.xactivitydiagram/model/XActivityDiagram.ecore#//Variable"/> </eStructuralFeatures> </eClassifiers> </eSubpackages> </eSubpackages> </ecore:EPackage>
github:ecore:/data/gemoc/activitydiagram/dev/gemoc_sequential/language_workbench/org.gemoc.activitydiagram.sequential.xactivitydiagram.trace/model/activitydiagramTrace.ecore
ecore
activitydiagramTrace SpecificTrace Activitydiagram_ActivityNode_AddTokens1_Sequence Activitydiagram_ActivityNode_Execute_Sequence Activitydiagram_ActivityNode_RemoveToken1_Sequence Activitydiagram_ActivityNode_SendOffers1_Sequence Activitydiagram_ActivityNode_TakeOfferdTokens1_Sequence Activitydiagram_ActivityNode_Terminate_Sequence Activitydiagram_Activity_Execute_Sequence Activitydiagram_Activity_Reset_Sequence Activitydiagram_BooleanVariable_Execute_Sequence Activitydiagram_BooleanVariable_Init_Sequence Activitydiagram_DecisionNode_SendOffers1_Sequence Activitydiagram_IntegerVariable_Execute_Sequence Activitydiagram_IntegerVariable_Init_Sequence Activitydiagram_Variable_Execute_Sequence Activitydiagram_Variable_Init_Sequence activitydiagram_tracedActivityFinalNodes activitydiagram_tracedActivityNodes activitydiagram_tracedActivitys activitydiagram_tracedBooleanVariables activitydiagram_tracedControlFlows activitydiagram_tracedControlTokens activitydiagram_tracedDecisionNodes activitydiagram_tracedForkNodes activitydiagram_tracedForkedTokens activitydiagram_tracedInitialNodes activitydiagram_tracedInputValues activitydiagram_tracedInputs activitydiagram_tracedIntegerVariables activitydiagram_tracedJoinNodes activitydiagram_tracedMergeNodes activitydiagram_tracedOffers activitydiagram_tracedOpaqueActions activitydiagram_tracedTokens activitydiagram_tracedTraces activitydiagram_tracedVariables statesTrace Steps Activitydiagram_ActivityNode_AddTokens1 getCaller Activitydiagram_ActivityNode_Execute getCaller Activitydiagram_ActivityNode_Execute_AbstractSubStep Activitydiagram_ActivityNode_Execute_ImplicitStep Activitydiagram_ActivityNode_RemoveToken1 getCaller Activitydiagram_ActivityNode_SendOffers1 getCaller Activitydiagram_ActivityNode_TakeOfferdTokens1 getCaller Activitydiagram_ActivityNode_Terminate getCaller Activitydiagram_Activity_Execute getCaller Activitydiagram_Activity_Execute_AbstractSubStep Activitydiagram_Activity_Execute_ImplicitStep Activitydiagram_Activity_Reset getCaller Activitydiagram_BooleanVariable_Execute getCaller Activitydiagram_BooleanVariable_Init getCaller Activitydiagram_DecisionNode_SendOffers1 getCaller Activitydiagram_IntegerVariable_Execute getCaller Activitydiagram_IntegerVariable_Init getCaller Activitydiagram_Variable_Execute getCaller Activitydiagram_Variable_Init getCaller RootImplicitStep SpecificStep endingState startingState States ActivityEdge_offers_Value getStatesNoOpposite offers parent states ActivityNode_heldTokens_Value getStatesNoOpposite heldTokens parent states Activity_trace_Value getStatesNoOpposite parent states trace ForkedToken_baseToken_Value getStatesNoOpposite baseToken parent states ForkedToken_remainingOffersCount_Value getStatesNoOpposite parent remainingOffersCount states InputValue_value_Value getStatesNoOpposite parent states value InputValue_variable_Value getStatesNoOpposite parent states variable Input_inputValues_Value getStatesNoOpposite inputValues parent states Offer_offeredTokens_Value getStatesNoOpposite offeredTokens parent states State activityEdge_offers_Values activityNode_heldTokens_Values activity_trace_Values endedSteps forkedToken_baseToken_Values forkedToken_remainingOffersCount_Values inputValue_value_Values inputValue_variable_Values input_inputValues_Values offer_offeredTokens_Values startedSteps trace_executedNodes_Values variable_currentValue_Values Trace_executedNodes_Value getStatesNoOpposite executedNodes parent states Value statesNoOpposite Variable_currentValue_Value getStatesNoOpposite currentValue parent states activitydiagram TracedAction TracedActivity originalObject traceSequence TracedActivityEdge offersSequence TracedActivityFinalNode TracedActivityNode heldTokensSequence originalObject_ActivityNode TracedBooleanVariable TracedControlFlow originalObject TracedControlNode TracedControlToken TracedDecisionNode TracedExecutableNode TracedFinalNode TracedForkNode TracedForkedToken baseTokenSequence remainingOffersCountSequence TracedInitialNode TracedInput inputValuesSequence TracedInputValue valueSequence variableSequence TracedIntegerVariable TracedJoinNode TracedMergeNode TracedNamedElement TracedOffer offeredTokensSequence TracedOpaqueAction TracedToken TracedTrace executedNodesSequence TracedVariable currentValueSequence originalObject_Variable
null
{"directed":true,"nodes":[{"nsPrefix":"activitydiagramTrace","nsURI":"activitydiagramTrace","name":"activitydiagramTrace","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SpecificTrace","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"nsPrefix":"events","nsURI":"activitydiagramTrace_Steps","name":"Steps","id":2,"eClass":"EPackage"},{"nsPrefix":"tracedclasses","nsURI":"activitydiagramTrace_States","name":"States","id":3,"eClass":"EPackage"},{"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":"Activitydiagram_ActivityNode_AddTokens1_Sequence","changeable":true,"resolveProxies":true,"lowerBound":0,"id":4,"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":"Activitydiagram_ActivityNode_Execute_Sequence","changeable":true,"resolveProxies":true,"lowerBound":0,"id":5,"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":"Activitydiagram_ActivityNode_RemoveToken1_Sequence","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":false,"unsettable":false,"transient":false,"unique":true,"name":"Activitydiagram_ActivityNode_SendOffers1_Sequence","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":false,"unsettable":false,"transient":false,"unique":true,"name":"Activitydiagram_ActivityNode_TakeOfferdTokens1_Sequence","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":false,"unsettable":false,"transient":false,"unique":true,"name":"Activitydiagram_ActivityNode_Terminate_Sequence","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":false,"unsettable":false,"transient":false,"unique":true,"name":"Activitydiagram_Activity_Execute_Sequence","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":false,"unsettable":false,"transient":false,"unique":true,"name":"Activitydiagram_Activity_Reset_Sequence","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":false,"unsettable":false,"transient":false,"unique":true,"name":"Activitydiagram_BooleanVariable_Execute_Sequence","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":"Activitydiagram_BooleanVariable_Init_Sequence","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":false,"unsettable":false,"transient":false,"unique":true,"name":"Activitydiagram_DecisionNode_SendOffers1_Sequence","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":false,"unsettable":false,"transient":false,"unique":true,"name":"Activitydiagram_IntegerVariable_Execute_Sequence","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":false,"unsettable":false,"transient":false,"unique":true,"name":"Activitydiagram_IntegerVariable_Init_Sequence","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":false,"unsettable":false,"transient":false,"unique":true,"name":"Activitydiagram_Variable_Execute_Sequence","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":false,"unsettable":false,"transient":false,"unique":true,"name":"Activitydiagram_Variable_Init_Sequence","changeable":true,"resolveProxies":true,"lowerBound":0,"id":18,"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":"activitydiagram_tracedActivityFinalNodes","changeable":true,"resolveProxies":true,"lowerBound":0,"id":19,"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":"activitydiagram_tracedActivityNodes","changeable":true,"resolveProxies":true,"lowerBound":0,"id":20,"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":"activitydiagram_tracedActivitys","changeable":true,"resolveProxies":true,"lowerBound":0,"id":21,"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":"activitydiagram_tracedBooleanVariables","changeable":true,"resolveProxies":true,"lowerBound":0,"id":22,"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":"activitydiagram_tracedControlFlows","changeable":true,"resolveProxies":true,"lowerBound":0,"id":23,"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":"activitydiagram_tracedControlTokens","changeable":true,"resolveProxies":true,"lowerBound":0,"id":24,"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":"activitydiagram_tracedDecisionNodes","changeable":true,"resolveProxies":true,"lowerBound":0,"id":25,"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":"activitydiagram_tracedForkNodes","changeable":true,"resolveProxies":true,"lowerBound":0,"id":26,"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":"activitydiagram_tracedForkedTokens","changeable":true,"resolveProxies":true,"lowerBound":0,"id":27,"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":"activitydiagram_tracedInitialNodes","changeable":true,"resolveProxies":true,"lowerBound":0,"id":28,"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":"activitydiagram_tracedInputValues","changeable":true,"resolveProxies":true,"lowerBound":0,"id":29,"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":"activitydiagram_tracedInputs","changeable":true,"resolveProxies":true,"lowerBound":0,"id":30,"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":"activitydiagram_tracedIntegerVariables","changeable":true,"resolveProxies":true,"lowerBound":0,"id":31,"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":"activitydiagram_tracedJoinNodes","changeable":true,"resolveProxies":true,"lowerBound":0,"id":32,"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":"activitydiagram_tracedMergeNodes","changeable":true,"resolveProxies":true,"lowerBound":0,"id":33,"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":"activitydiagram_tracedOffers","changeable":true,"resolveProxies":true,"lowerBound":0,"id":34,"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":"activitydiagram_tracedOpaqueActions","changeable":true,"resolveProxies":true,"lowerBound":0,"id":35,"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":"activitydiagram_tracedTokens","changeable":true,"resolveProxies":true,"lowerBound":0,"id":36,"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":"activitydiagram_tracedTraces","changeable":true,"resolveProxies":true,"lowerBound":0,"id":37,"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":"activitydiagram_tracedVariables","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":"statesTrace","changeable":true,"resolveProxies":true,"lowerBound":0,"id":39,"derived":false},{"id":40,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Activitydiagram_ActivityNode_AddTokens1","instanceClass":null,"abstract":false,"id":41,"interface":false,"eClass":"EClass"},{"id":42,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Activitydiagram_ActivityNode_Execute","instanceClass":null,"abstract":false,"id":43,"interface":false,"eClass":"EClass"},{"id":44,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Activitydiagram_ActivityNode_RemoveToken1","instanceClass":null,"abstract":false,"id":45,"interface":false,"eClass":"EClass"},{"id":46,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Activitydiagram_ActivityNode_SendOffers1","instanceClass":null,"abstract":false,"id":47,"interface":false,"eClass":"EClass"},{"id":48,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Activitydiagram_ActivityNode_TakeOfferdTokens1","instanceClass":null,"abstract":false,"id":49,"interface":false,"eClass":"EClass"},{"id":50,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Activitydiagram_ActivityNode_Terminate","instanceClass":null,"abstract":false,"id":51,"interface":false,"eClass":"EClass"},{"id":52,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Activitydiagram_Activity_Execute","instanceClass":null,"abstract":false,"id":53,"interface":false,"eClass":"EClass"},{"id":54,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Activitydiagram_Activity_Reset","instanceClass":null,"abstract":false,"id":55,"interface":false,"eClass":"EClass"},{"id":56,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Activitydiagram_BooleanVariable_Execute","instanceClass":null,"abstract":false,"id":57,"interface":false,"eClass":"EClass"},{"id":58,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Activitydiagram_BooleanVariable_Init","instanceClass":null,"abstract":false,"id":59,"interface":false,"eClass":"EClass"},{"id":60,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Activitydiagram_DecisionNode_SendOffers1","instanceClass":null,"abstract":false,"id":61,"interface":false,"eClass":"EClass"},{"id":62,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Activitydiagram_IntegerVariable_Execute","instanceClass":null,"abstract":false,"id":63,"interface":false,"eClass":"EClass"},{"id":64,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Activitydiagram_IntegerVariable_Init","instanceClass":null,"abstract":false,"id":65,"interface":false,"eClass":"EClass"},{"id":66,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Activitydiagram_Variable_Execute","instanceClass":null,"abstract":false,"id":67,"interface":false,"eClass":"EClass"},{"id":68,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Activitydiagram_Variable_Init","instanceClass":null,"abstract":false,"id":69,"interface":false,"eClass":"EClass"},{"id":70,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TracedActivityFinalNode","instanceClass":null,"abstract":false,"id":71,"interface":false,"eClass":"EClass"},{"id":72,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TracedActivityNode","instanceClass":null,"abstract":false,"id":73,"interface":false,"eClass":"EClass"},{"id":74,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TracedActivity","instanceClass":null,"abstract":false,"id":75,"interface":false,"eClass":"EClass"},{"id":76,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TracedBooleanVariable","instanceClass":null,"abstract":false,"id":77,"interface":false,"eClass":"EClass"},{"id":78,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TracedControlFlow","instanceClass":null,"abstract":false,"id":79,"interface":false,"eClass":"EClass"},{"id":80,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TracedControlToken","instanceClass":null,"abstract":false,"id":81,"interface":false,"eClass":"EClass"},{"id":82,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TracedDecisionNode","instanceClass":null,"abstract":false,"id":83,"interface":false,"eClass":"EClass"},{"id":84,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TracedForkNode","instanceClass":null,"abstract":false,"id":85,"interface":false,"eClass":"EClass"},{"id":86,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TracedForkedToken","instanceClass":null,"abstract":false,"id":87,"interface":false,"eClass":"EClass"},{"id":88,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TracedInitialNode","instanceClass":null,"abstract":false,"id":89,"interface":false,"eClass":"EClass"},{"id":90,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TracedInputValue","instanceClass":null,"abstract":false,"id":91,"interface":false,"eClass":"EClass"},{"id":92,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TracedInput","instanceClass":null,"abstract":false,"id":93,"interface":false,"eClass":"EClass"},{"id":94,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TracedIntegerVariable","instanceClass":null,"abstract":false,"id":95,"interface":false,"eClass":"EClass"},{"id":96,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TracedJoinNode","instanceClass":null,"abstract":false,"id":97,"interface":false,"eClass":"EClass"},{"id":98,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TracedMergeNode","instanceClass":null,"abstract":false,"id":99,"interface":false,"eClass":"EClass"},{"id":100,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TracedOffer","instanceClass":null,"abstract":false,"id":101,"interface":false,"eClass":"EClass"},{"id":102,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TracedOpaqueAction","instanceClass":null,"abstract":false,"id":103,"interface":false,"eClass":"EClass"},{"id":104,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TracedToken","instanceClass":null,"abstract":false,"id":105,"interface":false,"eClass":"EClass"},{"id":106,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TracedTrace","instanceClass":null,"abstract":false,"id":107,"interface":false,"eClass":"EClass"},{"id":108,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TracedVariable","instanceClass":null,"abstract":false,"id":109,"interface":false,"eClass":"EClass"},{"id":110,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"State","instanceClass":null,"abstract":false,"id":111,"interface":false,"eClass":"EClass"},{"id":112,"eClass":"EGenericType"},{"id":113,"eClass":"EGenericType"},{"id":114,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SpecificStep","instanceClass":null,"abstract":true,"id":115,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Activitydiagram_ActivityNode_Execute_AbstractSubStep","instanceClass":null,"abstract":true,"id":116,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Activitydiagram_ActivityNode_Execute_ImplicitStep","instanceClass":null,"abstract":false,"id":117,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Activitydiagram_Activity_Execute_AbstractSubStep","instanceClass":null,"abstract":true,"id":118,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Activitydiagram_Activity_Execute_ImplicitStep","instanceClass":null,"abstract":false,"id":119,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RootImplicitStep","instanceClass":null,"abstract":false,"id":120,"interface":false,"eClass":"EClass"},{"ordered":true,"upperBound":1,"unique":true,"name":"getCaller","lowerBound":1,"id":121,"many":false,"required":true,"eClass":"EOperation"},{"id":122,"eClass":"EGenericType"},{"id":123,"eClass":"EGenericType"},{"id":124,"eClass":"EGenericType"},{"id":125,"eClass":"EGenericType"},{"id":126,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"getCaller","lowerBound":1,"id":127,"many":false,"required":true,"eClass":"EOperation"},{"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"},{"id":135,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"getCaller","lowerBound":1,"id":136,"many":false,"required":true,"eClass":"EOperation"},{"id":137,"eClass":"EGenericType"},{"id":138,"eClass":"EGenericType"},{"id":139,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"getCaller","lowerBound":1,"id":140,"many":false,"required":true,"eClass":"EOperation"},{"id":141,"eClass":"EGenericType"},{"id":142,"eClass":"EGenericType"},{"id":143,"eClass":"EGenericType"},{"id":144,"eClass":"EGenericType"},{"id":145,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"getCaller","lowerBound":1,"id":146,"many":false,"required":true,"eClass":"EOperation"},{"id":147,"eClass":"EGenericType"},{"id":148,"eClass":"EGenericType"},{"id":149,"eClass":"EGenericType"},{"id":150,"eClass":"EGenericType"},{"id":151,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"getCaller","lowerBound":1,"id":152,"many":false,"required":true,"eClass":"EOperation"},{"id":153,"eClass":"EGenericType"},{"id":154,"eClass":"EGenericType"},{"id":155,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"getCaller","lowerBound":1,"id":156,"many":false,"required":true,"eClass":"EOperation"},{"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"},{"ordered":true,"upperBound":1,"unique":true,"name":"getCaller","lowerBound":1,"id":164,"many":false,"required":true,"eClass":"EOperation"},{"id":165,"eClass":"EGenericType"},{"id":166,"eClass":"EGenericType"},{"id":167,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"getCaller","lowerBound":1,"id":168,"many":false,"required":true,"eClass":"EOperation"},{"id":169,"eClass":"EGenericType"},{"id":170,"eClass":"EGenericType"},{"id":171,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"getCaller","lowerBound":1,"id":172,"many":false,"required":true,"eClass":"EOperation"},{"id":173,"eClass":"EGenericType"},{"id":174,"eClass":"EGenericType"},{"id":175,"eClass":"EGenericType"},{"id":176,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"getCaller","lowerBound":1,"id":177,"many":false,"required":true,"eClass":"EOperation"},{"id":178,"eClass":"EGenericType"},{"id":179,"eClass":"EGenericType"},{"id":180,"eClass":"EGenericType"},{"id":181,"eClass":"EGenericType"},{"id":182,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"getCaller","lowerBound":1,"id":183,"many":false,"required":true,"eClass":"EOperation"},{"id":184,"eClass":"EGenericType"},{"id":185,"eClass":"EGenericType"},{"id":186,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"getCaller","lowerBound":1,"id":187,"many":false,"required":true,"eClass":"EOperation"},{"id":188,"eClass":"EGenericType"},{"id":189,"eClass":"EGenericType"},{"id":190,"eClass":"EGenericType"},{"id":191,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"getCaller","lowerBound":1,"id":192,"many":false,"required":true,"eClass":"EOperation"},{"id":193,"eClass":"EGenericType"},{"id":194,"eClass":"EGenericType"},{"id":195,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"getCaller","lowerBound":1,"id":196,"many":false,"required":true,"eClass":"EOperation"},{"id":197,"eClass":"EGenericType"},{"id":198,"eClass":"EGenericType"},{"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":false,"unsettable":false,"transient":false,"unique":true,"name":"endingState","changeable":true,"resolveProxies":true,"lowerBound":0,"id":202,"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":"startingState","changeable":true,"resolveProxies":true,"lowerBound":1,"id":203,"derived":false},{"id":204,"eClass":"EGenericType"},{"id":205,"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":"endedSteps","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":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"startedSteps","changeable":true,"resolveProxies":true,"lowerBound":0,"id":208,"derived":false},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ActivityEdge_offers_Value","instanceClass":null,"abstract":false,"id":209,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ActivityNode_heldTokens_Value","instanceClass":null,"abstract":false,"id":210,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Activity_trace_Value","instanceClass":null,"abstract":false,"id":211,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ForkedToken_baseToken_Value","instanceClass":null,"abstract":false,"id":212,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ForkedToken_remainingOffersCount_Value","instanceClass":null,"abstract":false,"id":213,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InputValue_value_Value","instanceClass":null,"abstract":false,"id":214,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InputValue_variable_Value","instanceClass":null,"abstract":false,"id":215,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Input_inputValues_Value","instanceClass":null,"abstract":false,"id":216,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Offer_offeredTokens_Value","instanceClass":null,"abstract":false,"id":217,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Trace_executedNodes_Value","instanceClass":null,"abstract":false,"id":218,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Value","instanceClass":null,"abstract":true,"id":219,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Variable_currentValue_Value","instanceClass":null,"abstract":false,"id":220,"interface":false,"eClass":"EClass"},{"nsPrefix":"","nsURI":"activitydiagramTrace_activitydiagram","name":"activitydiagram","id":221,"eClass":"EPackage"},{"ordered":true,"upperBound":-1,"unique":true,"name":"getStatesNoOpposite","lowerBound":1,"id":222,"many":true,"required":true,"eClass":"EOperation"},{"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":"offers","changeable":true,"resolveProxies":true,"lowerBound":0,"id":223,"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":"parent","changeable":true,"resolveProxies":true,"lowerBound":1,"id":224,"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":"states","changeable":true,"resolveProxies":true,"lowerBound":1,"id":225,"derived":false},{"id":226,"eClass":"EGenericType"},{"id":227,"eClass":"EGenericType"},{"id":228,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TracedActivityEdge","instanceClass":null,"abstract":true,"id":229,"interface":false,"eClass":"EClass"},{"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":"offersSequence","changeable":true,"resolveProxies":true,"lowerBound":0,"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":"activityEdge_offers_Values","changeable":true,"resolveProxies":true,"lowerBound":0,"id":233,"derived":false},{"ordered":true,"upperBound":-1,"unique":true,"name":"getStatesNoOpposite","lowerBound":1,"id":234,"many":true,"required":true,"eClass":"EOperation"},{"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":"heldTokens","changeable":true,"resolveProxies":true,"lowerBound":0,"id":235,"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":"parent","changeable":true,"resolveProxies":true,"lowerBound":1,"id":236,"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":"states","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"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"heldTokensSequence","changeable":true,"resolveProxies":true,"lowerBound":0,"id":242,"derived":false},{"id":243,"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":"activityNode_heldTokens_Values","changeable":true,"resolveProxies":true,"lowerBound":0,"id":244,"derived":false},{"ordered":true,"upperBound":-1,"unique":true,"name":"getStatesNoOpposite","lowerBound":1,"id":245,"many":true,"required":true,"eClass":"EOperation"},{"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":"parent","changeable":true,"resolveProxies":true,"lowerBound":1,"id":246,"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":"states","changeable":true,"resolveProxies":true,"lowerBound":1,"id":247,"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":"trace","changeable":true,"resolveProxies":true,"lowerBound":0,"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":true,"unsettable":false,"transient":false,"unique":true,"name":"traceSequence","changeable":true,"resolveProxies":true,"lowerBound":0,"id":252,"derived":false},{"id":253,"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":"activity_trace_Values","changeable":true,"resolveProxies":true,"lowerBound":0,"id":254,"derived":false},{"id":255,"eClass":"EGenericType"},{"ordered":true,"upperBound":-1,"unique":true,"name":"getStatesNoOpposite","lowerBound":1,"id":256,"many":true,"required":true,"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":false,"name":"baseToken","changeable":true,"resolveProxies":true,"lowerBound":0,"id":257,"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":"parent","changeable":true,"resolveProxies":true,"lowerBound":1,"id":258,"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":"states","changeable":true,"resolveProxies":true,"lowerBound":1,"id":259,"derived":false},{"id":260,"eClass":"EGenericType"},{"id":261,"eClass":"EGenericType"},{"id":262,"eClass":"EGenericType"},{"id":263,"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":"baseTokenSequence","changeable":true,"resolveProxies":true,"lowerBound":0,"id":264,"derived":false},{"id":265,"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":"forkedToken_baseToken_Values","changeable":true,"resolveProxies":true,"lowerBound":0,"id":266,"derived":false},{"ordered":true,"upperBound":-1,"unique":true,"name":"getStatesNoOpposite","lowerBound":1,"id":267,"many":true,"required":true,"eClass":"EOperation"},{"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":"parent","changeable":true,"resolveProxies":true,"lowerBound":1,"id":268,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"remainingOffersCount","changeable":true,"lowerBound":0,"iD":false,"id":269,"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":"states","changeable":true,"resolveProxies":true,"lowerBound":1,"id":270,"derived":false},{"id":271,"eClass":"EGenericType"},{"id":272,"eClass":"EGenericType"},{"id":273,"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":"remainingOffersCountSequence","changeable":true,"resolveProxies":true,"lowerBound":0,"id":274,"derived":false},{"id":275,"eClass":"EGenericType"},{"id":276,"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":"forkedToken_remainingOffersCount_Values","changeable":true,"resolveProxies":true,"lowerBound":0,"id":277,"derived":false},{"ordered":true,"upperBound":-1,"unique":true,"name":"getStatesNoOpposite","lowerBound":1,"id":278,"many":true,"required":true,"eClass":"EOperation"},{"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":"parent","changeable":true,"resolveProxies":true,"lowerBound":1,"id":279,"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":"states","changeable":true,"resolveProxies":true,"lowerBound":1,"id":280,"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":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":"valueSequence","changeable":true,"resolveProxies":true,"lowerBound":0,"id":285,"derived":false},{"id":286,"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":"inputValue_value_Values","changeable":true,"resolveProxies":true,"lowerBound":0,"id":287,"derived":false},{"id":288,"eClass":"EGenericType"},{"ordered":true,"upperBound":-1,"unique":true,"name":"getStatesNoOpposite","lowerBound":1,"id":289,"many":true,"required":true,"eClass":"EOperation"},{"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":"parent","changeable":true,"resolveProxies":true,"lowerBound":1,"id":290,"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":"states","changeable":true,"resolveProxies":true,"lowerBound":1,"id":291,"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":false,"name":"variable","changeable":true,"resolveProxies":true,"lowerBound":0,"id":292,"derived":false},{"id":293,"eClass":"EGenericType"},{"id":294,"eClass":"EGenericType"},{"id":295,"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":"variableSequence","changeable":true,"resolveProxies":true,"lowerBound":0,"id":296,"derived":false},{"id":297,"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":"inputValue_variable_Values","changeable":true,"resolveProxies":true,"lowerBound":0,"id":298,"derived":false},{"id":299,"eClass":"EGenericType"},{"ordered":true,"upperBound":-1,"unique":true,"name":"getStatesNoOpposite","lowerBound":1,"id":300,"many":true,"required":true,"eClass":"EOperation"},{"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":"inputValues","changeable":true,"resolveProxies":true,"lowerBound":0,"id":301,"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":"parent","changeable":true,"resolveProxies":true,"lowerBound":1,"id":302,"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":"states","changeable":true,"resolveProxies":true,"lowerBound":1,"id":303,"derived":false},{"id":304,"eClass":"EGenericType"},{"id":305,"eClass":"EGenericType"},{"id":306,"eClass":"EGenericType"},{"id":307,"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":"inputValuesSequence","changeable":true,"resolveProxies":true,"lowerBound":0,"id":308,"derived":false},{"id":309,"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":"input_inputValues_Values","changeable":true,"resolveProxies":true,"lowerBound":0,"id":310,"derived":false},{"ordered":true,"upperBound":-1,"unique":true,"name":"getStatesNoOpposite","lowerBound":1,"id":311,"many":true,"required":true,"eClass":"EOperation"},{"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":"offeredTokens","changeable":true,"resolveProxies":true,"lowerBound":0,"id":312,"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":"parent","changeable":true,"resolveProxies":true,"lowerBound":1,"id":313,"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":"states","changeable":true,"resolveProxies":true,"lowerBound":1,"id":314,"derived":false},{"id":315,"eClass":"EGenericType"},{"id":316,"eClass":"EGenericType"},{"id":317,"eClass":"EGenericType"},{"id":318,"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":"offeredTokensSequence","changeable":true,"resolveProxies":true,"lowerBound":0,"id":319,"derived":false},{"id":320,"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":"offer_offeredTokens_Values","changeable":true,"resolveProxies":true,"lowerBound":0,"id":321,"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":"trace_executedNodes_Values","changeable":true,"resolveProxies":true,"lowerBound":0,"id":322,"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":"variable_currentValue_Values","changeable":true,"resolveProxies":true,"lowerBound":0,"id":323,"derived":false},{"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"},{"id":333,"eClass":"EGenericType"},{"id":334,"eClass":"EGenericType"},{"id":335,"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":"states","changeable":true,"resolveProxies":true,"lowerBound":1,"id":336,"derived":false},{"id":337,"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":"states","changeable":true,"resolveProxies":true,"lowerBound":1,"id":338,"derived":false},{"ordered":true,"upperBound":-1,"unique":true,"name":"getStatesNoOpposite","lowerBound":1,"id":339,"many":true,"required":true,"eClass":"EOperation"},{"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":"executedNodes","changeable":true,"resolveProxies":true,"lowerBound":0,"id":340,"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":"parent","changeable":true,"resolveProxies":true,"lowerBound":1,"id":341,"derived":false},{"id":342,"eClass":"EGenericType"},{"id":343,"eClass":"EGenericType"},{"id":344,"eClass":"EGenericType"},{"id":345,"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":"executedNodesSequence","changeable":true,"resolveProxies":true,"lowerBound":0,"id":346,"derived":false},{"id":347,"eClass":"EGenericType"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":true,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":true,"unique":true,"name":"statesNoOpposite","changeable":false,"resolveProxies":true,"lowerBound":1,"id":348,"derived":true},{"id":349,"eClass":"EGenericType"},{"ordered":true,"upperBound":-1,"unique":true,"name":"getStatesNoOpposite","lowerBound":1,"id":350,"many":true,"required":true,"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":false,"name":"currentValue","changeable":true,"resolveProxies":true,"lowerBound":0,"id":351,"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":"parent","changeable":true,"resolveProxies":true,"lowerBound":1,"id":352,"derived":false},{"id":353,"eClass":"EGenericType"},{"id":354,"eClass":"EGenericType"},{"id":355,"eClass":"EGenericType"},{"id":356,"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":"currentValueSequence","changeable":true,"resolveProxies":true,"lowerBound":0,"id":357,"derived":false},{"id":358,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TracedAction","instanceClass":null,"abstract":true,"id":359,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TracedControlNode","instanceClass":null,"abstract":true,"id":360,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TracedExecutableNode","instanceClass":null,"abstract":true,"id":361,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TracedFinalNode","instanceClass":null,"abstract":true,"id":362,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TracedNamedElement","instanceClass":null,"abstract":true,"id":363,"interface":false,"eClass":"EClass"},{"id":364,"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":"originalObject","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"},{"id":370,"eClass":"EGenericType"},{"id":371,"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":"originalObject_ActivityNode","changeable":true,"resolveProxies":true,"lowerBound":0,"id":372,"derived":false},{"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":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"originalObject","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"},{"id":385,"eClass":"EGenericType"},{"id":386,"eClass":"EGenericType"},{"id":387,"eClass":"EGenericType"},{"id":388,"eClass":"EGenericType"},{"id":389,"eClass":"EGenericType"},{"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"},{"id":397,"eClass":"EGenericType"},{"id":398,"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":"originalObject_Variable","changeable":true,"resolveProxies":true,"lowerBound":0,"id":399,"derived":false},{"id":400,"eClass":"EGenericType"},{"id":401,"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":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":21},{"source":1,"target":22},{"source":1,"target":23},{"source":1,"target":24},{"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":1,"target":31},{"source":1,"target":32},{"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":4,"target":41},{"source":4,"target":42},{"source":4,"target":1},{"source":42,"target":41},{"source":5,"target":43},{"source":5,"target":44},{"source":5,"target":1},{"source":44,"target":43},{"source":6,"target":45},{"source":6,"target":46},{"source":6,"target":1},{"source":46,"target":45},{"source":7,"target":47},{"source":7,"target":48},{"source":7,"target":1},{"source":48,"target":47},{"source":8,"target":49},{"source":8,"target":50},{"source":8,"target":1},{"source":50,"target":49},{"source":9,"target":51},{"source":9,"target":52},{"source":9,"target":1},{"source":52,"target":51},{"source":10,"target":53},{"source":10,"target":54},{"source":10,"target":1},{"source":54,"target":53},{"source":11,"target":55},{"source":11,"target":56},{"source":11,"target":1},{"source":56,"target":55},{"source":12,"target":57},{"source":12,"target":58},{"source":12,"target":1},{"source":58,"target":57},{"source":13,"target":59},{"source":13,"target":60},{"source":13,"target":1},{"source":60,"target":59},{"source":14,"target":61},{"source":14,"target":62},{"source":14,"target":1},{"source":62,"target":61},{"source":15,"target":63},{"source":15,"target":64},{"source":15,"target":1},{"source":64,"target":63},{"source":16,"target":65},{"source":16,"target":66},{"source":16,"target":1},{"source":66,"target":65},{"source":17,"target":67},{"source":17,"target":68},{"source":17,"target":1},{"source":68,"target":67},{"source":18,"target":69},{"source":18,"target":70},{"source":18,"target":1},{"source":70,"target":69},{"source":19,"target":71},{"source":19,"target":72},{"source":19,"target":1},{"source":72,"target":71},{"source":20,"target":73},{"source":20,"target":74},{"source":20,"target":1},{"source":74,"target":73},{"source":21,"target":75},{"source":21,"target":76},{"source":21,"target":1},{"source":76,"target":75},{"source":22,"target":77},{"source":22,"target":78},{"source":22,"target":1},{"source":78,"target":77},{"source":23,"target":79},{"source":23,"target":80},{"source":23,"target":1},{"source":80,"target":79},{"source":24,"target":81},{"source":24,"target":82},{"source":24,"target":1},{"source":82,"target":81},{"source":25,"target":83},{"source":25,"target":84},{"source":25,"target":1},{"source":84,"target":83},{"source":26,"target":85},{"source":26,"target":86},{"source":26,"target":1},{"source":86,"target":85},{"source":27,"target":87},{"source":27,"target":88},{"source":27,"target":1},{"source":88,"target":87},{"source":28,"target":89},{"source":28,"target":90},{"source":28,"target":1},{"source":90,"target":89},{"source":29,"target":91},{"source":29,"target":92},{"source":29,"target":1},{"source":92,"target":91},{"source":30,"target":93},{"source":30,"target":94},{"source":30,"target":1},{"source":94,"target":93},{"source":31,"target":95},{"source":31,"target":96},{"source":31,"target":1},{"source":96,"target":95},{"source":32,"target":97},{"source":32,"target":98},{"source":32,"target":1},{"source":98,"target":97},{"source":33,"target":99},{"source":33,"target":100},{"source":33,"target":1},{"source":100,"target":99},{"source":34,"target":101},{"source":34,"target":102},{"source":34,"target":1},{"source":102,"target":101},{"source":35,"target":103},{"source":35,"target":104},{"source":35,"target":1},{"source":104,"target":103},{"source":36,"target":105},{"source":36,"target":106},{"source":36,"target":1},{"source":106,"target":105},{"source":37,"target":107},{"source":37,"target":108},{"source":37,"target":1},{"source":108,"target":107},{"source":38,"target":109},{"source":38,"target":110},{"source":38,"target":1},{"source":110,"target":109},{"source":39,"target":111},{"source":39,"target":112},{"source":39,"target":1},{"source":112,"target":111},{"source":40,"target":113},{"source":113,"target":114},{"source":114,"target":115},{"source":2,"target":41},{"source":2,"target":43},{"source":2,"target":116},{"source":2,"target":117},{"source":2,"target":45},{"source":2,"target":47},{"source":2,"target":49},{"source":2,"target":51},{"source":2,"target":53},{"source":2,"target":118},{"source":2,"target":119},{"source":2,"target":55},{"source":2,"target":57},{"source":2,"target":59},{"source":2,"target":61},{"source":2,"target":63},{"source":2,"target":65},{"source":2,"target":67},{"source":2,"target":69},{"source":2,"target":120},{"source":2,"target":115},{"source":2,"target":0},{"source":41,"target":2},{"source":41,"target":118},{"source":41,"target":116},{"source":41,"target":115},{"source":41,"target":121},{"source":41,"target":122},{"source":41,"target":123},{"source":41,"target":124},{"source":41,"target":125},{"source":121,"target":73},{"source":121,"target":126},{"source":121,"target":41},{"source":126,"target":73},{"source":122,"target":118},{"source":123,"target":116},{"source":124,"target":115},{"source":43,"target":2},{"source":43,"target":118},{"source":43,"target":115},{"source":43,"target":127},{"source":43,"target":128},{"source":43,"target":129},{"source":43,"target":130},{"source":127,"target":73},{"source":127,"target":131},{"source":127,"target":43},{"source":131,"target":73},{"source":128,"target":118},{"source":129,"target":115},{"source":130,"target":132},{"source":132,"target":116},{"source":116,"target":2},{"source":116,"target":115},{"source":116,"target":133},{"source":133,"target":115},{"source":117,"target":2},{"source":117,"target":116},{"source":117,"target":134},{"source":117,"target":135},{"source":134,"target":116},{"source":45,"target":2},{"source":45,"target":115},{"source":45,"target":136},{"source":45,"target":137},{"source":45,"target":138},{"source":136,"target":73},{"source":136,"target":139},{"source":136,"target":45},{"source":139,"target":73},{"source":137,"target":115},{"source":47,"target":2},{"source":47,"target":115},{"source":47,"target":118},{"source":47,"target":116},{"source":47,"target":140},{"source":47,"target":141},{"source":47,"target":142},{"source":47,"target":143},{"source":47,"target":144},{"source":140,"target":73},{"source":140,"target":145},{"source":140,"target":47},{"source":145,"target":73},{"source":141,"target":115},{"source":143,"target":118},{"source":144,"target":116},{"source":49,"target":2},{"source":49,"target":115},{"source":49,"target":118},{"source":49,"target":116},{"source":49,"target":146},{"source":49,"target":147},{"source":49,"target":148},{"source":49,"target":149},{"source":49,"target":150},{"source":146,"target":73},{"source":146,"target":151},{"source":146,"target":49},{"source":151,"target":73},{"source":147,"target":115},{"source":149,"target":118},{"source":150,"target":116},{"source":51,"target":2},{"source":51,"target":115},{"source":51,"target":152},{"source":51,"target":153},{"source":51,"target":154},{"source":152,"target":73},{"source":152,"target":155},{"source":152,"target":51},{"source":155,"target":73},{"source":153,"target":115},{"source":53,"target":2},{"source":53,"target":115},{"source":53,"target":156},{"source":53,"target":157},{"source":53,"target":158},{"source":156,"target":75},{"source":156,"target":159},{"source":156,"target":53},{"source":159,"target":75},{"source":157,"target":115},{"source":158,"target":160},{"source":160,"target":118},{"source":118,"target":2},{"source":118,"target":115},{"source":118,"target":161},{"source":161,"target":115},{"source":119,"target":2},{"source":119,"target":118},{"source":119,"target":162},{"source":119,"target":163},{"source":162,"target":118},{"source":55,"target":2},{"source":55,"target":115},{"source":55,"target":164},{"source":55,"target":165},{"source":55,"target":166},{"source":164,"target":75},{"source":164,"target":167},{"source":164,"target":55},{"source":167,"target":75},{"source":165,"target":115},{"source":57,"target":2},{"source":57,"target":115},{"source":57,"target":168},{"source":57,"target":169},{"source":57,"target":170},{"source":168,"target":77},{"source":168,"target":171},{"source":168,"target":57},{"source":171,"target":77},{"source":169,"target":115},{"source":59,"target":2},{"source":59,"target":118},{"source":59,"target":115},{"source":59,"target":172},{"source":59,"target":173},{"source":59,"target":174},{"source":59,"target":175},{"source":172,"target":77},{"source":172,"target":176},{"source":172,"target":59},{"source":176,"target":77},{"source":173,"target":118},{"source":174,"target":115},{"source":61,"target":2},{"source":61,"target":118},{"source":61,"target":116},{"source":61,"target":115},{"source":61,"target":177},{"source":61,"target":178},{"source":61,"target":179},{"source":61,"target":180},{"source":61,"target":181},{"source":177,"target":83},{"source":177,"target":182},{"source":177,"target":61},{"source":182,"target":83},{"source":178,"target":118},{"source":179,"target":116},{"source":180,"target":115},{"source":63,"target":2},{"source":63,"target":115},{"source":63,"target":183},{"source":63,"target":184},{"source":63,"target":185},{"source":183,"target":95},{"source":183,"target":186},{"source":183,"target":63},{"source":186,"target":95},{"source":184,"target":115},{"source":65,"target":2},{"source":65,"target":118},{"source":65,"target":115},{"source":65,"target":187},{"source":65,"target":188},{"source":65,"target":189},{"source":65,"target":190},{"source":187,"target":95},{"source":187,"target":191},{"source":187,"target":65},{"source":191,"target":95},{"source":188,"target":118},{"source":189,"target":115},{"source":67,"target":2},{"source":67,"target":115},{"source":67,"target":192},{"source":67,"target":193},{"source":67,"target":194},{"source":192,"target":109},{"source":192,"target":195},{"source":192,"target":67},{"source":195,"target":109},{"source":193,"target":115},{"source":69,"target":2},{"source":69,"target":118},{"source":69,"target":115},{"source":69,"target":196},{"source":69,"target":197},{"source":69,"target":198},{"source":69,"target":199},{"source":196,"target":109},{"source":196,"target":200},{"source":196,"target":69},{"source":200,"target":109},{"source":197,"target":118},{"source":198,"target":115},{"source":120,"target":2},{"source":120,"target":201},{"source":115,"target":2},{"source":115,"target":202},{"source":115,"target":203},{"source":115,"target":204},{"source":202,"target":111},{"source":202,"target":205},{"source":202,"target":115},{"source":202,"target":206},{"source":205,"target":111},{"source":203,"target":111},{"source":203,"target":207},{"source":203,"target":115},{"source":203,"target":208},{"source":207,"target":111},{"source":3,"target":209},{"source":3,"target":210},{"source":3,"target":211},{"source":3,"target":212},{"source":3,"target":213},{"source":3,"target":214},{"source":3,"target":215},{"source":3,"target":216},{"source":3,"target":217},{"source":3,"target":111},{"source":3,"target":218},{"source":3,"target":219},{"source":3,"target":220},{"source":3,"target":221},{"source":3,"target":0},{"source":209,"target":3},{"source":209,"target":219},{"source":209,"target":222},{"source":209,"target":223},{"source":209,"target":224},{"source":209,"target":225},{"source":209,"target":226},{"source":222,"target":111},{"source":222,"target":227},{"source":222,"target":209},{"source":227,"target":111},{"source":223,"target":101},{"source":223,"target":228},{"source":223,"target":209},{"source":228,"target":101},{"source":224,"target":229},{"source":224,"target":230},{"source":224,"target":209},{"source":224,"target":231},{"source":230,"target":229},{"source":225,"target":111},{"source":225,"target":232},{"source":225,"target":209},{"source":225,"target":233},{"source":232,"target":111},{"source":226,"target":219},{"source":210,"target":3},{"source":210,"target":219},{"source":210,"target":234},{"source":210,"target":235},{"source":210,"target":236},{"source":210,"target":237},{"source":210,"target":238},{"source":234,"target":111},{"source":234,"target":239},{"source":234,"target":210},{"source":239,"target":111},{"source":235,"target":105},{"source":235,"target":240},{"source":235,"target":210},{"source":240,"target":105},{"source":236,"target":73},{"source":236,"target":241},{"source":236,"target":210},{"source":236,"target":242},{"source":241,"target":73},{"source":237,"target":111},{"source":237,"target":243},{"source":237,"target":210},{"source":237,"target":244},{"source":243,"target":111},{"source":238,"target":219},{"source":211,"target":3},{"source":211,"target":219},{"source":211,"target":245},{"source":211,"target":246},{"source":211,"target":247},{"source":211,"target":248},{"source":211,"target":249},{"source":245,"target":111},{"source":245,"target":250},{"source":245,"target":211},{"source":250,"target":111},{"source":246,"target":75},{"source":246,"target":251},{"source":246,"target":211},{"source":246,"target":252},{"source":251,"target":75},{"source":247,"target":111},{"source":247,"target":253},{"source":247,"target":211},{"source":247,"target":254},{"source":253,"target":111},{"source":248,"target":107},{"source":248,"target":255},{"source":248,"target":211},{"source":255,"target":107},{"source":249,"target":219},{"source":212,"target":3},{"source":212,"target":219},{"source":212,"target":256},{"source":212,"target":257},{"source":212,"target":258},{"source":212,"target":259},{"source":212,"target":260},{"source":256,"target":111},{"source":256,"target":261},{"source":256,"target":212},{"source":261,"target":111},{"source":257,"target":105},{"source":257,"target":262},{"source":257,"target":212},{"source":262,"target":105},{"source":258,"target":87},{"source":258,"target":263},{"source":258,"target":212},{"source":258,"target":264},{"source":263,"target":87},{"source":259,"target":111},{"source":259,"target":265},{"source":259,"target":212},{"source":259,"target":266},{"source":265,"target":111},{"source":260,"target":219},{"source":213,"target":3},{"source":213,"target":219},{"source":213,"target":267},{"source":213,"target":268},{"source":213,"target":269},{"source":213,"target":270},{"source":213,"target":271},{"source":267,"target":111},{"source":267,"target":272},{"source":267,"target":213},{"source":272,"target":111},{"source":268,"target":87},{"source":268,"target":273},{"source":268,"target":213},{"source":268,"target":274},{"source":273,"target":87},{"source":269,"target":275},{"source":269,"target":213},{"source":270,"target":111},{"source":270,"target":276},{"source":270,"target":213},{"source":270,"target":277},{"source":276,"target":111},{"source":271,"target":219},{"source":214,"target":3},{"source":214,"target":219},{"source":214,"target":278},{"source":214,"target":279},{"source":214,"target":280},{"source":214,"target":281},{"source":214,"target":282},{"source":278,"target":111},{"source":278,"target":283},{"source":278,"target":214},{"source":283,"target":111},{"source":279,"target":91},{"source":279,"target":284},{"source":279,"target":214},{"source":279,"target":285},{"source":284,"target":91},{"source":280,"target":111},{"source":280,"target":286},{"source":280,"target":214},{"source":280,"target":287},{"source":286,"target":111},{"source":281,"target":288},{"source":281,"target":214},{"source":282,"target":219},{"source":215,"target":3},{"source":215,"target":219},{"source":215,"target":289},{"source":215,"target":290},{"source":215,"target":291},{"source":215,"target":292},{"source":215,"target":293},{"source":289,"target":111},{"source":289,"target":294},{"source":289,"target":215},{"source":294,"target":111},{"source":290,"target":91},{"source":290,"target":295},{"source":290,"target":215},{"source":290,"target":296},{"source":295,"target":91},{"source":291,"target":111},{"source":291,"target":297},{"source":291,"target":215},{"source":291,"target":298},{"source":297,"target":111},{"source":292,"target":109},{"source":292,"target":299},{"source":292,"target":215},{"source":299,"target":109},{"source":293,"target":219},{"source":216,"target":3},{"source":216,"target":219},{"source":216,"target":300},{"source":216,"target":301},{"source":216,"target":302},{"source":216,"target":303},{"source":216,"target":304},{"source":300,"target":111},{"source":300,"target":305},{"source":300,"target":216},{"source":305,"target":111},{"source":301,"target":91},{"source":301,"target":306},{"source":301,"target":216},{"source":306,"target":91},{"source":302,"target":93},{"source":302,"target":307},{"source":302,"target":216},{"source":302,"target":308},{"source":307,"target":93},{"source":303,"target":111},{"source":303,"target":309},{"source":303,"target":216},{"source":303,"target":310},{"source":309,"target":111},{"source":304,"target":219},{"source":217,"target":3},{"source":217,"target":219},{"source":217,"target":311},{"source":217,"target":312},{"source":217,"target":313},{"source":217,"target":314},{"source":217,"target":315},{"source":311,"target":111},{"source":311,"target":316},{"source":311,"target":217},{"source":316,"target":111},{"source":312,"target":105},{"source":312,"target":317},{"source":312,"target":217},{"source":317,"target":105},{"source":313,"target":101},{"source":313,"target":318},{"source":313,"target":217},{"source":313,"target":319},{"source":318,"target":101},{"source":314,"target":111},{"source":314,"target":320},{"source":314,"target":217},{"source":314,"target":321},{"source":320,"target":111},{"source":315,"target":219},{"source":111,"target":3},{"source":111,"target":233},{"source":111,"target":244},{"source":111,"target":254},{"source":111,"target":206},{"source":111,"target":266},{"source":111,"target":277},{"source":111,"target":287},{"source":111,"target":298},{"source":111,"target":310},{"source":111,"target":321},{"source":111,"target":208},{"source":111,"target":322},{"source":111,"target":323},{"source":233,"target":209},{"source":233,"target":324},{"source":233,"target":111},{"source":233,"target":225},{"source":324,"target":209},{"source":244,"target":210},{"source":244,"target":325},{"source":244,"target":111},{"source":244,"target":237},{"source":325,"target":210},{"source":254,"target":211},{"source":254,"target":326},{"source":254,"target":111},{"source":254,"target":247},{"source":326,"target":211},{"source":206,"target":115},{"source":206,"target":327},{"source":206,"target":111},{"source":206,"target":202},{"source":327,"target":115},{"source":266,"target":212},{"source":266,"target":328},{"source":266,"target":111},{"source":266,"target":259},{"source":328,"target":212},{"source":277,"target":213},{"source":277,"target":329},{"source":277,"target":111},{"source":277,"target":270},{"source":329,"target":213},{"source":287,"target":214},{"source":287,"target":330},{"source":287,"target":111},{"source":287,"target":280},{"source":330,"target":214},{"source":298,"target":215},{"source":298,"target":331},{"source":298,"target":111},{"source":298,"target":291},{"source":331,"target":215},{"source":310,"target":216},{"source":310,"target":332},{"source":310,"target":111},{"source":310,"target":303},{"source":332,"target":216},{"source":321,"target":217},{"source":321,"target":333},{"source":321,"target":111},{"source":321,"target":314},{"source":333,"target":217},{"source":208,"target":115},{"source":208,"target":334},{"source":208,"target":111},{"source":208,"target":203},{"source":334,"target":115},{"source":322,"target":218},{"source":322,"target":335},{"source":322,"target":111},{"source":322,"target":336},{"source":335,"target":218},{"source":323,"target":220},{"source":323,"target":337},{"source":323,"target":111},{"source":323,"target":338},{"source":337,"target":220},{"source":218,"target":3},{"source":218,"target":219},{"source":218,"target":339},{"source":218,"target":340},{"source":218,"target":341},{"source":218,"target":336},{"source":218,"target":342},{"source":339,"target":111},{"source":339,"target":343},{"source":339,"target":218},{"source":343,"target":111},{"source":340,"target":73},{"source":340,"target":344},{"source":340,"target":218},{"source":344,"target":73},{"source":341,"target":107},{"source":341,"target":345},{"source":341,"target":218},{"source":341,"target":346},{"source":345,"target":107},{"source":336,"target":111},{"source":336,"target":347},{"source":336,"target":218},{"source":336,"target":322},{"source":347,"target":111},{"source":342,"target":219},{"source":219,"target":3},{"source":219,"target":348},{"source":348,"target":111},{"source":348,"target":349},{"source":348,"target":219},{"source":349,"target":111},{"source":220,"target":3},{"source":220,"target":219},{"source":220,"target":350},{"source":220,"target":351},{"source":220,"target":352},{"source":220,"target":338},{"source":220,"target":353},{"source":350,"target":111},{"source":350,"target":354},{"source":350,"target":220},{"source":354,"target":111},{"source":351,"target":355},{"source":351,"target":220},{"source":352,"target":109},{"source":352,"target":356},{"source":352,"target":220},{"source":352,"target":357},{"source":356,"target":109},{"source":338,"target":111},{"source":338,"target":358},{"source":338,"target":220},{"source":338,"target":323},{"source":358,"target":111},{"source":353,"target":219},{"source":221,"target":359},{"source":221,"target":75},{"source":221,"target":229},{"source":221,"target":71},{"source":221,"target":73},{"source":221,"target":77},{"source":221,"target":79},{"source":221,"target":360},{"source":221,"target":81},{"source":221,"target":83},{"source":221,"target":361},{"source":221,"target":362},{"source":221,"target":85},{"source":221,"target":87},{"source":221,"target":89},{"source":221,"target":93},{"source":221,"target":91},{"source":221,"target":95},{"source":221,"target":97},{"source":221,"target":99},{"source":221,"target":363},{"source":221,"target":101},{"source":221,"target":103},{"source":221,"target":105},{"source":221,"target":107},{"source":221,"target":109},{"source":221,"target":3},{"source":359,"target":221},{"source":359,"target":361},{"source":359,"target":364},{"source":364,"target":361},{"source":75,"target":221},{"source":75,"target":363},{"source":75,"target":365},{"source":75,"target":252},{"source":75,"target":366},{"source":365,"target":367},{"source":365,"target":75},{"source":252,"target":211},{"source":252,"target":368},{"source":252,"target":75},{"source":252,"target":246},{"source":368,"target":211},{"source":366,"target":363},{"source":229,"target":221},{"source":229,"target":363},{"source":229,"target":231},{"source":229,"target":369},{"source":231,"target":209},{"source":231,"target":370},{"source":231,"target":229},{"source":231,"target":224},{"source":370,"target":209},{"source":369,"target":363},{"source":71,"target":221},{"source":71,"target":362},{"source":71,"target":371},{"source":371,"target":362},{"source":73,"target":221},{"source":73,"target":363},{"source":73,"target":242},{"source":73,"target":372},{"source":73,"target":373},{"source":242,"target":210},{"source":242,"target":374},{"source":242,"target":73},{"source":242,"target":236},{"source":374,"target":210},{"source":372,"target":375},{"source":372,"target":73},{"source":373,"target":363},{"source":77,"target":221},{"source":77,"target":109},{"source":77,"target":376},{"source":376,"target":109},{"source":79,"target":221},{"source":79,"target":229},{"source":79,"target":377},{"source":79,"target":378},{"source":377,"target":379},{"source":377,"target":79},{"source":378,"target":229},{"source":360,"target":221},{"source":360,"target":73},{"source":360,"target":380},{"source":380,"target":73},{"source":81,"target":221},{"source":81,"target":105},{"source":81,"target":381},{"source":381,"target":105},{"source":83,"target":221},{"source":83,"target":360},{"source":83,"target":382},{"source":382,"target":360},{"source":361,"target":221},{"source":361,"target":73},{"source":361,"target":383},{"source":383,"target":73},{"source":362,"target":221},{"source":362,"target":360},{"source":362,"target":384},{"source":384,"target":360},{"source":85,"target":221},{"source":85,"target":360},{"source":85,"target":385},{"source":385,"target":360},{"source":87,"target":221},{"source":87,"target":105},{"source":87,"target":264},{"source":87,"target":274},{"source":87,"target":386},{"source":264,"target":212},{"source":264,"target":387},{"source":264,"target":87},{"source":264,"target":258},{"source":387,"target":212},{"source":274,"target":213},{"source":274,"target":388},{"source":274,"target":87},{"source":274,"target":268},{"source":388,"target":213},{"source":386,"target":105},{"source":89,"target":221},{"source":89,"target":360},{"source":89,"target":389},{"source":389,"target":360},{"source":93,"target":221},{"source":93,"target":308},{"source":308,"target":216},{"source":308,"target":390},{"source":308,"target":93},{"source":308,"target":302},{"source":390,"target":216},{"source":91,"target":221},{"source":91,"target":285},{"source":91,"target":296},{"source":285,"target":214},{"source":285,"target":391},{"source":285,"target":91},{"source":285,"target":279},{"source":391,"target":214},{"source":296,"target":215},{"source":296,"target":392},{"source":296,"target":91},{"source":296,"target":290},{"source":392,"target":215},{"source":95,"target":221},{"source":95,"target":109},{"source":95,"target":393},{"source":393,"target":109},{"source":97,"target":221},{"source":97,"target":360},{"source":97,"target":394},{"source":394,"target":360},{"source":99,"target":221},{"source":99,"target":360},{"source":99,"target":395},{"source":395,"target":360},{"source":363,"target":221},{"source":101,"target":221},{"source":101,"target":319},{"source":319,"target":217},{"source":319,"target":396},{"source":319,"target":101},{"source":319,"target":313},{"source":396,"target":217},{"source":103,"target":221},{"source":103,"target":359},{"source":103,"target":397},{"source":397,"target":359},{"source":105,"target":221},{"source":107,"target":221},{"source":107,"target":346},{"source":346,"target":218},{"source":346,"target":398},{"source":346,"target":107},{"source":346,"target":341},{"source":398,"target":218},{"source":109,"target":221},{"source":109,"target":357},{"source":109,"target":399},{"source":357,"target":220},{"source":357,"target":400},{"source":357,"target":109},{"source":357,"target":352},{"source":400,"target":220},{"source":399,"target":401},{"source":399,"target":109}],"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="commands" nsURI="http://www.eclipse.org/ecl/platform.ui/commands.ecore" nsPrefix="org.eclipse.rcptt.ecl.platform.ui"> <eClassifiers xsi:type="ecore:EClass" name="Alert" eSuperTypes="../../org.eclipse.rcptt.ecl.core/model/ecl.ecore#//Command"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="message" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ListWorkingSets" eSuperTypes="../../org.eclipse.rcptt.ecl.core/model/ecl.ecore#//Command"> <eAnnotations source="http://www.eclipse.org/ecl/docs"> <details key="description" value="Returns a list of all working sets available"/> <details key="returns" value="Working set objects"/> <details key="example" value="list-working-sets | foreach {delete-working-set}"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CreateWorkingSet" eSuperTypes="../../org.eclipse.rcptt.ecl.core/model/ecl.ecore#//Command"> <eAnnotations source="http://www.eclipse.org/ecl/docs"> <details key="description" value="Creates working set with a given name."/> <details key="returns" value="Nothing"/> <details key="example" value="create-working-set &quot;MyWorkingSet&quot;"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"> <eAnnotations source="http://www.eclipse.org/ecl/input"/> <eAnnotations source="http://www.eclipse.org/ecl/docs"> <details key="description" value="Working set name"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="type" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString" defaultValueLiteral="org.eclipse.ui.resourceWorkingSetPage"> <eAnnotations source="http://www.eclipse.org/ecl/docs"> <details key="description" value="Working set type id. Default value is &lt;code>org.eclipse.ui.resourceWorkingSetPage&lt;/code>, which corresponds to Resource Working Set. The short name &lt;code>java&lt;/code> can be used to identify type &lt;code>org.eclipse.jdt.ui.JavaWorkingSetPage&lt;/code>"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="DeleteWorkingSet" eSuperTypes="../../org.eclipse.rcptt.ecl.core/model/ecl.ecore#//Command"> <eAnnotations source="http://www.eclipse.org/ecl/docs"> <details key="description" value="Deletes working set"/> <details key="returns" value="Nothing"/> <details key="example" value="list-working-sets | foreach {delete-working-set}"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="input" eType="ecore:EClass objects.ecore#//WorkingSet"> <eAnnotations source="http://www.eclipse.org/ecl/input"/> <eAnnotations source="http://www.eclipse.org/ecl/docs"> <details key="description" value="Working set object"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="GetWorkingSet"> <eAnnotations source="http://www.eclipse.org/ecl/docs"> <details key="description" value="Finds working set by name"/> <details key="returns" value="Working set object"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"> <eAnnotations source="http://www.eclipse.org/ecl/docs"> <details key="description" value="Working set name"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ClearLogView" eSuperTypes="../../org.eclipse.rcptt.ecl.core/model/ecl.ecore#//Command"> <eAnnotations source="http://www.eclipse.org/ecl/docs"> <details key="description" value="Clears error log. If Error log is open, then it is closed before log clearing and then open again."/> <details key="returns" value="Nothing"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="GetHotkey" eSuperTypes="../../org.eclipse.rcptt.ecl.core/model/ecl.ecore#//Command"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="commandId" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="SaveScreenshot" eSuperTypes="../../org.eclipse.rcptt.ecl.core/model/ecl.ecore#//Command"> <eAnnotations source="http://www.eclipse.org/ecl/docs"> <details key="description" value="Saves the screenshot."/> <details key="returns" value="Nothing"/> <details key="example" value="get-eclipse-window | get-object | save-screenshot [substitute-variables &quot;${workspace_loc}/images/actual.png&quot;]"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="out" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ToClipboard" eSuperTypes="../../org.eclipse.rcptt.ecl.core/model/ecl.ecore#//Command"> <eAnnotations source="http://www.eclipse.org/ecl/docs"> <details key="description" value="Puts input string to the clipboard."/> <details key="returns" value="Nothing"/> <details key="example" value="to-clipboard &quot;Content&quot;"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="input" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="FromClipboard" eSuperTypes="../../org.eclipse.rcptt.ecl.core/model/ecl.ecore#//Command"> <eAnnotations source="http://www.eclipse.org/ecl/docs"> <details key="description" value="Gets input string from the clipboard."/> <details key="returns" value="Return current clipboard content or empty string if no content"/> <details key="example" value="show-alert [from-clipboard]"/> </eAnnotations> </eClassifiers> </ecore:EPackage>
github:ecore:/data/xored/rcptt/ecl/plugins/org.eclipse.rcptt.ecl.platform.ui/model/commands.ecore
ecore
commands Alert message ListWorkingSets CreateWorkingSet name type org.eclipse.ui.resourceWorkingSetPage DeleteWorkingSet input GetWorkingSet name ClearLogView GetHotkey commandId SaveScreenshot out ToClipboard input FromClipboard
null
{"directed":true,"nodes":[{"nsPrefix":"org.eclipse.rcptt.ecl.platform.ui","nsURI":"http://www.eclipse.org/ecl/platform.ui/commands.ecore","name":"commands","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Alert","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ListWorkingSets","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CreateWorkingSet","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DeleteWorkingSet","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"GetWorkingSet","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ClearLogView","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"GetHotkey","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SaveScreenshot","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ToClipboard","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FromClipboard","instanceClass":null,"abstract":false,"id":10,"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":"message","changeable":true,"lowerBound":0,"iD":false,"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},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"org.eclipse.ui.resourceWorkingSetPage","unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"lowerBound":0,"iD":false,"id":16,"derived":false},{"id":17,"eClass":"EGenericType"},{"id":18,"eClass":"EGenericType"},{"id":19,"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":"input","changeable":true,"resolveProxies":true,"lowerBound":0,"id":20,"derived":false},{"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":"name","changeable":true,"lowerBound":0,"iD":false,"id":23,"derived":false},{"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":"commandId","changeable":true,"lowerBound":0,"iD":false,"id":26,"derived":false},{"id":27,"eClass":"EGenericType"},{"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":"out","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":"input","changeable":true,"lowerBound":0,"iD":false,"id":32,"derived":false},{"id":33,"eClass":"EGenericType"},{"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":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":11,"target":13},{"source":11,"target":1},{"source":2,"target":0},{"source":2,"target":14},{"source":3,"target":0},{"source":3,"target":15},{"source":3,"target":16},{"source":3,"target":17},{"source":15,"target":18},{"source":15,"target":3},{"source":16,"target":19},{"source":16,"target":3},{"source":4,"target":0},{"source":4,"target":20},{"source":4,"target":21},{"source":20,"target":22},{"source":20,"target":4},{"source":5,"target":0},{"source":5,"target":23},{"source":23,"target":24},{"source":23,"target":5},{"source":6,"target":0},{"source":6,"target":25},{"source":7,"target":0},{"source":7,"target":26},{"source":7,"target":27},{"source":26,"target":28},{"source":26,"target":7},{"source":8,"target":0},{"source":8,"target":29},{"source":8,"target":30},{"source":29,"target":31},{"source":29,"target":8},{"source":9,"target":0},{"source":9,"target":32},{"source":9,"target":33},{"source":32,"target":34},{"source":32,"target":9},{"source":10,"target":0},{"source":10,"target":35}],"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="platform:/resource/iteraplan/src/java/main/de/iteratec/iteraplan/xmi/IteraplanModelForTabularReporting.ecore" nsPrefix="de.iteratec.iteraplan.model"> <eClassifiers xsi:type="ecore:EClass" name="ArchitecturalDomain"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="id" ordered="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" iD="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" unique="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="description" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="position" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="owningUserEntities" unique="false" upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="lastModificationUser" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="lastModificationTime" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDate"/> <eStructuralFeatures xsi:type="ecore:EReference" name="parent" unique="false" eType="#//ArchitecturalDomain" eOpposite="#//ArchitecturalDomain/children"/> <eStructuralFeatures xsi:type="ecore:EReference" name="children" unique="false" upperBound="-1" eType="#//ArchitecturalDomain" eOpposite="#//ArchitecturalDomain/parent"/> <eStructuralFeatures xsi:type="ecore:EReference" name="technicalComponentReleases" unique="false" upperBound="-1" eType="#//TechnicalComponentRelease" eOpposite="#//TechnicalComponentRelease/architecturalDomains"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="BusinessDomain"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="id" ordered="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" iD="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" unique="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="description" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="position" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="owningUserEntities" unique="false" upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="lastModificationUser" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="lastModificationTime" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDate"/> <eStructuralFeatures xsi:type="ecore:EReference" name="parent" unique="false" eType="#//BusinessDomain" eOpposite="#//BusinessDomain/children"/> <eStructuralFeatures xsi:type="ecore:EReference" name="children" unique="false" upperBound="-1" eType="#//BusinessDomain" eOpposite="#//BusinessDomain/parent"/> <eStructuralFeatures xsi:type="ecore:EReference" name="businessFunctions" unique="false" upperBound="-1" eType="#//BusinessFunction" eOpposite="#//BusinessFunction/businessDomains"/> <eStructuralFeatures xsi:type="ecore:EReference" name="businessUnits" unique="false" upperBound="-1" eType="#//BusinessUnit" eOpposite="#//BusinessUnit/businessDomains"/> <eStructuralFeatures xsi:type="ecore:EReference" name="businessObjects" unique="false" upperBound="-1" eType="#//BusinessObject" eOpposite="#//BusinessObject/businessDomains"/> <eStructuralFeatures xsi:type="ecore:EReference" name="businessProcesses" unique="false" upperBound="-1" eType="#//BusinessProcess" eOpposite="#//BusinessProcess/businessDomains"/> <eStructuralFeatures xsi:type="ecore:EReference" name="products" unique="false" upperBound="-1" eType="#//Product" eOpposite="#//Product/businessDomains"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="BusinessFunction"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="id" ordered="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" iD="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" unique="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="description" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="position" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="owningUserEntities" unique="false" upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="lastModificationUser" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="lastModificationTime" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDate"/> <eStructuralFeatures xsi:type="ecore:EReference" name="parent" unique="false" eType="#//BusinessFunction" eOpposite="#//BusinessFunction/children"/> <eStructuralFeatures xsi:type="ecore:EReference" name="children" unique="false" upperBound="-1" eType="#//BusinessFunction" eOpposite="#//BusinessFunction/parent"/> <eStructuralFeatures xsi:type="ecore:EReference" name="businessDomains" unique="false" upperBound="-1" eType="#//BusinessDomain" eOpposite="#//BusinessDomain/businessFunctions"/> <eStructuralFeatures xsi:type="ecore:EReference" name="businessObjects" unique="false" upperBound="-1" eType="#//BusinessObject" eOpposite="#//BusinessObject/businessFunctions"/> <eStructuralFeatures xsi:type="ecore:EReference" name="informationSystemReleases" unique="false" upperBound="-1" eType="#//InformationSystemRelease" eOpposite="#//InformationSystemRelease/businessFunctions"/> <eStructuralFeatures xsi:type="ecore:EReference" name="itServices" unique="false" upperBound="-1" eType="#//ITService" eOpposite="#//ITService/businessFunctions"/> <eStructuralFeatures xsi:type="ecore:EReference" name="projects" unique="false" upperBound="-1" eType="#//Project" eOpposite="#//Project/businessFunctions"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="BusinessMapping"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="id" ordered="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" iD="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="owningUserEntities" unique="false" upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="lastModificationUser" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="lastModificationTime" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDate"/> <eStructuralFeatures xsi:type="ecore:EReference" name="businessProcess" unique="false" eType="#//BusinessProcess" eOpposite="#//BusinessProcess/businessMappings"/> <eStructuralFeatures xsi:type="ecore:EReference" name="businessUnit" unique="false" eType="#//BusinessUnit" eOpposite="#//BusinessUnit/businessMappings"/> <eStructuralFeatures xsi:type="ecore:EReference" name="informationSystemRelease" eType="#//InformationSystemRelease" eOpposite="#//InformationSystemRelease/businessMappings"/> <eStructuralFeatures xsi:type="ecore:EReference" name="product" unique="false" eType="#//Product" eOpposite="#//Product/businessMappings"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="BusinessUnit"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="id" ordered="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" iD="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" unique="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="description" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="position" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="owningUserEntities" unique="false" upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="lastModificationUser" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="lastModificationTime" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDate"/> <eStructuralFeatures xsi:type="ecore:EReference" name="parent" unique="false" eType="#//BusinessUnit" eOpposite="#//BusinessUnit/children"/> <eStructuralFeatures xsi:type="ecore:EReference" name="children" upperBound="-1" eType="#//BusinessUnit" eOpposite="#//BusinessUnit/parent"/> <eStructuralFeatures xsi:type="ecore:EReference" name="businessMappings" unique="false" upperBound="-1" eType="#//BusinessMapping" eOpposite="#//BusinessMapping/businessUnit"/> <eStructuralFeatures xsi:type="ecore:EReference" name="businessDomains" unique="false" upperBound="-1" eType="#//BusinessDomain" eOpposite="#//BusinessDomain/businessUnits"/> <eStructuralFeatures xsi:type="ecore:EReference" name="projects" unique="false" upperBound="-1" eType="#//Project" eOpposite="#//Project/businessUnits"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="BusinessObject"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="id" ordered="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" iD="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" unique="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="description" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="position" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="owningUserEntities" unique="false" upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="lastModificationUser" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="lastModificationTime" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDate"/> <eStructuralFeatures xsi:type="ecore:EReference" name="parent" unique="false" eType="#//BusinessObject" eOpposite="#//BusinessObject/children"/> <eStructuralFeatures xsi:type="ecore:EReference" name="children" unique="false" upperBound="-1" eType="#//BusinessObject" eOpposite="#//BusinessObject/parent"/> <eStructuralFeatures xsi:type="ecore:EReference" name="businessDomains" unique="false" upperBound="-1" eType="#//BusinessDomain" eOpposite="#//BusinessDomain/businessObjects"/> <eStructuralFeatures xsi:type="ecore:EReference" name="businessFunctions" unique="false" upperBound="-1" eType="#//BusinessFunction" eOpposite="#//BusinessFunction/businessObjects"/> <eStructuralFeatures xsi:type="ecore:EReference" name="generalisation" unique="false" eType="#//BusinessObject" eOpposite="#//BusinessObject/specialisations"/> <eStructuralFeatures xsi:type="ecore:EReference" name="specialisations" unique="false" upperBound="-1" eType="#//BusinessObject" eOpposite="#//BusinessObject/generalisation"/> <eStructuralFeatures xsi:type="ecore:EReference" name="informationSystemReleaseAssociations" unique="false" upperBound="-1" eType="#//Isr2BoAssociation" eOpposite="#//Isr2BoAssociation/businessObject"/> <eStructuralFeatures xsi:type="ecore:EReference" name="transports" unique="false" upperBound="-1" eType="#//Transport" eOpposite="#//Transport/businessObject"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="BusinessProcess"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="id" ordered="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" iD="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" unique="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="description" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="position" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="owningUserEntities" unique="false" upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="lastModificationUser" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="lastModificationTime" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDate"/> <eStructuralFeatures xsi:type="ecore:EReference" name="parent" unique="false" eType="#//BusinessProcess" eOpposite="#//BusinessProcess/children"/> <eStructuralFeatures xsi:type="ecore:EReference" name="children" unique="false" upperBound="-1" eType="#//BusinessProcess" eOpposite="#//BusinessProcess/parent"/> <eStructuralFeatures xsi:type="ecore:EReference" name="businessDomains" unique="false" upperBound="-1" eType="#//BusinessDomain" eOpposite="#//BusinessDomain/businessProcesses"/> <eStructuralFeatures xsi:type="ecore:EReference" name="businessMappings" unique="false" upperBound="-1" eType="#//BusinessMapping" eOpposite="#//BusinessMapping/businessProcess"/> <eStructuralFeatures xsi:type="ecore:EReference" name="projects" unique="false" upperBound="-1" eType="#//Project" eOpposite="#//Project/businessProcesses"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="InformationSystemDomain"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="id" ordered="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" iD="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" unique="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="description" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="position" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="owningUserEntities" unique="false" upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="lastModificationUser" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="lastModificationTime" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDate"/> <eStructuralFeatures xsi:type="ecore:EReference" name="parent" unique="false" eType="#//InformationSystemDomain" eOpposite="#//InformationSystemDomain/children"/> <eStructuralFeatures xsi:type="ecore:EReference" name="children" unique="false" upperBound="-1" eType="#//InformationSystemDomain" eOpposite="#//InformationSystemDomain/parent"/> <eStructuralFeatures xsi:type="ecore:EReference" name="informationSystemReleases" unique="false" upperBound="-1" eType="#//InformationSystemRelease" eOpposite="#//InformationSystemRelease/informationSystemDomains"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="InformationSystemInterface"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="id" ordered="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" iD="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" unique="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="description" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="direction" unique="false" eType="#//Direction"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="owningUserEntities" unique="false" upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="lastModificationUser" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="lastModificationTime" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDate"/> <eStructuralFeatures xsi:type="ecore:EReference" name="informationSystemReleaseA" unique="false" lowerBound="1" eType="#//InformationSystemRelease" eOpposite="#//InformationSystemRelease/interfacesReleaseA"/> <eStructuralFeatures xsi:type="ecore:EReference" name="informationSystemReleaseB" unique="false" lowerBound="1" eType="#//InformationSystemRelease" eOpposite="#//InformationSystemRelease/interfacesReleaseB"/> <eStructuralFeatures xsi:type="ecore:EReference" name="technicalComponentReleases" unique="false" upperBound="-1" eType="#//TechnicalComponentRelease" eOpposite="#//TechnicalComponentRelease/informationSystemInterfaces"/> <eStructuralFeatures xsi:type="ecore:EReference" name="transports" unique="false" upperBound="-1" eType="#//Transport" eOpposite="#//Transport/informationSystemInterface"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="InformationSystemRelease"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="id" ordered="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" iD="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" unique="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="version" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="description" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="typeOfStatus" unique="false" eType="#//TypeOfStatus"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="owningUserEntities" unique="false" upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="lastModificationUser" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="lastModificationTime" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDate"/> <eStructuralFeatures xsi:type="ecore:EReference" name="interfacesReleaseA" unique="false" upperBound="-1" eType="#//InformationSystemInterface" eOpposite="#//InformationSystemInterface/informationSystemReleaseA"/> <eStructuralFeatures xsi:type="ecore:EReference" name="interfacesReleaseB" unique="false" upperBound="-1" eType="#//InformationSystemInterface" eOpposite="#//InformationSystemInterface/informationSystemReleaseB"/> <eStructuralFeatures xsi:type="ecore:EReference" name="informationSystemDomains" unique="false" upperBound="-1" eType="#//InformationSystemDomain" eOpposite="#//InformationSystemDomain/informationSystemReleases"/> <eStructuralFeatures xsi:type="ecore:EReference" name="parent" unique="false" eType="#//InformationSystemRelease" eOpposite="#//InformationSystemRelease/children"/> <eStructuralFeatures xsi:type="ecore:EReference" name="children" unique="false" upperBound="-1" eType="#//InformationSystemRelease" eOpposite="#//InformationSystemRelease/parent"/> <eStructuralFeatures xsi:type="ecore:EReference" name="successors" unique="false" upperBound="-1" eType="#//InformationSystemRelease" eOpposite="#//InformationSystemRelease/predecessors"/> <eStructuralFeatures xsi:type="ecore:EReference" name="predecessors" unique="false" upperBound="-1" eType="#//InformationSystemRelease" eOpposite="#//InformationSystemRelease/successors"/> <eStructuralFeatures xsi:type="ecore:EReference" name="businessObjectAssociations" unique="false" upperBound="-1" eType="#//Isr2BoAssociation" eOpposite="#//Isr2BoAssociation/informationSystemRelease"/> <eStructuralFeatures xsi:type="ecore:EReference" name="projects" unique="false" upperBound="-1" eType="#//Project" eOpposite="#//Project/informationSystemReleases"/> <eStructuralFeatures xsi:type="ecore:EReference" name="technicalComponentReleases" upperBound="-1" eType="#//TechnicalComponentRelease" eOpposite="#//TechnicalComponentRelease/informationSystemReleases"/> <eStructuralFeatures xsi:type="ecore:EReference" name="businessMappings" unique="false" upperBound="-1" eType="#//BusinessMapping" eOpposite="#//BusinessMapping/informationSystemRelease"/> <eStructuralFeatures xsi:type="ecore:EReference" name="businessFunctions" unique="false" upperBound="-1" eType="#//BusinessFunction" eOpposite="#//BusinessFunction/informationSystemReleases"/> <eStructuralFeatures xsi:type="ecore:EReference" name="baseComponents" unique="false" upperBound="-1" eType="#//InformationSystemRelease" eOpposite="#//InformationSystemRelease/parentComponents"/> <eStructuralFeatures xsi:type="ecore:EReference" name="parentComponents" unique="false" upperBound="-1" eType="#//InformationSystemRelease" eOpposite="#//InformationSystemRelease/baseComponents"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="runtimePeriod" eType="#//RuntimePeriod"/> <eStructuralFeatures xsi:type="ecore:EReference" name="itServices" unique="false" upperBound="-1" eType="#//ITService" eOpposite="#//ITService/informationSystemReleases"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="InfrastructureElement"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="id" ordered="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" iD="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" unique="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="description" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="position" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="owningUserEntities" unique="false" upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="lastModificationUser" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="lastModificationTime" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDate"/> <eStructuralFeatures xsi:type="ecore:EReference" name="parent" unique="false" eType="#//InfrastructureElement" eOpposite="#//InfrastructureElement/children"/> <eStructuralFeatures xsi:type="ecore:EReference" name="children" unique="false" upperBound="-1" eType="#//InfrastructureElement" eOpposite="#//InfrastructureElement/parent"/> <eStructuralFeatures xsi:type="ecore:EReference" name="technicalComponentReleaseAssociations" unique="false" upperBound="-1" eType="#//Tcr2IeAssociation" eOpposite="#//Tcr2IeAssociation/infrastructureElement"/> <eStructuralFeatures xsi:type="ecore:EReference" name="itServices" unique="false" upperBound="-1" eType="#//ITService" eOpposite="#//ITService/infrastructureElements"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ITService"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="id" ordered="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" iD="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" unique="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="description" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="position" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="owningUserEntities" unique="false" upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="lastModificationUser" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="lastModificationTime" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDate"/> <eStructuralFeatures xsi:type="ecore:EReference" name="parent" unique="false" eType="#//ITService" eOpposite="#//ITService/children"/> <eStructuralFeatures xsi:type="ecore:EReference" name="children" unique="false" upperBound="-1" eType="#//ITService" eOpposite="#//ITService/parent"/> <eStructuralFeatures xsi:type="ecore:EReference" name="baseComponents" unique="false" upperBound="-1" eType="#//ITService" eOpposite="#//ITService/parentComponents"/> <eStructuralFeatures xsi:type="ecore:EReference" name="parentComponents" unique="false" upperBound="-1" eType="#//ITService" eOpposite="#//ITService/baseComponents"/> <eStructuralFeatures xsi:type="ecore:EReference" name="businessFunctions" unique="false" upperBound="-1" eType="#//BusinessFunction" eOpposite="#//BusinessFunction/itServices"/> <eStructuralFeatures xsi:type="ecore:EReference" name="informationSystemReleases" unique="false" upperBound="-1" eType="#//InformationSystemRelease" eOpposite="#//InformationSystemRelease/itServices"/> <eStructuralFeatures xsi:type="ecore:EReference" name="technicalComponentReleases" unique="false" upperBound="-1" eType="#//TechnicalComponentRelease" eOpposite="#//TechnicalComponentRelease/itServices"/> <eStructuralFeatures xsi:type="ecore:EReference" name="infrastructureElements" unique="false" upperBound="-1" eType="#//InfrastructureElement" eOpposite="#//InfrastructureElement/itServices"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Product"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="id" ordered="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" iD="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" unique="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="description" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="position" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="owningUserEntities" unique="false" upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="lastModificationUser" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="lastModificationTime" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDate"/> <eStructuralFeatures xsi:type="ecore:EReference" name="parent" unique="false" eType="#//Product" eOpposite="#//Product/children"/> <eStructuralFeatures xsi:type="ecore:EReference" name="children" upperBound="-1" eType="#//Product" eOpposite="#//Product/parent"/> <eStructuralFeatures xsi:type="ecore:EReference" name="businessDomains" unique="false" upperBound="-1" eType="#//BusinessDomain" eOpposite="#//BusinessDomain/products"/> <eStructuralFeatures xsi:type="ecore:EReference" name="businessMappings" unique="false" upperBound="-1" eType="#//BusinessMapping" eOpposite="#//BusinessMapping/product"/> <eStructuralFeatures xsi:type="ecore:EReference" name="projects" unique="false" upperBound="-1" eType="#//Project" eOpposite="#//Project/products"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Project"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="id" ordered="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" iD="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" unique="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="description" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="position" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="owningUserEntities" unique="false" upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="lastModificationUser" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="lastModificationTime" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDate"/> <eStructuralFeatures xsi:type="ecore:EReference" name="parent" unique="false" eType="#//Project" eOpposite="#//Project/children"/> <eStructuralFeatures xsi:type="ecore:EReference" name="children" upperBound="-1" eType="#//Project" eOpposite="#//Project/parent"/> <eStructuralFeatures xsi:type="ecore:EReference" name="informationSystemReleases" unique="false" upperBound="-1" eType="#//InformationSystemRelease" eOpposite="#//InformationSystemRelease/projects"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="runtimePeriod" eType="#//RuntimePeriod"/> <eStructuralFeatures xsi:type="ecore:EReference" name="businessUnits" unique="false" upperBound="-1" eType="#//BusinessUnit" eOpposite="#//BusinessUnit/projects"/> <eStructuralFeatures xsi:type="ecore:EReference" name="businessProcesses" unique="false" upperBound="-1" eType="#//BusinessProcess" eOpposite="#//BusinessProcess/projects"/> <eStructuralFeatures xsi:type="ecore:EReference" name="products" unique="false" upperBound="-1" eType="#//Product" eOpposite="#//Product/projects"/> <eStructuralFeatures xsi:type="ecore:EReference" name="businessFunctions" unique="false" upperBound="-1" eType="#//BusinessFunction" eOpposite="#//BusinessFunction/projects"/> <eStructuralFeatures xsi:type="ecore:EReference" name="baseComponents" unique="false" upperBound="-1" eType="#//Project" eOpposite="#//Project/parentComponents"/> <eStructuralFeatures xsi:type="ecore:EReference" name="parentComponents" unique="false" upperBound="-1" eType="#//Project" eOpposite="#//Project/baseComponents"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="TechnicalComponentRelease"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="id" ordered="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" iD="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" unique="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="version" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="description" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="availableForInterfaces" unique="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="owningUserEntities" unique="false" upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="lastModificationUser" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="lastModificationTime" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDate"/> <eStructuralFeatures xsi:type="ecore:EReference" name="informationSystemInterfaces" unique="false" upperBound="-1" eType="#//InformationSystemInterface" eOpposite="#//InformationSystemInterface/technicalComponentReleases"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="typeOfStatus" unique="false" lowerBound="1" eType="#//TypeOfStatus"/> <eStructuralFeatures xsi:type="ecore:EReference" name="architecturalDomains" unique="false" upperBound="-1" eType="#//ArchitecturalDomain" eOpposite="#//ArchitecturalDomain/technicalComponentReleases"/> <eStructuralFeatures xsi:type="ecore:EReference" name="informationSystemReleases" unique="false" upperBound="-1" eType="#//InformationSystemRelease" eOpposite="#//InformationSystemRelease/technicalComponentReleases"/> <eStructuralFeatures xsi:type="ecore:EReference" name="infrastructureElementAssociations" unique="false" upperBound="-1" eType="#//Tcr2IeAssociation" eOpposite="#//Tcr2IeAssociation/technicalComponentRelease"/> <eStructuralFeatures xsi:type="ecore:EReference" name="predecessors" unique="false" upperBound="-1" eType="#//TechnicalComponentRelease" eOpposite="#//TechnicalComponentRelease/successors"/> <eStructuralFeatures xsi:type="ecore:EReference" name="successors" unique="false" upperBound="-1" eType="#//TechnicalComponentRelease" eOpposite="#//TechnicalComponentRelease/predecessors"/> <eStructuralFeatures xsi:type="ecore:EReference" name="baseComponents" unique="false" upperBound="-1" eType="#//TechnicalComponentRelease" eOpposite="#//TechnicalComponentRelease/parentComponents"/> <eStructuralFeatures xsi:type="ecore:EReference" name="parentComponents" unique="false" upperBound="-1" eType="#//TechnicalComponentRelease" eOpposite="#//TechnicalComponentRelease/baseComponents"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="runtimePeriod" eType="#//RuntimePeriod"/> <eStructuralFeatures xsi:type="ecore:EReference" name="itServices" unique="false" upperBound="-1" eType="#//ITService" eOpposite="#//ITService/technicalComponentReleases"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Transport"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="id" ordered="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" iD="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="owningUserEntities" unique="false" upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="lastModificationUser" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="lastModificationTime" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDate"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="direction" unique="false" eType="#//Direction"/> <eStructuralFeatures xsi:type="ecore:EReference" name="informationSystemInterface" unique="false" lowerBound="1" eType="#//InformationSystemInterface" eOpposite="#//InformationSystemInterface/transports"/> <eStructuralFeatures xsi:type="ecore:EReference" name="businessObject" unique="false" lowerBound="1" eType="#//BusinessObject" eOpposite="#//BusinessObject/transports"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Tcr2IeAssociation"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="id" ordered="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" iD="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="owningUserEntities" unique="false" upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="lastModificationUser" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="lastModificationTime" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDate"/> <eStructuralFeatures xsi:type="ecore:EReference" name="technicalComponentRelease" unique="false" lowerBound="1" eType="#//TechnicalComponentRelease" eOpposite="#//TechnicalComponentRelease/infrastructureElementAssociations"/> <eStructuralFeatures xsi:type="ecore:EReference" name="infrastructureElement" unique="false" lowerBound="1" eType="#//InfrastructureElement" eOpposite="#//InfrastructureElement/technicalComponentReleaseAssociations"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Isr2BoAssociation"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="id" ordered="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" iD="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="owningUserEntities" unique="false" upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="lastModificationUser" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="lastModificationTime" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDate"/> <eStructuralFeatures xsi:type="ecore:EReference" name="informationSystemRelease" unique="false" lowerBound="1" eType="#//InformationSystemRelease" eOpposite="#//InformationSystemRelease/businessObjectAssociations"/> <eStructuralFeatures xsi:type="ecore:EReference" name="businessObject" unique="false" lowerBound="1" eType="#//BusinessObject" eOpposite="#//BusinessObject/informationSystemReleaseAssociations"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="TypeOfStatus"> <eLiterals name="UNDEFINED" literal="typeOfStatus_undefined"/> <eLiterals name="CURRENT" value="1" literal="typeOfStatus_current"/> <eLiterals name="PLANNED" value="2" literal="typeOfStatus_planned"/> <eLiterals name="TARGET" value="3" literal="typeOfStatus_target"/> <eLiterals name="INACTIVE" value="4" literal="typeOfStatus_inactive"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="Direction"> <eLiterals name="UNDEFINED" literal=""/> <eLiterals name="NO_DIRECTION" value="1" literal="-"/> <eLiterals name="FIRST_TO_SECOND" value="2" literal="->"/> <eLiterals name="SECOND_TO_FIRST" value="3" literal="&lt;-"/> <eLiterals name="BOTH_DIRECTIONS" value="4" literal="&lt;->"/> </eClassifiers> <eClassifiers xsi:type="ecore:EDataType" name="RuntimePeriod" instanceClassName="de.iteratec.iteraplan.model.RuntimePeriod"/> </ecore:EPackage>
github:ecore:/data/wojsand/Ranorex_MyAutomationTestProject/iteraplan/apache-tomcat-7.0.68/webapps/iteraplan/WEB-INF/classes/ecore/IteraplanModelForTabularReporting.ecore
ecore
model ArchitecturalDomain id name description position owningUserEntities lastModificationUser lastModificationTime parent children technicalComponentReleases BusinessDomain id name description position owningUserEntities lastModificationUser lastModificationTime parent children businessFunctions businessUnits businessObjects businessProcesses products BusinessFunction id name description position owningUserEntities lastModificationUser lastModificationTime parent children businessDomains businessObjects informationSystemReleases itServices projects BusinessMapping id owningUserEntities lastModificationUser lastModificationTime businessProcess businessUnit informationSystemRelease product BusinessUnit id name description position owningUserEntities lastModificationUser lastModificationTime parent children businessMappings businessDomains projects BusinessObject id name description position owningUserEntities lastModificationUser lastModificationTime parent children businessDomains businessFunctions generalisation specialisations informationSystemReleaseAssociations transports BusinessProcess id name description position owningUserEntities lastModificationUser lastModificationTime parent children businessDomains businessMappings projects InformationSystemDomain id name description position owningUserEntities lastModificationUser lastModificationTime parent children informationSystemReleases InformationSystemInterface id name description direction owningUserEntities lastModificationUser lastModificationTime informationSystemReleaseA informationSystemReleaseB technicalComponentReleases transports InformationSystemRelease id name version description typeOfStatus owningUserEntities lastModificationUser lastModificationTime interfacesReleaseA interfacesReleaseB informationSystemDomains parent children successors predecessors businessObjectAssociations projects technicalComponentReleases businessMappings businessFunctions baseComponents parentComponents runtimePeriod itServices InfrastructureElement id name description position owningUserEntities lastModificationUser lastModificationTime parent children technicalComponentReleaseAssociations itServices ITService id name description position owningUserEntities lastModificationUser lastModificationTime parent children baseComponents parentComponents businessFunctions informationSystemReleases technicalComponentReleases infrastructureElements Product id name description position owningUserEntities lastModificationUser lastModificationTime parent children businessDomains businessMappings projects Project id name description position owningUserEntities lastModificationUser lastModificationTime parent children informationSystemReleases runtimePeriod businessUnits businessProcesses products businessFunctions baseComponents parentComponents TechnicalComponentRelease id name version description availableForInterfaces owningUserEntities lastModificationUser lastModificationTime informationSystemInterfaces typeOfStatus architecturalDomains informationSystemReleases infrastructureElementAssociations predecessors successors baseComponents parentComponents runtimePeriod itServices Transport id owningUserEntities lastModificationUser lastModificationTime direction informationSystemInterface businessObject Tcr2IeAssociation id owningUserEntities lastModificationUser lastModificationTime technicalComponentRelease infrastructureElement Isr2BoAssociation id owningUserEntities lastModificationUser lastModificationTime informationSystemRelease businessObject TypeOfStatus UNDEFINED typeOfStatus_undefined CURRENT typeOfStatus_current PLANNED typeOfStatus_planned TARGET typeOfStatus_target INACTIVE typeOfStatus_inactive Direction UNDEFINED NO_DIRECTION - FIRST_TO_SECOND -> SECOND_TO_FIRST <- BOTH_DIRECTIONS <-> RuntimePeriod de.iteratec.iteraplan.model.RuntimePeriod de.iteratec.iteraplan.model.RuntimePeriod
null
{"directed":true,"nodes":[{"nsPrefix":"de.iteratec.iteraplan.model","nsURI":"platform:/resource/iteraplan/src/java/main/de/iteratec/iteraplan/xmi/IteraplanModelForTabularReporting.ecore","name":"model","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ArchitecturalDomain","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BusinessDomain","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BusinessFunction","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BusinessMapping","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BusinessUnit","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BusinessObject","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BusinessProcess","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InformationSystemDomain","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InformationSystemInterface","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InformationSystemRelease","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InfrastructureElement","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ITService","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Product","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Project","instanceClass":null,"abstract":false,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TechnicalComponentRelease","instanceClass":null,"abstract":false,"id":15,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Transport","instanceClass":null,"abstract":false,"id":16,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Tcr2IeAssociation","instanceClass":null,"abstract":false,"id":17,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Isr2BoAssociation","instanceClass":null,"abstract":false,"id":18,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"TypeOfStatus","instanceClass":null,"id":19,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"Direction","instanceClass":null,"id":20,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":"de.iteratec.iteraplan.model.RuntimePeriod","defaultValue":null,"instanceClassName":"de.iteratec.iteraplan.model.RuntimePeriod","name":"RuntimePeriod","instanceClass":null,"id":21,"serializable":true,"eClass":"EDataType"},{"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":true,"id":22,"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":23,"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":"description","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":false,"name":"position","changeable":true,"lowerBound":0,"iD":false,"id":25,"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":"owningUserEntities","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":false,"name":"lastModificationUser","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":false,"name":"lastModificationTime","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":false,"name":"parent","changeable":true,"resolveProxies":true,"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":false,"unsettable":false,"transient":false,"unique":false,"name":"children","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":false,"name":"technicalComponentReleases","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"},{"id":37,"eClass":"EGenericType"},{"id":38,"eClass":"EGenericType"},{"id":39,"eClass":"EGenericType"},{"id":40,"eClass":"EGenericType"},{"id":41,"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":false,"name":"architecturalDomains","changeable":true,"resolveProxies":true,"lowerBound":0,"id":42,"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":true,"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":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":45,"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":"position","changeable":true,"lowerBound":0,"iD":false,"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":"owningUserEntities","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":false,"name":"lastModificationUser","changeable":true,"lowerBound":0,"iD":false,"id":48,"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":"lastModificationTime","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":false,"name":"parent","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":false,"name":"children","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":false,"name":"businessFunctions","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":false,"name":"businessUnits","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":false,"unsettable":false,"transient":false,"unique":false,"name":"businessObjects","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":false,"unsettable":false,"transient":false,"unique":false,"name":"businessProcesses","changeable":true,"resolveProxies":true,"lowerBound":0,"id":55,"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":"products","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"},{"id":61,"eClass":"EGenericType"},{"id":62,"eClass":"EGenericType"},{"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":false,"name":"businessDomains","changeable":true,"resolveProxies":true,"lowerBound":0,"id":67,"derived":false},{"id":68,"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":false,"name":"businessDomains","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":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":false,"name":"businessDomains","changeable":true,"resolveProxies":true,"lowerBound":0,"id":71,"derived":false},{"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":false,"name":"businessDomains","changeable":true,"resolveProxies":true,"lowerBound":0,"id":73,"derived":false},{"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":false,"name":"businessDomains","changeable":true,"resolveProxies":true,"lowerBound":0,"id":75,"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":true,"id":76,"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":77,"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":"description","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":false,"name":"position","changeable":true,"lowerBound":0,"iD":false,"id":79,"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":"owningUserEntities","changeable":true,"lowerBound":0,"iD":false,"id":80,"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":"lastModificationUser","changeable":true,"lowerBound":0,"iD":false,"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":false,"name":"lastModificationTime","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":false,"unsettable":false,"transient":false,"unique":false,"name":"parent","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":false,"unsettable":false,"transient":false,"unique":false,"name":"children","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":false,"unsettable":false,"transient":false,"unique":false,"name":"businessObjects","changeable":true,"resolveProxies":true,"lowerBound":0,"id":85,"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":"informationSystemReleases","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":false,"unsettable":false,"transient":false,"unique":false,"name":"itServices","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":false,"unsettable":false,"transient":false,"unique":false,"name":"projects","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"},{"id":97,"eClass":"EGenericType"},{"id":98,"eClass":"EGenericType"},{"id":99,"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":false,"name":"businessFunctions","changeable":true,"resolveProxies":true,"lowerBound":0,"id":100,"derived":false},{"id":101,"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":false,"name":"businessFunctions","changeable":true,"resolveProxies":true,"lowerBound":0,"id":102,"derived":false},{"id":103,"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":false,"name":"businessFunctions","changeable":true,"resolveProxies":true,"lowerBound":0,"id":104,"derived":false},{"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":false,"unique":false,"name":"businessFunctions","changeable":true,"resolveProxies":true,"lowerBound":0,"id":106,"derived":false},{"ordered":false,"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":107,"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":"owningUserEntities","changeable":true,"lowerBound":0,"iD":false,"id":108,"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":"lastModificationUser","changeable":true,"lowerBound":0,"iD":false,"id":109,"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":"lastModificationTime","changeable":true,"lowerBound":0,"iD":false,"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":false,"name":"businessProcess","changeable":true,"resolveProxies":true,"lowerBound":0,"id":111,"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":false,"name":"businessUnit","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":false,"unsettable":false,"transient":false,"unique":true,"name":"informationSystemRelease","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":false,"unsettable":false,"transient":false,"unique":false,"name":"product","changeable":true,"resolveProxies":true,"lowerBound":0,"id":114,"derived":false},{"id":115,"eClass":"EGenericType"},{"id":116,"eClass":"EGenericType"},{"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":false,"unsettable":false,"transient":false,"unique":false,"name":"businessMappings","changeable":true,"resolveProxies":true,"lowerBound":0,"id":120,"derived":false},{"id":121,"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":false,"name":"businessMappings","changeable":true,"resolveProxies":true,"lowerBound":0,"id":122,"derived":false},{"id":123,"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":false,"name":"businessMappings","changeable":true,"resolveProxies":true,"lowerBound":0,"id":124,"derived":false},{"id":125,"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":false,"name":"businessMappings","changeable":true,"resolveProxies":true,"lowerBound":0,"id":126,"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":true,"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":false,"name":"name","changeable":true,"lowerBound":1,"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":false,"name":"description","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":false,"name":"position","changeable":true,"lowerBound":0,"iD":false,"id":130,"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":"owningUserEntities","changeable":true,"lowerBound":0,"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":false,"name":"lastModificationUser","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":false,"name":"lastModificationTime","changeable":true,"lowerBound":0,"iD":false,"id":133,"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":false,"name":"parent","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":"children","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":false,"name":"projects","changeable":true,"resolveProxies":true,"lowerBound":0,"id":136,"derived":false},{"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"},{"id":147,"eClass":"EGenericType"},{"id":148,"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":false,"name":"businessUnits","changeable":true,"resolveProxies":true,"lowerBound":0,"id":149,"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":true,"id":150,"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":151,"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":"description","changeable":true,"lowerBound":0,"iD":false,"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":false,"name":"position","changeable":true,"lowerBound":0,"iD":false,"id":153,"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":"owningUserEntities","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":false,"name":"lastModificationUser","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":false,"name":"lastModificationTime","changeable":true,"lowerBound":0,"iD":false,"id":156,"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":false,"name":"parent","changeable":true,"resolveProxies":true,"lowerBound":0,"id":157,"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":"children","changeable":true,"resolveProxies":true,"lowerBound":0,"id":158,"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":false,"name":"generalisation","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":false,"unsettable":false,"transient":false,"unique":false,"name":"specialisations","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":false,"unsettable":false,"transient":false,"unique":false,"name":"informationSystemReleaseAssociations","changeable":true,"resolveProxies":true,"lowerBound":0,"id":161,"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":"transports","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"},{"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"},{"id":175,"eClass":"EGenericType"},{"id":176,"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":false,"name":"businessObject","changeable":true,"resolveProxies":true,"lowerBound":1,"id":177,"derived":false},{"id":178,"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":false,"name":"businessObject","changeable":true,"resolveProxies":true,"lowerBound":1,"id":179,"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":true,"id":180,"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":181,"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":"description","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":false,"name":"position","changeable":true,"lowerBound":0,"iD":false,"id":183,"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":"owningUserEntities","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":false,"name":"lastModificationUser","changeable":true,"lowerBound":0,"iD":false,"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":false,"name":"lastModificationTime","changeable":true,"lowerBound":0,"iD":false,"id":186,"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":false,"name":"parent","changeable":true,"resolveProxies":true,"lowerBound":0,"id":187,"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":"children","changeable":true,"resolveProxies":true,"lowerBound":0,"id":188,"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":"projects","changeable":true,"resolveProxies":true,"lowerBound":0,"id":189,"derived":false},{"id":190,"eClass":"EGenericType"},{"id":191,"eClass":"EGenericType"},{"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"},{"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":"businessProcesses","changeable":true,"resolveProxies":true,"lowerBound":0,"id":202,"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":true,"id":203,"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":204,"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":"description","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":false,"name":"position","changeable":true,"lowerBound":0,"iD":false,"id":206,"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":"owningUserEntities","changeable":true,"lowerBound":0,"iD":false,"id":207,"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":"lastModificationUser","changeable":true,"lowerBound":0,"iD":false,"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":false,"name":"lastModificationTime","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":false,"unsettable":false,"transient":false,"unique":false,"name":"parent","changeable":true,"resolveProxies":true,"lowerBound":0,"id":210,"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":"children","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":false,"unsettable":false,"transient":false,"unique":false,"name":"informationSystemReleases","changeable":true,"resolveProxies":true,"lowerBound":0,"id":212,"derived":false},{"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"},{"id":222,"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":false,"name":"informationSystemDomains","changeable":true,"resolveProxies":true,"lowerBound":0,"id":223,"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":true,"id":224,"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":225,"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":"description","changeable":true,"lowerBound":0,"iD":false,"id":226,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"direction","changeable":true,"lowerBound":0,"iD":false,"id":227,"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":"owningUserEntities","changeable":true,"lowerBound":0,"iD":false,"id":228,"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":"lastModificationUser","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":false,"name":"lastModificationTime","changeable":true,"lowerBound":0,"iD":false,"id":230,"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":"informationSystemReleaseA","changeable":true,"resolveProxies":true,"lowerBound":1,"id":231,"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":"informationSystemReleaseB","changeable":true,"resolveProxies":true,"lowerBound":1,"id":232,"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":"technicalComponentReleases","changeable":true,"resolveProxies":true,"lowerBound":0,"id":233,"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":"transports","changeable":true,"resolveProxies":true,"lowerBound":0,"id":234,"derived":false},{"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"},{"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":"interfacesReleaseA","changeable":true,"resolveProxies":true,"lowerBound":0,"id":243,"derived":false},{"id":244,"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":false,"name":"interfacesReleaseB","changeable":true,"resolveProxies":true,"lowerBound":0,"id":245,"derived":false},{"id":246,"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":false,"name":"informationSystemInterfaces","changeable":true,"resolveProxies":true,"lowerBound":0,"id":247,"derived":false},{"id":248,"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":false,"name":"informationSystemInterface","changeable":true,"resolveProxies":true,"lowerBound":1,"id":249,"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":true,"id":250,"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":251,"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":252,"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":"description","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":false,"name":"typeOfStatus","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":"owningUserEntities","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":false,"name":"lastModificationUser","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":false,"name":"lastModificationTime","changeable":true,"lowerBound":0,"iD":false,"id":257,"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":false,"name":"parent","changeable":true,"resolveProxies":true,"lowerBound":0,"id":258,"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":"children","changeable":true,"resolveProxies":true,"lowerBound":0,"id":259,"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":"successors","changeable":true,"resolveProxies":true,"lowerBound":0,"id":260,"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":"predecessors","changeable":true,"resolveProxies":true,"lowerBound":0,"id":261,"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":"businessObjectAssociations","changeable":true,"resolveProxies":true,"lowerBound":0,"id":262,"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":"projects","changeable":true,"resolveProxies":true,"lowerBound":0,"id":263,"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":"technicalComponentReleases","changeable":true,"resolveProxies":true,"lowerBound":0,"id":264,"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":"baseComponents","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":false,"unsettable":false,"transient":false,"unique":false,"name":"parentComponents","changeable":true,"resolveProxies":true,"lowerBound":0,"id":266,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"runtimePeriod","changeable":true,"lowerBound":0,"iD":false,"id":267,"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":"itServices","changeable":true,"resolveProxies":true,"lowerBound":0,"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"},{"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"},{"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":"informationSystemRelease","changeable":true,"resolveProxies":true,"lowerBound":1,"id":285,"derived":false},{"id":286,"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":false,"name":"informationSystemReleases","changeable":true,"resolveProxies":true,"lowerBound":0,"id":287,"derived":false},{"id":288,"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":false,"name":"informationSystemReleases","changeable":true,"resolveProxies":true,"lowerBound":0,"id":289,"derived":false},{"id":290,"eClass":"EGenericType"},{"id":291,"eClass":"EGenericType"},{"id":292,"eClass":"EGenericType"},{"id":293,"eClass":"EGenericType"},{"id":294,"eClass":"EGenericType"},{"id":295,"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":false,"name":"informationSystemReleases","changeable":true,"resolveProxies":true,"lowerBound":0,"id":296,"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":true,"id":297,"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":298,"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":"description","changeable":true,"lowerBound":0,"iD":false,"id":299,"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":"position","changeable":true,"lowerBound":0,"iD":false,"id":300,"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":"owningUserEntities","changeable":true,"lowerBound":0,"iD":false,"id":301,"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":"lastModificationUser","changeable":true,"lowerBound":0,"iD":false,"id":302,"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":"lastModificationTime","changeable":true,"lowerBound":0,"iD":false,"id":303,"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":false,"name":"parent","changeable":true,"resolveProxies":true,"lowerBound":0,"id":304,"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":"children","changeable":true,"resolveProxies":true,"lowerBound":0,"id":305,"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":"technicalComponentReleaseAssociations","changeable":true,"resolveProxies":true,"lowerBound":0,"id":306,"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":"itServices","changeable":true,"resolveProxies":true,"lowerBound":0,"id":307,"derived":false},{"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":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":false,"name":"infrastructureElement","changeable":true,"resolveProxies":true,"lowerBound":1,"id":318,"derived":false},{"id":319,"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":false,"name":"infrastructureElements","changeable":true,"resolveProxies":true,"lowerBound":0,"id":320,"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":true,"id":321,"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":322,"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":"description","changeable":true,"lowerBound":0,"iD":false,"id":323,"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":"position","changeable":true,"lowerBound":0,"iD":false,"id":324,"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":"owningUserEntities","changeable":true,"lowerBound":0,"iD":false,"id":325,"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":"lastModificationUser","changeable":true,"lowerBound":0,"iD":false,"id":326,"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":"lastModificationTime","changeable":true,"lowerBound":0,"iD":false,"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":false,"name":"parent","changeable":true,"resolveProxies":true,"lowerBound":0,"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":false,"name":"children","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":false,"unsettable":false,"transient":false,"unique":false,"name":"baseComponents","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":false,"unsettable":false,"transient":false,"unique":false,"name":"parentComponents","changeable":true,"resolveProxies":true,"lowerBound":0,"id":331,"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":"technicalComponentReleases","changeable":true,"resolveProxies":true,"lowerBound":0,"id":332,"derived":false},{"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"},{"id":346,"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":false,"name":"itServices","changeable":true,"resolveProxies":true,"lowerBound":0,"id":347,"derived":false},{"id":348,"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":true,"id":349,"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":350,"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":"description","changeable":true,"lowerBound":0,"iD":false,"id":351,"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":"position","changeable":true,"lowerBound":0,"iD":false,"id":352,"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":"owningUserEntities","changeable":true,"lowerBound":0,"iD":false,"id":353,"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":"lastModificationUser","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":false,"name":"lastModificationTime","changeable":true,"lowerBound":0,"iD":false,"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":false,"name":"parent","changeable":true,"resolveProxies":true,"lowerBound":0,"id":356,"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":"children","changeable":true,"resolveProxies":true,"lowerBound":0,"id":357,"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":"projects","changeable":true,"resolveProxies":true,"lowerBound":0,"id":358,"derived":false},{"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"},{"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":false,"unsettable":false,"transient":false,"unique":false,"name":"products","changeable":true,"resolveProxies":true,"lowerBound":0,"id":371,"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":true,"id":372,"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":373,"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":"description","changeable":true,"lowerBound":0,"iD":false,"id":374,"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":"position","changeable":true,"lowerBound":0,"iD":false,"id":375,"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":"owningUserEntities","changeable":true,"lowerBound":0,"iD":false,"id":376,"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":"lastModificationUser","changeable":true,"lowerBound":0,"iD":false,"id":377,"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":"lastModificationTime","changeable":true,"lowerBound":0,"iD":false,"id":378,"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":false,"name":"parent","changeable":true,"resolveProxies":true,"lowerBound":0,"id":379,"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":"children","changeable":true,"resolveProxies":true,"lowerBound":0,"id":380,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"runtimePeriod","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":false,"unsettable":false,"transient":false,"unique":false,"name":"baseComponents","changeable":true,"resolveProxies":true,"lowerBound":0,"id":382,"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":"parentComponents","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"},{"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"},{"id":400,"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":true,"id":401,"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":402,"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":403,"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":"description","changeable":true,"lowerBound":0,"iD":false,"id":404,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"availableForInterfaces","changeable":true,"lowerBound":1,"iD":false,"id":405,"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":"owningUserEntities","changeable":true,"lowerBound":0,"iD":false,"id":406,"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":"lastModificationUser","changeable":true,"lowerBound":0,"iD":false,"id":407,"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":"lastModificationTime","changeable":true,"lowerBound":0,"iD":false,"id":408,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"typeOfStatus","changeable":true,"lowerBound":1,"iD":false,"id":409,"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":"infrastructureElementAssociations","changeable":true,"resolveProxies":true,"lowerBound":0,"id":410,"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":"predecessors","changeable":true,"resolveProxies":true,"lowerBound":0,"id":411,"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":"successors","changeable":true,"resolveProxies":true,"lowerBound":0,"id":412,"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":"baseComponents","changeable":true,"resolveProxies":true,"lowerBound":0,"id":413,"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":"parentComponents","changeable":true,"resolveProxies":true,"lowerBound":0,"id":414,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"runtimePeriod","changeable":true,"lowerBound":0,"iD":false,"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"},{"id":425,"eClass":"EGenericType"},{"id":426,"eClass":"EGenericType"},{"id":427,"eClass":"EGenericType"},{"id":428,"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":false,"name":"technicalComponentRelease","changeable":true,"resolveProxies":true,"lowerBound":1,"id":429,"derived":false},{"id":430,"eClass":"EGenericType"},{"id":431,"eClass":"EGenericType"},{"id":432,"eClass":"EGenericType"},{"id":433,"eClass":"EGenericType"},{"id":434,"eClass":"EGenericType"},{"id":435,"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":true,"id":436,"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":"owningUserEntities","changeable":true,"lowerBound":0,"iD":false,"id":437,"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":"lastModificationUser","changeable":true,"lowerBound":0,"iD":false,"id":438,"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":"lastModificationTime","changeable":true,"lowerBound":0,"iD":false,"id":439,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"direction","changeable":true,"lowerBound":0,"iD":false,"id":440,"derived":false},{"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"},{"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":true,"id":448,"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":"owningUserEntities","changeable":true,"lowerBound":0,"iD":false,"id":449,"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":"lastModificationUser","changeable":true,"lowerBound":0,"iD":false,"id":450,"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":"lastModificationTime","changeable":true,"lowerBound":0,"iD":false,"id":451,"derived":false},{"id":452,"eClass":"EGenericType"},{"id":453,"eClass":"EGenericType"},{"id":454,"eClass":"EGenericType"},{"id":455,"eClass":"EGenericType"},{"id":456,"eClass":"EGenericType"},{"id":457,"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":true,"id":458,"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":"owningUserEntities","changeable":true,"lowerBound":0,"iD":false,"id":459,"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":"lastModificationUser","changeable":true,"lowerBound":0,"iD":false,"id":460,"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":"lastModificationTime","changeable":true,"lowerBound":0,"iD":false,"id":461,"derived":false},{"id":462,"eClass":"EGenericType"},{"id":463,"eClass":"EGenericType"},{"id":464,"eClass":"EGenericType"},{"id":465,"eClass":"EGenericType"},{"id":466,"eClass":"EGenericType"},{"id":467,"eClass":"EGenericType"},{"name":"UNDEFINED","id":468,"value":0,"literal":"typeOfStatus_undefined","eClass":"EEnumLiteral"},{"name":"CURRENT","id":469,"value":1,"literal":"typeOfStatus_current","eClass":"EEnumLiteral"},{"name":"PLANNED","id":470,"value":2,"literal":"typeOfStatus_planned","eClass":"EEnumLiteral"},{"name":"TARGET","id":471,"value":3,"literal":"typeOfStatus_target","eClass":"EEnumLiteral"},{"name":"INACTIVE","id":472,"value":4,"literal":"typeOfStatus_inactive","eClass":"EEnumLiteral"},{"name":"UNDEFINED","id":473,"value":0,"literal":"","eClass":"EEnumLiteral"},{"name":"NO_DIRECTION","id":474,"value":1,"literal":"-","eClass":"EEnumLiteral"},{"name":"FIRST_TO_SECOND","id":475,"value":2,"literal":"->","eClass":"EEnumLiteral"},{"name":"SECOND_TO_FIRST","id":476,"value":3,"literal":"<-","eClass":"EEnumLiteral"},{"name":"BOTH_DIRECTIONS","id":477,"value":4,"literal":"<->","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":1,"target":0},{"source":1,"target":22},{"source":1,"target":23},{"source":1,"target":24},{"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":1,"target":31},{"source":22,"target":32},{"source":22,"target":1},{"source":23,"target":33},{"source":23,"target":1},{"source":24,"target":34},{"source":24,"target":1},{"source":25,"target":35},{"source":25,"target":1},{"source":26,"target":36},{"source":26,"target":1},{"source":27,"target":37},{"source":27,"target":1},{"source":28,"target":38},{"source":28,"target":1},{"source":29,"target":1},{"source":29,"target":39},{"source":29,"target":1},{"source":29,"target":30},{"source":39,"target":1},{"source":30,"target":1},{"source":30,"target":40},{"source":30,"target":1},{"source":30,"target":29},{"source":40,"target":1},{"source":31,"target":15},{"source":31,"target":41},{"source":31,"target":1},{"source":31,"target":42},{"source":41,"target":15},{"source":2,"target":0},{"source":2,"target":43},{"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":2,"target":51},{"source":2,"target":52},{"source":2,"target":53},{"source":2,"target":54},{"source":2,"target":55},{"source":2,"target":56},{"source":43,"target":57},{"source":43,"target":2},{"source":44,"target":58},{"source":44,"target":2},{"source":45,"target":59},{"source":45,"target":2},{"source":46,"target":60},{"source":46,"target":2},{"source":47,"target":61},{"source":47,"target":2},{"source":48,"target":62},{"source":48,"target":2},{"source":49,"target":63},{"source":49,"target":2},{"source":50,"target":2},{"source":50,"target":64},{"source":50,"target":2},{"source":50,"target":51},{"source":64,"target":2},{"source":51,"target":2},{"source":51,"target":65},{"source":51,"target":2},{"source":51,"target":50},{"source":65,"target":2},{"source":52,"target":3},{"source":52,"target":66},{"source":52,"target":2},{"source":52,"target":67},{"source":66,"target":3},{"source":53,"target":5},{"source":53,"target":68},{"source":53,"target":2},{"source":53,"target":69},{"source":68,"target":5},{"source":54,"target":6},{"source":54,"target":70},{"source":54,"target":2},{"source":54,"target":71},{"source":70,"target":6},{"source":55,"target":7},{"source":55,"target":72},{"source":55,"target":2},{"source":55,"target":73},{"source":72,"target":7},{"source":56,"target":13},{"source":56,"target":74},{"source":56,"target":2},{"source":56,"target":75},{"source":74,"target":13},{"source":3,"target":0},{"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":67},{"source":3,"target":85},{"source":3,"target":86},{"source":3,"target":87},{"source":3,"target":88},{"source":76,"target":89},{"source":76,"target":3},{"source":77,"target":90},{"source":77,"target":3},{"source":78,"target":91},{"source":78,"target":3},{"source":79,"target":92},{"source":79,"target":3},{"source":80,"target":93},{"source":80,"target":3},{"source":81,"target":94},{"source":81,"target":3},{"source":82,"target":95},{"source":82,"target":3},{"source":83,"target":3},{"source":83,"target":96},{"source":83,"target":3},{"source":83,"target":84},{"source":96,"target":3},{"source":84,"target":3},{"source":84,"target":97},{"source":84,"target":3},{"source":84,"target":83},{"source":97,"target":3},{"source":67,"target":2},{"source":67,"target":98},{"source":67,"target":3},{"source":67,"target":52},{"source":98,"target":2},{"source":85,"target":6},{"source":85,"target":99},{"source":85,"target":3},{"source":85,"target":100},{"source":99,"target":6},{"source":86,"target":10},{"source":86,"target":101},{"source":86,"target":3},{"source":86,"target":102},{"source":101,"target":10},{"source":87,"target":12},{"source":87,"target":103},{"source":87,"target":3},{"source":87,"target":104},{"source":103,"target":12},{"source":88,"target":14},{"source":88,"target":105},{"source":88,"target":3},{"source":88,"target":106},{"source":105,"target":14},{"source":4,"target":0},{"source":4,"target":107},{"source":4,"target":108},{"source":4,"target":109},{"source":4,"target":110},{"source":4,"target":111},{"source":4,"target":112},{"source":4,"target":113},{"source":4,"target":114},{"source":107,"target":115},{"source":107,"target":4},{"source":108,"target":116},{"source":108,"target":4},{"source":109,"target":117},{"source":109,"target":4},{"source":110,"target":118},{"source":110,"target":4},{"source":111,"target":7},{"source":111,"target":119},{"source":111,"target":4},{"source":111,"target":120},{"source":119,"target":7},{"source":112,"target":5},{"source":112,"target":121},{"source":112,"target":4},{"source":112,"target":122},{"source":121,"target":5},{"source":113,"target":10},{"source":113,"target":123},{"source":113,"target":4},{"source":113,"target":124},{"source":123,"target":10},{"source":114,"target":13},{"source":114,"target":125},{"source":114,"target":4},{"source":114,"target":126},{"source":125,"target":13},{"source":5,"target":0},{"source":5,"target":127},{"source":5,"target":128},{"source":5,"target":129},{"source":5,"target":130},{"source":5,"target":131},{"source":5,"target":132},{"source":5,"target":133},{"source":5,"target":134},{"source":5,"target":135},{"source":5,"target":122},{"source":5,"target":69},{"source":5,"target":136},{"source":127,"target":137},{"source":127,"target":5},{"source":128,"target":138},{"source":128,"target":5},{"source":129,"target":139},{"source":129,"target":5},{"source":130,"target":140},{"source":130,"target":5},{"source":131,"target":141},{"source":131,"target":5},{"source":132,"target":142},{"source":132,"target":5},{"source":133,"target":143},{"source":133,"target":5},{"source":134,"target":5},{"source":134,"target":144},{"source":134,"target":5},{"source":134,"target":135},{"source":144,"target":5},{"source":135,"target":5},{"source":135,"target":145},{"source":135,"target":5},{"source":135,"target":134},{"source":145,"target":5},{"source":122,"target":4},{"source":122,"target":146},{"source":122,"target":5},{"source":122,"target":112},{"source":146,"target":4},{"source":69,"target":2},{"source":69,"target":147},{"source":69,"target":5},{"source":69,"target":53},{"source":147,"target":2},{"source":136,"target":14},{"source":136,"target":148},{"source":136,"target":5},{"source":136,"target":149},{"source":148,"target":14},{"source":6,"target":0},{"source":6,"target":150},{"source":6,"target":151},{"source":6,"target":152},{"source":6,"target":153},{"source":6,"target":154},{"source":6,"target":155},{"source":6,"target":156},{"source":6,"target":157},{"source":6,"target":158},{"source":6,"target":71},{"source":6,"target":100},{"source":6,"target":159},{"source":6,"target":160},{"source":6,"target":161},{"source":6,"target":162},{"source":150,"target":163},{"source":150,"target":6},{"source":151,"target":164},{"source":151,"target":6},{"source":152,"target":165},{"source":152,"target":6},{"source":153,"target":166},{"source":153,"target":6},{"source":154,"target":167},{"source":154,"target":6},{"source":155,"target":168},{"source":155,"target":6},{"source":156,"target":169},{"source":156,"target":6},{"source":157,"target":6},{"source":157,"target":170},{"source":157,"target":6},{"source":157,"target":158},{"source":170,"target":6},{"source":158,"target":6},{"source":158,"target":171},{"source":158,"target":6},{"source":158,"target":157},{"source":171,"target":6},{"source":71,"target":2},{"source":71,"target":172},{"source":71,"target":6},{"source":71,"target":54},{"source":172,"target":2},{"source":100,"target":3},{"source":100,"target":173},{"source":100,"target":6},{"source":100,"target":85},{"source":173,"target":3},{"source":159,"target":6},{"source":159,"target":174},{"source":159,"target":6},{"source":159,"target":160},{"source":174,"target":6},{"source":160,"target":6},{"source":160,"target":175},{"source":160,"target":6},{"source":160,"target":159},{"source":175,"target":6},{"source":161,"target":18},{"source":161,"target":176},{"source":161,"target":6},{"source":161,"target":177},{"source":176,"target":18},{"source":162,"target":16},{"source":162,"target":178},{"source":162,"target":6},{"source":162,"target":179},{"source":178,"target":16},{"source":7,"target":0},{"source":7,"target":180},{"source":7,"target":181},{"source":7,"target":182},{"source":7,"target":183},{"source":7,"target":184},{"source":7,"target":185},{"source":7,"target":186},{"source":7,"target":187},{"source":7,"target":188},{"source":7,"target":73},{"source":7,"target":120},{"source":7,"target":189},{"source":180,"target":190},{"source":180,"target":7},{"source":181,"target":191},{"source":181,"target":7},{"source":182,"target":192},{"source":182,"target":7},{"source":183,"target":193},{"source":183,"target":7},{"source":184,"target":194},{"source":184,"target":7},{"source":185,"target":195},{"source":185,"target":7},{"source":186,"target":196},{"source":186,"target":7},{"source":187,"target":7},{"source":187,"target":197},{"source":187,"target":7},{"source":187,"target":188},{"source":197,"target":7},{"source":188,"target":7},{"source":188,"target":198},{"source":188,"target":7},{"source":188,"target":187},{"source":198,"target":7},{"source":73,"target":2},{"source":73,"target":199},{"source":73,"target":7},{"source":73,"target":55},{"source":199,"target":2},{"source":120,"target":4},{"source":120,"target":200},{"source":120,"target":7},{"source":120,"target":111},{"source":200,"target":4},{"source":189,"target":14},{"source":189,"target":201},{"source":189,"target":7},{"source":189,"target":202},{"source":201,"target":14},{"source":8,"target":0},{"source":8,"target":203},{"source":8,"target":204},{"source":8,"target":205},{"source":8,"target":206},{"source":8,"target":207},{"source":8,"target":208},{"source":8,"target":209},{"source":8,"target":210},{"source":8,"target":211},{"source":8,"target":212},{"source":203,"target":213},{"source":203,"target":8},{"source":204,"target":214},{"source":204,"target":8},{"source":205,"target":215},{"source":205,"target":8},{"source":206,"target":216},{"source":206,"target":8},{"source":207,"target":217},{"source":207,"target":8},{"source":208,"target":218},{"source":208,"target":8},{"source":209,"target":219},{"source":209,"target":8},{"source":210,"target":8},{"source":210,"target":220},{"source":210,"target":8},{"source":210,"target":211},{"source":220,"target":8},{"source":211,"target":8},{"source":211,"target":221},{"source":211,"target":8},{"source":211,"target":210},{"source":221,"target":8},{"source":212,"target":10},{"source":212,"target":222},{"source":212,"target":8},{"source":212,"target":223},{"source":222,"target":10},{"source":9,"target":0},{"source":9,"target":224},{"source":9,"target":225},{"source":9,"target":226},{"source":9,"target":227},{"source":9,"target":228},{"source":9,"target":229},{"source":9,"target":230},{"source":9,"target":231},{"source":9,"target":232},{"source":9,"target":233},{"source":9,"target":234},{"source":224,"target":235},{"source":224,"target":9},{"source":225,"target":236},{"source":225,"target":9},{"source":226,"target":237},{"source":226,"target":9},{"source":227,"target":20},{"source":227,"target":238},{"source":227,"target":9},{"source":238,"target":20},{"source":228,"target":239},{"source":228,"target":9},{"source":229,"target":240},{"source":229,"target":9},{"source":230,"target":241},{"source":230,"target":9},{"source":231,"target":10},{"source":231,"target":242},{"source":231,"target":9},{"source":231,"target":243},{"source":242,"target":10},{"source":232,"target":10},{"source":232,"target":244},{"source":232,"target":9},{"source":232,"target":245},{"source":244,"target":10},{"source":233,"target":15},{"source":233,"target":246},{"source":233,"target":9},{"source":233,"target":247},{"source":246,"target":15},{"source":234,"target":16},{"source":234,"target":248},{"source":234,"target":9},{"source":234,"target":249},{"source":248,"target":16},{"source":10,"target":0},{"source":10,"target":250},{"source":10,"target":251},{"source":10,"target":252},{"source":10,"target":253},{"source":10,"target":254},{"source":10,"target":255},{"source":10,"target":256},{"source":10,"target":257},{"source":10,"target":243},{"source":10,"target":245},{"source":10,"target":223},{"source":10,"target":258},{"source":10,"target":259},{"source":10,"target":260},{"source":10,"target":261},{"source":10,"target":262},{"source":10,"target":263},{"source":10,"target":264},{"source":10,"target":124},{"source":10,"target":102},{"source":10,"target":265},{"source":10,"target":266},{"source":10,"target":267},{"source":10,"target":268},{"source":250,"target":269},{"source":250,"target":10},{"source":251,"target":270},{"source":251,"target":10},{"source":252,"target":271},{"source":252,"target":10},{"source":253,"target":272},{"source":253,"target":10},{"source":254,"target":19},{"source":254,"target":273},{"source":254,"target":10},{"source":273,"target":19},{"source":255,"target":274},{"source":255,"target":10},{"source":256,"target":275},{"source":256,"target":10},{"source":257,"target":276},{"source":257,"target":10},{"source":243,"target":9},{"source":243,"target":277},{"source":243,"target":10},{"source":243,"target":231},{"source":277,"target":9},{"source":245,"target":9},{"source":245,"target":278},{"source":245,"target":10},{"source":245,"target":232},{"source":278,"target":9},{"source":223,"target":8},{"source":223,"target":279},{"source":223,"target":10},{"source":223,"target":212},{"source":279,"target":8},{"source":258,"target":10},{"source":258,"target":280},{"source":258,"target":10},{"source":258,"target":259},{"source":280,"target":10},{"source":259,"target":10},{"source":259,"target":281},{"source":259,"target":10},{"source":259,"target":258},{"source":281,"target":10},{"source":260,"target":10},{"source":260,"target":282},{"source":260,"target":10},{"source":260,"target":261},{"source":282,"target":10},{"source":261,"target":10},{"source":261,"target":283},{"source":261,"target":10},{"source":261,"target":260},{"source":283,"target":10},{"source":262,"target":18},{"source":262,"target":284},{"source":262,"target":10},{"source":262,"target":285},{"source":284,"target":18},{"source":263,"target":14},{"source":263,"target":286},{"source":263,"target":10},{"source":263,"target":287},{"source":286,"target":14},{"source":264,"target":15},{"source":264,"target":288},{"source":264,"target":10},{"source":264,"target":289},{"source":288,"target":15},{"source":124,"target":4},{"source":124,"target":290},{"source":124,"target":10},{"source":124,"target":113},{"source":290,"target":4},{"source":102,"target":3},{"source":102,"target":291},{"source":102,"target":10},{"source":102,"target":86},{"source":291,"target":3},{"source":265,"target":10},{"source":265,"target":292},{"source":265,"target":10},{"source":265,"target":266},{"source":292,"target":10},{"source":266,"target":10},{"source":266,"target":293},{"source":266,"target":10},{"source":266,"target":265},{"source":293,"target":10},{"source":267,"target":21},{"source":267,"target":294},{"source":267,"target":10},{"source":294,"target":21},{"source":268,"target":12},{"source":268,"target":295},{"source":268,"target":10},{"source":268,"target":296},{"source":295,"target":12},{"source":11,"target":0},{"source":11,"target":297},{"source":11,"target":298},{"source":11,"target":299},{"source":11,"target":300},{"source":11,"target":301},{"source":11,"target":302},{"source":11,"target":303},{"source":11,"target":304},{"source":11,"target":305},{"source":11,"target":306},{"source":11,"target":307},{"source":297,"target":308},{"source":297,"target":11},{"source":298,"target":309},{"source":298,"target":11},{"source":299,"target":310},{"source":299,"target":11},{"source":300,"target":311},{"source":300,"target":11},{"source":301,"target":312},{"source":301,"target":11},{"source":302,"target":313},{"source":302,"target":11},{"source":303,"target":314},{"source":303,"target":11},{"source":304,"target":11},{"source":304,"target":315},{"source":304,"target":11},{"source":304,"target":305},{"source":315,"target":11},{"source":305,"target":11},{"source":305,"target":316},{"source":305,"target":11},{"source":305,"target":304},{"source":316,"target":11},{"source":306,"target":17},{"source":306,"target":317},{"source":306,"target":11},{"source":306,"target":318},{"source":317,"target":17},{"source":307,"target":12},{"source":307,"target":319},{"source":307,"target":11},{"source":307,"target":320},{"source":319,"target":12},{"source":12,"target":0},{"source":12,"target":321},{"source":12,"target":322},{"source":12,"target":323},{"source":12,"target":324},{"source":12,"target":325},{"source":12,"target":326},{"source":12,"target":327},{"source":12,"target":328},{"source":12,"target":329},{"source":12,"target":330},{"source":12,"target":331},{"source":12,"target":104},{"source":12,"target":296},{"source":12,"target":332},{"source":12,"target":320},{"source":321,"target":333},{"source":321,"target":12},{"source":322,"target":334},{"source":322,"target":12},{"source":323,"target":335},{"source":323,"target":12},{"source":324,"target":336},{"source":324,"target":12},{"source":325,"target":337},{"source":325,"target":12},{"source":326,"target":338},{"source":326,"target":12},{"source":327,"target":339},{"source":327,"target":12},{"source":328,"target":12},{"source":328,"target":340},{"source":328,"target":12},{"source":328,"target":329},{"source":340,"target":12},{"source":329,"target":12},{"source":329,"target":341},{"source":329,"target":12},{"source":329,"target":328},{"source":341,"target":12},{"source":330,"target":12},{"source":330,"target":342},{"source":330,"target":12},{"source":330,"target":331},{"source":342,"target":12},{"source":331,"target":12},{"source":331,"target":343},{"source":331,"target":12},{"source":331,"target":330},{"source":343,"target":12},{"source":104,"target":3},{"source":104,"target":344},{"source":104,"target":12},{"source":104,"target":87},{"source":344,"target":3},{"source":296,"target":10},{"source":296,"target":345},{"source":296,"target":12},{"source":296,"target":268},{"source":345,"target":10},{"source":332,"target":15},{"source":332,"target":346},{"source":332,"target":12},{"source":332,"target":347},{"source":346,"target":15},{"source":320,"target":11},{"source":320,"target":348},{"source":320,"target":12},{"source":320,"target":307},{"source":348,"target":11},{"source":13,"target":0},{"source":13,"target":349},{"source":13,"target":350},{"source":13,"target":351},{"source":13,"target":352},{"source":13,"target":353},{"source":13,"target":354},{"source":13,"target":355},{"source":13,"target":356},{"source":13,"target":357},{"source":13,"target":75},{"source":13,"target":126},{"source":13,"target":358},{"source":349,"target":359},{"source":349,"target":13},{"source":350,"target":360},{"source":350,"target":13},{"source":351,"target":361},{"source":351,"target":13},{"source":352,"target":362},{"source":352,"target":13},{"source":353,"target":363},{"source":353,"target":13},{"source":354,"target":364},{"source":354,"target":13},{"source":355,"target":365},{"source":355,"target":13},{"source":356,"target":13},{"source":356,"target":366},{"source":356,"target":13},{"source":356,"target":357},{"source":366,"target":13},{"source":357,"target":13},{"source":357,"target":367},{"source":357,"target":13},{"source":357,"target":356},{"source":367,"target":13},{"source":75,"target":2},{"source":75,"target":368},{"source":75,"target":13},{"source":75,"target":56},{"source":368,"target":2},{"source":126,"target":4},{"source":126,"target":369},{"source":126,"target":13},{"source":126,"target":114},{"source":369,"target":4},{"source":358,"target":14},{"source":358,"target":370},{"source":358,"target":13},{"source":358,"target":371},{"source":370,"target":14},{"source":14,"target":0},{"source":14,"target":372},{"source":14,"target":373},{"source":14,"target":374},{"source":14,"target":375},{"source":14,"target":376},{"source":14,"target":377},{"source":14,"target":378},{"source":14,"target":379},{"source":14,"target":380},{"source":14,"target":287},{"source":14,"target":381},{"source":14,"target":149},{"source":14,"target":202},{"source":14,"target":371},{"source":14,"target":106},{"source":14,"target":382},{"source":14,"target":383},{"source":372,"target":384},{"source":372,"target":14},{"source":373,"target":385},{"source":373,"target":14},{"source":374,"target":386},{"source":374,"target":14},{"source":375,"target":387},{"source":375,"target":14},{"source":376,"target":388},{"source":376,"target":14},{"source":377,"target":389},{"source":377,"target":14},{"source":378,"target":390},{"source":378,"target":14},{"source":379,"target":14},{"source":379,"target":391},{"source":379,"target":14},{"source":379,"target":380},{"source":391,"target":14},{"source":380,"target":14},{"source":380,"target":392},{"source":380,"target":14},{"source":380,"target":379},{"source":392,"target":14},{"source":287,"target":10},{"source":287,"target":393},{"source":287,"target":14},{"source":287,"target":263},{"source":393,"target":10},{"source":381,"target":21},{"source":381,"target":394},{"source":381,"target":14},{"source":394,"target":21},{"source":149,"target":5},{"source":149,"target":395},{"source":149,"target":14},{"source":149,"target":136},{"source":395,"target":5},{"source":202,"target":7},{"source":202,"target":396},{"source":202,"target":14},{"source":202,"target":189},{"source":396,"target":7},{"source":371,"target":13},{"source":371,"target":397},{"source":371,"target":14},{"source":371,"target":358},{"source":397,"target":13},{"source":106,"target":3},{"source":106,"target":398},{"source":106,"target":14},{"source":106,"target":88},{"source":398,"target":3},{"source":382,"target":14},{"source":382,"target":399},{"source":382,"target":14},{"source":382,"target":383},{"source":399,"target":14},{"source":383,"target":14},{"source":383,"target":400},{"source":383,"target":14},{"source":383,"target":382},{"source":400,"target":14},{"source":15,"target":0},{"source":15,"target":401},{"source":15,"target":402},{"source":15,"target":403},{"source":15,"target":404},{"source":15,"target":405},{"source":15,"target":406},{"source":15,"target":407},{"source":15,"target":408},{"source":15,"target":247},{"source":15,"target":409},{"source":15,"target":42},{"source":15,"target":289},{"source":15,"target":410},{"source":15,"target":411},{"source":15,"target":412},{"source":15,"target":413},{"source":15,"target":414},{"source":15,"target":415},{"source":15,"target":347},{"source":401,"target":416},{"source":401,"target":15},{"source":402,"target":417},{"source":402,"target":15},{"source":403,"target":418},{"source":403,"target":15},{"source":404,"target":419},{"source":404,"target":15},{"source":405,"target":420},{"source":405,"target":15},{"source":406,"target":421},{"source":406,"target":15},{"source":407,"target":422},{"source":407,"target":15},{"source":408,"target":423},{"source":408,"target":15},{"source":247,"target":9},{"source":247,"target":424},{"source":247,"target":15},{"source":247,"target":233},{"source":424,"target":9},{"source":409,"target":19},{"source":409,"target":425},{"source":409,"target":15},{"source":425,"target":19},{"source":42,"target":1},{"source":42,"target":426},{"source":42,"target":15},{"source":42,"target":31},{"source":426,"target":1},{"source":289,"target":10},{"source":289,"target":427},{"source":289,"target":15},{"source":289,"target":264},{"source":427,"target":10},{"source":410,"target":17},{"source":410,"target":428},{"source":410,"target":15},{"source":410,"target":429},{"source":428,"target":17},{"source":411,"target":15},{"source":411,"target":430},{"source":411,"target":15},{"source":411,"target":412},{"source":430,"target":15},{"source":412,"target":15},{"source":412,"target":431},{"source":412,"target":15},{"source":412,"target":411},{"source":431,"target":15},{"source":413,"target":15},{"source":413,"target":432},{"source":413,"target":15},{"source":413,"target":414},{"source":432,"target":15},{"source":414,"target":15},{"source":414,"target":433},{"source":414,"target":15},{"source":414,"target":413},{"source":433,"target":15},{"source":415,"target":21},{"source":415,"target":434},{"source":415,"target":15},{"source":434,"target":21},{"source":347,"target":12},{"source":347,"target":435},{"source":347,"target":15},{"source":347,"target":332},{"source":435,"target":12},{"source":16,"target":0},{"source":16,"target":436},{"source":16,"target":437},{"source":16,"target":438},{"source":16,"target":439},{"source":16,"target":440},{"source":16,"target":249},{"source":16,"target":179},{"source":436,"target":441},{"source":436,"target":16},{"source":437,"target":442},{"source":437,"target":16},{"source":438,"target":443},{"source":438,"target":16},{"source":439,"target":444},{"source":439,"target":16},{"source":440,"target":20},{"source":440,"target":445},{"source":440,"target":16},{"source":445,"target":20},{"source":249,"target":9},{"source":249,"target":446},{"source":249,"target":16},{"source":249,"target":234},{"source":446,"target":9},{"source":179,"target":6},{"source":179,"target":447},{"source":179,"target":16},{"source":179,"target":162},{"source":447,"target":6},{"source":17,"target":0},{"source":17,"target":448},{"source":17,"target":449},{"source":17,"target":450},{"source":17,"target":451},{"source":17,"target":429},{"source":17,"target":318},{"source":448,"target":452},{"source":448,"target":17},{"source":449,"target":453},{"source":449,"target":17},{"source":450,"target":454},{"source":450,"target":17},{"source":451,"target":455},{"source":451,"target":17},{"source":429,"target":15},{"source":429,"target":456},{"source":429,"target":17},{"source":429,"target":410},{"source":456,"target":15},{"source":318,"target":11},{"source":318,"target":457},{"source":318,"target":17},{"source":318,"target":306},{"source":457,"target":11},{"source":18,"target":0},{"source":18,"target":458},{"source":18,"target":459},{"source":18,"target":460},{"source":18,"target":461},{"source":18,"target":285},{"source":18,"target":177},{"source":458,"target":462},{"source":458,"target":18},{"source":459,"target":463},{"source":459,"target":18},{"source":460,"target":464},{"source":460,"target":18},{"source":461,"target":465},{"source":461,"target":18},{"source":285,"target":10},{"source":285,"target":466},{"source":285,"target":18},{"source":285,"target":262},{"source":466,"target":10},{"source":177,"target":6},{"source":177,"target":467},{"source":177,"target":18},{"source":177,"target":161},{"source":467,"target":6},{"source":19,"target":0},{"source":19,"target":468},{"source":19,"target":469},{"source":19,"target":470},{"source":19,"target":471},{"source":19,"target":472},{"source":468,"target":19},{"source":469,"target":19},{"source":470,"target":19},{"source":471,"target":19},{"source":472,"target":19},{"source":20,"target":0},{"source":20,"target":473},{"source":20,"target":474},{"source":20,"target":475},{"source":20,"target":476},{"source":20,"target":477},{"source":473,"target":20},{"source":474,"target":20},{"source":475,"target":20},{"source":476,"target":20},{"source":477,"target":20},{"source":21,"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="bz423760" nsURI="http://www.eclipse.org/emf/texo/test/model/issues/bz423760" nsPrefix="bz423760"> <eClassifiers xsi:type="ecore:EClass" name="Test423760"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> </ecore:EPackage>
github:ecore:/data/PSI-Polska/texo/tests/org.eclipse.emf.texo.modelgenerator.test/src/org/eclipse/emf/texo/modelgenerator/test/models/issues/bz423760.ecore
ecore
bz423760 Test423760 name
null
{"directed":true,"nodes":[{"nsPrefix":"bz423760","nsURI":"http://www.eclipse.org/emf/texo/test/model/issues/bz423760","name":"bz423760","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Test423760","instanceClass":null,"abstract":false,"id":1,"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":2,"derived":false},{"id":3,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":1,"target":0},{"source":1,"target":2},{"source":2,"target":3},{"source":2,"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="mylyn" nsURI="http://www.eclipse.org/oomph/setup/mylyn/1.0" nsPrefix="mylyn"> <eAnnotations source="http://www.eclipse.org/emf/2002/Ecore"> <details key="schemaLocation" value="http://git.eclipse.org/c/oomph/org.eclipse.oomph.git/plain/setups/models/Mylyn.ecore"/> </eAnnotations> <eAnnotations source="http://www.eclipse.org/oomph/setup/Enablement"> <details key="variableName" value="setup.mylyn.p2"/> <details key="repository" value="${oomph.update.url}"/> <details key="installableUnits" value="org.eclipse.oomph.setup.mylyn.feature.group"/> </eAnnotations> <eAnnotations source="http://www.eclipse.org/oomph/setup/Enablement"> <details key="variableName" value="setup.mylyn.updates.p2"/> <details key="repository" value="http://download.eclipse.org/mylyn/releases/latest"/> <details key="releaseTrainAlternate" value="true"/> </eAnnotations> <eAnnotations source="http://www.eclipse.org/oomph/base/LabelProvider"> <details key="imageBaseURI" value="http://git.eclipse.org/c/oomph/org.eclipse.oomph.git/plain/plugins/org.eclipse.oomph.setup.mylyn.edit/icons/full/obj16"/> </eAnnotations> <eClassifiers xsi:type="ecore:EClass" name="MylynQueriesTask" eSuperTypes="../../org.eclipse.oomph.setup/model/Setup.ecore#//SetupTask"> <eAnnotations source="http://www.eclipse.org/oomph/setup/Enablement"> <details key="installableUnits" value="org.eclipse.mylyn.tasks.core org.eclipse.mylyn.tasks.ui"/> </eAnnotations> <eAnnotations source="http://www.eclipse.org/oomph/setup/ValidTriggers"> <details key="triggers" value="STARTUP MANUAL"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="connectorKind" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" defaultValueLiteral="bugzilla"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="repositoryURL" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"> <eAnnotations source="http://www.eclipse.org/oomph/setup/Redirect"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="userID" 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"/> <eStructuralFeatures xsi:type="ecore:EReference" name="queries" upperBound="-1" eType="#//Query" containment="true" eOpposite="#//Query/task"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="query"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="MylynBuildsTask" eSuperTypes="../../org.eclipse.oomph.setup/model/Setup.ecore#//SetupTask"> <eAnnotations source="http://www.eclipse.org/oomph/setup/Enablement"> <details key="installableUnits" value="org.eclipse.mylyn.tasks.core org.eclipse.mylyn.tasks.ui"/> </eAnnotations> <eAnnotations source="http://www.eclipse.org/oomph/setup/ValidTriggers"> <details key="triggers" value="STARTUP MANUAL"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="connectorKind" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" defaultValueLiteral="org.eclipse.mylyn.hudson"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="serverURL" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"> <eAnnotations source="http://www.eclipse.org/oomph/setup/Redirect"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="userID" 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"/> <eStructuralFeatures xsi:type="ecore:EReference" name="buildPlans" upperBound="-1" eType="#//BuildPlan" containment="true"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="buildPlan"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="BuildPlan" eSuperTypes="../../org.eclipse.oomph.base/model/Base.ecore#//ModelElement"> <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="Query" eSuperTypes="../../org.eclipse.oomph.base/model/Base.ecore#//ModelElement"> <eStructuralFeatures xsi:type="ecore:EReference" name="task" eType="#//MylynQueriesTask" eOpposite="#//MylynQueriesTask/queries"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="summary" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="uRL" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="url"/> </eAnnotations> <eAnnotations source="http://www.eclipse.org/oomph/setup/Redirect"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="attributes" upperBound="-1" eType="#//QueryAttribute" containment="true"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="attribute"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="QueryAttribute" 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> </ecore:EPackage>
github:ecore:/data/jhribal/eclipse-oopmh-mirror/plugins/org.eclipse.oomph.setup.mylyn/model/Mylyn.ecore
ecore
mylyn MylynQueriesTask connectorKind bugzilla repositoryURL userID password queries MylynBuildsTask connectorKind org.eclipse.mylyn.hudson serverURL userID password buildPlans BuildPlan name Query task summary uRL attributes QueryAttribute java.util.Map$Entry java.util.Map$Entry key value
null
{"directed":true,"nodes":[{"nsPrefix":"mylyn","nsURI":"http://www.eclipse.org/oomph/setup/mylyn/1.0","name":"mylyn","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MylynQueriesTask","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MylynBuildsTask","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BuildPlan","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Query","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":"java.util.Map$Entry","defaultValue":null,"instanceClassName":"java.util.Map$Entry","name":"QueryAttribute","instanceClass":"java.util.Map$Entry","abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"ordered":true,"upperBound":1,"defaultValue":"bugzilla","volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"bugzilla","unsettable":false,"transient":false,"unique":true,"name":"connectorKind","changeable":true,"lowerBound":1,"iD":false,"id":6,"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":"repositoryURL","changeable":true,"lowerBound":1,"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":"userID","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":"password","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":"queries","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"},{"id":16,"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":"task","changeable":true,"resolveProxies":true,"lowerBound":0,"id":17,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":"org.eclipse.mylyn.hudson","volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"org.eclipse.mylyn.hudson","unsettable":false,"transient":false,"unique":true,"name":"connectorKind","changeable":true,"lowerBound":1,"iD":false,"id":18,"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":"serverURL","changeable":true,"lowerBound":1,"iD":false,"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":"userID","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":"password","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":"buildPlans","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"},{"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":29,"derived":false},{"id":30,"eClass":"EGenericType"},{"id":31,"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":"summary","changeable":true,"lowerBound":1,"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":"uRL","changeable":true,"lowerBound":0,"iD":false,"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":"attributes","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"},{"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":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":"value","changeable":true,"lowerBound":0,"iD":false,"id":41,"derived":false},{"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":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":6,"target":12},{"source":6,"target":1},{"source":7,"target":13},{"source":7,"target":1},{"source":8,"target":14},{"source":8,"target":1},{"source":9,"target":15},{"source":9,"target":1},{"source":10,"target":4},{"source":10,"target":16},{"source":10,"target":1},{"source":10,"target":17},{"source":16,"target":4},{"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":18,"target":24},{"source":18,"target":2},{"source":19,"target":25},{"source":19,"target":2},{"source":20,"target":26},{"source":20,"target":2},{"source":21,"target":27},{"source":21,"target":2},{"source":22,"target":3},{"source":22,"target":28},{"source":22,"target":2},{"source":28,"target":3},{"source":3,"target":0},{"source":3,"target":29},{"source":3,"target":30},{"source":29,"target":31},{"source":29,"target":3},{"source":4,"target":0},{"source":4,"target":17},{"source":4,"target":32},{"source":4,"target":33},{"source":4,"target":34},{"source":4,"target":35},{"source":17,"target":1},{"source":17,"target":36},{"source":17,"target":4},{"source":17,"target":10},{"source":36,"target":1},{"source":32,"target":37},{"source":32,"target":4},{"source":33,"target":38},{"source":33,"target":4},{"source":34,"target":5},{"source":34,"target":39},{"source":34,"target":4},{"source":39,"target":5},{"source":5,"target":0},{"source":5,"target":40},{"source":5,"target":41},{"source":40,"target":42},{"source":40,"target":5},{"source":41,"target":43},{"source":41,"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="idl" nsURI="http://www.zeligsoft.com/2008/idl" nsPrefix="idl"> <eClassifiers xsi:type="ecore:EClass" name="Specification"> <eStructuralFeatures xsi:type="ecore:EReference" name="imports" upperBound="-1" eType="#//Import_decl" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="definitions" upperBound="-1" eType="#//Definition" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Preproc" eSuperTypes="#//Definition #//Export #//ComponentExport"/> <eClassifiers xsi:type="ecore:EClass" name="Preproc_Include" eSuperTypes="#//Preproc"> <eStructuralFeatures xsi:type="ecore:EReference" name="value" eType="#//FileName" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="strValue" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="FileName"> <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="Preproc_Ifdef" eSuperTypes="#//Preproc"> <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="Preproc_Ifndef" eSuperTypes="#//Preproc"> <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="Preproc_Undef" eSuperTypes="#//Preproc"> <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="Preproc_If" eSuperTypes="#//Preproc"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="negation" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EReference" name="value" upperBound="-1" eType="#//Preproc_If_Compare" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Preproc_If_Compare"> <eStructuralFeatures xsi:type="ecore:EReference" name="lhs" eType="#//Preproc_If_Val" 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="rhs" eType="#//Preproc_If_Val" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Preproc_If_Val"> <eStructuralFeatures xsi:type="ecore:EReference" name="value" eType="#//ConstExp" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Preproc_Else" eSuperTypes="#//Preproc"/> <eClassifiers xsi:type="ecore:EClass" name="Preproc_Error" eSuperTypes="#//Preproc"> <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="Preproc_Define" eSuperTypes="#//Preproc"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="exp" eType="#//ConstExp" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Preproc_Endif" eSuperTypes="#//Preproc"/> <eClassifiers xsi:type="ecore:EClass" name="Preproc_Pragma" eSuperTypes="#//Preproc"/> <eClassifiers xsi:type="ecore:EClass" name="Preproc_Pragma_Prefix" eSuperTypes="#//Preproc_Pragma"> <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="Preproc_Pragma_Conn_Type" eSuperTypes="#//Preproc_Pragma"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="valuePort" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="valueConnType" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Preproc_Pragma_Ciao_Lem" eSuperTypes="#//Preproc_Pragma"> <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="Preproc_Pragma_Ciao_Ami4ccm_Interface" eSuperTypes="#//Preproc_Pragma"> <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="Preproc_Pragma_Ciao_Ami4ccm_Receptacle" eSuperTypes="#//Preproc_Pragma"> <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="Preproc_Pragma_Ciao_Ami4ccm_Idl" eSuperTypes="#//Preproc_Pragma"> <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="Preproc_Pragma_Ndds" eSuperTypes="#//Preproc_Pragma"> <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="Preproc_Pragma_Component" eSuperTypes="#//Preproc_Pragma"> <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="Preproc_Pragma_Home" eSuperTypes="#//Preproc_Pragma"> <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="Preproc_Pragma_DDS4CCM_Impl" eSuperTypes="#//Preproc_Pragma"> <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="Preproc_Pragma_Misc" eSuperTypes="#//Preproc_Pragma"/> <eClassifiers xsi:type="ecore:EClass" name="File_Marker" eSuperTypes="#//Preproc"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="file" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Excluded_File_Marker" eSuperTypes="#//Preproc"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="file" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Import_decl"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="imported_scope" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Definition"/> <eClassifiers xsi:type="ecore:EClass" name="Module" eSuperTypes="#//Definition"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="comments" upperBound="-1" eType="#//IDLComment" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="definitions" upperBound="-1" eType="#//Definition" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Interface_or_Forward_Decl" eSuperTypes="#//Definition"/> <eClassifiers xsi:type="ecore:EClass" name="Interface_decl" eSuperTypes="#//Interface_or_Forward_Decl #//TemplateDefinition #//FixedDefinition"> <eStructuralFeatures xsi:type="ecore:EReference" name="header" eType="#//Interface_header" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="interfaceBody" eType="#//InterfaceBody" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Forward_decl" eSuperTypes="#//Interface_or_Forward_Decl"> <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="Interface_header"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="isAbstract" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="isLocal" 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="specializes" upperBound="-1" eType="#//ScopedName" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="comments" upperBound="-1" eType="#//IDLComment" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="InterfaceBody"> <eStructuralFeatures xsi:type="ecore:EReference" name="export" upperBound="-1" eType="#//Export" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Export" eSuperTypes="#//HomeExport"/> <eClassifiers xsi:type="ecore:EClass" name="AttrDecl" eSuperTypes="#//Export #//ComponentExport #//PortExport #//ConnectorExport"> <eStructuralFeatures xsi:type="ecore:EReference" name="comments" upperBound="-1" eType="#//IDLComment" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="type" eType="#//ParamTypeSpec" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="names" unique="false" upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="AttrSpec" eSuperTypes="#//AttrDecl"> <eStructuralFeatures xsi:type="ecore:EReference" name="getRaises" eType="#//AttrRaisesExpr" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="setRaises" eType="#//AttrRaisesExpr" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ReadOnlyAttrSpec" eSuperTypes="#//AttrDecl"> <eStructuralFeatures xsi:type="ecore:EReference" name="raises" eType="#//AttrRaisesExpr" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="AttrRaisesExpr"> <eStructuralFeatures xsi:type="ecore:EReference" name="exceptions" eType="#//ExceptionList" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ExceptionList"> <eStructuralFeatures xsi:type="ecore:EReference" name="exception" upperBound="-1" eType="#//ScopedName" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="OpDecl" eSuperTypes="#//Export"> <eStructuralFeatures xsi:type="ecore:EReference" name="comments" upperBound="-1" eType="#//IDLComment" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="isOneway" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EReference" name="type" eType="#//OpTypeDecl" 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="params" eType="#//ParameterDecls" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="raises" eType="#//ExceptionList" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="context" eType="#//ContextExpr" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="OpTypeDecl"/> <eClassifiers xsi:type="ecore:EClass" name="ParameterDecls"> <eStructuralFeatures xsi:type="ecore:EReference" name="comments" upperBound="-1" eType="#//IDLComment" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="decls" upperBound="-1" eType="#//ParamDcl" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ParamDcl"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="direction" eType="#//ParamDirection"/> <eStructuralFeatures xsi:type="ecore:EReference" name="type" eType="#//ParamTypeSpec" 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:EEnum" name="ParamDirection"> <eLiterals name="In" literal="in"/> <eLiterals name="Out" value="1" literal="out"/> <eLiterals name="InOut" value="2" literal="inout"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ContextExpr"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="literal" unique="false" upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ParamTypeSpec" eSuperTypes="#//OpTypeDecl"/> <eClassifiers xsi:type="ecore:EClass" name="ScopedName" eSuperTypes="#//ParamTypeSpec #//SimpleTypeSpec #//SwitchTypeSpec #//ConstType #//PrimaryExpr"> <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="BaseTypeSpec" eSuperTypes="#//ParamTypeSpec #//SimpleTypeSpec"/> <eClassifiers xsi:type="ecore:EClass" name="FloatingPtType" eSuperTypes="#//BaseTypeSpec #//ConstType"/> <eClassifiers xsi:type="ecore:EClass" name="FloatType" eSuperTypes="#//FloatingPtType"/> <eClassifiers xsi:type="ecore:EClass" name="DoubleType" eSuperTypes="#//FloatingPtType"/> <eClassifiers xsi:type="ecore:EClass" name="LongDoubleType" eSuperTypes="#//FloatingPtType"/> <eClassifiers xsi:type="ecore:EClass" name="IntegerType" eSuperTypes="#//BaseTypeSpec #//SwitchTypeSpec #//ConstType"/> <eClassifiers xsi:type="ecore:EClass" name="SignedInt" eSuperTypes="#//IntegerType"/> <eClassifiers xsi:type="ecore:EClass" name="SignedShortInt" eSuperTypes="#//SignedInt"/> <eClassifiers xsi:type="ecore:EClass" name="SignedLongInt" eSuperTypes="#//SignedInt"/> <eClassifiers xsi:type="ecore:EClass" name="SignedLongLongInt" eSuperTypes="#//SignedInt"/> <eClassifiers xsi:type="ecore:EClass" name="UnsignedInt" eSuperTypes="#//IntegerType"/> <eClassifiers xsi:type="ecore:EClass" name="UnsignedShortInt" eSuperTypes="#//UnsignedInt"/> <eClassifiers xsi:type="ecore:EClass" name="UnsignedLongInt" eSuperTypes="#//UnsignedInt"/> <eClassifiers xsi:type="ecore:EClass" name="UnsignedLongLongInt" eSuperTypes="#//UnsignedInt"/> <eClassifiers xsi:type="ecore:EClass" name="CharType" eSuperTypes="#//BaseTypeSpec #//SwitchTypeSpec #//ConstType"/> <eClassifiers xsi:type="ecore:EClass" name="WideCharType" eSuperTypes="#//BaseTypeSpec #//ConstType"/> <eClassifiers xsi:type="ecore:EClass" name="BooleanType" eSuperTypes="#//BaseTypeSpec #//SwitchTypeSpec #//ConstType"/> <eClassifiers xsi:type="ecore:EClass" name="OctetType" eSuperTypes="#//BaseTypeSpec #//ConstType"/> <eClassifiers xsi:type="ecore:EClass" name="AnyType" eSuperTypes="#//BaseTypeSpec"/> <eClassifiers xsi:type="ecore:EClass" name="ObjectType" eSuperTypes="#//BaseTypeSpec"/> <eClassifiers xsi:type="ecore:EClass" name="ValueBaseType" eSuperTypes="#//BaseTypeSpec"/> <eClassifiers xsi:type="ecore:EClass" name="StringType" eSuperTypes="#//ParamTypeSpec #//TemplateTypeSpec #//ConstType"> <eStructuralFeatures xsi:type="ecore:EReference" name="size" eType="#//PositiveIntConst" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="WideStringType" eSuperTypes="#//ParamTypeSpec #//TemplateTypeSpec #//ConstType"> <eStructuralFeatures xsi:type="ecore:EReference" name="size" eType="#//PositiveIntConst" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ExceptDecl" eSuperTypes="#//Definition #//Export #//TemplateDefinition #//FixedDefinition"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="comments" upperBound="-1" eType="#//IDLComment" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="members" upperBound="-1" eType="#//Member" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Member"> <eStructuralFeatures xsi:type="ecore:EReference" name="type" eType="#//TypeSpec" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="decl" eType="#//Declarator" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="comment" upperBound="-1" eType="#//IDLComment" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Declarator"> <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="SimpleDeclarator" eSuperTypes="#//Declarator"/> <eClassifiers xsi:type="ecore:EClass" name="ComplexDeclarator"/> <eClassifiers xsi:type="ecore:EClass" name="ArrayDeclarator" eSuperTypes="#//Declarator #//ComplexDeclarator"> <eStructuralFeatures xsi:type="ecore:EReference" name="size" upperBound="-1" eType="#//ConstExp" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="StructType" eSuperTypes="#//Definition #//TypeDecl #//ConstrTypeSpec"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="comments" upperBound="-1" eType="#//IDLComment" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="members" upperBound="-1" eType="#//Member" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="TypeDecl" eSuperTypes="#//Definition #//Export #//TemplateDefinition #//FixedDefinition"/> <eClassifiers xsi:type="ecore:EClass" name="TypeDeclarator" eSuperTypes="#//TypeDecl"> <eStructuralFeatures xsi:type="ecore:EReference" name="comments" upperBound="-1" eType="#//IDLComment" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="type" eType="#//TypeSpec" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="declarators" upperBound="-1" eType="#//Declarator" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="TypeSpec" eSuperTypes="#//ActualParameter"/> <eClassifiers xsi:type="ecore:EClass" name="SimpleTypeSpec" eSuperTypes="#//TypeSpec"/> <eClassifiers xsi:type="ecore:EClass" name="TemplateTypeSpec" eSuperTypes="#//SimpleTypeSpec"/> <eClassifiers xsi:type="ecore:EClass" name="ConstrTypeSpec" eSuperTypes="#//TypeSpec"/> <eClassifiers xsi:type="ecore:EClass" name="UnionType" eSuperTypes="#//TypeDecl #//ConstrTypeSpec"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="comments" upperBound="-1" eType="#//IDLComment" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="switch" eType="#//SwitchTypeSpec" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="body" eType="#//SwitchBody" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="SwitchTypeSpec"/> <eClassifiers xsi:type="ecore:EClass" name="SwitchBody"> <eStructuralFeatures xsi:type="ecore:EReference" name="case" upperBound="-1" eType="#//Case" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Case"> <eStructuralFeatures xsi:type="ecore:EReference" name="comments" upperBound="-1" eType="#//IDLComment" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="label" upperBound="-1" eType="#//CaseLabel" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="spec" eType="#//ElementSpec" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CaseLabel"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="isCase" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EReference" name="constExp" eType="#//ConstExp" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="isDefault" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ElementSpec"> <eStructuralFeatures xsi:type="ecore:EReference" name="type" eType="#//TypeSpec" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="declarator" eType="#//Declarator" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="EnumType" eSuperTypes="#//TypeDecl #//ConstrTypeSpec #//SwitchTypeSpec"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="comments" upperBound="-1" eType="#//IDLComment" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="literal" unique="false" upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="SequenceType" eSuperTypes="#//TemplateTypeSpec #//FormalParameterType"> <eStructuralFeatures xsi:type="ecore:EReference" name="type" eType="#//SimpleTypeSpec" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="size" eType="#//PositiveIntConst" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="NativeType" eSuperTypes="#//Definition #//TemplateDefinition #//FixedDefinition"> <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="FixedPtType" eSuperTypes="#//TemplateTypeSpec"> <eStructuralFeatures xsi:type="ecore:EReference" name="lower" eType="#//PositiveIntConst" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="upper" eType="#//PositiveIntConst" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ConstrForwardDecl" eSuperTypes="#//TypeDecl"> <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="StructForwardDecl" eSuperTypes="#//ConstrForwardDecl"/> <eClassifiers xsi:type="ecore:EClass" name="UnionForwardDecl" eSuperTypes="#//ConstrForwardDecl"/> <eClassifiers xsi:type="ecore:EClass" name="PositiveIntConst"> <eStructuralFeatures xsi:type="ecore:EReference" name="exp" eType="#//ConstExp" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ConstDecl" eSuperTypes="#//Definition #//Export #//TemplateDefinition #//FixedDefinition"> <eStructuralFeatures xsi:type="ecore:EReference" name="type" eType="#//ConstType" 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="value" eType="#//ConstExp" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="comments" upperBound="-1" eType="#//IDLComment" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ConstType" eSuperTypes="#//ConstParamType"/> <eClassifiers xsi:type="ecore:EClass" name="FixedPtConstType" eSuperTypes="#//ConstType"/> <eClassifiers xsi:type="ecore:EClass" name="ConstExp" eSuperTypes="#//PrimaryExpr #//ActualParameter"/> <eClassifiers xsi:type="ecore:EClass" name="OrExpr" eSuperTypes="#//ConstExp"> <eStructuralFeatures xsi:type="ecore:EReference" name="lhs" eType="#//XOrExpr" 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="rhs" eType="#//OrExpr" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="XOrExpr"> <eStructuralFeatures xsi:type="ecore:EReference" name="lhs" eType="#//AndExpr" 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="rhs" eType="#//XOrExpr" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="AndExpr"> <eStructuralFeatures xsi:type="ecore:EReference" name="lhs" eType="#//ShiftExpr" 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="rhs" eType="#//AndExpr" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ShiftExpr"> <eStructuralFeatures xsi:type="ecore:EReference" name="lhs" eType="#//AddExpr" 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="rhs" eType="#//ShiftExpr" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="AddExpr"> <eStructuralFeatures xsi:type="ecore:EReference" name="lhs" eType="#//MultExpr" 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="rhs" eType="#//AddExpr" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="MultExpr"> <eStructuralFeatures xsi:type="ecore:EReference" name="lhs" eType="#//UnaryExpr" 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="rhs" eType="#//MultExpr" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="UnaryExpr"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="op" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="expr" eType="#//PrimaryExpr" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="PrimaryExpr"/> <eClassifiers xsi:type="ecore:EClass" name="Literal" eSuperTypes="#//PrimaryExpr"> <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="ComponentDecl" eSuperTypes="#//Definition #//TemplateDefinition #//FixedDefinition"> <eStructuralFeatures xsi:type="ecore:EReference" name="comments" upperBound="-1" eType="#//IDLComment" 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="base" eType="#//ScopedName" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="supports" upperBound="-1" eType="#//ScopedName" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="export" upperBound="-1" eType="#//ComponentExport" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ComponentExport"/> <eClassifiers xsi:type="ecore:EClass" name="ProvidesDcl" eSuperTypes="#//ComponentExport #//PortExport #//ConnectorExport"> <eStructuralFeatures xsi:type="ecore:EReference" name="type" eType="#//ScopedName" 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="comments" upperBound="-1" eType="#//IDLComment" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="UsesDcl" eSuperTypes="#//ComponentExport #//PortExport #//ConnectorExport"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="isMultiple" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EReference" name="type" eType="#//ScopedName" 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="comments" upperBound="-1" eType="#//IDLComment" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="PublishesDcl" eSuperTypes="#//ComponentExport"> <eStructuralFeatures xsi:type="ecore:EReference" name="type" eType="#//ScopedName" 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="comments" upperBound="-1" eType="#//IDLComment" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="EmitDcl" eSuperTypes="#//ComponentExport"> <eStructuralFeatures xsi:type="ecore:EReference" name="type" eType="#//ScopedName" 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="comments" upperBound="-1" eType="#//IDLComment" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ConsumesDcl" eSuperTypes="#//ComponentExport"> <eStructuralFeatures xsi:type="ecore:EReference" name="type" eType="#//ScopedName" 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="comments" upperBound="-1" eType="#//IDLComment" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ComponentForwardDecl" eSuperTypes="#//Definition"> <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="HomeDecl" eSuperTypes="#//Definition #//TemplateDefinition #//FixedDefinition"> <eStructuralFeatures xsi:type="ecore:EReference" name="comments" upperBound="-1" eType="#//IDLComment" 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="base" eType="#//ScopedName" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="supports" upperBound="-1" eType="#//ScopedName" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="manages" eType="#//ScopedName" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="primary_key" eType="#//PrimaryKeySpec" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="export" upperBound="-1" eType="#//HomeExport" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="PrimaryKeySpec"> <eStructuralFeatures xsi:type="ecore:EReference" name="key" eType="#//ScopedName" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="HomeExport"/> <eClassifiers xsi:type="ecore:EClass" name="FactoryDcl" eSuperTypes="#//HomeExport"> <eStructuralFeatures xsi:type="ecore:EReference" name="comments" upperBound="-1" eType="#//IDLComment" 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="params" eType="#//ParameterDecls" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="raises" eType="#//ExceptionList" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="FinderDcl" eSuperTypes="#//HomeExport"> <eStructuralFeatures xsi:type="ecore:EReference" name="comments" upperBound="-1" eType="#//IDLComment" 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="params" eType="#//ParameterDecls" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="raises" eType="#//ExceptionList" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Event" eSuperTypes="#//Definition #//TemplateDefinition #//FixedDefinition"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="isAbstract" 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="EventDcl" eSuperTypes="#//Event"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="isCustom" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="isTruncatable" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EReference" name="base" upperBound="-1" eType="#//ScopedName" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="supports" upperBound="-1" eType="#//ScopedName" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="export" upperBound="-1" eType="#//Export" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="member" upperBound="-1" eType="#//StateMember" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="StateMember"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="isPublic" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EReference" name="type" eType="#//ParamTypeSpec" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="names" unique="false" upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="EventForwardDcl" eSuperTypes="#//Event"/> <eClassifiers xsi:type="ecore:EClass" name="PortTypeDecl" eSuperTypes="#//Definition #//TemplateDefinition #//FixedDefinition"> <eStructuralFeatures xsi:type="ecore:EReference" name="comments" upperBound="-1" eType="#//IDLComment" 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="exports" upperBound="-1" eType="#//PortExport" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="PortExport"/> <eClassifiers xsi:type="ecore:EClass" name="PortDecl" eSuperTypes="#//ComponentExport #//ConnectorExport"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="isMirror" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EReference" name="type" eType="#//ScopedName" 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="comments" upperBound="-1" eType="#//IDLComment" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Connector" eSuperTypes="#//Definition #//TemplateDefinition #//FixedDefinition"> <eStructuralFeatures xsi:type="ecore:EReference" name="header" eType="#//ConnectorHeader" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="exports" upperBound="-1" eType="#//ConnectorExport" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ConnectorHeader"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="base" eType="#//ScopedName" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ConnectorExport"/> <eClassifiers xsi:type="ecore:EClass" name="TemplateModule" eSuperTypes="#//Definition"> <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" upperBound="-1" eType="#//FormalParameter" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="definitions" upperBound="-1" eType="#//TemplateDefinition" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="FormalParameter"> <eStructuralFeatures xsi:type="ecore:EReference" name="type" eType="#//FormalParameterType" 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="FormalParameterType"/> <eClassifiers xsi:type="ecore:EClass" name="TypenameParamType" eSuperTypes="#//FormalParameterType"/> <eClassifiers xsi:type="ecore:EClass" name="InterfaceParamType" eSuperTypes="#//FormalParameterType"/> <eClassifiers xsi:type="ecore:EClass" name="ValuetypeParamType" eSuperTypes="#//FormalParameterType"/> <eClassifiers xsi:type="ecore:EClass" name="EventParamType" eSuperTypes="#//FormalParameterType"/> <eClassifiers xsi:type="ecore:EClass" name="StructParamType" eSuperTypes="#//FormalParameterType"/> <eClassifiers xsi:type="ecore:EClass" name="UnionParamType" eSuperTypes="#//FormalParameterType"/> <eClassifiers xsi:type="ecore:EClass" name="ExceptionParamType" eSuperTypes="#//FormalParameterType"/> <eClassifiers xsi:type="ecore:EClass" name="EnumParamType" eSuperTypes="#//FormalParameterType"/> <eClassifiers xsi:type="ecore:EClass" name="SequenceParamType" eSuperTypes="#//FormalParameterType"/> <eClassifiers xsi:type="ecore:EClass" name="ConstParamType" eSuperTypes="#//FormalParameterType"/> <eClassifiers xsi:type="ecore:EClass" name="TemplateDefinition"/> <eClassifiers xsi:type="ecore:EClass" name="FixedModule" eSuperTypes="#//TemplateDefinition #//FixedDefinition"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="definitions" upperBound="-1" eType="#//FixedDefinition" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="FixedDefinition"/> <eClassifiers xsi:type="ecore:EClass" name="TemplateModuleInst" eSuperTypes="#//Definition"> <eStructuralFeatures xsi:type="ecore:EReference" name="type" eType="#//ScopedName" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="parameter" upperBound="-1" eType="#//ActualParameter" 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="comments" upperBound="-1" eType="#//IDLComment" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ActualParameter"/> <eClassifiers xsi:type="ecore:EClass" name="TemplateModuleRef" eSuperTypes="#//TemplateDefinition"> <eStructuralFeatures xsi:type="ecore:EReference" name="type" eType="#//ScopedName" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="id" unique="false" upperBound="-1" 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="IDLComment" eSuperTypes="#//Definition #//Export #//ComponentExport #//PortExport #//ConnectorExport #//TemplateDefinition #//FixedDefinition"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="body" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> </ecore:EPackage>
github:ecore:/data/ZeligsoftDev/CX4CBDDS/bundles/com.zeligsoft.domain.omg.corba.dsl/src-gen/com/zeligsoft/domain/omg/corba/dsl/idl/impl/idl.ecore
ecore
idl Specification imports definitions Preproc Preproc_Include value strValue FileName name Preproc_Ifdef value Preproc_Ifndef value Preproc_Undef value Preproc_If negation value Preproc_If_Compare lhs op rhs Preproc_If_Val value Preproc_Else Preproc_Error value Preproc_Define value exp Preproc_Endif Preproc_Pragma Preproc_Pragma_Prefix value Preproc_Pragma_Conn_Type valuePort valueConnType Preproc_Pragma_Ciao_Lem value Preproc_Pragma_Ciao_Ami4ccm_Interface value Preproc_Pragma_Ciao_Ami4ccm_Receptacle value Preproc_Pragma_Ciao_Ami4ccm_Idl value Preproc_Pragma_Ndds value Preproc_Pragma_Component value Preproc_Pragma_Home value Preproc_Pragma_DDS4CCM_Impl value Preproc_Pragma_Misc File_Marker file Excluded_File_Marker file Import_decl imported_scope Definition Module name comments definitions Interface_or_Forward_Decl Interface_decl header interfaceBody Forward_decl name Interface_header isAbstract isLocal name specializes comments InterfaceBody export Export AttrDecl comments type names AttrSpec getRaises setRaises ReadOnlyAttrSpec raises AttrRaisesExpr exceptions ExceptionList exception OpDecl comments isOneway type name params raises context OpTypeDecl ParameterDecls comments decls ParamDcl direction type name ParamDirection In in Out out InOut inout ContextExpr literal ParamTypeSpec ScopedName name BaseTypeSpec FloatingPtType FloatType DoubleType LongDoubleType IntegerType SignedInt SignedShortInt SignedLongInt SignedLongLongInt UnsignedInt UnsignedShortInt UnsignedLongInt UnsignedLongLongInt CharType WideCharType BooleanType OctetType AnyType ObjectType ValueBaseType StringType size WideStringType size ExceptDecl name comments members Member type decl comment Declarator id SimpleDeclarator ComplexDeclarator ArrayDeclarator size StructType name comments members TypeDecl TypeDeclarator comments type declarators TypeSpec SimpleTypeSpec TemplateTypeSpec ConstrTypeSpec UnionType name comments switch body SwitchTypeSpec SwitchBody case Case comments label spec CaseLabel isCase constExp isDefault ElementSpec type declarator EnumType name comments literal SequenceType type size NativeType name FixedPtType lower upper ConstrForwardDecl name StructForwardDecl UnionForwardDecl PositiveIntConst exp ConstDecl type name value comments ConstType FixedPtConstType ConstExp OrExpr lhs op rhs XOrExpr lhs op rhs AndExpr lhs op rhs ShiftExpr lhs op rhs AddExpr lhs op rhs MultExpr lhs op rhs UnaryExpr op expr PrimaryExpr Literal value ComponentDecl comments name base supports export ComponentExport ProvidesDcl type name comments UsesDcl isMultiple type name comments PublishesDcl type name comments EmitDcl type name comments ConsumesDcl type name comments ComponentForwardDecl name HomeDecl comments name base supports manages primary_key export PrimaryKeySpec key HomeExport FactoryDcl comments name params raises FinderDcl comments name params raises Event isAbstract name EventDcl isCustom isTruncatable base supports export member StateMember isPublic type names EventForwardDcl PortTypeDecl comments name exports PortExport PortDecl isMirror type name comments Connector header exports ConnectorHeader name base ConnectorExport TemplateModule name parameters definitions FormalParameter type name FormalParameterType TypenameParamType InterfaceParamType ValuetypeParamType EventParamType StructParamType UnionParamType ExceptionParamType EnumParamType SequenceParamType ConstParamType TemplateDefinition FixedModule name definitions FixedDefinition TemplateModuleInst type parameter name comments ActualParameter TemplateModuleRef type id name IDLComment body
null
{"directed":true,"nodes":[{"nsPrefix":"idl","nsURI":"http://www.zeligsoft.com/2008/idl","name":"idl","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Specification","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Preproc","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Preproc_Include","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FileName","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Preproc_Ifdef","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Preproc_Ifndef","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Preproc_Undef","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Preproc_If","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Preproc_If_Compare","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Preproc_If_Val","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Preproc_Else","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Preproc_Error","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Preproc_Define","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Preproc_Endif","instanceClass":null,"abstract":false,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Preproc_Pragma","instanceClass":null,"abstract":false,"id":15,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Preproc_Pragma_Prefix","instanceClass":null,"abstract":false,"id":16,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Preproc_Pragma_Conn_Type","instanceClass":null,"abstract":false,"id":17,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Preproc_Pragma_Ciao_Lem","instanceClass":null,"abstract":false,"id":18,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Preproc_Pragma_Ciao_Ami4ccm_Interface","instanceClass":null,"abstract":false,"id":19,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Preproc_Pragma_Ciao_Ami4ccm_Receptacle","instanceClass":null,"abstract":false,"id":20,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Preproc_Pragma_Ciao_Ami4ccm_Idl","instanceClass":null,"abstract":false,"id":21,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Preproc_Pragma_Ndds","instanceClass":null,"abstract":false,"id":22,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Preproc_Pragma_Component","instanceClass":null,"abstract":false,"id":23,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Preproc_Pragma_Home","instanceClass":null,"abstract":false,"id":24,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Preproc_Pragma_DDS4CCM_Impl","instanceClass":null,"abstract":false,"id":25,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Preproc_Pragma_Misc","instanceClass":null,"abstract":false,"id":26,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"File_Marker","instanceClass":null,"abstract":false,"id":27,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Excluded_File_Marker","instanceClass":null,"abstract":false,"id":28,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Import_decl","instanceClass":null,"abstract":false,"id":29,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Definition","instanceClass":null,"abstract":false,"id":30,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Module","instanceClass":null,"abstract":false,"id":31,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Interface_or_Forward_Decl","instanceClass":null,"abstract":false,"id":32,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Interface_decl","instanceClass":null,"abstract":false,"id":33,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Forward_decl","instanceClass":null,"abstract":false,"id":34,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Interface_header","instanceClass":null,"abstract":false,"id":35,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InterfaceBody","instanceClass":null,"abstract":false,"id":36,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Export","instanceClass":null,"abstract":false,"id":37,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AttrDecl","instanceClass":null,"abstract":false,"id":38,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AttrSpec","instanceClass":null,"abstract":false,"id":39,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ReadOnlyAttrSpec","instanceClass":null,"abstract":false,"id":40,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AttrRaisesExpr","instanceClass":null,"abstract":false,"id":41,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExceptionList","instanceClass":null,"abstract":false,"id":42,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OpDecl","instanceClass":null,"abstract":false,"id":43,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OpTypeDecl","instanceClass":null,"abstract":false,"id":44,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ParameterDecls","instanceClass":null,"abstract":false,"id":45,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ParamDcl","instanceClass":null,"abstract":false,"id":46,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"ParamDirection","instanceClass":null,"id":47,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ContextExpr","instanceClass":null,"abstract":false,"id":48,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ParamTypeSpec","instanceClass":null,"abstract":false,"id":49,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ScopedName","instanceClass":null,"abstract":false,"id":50,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BaseTypeSpec","instanceClass":null,"abstract":false,"id":51,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FloatingPtType","instanceClass":null,"abstract":false,"id":52,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FloatType","instanceClass":null,"abstract":false,"id":53,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DoubleType","instanceClass":null,"abstract":false,"id":54,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LongDoubleType","instanceClass":null,"abstract":false,"id":55,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IntegerType","instanceClass":null,"abstract":false,"id":56,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SignedInt","instanceClass":null,"abstract":false,"id":57,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SignedShortInt","instanceClass":null,"abstract":false,"id":58,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SignedLongInt","instanceClass":null,"abstract":false,"id":59,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SignedLongLongInt","instanceClass":null,"abstract":false,"id":60,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"UnsignedInt","instanceClass":null,"abstract":false,"id":61,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"UnsignedShortInt","instanceClass":null,"abstract":false,"id":62,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"UnsignedLongInt","instanceClass":null,"abstract":false,"id":63,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"UnsignedLongLongInt","instanceClass":null,"abstract":false,"id":64,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CharType","instanceClass":null,"abstract":false,"id":65,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"WideCharType","instanceClass":null,"abstract":false,"id":66,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BooleanType","instanceClass":null,"abstract":false,"id":67,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OctetType","instanceClass":null,"abstract":false,"id":68,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AnyType","instanceClass":null,"abstract":false,"id":69,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ObjectType","instanceClass":null,"abstract":false,"id":70,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ValueBaseType","instanceClass":null,"abstract":false,"id":71,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StringType","instanceClass":null,"abstract":false,"id":72,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"WideStringType","instanceClass":null,"abstract":false,"id":73,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExceptDecl","instanceClass":null,"abstract":false,"id":74,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Member","instanceClass":null,"abstract":false,"id":75,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Declarator","instanceClass":null,"abstract":false,"id":76,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SimpleDeclarator","instanceClass":null,"abstract":false,"id":77,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ComplexDeclarator","instanceClass":null,"abstract":false,"id":78,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ArrayDeclarator","instanceClass":null,"abstract":false,"id":79,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StructType","instanceClass":null,"abstract":false,"id":80,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TypeDecl","instanceClass":null,"abstract":false,"id":81,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TypeDeclarator","instanceClass":null,"abstract":false,"id":82,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TypeSpec","instanceClass":null,"abstract":false,"id":83,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SimpleTypeSpec","instanceClass":null,"abstract":false,"id":84,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TemplateTypeSpec","instanceClass":null,"abstract":false,"id":85,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ConstrTypeSpec","instanceClass":null,"abstract":false,"id":86,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"UnionType","instanceClass":null,"abstract":false,"id":87,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SwitchTypeSpec","instanceClass":null,"abstract":false,"id":88,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SwitchBody","instanceClass":null,"abstract":false,"id":89,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Case","instanceClass":null,"abstract":false,"id":90,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CaseLabel","instanceClass":null,"abstract":false,"id":91,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ElementSpec","instanceClass":null,"abstract":false,"id":92,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EnumType","instanceClass":null,"abstract":false,"id":93,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SequenceType","instanceClass":null,"abstract":false,"id":94,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NativeType","instanceClass":null,"abstract":false,"id":95,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FixedPtType","instanceClass":null,"abstract":false,"id":96,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ConstrForwardDecl","instanceClass":null,"abstract":false,"id":97,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StructForwardDecl","instanceClass":null,"abstract":false,"id":98,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"UnionForwardDecl","instanceClass":null,"abstract":false,"id":99,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PositiveIntConst","instanceClass":null,"abstract":false,"id":100,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ConstDecl","instanceClass":null,"abstract":false,"id":101,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ConstType","instanceClass":null,"abstract":false,"id":102,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FixedPtConstType","instanceClass":null,"abstract":false,"id":103,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ConstExp","instanceClass":null,"abstract":false,"id":104,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OrExpr","instanceClass":null,"abstract":false,"id":105,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"XOrExpr","instanceClass":null,"abstract":false,"id":106,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AndExpr","instanceClass":null,"abstract":false,"id":107,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ShiftExpr","instanceClass":null,"abstract":false,"id":108,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AddExpr","instanceClass":null,"abstract":false,"id":109,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MultExpr","instanceClass":null,"abstract":false,"id":110,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"UnaryExpr","instanceClass":null,"abstract":false,"id":111,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PrimaryExpr","instanceClass":null,"abstract":false,"id":112,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Literal","instanceClass":null,"abstract":false,"id":113,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ComponentDecl","instanceClass":null,"abstract":false,"id":114,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ComponentExport","instanceClass":null,"abstract":false,"id":115,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ProvidesDcl","instanceClass":null,"abstract":false,"id":116,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"UsesDcl","instanceClass":null,"abstract":false,"id":117,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PublishesDcl","instanceClass":null,"abstract":false,"id":118,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EmitDcl","instanceClass":null,"abstract":false,"id":119,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ConsumesDcl","instanceClass":null,"abstract":false,"id":120,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ComponentForwardDecl","instanceClass":null,"abstract":false,"id":121,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"HomeDecl","instanceClass":null,"abstract":false,"id":122,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PrimaryKeySpec","instanceClass":null,"abstract":false,"id":123,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"HomeExport","instanceClass":null,"abstract":false,"id":124,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FactoryDcl","instanceClass":null,"abstract":false,"id":125,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FinderDcl","instanceClass":null,"abstract":false,"id":126,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Event","instanceClass":null,"abstract":false,"id":127,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EventDcl","instanceClass":null,"abstract":false,"id":128,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StateMember","instanceClass":null,"abstract":false,"id":129,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EventForwardDcl","instanceClass":null,"abstract":false,"id":130,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PortTypeDecl","instanceClass":null,"abstract":false,"id":131,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PortExport","instanceClass":null,"abstract":false,"id":132,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PortDecl","instanceClass":null,"abstract":false,"id":133,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Connector","instanceClass":null,"abstract":false,"id":134,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ConnectorHeader","instanceClass":null,"abstract":false,"id":135,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ConnectorExport","instanceClass":null,"abstract":false,"id":136,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TemplateModule","instanceClass":null,"abstract":false,"id":137,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FormalParameter","instanceClass":null,"abstract":false,"id":138,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FormalParameterType","instanceClass":null,"abstract":false,"id":139,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TypenameParamType","instanceClass":null,"abstract":false,"id":140,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InterfaceParamType","instanceClass":null,"abstract":false,"id":141,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ValuetypeParamType","instanceClass":null,"abstract":false,"id":142,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EventParamType","instanceClass":null,"abstract":false,"id":143,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StructParamType","instanceClass":null,"abstract":false,"id":144,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"UnionParamType","instanceClass":null,"abstract":false,"id":145,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExceptionParamType","instanceClass":null,"abstract":false,"id":146,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EnumParamType","instanceClass":null,"abstract":false,"id":147,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SequenceParamType","instanceClass":null,"abstract":false,"id":148,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ConstParamType","instanceClass":null,"abstract":false,"id":149,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TemplateDefinition","instanceClass":null,"abstract":false,"id":150,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FixedModule","instanceClass":null,"abstract":false,"id":151,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FixedDefinition","instanceClass":null,"abstract":false,"id":152,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TemplateModuleInst","instanceClass":null,"abstract":false,"id":153,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ActualParameter","instanceClass":null,"abstract":false,"id":154,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TemplateModuleRef","instanceClass":null,"abstract":false,"id":155,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IDLComment","instanceClass":null,"abstract":false,"id":156,"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":"imports","changeable":true,"resolveProxies":true,"lowerBound":0,"id":157,"derived":false},{"container":false,"ordered":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":158,"derived":false},{"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":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"value","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":"strValue","changeable":true,"lowerBound":0,"iD":false,"id":165,"derived":false},{"id":166,"eClass":"EGenericType"},{"id":167,"eClass":"EGenericType"},{"id":168,"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":169,"derived":false},{"id":170,"eClass":"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":171,"derived":false},{"id":172,"eClass":"EGenericType"},{"id":173,"eClass":"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":174,"derived":false},{"id":175,"eClass":"EGenericType"},{"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":"value","changeable":true,"lowerBound":0,"iD":false,"id":177,"derived":false},{"id":178,"eClass":"EGenericType"},{"id":179,"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":"negation","changeable":true,"lowerBound":0,"iD":false,"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":"value","changeable":true,"resolveProxies":true,"lowerBound":0,"id":181,"derived":false},{"id":182,"eClass":"EGenericType"},{"id":183,"eClass":"EGenericType"},{"id":184,"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":"lhs","changeable":true,"resolveProxies":true,"lowerBound":0,"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":"op","changeable":true,"lowerBound":0,"iD":false,"id":186,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"rhs","changeable":true,"resolveProxies":true,"lowerBound":0,"id":187,"derived":false},{"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":true,"unsettable":false,"transient":false,"unique":true,"name":"value","changeable":true,"resolveProxies":true,"lowerBound":0,"id":191,"derived":false},{"id":192,"eClass":"EGenericType"},{"id":193,"eClass":"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":194,"derived":false},{"id":195,"eClass":"EGenericType"},{"id":196,"eClass":"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":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":"exp","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"},{"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":204,"derived":false},{"id":205,"eClass":"EGenericType"},{"id":206,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"valuePort","changeable":true,"lowerBound":0,"iD":false,"id":207,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"valueConnType","changeable":true,"lowerBound":0,"iD":false,"id":208,"derived":false},{"id":209,"eClass":"EGenericType"},{"id":210,"eClass":"EGenericType"},{"id":211,"eClass":"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":212,"derived":false},{"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":"value","changeable":true,"lowerBound":0,"iD":false,"id":215,"derived":false},{"id":216,"eClass":"EGenericType"},{"id":217,"eClass":"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":218,"derived":false},{"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":"value","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":"value","changeable":true,"lowerBound":0,"iD":false,"id":224,"derived":false},{"id":225,"eClass":"EGenericType"},{"id":226,"eClass":"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":227,"derived":false},{"id":228,"eClass":"EGenericType"},{"id":229,"eClass":"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":230,"derived":false},{"id":231,"eClass":"EGenericType"},{"id":232,"eClass":"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":233,"derived":false},{"id":234,"eClass":"EGenericType"},{"id":235,"eClass":"EGenericType"},{"id":236,"eClass":"EGenericType"},{"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":237,"derived":false},{"id":238,"eClass":"EGenericType"},{"id":239,"eClass":"EGenericType"},{"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":240,"derived":false},{"id":241,"eClass":"EGenericType"},{"id":242,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"imported_scope","changeable":true,"lowerBound":0,"iD":false,"id":243,"derived":false},{"id":244,"eClass":"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":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":"comments","changeable":true,"resolveProxies":true,"lowerBound":0,"id":246,"derived":false},{"container":false,"ordered":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":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":"header","changeable":true,"resolveProxies":true,"lowerBound":0,"id":253,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"interfaceBody","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"},{"id":259,"eClass":"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":260,"derived":false},{"id":261,"eClass":"EGenericType"},{"id":262,"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":263,"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":"isLocal","changeable":true,"lowerBound":0,"iD":false,"id":264,"derived":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":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":"specializes","changeable":true,"resolveProxies":true,"lowerBound":0,"id":266,"derived":false},{"container":false,"ordered":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":267,"derived":false},{"id":268,"eClass":"EGenericType"},{"id":269,"eClass":"EGenericType"},{"id":270,"eClass":"EGenericType"},{"id":271,"eClass":"EGenericType"},{"id":272,"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":"export","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":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"comments","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":"type","changeable":true,"resolveProxies":true,"lowerBound":0,"id":277,"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":"names","changeable":true,"lowerBound":0,"iD":false,"id":278,"derived":false},{"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"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"getRaises","changeable":true,"resolveProxies":true,"lowerBound":0,"id":286,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"setRaises","changeable":true,"resolveProxies":true,"lowerBound":0,"id":287,"derived":false},{"id":288,"eClass":"EGenericType"},{"id":289,"eClass":"EGenericType"},{"id":290,"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":"raises","changeable":true,"resolveProxies":true,"lowerBound":0,"id":291,"derived":false},{"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":"exceptions","changeable":true,"resolveProxies":true,"lowerBound":0,"id":294,"derived":false},{"id":295,"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":"exception","changeable":true,"resolveProxies":true,"lowerBound":0,"id":296,"derived":false},{"id":297,"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":"comments","changeable":true,"resolveProxies":true,"lowerBound":0,"id":298,"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":"isOneway","changeable":true,"lowerBound":0,"iD":false,"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":"type","changeable":true,"resolveProxies":true,"lowerBound":0,"id":300,"derived":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":301,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"params","changeable":true,"resolveProxies":true,"lowerBound":0,"id":302,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"raises","changeable":true,"resolveProxies":true,"lowerBound":0,"id":303,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"context","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"},{"id":312,"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":"comments","changeable":true,"resolveProxies":true,"lowerBound":0,"id":313,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"decls","changeable":true,"resolveProxies":true,"lowerBound":0,"id":314,"derived":false},{"id":315,"eClass":"EGenericType"},{"id":316,"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":317,"derived":false},{"container":false,"ordered":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":318,"derived":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":319,"derived":false},{"id":320,"eClass":"EGenericType"},{"id":321,"eClass":"EGenericType"},{"id":322,"eClass":"EGenericType"},{"name":"In","id":323,"value":0,"literal":"in","eClass":"EEnumLiteral"},{"name":"Out","id":324,"value":1,"literal":"out","eClass":"EEnumLiteral"},{"name":"InOut","id":325,"value":2,"literal":"inout","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":"literal","changeable":true,"lowerBound":0,"iD":false,"id":326,"derived":false},{"id":327,"eClass":"EGenericType"},{"id":328,"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":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"},{"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"},{"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":true,"unsettable":false,"transient":false,"unique":true,"name":"size","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"},{"container":false,"ordered":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":372,"derived":false},{"id":373,"eClass":"EGenericType"},{"id":374,"eClass":"EGenericType"},{"id":375,"eClass":"EGenericType"},{"id":376,"eClass":"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":377,"derived":false},{"container":false,"ordered":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":378,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"members","changeable":true,"resolveProxies":true,"lowerBound":0,"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"},{"container":false,"ordered":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":387,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"decl","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":"comment","changeable":true,"resolveProxies":true,"lowerBound":0,"id":389,"derived":false},{"id":390,"eClass":"EGenericType"},{"id":391,"eClass":"EGenericType"},{"id":392,"eClass":"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":393,"derived":false},{"id":394,"eClass":"EGenericType"},{"id":395,"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":"size","changeable":true,"resolveProxies":true,"lowerBound":0,"id":396,"derived":false},{"id":397,"eClass":"EGenericType"},{"id":398,"eClass":"EGenericType"},{"id":399,"eClass":"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":400,"derived":false},{"container":false,"ordered":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":401,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"members","changeable":true,"resolveProxies":true,"lowerBound":0,"id":402,"derived":false},{"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"},{"id":410,"eClass":"EGenericType"},{"id":411,"eClass":"EGenericType"},{"id":412,"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":"comments","changeable":true,"resolveProxies":true,"lowerBound":0,"id":413,"derived":false},{"container":false,"ordered":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":414,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"declarators","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"},{"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":424,"derived":false},{"container":false,"ordered":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":425,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"switch","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":true,"unsettable":false,"transient":false,"unique":true,"name":"body","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"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"case","changeable":true,"resolveProxies":true,"lowerBound":0,"id":434,"derived":false},{"id":435,"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":"comments","changeable":true,"resolveProxies":true,"lowerBound":0,"id":436,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"label","changeable":true,"resolveProxies":true,"lowerBound":0,"id":437,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"spec","changeable":true,"resolveProxies":true,"lowerBound":0,"id":438,"derived":false},{"id":439,"eClass":"EGenericType"},{"id":440,"eClass":"EGenericType"},{"id":441,"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":"isCase","changeable":true,"lowerBound":0,"iD":false,"id":442,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"constExp","changeable":true,"resolveProxies":true,"lowerBound":0,"id":443,"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":"isDefault","changeable":true,"lowerBound":0,"iD":false,"id":444,"derived":false},{"id":445,"eClass":"EGenericType"},{"id":446,"eClass":"EGenericType"},{"id":447,"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":448,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"declarator","changeable":true,"resolveProxies":true,"lowerBound":0,"id":449,"derived":false},{"id":450,"eClass":"EGenericType"},{"id":451,"eClass":"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":452,"derived":false},{"container":false,"ordered":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":453,"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":"literal","changeable":true,"lowerBound":0,"iD":false,"id":454,"derived":false},{"id":455,"eClass":"EGenericType"},{"id":456,"eClass":"EGenericType"},{"id":457,"eClass":"EGenericType"},{"id":458,"eClass":"EGenericType"},{"id":459,"eClass":"EGenericType"},{"id":460,"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":461,"derived":false},{"container":false,"ordered":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":462,"derived":false},{"id":463,"eClass":"EGenericType"},{"id":464,"eClass":"EGenericType"},{"id":465,"eClass":"EGenericType"},{"id":466,"eClass":"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":467,"derived":false},{"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":true,"unsettable":false,"transient":false,"unique":true,"name":"lower","changeable":true,"resolveProxies":true,"lowerBound":0,"id":472,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"upper","changeable":true,"resolveProxies":true,"lowerBound":0,"id":473,"derived":false},{"id":474,"eClass":"EGenericType"},{"id":475,"eClass":"EGenericType"},{"id":476,"eClass":"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":477,"derived":false},{"id":478,"eClass":"EGenericType"},{"id":479,"eClass":"EGenericType"},{"id":480,"eClass":"EGenericType"},{"id":481,"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":"exp","changeable":true,"resolveProxies":true,"lowerBound":0,"id":482,"derived":false},{"id":483,"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":484,"derived":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":485,"derived":false},{"container":false,"ordered":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":486,"derived":false},{"container":false,"ordered":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":487,"derived":false},{"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"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"lhs","changeable":true,"resolveProxies":true,"lowerBound":0,"id":500,"derived":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":501,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"rhs","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"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"lhs","changeable":true,"resolveProxies":true,"lowerBound":0,"id":507,"derived":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":508,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"rhs","changeable":true,"resolveProxies":true,"lowerBound":0,"id":509,"derived":false},{"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":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"lhs","changeable":true,"resolveProxies":true,"lowerBound":0,"id":513,"derived":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":514,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"rhs","changeable":true,"resolveProxies":true,"lowerBound":0,"id":515,"derived":false},{"id":516,"eClass":"EGenericType"},{"id":517,"eClass":"EGenericType"},{"id":518,"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":"lhs","changeable":true,"resolveProxies":true,"lowerBound":0,"id":519,"derived":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":520,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"rhs","changeable":true,"resolveProxies":true,"lowerBound":0,"id":521,"derived":false},{"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":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"lhs","changeable":true,"resolveProxies":true,"lowerBound":0,"id":525,"derived":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":526,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"rhs","changeable":true,"resolveProxies":true,"lowerBound":0,"id":527,"derived":false},{"id":528,"eClass":"EGenericType"},{"id":529,"eClass":"EGenericType"},{"id":530,"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":"lhs","changeable":true,"resolveProxies":true,"lowerBound":0,"id":531,"derived":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":532,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"rhs","changeable":true,"resolveProxies":true,"lowerBound":0,"id":533,"derived":false},{"id":534,"eClass":"EGenericType"},{"id":535,"eClass":"EGenericType"},{"id":536,"eClass":"EGenericType"},{"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":537,"derived":false},{"container":false,"ordered":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":538,"derived":false},{"id":539,"eClass":"EGenericType"},{"id":540,"eClass":"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":541,"derived":false},{"id":542,"eClass":"EGenericType"},{"id":543,"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":"comments","changeable":true,"resolveProxies":true,"lowerBound":0,"id":544,"derived":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":545,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"base","changeable":true,"resolveProxies":true,"lowerBound":0,"id":546,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"supports","changeable":true,"resolveProxies":true,"lowerBound":0,"id":547,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"export","changeable":true,"resolveProxies":true,"lowerBound":0,"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"},{"id":556,"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":557,"derived":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":558,"derived":false},{"container":false,"ordered":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":559,"derived":false},{"id":560,"eClass":"EGenericType"},{"id":561,"eClass":"EGenericType"},{"id":562,"eClass":"EGenericType"},{"id":563,"eClass":"EGenericType"},{"id":564,"eClass":"EGenericType"},{"id":565,"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":"isMultiple","changeable":true,"lowerBound":0,"iD":false,"id":566,"derived":false},{"container":false,"ordered":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":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":"name","changeable":true,"lowerBound":0,"iD":false,"id":568,"derived":false},{"container":false,"ordered":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":569,"derived":false},{"id":570,"eClass":"EGenericType"},{"id":571,"eClass":"EGenericType"},{"id":572,"eClass":"EGenericType"},{"id":573,"eClass":"EGenericType"},{"id":574,"eClass":"EGenericType"},{"id":575,"eClass":"EGenericType"},{"id":576,"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":577,"derived":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":578,"derived":false},{"container":false,"ordered":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":579,"derived":false},{"id":580,"eClass":"EGenericType"},{"id":581,"eClass":"EGenericType"},{"id":582,"eClass":"EGenericType"},{"id":583,"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":584,"derived":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":585,"derived":false},{"container":false,"ordered":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":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":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"resolveProxies":true,"lowerBound":0,"id":591,"derived":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":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":"comments","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"},{"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":598,"derived":false},{"id":599,"eClass":"EGenericType"},{"id":600,"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":"comments","changeable":true,"resolveProxies":true,"lowerBound":0,"id":601,"derived":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":602,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"base","changeable":true,"resolveProxies":true,"lowerBound":0,"id":603,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"supports","changeable":true,"resolveProxies":true,"lowerBound":0,"id":604,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"manages","changeable":true,"resolveProxies":true,"lowerBound":0,"id":605,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"primary_key","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":"export","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"},{"id":615,"eClass":"EGenericType"},{"id":616,"eClass":"EGenericType"},{"id":617,"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":618,"derived":false},{"id":619,"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":"comments","changeable":true,"resolveProxies":true,"lowerBound":0,"id":620,"derived":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":621,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"params","changeable":true,"resolveProxies":true,"lowerBound":0,"id":622,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"raises","changeable":true,"resolveProxies":true,"lowerBound":0,"id":623,"derived":false},{"id":624,"eClass":"EGenericType"},{"id":625,"eClass":"EGenericType"},{"id":626,"eClass":"EGenericType"},{"id":627,"eClass":"EGenericType"},{"id":628,"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":"comments","changeable":true,"resolveProxies":true,"lowerBound":0,"id":629,"derived":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":630,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"params","changeable":true,"resolveProxies":true,"lowerBound":0,"id":631,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"raises","changeable":true,"resolveProxies":true,"lowerBound":0,"id":632,"derived":false},{"id":633,"eClass":"EGenericType"},{"id":634,"eClass":"EGenericType"},{"id":635,"eClass":"EGenericType"},{"id":636,"eClass":"EGenericType"},{"id":637,"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":638,"derived":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":639,"derived":false},{"id":640,"eClass":"EGenericType"},{"id":641,"eClass":"EGenericType"},{"id":642,"eClass":"EGenericType"},{"id":643,"eClass":"EGenericType"},{"id":644,"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":"isCustom","changeable":true,"lowerBound":0,"iD":false,"id":645,"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":"isTruncatable","changeable":true,"lowerBound":0,"iD":false,"id":646,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"base","changeable":true,"resolveProxies":true,"lowerBound":0,"id":647,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"supports","changeable":true,"resolveProxies":true,"lowerBound":0,"id":648,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"export","changeable":true,"resolveProxies":true,"lowerBound":0,"id":649,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"member","changeable":true,"resolveProxies":true,"lowerBound":0,"id":650,"derived":false},{"id":651,"eClass":"EGenericType"},{"id":652,"eClass":"EGenericType"},{"id":653,"eClass":"EGenericType"},{"id":654,"eClass":"EGenericType"},{"id":655,"eClass":"EGenericType"},{"id":656,"eClass":"EGenericType"},{"id":657,"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":"isPublic","changeable":true,"lowerBound":0,"iD":false,"id":658,"derived":false},{"container":false,"ordered":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":659,"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":"names","changeable":true,"lowerBound":0,"iD":false,"id":660,"derived":false},{"id":661,"eClass":"EGenericType"},{"id":662,"eClass":"EGenericType"},{"id":663,"eClass":"EGenericType"},{"id":664,"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":"comments","changeable":true,"resolveProxies":true,"lowerBound":0,"id":665,"derived":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":666,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"exports","changeable":true,"resolveProxies":true,"lowerBound":0,"id":667,"derived":false},{"id":668,"eClass":"EGenericType"},{"id":669,"eClass":"EGenericType"},{"id":670,"eClass":"EGenericType"},{"id":671,"eClass":"EGenericType"},{"id":672,"eClass":"EGenericType"},{"id":673,"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":"isMirror","changeable":true,"lowerBound":0,"iD":false,"id":674,"derived":false},{"container":false,"ordered":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":675,"derived":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":676,"derived":false},{"container":false,"ordered":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":677,"derived":false},{"id":678,"eClass":"EGenericType"},{"id":679,"eClass":"EGenericType"},{"id":680,"eClass":"EGenericType"},{"id":681,"eClass":"EGenericType"},{"id":682,"eClass":"EGenericType"},{"id":683,"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":"header","changeable":true,"resolveProxies":true,"lowerBound":0,"id":684,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"exports","changeable":true,"resolveProxies":true,"lowerBound":0,"id":685,"derived":false},{"id":686,"eClass":"EGenericType"},{"id":687,"eClass":"EGenericType"},{"id":688,"eClass":"EGenericType"},{"id":689,"eClass":"EGenericType"},{"id":690,"eClass":"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":691,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"base","changeable":true,"resolveProxies":true,"lowerBound":0,"id":692,"derived":false},{"id":693,"eClass":"EGenericType"},{"id":694,"eClass":"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":695,"derived":false},{"container":false,"ordered":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":696,"derived":false},{"container":false,"ordered":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":697,"derived":false},{"id":698,"eClass":"EGenericType"},{"id":699,"eClass":"EGenericType"},{"id":700,"eClass":"EGenericType"},{"id":701,"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":702,"derived":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":703,"derived":false},{"id":704,"eClass":"EGenericType"},{"id":705,"eClass":"EGenericType"},{"id":706,"eClass":"EGenericType"},{"id":707,"eClass":"EGenericType"},{"id":708,"eClass":"EGenericType"},{"id":709,"eClass":"EGenericType"},{"id":710,"eClass":"EGenericType"},{"id":711,"eClass":"EGenericType"},{"id":712,"eClass":"EGenericType"},{"id":713,"eClass":"EGenericType"},{"id":714,"eClass":"EGenericType"},{"id":715,"eClass":"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":716,"derived":false},{"container":false,"ordered":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":717,"derived":false},{"id":718,"eClass":"EGenericType"},{"id":719,"eClass":"EGenericType"},{"id":720,"eClass":"EGenericType"},{"id":721,"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":722,"derived":false},{"container":false,"ordered":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":723,"derived":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":724,"derived":false},{"container":false,"ordered":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":725,"derived":false},{"id":726,"eClass":"EGenericType"},{"id":727,"eClass":"EGenericType"},{"id":728,"eClass":"EGenericType"},{"id":729,"eClass":"EGenericType"},{"id":730,"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":731,"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":"id","changeable":true,"lowerBound":0,"iD":false,"id":732,"derived":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":733,"derived":false},{"id":734,"eClass":"EGenericType"},{"id":735,"eClass":"EGenericType"},{"id":736,"eClass":"EGenericType"},{"id":737,"eClass":"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":738,"derived":false},{"id":739,"eClass":"EGenericType"},{"id":740,"eClass":"EGenericType"},{"id":741,"eClass":"EGenericType"},{"id":742,"eClass":"EGenericType"},{"id":743,"eClass":"EGenericType"},{"id":744,"eClass":"EGenericType"},{"id":745,"eClass":"EGenericType"},{"id":746,"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":1,"target":0},{"source":1,"target":157},{"source":1,"target":158},{"source":157,"target":29},{"source":157,"target":159},{"source":157,"target":1},{"source":159,"target":29},{"source":158,"target":30},{"source":158,"target":160},{"source":158,"target":1},{"source":160,"target":30},{"source":2,"target":0},{"source":2,"target":30},{"source":2,"target":37},{"source":2,"target":115},{"source":2,"target":161},{"source":2,"target":162},{"source":2,"target":163},{"source":161,"target":30},{"source":162,"target":37},{"source":163,"target":115},{"source":3,"target":0},{"source":3,"target":2},{"source":3,"target":164},{"source":3,"target":165},{"source":3,"target":166},{"source":164,"target":4},{"source":164,"target":167},{"source":164,"target":3},{"source":167,"target":4},{"source":165,"target":168},{"source":165,"target":3},{"source":166,"target":2},{"source":4,"target":0},{"source":4,"target":169},{"source":169,"target":170},{"source":169,"target":4},{"source":5,"target":0},{"source":5,"target":2},{"source":5,"target":171},{"source":5,"target":172},{"source":171,"target":173},{"source":171,"target":5},{"source":172,"target":2},{"source":6,"target":0},{"source":6,"target":2},{"source":6,"target":174},{"source":6,"target":175},{"source":174,"target":176},{"source":174,"target":6},{"source":175,"target":2},{"source":7,"target":0},{"source":7,"target":2},{"source":7,"target":177},{"source":7,"target":178},{"source":177,"target":179},{"source":177,"target":7},{"source":178,"target":2},{"source":8,"target":0},{"source":8,"target":2},{"source":8,"target":180},{"source":8,"target":181},{"source":8,"target":182},{"source":180,"target":183},{"source":180,"target":8},{"source":181,"target":9},{"source":181,"target":184},{"source":181,"target":8},{"source":184,"target":9},{"source":182,"target":2},{"source":9,"target":0},{"source":9,"target":185},{"source":9,"target":186},{"source":9,"target":187},{"source":185,"target":10},{"source":185,"target":188},{"source":185,"target":9},{"source":188,"target":10},{"source":186,"target":189},{"source":186,"target":9},{"source":187,"target":10},{"source":187,"target":190},{"source":187,"target":9},{"source":190,"target":10},{"source":10,"target":0},{"source":10,"target":191},{"source":191,"target":104},{"source":191,"target":192},{"source":191,"target":10},{"source":192,"target":104},{"source":11,"target":0},{"source":11,"target":2},{"source":11,"target":193},{"source":193,"target":2},{"source":12,"target":0},{"source":12,"target":2},{"source":12,"target":194},{"source":12,"target":195},{"source":194,"target":196},{"source":194,"target":12},{"source":195,"target":2},{"source":13,"target":0},{"source":13,"target":2},{"source":13,"target":197},{"source":13,"target":198},{"source":13,"target":199},{"source":197,"target":200},{"source":197,"target":13},{"source":198,"target":104},{"source":198,"target":201},{"source":198,"target":13},{"source":201,"target":104},{"source":199,"target":2},{"source":14,"target":0},{"source":14,"target":2},{"source":14,"target":202},{"source":202,"target":2},{"source":15,"target":0},{"source":15,"target":2},{"source":15,"target":203},{"source":203,"target":2},{"source":16,"target":0},{"source":16,"target":15},{"source":16,"target":204},{"source":16,"target":205},{"source":204,"target":206},{"source":204,"target":16},{"source":205,"target":15},{"source":17,"target":0},{"source":17,"target":15},{"source":17,"target":207},{"source":17,"target":208},{"source":17,"target":209},{"source":207,"target":210},{"source":207,"target":17},{"source":208,"target":211},{"source":208,"target":17},{"source":209,"target":15},{"source":18,"target":0},{"source":18,"target":15},{"source":18,"target":212},{"source":18,"target":213},{"source":212,"target":214},{"source":212,"target":18},{"source":213,"target":15},{"source":19,"target":0},{"source":19,"target":15},{"source":19,"target":215},{"source":19,"target":216},{"source":215,"target":217},{"source":215,"target":19},{"source":216,"target":15},{"source":20,"target":0},{"source":20,"target":15},{"source":20,"target":218},{"source":20,"target":219},{"source":218,"target":220},{"source":218,"target":20},{"source":219,"target":15},{"source":21,"target":0},{"source":21,"target":15},{"source":21,"target":221},{"source":21,"target":222},{"source":221,"target":223},{"source":221,"target":21},{"source":222,"target":15},{"source":22,"target":0},{"source":22,"target":15},{"source":22,"target":224},{"source":22,"target":225},{"source":224,"target":226},{"source":224,"target":22},{"source":225,"target":15},{"source":23,"target":0},{"source":23,"target":15},{"source":23,"target":227},{"source":23,"target":228},{"source":227,"target":229},{"source":227,"target":23},{"source":228,"target":15},{"source":24,"target":0},{"source":24,"target":15},{"source":24,"target":230},{"source":24,"target":231},{"source":230,"target":232},{"source":230,"target":24},{"source":231,"target":15},{"source":25,"target":0},{"source":25,"target":15},{"source":25,"target":233},{"source":25,"target":234},{"source":233,"target":235},{"source":233,"target":25},{"source":234,"target":15},{"source":26,"target":0},{"source":26,"target":15},{"source":26,"target":236},{"source":236,"target":15},{"source":27,"target":0},{"source":27,"target":2},{"source":27,"target":237},{"source":27,"target":238},{"source":237,"target":239},{"source":237,"target":27},{"source":238,"target":2},{"source":28,"target":0},{"source":28,"target":2},{"source":28,"target":240},{"source":28,"target":241},{"source":240,"target":242},{"source":240,"target":28},{"source":241,"target":2},{"source":29,"target":0},{"source":29,"target":243},{"source":243,"target":244},{"source":243,"target":29},{"source":30,"target":0},{"source":31,"target":0},{"source":31,"target":30},{"source":31,"target":245},{"source":31,"target":246},{"source":31,"target":247},{"source":31,"target":248},{"source":245,"target":249},{"source":245,"target":31},{"source":246,"target":156},{"source":246,"target":250},{"source":246,"target":31},{"source":250,"target":156},{"source":247,"target":30},{"source":247,"target":251},{"source":247,"target":31},{"source":251,"target":30},{"source":248,"target":30},{"source":32,"target":0},{"source":32,"target":30},{"source":32,"target":252},{"source":252,"target":30},{"source":33,"target":0},{"source":33,"target":32},{"source":33,"target":150},{"source":33,"target":152},{"source":33,"target":253},{"source":33,"target":254},{"source":33,"target":255},{"source":33,"target":256},{"source":33,"target":257},{"source":253,"target":35},{"source":253,"target":258},{"source":253,"target":33},{"source":258,"target":35},{"source":254,"target":36},{"source":254,"target":259},{"source":254,"target":33},{"source":259,"target":36},{"source":255,"target":32},{"source":256,"target":150},{"source":257,"target":152},{"source":34,"target":0},{"source":34,"target":32},{"source":34,"target":260},{"source":34,"target":261},{"source":260,"target":262},{"source":260,"target":34},{"source":261,"target":32},{"source":35,"target":0},{"source":35,"target":263},{"source":35,"target":264},{"source":35,"target":265},{"source":35,"target":266},{"source":35,"target":267},{"source":263,"target":268},{"source":263,"target":35},{"source":264,"target":269},{"source":264,"target":35},{"source":265,"target":270},{"source":265,"target":35},{"source":266,"target":50},{"source":266,"target":271},{"source":266,"target":35},{"source":271,"target":50},{"source":267,"target":156},{"source":267,"target":272},{"source":267,"target":35},{"source":272,"target":156},{"source":36,"target":0},{"source":36,"target":273},{"source":273,"target":37},{"source":273,"target":274},{"source":273,"target":36},{"source":274,"target":37},{"source":37,"target":0},{"source":37,"target":124},{"source":37,"target":275},{"source":275,"target":124},{"source":38,"target":0},{"source":38,"target":37},{"source":38,"target":115},{"source":38,"target":132},{"source":38,"target":136},{"source":38,"target":276},{"source":38,"target":277},{"source":38,"target":278},{"source":38,"target":279},{"source":38,"target":280},{"source":38,"target":281},{"source":38,"target":282},{"source":276,"target":156},{"source":276,"target":283},{"source":276,"target":38},{"source":283,"target":156},{"source":277,"target":49},{"source":277,"target":284},{"source":277,"target":38},{"source":284,"target":49},{"source":278,"target":285},{"source":278,"target":38},{"source":279,"target":37},{"source":280,"target":115},{"source":281,"target":132},{"source":282,"target":136},{"source":39,"target":0},{"source":39,"target":38},{"source":39,"target":286},{"source":39,"target":287},{"source":39,"target":288},{"source":286,"target":41},{"source":286,"target":289},{"source":286,"target":39},{"source":289,"target":41},{"source":287,"target":41},{"source":287,"target":290},{"source":287,"target":39},{"source":290,"target":41},{"source":288,"target":38},{"source":40,"target":0},{"source":40,"target":38},{"source":40,"target":291},{"source":40,"target":292},{"source":291,"target":41},{"source":291,"target":293},{"source":291,"target":40},{"source":293,"target":41},{"source":292,"target":38},{"source":41,"target":0},{"source":41,"target":294},{"source":294,"target":42},{"source":294,"target":295},{"source":294,"target":41},{"source":295,"target":42},{"source":42,"target":0},{"source":42,"target":296},{"source":296,"target":50},{"source":296,"target":297},{"source":296,"target":42},{"source":297,"target":50},{"source":43,"target":0},{"source":43,"target":37},{"source":43,"target":298},{"source":43,"target":299},{"source":43,"target":300},{"source":43,"target":301},{"source":43,"target":302},{"source":43,"target":303},{"source":43,"target":304},{"source":43,"target":305},{"source":298,"target":156},{"source":298,"target":306},{"source":298,"target":43},{"source":306,"target":156},{"source":299,"target":307},{"source":299,"target":43},{"source":300,"target":44},{"source":300,"target":308},{"source":300,"target":43},{"source":308,"target":44},{"source":301,"target":309},{"source":301,"target":43},{"source":302,"target":45},{"source":302,"target":310},{"source":302,"target":43},{"source":310,"target":45},{"source":303,"target":42},{"source":303,"target":311},{"source":303,"target":43},{"source":311,"target":42},{"source":304,"target":48},{"source":304,"target":312},{"source":304,"target":43},{"source":312,"target":48},{"source":305,"target":37},{"source":44,"target":0},{"source":45,"target":0},{"source":45,"target":313},{"source":45,"target":314},{"source":313,"target":156},{"source":313,"target":315},{"source":313,"target":45},{"source":315,"target":156},{"source":314,"target":46},{"source":314,"target":316},{"source":314,"target":45},{"source":316,"target":46},{"source":46,"target":0},{"source":46,"target":317},{"source":46,"target":318},{"source":46,"target":319},{"source":317,"target":47},{"source":317,"target":320},{"source":317,"target":46},{"source":320,"target":47},{"source":318,"target":49},{"source":318,"target":321},{"source":318,"target":46},{"source":321,"target":49},{"source":319,"target":322},{"source":319,"target":46},{"source":47,"target":0},{"source":47,"target":323},{"source":47,"target":324},{"source":47,"target":325},{"source":323,"target":47},{"source":324,"target":47},{"source":325,"target":47},{"source":48,"target":0},{"source":48,"target":326},{"source":326,"target":327},{"source":326,"target":48},{"source":49,"target":0},{"source":49,"target":44},{"source":49,"target":328},{"source":328,"target":44},{"source":50,"target":0},{"source":50,"target":49},{"source":50,"target":84},{"source":50,"target":88},{"source":50,"target":102},{"source":50,"target":112},{"source":50,"target":329},{"source":50,"target":330},{"source":50,"target":331},{"source":50,"target":332},{"source":50,"target":333},{"source":50,"target":334},{"source":329,"target":335},{"source":329,"target":50},{"source":330,"target":49},{"source":331,"target":84},{"source":332,"target":88},{"source":333,"target":102},{"source":334,"target":112},{"source":51,"target":0},{"source":51,"target":49},{"source":51,"target":84},{"source":51,"target":336},{"source":51,"target":337},{"source":336,"target":49},{"source":337,"target":84},{"source":52,"target":0},{"source":52,"target":51},{"source":52,"target":102},{"source":52,"target":338},{"source":52,"target":339},{"source":338,"target":51},{"source":339,"target":102},{"source":53,"target":0},{"source":53,"target":52},{"source":53,"target":340},{"source":340,"target":52},{"source":54,"target":0},{"source":54,"target":52},{"source":54,"target":341},{"source":341,"target":52},{"source":55,"target":0},{"source":55,"target":52},{"source":55,"target":342},{"source":342,"target":52},{"source":56,"target":0},{"source":56,"target":51},{"source":56,"target":88},{"source":56,"target":102},{"source":56,"target":343},{"source":56,"target":344},{"source":56,"target":345},{"source":343,"target":51},{"source":344,"target":88},{"source":345,"target":102},{"source":57,"target":0},{"source":57,"target":56},{"source":57,"target":346},{"source":346,"target":56},{"source":58,"target":0},{"source":58,"target":57},{"source":58,"target":347},{"source":347,"target":57},{"source":59,"target":0},{"source":59,"target":57},{"source":59,"target":348},{"source":348,"target":57},{"source":60,"target":0},{"source":60,"target":57},{"source":60,"target":349},{"source":349,"target":57},{"source":61,"target":0},{"source":61,"target":56},{"source":61,"target":350},{"source":350,"target":56},{"source":62,"target":0},{"source":62,"target":61},{"source":62,"target":351},{"source":351,"target":61},{"source":63,"target":0},{"source":63,"target":61},{"source":63,"target":352},{"source":352,"target":61},{"source":64,"target":0},{"source":64,"target":61},{"source":64,"target":353},{"source":353,"target":61},{"source":65,"target":0},{"source":65,"target":51},{"source":65,"target":88},{"source":65,"target":102},{"source":65,"target":354},{"source":65,"target":355},{"source":65,"target":356},{"source":354,"target":51},{"source":355,"target":88},{"source":356,"target":102},{"source":66,"target":0},{"source":66,"target":51},{"source":66,"target":102},{"source":66,"target":357},{"source":66,"target":358},{"source":357,"target":51},{"source":358,"target":102},{"source":67,"target":0},{"source":67,"target":51},{"source":67,"target":88},{"source":67,"target":102},{"source":67,"target":359},{"source":67,"target":360},{"source":67,"target":361},{"source":359,"target":51},{"source":360,"target":88},{"source":361,"target":102},{"source":68,"target":0},{"source":68,"target":51},{"source":68,"target":102},{"source":68,"target":362},{"source":68,"target":363},{"source":362,"target":51},{"source":363,"target":102},{"source":69,"target":0},{"source":69,"target":51},{"source":69,"target":364},{"source":364,"target":51},{"source":70,"target":0},{"source":70,"target":51},{"source":70,"target":365},{"source":365,"target":51},{"source":71,"target":0},{"source":71,"target":51},{"source":71,"target":366},{"source":366,"target":51},{"source":72,"target":0},{"source":72,"target":49},{"source":72,"target":85},{"source":72,"target":102},{"source":72,"target":367},{"source":72,"target":368},{"source":72,"target":369},{"source":72,"target":370},{"source":367,"target":100},{"source":367,"target":371},{"source":367,"target":72},{"source":371,"target":100},{"source":368,"target":49},{"source":369,"target":85},{"source":370,"target":102},{"source":73,"target":0},{"source":73,"target":49},{"source":73,"target":85},{"source":73,"target":102},{"source":73,"target":372},{"source":73,"target":373},{"source":73,"target":374},{"source":73,"target":375},{"source":372,"target":100},{"source":372,"target":376},{"source":372,"target":73},{"source":376,"target":100},{"source":373,"target":49},{"source":374,"target":85},{"source":375,"target":102},{"source":74,"target":0},{"source":74,"target":30},{"source":74,"target":37},{"source":74,"target":150},{"source":74,"target":152},{"source":74,"target":377},{"source":74,"target":378},{"source":74,"target":379},{"source":74,"target":380},{"source":74,"target":381},{"source":74,"target":382},{"source":74,"target":383},{"source":377,"target":384},{"source":377,"target":74},{"source":378,"target":156},{"source":378,"target":385},{"source":378,"target":74},{"source":385,"target":156},{"source":379,"target":75},{"source":379,"target":386},{"source":379,"target":74},{"source":386,"target":75},{"source":380,"target":30},{"source":381,"target":37},{"source":382,"target":150},{"source":383,"target":152},{"source":75,"target":0},{"source":75,"target":387},{"source":75,"target":388},{"source":75,"target":389},{"source":387,"target":83},{"source":387,"target":390},{"source":387,"target":75},{"source":390,"target":83},{"source":388,"target":76},{"source":388,"target":391},{"source":388,"target":75},{"source":391,"target":76},{"source":389,"target":156},{"source":389,"target":392},{"source":389,"target":75},{"source":392,"target":156},{"source":76,"target":0},{"source":76,"target":393},{"source":393,"target":394},{"source":393,"target":76},{"source":77,"target":0},{"source":77,"target":76},{"source":77,"target":395},{"source":395,"target":76},{"source":78,"target":0},{"source":79,"target":0},{"source":79,"target":76},{"source":79,"target":78},{"source":79,"target":396},{"source":79,"target":397},{"source":79,"target":398},{"source":396,"target":104},{"source":396,"target":399},{"source":396,"target":79},{"source":399,"target":104},{"source":397,"target":76},{"source":398,"target":78},{"source":80,"target":0},{"source":80,"target":30},{"source":80,"target":81},{"source":80,"target":86},{"source":80,"target":400},{"source":80,"target":401},{"source":80,"target":402},{"source":80,"target":403},{"source":80,"target":404},{"source":80,"target":405},{"source":400,"target":406},{"source":400,"target":80},{"source":401,"target":156},{"source":401,"target":407},{"source":401,"target":80},{"source":407,"target":156},{"source":402,"target":75},{"source":402,"target":408},{"source":402,"target":80},{"source":408,"target":75},{"source":403,"target":30},{"source":404,"target":81},{"source":405,"target":86},{"source":81,"target":0},{"source":81,"target":30},{"source":81,"target":37},{"source":81,"target":150},{"source":81,"target":152},{"source":81,"target":409},{"source":81,"target":410},{"source":81,"target":411},{"source":81,"target":412},{"source":409,"target":30},{"source":410,"target":37},{"source":411,"target":150},{"source":412,"target":152},{"source":82,"target":0},{"source":82,"target":81},{"source":82,"target":413},{"source":82,"target":414},{"source":82,"target":415},{"source":82,"target":416},{"source":413,"target":156},{"source":413,"target":417},{"source":413,"target":82},{"source":417,"target":156},{"source":414,"target":83},{"source":414,"target":418},{"source":414,"target":82},{"source":418,"target":83},{"source":415,"target":76},{"source":415,"target":419},{"source":415,"target":82},{"source":419,"target":76},{"source":416,"target":81},{"source":83,"target":0},{"source":83,"target":154},{"source":83,"target":420},{"source":420,"target":154},{"source":84,"target":0},{"source":84,"target":83},{"source":84,"target":421},{"source":421,"target":83},{"source":85,"target":0},{"source":85,"target":84},{"source":85,"target":422},{"source":422,"target":84},{"source":86,"target":0},{"source":86,"target":83},{"source":86,"target":423},{"source":423,"target":83},{"source":87,"target":0},{"source":87,"target":81},{"source":87,"target":86},{"source":87,"target":424},{"source":87,"target":425},{"source":87,"target":426},{"source":87,"target":427},{"source":87,"target":428},{"source":87,"target":429},{"source":424,"target":430},{"source":424,"target":87},{"source":425,"target":156},{"source":425,"target":431},{"source":425,"target":87},{"source":431,"target":156},{"source":426,"target":88},{"source":426,"target":432},{"source":426,"target":87},{"source":432,"target":88},{"source":427,"target":89},{"source":427,"target":433},{"source":427,"target":87},{"source":433,"target":89},{"source":428,"target":81},{"source":429,"target":86},{"source":88,"target":0},{"source":89,"target":0},{"source":89,"target":434},{"source":434,"target":90},{"source":434,"target":435},{"source":434,"target":89},{"source":435,"target":90},{"source":90,"target":0},{"source":90,"target":436},{"source":90,"target":437},{"source":90,"target":438},{"source":436,"target":156},{"source":436,"target":439},{"source":436,"target":90},{"source":439,"target":156},{"source":437,"target":91},{"source":437,"target":440},{"source":437,"target":90},{"source":440,"target":91},{"source":438,"target":92},{"source":438,"target":441},{"source":438,"target":90},{"source":441,"target":92},{"source":91,"target":0},{"source":91,"target":442},{"source":91,"target":443},{"source":91,"target":444},{"source":442,"target":445},{"source":442,"target":91},{"source":443,"target":104},{"source":443,"target":446},{"source":443,"target":91},{"source":446,"target":104},{"source":444,"target":447},{"source":444,"target":91},{"source":92,"target":0},{"source":92,"target":448},{"source":92,"target":449},{"source":448,"target":83},{"source":448,"target":450},{"source":448,"target":92},{"source":450,"target":83},{"source":449,"target":76},{"source":449,"target":451},{"source":449,"target":92},{"source":451,"target":76},{"source":93,"target":0},{"source":93,"target":81},{"source":93,"target":86},{"source":93,"target":88},{"source":93,"target":452},{"source":93,"target":453},{"source":93,"target":454},{"source":93,"target":455},{"source":93,"target":456},{"source":93,"target":457},{"source":452,"target":458},{"source":452,"target":93},{"source":453,"target":156},{"source":453,"target":459},{"source":453,"target":93},{"source":459,"target":156},{"source":454,"target":460},{"source":454,"target":93},{"source":455,"target":81},{"source":456,"target":86},{"source":457,"target":88},{"source":94,"target":0},{"source":94,"target":85},{"source":94,"target":139},{"source":94,"target":461},{"source":94,"target":462},{"source":94,"target":463},{"source":94,"target":464},{"source":461,"target":84},{"source":461,"target":465},{"source":461,"target":94},{"source":465,"target":84},{"source":462,"target":100},{"source":462,"target":466},{"source":462,"target":94},{"source":466,"target":100},{"source":463,"target":85},{"source":464,"target":139},{"source":95,"target":0},{"source":95,"target":30},{"source":95,"target":150},{"source":95,"target":152},{"source":95,"target":467},{"source":95,"target":468},{"source":95,"target":469},{"source":95,"target":470},{"source":467,"target":471},{"source":467,"target":95},{"source":468,"target":30},{"source":469,"target":150},{"source":470,"target":152},{"source":96,"target":0},{"source":96,"target":85},{"source":96,"target":472},{"source":96,"target":473},{"source":96,"target":474},{"source":472,"target":100},{"source":472,"target":475},{"source":472,"target":96},{"source":475,"target":100},{"source":473,"target":100},{"source":473,"target":476},{"source":473,"target":96},{"source":476,"target":100},{"source":474,"target":85},{"source":97,"target":0},{"source":97,"target":81},{"source":97,"target":477},{"source":97,"target":478},{"source":477,"target":479},{"source":477,"target":97},{"source":478,"target":81},{"source":98,"target":0},{"source":98,"target":97},{"source":98,"target":480},{"source":480,"target":97},{"source":99,"target":0},{"source":99,"target":97},{"source":99,"target":481},{"source":481,"target":97},{"source":100,"target":0},{"source":100,"target":482},{"source":482,"target":104},{"source":482,"target":483},{"source":482,"target":100},{"source":483,"target":104},{"source":101,"target":0},{"source":101,"target":30},{"source":101,"target":37},{"source":101,"target":150},{"source":101,"target":152},{"source":101,"target":484},{"source":101,"target":485},{"source":101,"target":486},{"source":101,"target":487},{"source":101,"target":488},{"source":101,"target":489},{"source":101,"target":490},{"source":101,"target":491},{"source":484,"target":102},{"source":484,"target":492},{"source":484,"target":101},{"source":492,"target":102},{"source":485,"target":493},{"source":485,"target":101},{"source":486,"target":104},{"source":486,"target":494},{"source":486,"target":101},{"source":494,"target":104},{"source":487,"target":156},{"source":487,"target":495},{"source":487,"target":101},{"source":495,"target":156},{"source":488,"target":30},{"source":489,"target":37},{"source":490,"target":150},{"source":491,"target":152},{"source":102,"target":0},{"source":102,"target":149},{"source":102,"target":496},{"source":496,"target":149},{"source":103,"target":0},{"source":103,"target":102},{"source":103,"target":497},{"source":497,"target":102},{"source":104,"target":0},{"source":104,"target":112},{"source":104,"target":154},{"source":104,"target":498},{"source":104,"target":499},{"source":498,"target":112},{"source":499,"target":154},{"source":105,"target":0},{"source":105,"target":104},{"source":105,"target":500},{"source":105,"target":501},{"source":105,"target":502},{"source":105,"target":503},{"source":500,"target":106},{"source":500,"target":504},{"source":500,"target":105},{"source":504,"target":106},{"source":501,"target":505},{"source":501,"target":105},{"source":502,"target":105},{"source":502,"target":506},{"source":502,"target":105},{"source":506,"target":105},{"source":503,"target":104},{"source":106,"target":0},{"source":106,"target":507},{"source":106,"target":508},{"source":106,"target":509},{"source":507,"target":107},{"source":507,"target":510},{"source":507,"target":106},{"source":510,"target":107},{"source":508,"target":511},{"source":508,"target":106},{"source":509,"target":106},{"source":509,"target":512},{"source":509,"target":106},{"source":512,"target":106},{"source":107,"target":0},{"source":107,"target":513},{"source":107,"target":514},{"source":107,"target":515},{"source":513,"target":108},{"source":513,"target":516},{"source":513,"target":107},{"source":516,"target":108},{"source":514,"target":517},{"source":514,"target":107},{"source":515,"target":107},{"source":515,"target":518},{"source":515,"target":107},{"source":518,"target":107},{"source":108,"target":0},{"source":108,"target":519},{"source":108,"target":520},{"source":108,"target":521},{"source":519,"target":109},{"source":519,"target":522},{"source":519,"target":108},{"source":522,"target":109},{"source":520,"target":523},{"source":520,"target":108},{"source":521,"target":108},{"source":521,"target":524},{"source":521,"target":108},{"source":524,"target":108},{"source":109,"target":0},{"source":109,"target":525},{"source":109,"target":526},{"source":109,"target":527},{"source":525,"target":110},{"source":525,"target":528},{"source":525,"target":109},{"source":528,"target":110},{"source":526,"target":529},{"source":526,"target":109},{"source":527,"target":109},{"source":527,"target":530},{"source":527,"target":109},{"source":530,"target":109},{"source":110,"target":0},{"source":110,"target":531},{"source":110,"target":532},{"source":110,"target":533},{"source":531,"target":111},{"source":531,"target":534},{"source":531,"target":110},{"source":534,"target":111},{"source":532,"target":535},{"source":532,"target":110},{"source":533,"target":110},{"source":533,"target":536},{"source":533,"target":110},{"source":536,"target":110},{"source":111,"target":0},{"source":111,"target":537},{"source":111,"target":538},{"source":537,"target":539},{"source":537,"target":111},{"source":538,"target":112},{"source":538,"target":540},{"source":538,"target":111},{"source":540,"target":112},{"source":112,"target":0},{"source":113,"target":0},{"source":113,"target":112},{"source":113,"target":541},{"source":113,"target":542},{"source":541,"target":543},{"source":541,"target":113},{"source":542,"target":112},{"source":114,"target":0},{"source":114,"target":30},{"source":114,"target":150},{"source":114,"target":152},{"source":114,"target":544},{"source":114,"target":545},{"source":114,"target":546},{"source":114,"target":547},{"source":114,"target":548},{"source":114,"target":549},{"source":114,"target":550},{"source":114,"target":551},{"source":544,"target":156},{"source":544,"target":552},{"source":544,"target":114},{"source":552,"target":156},{"source":545,"target":553},{"source":545,"target":114},{"source":546,"target":50},{"source":546,"target":554},{"source":546,"target":114},{"source":554,"target":50},{"source":547,"target":50},{"source":547,"target":555},{"source":547,"target":114},{"source":555,"target":50},{"source":548,"target":115},{"source":548,"target":556},{"source":548,"target":114},{"source":556,"target":115},{"source":549,"target":30},{"source":550,"target":150},{"source":551,"target":152},{"source":115,"target":0},{"source":116,"target":0},{"source":116,"target":115},{"source":116,"target":132},{"source":116,"target":136},{"source":116,"target":557},{"source":116,"target":558},{"source":116,"target":559},{"source":116,"target":560},{"source":116,"target":561},{"source":116,"target":562},{"source":557,"target":50},{"source":557,"target":563},{"source":557,"target":116},{"source":563,"target":50},{"source":558,"target":564},{"source":558,"target":116},{"source":559,"target":156},{"source":559,"target":565},{"source":559,"target":116},{"source":565,"target":156},{"source":560,"target":115},{"source":561,"target":132},{"source":562,"target":136},{"source":117,"target":0},{"source":117,"target":115},{"source":117,"target":132},{"source":117,"target":136},{"source":117,"target":566},{"source":117,"target":567},{"source":117,"target":568},{"source":117,"target":569},{"source":117,"target":570},{"source":117,"target":571},{"source":117,"target":572},{"source":566,"target":573},{"source":566,"target":117},{"source":567,"target":50},{"source":567,"target":574},{"source":567,"target":117},{"source":574,"target":50},{"source":568,"target":575},{"source":568,"target":117},{"source":569,"target":156},{"source":569,"target":576},{"source":569,"target":117},{"source":576,"target":156},{"source":570,"target":115},{"source":571,"target":132},{"source":572,"target":136},{"source":118,"target":0},{"source":118,"target":115},{"source":118,"target":577},{"source":118,"target":578},{"source":118,"target":579},{"source":118,"target":580},{"source":577,"target":50},{"source":577,"target":581},{"source":577,"target":118},{"source":581,"target":50},{"source":578,"target":582},{"source":578,"target":118},{"source":579,"target":156},{"source":579,"target":583},{"source":579,"target":118},{"source":583,"target":156},{"source":580,"target":115},{"source":119,"target":0},{"source":119,"target":115},{"source":119,"target":584},{"source":119,"target":585},{"source":119,"target":586},{"source":119,"target":587},{"source":584,"target":50},{"source":584,"target":588},{"source":584,"target":119},{"source":588,"target":50},{"source":585,"target":589},{"source":585,"target":119},{"source":586,"target":156},{"source":586,"target":590},{"source":586,"target":119},{"source":590,"target":156},{"source":587,"target":115},{"source":120,"target":0},{"source":120,"target":115},{"source":120,"target":591},{"source":120,"target":592},{"source":120,"target":593},{"source":120,"target":594},{"source":591,"target":50},{"source":591,"target":595},{"source":591,"target":120},{"source":595,"target":50},{"source":592,"target":596},{"source":592,"target":120},{"source":593,"target":156},{"source":593,"target":597},{"source":593,"target":120},{"source":597,"target":156},{"source":594,"target":115},{"source":121,"target":0},{"source":121,"target":30},{"source":121,"target":598},{"source":121,"target":599},{"source":598,"target":600},{"source":598,"target":121},{"source":599,"target":30},{"source":122,"target":0},{"source":122,"target":30},{"source":122,"target":150},{"source":122,"target":152},{"source":122,"target":601},{"source":122,"target":602},{"source":122,"target":603},{"source":122,"target":604},{"source":122,"target":605},{"source":122,"target":606},{"source":122,"target":607},{"source":122,"target":608},{"source":122,"target":609},{"source":122,"target":610},{"source":601,"target":156},{"source":601,"target":611},{"source":601,"target":122},{"source":611,"target":156},{"source":602,"target":612},{"source":602,"target":122},{"source":603,"target":50},{"source":603,"target":613},{"source":603,"target":122},{"source":613,"target":50},{"source":604,"target":50},{"source":604,"target":614},{"source":604,"target":122},{"source":614,"target":50},{"source":605,"target":50},{"source":605,"target":615},{"source":605,"target":122},{"source":615,"target":50},{"source":606,"target":123},{"source":606,"target":616},{"source":606,"target":122},{"source":616,"target":123},{"source":607,"target":124},{"source":607,"target":617},{"source":607,"target":122},{"source":617,"target":124},{"source":608,"target":30},{"source":609,"target":150},{"source":610,"target":152},{"source":123,"target":0},{"source":123,"target":618},{"source":618,"target":50},{"source":618,"target":619},{"source":618,"target":123},{"source":619,"target":50},{"source":124,"target":0},{"source":125,"target":0},{"source":125,"target":124},{"source":125,"target":620},{"source":125,"target":621},{"source":125,"target":622},{"source":125,"target":623},{"source":125,"target":624},{"source":620,"target":156},{"source":620,"target":625},{"source":620,"target":125},{"source":625,"target":156},{"source":621,"target":626},{"source":621,"target":125},{"source":622,"target":45},{"source":622,"target":627},{"source":622,"target":125},{"source":627,"target":45},{"source":623,"target":42},{"source":623,"target":628},{"source":623,"target":125},{"source":628,"target":42},{"source":624,"target":124},{"source":126,"target":0},{"source":126,"target":124},{"source":126,"target":629},{"source":126,"target":630},{"source":126,"target":631},{"source":126,"target":632},{"source":126,"target":633},{"source":629,"target":156},{"source":629,"target":634},{"source":629,"target":126},{"source":634,"target":156},{"source":630,"target":635},{"source":630,"target":126},{"source":631,"target":45},{"source":631,"target":636},{"source":631,"target":126},{"source":636,"target":45},{"source":632,"target":42},{"source":632,"target":637},{"source":632,"target":126},{"source":637,"target":42},{"source":633,"target":124},{"source":127,"target":0},{"source":127,"target":30},{"source":127,"target":150},{"source":127,"target":152},{"source":127,"target":638},{"source":127,"target":639},{"source":127,"target":640},{"source":127,"target":641},{"source":127,"target":642},{"source":638,"target":643},{"source":638,"target":127},{"source":639,"target":644},{"source":639,"target":127},{"source":640,"target":30},{"source":641,"target":150},{"source":642,"target":152},{"source":128,"target":0},{"source":128,"target":127},{"source":128,"target":645},{"source":128,"target":646},{"source":128,"target":647},{"source":128,"target":648},{"source":128,"target":649},{"source":128,"target":650},{"source":128,"target":651},{"source":645,"target":652},{"source":645,"target":128},{"source":646,"target":653},{"source":646,"target":128},{"source":647,"target":50},{"source":647,"target":654},{"source":647,"target":128},{"source":654,"target":50},{"source":648,"target":50},{"source":648,"target":655},{"source":648,"target":128},{"source":655,"target":50},{"source":649,"target":37},{"source":649,"target":656},{"source":649,"target":128},{"source":656,"target":37},{"source":650,"target":129},{"source":650,"target":657},{"source":650,"target":128},{"source":657,"target":129},{"source":651,"target":127},{"source":129,"target":0},{"source":129,"target":658},{"source":129,"target":659},{"source":129,"target":660},{"source":658,"target":661},{"source":658,"target":129},{"source":659,"target":49},{"source":659,"target":662},{"source":659,"target":129},{"source":662,"target":49},{"source":660,"target":663},{"source":660,"target":129},{"source":130,"target":0},{"source":130,"target":127},{"source":130,"target":664},{"source":664,"target":127},{"source":131,"target":0},{"source":131,"target":30},{"source":131,"target":150},{"source":131,"target":152},{"source":131,"target":665},{"source":131,"target":666},{"source":131,"target":667},{"source":131,"target":668},{"source":131,"target":669},{"source":131,"target":670},{"source":665,"target":156},{"source":665,"target":671},{"source":665,"target":131},{"source":671,"target":156},{"source":666,"target":672},{"source":666,"target":131},{"source":667,"target":132},{"source":667,"target":673},{"source":667,"target":131},{"source":673,"target":132},{"source":668,"target":30},{"source":669,"target":150},{"source":670,"target":152},{"source":132,"target":0},{"source":133,"target":0},{"source":133,"target":115},{"source":133,"target":136},{"source":133,"target":674},{"source":133,"target":675},{"source":133,"target":676},{"source":133,"target":677},{"source":133,"target":678},{"source":133,"target":679},{"source":674,"target":680},{"source":674,"target":133},{"source":675,"target":50},{"source":675,"target":681},{"source":675,"target":133},{"source":681,"target":50},{"source":676,"target":682},{"source":676,"target":133},{"source":677,"target":156},{"source":677,"target":683},{"source":677,"target":133},{"source":683,"target":156},{"source":678,"target":115},{"source":679,"target":136},{"source":134,"target":0},{"source":134,"target":30},{"source":134,"target":150},{"source":134,"target":152},{"source":134,"target":684},{"source":134,"target":685},{"source":134,"target":686},{"source":134,"target":687},{"source":134,"target":688},{"source":684,"target":135},{"source":684,"target":689},{"source":684,"target":134},{"source":689,"target":135},{"source":685,"target":136},{"source":685,"target":690},{"source":685,"target":134},{"source":690,"target":136},{"source":686,"target":30},{"source":687,"target":150},{"source":688,"target":152},{"source":135,"target":0},{"source":135,"target":691},{"source":135,"target":692},{"source":691,"target":693},{"source":691,"target":135},{"source":692,"target":50},{"source":692,"target":694},{"source":692,"target":135},{"source":694,"target":50},{"source":136,"target":0},{"source":137,"target":0},{"source":137,"target":30},{"source":137,"target":695},{"source":137,"target":696},{"source":137,"target":697},{"source":137,"target":698},{"source":695,"target":699},{"source":695,"target":137},{"source":696,"target":138},{"source":696,"target":700},{"source":696,"target":137},{"source":700,"target":138},{"source":697,"target":150},{"source":697,"target":701},{"source":697,"target":137},{"source":701,"target":150},{"source":698,"target":30},{"source":138,"target":0},{"source":138,"target":702},{"source":138,"target":703},{"source":702,"target":139},{"source":702,"target":704},{"source":702,"target":138},{"source":704,"target":139},{"source":703,"target":705},{"source":703,"target":138},{"source":139,"target":0},{"source":140,"target":0},{"source":140,"target":139},{"source":140,"target":706},{"source":706,"target":139},{"source":141,"target":0},{"source":141,"target":139},{"source":141,"target":707},{"source":707,"target":139},{"source":142,"target":0},{"source":142,"target":139},{"source":142,"target":708},{"source":708,"target":139},{"source":143,"target":0},{"source":143,"target":139},{"source":143,"target":709},{"source":709,"target":139},{"source":144,"target":0},{"source":144,"target":139},{"source":144,"target":710},{"source":710,"target":139},{"source":145,"target":0},{"source":145,"target":139},{"source":145,"target":711},{"source":711,"target":139},{"source":146,"target":0},{"source":146,"target":139},{"source":146,"target":712},{"source":712,"target":139},{"source":147,"target":0},{"source":147,"target":139},{"source":147,"target":713},{"source":713,"target":139},{"source":148,"target":0},{"source":148,"target":139},{"source":148,"target":714},{"source":714,"target":139},{"source":149,"target":0},{"source":149,"target":139},{"source":149,"target":715},{"source":715,"target":139},{"source":150,"target":0},{"source":151,"target":0},{"source":151,"target":150},{"source":151,"target":152},{"source":151,"target":716},{"source":151,"target":717},{"source":151,"target":718},{"source":151,"target":719},{"source":716,"target":720},{"source":716,"target":151},{"source":717,"target":152},{"source":717,"target":721},{"source":717,"target":151},{"source":721,"target":152},{"source":718,"target":150},{"source":719,"target":152},{"source":152,"target":0},{"source":153,"target":0},{"source":153,"target":30},{"source":153,"target":722},{"source":153,"target":723},{"source":153,"target":724},{"source":153,"target":725},{"source":153,"target":726},{"source":722,"target":50},{"source":722,"target":727},{"source":722,"target":153},{"source":727,"target":50},{"source":723,"target":154},{"source":723,"target":728},{"source":723,"target":153},{"source":728,"target":154},{"source":724,"target":729},{"source":724,"target":153},{"source":725,"target":156},{"source":725,"target":730},{"source":725,"target":153},{"source":730,"target":156},{"source":726,"target":30},{"source":154,"target":0},{"source":155,"target":0},{"source":155,"target":150},{"source":155,"target":731},{"source":155,"target":732},{"source":155,"target":733},{"source":155,"target":734},{"source":731,"target":50},{"source":731,"target":735},{"source":731,"target":155},{"source":735,"target":50},{"source":732,"target":736},{"source":732,"target":155},{"source":733,"target":737},{"source":733,"target":155},{"source":734,"target":150},{"source":156,"target":0},{"source":156,"target":30},{"source":156,"target":37},{"source":156,"target":115},{"source":156,"target":132},{"source":156,"target":136},{"source":156,"target":150},{"source":156,"target":152},{"source":156,"target":738},{"source":156,"target":739},{"source":156,"target":740},{"source":156,"target":741},{"source":156,"target":742},{"source":156,"target":743},{"source":156,"target":744},{"source":156,"target":745},{"source":738,"target":746},{"source":738,"target":156},{"source":739,"target":30},{"source":740,"target":37},{"source":741,"target":115},{"source":742,"target":132},{"source":743,"target":136},{"source":744,"target":150},{"source":745,"target":152}],"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="AddParameterTest"> <eClassifiers xsi:type="ecore:EClass" name="Testclass1"> <eOperations name="testOperation"> <eAnnotations source="marker"/> <eParameters name="theParameter" eType="#//Testclass1"/> </eOperations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Testclass2"/> </ecore:EPackage>
github:ecore:/data/Hu3bl/emf.refactor/org.eclipse.emf.refactor.refactorings.ecore/tests/AddParameter/test_06/source.ecore
ecore
AddParameterTest Testclass1 testOperation theParameter Testclass2
null
{"directed":true,"nodes":[{"nsPrefix":null,"nsURI":null,"name":"AddParameterTest","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Testclass1","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Testclass2","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"ordered":true,"upperBound":1,"unique":true,"name":"testOperation","lowerBound":0,"id":3,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"theParameter","lowerBound":0,"id":4,"many":false,"required":false,"eClass":"EParameter"},{"id":5,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":1,"target":0},{"source":1,"target":3},{"source":3,"target":1},{"source":3,"target":4},{"source":4,"target":1},{"source":4,"target":5},{"source":4,"target":3},{"source":5,"target":1},{"source":2,"target":0}],"multigraph":true}
false
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright 2014 Indra Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <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="target" nsURI="http://model.deployment.itecban.es/DeploymentTarget" nsPrefix="target"> <eClassifiers xsi:type="ecore:EClass" name="BridgeResourcesType"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="bridgeResources_._type"/> <details key="kind" value="elementOnly"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="bridgeResource" upperBound="-1" eType="ecore:EClass unit.ecore#//ResourceType" containment="true" resolveProxies="false"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="bridgeResource"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="BridgesType"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="bridges_._type"/> <details key="kind" value="elementOnly"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="bridge" lowerBound="1" upperBound="-1" eType="#//BridgeType" containment="true" resolveProxies="false"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="bridge"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="BridgeType"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="BridgeType"/> <details key="kind" value="elementOnly"/> </eAnnotations> <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="&#xD;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;A bridge's name is its unique identifier within the deployment&#xD;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;target&#xD;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <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="label" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="&#xD;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;A lable is an optional human readable name.&#xD;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="label"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="bridgeResources" lowerBound="1" eType="#//BridgeResourcesType" containment="true" resolveProxies="false"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="bridgeResources"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ConnectedBridgesType"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="connectedBridges_._type"/> <details key="kind" value="elementOnly"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="bridge" upperBound="-1" eType="#//BridgeType" containment="true" resolveProxies="false"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="bridge"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ConnectedNodesType"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="connectedNodes_._type"/> <details key="kind" value="elementOnly"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="nodes" upperBound="-1" eType="#//NodeType" containment="true" resolveProxies="false"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="nodes"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ContainerPropertiesType"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="containerProperties_._type"/> <details key="kind" value="elementOnly"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="containerProperty" upperBound="-1" eType="ecore:EClass unit.ecore#//PropertyType" containment="true" resolveProxies="false"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="containerProperty"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ContainerResourcesType"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="containerResources_._type"/> <details key="kind" value="elementOnly"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="containerResource" upperBound="-1" eType="#//RuntimeResourceType" containment="true" resolveProxies="false"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="containerResource"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ContainerType"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="ContainerType"/> <details key="kind" value="elementOnly"/> </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="element"/> <details key="name" value="name"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="containerTypes" lowerBound="1" eType="#//ContainerTypesType" containment="true" resolveProxies="false"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="containerTypes"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="supportedPackages" lowerBound="1" eType="#//SupportedPackagesType" containment="true" resolveProxies="false"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="supportedPackages"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="containerResources" lowerBound="1" eType="#//ContainerResourcesType" containment="true" resolveProxies="false"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="containerResources"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="containerProperties" lowerBound="1" eType="#//ContainerPropertiesType" containment="true" resolveProxies="false"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="containerProperties"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="runtimeUnits" lowerBound="1" eType="#//RuntimeUnitsType" containment="true" resolveProxies="false"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="runtimeUnits"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ContainerTypesType"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="containerTypes_._type"/> <details key="kind" value="elementOnly"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="containerType" lowerBound="1" upperBound="-1" eType="#//ContainerTypeType" containment="true" resolveProxies="false"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="containerType"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ContainerTypeType"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="ContainerTypeType"/> <details key="kind" value="elementOnly"/> </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="element"/> <details key="name" value="name"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="version" 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="version"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="DeploymentTargetType"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="DeploymentTargetType"/> <details key="kind" value="elementOnly"/> </eAnnotations> <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="&#xD;&#xA; &#x9;&#x9;&#x9;&#x9;A node's name is its unique identifier within the&#xD;&#xA; &#x9;&#x9;&#x9;&#x9;deployment target&#xD;&#xA; &#x9;&#x9;&#x9;"/> </eAnnotations> <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="uUID" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="&#xD;&#xA; &#x9;&#x9;&#x9;&#x9;An optional unique id for the deployment target&#xD;&#xA; &#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="UUID"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="nodes" lowerBound="1" eType="#//NodesType" containment="true" resolveProxies="false"> <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="bridges" eType="#//BridgesType" containment="true" resolveProxies="false"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="bridges"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="interconnects" eType="#//InterconnectsType" containment="true" resolveProxies="false"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="interconnects"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="sharedResources" eType="#//SharedResourcesType" containment="true" resolveProxies="false"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="sharedResources"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="timestamp" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//DateTime"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="timestamp"/> </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="bridge" upperBound="-2" eType="#//BridgeType" 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="bridge"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="container" upperBound="-2" eType="#//ContainerType" 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="container"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="containerType" upperBound="-2" eType="#//ContainerTypeType" 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="containerType"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="domain" upperBound="-2" eType="#//DeploymentTargetType" 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="domain"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="interconnect" upperBound="-2" eType="#//InterconnectType" 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="interconnect"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="node" upperBound="-2" eType="#//NodeType" 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="node"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="runtimeResource" upperBound="-2" eType="#//RuntimeResourceType" 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="runtimeResource"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="runtimeUnit" upperBound="-2" eType="#//RuntimeUnitType" 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="runtimeUnit"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="status" unique="false" upperBound="-2" eType="#//StatusType" volatile="true" transient="true" derived="true"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="status"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="supportedPackage" upperBound="-2" eType="#//SupportedPackageType" 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="supportedPackage"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="InterconnectResourcesType"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="interconnectResources_._type"/> <details key="kind" value="elementOnly"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="interconnectResource" upperBound="-1" eType="ecore:EClass unit.ecore#//ResourceType" containment="true" resolveProxies="false"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="interconnectResource"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="InterconnectsType"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="interconnects_._type"/> <details key="kind" value="elementOnly"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="interconnect" lowerBound="1" upperBound="-1" eType="#//InterconnectType" containment="true" resolveProxies="false"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="interconnect"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="InterconnectType"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="InterconnectType"/> <details key="kind" value="elementOnly"/> </eAnnotations> <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="&#xD;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;An interconnect's name is its unique identifier within the deployment&#xD;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;target&#xD;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <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="label" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="&#xD;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;A label is an optional human readable name.&#xD;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="label"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="interconnectResources" lowerBound="1" eType="#//InterconnectResourcesType" containment="true" resolveProxies="false"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="interconnectResources"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="connectedNodes" lowerBound="1" eType="#//ConnectedNodesType" containment="true" resolveProxies="false"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="connectedNodes"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="connectedBridges" lowerBound="1" eType="#//ConnectedBridgesType" containment="true" resolveProxies="false"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="connectedBridges"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="NodeContainersType"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="nodeContainers_._type"/> <details key="kind" value="elementOnly"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="nodeContainer" lowerBound="1" upperBound="-1" eType="#//ContainerType" containment="true" resolveProxies="false"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="nodeContainer"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="NodePropertiesType"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="nodeProperties_._type"/> <details key="kind" value="elementOnly"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="nodeProperty" upperBound="-1" eType="ecore:EClass unit.ecore#//PropertyType" containment="true" resolveProxies="false"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="nodeProperty"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="NodeResourcesType"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="nodeResources_._type"/> <details key="kind" value="elementOnly"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="nodeResource" upperBound="-1" eType="ecore:EClass unit.ecore#//ResourceType" containment="true" resolveProxies="false"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="nodeResource"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="NodesType"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="nodes_._type"/> <details key="kind" value="elementOnly"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="node" lowerBound="1" upperBound="-1" eType="#//NodeType" containment="true" resolveProxies="false"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="node"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="NodeType"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="NodeType"/> <details key="kind" value="elementOnly"/> </eAnnotations> <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="&#xD;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;A node's name is its unique identifier within&#xD;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;the deployment target&#xD;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <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="label" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="&#xD;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;A label is an optional human readable name.&#xD;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="label"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="nodeResources" lowerBound="1" eType="#//NodeResourcesType" containment="true" resolveProxies="false"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="nodeResources"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="nodeContainers" lowerBound="1" eType="#//NodeContainersType" containment="true" resolveProxies="false"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="nodeContainers"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="nodeProperties" lowerBound="1" eType="#//NodePropertiesType" containment="true" resolveProxies="false"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="nodeProperties"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="RuntimeResourcePropertiesType"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="runtimeResourceProperties_._type"/> <details key="kind" value="elementOnly"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="resourceProperty" upperBound="-1" eType="ecore:EClass unit.ecore#//PropertyType" containment="true" resolveProxies="false"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="resourceProperty"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="RuntimeResourcesType"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="runtimeResources_._type"/> <details key="kind" value="elementOnly"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="resource" upperBound="-1" eType="#//RuntimeResourceType" containment="true" resolveProxies="false"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="resource"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="RuntimeResourceType"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="RuntimeResourceType"/> <details key="kind" value="elementOnly"/> </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="element"/> <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="&#xD;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;A version is a unique String resource attribute.&#xD;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="version"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="runtimeResourceTypes" lowerBound="1" eType="#//RuntimeResourceTypesType" containment="true" resolveProxies="false"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="runtimeResourceTypes"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="runtimeResourceProperties" lowerBound="1" eType="#//RuntimeResourcePropertiesType" containment="true" resolveProxies="false"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="runtimeResourceProperties"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="status" eType="#//StatusType" unsettable="true"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="status"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="RuntimeResourceTypesType"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="runtimeResourceTypes_._type"/> <details key="kind" value="elementOnly"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="type" 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="type"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="RuntimeUnitsType"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="runtimeUnits_._type"/> <details key="kind" value="elementOnly"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="unit" upperBound="-1" eType="#//RuntimeUnitType" containment="true" resolveProxies="false"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="unit"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="RuntimeUnitType"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="RuntimeUnitType"/> <details key="kind" value="elementOnly"/> </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="element"/> <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:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="version"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="status" lowerBound="1" eType="#//StatusType" unsettable="true"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="status"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="runtimeResources" lowerBound="1" eType="#//RuntimeResourcesType" containment="true" resolveProxies="false"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="runtimeResources"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="SharedResourcesType"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="sharedResources_._type"/> <details key="kind" value="elementOnly"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="sharedResource" lowerBound="1" upperBound="-1" eType="ecore:EClass unit.ecore#//ResourceType" containment="true" resolveProxies="false"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="sharedResource"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="StatusType"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="StatusType"/> </eAnnotations> <eLiterals name="ACTIVE"/> <eLiterals name="INACTIVE" value="1"/> <eLiterals name="INSTALLED" value="2"/> </eClassifiers> <eClassifiers xsi:type="ecore:EDataType" name="StatusTypeObject" instanceClassName="org.eclipse.emf.common.util.Enumerator"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="StatusType:Object"/> <details key="baseType" value="StatusType"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="SupportedPackagesType"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="supportedPackages_._type"/> <details key="kind" value="elementOnly"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="containerPackage" lowerBound="1" upperBound="-1" eType="#//SupportedPackageType" containment="true" resolveProxies="false"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="containerPackage"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="SupportedPackageType"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="SupportedPackageType"/> <details key="kind" value="elementOnly"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="version" 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="version"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="type" 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="&#xD;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;Type of package of this deployment unit. A&#xD;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;taxonomy of valid packaging formats is defined&#xD;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;in a external system.&#xD;&#xA;&#xD;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;For this version the supported packaging formats&#xD;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;are: es.itecban.packaging.jar,&#xD;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;es.itecban.packaging.osgi,&#xD;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;es.itecban.packaging.ear,&#xD;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;es.itecban.packaging.war,&#xD;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;es.itecban.packaging.rar,&#xD;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;es.itecban.packaging.zip,&#xD;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;es.itecban.packaging.sca&#xD;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="type"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> </ecore:EPackage>
github:ecore:/data/iLabrys/iLabrysOSGi/es.itecban.deployment.model.plan/model/genmodel/target.ecore
ecore
target BridgeResourcesType bridgeResource BridgesType bridge BridgeType name label bridgeResources ConnectedBridgesType bridge ConnectedNodesType nodes ContainerPropertiesType containerProperty ContainerResourcesType containerResource ContainerType name containerTypes supportedPackages containerResources containerProperties runtimeUnits ContainerTypesType containerType ContainerTypeType name version DeploymentTargetType name uUID nodes bridges interconnects sharedResources timestamp DocumentRoot mixed xMLNSPrefixMap xSISchemaLocation bridge container containerType domain interconnect node runtimeResource runtimeUnit status supportedPackage InterconnectResourcesType interconnectResource InterconnectsType interconnect InterconnectType name label interconnectResources connectedNodes connectedBridges NodeContainersType nodeContainer NodePropertiesType nodeProperty NodeResourcesType nodeResource NodesType node NodeType name label nodeResources nodeContainers nodeProperties RuntimeResourcePropertiesType resourceProperty RuntimeResourcesType resource RuntimeResourceType name version runtimeResourceTypes runtimeResourceProperties status RuntimeResourceTypesType type RuntimeUnitsType unit RuntimeUnitType name version status runtimeResources SharedResourcesType sharedResource StatusType ACTIVE ACTIVE INACTIVE INACTIVE INSTALLED INSTALLED StatusTypeObject org.eclipse.emf.common.util.Enumerator org.eclipse.emf.common.util.Enumerator SupportedPackagesType containerPackage SupportedPackageType version type
null
{"directed":true,"nodes":[{"nsPrefix":"target","nsURI":"http://model.deployment.itecban.es/DeploymentTarget","name":"target","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BridgeResourcesType","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BridgesType","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BridgeType","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ConnectedBridgesType","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ConnectedNodesType","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ContainerPropertiesType","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ContainerResourcesType","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ContainerType","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ContainerTypesType","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ContainerTypeType","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DeploymentTargetType","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DocumentRoot","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InterconnectResourcesType","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InterconnectsType","instanceClass":null,"abstract":false,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InterconnectType","instanceClass":null,"abstract":false,"id":15,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NodeContainersType","instanceClass":null,"abstract":false,"id":16,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NodePropertiesType","instanceClass":null,"abstract":false,"id":17,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NodeResourcesType","instanceClass":null,"abstract":false,"id":18,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NodesType","instanceClass":null,"abstract":false,"id":19,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NodeType","instanceClass":null,"abstract":false,"id":20,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RuntimeResourcePropertiesType","instanceClass":null,"abstract":false,"id":21,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RuntimeResourcesType","instanceClass":null,"abstract":false,"id":22,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RuntimeResourceType","instanceClass":null,"abstract":false,"id":23,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RuntimeResourceTypesType","instanceClass":null,"abstract":false,"id":24,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RuntimeUnitsType","instanceClass":null,"abstract":false,"id":25,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RuntimeUnitType","instanceClass":null,"abstract":false,"id":26,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SharedResourcesType","instanceClass":null,"abstract":false,"id":27,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"StatusType","instanceClass":null,"id":28,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":"org.eclipse.emf.common.util.Enumerator","defaultValue":null,"instanceClassName":"org.eclipse.emf.common.util.Enumerator","name":"StatusTypeObject","instanceClass":"org.eclipse.emf.common.util.Enumerator","id":29,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SupportedPackagesType","instanceClass":null,"abstract":false,"id":30,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SupportedPackageType","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":"bridgeResource","changeable":true,"resolveProxies":false,"lowerBound":0,"id":32,"derived":false},{"id":33,"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":"bridge","changeable":true,"resolveProxies":false,"lowerBound":1,"id":34,"derived":false},{"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":"name","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":"label","changeable":true,"lowerBound":0,"iD":false,"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":"bridgeResources","changeable":true,"resolveProxies":false,"lowerBound":1,"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":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"bridge","changeable":true,"resolveProxies":false,"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":"nodes","changeable":true,"resolveProxies":false,"lowerBound":0,"id":44,"derived":false},{"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":"containerProperty","changeable":true,"resolveProxies":false,"lowerBound":0,"id":46,"derived":false},{"id":47,"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":"containerResource","changeable":true,"resolveProxies":false,"lowerBound":0,"id":48,"derived":false},{"id":49,"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":50,"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":"containerTypes","changeable":true,"resolveProxies":false,"lowerBound":1,"id":51,"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":"supportedPackages","changeable":true,"resolveProxies":false,"lowerBound":1,"id":52,"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":"containerResources","changeable":true,"resolveProxies":false,"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":"containerProperties","changeable":true,"resolveProxies":false,"lowerBound":1,"id":54,"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":"runtimeUnits","changeable":true,"resolveProxies":false,"lowerBound":1,"id":55,"derived":false},{"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":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"containerType","changeable":true,"resolveProxies":false,"lowerBound":1,"id":62,"derived":false},{"id":63,"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":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":"version","changeable":true,"lowerBound":1,"iD":false,"id":65,"derived":false},{"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":"name","changeable":true,"lowerBound":1,"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":"uUID","changeable":true,"lowerBound":0,"iD":false,"id":69,"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":"nodes","changeable":true,"resolveProxies":false,"lowerBound":1,"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":"bridges","changeable":true,"resolveProxies":false,"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":"interconnects","changeable":true,"resolveProxies":false,"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":"sharedResources","changeable":true,"resolveProxies":false,"lowerBound":0,"id":73,"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":"timestamp","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"},{"id":81,"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":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":true,"unique":true,"name":"xMLNSPrefixMap","changeable":true,"resolveProxies":false,"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":true,"unique":true,"name":"xSISchemaLocation","changeable":true,"resolveProxies":false,"lowerBound":0,"id":84,"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":"bridge","changeable":true,"resolveProxies":false,"lowerBound":0,"id":85,"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":"container","changeable":true,"resolveProxies":false,"lowerBound":0,"id":86,"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":"containerType","changeable":true,"resolveProxies":false,"lowerBound":0,"id":87,"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":"domain","changeable":true,"resolveProxies":false,"lowerBound":0,"id":88,"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":"interconnect","changeable":true,"resolveProxies":false,"lowerBound":0,"id":89,"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":"node","changeable":true,"resolveProxies":false,"lowerBound":0,"id":90,"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":"runtimeResource","changeable":true,"resolveProxies":false,"lowerBound":0,"id":91,"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":"runtimeUnit","changeable":true,"resolveProxies":false,"lowerBound":0,"id":92,"derived":true},{"ordered":true,"upperBound":-2,"volatile":true,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":true,"unique":false,"name":"status","changeable":true,"lowerBound":0,"iD":false,"id":93,"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":"supportedPackage","changeable":true,"resolveProxies":false,"lowerBound":0,"id":94,"derived":true},{"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"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"interconnectResource","changeable":true,"resolveProxies":false,"lowerBound":0,"id":108,"derived":false},{"id":109,"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":"interconnect","changeable":true,"resolveProxies":false,"lowerBound":1,"id":110,"derived":false},{"id":111,"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":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":"label","changeable":true,"lowerBound":0,"iD":false,"id":113,"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":"interconnectResources","changeable":true,"resolveProxies":false,"lowerBound":1,"id":114,"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":"connectedNodes","changeable":true,"resolveProxies":false,"lowerBound":1,"id":115,"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":"connectedBridges","changeable":true,"resolveProxies":false,"lowerBound":1,"id":116,"derived":false},{"id":117,"eClass":"EGenericType"},{"id":118,"eClass":"EGenericType"},{"id":119,"eClass":"EGenericType"},{"id":120,"eClass":"EGenericType"},{"id":121,"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":"nodeContainer","changeable":true,"resolveProxies":false,"lowerBound":1,"id":122,"derived":false},{"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":"nodeProperty","changeable":true,"resolveProxies":false,"lowerBound":0,"id":124,"derived":false},{"id":125,"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":"nodeResource","changeable":true,"resolveProxies":false,"lowerBound":0,"id":126,"derived":false},{"id":127,"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":"node","changeable":true,"resolveProxies":false,"lowerBound":1,"id":128,"derived":false},{"id":129,"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":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":"label","changeable":true,"lowerBound":0,"iD":false,"id":131,"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":"nodeResources","changeable":true,"resolveProxies":false,"lowerBound":1,"id":132,"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":"nodeContainers","changeable":true,"resolveProxies":false,"lowerBound":1,"id":133,"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":"nodeProperties","changeable":true,"resolveProxies":false,"lowerBound":1,"id":134,"derived":false},{"id":135,"eClass":"EGenericType"},{"id":136,"eClass":"EGenericType"},{"id":137,"eClass":"EGenericType"},{"id":138,"eClass":"EGenericType"},{"id":139,"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":"resourceProperty","changeable":true,"resolveProxies":false,"lowerBound":0,"id":140,"derived":false},{"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":"resource","changeable":true,"resolveProxies":false,"lowerBound":0,"id":142,"derived":false},{"id":143,"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":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":"version","changeable":true,"lowerBound":0,"iD":false,"id":145,"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":"runtimeResourceTypes","changeable":true,"resolveProxies":false,"lowerBound":1,"id":146,"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":"runtimeResourceProperties","changeable":true,"resolveProxies":false,"lowerBound":1,"id":147,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":true,"name":"status","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":true,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"type","changeable":true,"lowerBound":1,"iD":false,"id":154,"derived":false},{"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":"unit","changeable":true,"resolveProxies":false,"lowerBound":0,"id":156,"derived":false},{"id":157,"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":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":"version","changeable":true,"lowerBound":0,"iD":false,"id":159,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":true,"name":"status","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":true,"unsettable":false,"transient":false,"unique":true,"name":"runtimeResources","changeable":true,"resolveProxies":false,"lowerBound":1,"id":161,"derived":false},{"id":162,"eClass":"EGenericType"},{"id":163,"eClass":"EGenericType"},{"id":164,"eClass":"EGenericType"},{"id":165,"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":"sharedResource","changeable":true,"resolveProxies":false,"lowerBound":1,"id":166,"derived":false},{"id":167,"eClass":"EGenericType"},{"name":"ACTIVE","id":168,"value":0,"literal":"ACTIVE","eClass":"EEnumLiteral"},{"name":"INACTIVE","id":169,"value":1,"literal":"INACTIVE","eClass":"EEnumLiteral"},{"name":"INSTALLED","id":170,"value":2,"literal":"INSTALLED","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":"containerPackage","changeable":true,"resolveProxies":false,"lowerBound":1,"id":171,"derived":false},{"id":172,"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":"version","changeable":true,"lowerBound":1,"iD":false,"id":173,"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":174,"derived":false},{"id":175,"eClass":"EGenericType"},{"id":176,"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":33},{"source":32,"target":1},{"source":2,"target":0},{"source":2,"target":34},{"source":34,"target":3},{"source":34,"target":35},{"source":34,"target":2},{"source":35,"target":3},{"source":3,"target":0},{"source":3,"target":36},{"source":3,"target":37},{"source":3,"target":38},{"source":36,"target":39},{"source":36,"target":3},{"source":37,"target":40},{"source":37,"target":3},{"source":38,"target":1},{"source":38,"target":41},{"source":38,"target":3},{"source":41,"target":1},{"source":4,"target":0},{"source":4,"target":42},{"source":42,"target":3},{"source":42,"target":43},{"source":42,"target":4},{"source":43,"target":3},{"source":5,"target":0},{"source":5,"target":44},{"source":44,"target":20},{"source":44,"target":45},{"source":44,"target":5},{"source":45,"target":20},{"source":6,"target":0},{"source":6,"target":46},{"source":46,"target":47},{"source":46,"target":6},{"source":7,"target":0},{"source":7,"target":48},{"source":48,"target":23},{"source":48,"target":49},{"source":48,"target":7},{"source":49,"target":23},{"source":8,"target":0},{"source":8,"target":50},{"source":8,"target":51},{"source":8,"target":52},{"source":8,"target":53},{"source":8,"target":54},{"source":8,"target":55},{"source":50,"target":56},{"source":50,"target":8},{"source":51,"target":9},{"source":51,"target":57},{"source":51,"target":8},{"source":57,"target":9},{"source":52,"target":30},{"source":52,"target":58},{"source":52,"target":8},{"source":58,"target":30},{"source":53,"target":7},{"source":53,"target":59},{"source":53,"target":8},{"source":59,"target":7},{"source":54,"target":6},{"source":54,"target":60},{"source":54,"target":8},{"source":60,"target":6},{"source":55,"target":25},{"source":55,"target":61},{"source":55,"target":8},{"source":61,"target":25},{"source":9,"target":0},{"source":9,"target":62},{"source":62,"target":10},{"source":62,"target":63},{"source":62,"target":9},{"source":63,"target":10},{"source":10,"target":0},{"source":10,"target":64},{"source":10,"target":65},{"source":64,"target":66},{"source":64,"target":10},{"source":65,"target":67},{"source":65,"target":10},{"source":11,"target":0},{"source":11,"target":68},{"source":11,"target":69},{"source":11,"target":70},{"source":11,"target":71},{"source":11,"target":72},{"source":11,"target":73},{"source":11,"target":74},{"source":68,"target":75},{"source":68,"target":11},{"source":69,"target":76},{"source":69,"target":11},{"source":70,"target":19},{"source":70,"target":77},{"source":70,"target":11},{"source":77,"target":19},{"source":71,"target":2},{"source":71,"target":78},{"source":71,"target":11},{"source":78,"target":2},{"source":72,"target":14},{"source":72,"target":79},{"source":72,"target":11},{"source":79,"target":14},{"source":73,"target":27},{"source":73,"target":80},{"source":73,"target":11},{"source":80,"target":27},{"source":74,"target":81},{"source":74,"target":11},{"source":12,"target":0},{"source":12,"target":82},{"source":12,"target":83},{"source":12,"target":84},{"source":12,"target":85},{"source":12,"target":86},{"source":12,"target":87},{"source":12,"target":88},{"source":12,"target":89},{"source":12,"target":90},{"source":12,"target":91},{"source":12,"target":92},{"source":12,"target":93},{"source":12,"target":94},{"source":82,"target":95},{"source":82,"target":12},{"source":83,"target":96},{"source":83,"target":12},{"source":84,"target":97},{"source":84,"target":12},{"source":85,"target":3},{"source":85,"target":98},{"source":85,"target":12},{"source":98,"target":3},{"source":86,"target":8},{"source":86,"target":99},{"source":86,"target":12},{"source":99,"target":8},{"source":87,"target":10},{"source":87,"target":100},{"source":87,"target":12},{"source":100,"target":10},{"source":88,"target":11},{"source":88,"target":101},{"source":88,"target":12},{"source":101,"target":11},{"source":89,"target":15},{"source":89,"target":102},{"source":89,"target":12},{"source":102,"target":15},{"source":90,"target":20},{"source":90,"target":103},{"source":90,"target":12},{"source":103,"target":20},{"source":91,"target":23},{"source":91,"target":104},{"source":91,"target":12},{"source":104,"target":23},{"source":92,"target":26},{"source":92,"target":105},{"source":92,"target":12},{"source":105,"target":26},{"source":93,"target":28},{"source":93,"target":106},{"source":93,"target":12},{"source":106,"target":28},{"source":94,"target":31},{"source":94,"target":107},{"source":94,"target":12},{"source":107,"target":31},{"source":13,"target":0},{"source":13,"target":108},{"source":108,"target":109},{"source":108,"target":13},{"source":14,"target":0},{"source":14,"target":110},{"source":110,"target":15},{"source":110,"target":111},{"source":110,"target":14},{"source":111,"target":15},{"source":15,"target":0},{"source":15,"target":112},{"source":15,"target":113},{"source":15,"target":114},{"source":15,"target":115},{"source":15,"target":116},{"source":112,"target":117},{"source":112,"target":15},{"source":113,"target":118},{"source":113,"target":15},{"source":114,"target":13},{"source":114,"target":119},{"source":114,"target":15},{"source":119,"target":13},{"source":115,"target":5},{"source":115,"target":120},{"source":115,"target":15},{"source":120,"target":5},{"source":116,"target":4},{"source":116,"target":121},{"source":116,"target":15},{"source":121,"target":4},{"source":16,"target":0},{"source":16,"target":122},{"source":122,"target":8},{"source":122,"target":123},{"source":122,"target":16},{"source":123,"target":8},{"source":17,"target":0},{"source":17,"target":124},{"source":124,"target":125},{"source":124,"target":17},{"source":18,"target":0},{"source":18,"target":126},{"source":126,"target":127},{"source":126,"target":18},{"source":19,"target":0},{"source":19,"target":128},{"source":128,"target":20},{"source":128,"target":129},{"source":128,"target":19},{"source":129,"target":20},{"source":20,"target":0},{"source":20,"target":130},{"source":20,"target":131},{"source":20,"target":132},{"source":20,"target":133},{"source":20,"target":134},{"source":130,"target":135},{"source":130,"target":20},{"source":131,"target":136},{"source":131,"target":20},{"source":132,"target":18},{"source":132,"target":137},{"source":132,"target":20},{"source":137,"target":18},{"source":133,"target":16},{"source":133,"target":138},{"source":133,"target":20},{"source":138,"target":16},{"source":134,"target":17},{"source":134,"target":139},{"source":134,"target":20},{"source":139,"target":17},{"source":21,"target":0},{"source":21,"target":140},{"source":140,"target":141},{"source":140,"target":21},{"source":22,"target":0},{"source":22,"target":142},{"source":142,"target":23},{"source":142,"target":143},{"source":142,"target":22},{"source":143,"target":23},{"source":23,"target":0},{"source":23,"target":144},{"source":23,"target":145},{"source":23,"target":146},{"source":23,"target":147},{"source":23,"target":148},{"source":144,"target":149},{"source":144,"target":23},{"source":145,"target":150},{"source":145,"target":23},{"source":146,"target":24},{"source":146,"target":151},{"source":146,"target":23},{"source":151,"target":24},{"source":147,"target":21},{"source":147,"target":152},{"source":147,"target":23},{"source":152,"target":21},{"source":148,"target":28},{"source":148,"target":153},{"source":148,"target":23},{"source":153,"target":28},{"source":24,"target":0},{"source":24,"target":154},{"source":154,"target":155},{"source":154,"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":26,"target":158},{"source":26,"target":159},{"source":26,"target":160},{"source":26,"target":161},{"source":158,"target":162},{"source":158,"target":26},{"source":159,"target":163},{"source":159,"target":26},{"source":160,"target":28},{"source":160,"target":164},{"source":160,"target":26},{"source":164,"target":28},{"source":161,"target":22},{"source":161,"target":165},{"source":161,"target":26},{"source":165,"target":22},{"source":27,"target":0},{"source":27,"target":166},{"source":166,"target":167},{"source":166,"target":27},{"source":28,"target":0},{"source":28,"target":168},{"source":28,"target":169},{"source":28,"target":170},{"source":168,"target":28},{"source":169,"target":28},{"source":170,"target":28},{"source":29,"target":0},{"source":30,"target":0},{"source":30,"target":171},{"source":171,"target":31},{"source":171,"target":172},{"source":171,"target":30},{"source":172,"target":31},{"source":31,"target":0},{"source":31,"target":173},{"source":31,"target":174},{"source":173,"target":175},{"source":173,"target":31},{"source":174,"target":176},{"source":174,"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="content" nsURI="http://org.isoe.test.content-v0" nsPrefix="content"> <eClassifiers xsi:type="ecore:EClass" name="A" eSuperTypes="//W"> <eAnnotations source="diagraph"> <details key="node" value=""/> <details key="pov" value=""/> <details key="cont=A.nested" value=""/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="bs" upperBound="-1" eType="//B" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="cs" upperBound="-1" eType="//C" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="ds" upperBound="-1" eType="//D" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="fs" upperBound="-1" eType="//F" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="es" upperBound="-1" eType="//E" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="nested" upperBound="-1" eType="//A" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="B" eSuperTypes="//W"> <eAnnotations source="diagraph"> <details key="node" value=""/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="C" eSuperTypes="//W"> <eAnnotations source="diagraph"> <details key="node" value=""/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="gs" upperBound="-1" eType="//G" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="D" eSuperTypes="//W"> <eAnnotations source="diagraph"> <details key="node" value=""/> <details key="ref=e" value=""/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="e" eType="//E"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="E" eSuperTypes="//W"> <eAnnotations source="diagraph"> <details key="node" value=""/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="F" eSuperTypes="//W"> <eAnnotations source="diagraph"> <details key="node" value=""/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="js" upperBound="-1" eType="//J" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="W"> <eAnnotations source="diagraph"> <details key="label=name" value=""/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="G" eSuperTypes="//W"> <eAnnotations source="diagraph"> <details key="node" value=""/> <details key="komp=C.gcompart" value=""/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="hs" upperBound="-1" eType="//H" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="is" upperBound="-1" eType="//I" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="qs" upperBound="-1" eType="//Q" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="H" eSuperTypes="//W"> <eAnnotations source="diagraph"> <details key="node" value=""/> <details key="ref=eh" value=""/> <details key="ref=q" value=""/> <details key="cont=G.hs" value=""/> <details key="komp=G.*" value=""/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="eh" eType="//E"/> <eStructuralFeatures xsi:type="ecore:EReference" name="q" eType="//Q"/> <eStructuralFeatures xsi:type="ecore:EReference" name="r" upperBound="-1" eType="//R" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="I" eSuperTypes="//W"> <eAnnotations source="diagraph"> <details key="node" value=""/> <details key="cont=G.is" value=""/> <details key="komp=G.*" value=""/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="ps" upperBound="-1" eType="//P" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="J" eSuperTypes="//W"> <eAnnotations source="diagraph"> <details key="link" value=""/> <details key="label=linkName" value=""/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="h" eType="//H"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="linkName"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="cardinality"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//EInt"/> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="M" eSuperTypes="//W"> <eAnnotations source="diagraph"> <details key="node" value=""/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="as" upperBound="-1" eType="//A" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="ns" upperBound="-1" eType="//N" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="N" eSuperTypes="//W"> <eAnnotations source="diagraph"> <details key="node" value=""/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="P" eSuperTypes="//W"> <eAnnotations source="diagraph"> <details key="node" value=""/> <details key="ref=qs" value=""/> <details key="komp=I.i_compart" value=""/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="qs" upperBound="-1" eType="//Q"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Q" eSuperTypes="//W"> <eAnnotations source="diagraph"> <details key="node" value=""/> <details key="komp=G.*" value=""/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="R" eSuperTypes="//W"> <eAnnotations source="diagraph"> <details key="link" value=""/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="p" eType="//P"/> </eClassifiers> </ecore:EPackage>
github:ecore:/data/francoispfister/diagraph/org.isoe.fwk.megamodel.deploy/repository-bundle/content.ecore
ecore
content A bs cs ds fs es nested B C gs D e E F js W name G hs is qs H eh q r I ps J h linkName cardinality M as ns N P qs Q R p
null
{"directed":true,"nodes":[{"nsPrefix":"content","nsURI":"http://org.isoe.test.content-v0","name":"content","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"A","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"B","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"C","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"D","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"E","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"F","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"W","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"G","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"H","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"I","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"J","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"M","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"N","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"P","instanceClass":null,"abstract":false,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Q","instanceClass":null,"abstract":false,"id":15,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"R","instanceClass":null,"abstract":false,"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":"bs","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":"cs","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":"ds","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":"fs","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":"es","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":"nested","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"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"gs","changeable":true,"resolveProxies":true,"lowerBound":0,"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":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"e","changeable":true,"resolveProxies":true,"lowerBound":0,"id":34,"derived":false},{"id":35,"eClass":"EGenericType"},{"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":"js","changeable":true,"resolveProxies":true,"lowerBound":0,"id":38,"derived":false},{"id":39,"eClass":"EGenericType"},{"id":40,"eClass":"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":41,"derived":false},{"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":"hs","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":"is","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":"qs","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":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"eh","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":"q","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":true,"unsettable":false,"transient":false,"unique":true,"name":"r","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"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"ps","changeable":true,"resolveProxies":true,"lowerBound":0,"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":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"h","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":"linkName","changeable":true,"lowerBound":0,"iD":false,"id":61,"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":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":true,"unsettable":false,"transient":false,"unique":true,"name":"as","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":true,"unsettable":false,"transient":false,"unique":true,"name":"ns","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"},{"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":"qs","changeable":true,"resolveProxies":true,"lowerBound":0,"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":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"p","changeable":true,"resolveProxies":true,"lowerBound":0,"id":77,"derived":false},{"id":78,"eClass":"EGenericType"},{"id":79,"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":7},{"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":17,"target":2},{"source":17,"target":24},{"source":17,"target":1},{"source":24,"target":2},{"source":18,"target":3},{"source":18,"target":25},{"source":18,"target":1},{"source":25,"target":3},{"source":19,"target":4},{"source":19,"target":26},{"source":19,"target":1},{"source":26,"target":4},{"source":20,"target":6},{"source":20,"target":27},{"source":20,"target":1},{"source":27,"target":6},{"source":21,"target":5},{"source":21,"target":28},{"source":21,"target":1},{"source":28,"target":5},{"source":22,"target":1},{"source":22,"target":29},{"source":22,"target":1},{"source":29,"target":1},{"source":23,"target":7},{"source":2,"target":0},{"source":2,"target":7},{"source":2,"target":30},{"source":30,"target":7},{"source":3,"target":0},{"source":3,"target":7},{"source":3,"target":31},{"source":3,"target":32},{"source":31,"target":8},{"source":31,"target":33},{"source":31,"target":3},{"source":33,"target":8},{"source":32,"target":7},{"source":4,"target":0},{"source":4,"target":7},{"source":4,"target":34},{"source":4,"target":35},{"source":34,"target":5},{"source":34,"target":36},{"source":34,"target":4},{"source":36,"target":5},{"source":35,"target":7},{"source":5,"target":0},{"source":5,"target":7},{"source":5,"target":37},{"source":37,"target":7},{"source":6,"target":0},{"source":6,"target":7},{"source":6,"target":38},{"source":6,"target":39},{"source":38,"target":11},{"source":38,"target":40},{"source":38,"target":6},{"source":40,"target":11},{"source":39,"target":7},{"source":7,"target":0},{"source":7,"target":41},{"source":41,"target":42},{"source":41,"target":7},{"source":8,"target":0},{"source":8,"target":7},{"source":8,"target":43},{"source":8,"target":44},{"source":8,"target":45},{"source":8,"target":46},{"source":43,"target":9},{"source":43,"target":47},{"source":43,"target":8},{"source":47,"target":9},{"source":44,"target":10},{"source":44,"target":48},{"source":44,"target":8},{"source":48,"target":10},{"source":45,"target":15},{"source":45,"target":49},{"source":45,"target":8},{"source":49,"target":15},{"source":46,"target":7},{"source":9,"target":0},{"source":9,"target":7},{"source":9,"target":50},{"source":9,"target":51},{"source":9,"target":52},{"source":9,"target":53},{"source":50,"target":5},{"source":50,"target":54},{"source":50,"target":9},{"source":54,"target":5},{"source":51,"target":15},{"source":51,"target":55},{"source":51,"target":9},{"source":55,"target":15},{"source":52,"target":16},{"source":52,"target":56},{"source":52,"target":9},{"source":56,"target":16},{"source":53,"target":7},{"source":10,"target":0},{"source":10,"target":7},{"source":10,"target":57},{"source":10,"target":58},{"source":57,"target":14},{"source":57,"target":59},{"source":57,"target":10},{"source":59,"target":14},{"source":58,"target":7},{"source":11,"target":0},{"source":11,"target":7},{"source":11,"target":60},{"source":11,"target":61},{"source":11,"target":62},{"source":11,"target":63},{"source":60,"target":9},{"source":60,"target":64},{"source":60,"target":11},{"source":64,"target":9},{"source":61,"target":65},{"source":61,"target":11},{"source":62,"target":66},{"source":62,"target":11},{"source":63,"target":7},{"source":12,"target":0},{"source":12,"target":7},{"source":12,"target":67},{"source":12,"target":68},{"source":12,"target":69},{"source":67,"target":1},{"source":67,"target":70},{"source":67,"target":12},{"source":70,"target":1},{"source":68,"target":13},{"source":68,"target":71},{"source":68,"target":12},{"source":71,"target":13},{"source":69,"target":7},{"source":13,"target":0},{"source":13,"target":7},{"source":13,"target":72},{"source":72,"target":7},{"source":14,"target":0},{"source":14,"target":7},{"source":14,"target":73},{"source":14,"target":74},{"source":73,"target":15},{"source":73,"target":75},{"source":73,"target":14},{"source":75,"target":15},{"source":74,"target":7},{"source":15,"target":0},{"source":15,"target":7},{"source":15,"target":76},{"source":76,"target":7},{"source":16,"target":0},{"source":16,"target":7},{"source":16,"target":77},{"source":16,"target":78},{"source":77,"target":14},{"source":77,"target":79},{"source":77,"target":16},{"source":79,"target":14},{"source":78,"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="AddParameterTest"> <eClassifiers xsi:type="ecore:EClass" name="Testclass1"> <eOperations name="testOperation"> <eAnnotations source="marker"/> <eParameters name="theParameter" eType="#//Testclass2"/> </eOperations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Testclass2"/> </ecore:EPackage>
github:ecore:/data/Hu3bl/emf.refactor/org.eclipse.emf.refactor.refactorings.ecore/tests/AddParameter/test_01/target.ecore
ecore
AddParameterTest Testclass1 testOperation theParameter Testclass2
null
{"directed":true,"nodes":[{"nsPrefix":null,"nsURI":null,"name":"AddParameterTest","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Testclass1","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Testclass2","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"ordered":true,"upperBound":1,"unique":true,"name":"testOperation","lowerBound":0,"id":3,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"theParameter","lowerBound":0,"id":4,"many":false,"required":false,"eClass":"EParameter"},{"id":5,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":1,"target":0},{"source":1,"target":3},{"source":3,"target":1},{"source":3,"target":4},{"source":4,"target":2},{"source":4,"target":5},{"source":4,"target":3},{"source":5,"target":2},{"source":2,"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="diamond" nsURI="http://diamond" nsPrefix="diamond"> <eClassifiers xsi:type="ecore:EClass" name="A"/> <eClassifiers xsi:type="ecore:EClass" name="B" eSuperTypes="#//A"/> <eClassifiers xsi:type="ecore:EClass" name="C" eSuperTypes="#//A"/> <eClassifiers xsi:type="ecore:EClass" name="D" eSuperTypes="#//B #//C"/> </ecore:EPackage>
github:ecore:/data/gemoc/ale-lang-compiler/archive/plzoo-testbench-workspace/diamond/src/diamond.ecore
ecore
diamond A B C D
null
{"directed":true,"nodes":[{"nsPrefix":"diamond","nsURI":"http://diamond","name":"diamond","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"A","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"B","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"C","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"D","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"id":5,"eClass":"EGenericType"},{"id":6,"eClass":"EGenericType"},{"id":7,"eClass":"EGenericType"},{"id":8,"eClass":"EGenericType"}],"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":2,"target":1},{"source":2,"target":5},{"source":5,"target":1},{"source":3,"target":0},{"source":3,"target":1},{"source":3,"target":6},{"source":6,"target":1},{"source":4,"target":0},{"source":4,"target":2},{"source":4,"target":3},{"source":4,"target":7},{"source":4,"target":8},{"source":7,"target":2},{"source":8,"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="root"> <eSubpackages name="packageA"> <eClassifiers xsi:type="ecore:EClass" name="ClassB"/> </eSubpackages> <eSubpackages name="PackageX"> <eSubpackages name="PackageY"> <eClassifiers xsi:type="ecore:EClass" name="ClassZ" eSuperTypes="#//packageA/ClassB"/> </eSubpackages> </eSubpackages> </ecore:EPackage>
github:ecore:/data/eclipse/emf.compare/plugins/org.eclipse.emf.compare.tests/src/org/eclipse/emf/compare/tests/merge/data/dependencies/bug_484579/ancestor.ecore
ecore
root packageA ClassB PackageX PackageY ClassZ
null
{"directed":true,"nodes":[{"nsPrefix":null,"nsURI":null,"name":"root","id":0,"eClass":"EPackage"},{"nsPrefix":null,"nsURI":null,"name":"packageA","id":1,"eClass":"EPackage"},{"nsPrefix":null,"nsURI":null,"name":"PackageX","id":2,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ClassB","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"nsPrefix":null,"nsURI":null,"name":"PackageY","id":4,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ClassZ","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"id":6,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":1,"target":3},{"source":1,"target":0},{"source":3,"target":1},{"source":2,"target":4},{"source":2,"target":0},{"source":4,"target":5},{"source":4,"target":2},{"source":5,"target":4},{"source":5,"target":3},{"source":5,"target":6},{"source":6,"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="process" nsURI="http://www.bonitasoft.org/ns/studio/process" nsPrefix="process"> <eClassifiers xsi:type="ecore:EClass" name="AbstractCatchMessageEvent" abstract="true" interface="true" eSuperTypes="#//Element"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="event" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="incomingMessag" eType="#//MessageFlow" eOpposite="#//MessageFlow/target"/> <eStructuralFeatures xsi:type="ecore:EReference" name="correlation" eType="ecore:EClass expression.ecore#//TableExpression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="messageContent" upperBound="-1" eType="ecore:EClass expression.ecore#//Operation" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="AbstractPageFlow" abstract="true" eSuperTypes="#//Element"/> <eClassifiers xsi:type="ecore:EClass" name="AbstractProcess" abstract="true" eSuperTypes="#//Container #//PageFlow #//RecapFlow"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="version" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" defaultValueLiteral="1.0"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="author" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="creationDate" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDate"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="modificationDate" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDate"/> <eStructuralFeatures xsi:type="ecore:EReference" name="datatypes" upperBound="-1" eType="#//DataType" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="connections" upperBound="-1" eType="#//Connection" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="categories" upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="actors" upperBound="-1" eType="#//Actor" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="configurations" upperBound="-1" eType="ecore:EClass configuration.ecore#//Configuration" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="parameters" upperBound="-1" eType="ecore:EClass parameter.ecore#//Parameter" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="AbstractTimerEvent" abstract="true" interface="true" eSuperTypes="#//Element"> <eStructuralFeatures xsi:type="ecore:EReference" name="condition" eType="ecore:EClass expression.ecore#//Expression" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Activity" eSuperTypes="#//FlowElement #//ConnectableElement #//OperationContainer #//MultiInstantiable"> <eStructuralFeatures xsi:type="ecore:EReference" name="BoundaryIntermediateEvents" upperBound="-1" eType="#//BoundaryEvent" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Actor" eSuperTypes="#//Element"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="initiator" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean" defaultValueLiteral="false"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ActorFilter" eSuperTypes="#//Connector"/> <eClassifiers xsi:type="ecore:EClass" name="ANDGateway" eSuperTypes="#//Gateway"/> <eClassifiers xsi:type="ecore:EClass" name="Assignable" abstract="true" interface="true"> <eStructuralFeatures xsi:type="ecore:EReference" name="actor" eType="#//Actor"/> <eStructuralFeatures xsi:type="ecore:EReference" name="filters" upperBound="-1" eType="#//ActorFilter" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Association" eSuperTypes="#//Connection"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="isDirected" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean" defaultValueLiteral="false"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="BooleanType" eSuperTypes="#//DataType"/> <eClassifiers xsi:type="ecore:EClass" name="BoundaryEvent" eSuperTypes="#//Element #//SourceElement"/> <eClassifiers xsi:type="ecore:EClass" name="BoundaryMessageEvent" eSuperTypes="#//BoundaryEvent #//AbstractCatchMessageEvent"/> <eClassifiers xsi:type="ecore:EClass" name="BoundarySignalEvent" eSuperTypes="#//BoundaryEvent #//SignalEvent"/> <eClassifiers xsi:type="ecore:EClass" name="BoundaryTimerEvent" eSuperTypes="#//BoundaryEvent #//AbstractTimerEvent"/> <eClassifiers xsi:type="ecore:EClass" name="BusinessObjectData" eSuperTypes="#//JavaObjectData"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="businessDataRepositoryId" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="createNewInstance" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean" defaultValueLiteral="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="eClassName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="BusinessObjectType" eSuperTypes="#//DataType"/> <eClassifiers xsi:type="ecore:EClass" name="CallActivity" eSuperTypes="#//Activity"> <eStructuralFeatures xsi:type="ecore:EReference" name="inputMappings" upperBound="-1" eType="#//InputMapping" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="outputMappings" upperBound="-1" eType="#//OutputMapping" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="calledActivityName" eType="ecore:EClass expression.ecore#//Expression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="calledActivityVersion" eType="ecore:EClass expression.ecore#//Expression" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CatchLinkEvent" eSuperTypes="#//LinkEvent"> <eStructuralFeatures xsi:type="ecore:EReference" name="from" upperBound="-1" eType="#//ThrowLinkEvent" eOpposite="#//ThrowLinkEvent/to"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CatchMessageEvent" abstract="true" interface="true" eSuperTypes="#//MessageEvent #//AbstractCatchMessageEvent #//DataAware"/> <eClassifiers xsi:type="ecore:EClass" name="CatchSignalEvent" abstract="true" interface="true" eSuperTypes="#//SignalEvent"/> <eClassifiers xsi:type="ecore:EClass" name="ConnectableElement" eSuperTypes="#//Element #//DataAware"> <eStructuralFeatures xsi:type="ecore:EReference" name="connectors" upperBound="-1" eType="#//Connector" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="kpis" upperBound="-1" eType="ecore:EClass kpi.ecore#//AbstractKPIBinding" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Connector" eSuperTypes="#//Element"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="definitionId" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" defaultValueLiteral=""/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="event" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="ignoreErrors" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean" defaultValueLiteral="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="ignoreErrors -> ignore error&#xD;&#xA;!ignoreError &amp;&amp; throwErrorEvent -> throwErrorEvent&#xD;&#xA;!ignoreError &amp;&amp; !throwErrorEvent -> raise exception"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="throwErrorEvent" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean" defaultValueLiteral="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="It will be used only if !ignoreErrors"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="namedError" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" defaultValueLiteral=""> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="It will be used only if !ignoreErrors &amp;&amp; throwErrorEvent"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="definitionVersion" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="configuration" eType="ecore:EClass connector-configuration.ecore#//ConnectorConfiguration" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="outputs" upperBound="-1" eType="ecore:EClass expression.ecore#//Operation" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="CorrelationTypeActive"> <eLiterals name="INACTIVE" literal="INACTIVE"/> <eLiterals name="KEYS" value="1" literal="KEYS"/> <eLiterals name="PREDICATES" value="2" literal="PREDICATES"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Not yet implemented"/> </eAnnotations> </eLiterals> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Container" eSuperTypes="#//Element"> <eStructuralFeatures xsi:type="ecore:EReference" name="elements" upperBound="-1" eType="#//Element" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Contract"> <eStructuralFeatures xsi:type="ecore:EReference" name="inputs" upperBound="-1" eType="#//ContractInput" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="constraints" upperBound="-1" eType="#//ContractConstraint" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ContractInputMapping"> <eStructuralFeatures xsi:type="ecore:EReference" name="data" eType="#//Data"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="setterName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="setterParamType" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ContractInput"> <eOperations name="getJavaType" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="body" value="switch(getType()){&#xD;&#xA;case BOOLEAN:return java.lang.Boolean.class.getName();&#xD;&#xA;case DATE: return java.util.Date.class.getName();&#xD;&#xA;case LOCALDATE: return java.time.LocalDate.class.getName();&#xD;&#xA;case LOCALDATETIME: return java.time.LocalDateTime.class.getName();&#xD;&#xA;case OFFSETDATETIME: return java.time.OffsetDateTime.class.getName();&#xD;&#xA;case INTEGER: return java.lang.Integer.class.getName();&#xA;case LONG: return java.lang.Long.class.getName();&#xD;&#xA;case DECIMAL: return java.lang.Double.class.getName();&#xD;&#xA;case FILE:return &quot;org.bonitasoft.engine.bpm.contract.FileInputValue&quot;;&#xD;&#xA;case COMPLEX:return java.util.Map.class.getName();&#xD;&#xA;case TEXT:&#xD;&#xA;default: return java.lang.String.class.getName();&#xD;&#xA;}"/> </eAnnotations> </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="type" eType="#//ContractInputType"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="description" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="multiple" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EReference" name="mapping" eType="#//ContractInputMapping" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="inputs" upperBound="-1" eType="#//ContractInput" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="dataReference" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="createMode" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean" defaultValueLiteral="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ContractConstraint"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="expression" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="errorMessage" 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="inputNames" upperBound="-1" 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="ContractContainer" abstract="true"> <eStructuralFeatures xsi:type="ecore:EReference" name="contract" eType="#//Contract" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="ContractInputType"> <eLiterals name="TEXT"/> <eLiterals name="INTEGER" value="1"/> <eLiterals name="DECIMAL" value="2"/> <eLiterals name="BOOLEAN" value="3"/> <eLiterals name="DATE" value="4" literal="DATE"/> <eLiterals name="COMPLEX" value="5"/> <eLiterals name="FILE" value="6" literal="FILE"/> <eLiterals name="LONG" value="7" literal="LONG"/> <eLiterals name="LOCALDATE" value="8" literal="LOCALDATE"/> <eLiterals name="LOCALDATETIME" value="9" literal="LOCALDATETIME"/> <eLiterals name="OFFSETDATETIME" value="10" literal="OFFSETDATETIME"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Connection" eSuperTypes="#//Element"> <eStructuralFeatures xsi:type="ecore:EReference" name="target" eType="#//TargetElement" eOpposite="#//TargetElement/incoming"/> <eStructuralFeatures xsi:type="ecore:EReference" name="source" eType="#//SourceElement" derived="true" eOpposite="#//SourceElement/outgoing"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Correlation"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="correlationType" lowerBound="1" eType="#//CorrelationTypeActive" defaultValueLiteral="INACTIVE"/> <eStructuralFeatures xsi:type="ecore:EReference" name="correlationAssociation" lowerBound="1" eType="ecore:EClass expression.ecore#//TableExpression" containment="true"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="key is the CorrelationKey"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CorrelationAssociation"> <eStructuralFeatures xsi:type="ecore:EReference" name="CorrelationExpression" eType="ecore:EClass expression.ecore#//AbstractExpression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="correlationKey" eType="ecore:EClass expression.ecore#//AbstractExpression" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Data" eSuperTypes="#//Element"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="generated" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean" defaultValueLiteral="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="multiple" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="transient" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="datasourceId" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" defaultValueLiteral="BOS"/> <eStructuralFeatures xsi:type="ecore:EReference" name="dataType" lowerBound="1" eType="#//DataType"/> <eStructuralFeatures xsi:type="ecore:EReference" name="defaultValue" eType="ecore:EClass expression.ecore#//Expression" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="DataAware"> <eStructuralFeatures xsi:type="ecore:EReference" name="data" upperBound="-1" eType="#//Data" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="DateType" eSuperTypes="#//StringType"/> <eClassifiers xsi:type="ecore:EClass" name="DataType" abstract="true" eSuperTypes="#//Element"/> <eClassifiers xsi:type="ecore:EClass" name="Document" eSuperTypes="#//Element"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="defaultValueIdOfDocumentStore" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="mimeType" eType="ecore:EClass expression.ecore#//Expression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="url" eType="ecore:EClass expression.ecore#//Expression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="documentType" lowerBound="1" eType="#//DocumentType" defaultValueLiteral="NONE"/> <eStructuralFeatures xsi:type="ecore:EReference" name="initialMultipleContent" eType="ecore:EClass expression.ecore#//Expression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="multiple" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EReference" name="contractInput" eType="#//ContractInput"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="DocumentType"> <eLiterals name="NONE"/> <eLiterals name="INTERNAL" value="1"/> <eLiterals name="EXTERNAL" value="2"/> <eLiterals name="CONTRACT" value="3" literal="CONTRACT"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="DoubleType" eSuperTypes="#//DataType"/> <eClassifiers xsi:type="ecore:EClass" name="Element" abstract="true" interface="true"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="documentation" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" defaultValueLiteral=""/> <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:EReference" name="textAnnotationAttachment" upperBound="-1" eType="#//TextAnnotationAttachment" containment="true" eOpposite="#//TextAnnotationAttachment/target"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Event" eSuperTypes="#//FlowElement"/> <eClassifiers xsi:type="ecore:EClass" name="EndErrorEvent" eSuperTypes="#//Event #//ErrorEvent"/> <eClassifiers xsi:type="ecore:EClass" name="EndEvent" eSuperTypes="#//Event"/> <eClassifiers xsi:type="ecore:EClass" name="EndMessageEvent" eSuperTypes="#//ThrowMessageEvent"/> <eClassifiers xsi:type="ecore:EClass" name="EndSignalEvent" eSuperTypes="#//ThrowSignalEvent #//Event"/> <eClassifiers xsi:type="ecore:EClass" name="EndTerminatedEvent" eSuperTypes="#//Event"/> <eClassifiers xsi:type="ecore:EClass" name="ErrorEvent" abstract="true" interface="true"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="errorCode" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="EnumType" eSuperTypes="#//DataType"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="literals" upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="FloatType" eSuperTypes="#//DataType"/> <eClassifiers xsi:type="ecore:EClass" name="FlowElement" eSuperTypes="#//Element #//SourceElement #//TargetElement"> <eStructuralFeatures xsi:type="ecore:EReference" name="dynamicLabel" eType="ecore:EClass expression.ecore#//Expression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="dynamicDescription" eType="ecore:EClass expression.ecore#//Expression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="stepSummary" eType="ecore:EClass expression.ecore#//Expression" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="FormMapping"> <eStructuralFeatures xsi:type="ecore:EReference" name="targetForm" eType="ecore:EClass expression.ecore#//Expression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="type" eType="#//FormMappingType" defaultValueLiteral="INTERNAL"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="url" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="FormMappingType"> <eLiterals name="INTERNAL"/> <eLiterals name="URL" value="1"/> <eLiterals name="NONE" value="3" literal="NONE"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Gateway" eSuperTypes="#//FlowElement"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="gatewayType" eType="#//GatewayType"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="GatewayType"> <eLiterals name="XOR" literal="XOR"/> <eLiterals name="OR" value="1" literal="OR"/> <eLiterals name="COMPLEX" value="2" literal="COMPLEX"/> <eLiterals name="AND" value="3" literal="AND"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="InclusiveGateway" eSuperTypes="#//Gateway"/> <eClassifiers xsi:type="ecore:EClass" name="InputMapping"> <eStructuralFeatures xsi:type="ecore:EReference" name="processSource" eType="ecore:EClass expression.ecore#//Expression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="subprocessTarget" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="assignationType" lowerBound="1" eType="#//InputMappingAssignationType" defaultValueLiteral="ContractInput"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="InputMappingAssignationType"> <eLiterals name="ContractInput"/> <eLiterals name="Data" value="1"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="IntegerType" eSuperTypes="#//DataType"/> <eClassifiers xsi:type="ecore:EClass" name="IntermediateErrorCatchEvent" eSuperTypes="#//BoundaryEvent #//ErrorEvent"/> <eClassifiers xsi:type="ecore:EClass" name="IntermediateCatchSignalEvent" eSuperTypes="#//CatchSignalEvent #//Event #//DataAware"/> <eClassifiers xsi:type="ecore:EClass" name="IntermediateThrowSignalEvent" eSuperTypes="#//ThrowSignalEvent #//Event"/> <eClassifiers xsi:type="ecore:EClass" name="IntermediateCatchMessageEvent" eSuperTypes="#//CatchMessageEvent"/> <eClassifiers xsi:type="ecore:EClass" name="IntermediateThrowMessageEvent" eSuperTypes="#//ThrowMessageEvent"/> <eClassifiers xsi:type="ecore:EClass" name="IntermediateCatchTimerEvent" eSuperTypes="#//TimerEvent"/> <eClassifiers xsi:type="ecore:EClass" name="JavaObjectData" eSuperTypes="#//Data"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="className" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="JavaType" eSuperTypes="#//DataType"/> <eClassifiers xsi:type="ecore:EClass" name="Lane" eSuperTypes="#//Container #//Assignable"/> <eClassifiers xsi:type="ecore:EClass" name="LinkEvent" eSuperTypes="#//Event"/> <eClassifiers xsi:type="ecore:EClass" name="LongType" eSuperTypes="#//DataType"/> <eClassifiers xsi:type="ecore:EClass" name="MainProcess" eSuperTypes="#//AbstractProcess"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="bonitaVersion" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" defaultValueLiteral=""/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="bonitaModelVersion" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" defaultValueLiteral="5.0"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="includedEntries" upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="messageConnections" upperBound="-1" eType="#//MessageFlow" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="generatedLibs" upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="enableValidation" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean" defaultValueLiteral="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="configId" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EJavaObject"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Message" eSuperTypes="#//Element"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="throwEvent" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" defaultValueLiteral=""/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="ttl" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" defaultValueLiteral="31104000000"/> <eStructuralFeatures xsi:type="ecore:EReference" name="correlation" lowerBound="1" eType="#//Correlation" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="source" eType="#//ThrowMessageEvent" eOpposite="#//ThrowMessageEvent/events"/> <eStructuralFeatures xsi:type="ecore:EReference" name="targetProcessExpression" eType="ecore:EClass expression.ecore#//Expression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="targetElementExpression" eType="ecore:EClass expression.ecore#//Expression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="messageContent" lowerBound="1" eType="ecore:EClass expression.ecore#//TableExpression" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="MessageFlow" eSuperTypes="#//Element"> <eStructuralFeatures xsi:type="ecore:EReference" name="target" lowerBound="1" eType="#//AbstractCatchMessageEvent" eOpposite="#//AbstractCatchMessageEvent/incomingMessag"/> <eStructuralFeatures xsi:type="ecore:EReference" name="source" lowerBound="1" eType="#//ThrowMessageEvent" eOpposite="#//ThrowMessageEvent/outgoingMessages"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="MessageEvent" eSuperTypes="#//Event"/> <eClassifiers xsi:type="ecore:EClass" name="MultiInstantiable" abstract="true"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="type" lowerBound="1" eType="#//MultiInstanceType" defaultValueLiteral="NONE"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="testBefore" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBooleanObject" defaultValueLiteral="false"/> <eStructuralFeatures xsi:type="ecore:EReference" name="loopCondition" eType="ecore:EClass expression.ecore#//Expression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="loopMaximum" eType="ecore:EClass expression.ecore#//Expression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="useCardinality" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean" defaultValueLiteral="false"/> <eStructuralFeatures xsi:type="ecore:EReference" name="cardinalityExpression" eType="ecore:EClass expression.ecore#//Expression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="collectionDataToMultiInstantiate" eType="#//Data"/> <eStructuralFeatures xsi:type="ecore:EReference" name="iteratorExpression" eType="ecore:EClass expression.ecore#//Expression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="outputData" eType="#//Data"/> <eStructuralFeatures xsi:type="ecore:EReference" name="listDataContainingOutputResults" eType="#//Data"/> <eStructuralFeatures xsi:type="ecore:EReference" name="completionCondition" eType="ecore:EClass expression.ecore#//Expression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="storeOutput" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean" defaultValueLiteral="false"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="MultiInstanceType"> <eLiterals name="NONE" literal="NONE"/> <eLiterals name="STANDARD" value="1" literal="STANDARD"/> <eLiterals name="PARALLEL" value="2" literal="PARALLEL"/> <eLiterals name="SEQUENTIAL" value="3" literal="SEQUENTIAL"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="NonInterruptingBoundaryTimerEvent" eSuperTypes="#//BoundaryTimerEvent"/> <eClassifiers xsi:type="ecore:EClass" name="OperationContainer"> <eStructuralFeatures xsi:type="ecore:EReference" name="operations" upperBound="-1" eType="ecore:EClass expression.ecore#//Operation" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="OutputMapping"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="subprocessSource" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="processTarget" eType="#//Data"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="PageFlow" eSuperTypes="#//ConnectableElement #//AbstractPageFlow"> <eStructuralFeatures xsi:type="ecore:EReference" name="formMapping" eType="#//FormMapping" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Pool" eSuperTypes="#//AbstractProcess #//ContractContainer"> <eStructuralFeatures xsi:type="ecore:EReference" name="documents" upperBound="-1" eType="#//Document" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="searchIndexes" upperBound="-1" eType="#//SearchIndex" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="displayName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="additionalResources" upperBound="-1" eType="#//AdditionalResource" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="RecapFlow" abstract="true" interface="true" eSuperTypes="#//AbstractPageFlow"> <eStructuralFeatures xsi:type="ecore:EReference" name="overviewFormMapping" eType="#//FormMapping" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ReceiveTask" eSuperTypes="#//Activity #//CatchMessageEvent"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A ReceiveTask is equivalent to a CatchEvent. The difference will be only graphical."/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="SequenceFlow" eSuperTypes="#//Connection"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="isDefault" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean" defaultValueLiteral="false"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="conditionType" eType="#//SequenceFlowConditionType" defaultValueLiteral="EXPRESSION"/> <eStructuralFeatures xsi:type="ecore:EReference" name="decisionTable" lowerBound="1" eType="#//decision/DecisionTable" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="condition" eType="ecore:EClass expression.ecore#//Expression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="pathToken" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="SequenceFlowConditionType"> <eLiterals name="EXPRESSION" literal="EXPRESSION"/> <eLiterals name="DECISION_TABLE" value="1" literal="DECISION_TABLE"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="SignalEvent" abstract="true" interface="true" eSuperTypes="#//Element"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="signalCode" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="SourceElement" abstract="true" interface="true" eSuperTypes="#//Element"> <eStructuralFeatures xsi:type="ecore:EReference" name="outgoing" upperBound="-1" eType="#//Connection" eOpposite="#//Connection/source"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="StartTimerScriptType"> <eLiterals name="GROOVY" literal="GROOVY"/> <eLiterals name="CUSTOM" value="1" literal="CUSTOM"/> <eLiterals name="YEARLY" value="2" literal="YEARLY"/> <eLiterals name="YEARLY_DAY_OF_MONTH" value="3" literal="YEARLY_DAY_OF_MONTH"/> <eLiterals name="YEARLY_DAY_OF_YEAR" value="4" literal="YEARLY_DAY_OF_YEAR"/> <eLiterals name="MONTHLY" value="5" literal="MONTHLY"/> <eLiterals name="MONTHLY_DAY_NUMBER" value="6" literal="MONTHLY_DAY_NUMBER"/> <eLiterals name="MONTHLY_DAY_OF_WEEK" value="7" literal="MONTHLY_DAY_OF_WEEK"/> <eLiterals name="WEEKLY" value="8" literal="WEEKLY"/> <eLiterals name="DAILY" value="9" literal="DAILY"/> <eLiterals name="HOURLY" value="10" literal="HOURLY"/> <eLiterals name="MINUTELY" value="11" literal="MINUTELY"/> <eLiterals name="CONSTANT" value="12" literal="CONSTANT"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="StringType" eSuperTypes="#//DataType"/> <eClassifiers xsi:type="ecore:EClass" name="ScriptTask" eSuperTypes="#//Activity"/> <eClassifiers xsi:type="ecore:EClass" name="SearchIndex"> <eStructuralFeatures xsi:type="ecore:EReference" name="name" eType="ecore:EClass expression.ecore#//Expression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="value" eType="ecore:EClass expression.ecore#//Expression" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="SendTask" eSuperTypes="#//Activity #//ThrowMessageEvent"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A SendTask is equivalent to a ThrowEvent. the difference will be only graphical"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ServiceTask" eSuperTypes="#//Activity"/> <eClassifiers xsi:type="ecore:EClass" name="StartErrorEvent" eSuperTypes="#//ErrorEvent #//Event"/> <eClassifiers xsi:type="ecore:EClass" name="StartEvent" eSuperTypes="#//Event"/> <eClassifiers xsi:type="ecore:EClass" name="StartMessageEvent" eSuperTypes="#//CatchMessageEvent"/> <eClassifiers xsi:type="ecore:EClass" name="StartSignalEvent" eSuperTypes="#//CatchSignalEvent #//Event #//DataAware"/> <eClassifiers xsi:type="ecore:EClass" name="StartTimerEvent" eSuperTypes="#//TimerEvent"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="from" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDate"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="at" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDate"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="month" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt" defaultValueLiteral="-1"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="day" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt" defaultValueLiteral="-1"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="hours" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt" defaultValueLiteral="-1"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="dayNumber" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt" defaultValueLiteral="-1"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="minutes" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="seconds" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="scriptType" eType="#//StartTimerScriptType" defaultValueLiteral="GROOVY"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="SubProcessEvent" eSuperTypes="#//Container"/> <eClassifiers xsi:type="ecore:EClass" name="Task" eSuperTypes="#//Activity #//PageFlow #//Assignable #//ContractContainer"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="overrideActorsOfTheLane" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean" defaultValueLiteral="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="priority" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt" defaultValueLiteral="2"/> <eStructuralFeatures xsi:type="ecore:EReference" name="expectedDuration" eType="ecore:EClass expression.ecore#//Expression" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="TargetElement" abstract="true" interface="true" eSuperTypes="#//Element"> <eStructuralFeatures xsi:type="ecore:EReference" name="incoming" upperBound="-1" eType="#//Connection" eOpposite="#//Connection/target"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="TextAnnotation" eSuperTypes="#//Element"> <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="TextAnnotationAttachment"> <eStructuralFeatures xsi:type="ecore:EReference" name="source" eType="#//TextAnnotation"/> <eStructuralFeatures xsi:type="ecore:EReference" name="target" eType="#//Element" eOpposite="#//Element/textAnnotationAttachment"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ThrowSignalEvent" abstract="true" interface="true" eSuperTypes="#//SignalEvent"/> <eClassifiers xsi:type="ecore:EClass" name="ThrowLinkEvent" eSuperTypes="#//LinkEvent"> <eStructuralFeatures xsi:type="ecore:EReference" name="to" eType="#//CatchLinkEvent" eOpposite="#//CatchLinkEvent/from"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ThrowMessageEvent" eSuperTypes="#//MessageEvent"> <eStructuralFeatures xsi:type="ecore:EReference" name="events" upperBound="-1" eType="#//Message" containment="true" eOpposite="#//Message/source"/> <eStructuralFeatures xsi:type="ecore:EReference" name="outgoingMessages" upperBound="-1" eType="#//MessageFlow" eOpposite="#//MessageFlow/source"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="TimerEvent" eSuperTypes="#//Event #//AbstractTimerEvent #//DataAware"/> <eClassifiers xsi:type="ecore:EClass" name="XMLData" eSuperTypes="#//Data"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="namespace" 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"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="XMLType" eSuperTypes="#//DataType"/> <eClassifiers xsi:type="ecore:EClass" name="XORGateway" eSuperTypes="#//Gateway"/> <eClassifiers xsi:type="ecore:EClass" name="AdditionalResource"> <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"/> </eClassifiers> <eSubpackages name="decision" nsURI="http://www.bonitasoft.org/ns/studio/process/decision" nsPrefix="decision"> <eClassifiers xsi:type="ecore:EClass" name="DecisionTable"> <eStructuralFeatures xsi:type="ecore:EReference" name="lines" upperBound="-1" eType="#//decision/DecisionTableLine" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="defaultAction" eType="#//decision/DecisionTableAction" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="DecisionTableLine"> <eStructuralFeatures xsi:type="ecore:EReference" name="conditions" upperBound="-1" eType="ecore:EClass expression.ecore#//Expression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="action" eType="#//decision/DecisionTableAction" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="DecisionTableAction" abstract="true"/> <eSubpackages name="transitions" nsURI="http://www.bonitasoft.org/ns/studio/process/decision/transitions" nsPrefix="transitions"> <eClassifiers xsi:type="ecore:EClass" name="TakeTransitionAction" eSuperTypes="#//decision/DecisionTableAction"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="takeTransition" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean" iD="true"/> </eClassifiers> </eSubpackages> </eSubpackages> </ecore:EPackage>
github:ecore:/data/bonitasoft/bonita-studio/bundles/plugins/org.bonitasoft.studio-models/process.ecore
ecore
process AbstractCatchMessageEvent event incomingMessag correlation messageContent AbstractPageFlow AbstractProcess version 1.0 author creationDate modificationDate datatypes connections categories actors configurations parameters AbstractTimerEvent condition Activity BoundaryIntermediateEvents Actor initiator false ActorFilter ANDGateway Assignable actor filters Association isDirected false BooleanType BoundaryEvent BoundaryMessageEvent BoundarySignalEvent BoundaryTimerEvent BusinessObjectData businessDataRepositoryId createNewInstance true eClassName BusinessObjectType CallActivity inputMappings outputMappings calledActivityName calledActivityVersion CatchLinkEvent from CatchMessageEvent CatchSignalEvent ConnectableElement connectors kpis Connector definitionId event ignoreErrors false throwErrorEvent false namedError definitionVersion configuration outputs CorrelationTypeActive INACTIVE INACTIVE KEYS KEYS PREDICATES PREDICATES Container elements Contract inputs constraints ContractInputMapping data setterName setterParamType ContractInput getJavaType name type description multiple mapping inputs dataReference createMode true ContractConstraint expression errorMessage name inputNames description ContractContainer contract ContractInputType TEXT TEXT INTEGER INTEGER DECIMAL DECIMAL BOOLEAN BOOLEAN DATE DATE COMPLEX COMPLEX FILE FILE LONG LONG LOCALDATE LOCALDATE LOCALDATETIME LOCALDATETIME OFFSETDATETIME OFFSETDATETIME Connection target source Correlation correlationType INACTIVE correlationAssociation CorrelationAssociation CorrelationExpression correlationKey Data generated true multiple transient datasourceId BOS dataType defaultValue DataAware data DateType DataType Document defaultValueIdOfDocumentStore mimeType url documentType NONE initialMultipleContent multiple contractInput DocumentType NONE NONE INTERNAL INTERNAL EXTERNAL EXTERNAL CONTRACT CONTRACT DoubleType Element documentation name textAnnotationAttachment Event EndErrorEvent EndEvent EndMessageEvent EndSignalEvent EndTerminatedEvent ErrorEvent errorCode EnumType literals FloatType FlowElement dynamicLabel dynamicDescription stepSummary FormMapping targetForm type INTERNAL url FormMappingType INTERNAL INTERNAL URL URL NONE NONE Gateway gatewayType GatewayType XOR XOR OR OR COMPLEX COMPLEX AND AND InclusiveGateway InputMapping processSource subprocessTarget assignationType ContractInput InputMappingAssignationType ContractInput ContractInput Data Data IntegerType IntermediateErrorCatchEvent IntermediateCatchSignalEvent IntermediateThrowSignalEvent IntermediateCatchMessageEvent IntermediateThrowMessageEvent IntermediateCatchTimerEvent JavaObjectData className JavaType Lane LinkEvent LongType MainProcess bonitaVersion bonitaModelVersion 5.0 includedEntries messageConnections generatedLibs enableValidation true configId Message throwEvent ttl 31104000000 correlation source targetProcessExpression targetElementExpression messageContent MessageFlow target source MessageEvent MultiInstantiable type NONE testBefore false loopCondition loopMaximum useCardinality false cardinalityExpression collectionDataToMultiInstantiate iteratorExpression outputData listDataContainingOutputResults completionCondition storeOutput false MultiInstanceType NONE NONE STANDARD STANDARD PARALLEL PARALLEL SEQUENTIAL SEQUENTIAL NonInterruptingBoundaryTimerEvent OperationContainer operations OutputMapping subprocessSource processTarget PageFlow formMapping Pool documents searchIndexes displayName additionalResources RecapFlow overviewFormMapping ReceiveTask SequenceFlow isDefault false conditionType EXPRESSION decisionTable condition pathToken SequenceFlowConditionType EXPRESSION EXPRESSION DECISION_TABLE DECISION_TABLE SignalEvent signalCode SourceElement outgoing StartTimerScriptType GROOVY GROOVY CUSTOM CUSTOM YEARLY YEARLY YEARLY_DAY_OF_MONTH YEARLY_DAY_OF_MONTH YEARLY_DAY_OF_YEAR YEARLY_DAY_OF_YEAR MONTHLY MONTHLY MONTHLY_DAY_NUMBER MONTHLY_DAY_NUMBER MONTHLY_DAY_OF_WEEK MONTHLY_DAY_OF_WEEK WEEKLY WEEKLY DAILY DAILY HOURLY HOURLY MINUTELY MINUTELY CONSTANT CONSTANT StringType ScriptTask SearchIndex name value SendTask ServiceTask StartErrorEvent StartEvent StartMessageEvent StartSignalEvent StartTimerEvent from at month -1 day -1 hours -1 dayNumber -1 minutes seconds scriptType GROOVY SubProcessEvent Task overrideActorsOfTheLane true priority 2 expectedDuration TargetElement incoming TextAnnotation text TextAnnotationAttachment source target ThrowSignalEvent ThrowLinkEvent to ThrowMessageEvent events outgoingMessages TimerEvent XMLData namespace type XMLType XORGateway AdditionalResource name description decision DecisionTable lines defaultAction DecisionTableLine conditions action DecisionTableAction transitions TakeTransitionAction takeTransition
null
{"directed":true,"nodes":[{"nsPrefix":"process","nsURI":"http://www.bonitasoft.org/ns/studio/process","name":"process","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AbstractCatchMessageEvent","instanceClass":null,"abstract":true,"id":1,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AbstractPageFlow","instanceClass":null,"abstract":true,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AbstractProcess","instanceClass":null,"abstract":true,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AbstractTimerEvent","instanceClass":null,"abstract":true,"id":4,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Activity","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Actor","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ActorFilter","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ANDGateway","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Assignable","instanceClass":null,"abstract":true,"id":9,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Association","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BooleanType","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BoundaryEvent","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BoundaryMessageEvent","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BoundarySignalEvent","instanceClass":null,"abstract":false,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BoundaryTimerEvent","instanceClass":null,"abstract":false,"id":15,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BusinessObjectData","instanceClass":null,"abstract":false,"id":16,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BusinessObjectType","instanceClass":null,"abstract":false,"id":17,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CallActivity","instanceClass":null,"abstract":false,"id":18,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CatchLinkEvent","instanceClass":null,"abstract":false,"id":19,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CatchMessageEvent","instanceClass":null,"abstract":true,"id":20,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CatchSignalEvent","instanceClass":null,"abstract":true,"id":21,"interface":true,"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":"Connector","instanceClass":null,"abstract":false,"id":23,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"CorrelationTypeActive","instanceClass":null,"id":24,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Container","instanceClass":null,"abstract":false,"id":25,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Contract","instanceClass":null,"abstract":false,"id":26,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ContractInputMapping","instanceClass":null,"abstract":false,"id":27,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ContractInput","instanceClass":null,"abstract":false,"id":28,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ContractConstraint","instanceClass":null,"abstract":false,"id":29,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ContractContainer","instanceClass":null,"abstract":true,"id":30,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"ContractInputType","instanceClass":null,"id":31,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Connection","instanceClass":null,"abstract":false,"id":32,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Correlation","instanceClass":null,"abstract":false,"id":33,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CorrelationAssociation","instanceClass":null,"abstract":false,"id":34,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Data","instanceClass":null,"abstract":false,"id":35,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DataAware","instanceClass":null,"abstract":false,"id":36,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DateType","instanceClass":null,"abstract":false,"id":37,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DataType","instanceClass":null,"abstract":true,"id":38,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Document","instanceClass":null,"abstract":false,"id":39,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"DocumentType","instanceClass":null,"id":40,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DoubleType","instanceClass":null,"abstract":false,"id":41,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Element","instanceClass":null,"abstract":true,"id":42,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Event","instanceClass":null,"abstract":false,"id":43,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EndErrorEvent","instanceClass":null,"abstract":false,"id":44,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EndEvent","instanceClass":null,"abstract":false,"id":45,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EndMessageEvent","instanceClass":null,"abstract":false,"id":46,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EndSignalEvent","instanceClass":null,"abstract":false,"id":47,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EndTerminatedEvent","instanceClass":null,"abstract":false,"id":48,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ErrorEvent","instanceClass":null,"abstract":true,"id":49,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EnumType","instanceClass":null,"abstract":false,"id":50,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FloatType","instanceClass":null,"abstract":false,"id":51,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FlowElement","instanceClass":null,"abstract":false,"id":52,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FormMapping","instanceClass":null,"abstract":false,"id":53,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"FormMappingType","instanceClass":null,"id":54,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Gateway","instanceClass":null,"abstract":false,"id":55,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"GatewayType","instanceClass":null,"id":56,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InclusiveGateway","instanceClass":null,"abstract":false,"id":57,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InputMapping","instanceClass":null,"abstract":false,"id":58,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"InputMappingAssignationType","instanceClass":null,"id":59,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IntegerType","instanceClass":null,"abstract":false,"id":60,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IntermediateErrorCatchEvent","instanceClass":null,"abstract":false,"id":61,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IntermediateCatchSignalEvent","instanceClass":null,"abstract":false,"id":62,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IntermediateThrowSignalEvent","instanceClass":null,"abstract":false,"id":63,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IntermediateCatchMessageEvent","instanceClass":null,"abstract":false,"id":64,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IntermediateThrowMessageEvent","instanceClass":null,"abstract":false,"id":65,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IntermediateCatchTimerEvent","instanceClass":null,"abstract":false,"id":66,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"JavaObjectData","instanceClass":null,"abstract":false,"id":67,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"JavaType","instanceClass":null,"abstract":false,"id":68,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Lane","instanceClass":null,"abstract":false,"id":69,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LinkEvent","instanceClass":null,"abstract":false,"id":70,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LongType","instanceClass":null,"abstract":false,"id":71,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MainProcess","instanceClass":null,"abstract":false,"id":72,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Message","instanceClass":null,"abstract":false,"id":73,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MessageFlow","instanceClass":null,"abstract":false,"id":74,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MessageEvent","instanceClass":null,"abstract":false,"id":75,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MultiInstantiable","instanceClass":null,"abstract":true,"id":76,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"MultiInstanceType","instanceClass":null,"id":77,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NonInterruptingBoundaryTimerEvent","instanceClass":null,"abstract":false,"id":78,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OperationContainer","instanceClass":null,"abstract":false,"id":79,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OutputMapping","instanceClass":null,"abstract":false,"id":80,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PageFlow","instanceClass":null,"abstract":false,"id":81,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Pool","instanceClass":null,"abstract":false,"id":82,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RecapFlow","instanceClass":null,"abstract":true,"id":83,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ReceiveTask","instanceClass":null,"abstract":false,"id":84,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SequenceFlow","instanceClass":null,"abstract":false,"id":85,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"SequenceFlowConditionType","instanceClass":null,"id":86,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SignalEvent","instanceClass":null,"abstract":true,"id":87,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SourceElement","instanceClass":null,"abstract":true,"id":88,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"StartTimerScriptType","instanceClass":null,"id":89,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StringType","instanceClass":null,"abstract":false,"id":90,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ScriptTask","instanceClass":null,"abstract":false,"id":91,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SearchIndex","instanceClass":null,"abstract":false,"id":92,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SendTask","instanceClass":null,"abstract":false,"id":93,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ServiceTask","instanceClass":null,"abstract":false,"id":94,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StartErrorEvent","instanceClass":null,"abstract":false,"id":95,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StartEvent","instanceClass":null,"abstract":false,"id":96,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StartMessageEvent","instanceClass":null,"abstract":false,"id":97,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StartSignalEvent","instanceClass":null,"abstract":false,"id":98,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StartTimerEvent","instanceClass":null,"abstract":false,"id":99,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SubProcessEvent","instanceClass":null,"abstract":false,"id":100,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Task","instanceClass":null,"abstract":false,"id":101,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TargetElement","instanceClass":null,"abstract":true,"id":102,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TextAnnotation","instanceClass":null,"abstract":false,"id":103,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TextAnnotationAttachment","instanceClass":null,"abstract":false,"id":104,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ThrowSignalEvent","instanceClass":null,"abstract":true,"id":105,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ThrowLinkEvent","instanceClass":null,"abstract":false,"id":106,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ThrowMessageEvent","instanceClass":null,"abstract":false,"id":107,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TimerEvent","instanceClass":null,"abstract":false,"id":108,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"XMLData","instanceClass":null,"abstract":false,"id":109,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"XMLType","instanceClass":null,"abstract":false,"id":110,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"XORGateway","instanceClass":null,"abstract":false,"id":111,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AdditionalResource","instanceClass":null,"abstract":false,"id":112,"interface":false,"eClass":"EClass"},{"nsPrefix":"decision","nsURI":"http://www.bonitasoft.org/ns/studio/process/decision","name":"decision","id":113,"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":"event","changeable":true,"lowerBound":0,"iD":false,"id":114,"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":"incomingMessag","changeable":true,"resolveProxies":true,"lowerBound":0,"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":"correlation","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":"messageContent","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":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"target","changeable":true,"resolveProxies":true,"lowerBound":1,"id":121,"derived":false},{"id":122,"eClass":"EGenericType"},{"id":123,"eClass":"EGenericType"},{"id":124,"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":"version","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":"author","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":"creationDate","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":"modificationDate","changeable":true,"lowerBound":0,"iD":false,"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":"datatypes","changeable":true,"resolveProxies":true,"lowerBound":0,"id":129,"derived":false},{"container":false,"ordered":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":130,"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":"categories","changeable":true,"lowerBound":0,"iD":false,"id":131,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"actors","changeable":true,"resolveProxies":true,"lowerBound":0,"id":132,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"configurations","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":true,"unsettable":false,"transient":false,"unique":true,"name":"parameters","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"},{"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"},{"id":147,"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":148,"derived":false},{"id":149,"eClass":"EGenericType"},{"id":150,"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":"BoundaryIntermediateEvents","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"},{"id":156,"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":"initiator","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"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"actor","changeable":true,"resolveProxies":true,"lowerBound":0,"id":162,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"filters","changeable":true,"resolveProxies":true,"lowerBound":0,"id":163,"derived":false},{"id":164,"eClass":"EGenericType"},{"id":165,"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":"isDirected","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"},{"id":175,"eClass":"EGenericType"},{"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":"businessDataRepositoryId","changeable":true,"lowerBound":0,"iD":false,"id":178,"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":"createNewInstance","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":"eClassName","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"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"inputMappings","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":"outputMappings","changeable":true,"resolveProxies":true,"lowerBound":0,"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":"calledActivityName","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":"calledActivityVersion","changeable":true,"resolveProxies":true,"lowerBound":0,"id":189,"derived":false},{"id":190,"eClass":"EGenericType"},{"id":191,"eClass":"EGenericType"},{"id":192,"eClass":"EGenericType"},{"id":193,"eClass":"EGenericType"},{"id":194,"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":"from","changeable":true,"resolveProxies":true,"lowerBound":0,"id":195,"derived":false},{"id":196,"eClass":"EGenericType"},{"id":197,"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":"to","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":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"connectors","changeable":true,"resolveProxies":true,"lowerBound":0,"id":203,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"kpis","changeable":true,"resolveProxies":true,"lowerBound":0,"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":"","volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"","unsettable":false,"transient":false,"unique":true,"name":"definitionId","changeable":true,"lowerBound":1,"iD":false,"id":209,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"event","changeable":true,"lowerBound":0,"iD":false,"id":210,"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":"ignoreErrors","changeable":true,"lowerBound":0,"iD":false,"id":211,"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":"throwErrorEvent","changeable":true,"lowerBound":1,"iD":false,"id":212,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":"","volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"","unsettable":false,"transient":false,"unique":true,"name":"namedError","changeable":true,"lowerBound":0,"iD":false,"id":213,"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":"definitionVersion","changeable":true,"lowerBound":1,"iD":false,"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":"configuration","changeable":true,"resolveProxies":true,"lowerBound":0,"id":215,"derived":false},{"container":false,"ordered":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":216,"derived":false},{"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"},{"name":"INACTIVE","id":226,"value":0,"literal":"INACTIVE","eClass":"EEnumLiteral"},{"name":"KEYS","id":227,"value":1,"literal":"KEYS","eClass":"EEnumLiteral"},{"name":"PREDICATES","id":228,"value":2,"literal":"PREDICATES","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":"elements","changeable":true,"resolveProxies":true,"lowerBound":0,"id":229,"derived":false},{"id":230,"eClass":"EGenericType"},{"id":231,"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":"inputs","changeable":true,"resolveProxies":true,"lowerBound":0,"id":232,"derived":false},{"container":false,"ordered":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":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":false,"unsettable":false,"transient":false,"unique":true,"name":"data","changeable":true,"resolveProxies":true,"lowerBound":0,"id":236,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"setterName","changeable":true,"lowerBound":0,"iD":false,"id":237,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"setterParamType","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,"unique":true,"name":"getJavaType","lowerBound":0,"id":242,"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":243,"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":244,"derived":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":245,"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":"multiple","changeable":true,"lowerBound":0,"iD":false,"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":"mapping","changeable":true,"resolveProxies":true,"lowerBound":0,"id":247,"derived":false},{"container":false,"ordered":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":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":"dataReference","changeable":true,"lowerBound":0,"iD":false,"id":249,"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":"createMode","changeable":true,"lowerBound":0,"iD":false,"id":250,"derived":false},{"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"},{"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":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":"errorMessage","changeable":true,"lowerBound":0,"iD":false,"id":261,"derived":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":262,"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":"inputNames","changeable":true,"lowerBound":0,"iD":false,"id":263,"derived":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":264,"derived":false},{"id":265,"eClass":"EGenericType"},{"id":266,"eClass":"EGenericType"},{"id":267,"eClass":"EGenericType"},{"id":268,"eClass":"EGenericType"},{"id":269,"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":"contract","changeable":true,"resolveProxies":true,"lowerBound":0,"id":270,"derived":false},{"id":271,"eClass":"EGenericType"},{"name":"TEXT","id":272,"value":0,"literal":"TEXT","eClass":"EEnumLiteral"},{"name":"INTEGER","id":273,"value":1,"literal":"INTEGER","eClass":"EEnumLiteral"},{"name":"DECIMAL","id":274,"value":2,"literal":"DECIMAL","eClass":"EEnumLiteral"},{"name":"BOOLEAN","id":275,"value":3,"literal":"BOOLEAN","eClass":"EEnumLiteral"},{"name":"DATE","id":276,"value":4,"literal":"DATE","eClass":"EEnumLiteral"},{"name":"COMPLEX","id":277,"value":5,"literal":"COMPLEX","eClass":"EEnumLiteral"},{"name":"FILE","id":278,"value":6,"literal":"FILE","eClass":"EEnumLiteral"},{"name":"LONG","id":279,"value":7,"literal":"LONG","eClass":"EEnumLiteral"},{"name":"LOCALDATE","id":280,"value":8,"literal":"LOCALDATE","eClass":"EEnumLiteral"},{"name":"LOCALDATETIME","id":281,"value":9,"literal":"LOCALDATETIME","eClass":"EEnumLiteral"},{"name":"OFFSETDATETIME","id":282,"value":10,"literal":"OFFSETDATETIME","eClass":"EEnumLiteral"},{"container":false,"ordered":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":283,"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":"source","changeable":true,"resolveProxies":true,"lowerBound":0,"id":284,"derived":true},{"id":285,"eClass":"EGenericType"},{"id":286,"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":287,"derived":false},{"id":288,"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":"outgoing","changeable":true,"resolveProxies":true,"lowerBound":0,"id":289,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"INACTIVE","unsettable":false,"transient":false,"unique":true,"name":"correlationType","changeable":true,"lowerBound":1,"iD":false,"id":290,"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":"correlationAssociation","changeable":true,"resolveProxies":true,"lowerBound":1,"id":291,"derived":false},{"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":"CorrelationExpression","changeable":true,"resolveProxies":true,"lowerBound":0,"id":294,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"correlationKey","changeable":true,"resolveProxies":true,"lowerBound":0,"id":295,"derived":false},{"id":296,"eClass":"EGenericType"},{"id":297,"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":"generated","changeable":true,"lowerBound":0,"iD":false,"id":298,"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":"multiple","changeable":true,"lowerBound":0,"iD":false,"id":299,"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":300,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":"BOS","volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"BOS","unsettable":false,"transient":false,"unique":true,"name":"datasourceId","changeable":true,"lowerBound":1,"iD":false,"id":301,"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":302,"derived":false},{"container":false,"ordered":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":303,"derived":false},{"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"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"data","changeable":true,"resolveProxies":true,"lowerBound":0,"id":311,"derived":false},{"id":312,"eClass":"EGenericType"},{"id":313,"eClass":"EGenericType"},{"id":314,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"defaultValueIdOfDocumentStore","changeable":true,"lowerBound":0,"iD":false,"id":315,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"mimeType","changeable":true,"resolveProxies":true,"lowerBound":0,"id":316,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"url","changeable":true,"resolveProxies":true,"lowerBound":0,"id":317,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"NONE","unsettable":false,"transient":false,"unique":true,"name":"documentType","changeable":true,"lowerBound":1,"iD":false,"id":318,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"initialMultipleContent","changeable":true,"resolveProxies":true,"lowerBound":0,"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":"multiple","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":false,"unsettable":false,"transient":false,"unique":true,"name":"contractInput","changeable":true,"resolveProxies":true,"lowerBound":0,"id":321,"derived":false},{"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"},{"name":"NONE","id":330,"value":0,"literal":"NONE","eClass":"EEnumLiteral"},{"name":"INTERNAL","id":331,"value":1,"literal":"INTERNAL","eClass":"EEnumLiteral"},{"name":"EXTERNAL","id":332,"value":2,"literal":"EXTERNAL","eClass":"EEnumLiteral"},{"name":"CONTRACT","id":333,"value":3,"literal":"CONTRACT","eClass":"EEnumLiteral"},{"id":334,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":"","volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"","unsettable":false,"transient":false,"unique":true,"name":"documentation","changeable":true,"lowerBound":0,"iD":false,"id":335,"derived":false},{"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":336,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"textAnnotationAttachment","changeable":true,"resolveProxies":true,"lowerBound":0,"id":337,"derived":false},{"id":338,"eClass":"EGenericType"},{"id":339,"eClass":"EGenericType"},{"id":340,"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":"target","changeable":true,"resolveProxies":true,"lowerBound":0,"id":341,"derived":false},{"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"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"errorCode","changeable":true,"lowerBound":0,"iD":false,"id":350,"derived":false},{"id":351,"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":"literals","changeable":true,"lowerBound":0,"iD":false,"id":352,"derived":false},{"id":353,"eClass":"EGenericType"},{"id":354,"eClass":"EGenericType"},{"id":355,"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":"dynamicLabel","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":true,"unsettable":false,"transient":false,"unique":true,"name":"dynamicDescription","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":true,"unsettable":false,"transient":false,"unique":true,"name":"stepSummary","changeable":true,"resolveProxies":true,"lowerBound":0,"id":358,"derived":false},{"id":359,"eClass":"EGenericType"},{"id":360,"eClass":"EGenericType"},{"id":361,"eClass":"EGenericType"},{"id":362,"eClass":"EGenericType"},{"id":363,"eClass":"EGenericType"},{"id":364,"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":"targetForm","changeable":true,"resolveProxies":true,"lowerBound":0,"id":365,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"INTERNAL","unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"lowerBound":0,"iD":false,"id":366,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"url","changeable":true,"lowerBound":0,"iD":false,"id":367,"derived":false},{"id":368,"eClass":"EGenericType"},{"id":369,"eClass":"EGenericType"},{"id":370,"eClass":"EGenericType"},{"name":"INTERNAL","id":371,"value":0,"literal":"INTERNAL","eClass":"EEnumLiteral"},{"name":"URL","id":372,"value":1,"literal":"URL","eClass":"EEnumLiteral"},{"name":"NONE","id":373,"value":3,"literal":"NONE","eClass":"EEnumLiteral"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"gatewayType","changeable":true,"lowerBound":0,"iD":false,"id":374,"derived":false},{"id":375,"eClass":"EGenericType"},{"id":376,"eClass":"EGenericType"},{"name":"XOR","id":377,"value":0,"literal":"XOR","eClass":"EEnumLiteral"},{"name":"OR","id":378,"value":1,"literal":"OR","eClass":"EEnumLiteral"},{"name":"COMPLEX","id":379,"value":2,"literal":"COMPLEX","eClass":"EEnumLiteral"},{"name":"AND","id":380,"value":3,"literal":"AND","eClass":"EEnumLiteral"},{"id":381,"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":"processSource","changeable":true,"resolveProxies":true,"lowerBound":0,"id":382,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"subprocessTarget","changeable":true,"lowerBound":0,"iD":false,"id":383,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"ContractInput","unsettable":false,"transient":false,"unique":true,"name":"assignationType","changeable":true,"lowerBound":1,"iD":false,"id":384,"derived":false},{"id":385,"eClass":"EGenericType"},{"id":386,"eClass":"EGenericType"},{"id":387,"eClass":"EGenericType"},{"name":"ContractInput","id":388,"value":0,"literal":"ContractInput","eClass":"EEnumLiteral"},{"name":"Data","id":389,"value":1,"literal":"Data","eClass":"EEnumLiteral"},{"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"},{"id":397,"eClass":"EGenericType"},{"id":398,"eClass":"EGenericType"},{"id":399,"eClass":"EGenericType"},{"id":400,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"className","changeable":true,"lowerBound":0,"iD":false,"id":401,"derived":false},{"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"},{"ordered":true,"upperBound":1,"defaultValue":"","volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"","unsettable":false,"transient":false,"unique":true,"name":"bonitaVersion","changeable":true,"lowerBound":1,"iD":false,"id":409,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":"5.0","volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"5.0","unsettable":false,"transient":false,"unique":true,"name":"bonitaModelVersion","changeable":true,"lowerBound":0,"iD":false,"id":410,"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":"includedEntries","changeable":true,"lowerBound":0,"iD":false,"id":411,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"messageConnections","changeable":true,"resolveProxies":true,"lowerBound":0,"id":412,"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":"generatedLibs","changeable":true,"lowerBound":0,"iD":false,"id":413,"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":"enableValidation","changeable":true,"lowerBound":0,"iD":false,"id":414,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"configId","changeable":true,"lowerBound":0,"iD":false,"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"},{"ordered":true,"upperBound":1,"defaultValue":"","volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"","unsettable":false,"transient":false,"unique":true,"name":"throwEvent","changeable":true,"lowerBound":1,"iD":false,"id":424,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":"31104000000","volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"31104000000","unsettable":false,"transient":false,"unique":true,"name":"ttl","changeable":true,"lowerBound":0,"iD":false,"id":425,"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":"correlation","changeable":true,"resolveProxies":true,"lowerBound":1,"id":426,"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":"source","changeable":true,"resolveProxies":true,"lowerBound":0,"id":427,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"targetProcessExpression","changeable":true,"resolveProxies":true,"lowerBound":0,"id":428,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"targetElementExpression","changeable":true,"resolveProxies":true,"lowerBound":0,"id":429,"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":"messageContent","changeable":true,"resolveProxies":true,"lowerBound":1,"id":430,"derived":false},{"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":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"events","changeable":true,"resolveProxies":true,"lowerBound":0,"id":436,"derived":false},{"id":437,"eClass":"EGenericType"},{"id":438,"eClass":"EGenericType"},{"id":439,"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":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":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"outgoingMessages","changeable":true,"resolveProxies":true,"lowerBound":0,"id":444,"derived":false},{"id":445,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"NONE","unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"lowerBound":1,"iD":false,"id":446,"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":"testBefore","changeable":true,"lowerBound":0,"iD":false,"id":447,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"loopCondition","changeable":true,"resolveProxies":true,"lowerBound":0,"id":448,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"loopMaximum","changeable":true,"resolveProxies":true,"lowerBound":0,"id":449,"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":"useCardinality","changeable":true,"lowerBound":0,"iD":false,"id":450,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"cardinalityExpression","changeable":true,"resolveProxies":true,"lowerBound":0,"id":451,"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":"collectionDataToMultiInstantiate","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":true,"unsettable":false,"transient":false,"unique":true,"name":"iteratorExpression","changeable":true,"resolveProxies":true,"lowerBound":0,"id":453,"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":"outputData","changeable":true,"resolveProxies":true,"lowerBound":0,"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":"listDataContainingOutputResults","changeable":true,"resolveProxies":true,"lowerBound":0,"id":455,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"completionCondition","changeable":true,"resolveProxies":true,"lowerBound":0,"id":456,"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":"storeOutput","changeable":true,"lowerBound":0,"iD":false,"id":457,"derived":false},{"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"},{"name":"NONE","id":470,"value":0,"literal":"NONE","eClass":"EEnumLiteral"},{"name":"STANDARD","id":471,"value":1,"literal":"STANDARD","eClass":"EEnumLiteral"},{"name":"PARALLEL","id":472,"value":2,"literal":"PARALLEL","eClass":"EEnumLiteral"},{"name":"SEQUENTIAL","id":473,"value":3,"literal":"SEQUENTIAL","eClass":"EEnumLiteral"},{"id":474,"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":"operations","changeable":true,"resolveProxies":true,"lowerBound":0,"id":475,"derived":false},{"id":476,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"subprocessSource","changeable":true,"lowerBound":0,"iD":false,"id":477,"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":"processTarget","changeable":true,"resolveProxies":true,"lowerBound":0,"id":478,"derived":false},{"id":479,"eClass":"EGenericType"},{"id":480,"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":"formMapping","changeable":true,"resolveProxies":true,"lowerBound":0,"id":481,"derived":false},{"id":482,"eClass":"EGenericType"},{"id":483,"eClass":"EGenericType"},{"id":484,"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":"documents","changeable":true,"resolveProxies":true,"lowerBound":0,"id":485,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"searchIndexes","changeable":true,"resolveProxies":true,"lowerBound":0,"id":486,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"displayName","changeable":true,"lowerBound":0,"iD":false,"id":487,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"additionalResources","changeable":true,"resolveProxies":true,"lowerBound":0,"id":488,"derived":false},{"id":489,"eClass":"EGenericType"},{"id":490,"eClass":"EGenericType"},{"id":491,"eClass":"EGenericType"},{"id":492,"eClass":"EGenericType"},{"id":493,"eClass":"EGenericType"},{"id":494,"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":"overviewFormMapping","changeable":true,"resolveProxies":true,"lowerBound":0,"id":495,"derived":false},{"id":496,"eClass":"EGenericType"},{"id":497,"eClass":"EGenericType"},{"id":498,"eClass":"EGenericType"},{"id":499,"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":"isDefault","changeable":true,"lowerBound":0,"iD":false,"id":500,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"EXPRESSION","unsettable":false,"transient":false,"unique":true,"name":"conditionType","changeable":true,"lowerBound":0,"iD":false,"id":501,"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":"decisionTable","changeable":true,"resolveProxies":true,"lowerBound":1,"id":502,"derived":false},{"container":false,"ordered":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":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":"pathToken","changeable":true,"lowerBound":0,"iD":false,"id":504,"derived":false},{"id":505,"eClass":"EGenericType"},{"id":506,"eClass":"EGenericType"},{"id":507,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DecisionTable","instanceClass":null,"abstract":false,"id":508,"interface":false,"eClass":"EClass"},{"id":509,"eClass":"EGenericType"},{"id":510,"eClass":"EGenericType"},{"id":511,"eClass":"EGenericType"},{"name":"EXPRESSION","id":512,"value":0,"literal":"EXPRESSION","eClass":"EEnumLiteral"},{"name":"DECISION_TABLE","id":513,"value":1,"literal":"DECISION_TABLE","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":"signalCode","changeable":true,"lowerBound":0,"iD":false,"id":514,"derived":false},{"id":515,"eClass":"EGenericType"},{"id":516,"eClass":"EGenericType"},{"id":517,"eClass":"EGenericType"},{"id":518,"eClass":"EGenericType"},{"name":"GROOVY","id":519,"value":0,"literal":"GROOVY","eClass":"EEnumLiteral"},{"name":"CUSTOM","id":520,"value":1,"literal":"CUSTOM","eClass":"EEnumLiteral"},{"name":"YEARLY","id":521,"value":2,"literal":"YEARLY","eClass":"EEnumLiteral"},{"name":"YEARLY_DAY_OF_MONTH","id":522,"value":3,"literal":"YEARLY_DAY_OF_MONTH","eClass":"EEnumLiteral"},{"name":"YEARLY_DAY_OF_YEAR","id":523,"value":4,"literal":"YEARLY_DAY_OF_YEAR","eClass":"EEnumLiteral"},{"name":"MONTHLY","id":524,"value":5,"literal":"MONTHLY","eClass":"EEnumLiteral"},{"name":"MONTHLY_DAY_NUMBER","id":525,"value":6,"literal":"MONTHLY_DAY_NUMBER","eClass":"EEnumLiteral"},{"name":"MONTHLY_DAY_OF_WEEK","id":526,"value":7,"literal":"MONTHLY_DAY_OF_WEEK","eClass":"EEnumLiteral"},{"name":"WEEKLY","id":527,"value":8,"literal":"WEEKLY","eClass":"EEnumLiteral"},{"name":"DAILY","id":528,"value":9,"literal":"DAILY","eClass":"EEnumLiteral"},{"name":"HOURLY","id":529,"value":10,"literal":"HOURLY","eClass":"EEnumLiteral"},{"name":"MINUTELY","id":530,"value":11,"literal":"MINUTELY","eClass":"EEnumLiteral"},{"name":"CONSTANT","id":531,"value":12,"literal":"CONSTANT","eClass":"EEnumLiteral"},{"id":532,"eClass":"EGenericType"},{"id":533,"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":534,"derived":false},{"container":false,"ordered":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":535,"derived":false},{"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"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"from","changeable":true,"lowerBound":0,"iD":false,"id":548,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"at","changeable":true,"lowerBound":0,"iD":false,"id":549,"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":"month","changeable":true,"lowerBound":0,"iD":false,"id":550,"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":"day","changeable":true,"lowerBound":0,"iD":false,"id":551,"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":"hours","changeable":true,"lowerBound":0,"iD":false,"id":552,"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":"dayNumber","changeable":true,"lowerBound":0,"iD":false,"id":553,"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":"minutes","changeable":true,"lowerBound":0,"iD":false,"id":554,"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":"seconds","changeable":true,"lowerBound":0,"iD":false,"id":555,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"GROOVY","unsettable":false,"transient":false,"unique":true,"name":"scriptType","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"},{"ordered":true,"upperBound":1,"defaultValue":true,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"true","unsettable":false,"transient":false,"unique":true,"name":"overrideActorsOfTheLane","changeable":true,"lowerBound":0,"iD":false,"id":568,"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":"priority","changeable":true,"lowerBound":0,"iD":false,"id":569,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"expectedDuration","changeable":true,"resolveProxies":true,"lowerBound":0,"id":570,"derived":false},{"id":571,"eClass":"EGenericType"},{"id":572,"eClass":"EGenericType"},{"id":573,"eClass":"EGenericType"},{"id":574,"eClass":"EGenericType"},{"id":575,"eClass":"EGenericType"},{"id":576,"eClass":"EGenericType"},{"id":577,"eClass":"EGenericType"},{"id":578,"eClass":"EGenericType"},{"id":579,"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":580,"derived":false},{"id":581,"eClass":"EGenericType"},{"id":582,"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":583,"derived":false},{"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":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":595,"derived":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":596,"derived":false},{"id":597,"eClass":"EGenericType"},{"id":598,"eClass":"EGenericType"},{"id":599,"eClass":"EGenericType"},{"id":600,"eClass":"EGenericType"},{"id":601,"eClass":"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":602,"derived":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":603,"derived":false},{"id":604,"eClass":"EGenericType"},{"id":605,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DecisionTableLine","instanceClass":null,"abstract":false,"id":606,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DecisionTableAction","instanceClass":null,"abstract":true,"id":607,"interface":false,"eClass":"EClass"},{"nsPrefix":"transitions","nsURI":"http://www.bonitasoft.org/ns/studio/process/decision/transitions","name":"transitions","id":608,"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":"lines","changeable":true,"resolveProxies":true,"lowerBound":0,"id":609,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"defaultAction","changeable":true,"resolveProxies":true,"lowerBound":0,"id":610,"derived":false},{"id":611,"eClass":"EGenericType"},{"id":612,"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":"conditions","changeable":true,"resolveProxies":true,"lowerBound":0,"id":613,"derived":false},{"container":false,"ordered":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":614,"derived":false},{"id":615,"eClass":"EGenericType"},{"id":616,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TakeTransitionAction","instanceClass":null,"abstract":false,"id":617,"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":"takeTransition","changeable":true,"lowerBound":0,"iD":true,"id":618,"derived":false},{"id":619,"eClass":"EGenericType"},{"id":620,"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":1,"target":0},{"source":1,"target":42},{"source":1,"target":114},{"source":1,"target":115},{"source":1,"target":116},{"source":1,"target":117},{"source":1,"target":118},{"source":114,"target":119},{"source":114,"target":1},{"source":115,"target":74},{"source":115,"target":120},{"source":115,"target":1},{"source":115,"target":121},{"source":120,"target":74},{"source":116,"target":122},{"source":116,"target":1},{"source":117,"target":123},{"source":117,"target":1},{"source":118,"target":42},{"source":2,"target":0},{"source":2,"target":42},{"source":2,"target":124},{"source":124,"target":42},{"source":3,"target":0},{"source":3,"target":25},{"source":3,"target":81},{"source":3,"target":83},{"source":3,"target":125},{"source":3,"target":126},{"source":3,"target":127},{"source":3,"target":128},{"source":3,"target":129},{"source":3,"target":130},{"source":3,"target":131},{"source":3,"target":132},{"source":3,"target":133},{"source":3,"target":134},{"source":3,"target":135},{"source":3,"target":136},{"source":3,"target":137},{"source":125,"target":138},{"source":125,"target":3},{"source":126,"target":139},{"source":126,"target":3},{"source":127,"target":140},{"source":127,"target":3},{"source":128,"target":141},{"source":128,"target":3},{"source":129,"target":38},{"source":129,"target":142},{"source":129,"target":3},{"source":142,"target":38},{"source":130,"target":32},{"source":130,"target":143},{"source":130,"target":3},{"source":143,"target":32},{"source":131,"target":144},{"source":131,"target":3},{"source":132,"target":6},{"source":132,"target":145},{"source":132,"target":3},{"source":145,"target":6},{"source":133,"target":146},{"source":133,"target":3},{"source":134,"target":147},{"source":134,"target":3},{"source":135,"target":25},{"source":136,"target":81},{"source":137,"target":83},{"source":4,"target":0},{"source":4,"target":42},{"source":4,"target":148},{"source":4,"target":149},{"source":148,"target":150},{"source":148,"target":4},{"source":149,"target":42},{"source":5,"target":0},{"source":5,"target":52},{"source":5,"target":22},{"source":5,"target":79},{"source":5,"target":76},{"source":5,"target":151},{"source":5,"target":152},{"source":5,"target":153},{"source":5,"target":154},{"source":5,"target":155},{"source":151,"target":12},{"source":151,"target":156},{"source":151,"target":5},{"source":156,"target":12},{"source":152,"target":52},{"source":153,"target":22},{"source":154,"target":79},{"source":155,"target":76},{"source":6,"target":0},{"source":6,"target":42},{"source":6,"target":157},{"source":6,"target":158},{"source":157,"target":159},{"source":157,"target":6},{"source":158,"target":42},{"source":7,"target":0},{"source":7,"target":23},{"source":7,"target":160},{"source":160,"target":23},{"source":8,"target":0},{"source":8,"target":55},{"source":8,"target":161},{"source":161,"target":55},{"source":9,"target":0},{"source":9,"target":162},{"source":9,"target":163},{"source":162,"target":6},{"source":162,"target":164},{"source":162,"target":9},{"source":164,"target":6},{"source":163,"target":7},{"source":163,"target":165},{"source":163,"target":9},{"source":165,"target":7},{"source":10,"target":0},{"source":10,"target":32},{"source":10,"target":166},{"source":10,"target":167},{"source":166,"target":168},{"source":166,"target":10},{"source":167,"target":32},{"source":11,"target":0},{"source":11,"target":38},{"source":11,"target":169},{"source":169,"target":38},{"source":12,"target":0},{"source":12,"target":42},{"source":12,"target":88},{"source":12,"target":170},{"source":12,"target":171},{"source":170,"target":42},{"source":171,"target":88},{"source":13,"target":0},{"source":13,"target":12},{"source":13,"target":1},{"source":13,"target":172},{"source":13,"target":173},{"source":172,"target":12},{"source":173,"target":1},{"source":14,"target":0},{"source":14,"target":12},{"source":14,"target":87},{"source":14,"target":174},{"source":14,"target":175},{"source":174,"target":12},{"source":175,"target":87},{"source":15,"target":0},{"source":15,"target":12},{"source":15,"target":4},{"source":15,"target":176},{"source":15,"target":177},{"source":176,"target":12},{"source":177,"target":4},{"source":16,"target":0},{"source":16,"target":67},{"source":16,"target":178},{"source":16,"target":179},{"source":16,"target":180},{"source":16,"target":181},{"source":178,"target":182},{"source":178,"target":16},{"source":179,"target":183},{"source":179,"target":16},{"source":180,"target":184},{"source":180,"target":16},{"source":181,"target":67},{"source":17,"target":0},{"source":17,"target":38},{"source":17,"target":185},{"source":185,"target":38},{"source":18,"target":0},{"source":18,"target":5},{"source":18,"target":186},{"source":18,"target":187},{"source":18,"target":188},{"source":18,"target":189},{"source":18,"target":190},{"source":186,"target":58},{"source":186,"target":191},{"source":186,"target":18},{"source":191,"target":58},{"source":187,"target":80},{"source":187,"target":192},{"source":187,"target":18},{"source":192,"target":80},{"source":188,"target":193},{"source":188,"target":18},{"source":189,"target":194},{"source":189,"target":18},{"source":190,"target":5},{"source":19,"target":0},{"source":19,"target":70},{"source":19,"target":195},{"source":19,"target":196},{"source":195,"target":106},{"source":195,"target":197},{"source":195,"target":19},{"source":195,"target":198},{"source":197,"target":106},{"source":196,"target":70},{"source":20,"target":0},{"source":20,"target":75},{"source":20,"target":1},{"source":20,"target":36},{"source":20,"target":199},{"source":20,"target":200},{"source":20,"target":201},{"source":199,"target":75},{"source":200,"target":1},{"source":201,"target":36},{"source":21,"target":0},{"source":21,"target":87},{"source":21,"target":202},{"source":202,"target":87},{"source":22,"target":0},{"source":22,"target":42},{"source":22,"target":36},{"source":22,"target":203},{"source":22,"target":204},{"source":22,"target":205},{"source":22,"target":206},{"source":203,"target":23},{"source":203,"target":207},{"source":203,"target":22},{"source":207,"target":23},{"source":204,"target":208},{"source":204,"target":22},{"source":205,"target":42},{"source":206,"target":36},{"source":23,"target":0},{"source":23,"target":42},{"source":23,"target":209},{"source":23,"target":210},{"source":23,"target":211},{"source":23,"target":212},{"source":23,"target":213},{"source":23,"target":214},{"source":23,"target":215},{"source":23,"target":216},{"source":23,"target":217},{"source":209,"target":218},{"source":209,"target":23},{"source":210,"target":219},{"source":210,"target":23},{"source":211,"target":220},{"source":211,"target":23},{"source":212,"target":221},{"source":212,"target":23},{"source":213,"target":222},{"source":213,"target":23},{"source":214,"target":223},{"source":214,"target":23},{"source":215,"target":224},{"source":215,"target":23},{"source":216,"target":225},{"source":216,"target":23},{"source":217,"target":42},{"source":24,"target":0},{"source":24,"target":226},{"source":24,"target":227},{"source":24,"target":228},{"source":226,"target":24},{"source":227,"target":24},{"source":228,"target":24},{"source":25,"target":0},{"source":25,"target":42},{"source":25,"target":229},{"source":25,"target":230},{"source":229,"target":42},{"source":229,"target":231},{"source":229,"target":25},{"source":231,"target":42},{"source":230,"target":42},{"source":26,"target":0},{"source":26,"target":232},{"source":26,"target":233},{"source":232,"target":28},{"source":232,"target":234},{"source":232,"target":26},{"source":234,"target":28},{"source":233,"target":29},{"source":233,"target":235},{"source":233,"target":26},{"source":235,"target":29},{"source":27,"target":0},{"source":27,"target":236},{"source":27,"target":237},{"source":27,"target":238},{"source":236,"target":35},{"source":236,"target":239},{"source":236,"target":27},{"source":239,"target":35},{"source":237,"target":240},{"source":237,"target":27},{"source":238,"target":241},{"source":238,"target":27},{"source":28,"target":0},{"source":28,"target":242},{"source":28,"target":243},{"source":28,"target":244},{"source":28,"target":245},{"source":28,"target":246},{"source":28,"target":247},{"source":28,"target":248},{"source":28,"target":249},{"source":28,"target":250},{"source":242,"target":251},{"source":242,"target":28},{"source":243,"target":252},{"source":243,"target":28},{"source":244,"target":31},{"source":244,"target":253},{"source":244,"target":28},{"source":253,"target":31},{"source":245,"target":254},{"source":245,"target":28},{"source":246,"target":255},{"source":246,"target":28},{"source":247,"target":27},{"source":247,"target":256},{"source":247,"target":28},{"source":256,"target":27},{"source":248,"target":28},{"source":248,"target":257},{"source":248,"target":28},{"source":257,"target":28},{"source":249,"target":258},{"source":249,"target":28},{"source":250,"target":259},{"source":250,"target":28},{"source":29,"target":0},{"source":29,"target":260},{"source":29,"target":261},{"source":29,"target":262},{"source":29,"target":263},{"source":29,"target":264},{"source":260,"target":265},{"source":260,"target":29},{"source":261,"target":266},{"source":261,"target":29},{"source":262,"target":267},{"source":262,"target":29},{"source":263,"target":268},{"source":263,"target":29},{"source":264,"target":269},{"source":264,"target":29},{"source":30,"target":0},{"source":30,"target":270},{"source":270,"target":26},{"source":270,"target":271},{"source":270,"target":30},{"source":271,"target":26},{"source":31,"target":0},{"source":31,"target":272},{"source":31,"target":273},{"source":31,"target":274},{"source":31,"target":275},{"source":31,"target":276},{"source":31,"target":277},{"source":31,"target":278},{"source":31,"target":279},{"source":31,"target":280},{"source":31,"target":281},{"source":31,"target":282},{"source":272,"target":31},{"source":273,"target":31},{"source":274,"target":31},{"source":275,"target":31},{"source":276,"target":31},{"source":277,"target":31},{"source":278,"target":31},{"source":279,"target":31},{"source":280,"target":31},{"source":281,"target":31},{"source":282,"target":31},{"source":32,"target":0},{"source":32,"target":42},{"source":32,"target":283},{"source":32,"target":284},{"source":32,"target":285},{"source":283,"target":102},{"source":283,"target":286},{"source":283,"target":32},{"source":283,"target":287},{"source":286,"target":102},{"source":284,"target":88},{"source":284,"target":288},{"source":284,"target":32},{"source":284,"target":289},{"source":288,"target":88},{"source":285,"target":42},{"source":33,"target":0},{"source":33,"target":290},{"source":33,"target":291},{"source":290,"target":24},{"source":290,"target":292},{"source":290,"target":33},{"source":292,"target":24},{"source":291,"target":293},{"source":291,"target":33},{"source":34,"target":0},{"source":34,"target":294},{"source":34,"target":295},{"source":294,"target":296},{"source":294,"target":34},{"source":295,"target":297},{"source":295,"target":34},{"source":35,"target":0},{"source":35,"target":42},{"source":35,"target":298},{"source":35,"target":299},{"source":35,"target":300},{"source":35,"target":301},{"source":35,"target":302},{"source":35,"target":303},{"source":35,"target":304},{"source":298,"target":305},{"source":298,"target":35},{"source":299,"target":306},{"source":299,"target":35},{"source":300,"target":307},{"source":300,"target":35},{"source":301,"target":308},{"source":301,"target":35},{"source":302,"target":38},{"source":302,"target":309},{"source":302,"target":35},{"source":309,"target":38},{"source":303,"target":310},{"source":303,"target":35},{"source":304,"target":42},{"source":36,"target":0},{"source":36,"target":311},{"source":311,"target":35},{"source":311,"target":312},{"source":311,"target":36},{"source":312,"target":35},{"source":37,"target":0},{"source":37,"target":90},{"source":37,"target":313},{"source":313,"target":90},{"source":38,"target":0},{"source":38,"target":42},{"source":38,"target":314},{"source":314,"target":42},{"source":39,"target":0},{"source":39,"target":42},{"source":39,"target":315},{"source":39,"target":316},{"source":39,"target":317},{"source":39,"target":318},{"source":39,"target":319},{"source":39,"target":320},{"source":39,"target":321},{"source":39,"target":322},{"source":315,"target":323},{"source":315,"target":39},{"source":316,"target":324},{"source":316,"target":39},{"source":317,"target":325},{"source":317,"target":39},{"source":318,"target":40},{"source":318,"target":326},{"source":318,"target":39},{"source":326,"target":40},{"source":319,"target":327},{"source":319,"target":39},{"source":320,"target":328},{"source":320,"target":39},{"source":321,"target":28},{"source":321,"target":329},{"source":321,"target":39},{"source":329,"target":28},{"source":322,"target":42},{"source":40,"target":0},{"source":40,"target":330},{"source":40,"target":331},{"source":40,"target":332},{"source":40,"target":333},{"source":330,"target":40},{"source":331,"target":40},{"source":332,"target":40},{"source":333,"target":40},{"source":41,"target":0},{"source":41,"target":38},{"source":41,"target":334},{"source":334,"target":38},{"source":42,"target":0},{"source":42,"target":335},{"source":42,"target":336},{"source":42,"target":337},{"source":335,"target":338},{"source":335,"target":42},{"source":336,"target":339},{"source":336,"target":42},{"source":337,"target":104},{"source":337,"target":340},{"source":337,"target":42},{"source":337,"target":341},{"source":340,"target":104},{"source":43,"target":0},{"source":43,"target":52},{"source":43,"target":342},{"source":342,"target":52},{"source":44,"target":0},{"source":44,"target":43},{"source":44,"target":49},{"source":44,"target":343},{"source":44,"target":344},{"source":343,"target":43},{"source":344,"target":49},{"source":45,"target":0},{"source":45,"target":43},{"source":45,"target":345},{"source":345,"target":43},{"source":46,"target":0},{"source":46,"target":107},{"source":46,"target":346},{"source":346,"target":107},{"source":47,"target":0},{"source":47,"target":105},{"source":47,"target":43},{"source":47,"target":347},{"source":47,"target":348},{"source":347,"target":105},{"source":348,"target":43},{"source":48,"target":0},{"source":48,"target":43},{"source":48,"target":349},{"source":349,"target":43},{"source":49,"target":0},{"source":49,"target":350},{"source":350,"target":351},{"source":350,"target":49},{"source":50,"target":0},{"source":50,"target":38},{"source":50,"target":352},{"source":50,"target":353},{"source":352,"target":354},{"source":352,"target":50},{"source":353,"target":38},{"source":51,"target":0},{"source":51,"target":38},{"source":51,"target":355},{"source":355,"target":38},{"source":52,"target":0},{"source":52,"target":42},{"source":52,"target":88},{"source":52,"target":102},{"source":52,"target":356},{"source":52,"target":357},{"source":52,"target":358},{"source":52,"target":359},{"source":52,"target":360},{"source":52,"target":361},{"source":356,"target":362},{"source":356,"target":52},{"source":357,"target":363},{"source":357,"target":52},{"source":358,"target":364},{"source":358,"target":52},{"source":359,"target":42},{"source":360,"target":88},{"source":361,"target":102},{"source":53,"target":0},{"source":53,"target":365},{"source":53,"target":366},{"source":53,"target":367},{"source":365,"target":368},{"source":365,"target":53},{"source":366,"target":54},{"source":366,"target":369},{"source":366,"target":53},{"source":369,"target":54},{"source":367,"target":370},{"source":367,"target":53},{"source":54,"target":0},{"source":54,"target":371},{"source":54,"target":372},{"source":54,"target":373},{"source":371,"target":54},{"source":372,"target":54},{"source":373,"target":54},{"source":55,"target":0},{"source":55,"target":52},{"source":55,"target":374},{"source":55,"target":375},{"source":374,"target":56},{"source":374,"target":376},{"source":374,"target":55},{"source":376,"target":56},{"source":375,"target":52},{"source":56,"target":0},{"source":56,"target":377},{"source":56,"target":378},{"source":56,"target":379},{"source":56,"target":380},{"source":377,"target":56},{"source":378,"target":56},{"source":379,"target":56},{"source":380,"target":56},{"source":57,"target":0},{"source":57,"target":55},{"source":57,"target":381},{"source":381,"target":55},{"source":58,"target":0},{"source":58,"target":382},{"source":58,"target":383},{"source":58,"target":384},{"source":382,"target":385},{"source":382,"target":58},{"source":383,"target":386},{"source":383,"target":58},{"source":384,"target":59},{"source":384,"target":387},{"source":384,"target":58},{"source":387,"target":59},{"source":59,"target":0},{"source":59,"target":388},{"source":59,"target":389},{"source":388,"target":59},{"source":389,"target":59},{"source":60,"target":0},{"source":60,"target":38},{"source":60,"target":390},{"source":390,"target":38},{"source":61,"target":0},{"source":61,"target":12},{"source":61,"target":49},{"source":61,"target":391},{"source":61,"target":392},{"source":391,"target":12},{"source":392,"target":49},{"source":62,"target":0},{"source":62,"target":21},{"source":62,"target":43},{"source":62,"target":36},{"source":62,"target":393},{"source":62,"target":394},{"source":62,"target":395},{"source":393,"target":21},{"source":394,"target":43},{"source":395,"target":36},{"source":63,"target":0},{"source":63,"target":105},{"source":63,"target":43},{"source":63,"target":396},{"source":63,"target":397},{"source":396,"target":105},{"source":397,"target":43},{"source":64,"target":0},{"source":64,"target":20},{"source":64,"target":398},{"source":398,"target":20},{"source":65,"target":0},{"source":65,"target":107},{"source":65,"target":399},{"source":399,"target":107},{"source":66,"target":0},{"source":66,"target":108},{"source":66,"target":400},{"source":400,"target":108},{"source":67,"target":0},{"source":67,"target":35},{"source":67,"target":401},{"source":67,"target":402},{"source":401,"target":403},{"source":401,"target":67},{"source":402,"target":35},{"source":68,"target":0},{"source":68,"target":38},{"source":68,"target":404},{"source":404,"target":38},{"source":69,"target":0},{"source":69,"target":25},{"source":69,"target":9},{"source":69,"target":405},{"source":69,"target":406},{"source":405,"target":25},{"source":406,"target":9},{"source":70,"target":0},{"source":70,"target":43},{"source":70,"target":407},{"source":407,"target":43},{"source":71,"target":0},{"source":71,"target":38},{"source":71,"target":408},{"source":408,"target":38},{"source":72,"target":0},{"source":72,"target":3},{"source":72,"target":409},{"source":72,"target":410},{"source":72,"target":411},{"source":72,"target":412},{"source":72,"target":413},{"source":72,"target":414},{"source":72,"target":415},{"source":72,"target":416},{"source":409,"target":417},{"source":409,"target":72},{"source":410,"target":418},{"source":410,"target":72},{"source":411,"target":419},{"source":411,"target":72},{"source":412,"target":74},{"source":412,"target":420},{"source":412,"target":72},{"source":420,"target":74},{"source":413,"target":421},{"source":413,"target":72},{"source":414,"target":422},{"source":414,"target":72},{"source":415,"target":423},{"source":415,"target":72},{"source":416,"target":3},{"source":73,"target":0},{"source":73,"target":42},{"source":73,"target":424},{"source":73,"target":425},{"source":73,"target":426},{"source":73,"target":427},{"source":73,"target":428},{"source":73,"target":429},{"source":73,"target":430},{"source":73,"target":431},{"source":424,"target":432},{"source":424,"target":73},{"source":425,"target":433},{"source":425,"target":73},{"source":426,"target":33},{"source":426,"target":434},{"source":426,"target":73},{"source":434,"target":33},{"source":427,"target":107},{"source":427,"target":435},{"source":427,"target":73},{"source":427,"target":436},{"source":435,"target":107},{"source":428,"target":437},{"source":428,"target":73},{"source":429,"target":438},{"source":429,"target":73},{"source":430,"target":439},{"source":430,"target":73},{"source":431,"target":42},{"source":74,"target":0},{"source":74,"target":42},{"source":74,"target":121},{"source":74,"target":440},{"source":74,"target":441},{"source":121,"target":1},{"source":121,"target":442},{"source":121,"target":74},{"source":121,"target":115},{"source":442,"target":1},{"source":440,"target":107},{"source":440,"target":443},{"source":440,"target":74},{"source":440,"target":444},{"source":443,"target":107},{"source":441,"target":42},{"source":75,"target":0},{"source":75,"target":43},{"source":75,"target":445},{"source":445,"target":43},{"source":76,"target":0},{"source":76,"target":446},{"source":76,"target":447},{"source":76,"target":448},{"source":76,"target":449},{"source":76,"target":450},{"source":76,"target":451},{"source":76,"target":452},{"source":76,"target":453},{"source":76,"target":454},{"source":76,"target":455},{"source":76,"target":456},{"source":76,"target":457},{"source":446,"target":77},{"source":446,"target":458},{"source":446,"target":76},{"source":458,"target":77},{"source":447,"target":459},{"source":447,"target":76},{"source":448,"target":460},{"source":448,"target":76},{"source":449,"target":461},{"source":449,"target":76},{"source":450,"target":462},{"source":450,"target":76},{"source":451,"target":463},{"source":451,"target":76},{"source":452,"target":35},{"source":452,"target":464},{"source":452,"target":76},{"source":464,"target":35},{"source":453,"target":465},{"source":453,"target":76},{"source":454,"target":35},{"source":454,"target":466},{"source":454,"target":76},{"source":466,"target":35},{"source":455,"target":35},{"source":455,"target":467},{"source":455,"target":76},{"source":467,"target":35},{"source":456,"target":468},{"source":456,"target":76},{"source":457,"target":469},{"source":457,"target":76},{"source":77,"target":0},{"source":77,"target":470},{"source":77,"target":471},{"source":77,"target":472},{"source":77,"target":473},{"source":470,"target":77},{"source":471,"target":77},{"source":472,"target":77},{"source":473,"target":77},{"source":78,"target":0},{"source":78,"target":15},{"source":78,"target":474},{"source":474,"target":15},{"source":79,"target":0},{"source":79,"target":475},{"source":475,"target":476},{"source":475,"target":79},{"source":80,"target":0},{"source":80,"target":477},{"source":80,"target":478},{"source":477,"target":479},{"source":477,"target":80},{"source":478,"target":35},{"source":478,"target":480},{"source":478,"target":80},{"source":480,"target":35},{"source":81,"target":0},{"source":81,"target":22},{"source":81,"target":2},{"source":81,"target":481},{"source":81,"target":482},{"source":81,"target":483},{"source":481,"target":53},{"source":481,"target":484},{"source":481,"target":81},{"source":484,"target":53},{"source":482,"target":22},{"source":483,"target":2},{"source":82,"target":0},{"source":82,"target":3},{"source":82,"target":30},{"source":82,"target":485},{"source":82,"target":486},{"source":82,"target":487},{"source":82,"target":488},{"source":82,"target":489},{"source":82,"target":490},{"source":485,"target":39},{"source":485,"target":491},{"source":485,"target":82},{"source":491,"target":39},{"source":486,"target":92},{"source":486,"target":492},{"source":486,"target":82},{"source":492,"target":92},{"source":487,"target":493},{"source":487,"target":82},{"source":488,"target":112},{"source":488,"target":494},{"source":488,"target":82},{"source":494,"target":112},{"source":489,"target":3},{"source":490,"target":30},{"source":83,"target":0},{"source":83,"target":2},{"source":83,"target":495},{"source":83,"target":496},{"source":495,"target":53},{"source":495,"target":497},{"source":495,"target":83},{"source":497,"target":53},{"source":496,"target":2},{"source":84,"target":0},{"source":84,"target":5},{"source":84,"target":20},{"source":84,"target":498},{"source":84,"target":499},{"source":498,"target":5},{"source":499,"target":20},{"source":85,"target":0},{"source":85,"target":32},{"source":85,"target":500},{"source":85,"target":501},{"source":85,"target":502},{"source":85,"target":503},{"source":85,"target":504},{"source":85,"target":505},{"source":500,"target":506},{"source":500,"target":85},{"source":501,"target":86},{"source":501,"target":507},{"source":501,"target":85},{"source":507,"target":86},{"source":502,"target":508},{"source":502,"target":509},{"source":502,"target":85},{"source":509,"target":508},{"source":503,"target":510},{"source":503,"target":85},{"source":504,"target":511},{"source":504,"target":85},{"source":505,"target":32},{"source":86,"target":0},{"source":86,"target":512},{"source":86,"target":513},{"source":512,"target":86},{"source":513,"target":86},{"source":87,"target":0},{"source":87,"target":42},{"source":87,"target":514},{"source":87,"target":515},{"source":514,"target":516},{"source":514,"target":87},{"source":515,"target":42},{"source":88,"target":0},{"source":88,"target":42},{"source":88,"target":289},{"source":88,"target":517},{"source":289,"target":32},{"source":289,"target":518},{"source":289,"target":88},{"source":289,"target":284},{"source":518,"target":32},{"source":517,"target":42},{"source":89,"target":0},{"source":89,"target":519},{"source":89,"target":520},{"source":89,"target":521},{"source":89,"target":522},{"source":89,"target":523},{"source":89,"target":524},{"source":89,"target":525},{"source":89,"target":526},{"source":89,"target":527},{"source":89,"target":528},{"source":89,"target":529},{"source":89,"target":530},{"source":89,"target":531},{"source":519,"target":89},{"source":520,"target":89},{"source":521,"target":89},{"source":522,"target":89},{"source":523,"target":89},{"source":524,"target":89},{"source":525,"target":89},{"source":526,"target":89},{"source":527,"target":89},{"source":528,"target":89},{"source":529,"target":89},{"source":530,"target":89},{"source":531,"target":89},{"source":90,"target":0},{"source":90,"target":38},{"source":90,"target":532},{"source":532,"target":38},{"source":91,"target":0},{"source":91,"target":5},{"source":91,"target":533},{"source":533,"target":5},{"source":92,"target":0},{"source":92,"target":534},{"source":92,"target":535},{"source":534,"target":536},{"source":534,"target":92},{"source":535,"target":537},{"source":535,"target":92},{"source":93,"target":0},{"source":93,"target":5},{"source":93,"target":107},{"source":93,"target":538},{"source":93,"target":539},{"source":538,"target":5},{"source":539,"target":107},{"source":94,"target":0},{"source":94,"target":5},{"source":94,"target":540},{"source":540,"target":5},{"source":95,"target":0},{"source":95,"target":49},{"source":95,"target":43},{"source":95,"target":541},{"source":95,"target":542},{"source":541,"target":49},{"source":542,"target":43},{"source":96,"target":0},{"source":96,"target":43},{"source":96,"target":543},{"source":543,"target":43},{"source":97,"target":0},{"source":97,"target":20},{"source":97,"target":544},{"source":544,"target":20},{"source":98,"target":0},{"source":98,"target":21},{"source":98,"target":43},{"source":98,"target":36},{"source":98,"target":545},{"source":98,"target":546},{"source":98,"target":547},{"source":545,"target":21},{"source":546,"target":43},{"source":547,"target":36},{"source":99,"target":0},{"source":99,"target":108},{"source":99,"target":548},{"source":99,"target":549},{"source":99,"target":550},{"source":99,"target":551},{"source":99,"target":552},{"source":99,"target":553},{"source":99,"target":554},{"source":99,"target":555},{"source":99,"target":556},{"source":99,"target":557},{"source":548,"target":558},{"source":548,"target":99},{"source":549,"target":559},{"source":549,"target":99},{"source":550,"target":560},{"source":550,"target":99},{"source":551,"target":561},{"source":551,"target":99},{"source":552,"target":562},{"source":552,"target":99},{"source":553,"target":563},{"source":553,"target":99},{"source":554,"target":564},{"source":554,"target":99},{"source":555,"target":565},{"source":555,"target":99},{"source":556,"target":89},{"source":556,"target":566},{"source":556,"target":99},{"source":566,"target":89},{"source":557,"target":108},{"source":100,"target":0},{"source":100,"target":25},{"source":100,"target":567},{"source":567,"target":25},{"source":101,"target":0},{"source":101,"target":5},{"source":101,"target":81},{"source":101,"target":9},{"source":101,"target":30},{"source":101,"target":568},{"source":101,"target":569},{"source":101,"target":570},{"source":101,"target":571},{"source":101,"target":572},{"source":101,"target":573},{"source":101,"target":574},{"source":568,"target":575},{"source":568,"target":101},{"source":569,"target":576},{"source":569,"target":101},{"source":570,"target":577},{"source":570,"target":101},{"source":571,"target":5},{"source":572,"target":81},{"source":573,"target":9},{"source":574,"target":30},{"source":102,"target":0},{"source":102,"target":42},{"source":102,"target":287},{"source":102,"target":578},{"source":287,"target":32},{"source":287,"target":579},{"source":287,"target":102},{"source":287,"target":283},{"source":579,"target":32},{"source":578,"target":42},{"source":103,"target":0},{"source":103,"target":42},{"source":103,"target":580},{"source":103,"target":581},{"source":580,"target":582},{"source":580,"target":103},{"source":581,"target":42},{"source":104,"target":0},{"source":104,"target":583},{"source":104,"target":341},{"source":583,"target":103},{"source":583,"target":584},{"source":583,"target":104},{"source":584,"target":103},{"source":341,"target":42},{"source":341,"target":585},{"source":341,"target":104},{"source":341,"target":337},{"source":585,"target":42},{"source":105,"target":0},{"source":105,"target":87},{"source":105,"target":586},{"source":586,"target":87},{"source":106,"target":0},{"source":106,"target":70},{"source":106,"target":198},{"source":106,"target":587},{"source":198,"target":19},{"source":198,"target":588},{"source":198,"target":106},{"source":198,"target":195},{"source":588,"target":19},{"source":587,"target":70},{"source":107,"target":0},{"source":107,"target":75},{"source":107,"target":436},{"source":107,"target":444},{"source":107,"target":589},{"source":436,"target":73},{"source":436,"target":590},{"source":436,"target":107},{"source":436,"target":427},{"source":590,"target":73},{"source":444,"target":74},{"source":444,"target":591},{"source":444,"target":107},{"source":444,"target":440},{"source":591,"target":74},{"source":589,"target":75},{"source":108,"target":0},{"source":108,"target":43},{"source":108,"target":4},{"source":108,"target":36},{"source":108,"target":592},{"source":108,"target":593},{"source":108,"target":594},{"source":592,"target":43},{"source":593,"target":4},{"source":594,"target":36},{"source":109,"target":0},{"source":109,"target":35},{"source":109,"target":595},{"source":109,"target":596},{"source":109,"target":597},{"source":595,"target":598},{"source":595,"target":109},{"source":596,"target":599},{"source":596,"target":109},{"source":597,"target":35},{"source":110,"target":0},{"source":110,"target":38},{"source":110,"target":600},{"source":600,"target":38},{"source":111,"target":0},{"source":111,"target":55},{"source":111,"target":601},{"source":601,"target":55},{"source":112,"target":0},{"source":112,"target":602},{"source":112,"target":603},{"source":602,"target":604},{"source":602,"target":112},{"source":603,"target":605},{"source":603,"target":112},{"source":113,"target":508},{"source":113,"target":606},{"source":113,"target":607},{"source":113,"target":608},{"source":113,"target":0},{"source":508,"target":113},{"source":508,"target":609},{"source":508,"target":610},{"source":609,"target":606},{"source":609,"target":611},{"source":609,"target":508},{"source":611,"target":606},{"source":610,"target":607},{"source":610,"target":612},{"source":610,"target":508},{"source":612,"target":607},{"source":606,"target":113},{"source":606,"target":613},{"source":606,"target":614},{"source":613,"target":615},{"source":613,"target":606},{"source":614,"target":607},{"source":614,"target":616},{"source":614,"target":606},{"source":616,"target":607},{"source":607,"target":113},{"source":608,"target":617},{"source":608,"target":113},{"source":617,"target":608},{"source":617,"target":607},{"source":617,"target":618},{"source":617,"target":619},{"source":618,"target":620},{"source":618,"target":617},{"source":619,"target":607}],"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="Taxation" nsURI="http:///TaxCard.ecore" nsPrefix="TaxCard"> <eAnnotations source="http://www.eclipse.org/OCL/Import"> <details key="ecore" value="http://www.eclipse.org/emf/2002/Ecore"/> </eAnnotations> <eClassifiers xsi:type="ecore:EEnum" name="Grantor"> <eLiterals name="WWW" literal="WWW"/> <eLiterals name="Employer" value="1" literal="Employer"/> <eLiterals name="MMM" value="2" literal="MMM"/> <eLiterals name="UUU" value="3" literal="UUU"/> <eLiterals name="YYY" value="4" literal="YYY"/> <eLiterals name="OOO" value="5" literal="OOO"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Constants" abstract="true"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="MAXIMUM_CE_RATE_FOR_CHILD_NOT_BEING_PART_OF_HOUSEHOLD" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble" defaultValueLiteral="3480.0"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="MAXIMUM_CE_RATE_FOR_HOUSE_CARE_AND_CHILD_PART_OF_THE_HOUSEHOLD_CARE" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble" defaultValueLiteral="3600.0"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="MINIMUM_SALARY" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble" defaultValueLiteral="1500.0"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="FLAT_RATE_FOR_EXTRA_PROFESSIONAL_DEDUCTION" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble" defaultValueLiteral="4500.0"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="MAXIMUM_DEDUCTIBLE_PERCENTAGE_FOR_DONATIONS" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble" defaultValueLiteral="20.0"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="MINIMUM_DEDUCTIBLE_AMOUNT_FOR_DONATIONS" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble" defaultValueLiteral="120.0"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="MAXIMUM_DEDUCTIBLE_AMOUNT_FOR_ADDITIONAL_PENSION_AND_INSURANC" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble" defaultValueLiteral="0.0"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="MAXIMUM_DEDUCTIBLE_AMOUNT_FOR_ALIMONY_EXPENSE" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble" defaultValueLiteral="24000.0"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="MAXIMAL_DISTANCE_FOR_TRAVEL_EXPENSE_DEDUCTION" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble" defaultValueLiteral="99.0"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="MAXIMAL_FLAT_DISTANCE_FOR_TRAVEL_EXPENSE_DEDUCTION" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble" defaultValueLiteral="30.0"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="MINIMAL_DISTANCE_FOR_TRAVEL_EXPENSE_DEDUCTION" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble" defaultValueLiteral="4.0"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="FLAT_RATE_CIM_DAILY" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble" defaultValueLiteral="2.0"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="FLAT_RATE_CIM_MONTHLY" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble" defaultValueLiteral="62.0"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="FLAT_RATE_CIM_YEARLY" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble" defaultValueLiteral="750.0"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="FLAT_RATE_CIP_DAILY" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble" defaultValueLiteral="1.0"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="FLAT_RATE_CIP_MONTHLY" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble" defaultValueLiteral="25.0"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="FLAT_RATE_CIP_YEARLY" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble" defaultValueLiteral="30.0"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="FLAT_RATE_CIS_DAILY" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble" defaultValueLiteral="1.0"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="FLAT_RATE_CIS_MONTHLY" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble" defaultValueLiteral="25.0"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="FLAT_RATE_CIS_YEARLY" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble" defaultValueLiteral="300.0"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="FLAT_RATE_FOR_TRAVEL_EXPENSE_PER_UNIT" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble" defaultValueLiteral="99.0"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="MAXIMUM_DEDUCTIBLE_AMOUNT_FOR_DS" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="FLAT_RATE_FOR_MISCELLANEOUS_EXPENSE" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="DISABILITY_FLAT_RATE_FOR_MISCELLANEOUS_EXPENSE" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="MAXIMUM_DEDUCTIBLE_AMOUNT_FOR_ADDITIONAL_PENSION_AND_INSURANCE" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="Disability_Types"> <eLiterals name="beug"/> <eLiterals name="NONE" value="1"/> <eLiterals name="A" value="2" literal="A"/> <eLiterals name="B" value="3" literal="B"/> <eLiterals name="C" value="4" literal="C"/> <eLiterals name="D" value="5" literal="D"/> <eLiterals name="E" value="6" literal="E"/> <eLiterals name="OTHER" value="7"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="Country"> <eLiterals name="ZZ" literal="ZZ"/> <eLiterals name="FF" value="1" literal="FF"/> <eLiterals name="BB" value="2" literal="BB"/> <eLiterals name="DD" value="3" literal="DD"/> <eLiterals name="NN" value="4" literal="NN"/> <eLiterals name="OTHER" value="5" literal="OTHER"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="Tax_Office"> <eLiterals name="RTS_2" literal="RTS_2"/> <eLiterals name="RTS_3" value="1" literal="RTS_3"/> <eLiterals name="RTS_4" value="2" literal="RTS_4"/> <eLiterals name="RTS_5" value="3" literal="RTS_5"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="Tax_Class_Category"> <eLiterals name="One" literal="One"/> <eLiterals name="One_A" value="1" literal="One_A"/> <eLiterals name="Two" value="2" literal="Two"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="Job_Activity"> <eLiterals name="Salary" literal="Salary"/> <eLiterals name="Pension" value="1" literal="Pension"/> <eLiterals name="Annuity" value="2" literal="Annuity"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="Town"> <eLiterals name="LL" literal="LL"/> <eLiterals name="BB" value="1" literal="BB"/> <eLiterals name="SS" value="2" literal="SS"/> <eLiterals name="TT" value="3" literal="TT"/> <eLiterals name="Other" value="4" literal="Other"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="CE_Type"> <eLiterals name="INALIDITY_AND_INFIRMITY" literal="INALIDITY_AND_INFIRMITY"/> <eLiterals name="DEPENDENCE_AND_CARE_EXCLUDING_CHLIDREN_NOT_PART_OF_HOUSEHOLD" value="1" literal="DEPENDENCE_AND_CARE_EXCLUDING_CHLIDREN_NOT_PART_OF_HOUSEHOLD"/> <eLiterals name="CARE_FOR_CHILDREN_NOT_BEING_PART_OF_HOUSEHOLD" value="2" literal="CARE_FOR_CHILDREN_NOT_BEING_PART_OF_HOUSEHOLD"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="Expense_Purpose"> <eLiterals name="HOUSE_CARE" literal="HOUSE_CARE"/> <eLiterals name="CHILD_CARE" value="1" literal="CHILD_CARE"/> <eLiterals name="DEPENDENCE_CARE" value="2" literal="DEPENDENCE_CARE"/> <eLiterals name="OTHER" value="3" literal="OTHER"/> <eLiterals name="ALIMONY" value="4"/> <eLiterals name="RECURRENT_DEPT" value="5"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="Dependent_Type"> <eLiterals name="CHILD" literal="CHILD"/> <eLiterals name="SPOUSE" value="1" literal="SPOUSE"/> <eLiterals name="RELATIVE" value="2" literal="RELATIVE"/> <eLiterals name="OTHER_FAMILY_MEMBER" value="3" literal="OTHER_FAMILY_MEMBER"/> <eLiterals name="NOT_OWN_CHILD" value="4"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Income_Tax"> <eStructuralFeatures xsi:type="ecore:EReference" name="taxPayer" lowerBound="1" eType="#//Tax_Payer"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="tax_amount" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="tax_year" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="id6" ordered="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" iD="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Tax_Payer" abstract="true" eSuperTypes="#//Physical_Person #//Tax_Case"> <eAnnotations source="duplicates"> <contents xsi:type="ecore:EReference" name="expenses" ordered="false" upperBound="-1" eType="#//Expense" containment="true"> <eAnnotations source="redefines" references="#//Physical_Person/expenses"/> </contents> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="dependents" ordered="false" upperBound="6" eType="#//Dependent" containment="true" eOpposite="#//Dependent/responsible_person"/> <eStructuralFeatures xsi:type="ecore:EReference" name="from_agent" lowerBound="1" eType="#//FromAgent" containment="true" eOpposite="#//FromAgent/taxPayer"/> <eStructuralFeatures xsi:type="ecore:EReference" name="incomes" ordered="false" lowerBound="1" upperBound="-1" eType="#//Income" containment="true" eOpposite="#//Income/taxPayer"/> <eStructuralFeatures xsi:type="ecore:EReference" name="from_law" lowerBound="1" eType="#//FromLaw" containment="true" eOpposite="#//FromLaw/taxPayer"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Physical_Person"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="SSNo" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" iD="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="addresses" ordered="false" upperBound="-1" eType="#//Address" eOpposite="#//Address/taxPayer"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="birth_year" ordered="false" unique="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="disability_percentage" ordered="false" unique="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="disability_type" ordered="false" unique="false" lowerBound="1" eType="#//Disability_Types"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="birth_month" ordered="false" unique="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="birth_day" ordered="false" unique="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/> <eStructuralFeatures xsi:type="ecore:EReference" name="expenses" ordered="false" upperBound="-1" eType="#//Expense" eOpposite="#//Expense/beneficiary"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="is_widower" ordered="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Address"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="country" lowerBound="1" eType="#//Country" defaultValueLiteral="ZZ"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="street" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="zipCode" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="city" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="id2" ordered="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" iD="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="taxPayer" ordered="false" upperBound="-1" eType="#//Physical_Person" eOpposite="#//Physical_Person/addresses"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Expense"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="declared_amount" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="expense_purpose" lowerBound="1" eType="#//Expense_Purpose" defaultValueLiteral="OTHER"/> <eStructuralFeatures xsi:type="ecore:EReference" name="dependent" eType="#//Dependent" eOpposite="#//Dependent/expense"/> <eStructuralFeatures xsi:type="ecore:EReference" name="from_agent" ordered="false" eType="#//FromAgent" eOpposite="#//FromAgent/expense"/> <eStructuralFeatures xsi:type="ecore:EReference" name="income" lowerBound="1" eType="#//Income" eOpposite="#//Income/expenses"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="id4" ordered="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" iD="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="beneficiary" ordered="false" eType="#//Physical_Person" eOpposite="#//Physical_Person/expenses"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Dependent" eSuperTypes="#//Physical_Person"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="dependent_type" lowerBound="1" eType="#//Dependent_Type"/> <eStructuralFeatures xsi:type="ecore:EReference" name="responsible_person" eType="#//Tax_Payer" eOpposite="#//Tax_Payer/dependents"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="continued_studies" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean" defaultValueLiteral="false"/> <eStructuralFeatures xsi:type="ecore:EReference" name="allowances" ordered="false" eType="#//External_Allowance" containment="true" eOpposite="#//External_Allowance/person"/> <eStructuralFeatures xsi:type="ecore:EReference" name="household" ordered="false" eType="#//Household" eOpposite="#//Household/children"/> <eStructuralFeatures xsi:type="ecore:EReference" name="from_agent" ordered="false" eType="#//FromAgent" eOpposite="#//FromAgent/dependent"/> <eStructuralFeatures xsi:type="ecore:EReference" name="expense" ordered="false" upperBound="-1" eType="#//Expense" eOpposite="#//Expense/dependent"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="External_Allowance"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="grantor" lowerBound="1" eType="#//Grantor"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="starting_year" ordered="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="ending_year" ordered="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/> <eStructuralFeatures xsi:type="ecore:EReference" name="reciver" ordered="false" lowerBound="1" eType="#//Physical_Person"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="id5" ordered="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" iD="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="person" ordered="false" lowerBound="1" eType="#//Dependent" eOpposite="#//Dependent/allowances"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Household" eSuperTypes="#//Tax_Case"> <eStructuralFeatures xsi:type="ecore:EReference" name="parents" ordered="false" lowerBound="1" eType="#//Legal_Union_Record" containment="true" eOpposite="#//Legal_Union_Record/household"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="id1" ordered="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" iD="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="children" ordered="false" upperBound="-1" eType="#//Dependent" containment="true" eOpposite="#//Dependent/household"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Legal_Union_Record" abstract="true"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="start_year" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="end_year" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="separation_cause" ordered="false" lowerBound="1" eType="#//Separation_Causes"/> <eStructuralFeatures xsi:type="ecore:EReference" name="individual_A" ordered="false" lowerBound="1" eType="#//Physical_Person" containment="true"> <eAnnotations source="http://schema.omg.org/spec/MOF/2.0/emof.xml#Property.oppositeRoleName"> <details key="body" value="legal_union_A"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="individual_B" ordered="false" lowerBound="1" upperBound="-1" eType="#//Physical_Person" containment="true"> <eAnnotations source="http://schema.omg.org/spec/MOF/2.0/emof.xml#Property.oppositeRoleName"> <details key="body" value="legal_union_B"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="properties" ordered="false" lowerBound="1" upperBound="-1" eType="#//Tax_Property" containment="true" eOpposite="#//Tax_Property/union_record"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="mutual_agreement" ordered="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="id9" ordered="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" iD="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="household" ordered="false" lowerBound="1" eType="#//Household" eOpposite="#//Household/parents"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="Separation_Causes"> <eLiterals name="NONE"/> <eLiterals name="DIVORCE" value="1"/> <eLiterals name="SEPARATION_DE_FAIT" value="2"/> <eLiterals name="SEPARATION_BY_COURT" value="3"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Tax_Property"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="starting_year" ordered="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="id10" ordered="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" iD="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="union_record" ordered="false" lowerBound="1" eType="#//Legal_Union_Record" eOpposite="#//Legal_Union_Record/properties"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Tax_Case" abstract="true" interface="true"/> <eClassifiers xsi:type="ecore:EClass" name="FromAgent"> <eStructuralFeatures xsi:type="ecore:EReference" name="taxPayer" lowerBound="1" eType="#//Tax_Payer" eOpposite="#//Tax_Payer/from_agent"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="is_dependent_eligible_for_CE_Not_In_Houshold_Children_Care" ordered="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EReference" name="expense" ordered="false" eType="#//Expense" eOpposite="#//Expense/from_agent"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="is_eligible_debt" ordered="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EReference" name="dependent" ordered="false" eType="#//Dependent" eOpposite="#//Dependent/from_agent"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Income" abstract="true"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="income_amount" ordered="false" unique="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"> <eAnnotations source="http://www.eclipse.org/emf/2002/Ecore/OCL/Pivot"> <details key="derivation" value="let non_null_amounts:OrderedSet(Income_Detail)=self.details->select(det:Income_Detail|det.amount>0)->asOrderedSet() in&#xA;non_null_amounts->collect(amount)->min()"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="income_type" lowerBound="1" eType="#//Income_Type" containment="true" eOpposite="#//Income_Type/income"/> <eStructuralFeatures xsi:type="ecore:EReference" name="tax_card" eType="#//Tax_Card" containment="true" eOpposite="#//Tax_Card/income"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="tax_liability" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/> <eStructuralFeatures xsi:type="ecore:EReference" name="taxPayer" ordered="false" lowerBound="1" eType="#//Tax_Payer" eOpposite="#//Tax_Payer/incomes"/> <eStructuralFeatures xsi:type="ecore:EReference" name="details" lowerBound="12" upperBound="12" eType="#//Income_Detail" containment="true" eOpposite="#//Income_Detail/income"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="num" ordered="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt" iD="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="expenses" ordered="false" upperBound="-1" eType="#//Expense" containment="true" eOpposite="#//Expense/income"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Income_Type" abstract="true"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="id8" ordered="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" iD="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="income" lowerBound="1" eType="#//Income" eOpposite="#//Income/income_type"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Tax_Card"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="card_identifier" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" iD="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="tax_office" lowerBound="1" eType="#//Tax_Office"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="percentage_of_witholding" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="tax_payers_name_surname" ordered="false" upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="tax_payers_partner_name_surname" ordered="false" upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="tax_payers_address" eType="#//Address"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="jobs_Employer_SSNo" ordered="false" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="jobs_employers_name" ordered="false" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="jobs_activity_type" lowerBound="1" eType="#//Job_Activity"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="jobs_place_of_work" lowerBound="1" eType="#//Town"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="deduction_FD_daily" ordered="false" unique="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble" defaultValueLiteral="0.0"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="deduction_FD_monthly" ordered="false" unique="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble" defaultValueLiteral="0.0"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="deduction_AC_daily" unique="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble" defaultValueLiteral="0.0"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="deduction_AC_monthly" unique="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble" defaultValueLiteral="0.0"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="deduction_AC_yearly" unique="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble" defaultValueLiteral="0.0"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="deduction_CE_daily" unique="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble" defaultValueLiteral="0.0"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="deduction_CE_monthly" unique="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble" defaultValueLiteral="0.0"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="deduction_CE_yearly" unique="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble" defaultValueLiteral="0.0"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="deduction_DS_daily" unique="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble" defaultValueLiteral="0.0"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="deduction_DS_monthly" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble" defaultValueLiteral="0.0"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="deduction_FO_daily" unique="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble" defaultValueLiteral="0.0"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="deduction_FO_monthly" unique="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble" defaultValueLiteral="0.0"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="deduction_FO_yearly" unique="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble" defaultValueLiteral="0.0"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="credit_CIS_daily" unique="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble" defaultValueLiteral="0.0"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="credit_CIS_monthly" unique="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble" defaultValueLiteral="0.0"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="credit_CIM_daily" unique="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble" defaultValueLiteral="0.0"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="validity" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EReference" name="income_Tax_Credit" ordered="false" upperBound="-1" eType="#//Income_Tax_Credit" eOpposite="#//Income_Tax_Credit/taxation_Frame"/> <eStructuralFeatures xsi:type="ecore:EReference" name="previous" eType="#//Tax_Card" eOpposite="#//Tax_Card/current_tax_card"/> <eStructuralFeatures xsi:type="ecore:EReference" name="current_tax_card" eType="#//Tax_Card" eOpposite="#//Tax_Card/previous"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="credit_CIM_yearly" ordered="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="deduction_DS_Alimony_yearly" ordered="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="deduction_DS_Debt_yearly" ordered="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/> <eStructuralFeatures xsi:type="ecore:EReference" name="income" lowerBound="1" eType="#//Income" eOpposite="#//Income/tax_card"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Income_Tax_Credit"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="grantedBy" lowerBound="1" eType="#//Grantor"/> <eStructuralFeatures xsi:type="ecore:EReference" name="taxPayer" eType="#//Tax_Payer"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="tax_year" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="yearly" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble" defaultValueLiteral="300.0"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="monthly" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble" defaultValueLiteral="25.0"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="daily" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble" defaultValueLiteral="1.0"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="id7" ordered="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" iD="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="taxation_Frame" eType="#//Tax_Card" eOpposite="#//Tax_Card/income_Tax_Credit"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Income_Detail"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="amount" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="is_worked" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="distance" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="worked_days" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="is_contributing_CNS" ordered="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="id5" ordered="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" iD="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="income" lowerBound="1" eType="#//Income" eOpposite="#//Income/details"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="FromLaw"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="id" ordered="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" iD="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="taxPayer" lowerBound="1" eType="#//Tax_Payer" eOpposite="#//Tax_Payer/from_law"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Fiscal_Address" eSuperTypes="#//Address"/> <eClassifiers xsi:type="ecore:EClass" name="Habitual_Address" eSuperTypes="#//Address"/> <eClassifiers xsi:type="ecore:EClass" name="Marriage_Record" eSuperTypes="#//Legal_Union_Record"/> <eClassifiers xsi:type="ecore:EClass" name="Non_Resident_Tax_Payer" eSuperTypes="#//Tax_Payer"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="is_assimilated_to_resident" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean" defaultValueLiteral="false"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Partnership_Record" eSuperTypes="#//Legal_Union_Record"/> <eClassifiers xsi:type="ecore:EClass" name="Resident_Tax_Payer" eSuperTypes="#//Tax_Payer"/> <eClassifiers xsi:type="ecore:EClass" name="Trade_and_Business_Income" eSuperTypes="#//Income_Type"/> <eClassifiers xsi:type="ecore:EClass" name="Agriculture_and_Forestry_Income" eSuperTypes="#//Income_Type"/> <eClassifiers xsi:type="ecore:EClass" name="Pensions_and_Annuities_Income" eSuperTypes="#//Income_Type"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="occasional_payement" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean" defaultValueLiteral="false"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Capital_and_Investments_Income" eSuperTypes="#//Income_Type"/> <eClassifiers xsi:type="ecore:EClass" name="Employment_Income" eSuperTypes="#//Income_Type"/> <eClassifiers xsi:type="ecore:EClass" name="Rentals_and_Leases_Income" eSuperTypes="#//Income_Type"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="is_periodic" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean" defaultValueLiteral="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Foreign_Income" eSuperTypes="#//Income"/> <eClassifiers xsi:type="ecore:EClass" name="Local_Income" eSuperTypes="#//Income"/> <eClassifiers xsi:type="ecore:EClass" name="CIM" eSuperTypes="#//Income_Tax_Credit"/> <eClassifiers xsi:type="ecore:EClass" name="CIP" eSuperTypes="#//Income_Tax_Credit"/> <eClassifiers xsi:type="ecore:EClass" name="CIS" eSuperTypes="#//Income_Tax_Credit"/> <eClassifiers xsi:type="ecore:EClass" name="FD" eSuperTypes="#//Professional_Expenses_Deduction"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="distance_declared_in_january" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Professional_Expenses_Deduction"/> <eClassifiers xsi:type="ecore:EClass" name="FO" eSuperTypes="#//Professional_Expenses_Deduction"/> <eClassifiers xsi:type="ecore:EClass" name="DS_for_Permanent_Expense" eSuperTypes="#//DS"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="permanent_expense_category" lowerBound="1" eType="#//Category_of_Permanent_Expense"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="DS"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="maximum_deductible_amount" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="id3" ordered="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" iD="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="Category_of_Permanent_Expense"> <eLiterals name="MISCELLANEOUS_DEBT" literal="MISCELLANEOUS_DEBT"/> <eLiterals name="ALIMONY" value="1" literal="ALIMONY"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="DS_for_Interest_Expense" eSuperTypes="#//DS"/> <eClassifiers xsi:type="ecore:EClass" name="DS_for_Health_and_Pension_Insurance" eSuperTypes="#//DS"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="insurance_category" lowerBound="1" eType="#//Category_of_Health_and_Pension_Insurances"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="Category_of_Health_and_Pension_Insurances"> <eLiterals name="MANDATORY_HEALTH_AND_PENSION_INSURANCE" literal="MANDATORY_HEALTH_AND_PENSION_INSURANCE"/> <eLiterals name="ADDITIONAL_EMPLOYERS_PENSION_INSURANCE" value="1" literal="ADDITIONAL_EMPLOYERS_PENSION_INSURANCE"/> <eLiterals name="CONTINUED_HEALTH_AND_PENSION_INSURANCE" value="2" literal="CONTINUED_HEALTH_AND_PENSION_INSURANCE"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="DS_for_Private_Insurance_and_Plan" eSuperTypes="#//DS"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="private_insurance_and_plan_category" lowerBound="1" eType="#//Category_of_Private_Insurance_and_Plan"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="Category_of_Private_Insurance_and_Plan"> <eLiterals name="PRIVATE_INSURANCE" literal="PRIVATE_INSURANCE"/> <eLiterals name="PRIVATE_LIFE_INSURANCE" value="1" literal="PRIVATE_LIFE_INSURANCE"/> <eLiterals name="COMPANY_MEMBERS_PRIVATE_INSURANCE" value="2" literal="COMPANY_MEMBERS_PRIVATE_INSURANCE"/> <eLiterals name="HOUSING_SAVING_PLAN" value="3" literal="HOUSING_SAVING_PLAN"/> <eLiterals name="OLD_AGE_PENSION_PLAN" value="4" literal="OLD_AGE_PENSION_PLAN"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="DS_for_Loss_Carryforward" eSuperTypes="#//DS"/> <eClassifiers xsi:type="ecore:EClass" name="DS_for_Donation" eSuperTypes="#//DS"/> <eClassifiers xsi:type="ecore:EClass" name="Permanent_Expense" eSuperTypes="#//Special_Expense_DS"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="category" lowerBound="1" eType="#//Category_of_Permanent_Expense"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Special_Expense_DS" eSuperTypes="#//Expense"/> <eClassifiers xsi:type="ecore:EClass" name="Interest_Expense" eSuperTypes="#//Special_Expense_DS"/> <eClassifiers xsi:type="ecore:EClass" name="Private_Insurance_and_Plan" eSuperTypes="#//Special_Expense_DS"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="category" lowerBound="1" eType="#//Category_of_Private_Insurance_and_Plan"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="duration_of_contract" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Health_and_Pension_Insurance" eSuperTypes="#//Special_Expense_DS"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="category" lowerBound="1" eType="#//Category_of_Health_and_Pension_Insurances"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="is_related_to_additional_salary" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean" defaultValueLiteral="false"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Donation" eSuperTypes="#//Special_Expense_DS"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="beneficiary1" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="is_donation_reported" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Loss_Carryforward" eSuperTypes="#//Special_Expense_DS"/> <eClassifiers xsi:type="ecore:EClass" name="Spousal_Expense_AC" eSuperTypes="#//Expense"/> <eClassifiers xsi:type="ecore:EClass" name="Extraordinary_Expense_CE" eSuperTypes="#//Expense"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="thresholded_deduction_percentage" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="ce_type" lowerBound="1" eType="#//CE_Type"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Travel_Expense_FD" eSuperTypes="#//Professional_Expense"/> <eClassifiers xsi:type="ecore:EClass" name="Professional_Expense" eSuperTypes="#//Expense"/> <eClassifiers xsi:type="ecore:EClass" name="Miscellaneous_Expense_FO" eSuperTypes="#//Professional_Expense"/> <eClassifiers xsi:type="ecore:EEnum" name="Legal_Union_Types"> <eLiterals name="MARIAGE"/> <eLiterals name="PARTNERSHIP" value="1"/> <eLiterals name="OTHER" value="2"/> </eClassifiers> </ecore:EPackage>
github:ecore:/data/viatra/VIATRA-Generator/Tests/MODELS2020-CaseStudies/case.study.pledge.model/model/Taxation.ecore
ecore
Taxation Grantor WWW WWW Employer Employer MMM MMM UUU UUU YYY YYY OOO OOO Constants MAXIMUM_CE_RATE_FOR_CHILD_NOT_BEING_PART_OF_HOUSEHOLD 3480.0 MAXIMUM_CE_RATE_FOR_HOUSE_CARE_AND_CHILD_PART_OF_THE_HOUSEHOLD_CARE 3600.0 MINIMUM_SALARY 1500.0 FLAT_RATE_FOR_EXTRA_PROFESSIONAL_DEDUCTION 4500.0 MAXIMUM_DEDUCTIBLE_PERCENTAGE_FOR_DONATIONS 20.0 MINIMUM_DEDUCTIBLE_AMOUNT_FOR_DONATIONS 120.0 MAXIMUM_DEDUCTIBLE_AMOUNT_FOR_ADDITIONAL_PENSION_AND_INSURANC 0.0 MAXIMUM_DEDUCTIBLE_AMOUNT_FOR_ALIMONY_EXPENSE 24000.0 MAXIMAL_DISTANCE_FOR_TRAVEL_EXPENSE_DEDUCTION 99.0 MAXIMAL_FLAT_DISTANCE_FOR_TRAVEL_EXPENSE_DEDUCTION 30.0 MINIMAL_DISTANCE_FOR_TRAVEL_EXPENSE_DEDUCTION 4.0 FLAT_RATE_CIM_DAILY 2.0 FLAT_RATE_CIM_MONTHLY 62.0 FLAT_RATE_CIM_YEARLY 750.0 FLAT_RATE_CIP_DAILY 1.0 FLAT_RATE_CIP_MONTHLY 25.0 FLAT_RATE_CIP_YEARLY 30.0 FLAT_RATE_CIS_DAILY 1.0 FLAT_RATE_CIS_MONTHLY 25.0 FLAT_RATE_CIS_YEARLY 300.0 FLAT_RATE_FOR_TRAVEL_EXPENSE_PER_UNIT 99.0 MAXIMUM_DEDUCTIBLE_AMOUNT_FOR_DS FLAT_RATE_FOR_MISCELLANEOUS_EXPENSE DISABILITY_FLAT_RATE_FOR_MISCELLANEOUS_EXPENSE MAXIMUM_DEDUCTIBLE_AMOUNT_FOR_ADDITIONAL_PENSION_AND_INSURANCE Disability_Types beug beug NONE NONE A A B B C C D D E E OTHER OTHER Country ZZ ZZ FF FF BB BB DD DD NN NN OTHER OTHER Tax_Office RTS_2 RTS_2 RTS_3 RTS_3 RTS_4 RTS_4 RTS_5 RTS_5 Tax_Class_Category One One One_A One_A Two Two Job_Activity Salary Salary Pension Pension Annuity Annuity Town LL LL BB BB SS SS TT TT Other Other CE_Type INALIDITY_AND_INFIRMITY INALIDITY_AND_INFIRMITY DEPENDENCE_AND_CARE_EXCLUDING_CHLIDREN_NOT_PART_OF_HOUSEHOLD DEPENDENCE_AND_CARE_EXCLUDING_CHLIDREN_NOT_PART_OF_HOUSEHOLD CARE_FOR_CHILDREN_NOT_BEING_PART_OF_HOUSEHOLD CARE_FOR_CHILDREN_NOT_BEING_PART_OF_HOUSEHOLD Expense_Purpose HOUSE_CARE HOUSE_CARE CHILD_CARE CHILD_CARE DEPENDENCE_CARE DEPENDENCE_CARE OTHER OTHER ALIMONY ALIMONY RECURRENT_DEPT RECURRENT_DEPT Dependent_Type CHILD CHILD SPOUSE SPOUSE RELATIVE RELATIVE OTHER_FAMILY_MEMBER OTHER_FAMILY_MEMBER NOT_OWN_CHILD NOT_OWN_CHILD Income_Tax taxPayer tax_amount tax_year id6 Tax_Payer expenses dependents from_agent incomes from_law Physical_Person SSNo addresses birth_year disability_percentage disability_type birth_month birth_day expenses is_widower Address country ZZ street zipCode city id2 taxPayer Expense declared_amount expense_purpose OTHER dependent from_agent income id4 beneficiary Dependent dependent_type responsible_person continued_studies false allowances household from_agent expense External_Allowance grantor starting_year ending_year reciver id5 person Household parents id1 children Legal_Union_Record start_year end_year separation_cause individual_A individual_B properties mutual_agreement id9 household Separation_Causes NONE NONE DIVORCE DIVORCE SEPARATION_DE_FAIT SEPARATION_DE_FAIT SEPARATION_BY_COURT SEPARATION_BY_COURT Tax_Property starting_year id10 union_record Tax_Case FromAgent taxPayer is_dependent_eligible_for_CE_Not_In_Houshold_Children_Care expense is_eligible_debt dependent Income income_amount income_type tax_card tax_liability taxPayer details num expenses Income_Type id8 income Tax_Card card_identifier tax_office percentage_of_witholding tax_payers_name_surname tax_payers_partner_name_surname tax_payers_address jobs_Employer_SSNo jobs_employers_name jobs_activity_type jobs_place_of_work deduction_FD_daily 0.0 deduction_FD_monthly 0.0 deduction_AC_daily 0.0 deduction_AC_monthly 0.0 deduction_AC_yearly 0.0 deduction_CE_daily 0.0 deduction_CE_monthly 0.0 deduction_CE_yearly 0.0 deduction_DS_daily 0.0 deduction_DS_monthly 0.0 deduction_FO_daily 0.0 deduction_FO_monthly 0.0 deduction_FO_yearly 0.0 credit_CIS_daily 0.0 credit_CIS_monthly 0.0 credit_CIM_daily 0.0 validity income_Tax_Credit previous current_tax_card credit_CIM_yearly deduction_DS_Alimony_yearly deduction_DS_Debt_yearly income Income_Tax_Credit grantedBy taxPayer tax_year yearly 300.0 monthly 25.0 daily 1.0 id7 taxation_Frame Income_Detail amount is_worked distance worked_days is_contributing_CNS id5 income FromLaw id taxPayer Fiscal_Address Habitual_Address Marriage_Record Non_Resident_Tax_Payer is_assimilated_to_resident false Partnership_Record Resident_Tax_Payer Trade_and_Business_Income Agriculture_and_Forestry_Income Pensions_and_Annuities_Income occasional_payement false Capital_and_Investments_Income Employment_Income Rentals_and_Leases_Income is_periodic true Foreign_Income Local_Income CIM CIP CIS FD distance_declared_in_january Professional_Expenses_Deduction FO DS_for_Permanent_Expense permanent_expense_category DS maximum_deductible_amount id3 Category_of_Permanent_Expense MISCELLANEOUS_DEBT MISCELLANEOUS_DEBT ALIMONY ALIMONY DS_for_Interest_Expense DS_for_Health_and_Pension_Insurance insurance_category Category_of_Health_and_Pension_Insurances MANDATORY_HEALTH_AND_PENSION_INSURANCE MANDATORY_HEALTH_AND_PENSION_INSURANCE ADDITIONAL_EMPLOYERS_PENSION_INSURANCE ADDITIONAL_EMPLOYERS_PENSION_INSURANCE CONTINUED_HEALTH_AND_PENSION_INSURANCE CONTINUED_HEALTH_AND_PENSION_INSURANCE DS_for_Private_Insurance_and_Plan private_insurance_and_plan_category Category_of_Private_Insurance_and_Plan PRIVATE_INSURANCE PRIVATE_INSURANCE PRIVATE_LIFE_INSURANCE PRIVATE_LIFE_INSURANCE COMPANY_MEMBERS_PRIVATE_INSURANCE COMPANY_MEMBERS_PRIVATE_INSURANCE HOUSING_SAVING_PLAN HOUSING_SAVING_PLAN OLD_AGE_PENSION_PLAN OLD_AGE_PENSION_PLAN DS_for_Loss_Carryforward DS_for_Donation Permanent_Expense category Special_Expense_DS Interest_Expense Private_Insurance_and_Plan category duration_of_contract Health_and_Pension_Insurance category is_related_to_additional_salary false Donation beneficiary1 is_donation_reported Loss_Carryforward Spousal_Expense_AC Extraordinary_Expense_CE thresholded_deduction_percentage ce_type Travel_Expense_FD Professional_Expense Miscellaneous_Expense_FO Legal_Union_Types MARIAGE MARIAGE PARTNERSHIP PARTNERSHIP OTHER OTHER
null
{"directed":true,"nodes":[{"nsPrefix":"TaxCard","nsURI":"http:///TaxCard.ecore","name":"Taxation","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"instanceClassName":null,"name":"Grantor","instanceClass":null,"id":1,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Constants","instanceClass":null,"abstract":true,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"Disability_Types","instanceClass":null,"id":3,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"Country","instanceClass":null,"id":4,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"Tax_Office","instanceClass":null,"id":5,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"Tax_Class_Category","instanceClass":null,"id":6,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"Job_Activity","instanceClass":null,"id":7,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"Town","instanceClass":null,"id":8,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"CE_Type","instanceClass":null,"id":9,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"Expense_Purpose","instanceClass":null,"id":10,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"Dependent_Type","instanceClass":null,"id":11,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Income_Tax","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Tax_Payer","instanceClass":null,"abstract":true,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Physical_Person","instanceClass":null,"abstract":false,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Address","instanceClass":null,"abstract":false,"id":15,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Expense","instanceClass":null,"abstract":false,"id":16,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Dependent","instanceClass":null,"abstract":false,"id":17,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"External_Allowance","instanceClass":null,"abstract":false,"id":18,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Household","instanceClass":null,"abstract":false,"id":19,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Legal_Union_Record","instanceClass":null,"abstract":true,"id":20,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"Separation_Causes","instanceClass":null,"id":21,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Tax_Property","instanceClass":null,"abstract":false,"id":22,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Tax_Case","instanceClass":null,"abstract":true,"id":23,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FromAgent","instanceClass":null,"abstract":false,"id":24,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Income","instanceClass":null,"abstract":true,"id":25,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Income_Type","instanceClass":null,"abstract":true,"id":26,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Tax_Card","instanceClass":null,"abstract":false,"id":27,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Income_Tax_Credit","instanceClass":null,"abstract":false,"id":28,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Income_Detail","instanceClass":null,"abstract":false,"id":29,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FromLaw","instanceClass":null,"abstract":false,"id":30,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Fiscal_Address","instanceClass":null,"abstract":false,"id":31,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Habitual_Address","instanceClass":null,"abstract":false,"id":32,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Marriage_Record","instanceClass":null,"abstract":false,"id":33,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Non_Resident_Tax_Payer","instanceClass":null,"abstract":false,"id":34,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Partnership_Record","instanceClass":null,"abstract":false,"id":35,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Resident_Tax_Payer","instanceClass":null,"abstract":false,"id":36,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Trade_and_Business_Income","instanceClass":null,"abstract":false,"id":37,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Agriculture_and_Forestry_Income","instanceClass":null,"abstract":false,"id":38,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Pensions_and_Annuities_Income","instanceClass":null,"abstract":false,"id":39,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Capital_and_Investments_Income","instanceClass":null,"abstract":false,"id":40,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Employment_Income","instanceClass":null,"abstract":false,"id":41,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Rentals_and_Leases_Income","instanceClass":null,"abstract":false,"id":42,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Foreign_Income","instanceClass":null,"abstract":false,"id":43,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Local_Income","instanceClass":null,"abstract":false,"id":44,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CIM","instanceClass":null,"abstract":false,"id":45,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CIP","instanceClass":null,"abstract":false,"id":46,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CIS","instanceClass":null,"abstract":false,"id":47,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FD","instanceClass":null,"abstract":false,"id":48,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Professional_Expenses_Deduction","instanceClass":null,"abstract":false,"id":49,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FO","instanceClass":null,"abstract":false,"id":50,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DS_for_Permanent_Expense","instanceClass":null,"abstract":false,"id":51,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DS","instanceClass":null,"abstract":false,"id":52,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"Category_of_Permanent_Expense","instanceClass":null,"id":53,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DS_for_Interest_Expense","instanceClass":null,"abstract":false,"id":54,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DS_for_Health_and_Pension_Insurance","instanceClass":null,"abstract":false,"id":55,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"Category_of_Health_and_Pension_Insurances","instanceClass":null,"id":56,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DS_for_Private_Insurance_and_Plan","instanceClass":null,"abstract":false,"id":57,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"Category_of_Private_Insurance_and_Plan","instanceClass":null,"id":58,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DS_for_Loss_Carryforward","instanceClass":null,"abstract":false,"id":59,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DS_for_Donation","instanceClass":null,"abstract":false,"id":60,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Permanent_Expense","instanceClass":null,"abstract":false,"id":61,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Special_Expense_DS","instanceClass":null,"abstract":false,"id":62,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Interest_Expense","instanceClass":null,"abstract":false,"id":63,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Private_Insurance_and_Plan","instanceClass":null,"abstract":false,"id":64,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Health_and_Pension_Insurance","instanceClass":null,"abstract":false,"id":65,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Donation","instanceClass":null,"abstract":false,"id":66,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Loss_Carryforward","instanceClass":null,"abstract":false,"id":67,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Spousal_Expense_AC","instanceClass":null,"abstract":false,"id":68,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Extraordinary_Expense_CE","instanceClass":null,"abstract":false,"id":69,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Travel_Expense_FD","instanceClass":null,"abstract":false,"id":70,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Professional_Expense","instanceClass":null,"abstract":false,"id":71,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Miscellaneous_Expense_FO","instanceClass":null,"abstract":false,"id":72,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"Legal_Union_Types","instanceClass":null,"id":73,"serializable":true,"eClass":"EEnum"},{"name":"WWW","id":74,"value":0,"literal":"WWW","eClass":"EEnumLiteral"},{"name":"Employer","id":75,"value":1,"literal":"Employer","eClass":"EEnumLiteral"},{"name":"MMM","id":76,"value":2,"literal":"MMM","eClass":"EEnumLiteral"},{"name":"UUU","id":77,"value":3,"literal":"UUU","eClass":"EEnumLiteral"},{"name":"YYY","id":78,"value":4,"literal":"YYY","eClass":"EEnumLiteral"},{"name":"OOO","id":79,"value":5,"literal":"OOO","eClass":"EEnumLiteral"},{"ordered":true,"upperBound":1,"defaultValue":3480.0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"3480.0","unsettable":false,"transient":false,"unique":true,"name":"MAXIMUM_CE_RATE_FOR_CHILD_NOT_BEING_PART_OF_HOUSEHOLD","changeable":true,"lowerBound":1,"iD":false,"id":80,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":3600.0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"3600.0","unsettable":false,"transient":false,"unique":true,"name":"MAXIMUM_CE_RATE_FOR_HOUSE_CARE_AND_CHILD_PART_OF_THE_HOUSEHOLD_CARE","changeable":true,"lowerBound":1,"iD":false,"id":81,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":1500.0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"1500.0","unsettable":false,"transient":false,"unique":true,"name":"MINIMUM_SALARY","changeable":true,"lowerBound":1,"iD":false,"id":82,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":4500.0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"4500.0","unsettable":false,"transient":false,"unique":true,"name":"FLAT_RATE_FOR_EXTRA_PROFESSIONAL_DEDUCTION","changeable":true,"lowerBound":1,"iD":false,"id":83,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":20.0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"20.0","unsettable":false,"transient":false,"unique":true,"name":"MAXIMUM_DEDUCTIBLE_PERCENTAGE_FOR_DONATIONS","changeable":true,"lowerBound":1,"iD":false,"id":84,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":120.0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"120.0","unsettable":false,"transient":false,"unique":true,"name":"MINIMUM_DEDUCTIBLE_AMOUNT_FOR_DONATIONS","changeable":true,"lowerBound":1,"iD":false,"id":85,"derived":false},{"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":"MAXIMUM_DEDUCTIBLE_AMOUNT_FOR_ADDITIONAL_PENSION_AND_INSURANC","changeable":true,"lowerBound":1,"iD":false,"id":86,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":24000.0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"24000.0","unsettable":false,"transient":false,"unique":true,"name":"MAXIMUM_DEDUCTIBLE_AMOUNT_FOR_ALIMONY_EXPENSE","changeable":true,"lowerBound":1,"iD":false,"id":87,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":99.0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"99.0","unsettable":false,"transient":false,"unique":true,"name":"MAXIMAL_DISTANCE_FOR_TRAVEL_EXPENSE_DEDUCTION","changeable":true,"lowerBound":1,"iD":false,"id":88,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":30.0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"30.0","unsettable":false,"transient":false,"unique":true,"name":"MAXIMAL_FLAT_DISTANCE_FOR_TRAVEL_EXPENSE_DEDUCTION","changeable":true,"lowerBound":1,"iD":false,"id":89,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":4.0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"4.0","unsettable":false,"transient":false,"unique":true,"name":"MINIMAL_DISTANCE_FOR_TRAVEL_EXPENSE_DEDUCTION","changeable":true,"lowerBound":1,"iD":false,"id":90,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":2.0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"2.0","unsettable":false,"transient":false,"unique":true,"name":"FLAT_RATE_CIM_DAILY","changeable":true,"lowerBound":1,"iD":false,"id":91,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":62.0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"62.0","unsettable":false,"transient":false,"unique":true,"name":"FLAT_RATE_CIM_MONTHLY","changeable":true,"lowerBound":1,"iD":false,"id":92,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":750.0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"750.0","unsettable":false,"transient":false,"unique":true,"name":"FLAT_RATE_CIM_YEARLY","changeable":true,"lowerBound":1,"iD":false,"id":93,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":1.0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"1.0","unsettable":false,"transient":false,"unique":true,"name":"FLAT_RATE_CIP_DAILY","changeable":true,"lowerBound":1,"iD":false,"id":94,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":25.0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"25.0","unsettable":false,"transient":false,"unique":true,"name":"FLAT_RATE_CIP_MONTHLY","changeable":true,"lowerBound":1,"iD":false,"id":95,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":30.0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"30.0","unsettable":false,"transient":false,"unique":true,"name":"FLAT_RATE_CIP_YEARLY","changeable":true,"lowerBound":1,"iD":false,"id":96,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":1.0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"1.0","unsettable":false,"transient":false,"unique":true,"name":"FLAT_RATE_CIS_DAILY","changeable":true,"lowerBound":1,"iD":false,"id":97,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":25.0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"25.0","unsettable":false,"transient":false,"unique":true,"name":"FLAT_RATE_CIS_MONTHLY","changeable":true,"lowerBound":1,"iD":false,"id":98,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":300.0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"300.0","unsettable":false,"transient":false,"unique":true,"name":"FLAT_RATE_CIS_YEARLY","changeable":true,"lowerBound":1,"iD":false,"id":99,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":99.0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"99.0","unsettable":false,"transient":false,"unique":true,"name":"FLAT_RATE_FOR_TRAVEL_EXPENSE_PER_UNIT","changeable":true,"lowerBound":1,"iD":false,"id":100,"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":"MAXIMUM_DEDUCTIBLE_AMOUNT_FOR_DS","changeable":true,"lowerBound":1,"iD":false,"id":101,"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":"FLAT_RATE_FOR_MISCELLANEOUS_EXPENSE","changeable":true,"lowerBound":1,"iD":false,"id":102,"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":"DISABILITY_FLAT_RATE_FOR_MISCELLANEOUS_EXPENSE","changeable":true,"lowerBound":1,"iD":false,"id":103,"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":"MAXIMUM_DEDUCTIBLE_AMOUNT_FOR_ADDITIONAL_PENSION_AND_INSURANCE","changeable":true,"lowerBound":1,"iD":false,"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"},{"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"},{"name":"beug","id":130,"value":0,"literal":"beug","eClass":"EEnumLiteral"},{"name":"NONE","id":131,"value":1,"literal":"NONE","eClass":"EEnumLiteral"},{"name":"A","id":132,"value":2,"literal":"A","eClass":"EEnumLiteral"},{"name":"B","id":133,"value":3,"literal":"B","eClass":"EEnumLiteral"},{"name":"C","id":134,"value":4,"literal":"C","eClass":"EEnumLiteral"},{"name":"D","id":135,"value":5,"literal":"D","eClass":"EEnumLiteral"},{"name":"E","id":136,"value":6,"literal":"E","eClass":"EEnumLiteral"},{"name":"OTHER","id":137,"value":7,"literal":"OTHER","eClass":"EEnumLiteral"},{"name":"ZZ","id":138,"value":0,"literal":"ZZ","eClass":"EEnumLiteral"},{"name":"FF","id":139,"value":1,"literal":"FF","eClass":"EEnumLiteral"},{"name":"BB","id":140,"value":2,"literal":"BB","eClass":"EEnumLiteral"},{"name":"DD","id":141,"value":3,"literal":"DD","eClass":"EEnumLiteral"},{"name":"NN","id":142,"value":4,"literal":"NN","eClass":"EEnumLiteral"},{"name":"OTHER","id":143,"value":5,"literal":"OTHER","eClass":"EEnumLiteral"},{"name":"RTS_2","id":144,"value":0,"literal":"RTS_2","eClass":"EEnumLiteral"},{"name":"RTS_3","id":145,"value":1,"literal":"RTS_3","eClass":"EEnumLiteral"},{"name":"RTS_4","id":146,"value":2,"literal":"RTS_4","eClass":"EEnumLiteral"},{"name":"RTS_5","id":147,"value":3,"literal":"RTS_5","eClass":"EEnumLiteral"},{"name":"One","id":148,"value":0,"literal":"One","eClass":"EEnumLiteral"},{"name":"One_A","id":149,"value":1,"literal":"One_A","eClass":"EEnumLiteral"},{"name":"Two","id":150,"value":2,"literal":"Two","eClass":"EEnumLiteral"},{"name":"Salary","id":151,"value":0,"literal":"Salary","eClass":"EEnumLiteral"},{"name":"Pension","id":152,"value":1,"literal":"Pension","eClass":"EEnumLiteral"},{"name":"Annuity","id":153,"value":2,"literal":"Annuity","eClass":"EEnumLiteral"},{"name":"LL","id":154,"value":0,"literal":"LL","eClass":"EEnumLiteral"},{"name":"BB","id":155,"value":1,"literal":"BB","eClass":"EEnumLiteral"},{"name":"SS","id":156,"value":2,"literal":"SS","eClass":"EEnumLiteral"},{"name":"TT","id":157,"value":3,"literal":"TT","eClass":"EEnumLiteral"},{"name":"Other","id":158,"value":4,"literal":"Other","eClass":"EEnumLiteral"},{"name":"INALIDITY_AND_INFIRMITY","id":159,"value":0,"literal":"INALIDITY_AND_INFIRMITY","eClass":"EEnumLiteral"},{"name":"DEPENDENCE_AND_CARE_EXCLUDING_CHLIDREN_NOT_PART_OF_HOUSEHOLD","id":160,"value":1,"literal":"DEPENDENCE_AND_CARE_EXCLUDING_CHLIDREN_NOT_PART_OF_HOUSEHOLD","eClass":"EEnumLiteral"},{"name":"CARE_FOR_CHILDREN_NOT_BEING_PART_OF_HOUSEHOLD","id":161,"value":2,"literal":"CARE_FOR_CHILDREN_NOT_BEING_PART_OF_HOUSEHOLD","eClass":"EEnumLiteral"},{"name":"HOUSE_CARE","id":162,"value":0,"literal":"HOUSE_CARE","eClass":"EEnumLiteral"},{"name":"CHILD_CARE","id":163,"value":1,"literal":"CHILD_CARE","eClass":"EEnumLiteral"},{"name":"DEPENDENCE_CARE","id":164,"value":2,"literal":"DEPENDENCE_CARE","eClass":"EEnumLiteral"},{"name":"OTHER","id":165,"value":3,"literal":"OTHER","eClass":"EEnumLiteral"},{"name":"ALIMONY","id":166,"value":4,"literal":"ALIMONY","eClass":"EEnumLiteral"},{"name":"RECURRENT_DEPT","id":167,"value":5,"literal":"RECURRENT_DEPT","eClass":"EEnumLiteral"},{"name":"CHILD","id":168,"value":0,"literal":"CHILD","eClass":"EEnumLiteral"},{"name":"SPOUSE","id":169,"value":1,"literal":"SPOUSE","eClass":"EEnumLiteral"},{"name":"RELATIVE","id":170,"value":2,"literal":"RELATIVE","eClass":"EEnumLiteral"},{"name":"OTHER_FAMILY_MEMBER","id":171,"value":3,"literal":"OTHER_FAMILY_MEMBER","eClass":"EEnumLiteral"},{"name":"NOT_OWN_CHILD","id":172,"value":4,"literal":"NOT_OWN_CHILD","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":"taxPayer","changeable":true,"resolveProxies":true,"lowerBound":1,"id":173,"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":"tax_amount","changeable":true,"lowerBound":1,"iD":false,"id":174,"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":"tax_year","changeable":true,"lowerBound":1,"iD":false,"id":175,"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":"id6","changeable":true,"lowerBound":1,"iD":true,"id":176,"derived":false},{"id":177,"eClass":"EGenericType"},{"id":178,"eClass":"EGenericType"},{"id":179,"eClass":"EGenericType"},{"id":180,"eClass":"EGenericType"},{"container":false,"ordered":false,"upperBound":6,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"dependents","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":true,"unsettable":false,"transient":false,"unique":true,"name":"from_agent","changeable":true,"resolveProxies":true,"lowerBound":1,"id":182,"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":"incomes","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":true,"unsettable":false,"transient":false,"unique":true,"name":"from_law","changeable":true,"resolveProxies":true,"lowerBound":1,"id":184,"derived":false},{"id":185,"eClass":"EGenericType"},{"id":186,"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":"expenses","changeable":true,"resolveProxies":true,"lowerBound":0,"id":187,"derived":false},{"id":188,"eClass":"EGenericType"},{"id":189,"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":"responsible_person","changeable":true,"resolveProxies":true,"lowerBound":0,"id":190,"derived":false},{"id":191,"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":"taxPayer","changeable":true,"resolveProxies":true,"lowerBound":1,"id":192,"derived":false},{"id":193,"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":"taxPayer","changeable":true,"resolveProxies":true,"lowerBound":1,"id":194,"derived":false},{"id":195,"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":"taxPayer","changeable":true,"resolveProxies":true,"lowerBound":1,"id":196,"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":"SSNo","changeable":true,"lowerBound":1,"iD":true,"id":197,"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":"addresses","changeable":true,"resolveProxies":true,"lowerBound":0,"id":198,"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":"birth_year","changeable":true,"lowerBound":1,"iD":false,"id":199,"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":"disability_percentage","changeable":true,"lowerBound":1,"iD":false,"id":200,"derived":false},{"ordered":false,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"disability_type","changeable":true,"lowerBound":1,"iD":false,"id":201,"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":"birth_month","changeable":true,"lowerBound":1,"iD":false,"id":202,"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":"birth_day","changeable":true,"lowerBound":1,"iD":false,"id":203,"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":"expenses","changeable":true,"resolveProxies":true,"lowerBound":0,"id":204,"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":"is_widower","changeable":true,"lowerBound":1,"iD":false,"id":205,"derived":false},{"id":206,"eClass":"EGenericType"},{"id":207,"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":"taxPayer","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"},{"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":"beneficiary","changeable":true,"resolveProxies":true,"lowerBound":0,"id":215,"derived":false},{"id":216,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"ZZ","unsettable":false,"transient":false,"unique":true,"name":"country","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":"street","changeable":true,"lowerBound":1,"iD":false,"id":218,"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":"zipCode","changeable":true,"lowerBound":1,"iD":false,"id":219,"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":220,"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":"id2","changeable":true,"lowerBound":1,"iD":true,"id":221,"derived":false},{"id":222,"eClass":"EGenericType"},{"id":223,"eClass":"EGenericType"},{"id":224,"eClass":"EGenericType"},{"id":225,"eClass":"EGenericType"},{"id":226,"eClass":"EGenericType"},{"id":227,"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":"declared_amount","changeable":true,"lowerBound":1,"iD":false,"id":228,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"OTHER","unsettable":false,"transient":false,"unique":true,"name":"expense_purpose","changeable":true,"lowerBound":1,"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":false,"unsettable":false,"transient":false,"unique":true,"name":"dependent","changeable":true,"resolveProxies":true,"lowerBound":0,"id":230,"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":"from_agent","changeable":true,"resolveProxies":true,"lowerBound":0,"id":231,"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":"income","changeable":true,"resolveProxies":true,"lowerBound":1,"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":true,"name":"id4","changeable":true,"lowerBound":1,"iD":true,"id":233,"derived":false},{"id":234,"eClass":"EGenericType"},{"id":235,"eClass":"EGenericType"},{"id":236,"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":"expense","changeable":true,"resolveProxies":true,"lowerBound":0,"id":237,"derived":false},{"id":238,"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":"expense","changeable":true,"resolveProxies":true,"lowerBound":0,"id":239,"derived":false},{"id":240,"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":"expenses","changeable":true,"resolveProxies":true,"lowerBound":0,"id":241,"derived":false},{"id":242,"eClass":"EGenericType"},{"id":243,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"dependent_type","changeable":true,"lowerBound":1,"iD":false,"id":244,"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":"continued_studies","changeable":true,"lowerBound":1,"iD":false,"id":245,"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":"allowances","changeable":true,"resolveProxies":true,"lowerBound":0,"id":246,"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":"household","changeable":true,"resolveProxies":true,"lowerBound":0,"id":247,"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":"from_agent","changeable":true,"resolveProxies":true,"lowerBound":0,"id":248,"derived":false},{"id":249,"eClass":"EGenericType"},{"id":250,"eClass":"EGenericType"},{"id":251,"eClass":"EGenericType"},{"id":252,"eClass":"EGenericType"},{"id":253,"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":"person","changeable":true,"resolveProxies":true,"lowerBound":1,"id":254,"derived":false},{"id":255,"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":"children","changeable":true,"resolveProxies":true,"lowerBound":0,"id":256,"derived":false},{"id":257,"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":"dependent","changeable":true,"resolveProxies":true,"lowerBound":0,"id":258,"derived":false},{"id":259,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"grantor","changeable":true,"lowerBound":1,"iD":false,"id":260,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"starting_year","changeable":true,"lowerBound":1,"iD":false,"id":261,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"ending_year","changeable":true,"lowerBound":1,"iD":false,"id":262,"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":"reciver","changeable":true,"resolveProxies":true,"lowerBound":1,"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":true,"name":"id5","changeable":true,"lowerBound":1,"iD":true,"id":264,"derived":false},{"id":265,"eClass":"EGenericType"},{"id":266,"eClass":"EGenericType"},{"id":267,"eClass":"EGenericType"},{"id":268,"eClass":"EGenericType"},{"id":269,"eClass":"EGenericType"},{"id":270,"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":"parents","changeable":true,"resolveProxies":true,"lowerBound":1,"id":271,"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":"id1","changeable":true,"lowerBound":1,"iD":true,"id":272,"derived":false},{"id":273,"eClass":"EGenericType"},{"id":274,"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":"household","changeable":true,"resolveProxies":true,"lowerBound":1,"id":275,"derived":false},{"id":276,"eClass":"EGenericType"},{"id":277,"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_year","changeable":true,"lowerBound":1,"iD":false,"id":278,"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":"end_year","changeable":true,"lowerBound":1,"iD":false,"id":279,"derived":false},{"ordered":false,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"separation_cause","changeable":true,"lowerBound":1,"iD":false,"id":280,"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":"individual_A","changeable":true,"resolveProxies":true,"lowerBound":1,"id":281,"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":"individual_B","changeable":true,"resolveProxies":true,"lowerBound":1,"id":282,"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":"properties","changeable":true,"resolveProxies":true,"lowerBound":1,"id":283,"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":"mutual_agreement","changeable":true,"lowerBound":1,"iD":false,"id":284,"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":"id9","changeable":true,"lowerBound":1,"iD":true,"id":285,"derived":false},{"id":286,"eClass":"EGenericType"},{"id":287,"eClass":"EGenericType"},{"id":288,"eClass":"EGenericType"},{"id":289,"eClass":"EGenericType"},{"id":290,"eClass":"EGenericType"},{"id":291,"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":"union_record","changeable":true,"resolveProxies":true,"lowerBound":1,"id":292,"derived":false},{"id":293,"eClass":"EGenericType"},{"id":294,"eClass":"EGenericType"},{"id":295,"eClass":"EGenericType"},{"name":"NONE","id":296,"value":0,"literal":"NONE","eClass":"EEnumLiteral"},{"name":"DIVORCE","id":297,"value":1,"literal":"DIVORCE","eClass":"EEnumLiteral"},{"name":"SEPARATION_DE_FAIT","id":298,"value":2,"literal":"SEPARATION_DE_FAIT","eClass":"EEnumLiteral"},{"name":"SEPARATION_BY_COURT","id":299,"value":3,"literal":"SEPARATION_BY_COURT","eClass":"EEnumLiteral"},{"ordered":false,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"starting_year","changeable":true,"lowerBound":1,"iD":false,"id":300,"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":"id10","changeable":true,"lowerBound":1,"iD":true,"id":301,"derived":false},{"id":302,"eClass":"EGenericType"},{"id":303,"eClass":"EGenericType"},{"id":304,"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":"is_dependent_eligible_for_CE_Not_In_Houshold_Children_Care","changeable":true,"lowerBound":1,"iD":false,"id":305,"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":"is_eligible_debt","changeable":true,"lowerBound":1,"iD":false,"id":306,"derived":false},{"id":307,"eClass":"EGenericType"},{"id":308,"eClass":"EGenericType"},{"id":309,"eClass":"EGenericType"},{"id":310,"eClass":"EGenericType"},{"id":311,"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":"income_amount","changeable":true,"lowerBound":1,"iD":false,"id":312,"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":"income_type","changeable":true,"resolveProxies":true,"lowerBound":1,"id":313,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"tax_card","changeable":true,"resolveProxies":true,"lowerBound":0,"id":314,"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":"tax_liability","changeable":true,"lowerBound":1,"iD":false,"id":315,"derived":false},{"container":false,"ordered":true,"upperBound":12,"defaultValue":null,"volatile":false,"many":true,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"details","changeable":true,"resolveProxies":true,"lowerBound":12,"id":316,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"num","changeable":true,"lowerBound":1,"iD":true,"id":317,"derived":false},{"id":318,"eClass":"EGenericType"},{"id":319,"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":"income","changeable":true,"resolveProxies":true,"lowerBound":1,"id":320,"derived":false},{"id":321,"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":"income","changeable":true,"resolveProxies":true,"lowerBound":1,"id":322,"derived":false},{"id":323,"eClass":"EGenericType"},{"id":324,"eClass":"EGenericType"},{"id":325,"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":"income","changeable":true,"resolveProxies":true,"lowerBound":1,"id":326,"derived":false},{"id":327,"eClass":"EGenericType"},{"id":328,"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":"id8","changeable":true,"lowerBound":1,"iD":true,"id":329,"derived":false},{"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":"card_identifier","changeable":true,"lowerBound":0,"iD":true,"id":332,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"tax_office","changeable":true,"lowerBound":1,"iD":false,"id":333,"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":"percentage_of_witholding","changeable":true,"lowerBound":1,"iD":false,"id":334,"derived":false},{"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"tax_payers_name_surname","changeable":true,"lowerBound":0,"iD":false,"id":335,"derived":false},{"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"tax_payers_partner_name_surname","changeable":true,"lowerBound":0,"iD":false,"id":336,"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":"tax_payers_address","changeable":true,"resolveProxies":true,"lowerBound":0,"id":337,"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":"jobs_Employer_SSNo","changeable":true,"lowerBound":0,"iD":false,"id":338,"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":"jobs_employers_name","changeable":true,"lowerBound":0,"iD":false,"id":339,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"jobs_activity_type","changeable":true,"lowerBound":1,"iD":false,"id":340,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"jobs_place_of_work","changeable":true,"lowerBound":1,"iD":false,"id":341,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"0.0","unsettable":false,"transient":false,"unique":false,"name":"deduction_FD_daily","changeable":true,"lowerBound":1,"iD":false,"id":342,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"0.0","unsettable":false,"transient":false,"unique":false,"name":"deduction_FD_monthly","changeable":true,"lowerBound":1,"iD":false,"id":343,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"0.0","unsettable":false,"transient":false,"unique":false,"name":"deduction_AC_daily","changeable":true,"lowerBound":1,"iD":false,"id":344,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"0.0","unsettable":false,"transient":false,"unique":false,"name":"deduction_AC_monthly","changeable":true,"lowerBound":1,"iD":false,"id":345,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"0.0","unsettable":false,"transient":false,"unique":false,"name":"deduction_AC_yearly","changeable":true,"lowerBound":1,"iD":false,"id":346,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"0.0","unsettable":false,"transient":false,"unique":false,"name":"deduction_CE_daily","changeable":true,"lowerBound":1,"iD":false,"id":347,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"0.0","unsettable":false,"transient":false,"unique":false,"name":"deduction_CE_monthly","changeable":true,"lowerBound":1,"iD":false,"id":348,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"0.0","unsettable":false,"transient":false,"unique":false,"name":"deduction_CE_yearly","changeable":true,"lowerBound":1,"iD":false,"id":349,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"0.0","unsettable":false,"transient":false,"unique":false,"name":"deduction_DS_daily","changeable":true,"lowerBound":1,"iD":false,"id":350,"derived":false},{"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":"deduction_DS_monthly","changeable":true,"lowerBound":1,"iD":false,"id":351,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"0.0","unsettable":false,"transient":false,"unique":false,"name":"deduction_FO_daily","changeable":true,"lowerBound":1,"iD":false,"id":352,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"0.0","unsettable":false,"transient":false,"unique":false,"name":"deduction_FO_monthly","changeable":true,"lowerBound":1,"iD":false,"id":353,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"0.0","unsettable":false,"transient":false,"unique":false,"name":"deduction_FO_yearly","changeable":true,"lowerBound":1,"iD":false,"id":354,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"0.0","unsettable":false,"transient":false,"unique":false,"name":"credit_CIS_daily","changeable":true,"lowerBound":1,"iD":false,"id":355,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"0.0","unsettable":false,"transient":false,"unique":false,"name":"credit_CIS_monthly","changeable":true,"lowerBound":1,"iD":false,"id":356,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"0.0","unsettable":false,"transient":false,"unique":false,"name":"credit_CIM_daily","changeable":true,"lowerBound":1,"iD":false,"id":357,"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":"validity","changeable":true,"lowerBound":1,"iD":false,"id":358,"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":"income_Tax_Credit","changeable":true,"resolveProxies":true,"lowerBound":0,"id":359,"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":"previous","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":"current_tax_card","changeable":true,"resolveProxies":true,"lowerBound":0,"id":361,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"credit_CIM_yearly","changeable":true,"lowerBound":1,"iD":false,"id":362,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"deduction_DS_Alimony_yearly","changeable":true,"lowerBound":1,"iD":false,"id":363,"derived":false},{"ordered":false,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"deduction_DS_Debt_yearly","changeable":true,"lowerBound":1,"iD":false,"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"},{"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"},{"id":385,"eClass":"EGenericType"},{"id":386,"eClass":"EGenericType"},{"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":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"taxation_Frame","changeable":true,"resolveProxies":true,"lowerBound":0,"id":393,"derived":false},{"id":394,"eClass":"EGenericType"},{"id":395,"eClass":"EGenericType"},{"id":396,"eClass":"EGenericType"},{"id":397,"eClass":"EGenericType"},{"id":398,"eClass":"EGenericType"},{"id":399,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"grantedBy","changeable":true,"lowerBound":1,"iD":false,"id":400,"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":"taxPayer","changeable":true,"resolveProxies":true,"lowerBound":0,"id":401,"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":"tax_year","changeable":true,"lowerBound":1,"iD":false,"id":402,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":300.0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"300.0","unsettable":false,"transient":false,"unique":true,"name":"yearly","changeable":true,"lowerBound":1,"iD":false,"id":403,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":25.0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"25.0","unsettable":false,"transient":false,"unique":true,"name":"monthly","changeable":true,"lowerBound":1,"iD":false,"id":404,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":1.0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"1.0","unsettable":false,"transient":false,"unique":true,"name":"daily","changeable":true,"lowerBound":1,"iD":false,"id":405,"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":"id7","changeable":true,"lowerBound":1,"iD":true,"id":406,"derived":false},{"id":407,"eClass":"EGenericType"},{"id":408,"eClass":"EGenericType"},{"id":409,"eClass":"EGenericType"},{"id":410,"eClass":"EGenericType"},{"id":411,"eClass":"EGenericType"},{"id":412,"eClass":"EGenericType"},{"id":413,"eClass":"EGenericType"},{"id":414,"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":"amount","changeable":true,"lowerBound":1,"iD":false,"id":415,"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":"is_worked","changeable":true,"lowerBound":1,"iD":false,"id":416,"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":"distance","changeable":true,"lowerBound":1,"iD":false,"id":417,"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":"worked_days","changeable":true,"lowerBound":1,"iD":false,"id":418,"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":"is_contributing_CNS","changeable":true,"lowerBound":1,"iD":false,"id":419,"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":"id5","changeable":true,"lowerBound":1,"iD":true,"id":420,"derived":false},{"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"},{"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":true,"id":428,"derived":false},{"id":429,"eClass":"EGenericType"},{"id":430,"eClass":"EGenericType"},{"id":431,"eClass":"EGenericType"},{"id":432,"eClass":"EGenericType"},{"id":433,"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":"is_assimilated_to_resident","changeable":true,"lowerBound":1,"iD":false,"id":434,"derived":false},{"id":435,"eClass":"EGenericType"},{"id":436,"eClass":"EGenericType"},{"id":437,"eClass":"EGenericType"},{"id":438,"eClass":"EGenericType"},{"id":439,"eClass":"EGenericType"},{"id":440,"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":"occasional_payement","changeable":true,"lowerBound":0,"iD":false,"id":441,"derived":false},{"id":442,"eClass":"EGenericType"},{"id":443,"eClass":"EGenericType"},{"id":444,"eClass":"EGenericType"},{"id":445,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":true,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"true","unsettable":false,"transient":false,"unique":true,"name":"is_periodic","changeable":true,"lowerBound":1,"iD":false,"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"},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"distance_declared_in_january","changeable":true,"lowerBound":1,"iD":false,"id":454,"derived":false},{"id":455,"eClass":"EGenericType"},{"id":456,"eClass":"EGenericType"},{"id":457,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"permanent_expense_category","changeable":true,"lowerBound":1,"iD":false,"id":458,"derived":false},{"id":459,"eClass":"EGenericType"},{"id":460,"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":"maximum_deductible_amount","changeable":true,"lowerBound":1,"iD":false,"id":461,"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":"id3","changeable":true,"lowerBound":1,"iD":true,"id":462,"derived":false},{"id":463,"eClass":"EGenericType"},{"id":464,"eClass":"EGenericType"},{"name":"MISCELLANEOUS_DEBT","id":465,"value":0,"literal":"MISCELLANEOUS_DEBT","eClass":"EEnumLiteral"},{"name":"ALIMONY","id":466,"value":1,"literal":"ALIMONY","eClass":"EEnumLiteral"},{"id":467,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"insurance_category","changeable":true,"lowerBound":1,"iD":false,"id":468,"derived":false},{"id":469,"eClass":"EGenericType"},{"id":470,"eClass":"EGenericType"},{"name":"MANDATORY_HEALTH_AND_PENSION_INSURANCE","id":471,"value":0,"literal":"MANDATORY_HEALTH_AND_PENSION_INSURANCE","eClass":"EEnumLiteral"},{"name":"ADDITIONAL_EMPLOYERS_PENSION_INSURANCE","id":472,"value":1,"literal":"ADDITIONAL_EMPLOYERS_PENSION_INSURANCE","eClass":"EEnumLiteral"},{"name":"CONTINUED_HEALTH_AND_PENSION_INSURANCE","id":473,"value":2,"literal":"CONTINUED_HEALTH_AND_PENSION_INSURANCE","eClass":"EEnumLiteral"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"private_insurance_and_plan_category","changeable":true,"lowerBound":1,"iD":false,"id":474,"derived":false},{"id":475,"eClass":"EGenericType"},{"id":476,"eClass":"EGenericType"},{"name":"PRIVATE_INSURANCE","id":477,"value":0,"literal":"PRIVATE_INSURANCE","eClass":"EEnumLiteral"},{"name":"PRIVATE_LIFE_INSURANCE","id":478,"value":1,"literal":"PRIVATE_LIFE_INSURANCE","eClass":"EEnumLiteral"},{"name":"COMPANY_MEMBERS_PRIVATE_INSURANCE","id":479,"value":2,"literal":"COMPANY_MEMBERS_PRIVATE_INSURANCE","eClass":"EEnumLiteral"},{"name":"HOUSING_SAVING_PLAN","id":480,"value":3,"literal":"HOUSING_SAVING_PLAN","eClass":"EEnumLiteral"},{"name":"OLD_AGE_PENSION_PLAN","id":481,"value":4,"literal":"OLD_AGE_PENSION_PLAN","eClass":"EEnumLiteral"},{"id":482,"eClass":"EGenericType"},{"id":483,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"category","changeable":true,"lowerBound":1,"iD":false,"id":484,"derived":false},{"id":485,"eClass":"EGenericType"},{"id":486,"eClass":"EGenericType"},{"id":487,"eClass":"EGenericType"},{"id":488,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"category","changeable":true,"lowerBound":1,"iD":false,"id":489,"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":"duration_of_contract","changeable":true,"lowerBound":1,"iD":false,"id":490,"derived":false},{"id":491,"eClass":"EGenericType"},{"id":492,"eClass":"EGenericType"},{"id":493,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"category","changeable":true,"lowerBound":1,"iD":false,"id":494,"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":"is_related_to_additional_salary","changeable":true,"lowerBound":1,"iD":false,"id":495,"derived":false},{"id":496,"eClass":"EGenericType"},{"id":497,"eClass":"EGenericType"},{"id":498,"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":"beneficiary1","changeable":true,"lowerBound":1,"iD":false,"id":499,"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":"is_donation_reported","changeable":true,"lowerBound":1,"iD":false,"id":500,"derived":false},{"id":501,"eClass":"EGenericType"},{"id":502,"eClass":"EGenericType"},{"id":503,"eClass":"EGenericType"},{"id":504,"eClass":"EGenericType"},{"id":505,"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":"thresholded_deduction_percentage","changeable":true,"lowerBound":1,"iD":false,"id":506,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"ce_type","changeable":true,"lowerBound":1,"iD":false,"id":507,"derived":false},{"id":508,"eClass":"EGenericType"},{"id":509,"eClass":"EGenericType"},{"id":510,"eClass":"EGenericType"},{"id":511,"eClass":"EGenericType"},{"id":512,"eClass":"EGenericType"},{"id":513,"eClass":"EGenericType"},{"name":"MARIAGE","id":514,"value":0,"literal":"MARIAGE","eClass":"EEnumLiteral"},{"name":"PARTNERSHIP","id":515,"value":1,"literal":"PARTNERSHIP","eClass":"EEnumLiteral"},{"name":"OTHER","id":516,"value":2,"literal":"OTHER","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":1,"target":0},{"source":1,"target":74},{"source":1,"target":75},{"source":1,"target":76},{"source":1,"target":77},{"source":1,"target":78},{"source":1,"target":79},{"source":74,"target":1},{"source":75,"target":1},{"source":76,"target":1},{"source":77,"target":1},{"source":78,"target":1},{"source":79,"target":1},{"source":2,"target":0},{"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":86},{"source":2,"target":87},{"source":2,"target":88},{"source":2,"target":89},{"source":2,"target":90},{"source":2,"target":91},{"source":2,"target":92},{"source":2,"target":93},{"source":2,"target":94},{"source":2,"target":95},{"source":2,"target":96},{"source":2,"target":97},{"source":2,"target":98},{"source":2,"target":99},{"source":2,"target":100},{"source":2,"target":101},{"source":2,"target":102},{"source":2,"target":103},{"source":2,"target":104},{"source":80,"target":105},{"source":80,"target":2},{"source":81,"target":106},{"source":81,"target":2},{"source":82,"target":107},{"source":82,"target":2},{"source":83,"target":108},{"source":83,"target":2},{"source":84,"target":109},{"source":84,"target":2},{"source":85,"target":110},{"source":85,"target":2},{"source":86,"target":111},{"source":86,"target":2},{"source":87,"target":112},{"source":87,"target":2},{"source":88,"target":113},{"source":88,"target":2},{"source":89,"target":114},{"source":89,"target":2},{"source":90,"target":115},{"source":90,"target":2},{"source":91,"target":116},{"source":91,"target":2},{"source":92,"target":117},{"source":92,"target":2},{"source":93,"target":118},{"source":93,"target":2},{"source":94,"target":119},{"source":94,"target":2},{"source":95,"target":120},{"source":95,"target":2},{"source":96,"target":121},{"source":96,"target":2},{"source":97,"target":122},{"source":97,"target":2},{"source":98,"target":123},{"source":98,"target":2},{"source":99,"target":124},{"source":99,"target":2},{"source":100,"target":125},{"source":100,"target":2},{"source":101,"target":126},{"source":101,"target":2},{"source":102,"target":127},{"source":102,"target":2},{"source":103,"target":128},{"source":103,"target":2},{"source":104,"target":129},{"source":104,"target":2},{"source":3,"target":0},{"source":3,"target":130},{"source":3,"target":131},{"source":3,"target":132},{"source":3,"target":133},{"source":3,"target":134},{"source":3,"target":135},{"source":3,"target":136},{"source":3,"target":137},{"source":130,"target":3},{"source":131,"target":3},{"source":132,"target":3},{"source":133,"target":3},{"source":134,"target":3},{"source":135,"target":3},{"source":136,"target":3},{"source":137,"target":3},{"source":4,"target":0},{"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":138,"target":4},{"source":139,"target":4},{"source":140,"target":4},{"source":141,"target":4},{"source":142,"target":4},{"source":143,"target":4},{"source":5,"target":0},{"source":5,"target":144},{"source":5,"target":145},{"source":5,"target":146},{"source":5,"target":147},{"source":144,"target":5},{"source":145,"target":5},{"source":146,"target":5},{"source":147,"target":5},{"source":6,"target":0},{"source":6,"target":148},{"source":6,"target":149},{"source":6,"target":150},{"source":148,"target":6},{"source":149,"target":6},{"source":150,"target":6},{"source":7,"target":0},{"source":7,"target":151},{"source":7,"target":152},{"source":7,"target":153},{"source":151,"target":7},{"source":152,"target":7},{"source":153,"target":7},{"source":8,"target":0},{"source":8,"target":154},{"source":8,"target":155},{"source":8,"target":156},{"source":8,"target":157},{"source":8,"target":158},{"source":154,"target":8},{"source":155,"target":8},{"source":156,"target":8},{"source":157,"target":8},{"source":158,"target":8},{"source":9,"target":0},{"source":9,"target":159},{"source":9,"target":160},{"source":9,"target":161},{"source":159,"target":9},{"source":160,"target":9},{"source":161,"target":9},{"source":10,"target":0},{"source":10,"target":162},{"source":10,"target":163},{"source":10,"target":164},{"source":10,"target":165},{"source":10,"target":166},{"source":10,"target":167},{"source":162,"target":10},{"source":163,"target":10},{"source":164,"target":10},{"source":165,"target":10},{"source":166,"target":10},{"source":167,"target":10},{"source":11,"target":0},{"source":11,"target":168},{"source":11,"target":169},{"source":11,"target":170},{"source":11,"target":171},{"source":11,"target":172},{"source":168,"target":11},{"source":169,"target":11},{"source":170,"target":11},{"source":171,"target":11},{"source":172,"target":11},{"source":12,"target":0},{"source":12,"target":173},{"source":12,"target":174},{"source":12,"target":175},{"source":12,"target":176},{"source":173,"target":13},{"source":173,"target":177},{"source":173,"target":12},{"source":177,"target":13},{"source":174,"target":178},{"source":174,"target":12},{"source":175,"target":179},{"source":175,"target":12},{"source":176,"target":180},{"source":176,"target":12},{"source":13,"target":0},{"source":13,"target":14},{"source":13,"target":23},{"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":187,"target":16},{"source":187,"target":188},{"source":188,"target":16},{"source":181,"target":17},{"source":181,"target":189},{"source":181,"target":13},{"source":181,"target":190},{"source":189,"target":17},{"source":182,"target":24},{"source":182,"target":191},{"source":182,"target":13},{"source":182,"target":192},{"source":191,"target":24},{"source":183,"target":25},{"source":183,"target":193},{"source":183,"target":13},{"source":183,"target":194},{"source":193,"target":25},{"source":184,"target":30},{"source":184,"target":195},{"source":184,"target":13},{"source":184,"target":196},{"source":195,"target":30},{"source":185,"target":14},{"source":186,"target":23},{"source":14,"target":0},{"source":14,"target":197},{"source":14,"target":198},{"source":14,"target":199},{"source":14,"target":200},{"source":14,"target":201},{"source":14,"target":202},{"source":14,"target":203},{"source":14,"target":204},{"source":14,"target":205},{"source":197,"target":206},{"source":197,"target":14},{"source":198,"target":15},{"source":198,"target":207},{"source":198,"target":14},{"source":198,"target":208},{"source":207,"target":15},{"source":199,"target":209},{"source":199,"target":14},{"source":200,"target":210},{"source":200,"target":14},{"source":201,"target":3},{"source":201,"target":211},{"source":201,"target":14},{"source":211,"target":3},{"source":202,"target":212},{"source":202,"target":14},{"source":203,"target":213},{"source":203,"target":14},{"source":204,"target":16},{"source":204,"target":214},{"source":204,"target":14},{"source":204,"target":215},{"source":214,"target":16},{"source":205,"target":216},{"source":205,"target":14},{"source":15,"target":0},{"source":15,"target":217},{"source":15,"target":218},{"source":15,"target":219},{"source":15,"target":220},{"source":15,"target":221},{"source":15,"target":208},{"source":217,"target":4},{"source":217,"target":222},{"source":217,"target":15},{"source":222,"target":4},{"source":218,"target":223},{"source":218,"target":15},{"source":219,"target":224},{"source":219,"target":15},{"source":220,"target":225},{"source":220,"target":15},{"source":221,"target":226},{"source":221,"target":15},{"source":208,"target":14},{"source":208,"target":227},{"source":208,"target":15},{"source":208,"target":198},{"source":227,"target":14},{"source":16,"target":0},{"source":16,"target":228},{"source":16,"target":229},{"source":16,"target":230},{"source":16,"target":231},{"source":16,"target":232},{"source":16,"target":233},{"source":16,"target":215},{"source":228,"target":234},{"source":228,"target":16},{"source":229,"target":10},{"source":229,"target":235},{"source":229,"target":16},{"source":235,"target":10},{"source":230,"target":17},{"source":230,"target":236},{"source":230,"target":16},{"source":230,"target":237},{"source":236,"target":17},{"source":231,"target":24},{"source":231,"target":238},{"source":231,"target":16},{"source":231,"target":239},{"source":238,"target":24},{"source":232,"target":25},{"source":232,"target":240},{"source":232,"target":16},{"source":232,"target":241},{"source":240,"target":25},{"source":233,"target":242},{"source":233,"target":16},{"source":215,"target":14},{"source":215,"target":243},{"source":215,"target":16},{"source":215,"target":204},{"source":243,"target":14},{"source":17,"target":0},{"source":17,"target":14},{"source":17,"target":244},{"source":17,"target":190},{"source":17,"target":245},{"source":17,"target":246},{"source":17,"target":247},{"source":17,"target":248},{"source":17,"target":237},{"source":17,"target":249},{"source":244,"target":11},{"source":244,"target":250},{"source":244,"target":17},{"source":250,"target":11},{"source":190,"target":13},{"source":190,"target":251},{"source":190,"target":17},{"source":190,"target":181},{"source":251,"target":13},{"source":245,"target":252},{"source":245,"target":17},{"source":246,"target":18},{"source":246,"target":253},{"source":246,"target":17},{"source":246,"target":254},{"source":253,"target":18},{"source":247,"target":19},{"source":247,"target":255},{"source":247,"target":17},{"source":247,"target":256},{"source":255,"target":19},{"source":248,"target":24},{"source":248,"target":257},{"source":248,"target":17},{"source":248,"target":258},{"source":257,"target":24},{"source":237,"target":16},{"source":237,"target":259},{"source":237,"target":17},{"source":237,"target":230},{"source":259,"target":16},{"source":249,"target":14},{"source":18,"target":0},{"source":18,"target":260},{"source":18,"target":261},{"source":18,"target":262},{"source":18,"target":263},{"source":18,"target":264},{"source":18,"target":254},{"source":260,"target":1},{"source":260,"target":265},{"source":260,"target":18},{"source":265,"target":1},{"source":261,"target":266},{"source":261,"target":18},{"source":262,"target":267},{"source":262,"target":18},{"source":263,"target":14},{"source":263,"target":268},{"source":263,"target":18},{"source":268,"target":14},{"source":264,"target":269},{"source":264,"target":18},{"source":254,"target":17},{"source":254,"target":270},{"source":254,"target":18},{"source":254,"target":246},{"source":270,"target":17},{"source":19,"target":0},{"source":19,"target":23},{"source":19,"target":271},{"source":19,"target":272},{"source":19,"target":256},{"source":19,"target":273},{"source":271,"target":20},{"source":271,"target":274},{"source":271,"target":19},{"source":271,"target":275},{"source":274,"target":20},{"source":272,"target":276},{"source":272,"target":19},{"source":256,"target":17},{"source":256,"target":277},{"source":256,"target":19},{"source":256,"target":247},{"source":277,"target":17},{"source":273,"target":23},{"source":20,"target":0},{"source":20,"target":278},{"source":20,"target":279},{"source":20,"target":280},{"source":20,"target":281},{"source":20,"target":282},{"source":20,"target":283},{"source":20,"target":284},{"source":20,"target":285},{"source":20,"target":275},{"source":278,"target":286},{"source":278,"target":20},{"source":279,"target":287},{"source":279,"target":20},{"source":280,"target":21},{"source":280,"target":288},{"source":280,"target":20},{"source":288,"target":21},{"source":281,"target":14},{"source":281,"target":289},{"source":281,"target":20},{"source":289,"target":14},{"source":282,"target":14},{"source":282,"target":290},{"source":282,"target":20},{"source":290,"target":14},{"source":283,"target":22},{"source":283,"target":291},{"source":283,"target":20},{"source":283,"target":292},{"source":291,"target":22},{"source":284,"target":293},{"source":284,"target":20},{"source":285,"target":294},{"source":285,"target":20},{"source":275,"target":19},{"source":275,"target":295},{"source":275,"target":20},{"source":275,"target":271},{"source":295,"target":19},{"source":21,"target":0},{"source":21,"target":296},{"source":21,"target":297},{"source":21,"target":298},{"source":21,"target":299},{"source":296,"target":21},{"source":297,"target":21},{"source":298,"target":21},{"source":299,"target":21},{"source":22,"target":0},{"source":22,"target":300},{"source":22,"target":301},{"source":22,"target":292},{"source":300,"target":302},{"source":300,"target":22},{"source":301,"target":303},{"source":301,"target":22},{"source":292,"target":20},{"source":292,"target":304},{"source":292,"target":22},{"source":292,"target":283},{"source":304,"target":20},{"source":23,"target":0},{"source":24,"target":0},{"source":24,"target":192},{"source":24,"target":305},{"source":24,"target":239},{"source":24,"target":306},{"source":24,"target":258},{"source":192,"target":13},{"source":192,"target":307},{"source":192,"target":24},{"source":192,"target":182},{"source":307,"target":13},{"source":305,"target":308},{"source":305,"target":24},{"source":239,"target":16},{"source":239,"target":309},{"source":239,"target":24},{"source":239,"target":231},{"source":309,"target":16},{"source":306,"target":310},{"source":306,"target":24},{"source":258,"target":17},{"source":258,"target":311},{"source":258,"target":24},{"source":258,"target":248},{"source":311,"target":17},{"source":25,"target":0},{"source":25,"target":312},{"source":25,"target":313},{"source":25,"target":314},{"source":25,"target":315},{"source":25,"target":194},{"source":25,"target":316},{"source":25,"target":317},{"source":25,"target":241},{"source":312,"target":318},{"source":312,"target":25},{"source":313,"target":26},{"source":313,"target":319},{"source":313,"target":25},{"source":313,"target":320},{"source":319,"target":26},{"source":314,"target":27},{"source":314,"target":321},{"source":314,"target":25},{"source":314,"target":322},{"source":321,"target":27},{"source":315,"target":323},{"source":315,"target":25},{"source":194,"target":13},{"source":194,"target":324},{"source":194,"target":25},{"source":194,"target":183},{"source":324,"target":13},{"source":316,"target":29},{"source":316,"target":325},{"source":316,"target":25},{"source":316,"target":326},{"source":325,"target":29},{"source":317,"target":327},{"source":317,"target":25},{"source":241,"target":16},{"source":241,"target":328},{"source":241,"target":25},{"source":241,"target":232},{"source":328,"target":16},{"source":26,"target":0},{"source":26,"target":329},{"source":26,"target":320},{"source":329,"target":330},{"source":329,"target":26},{"source":320,"target":25},{"source":320,"target":331},{"source":320,"target":26},{"source":320,"target":313},{"source":331,"target":25},{"source":27,"target":0},{"source":27,"target":332},{"source":27,"target":333},{"source":27,"target":334},{"source":27,"target":335},{"source":27,"target":336},{"source":27,"target":337},{"source":27,"target":338},{"source":27,"target":339},{"source":27,"target":340},{"source":27,"target":341},{"source":27,"target":342},{"source":27,"target":343},{"source":27,"target":344},{"source":27,"target":345},{"source":27,"target":346},{"source":27,"target":347},{"source":27,"target":348},{"source":27,"target":349},{"source":27,"target":350},{"source":27,"target":351},{"source":27,"target":352},{"source":27,"target":353},{"source":27,"target":354},{"source":27,"target":355},{"source":27,"target":356},{"source":27,"target":357},{"source":27,"target":358},{"source":27,"target":359},{"source":27,"target":360},{"source":27,"target":361},{"source":27,"target":362},{"source":27,"target":363},{"source":27,"target":364},{"source":27,"target":322},{"source":332,"target":365},{"source":332,"target":27},{"source":333,"target":5},{"source":333,"target":366},{"source":333,"target":27},{"source":366,"target":5},{"source":334,"target":367},{"source":334,"target":27},{"source":335,"target":368},{"source":335,"target":27},{"source":336,"target":369},{"source":336,"target":27},{"source":337,"target":15},{"source":337,"target":370},{"source":337,"target":27},{"source":370,"target":15},{"source":338,"target":371},{"source":338,"target":27},{"source":339,"target":372},{"source":339,"target":27},{"source":340,"target":7},{"source":340,"target":373},{"source":340,"target":27},{"source":373,"target":7},{"source":341,"target":8},{"source":341,"target":374},{"source":341,"target":27},{"source":374,"target":8},{"source":342,"target":375},{"source":342,"target":27},{"source":343,"target":376},{"source":343,"target":27},{"source":344,"target":377},{"source":344,"target":27},{"source":345,"target":378},{"source":345,"target":27},{"source":346,"target":379},{"source":346,"target":27},{"source":347,"target":380},{"source":347,"target":27},{"source":348,"target":381},{"source":348,"target":27},{"source":349,"target":382},{"source":349,"target":27},{"source":350,"target":383},{"source":350,"target":27},{"source":351,"target":384},{"source":351,"target":27},{"source":352,"target":385},{"source":352,"target":27},{"source":353,"target":386},{"source":353,"target":27},{"source":354,"target":387},{"source":354,"target":27},{"source":355,"target":388},{"source":355,"target":27},{"source":356,"target":389},{"source":356,"target":27},{"source":357,"target":390},{"source":357,"target":27},{"source":358,"target":391},{"source":358,"target":27},{"source":359,"target":28},{"source":359,"target":392},{"source":359,"target":27},{"source":359,"target":393},{"source":392,"target":28},{"source":360,"target":27},{"source":360,"target":394},{"source":360,"target":27},{"source":360,"target":361},{"source":394,"target":27},{"source":361,"target":27},{"source":361,"target":395},{"source":361,"target":27},{"source":361,"target":360},{"source":395,"target":27},{"source":362,"target":396},{"source":362,"target":27},{"source":363,"target":397},{"source":363,"target":27},{"source":364,"target":398},{"source":364,"target":27},{"source":322,"target":25},{"source":322,"target":399},{"source":322,"target":27},{"source":322,"target":314},{"source":399,"target":25},{"source":28,"target":0},{"source":28,"target":400},{"source":28,"target":401},{"source":28,"target":402},{"source":28,"target":403},{"source":28,"target":404},{"source":28,"target":405},{"source":28,"target":406},{"source":28,"target":393},{"source":400,"target":1},{"source":400,"target":407},{"source":400,"target":28},{"source":407,"target":1},{"source":401,"target":13},{"source":401,"target":408},{"source":401,"target":28},{"source":408,"target":13},{"source":402,"target":409},{"source":402,"target":28},{"source":403,"target":410},{"source":403,"target":28},{"source":404,"target":411},{"source":404,"target":28},{"source":405,"target":412},{"source":405,"target":28},{"source":406,"target":413},{"source":406,"target":28},{"source":393,"target":27},{"source":393,"target":414},{"source":393,"target":28},{"source":393,"target":359},{"source":414,"target":27},{"source":29,"target":0},{"source":29,"target":415},{"source":29,"target":416},{"source":29,"target":417},{"source":29,"target":418},{"source":29,"target":419},{"source":29,"target":420},{"source":29,"target":326},{"source":415,"target":421},{"source":415,"target":29},{"source":416,"target":422},{"source":416,"target":29},{"source":417,"target":423},{"source":417,"target":29},{"source":418,"target":424},{"source":418,"target":29},{"source":419,"target":425},{"source":419,"target":29},{"source":420,"target":426},{"source":420,"target":29},{"source":326,"target":25},{"source":326,"target":427},{"source":326,"target":29},{"source":326,"target":316},{"source":427,"target":25},{"source":30,"target":0},{"source":30,"target":428},{"source":30,"target":196},{"source":428,"target":429},{"source":428,"target":30},{"source":196,"target":13},{"source":196,"target":430},{"source":196,"target":30},{"source":196,"target":184},{"source":430,"target":13},{"source":31,"target":0},{"source":31,"target":15},{"source":31,"target":431},{"source":431,"target":15},{"source":32,"target":0},{"source":32,"target":15},{"source":32,"target":432},{"source":432,"target":15},{"source":33,"target":0},{"source":33,"target":20},{"source":33,"target":433},{"source":433,"target":20},{"source":34,"target":0},{"source":34,"target":13},{"source":34,"target":434},{"source":34,"target":435},{"source":434,"target":436},{"source":434,"target":34},{"source":435,"target":13},{"source":35,"target":0},{"source":35,"target":20},{"source":35,"target":437},{"source":437,"target":20},{"source":36,"target":0},{"source":36,"target":13},{"source":36,"target":438},{"source":438,"target":13},{"source":37,"target":0},{"source":37,"target":26},{"source":37,"target":439},{"source":439,"target":26},{"source":38,"target":0},{"source":38,"target":26},{"source":38,"target":440},{"source":440,"target":26},{"source":39,"target":0},{"source":39,"target":26},{"source":39,"target":441},{"source":39,"target":442},{"source":441,"target":443},{"source":441,"target":39},{"source":442,"target":26},{"source":40,"target":0},{"source":40,"target":26},{"source":40,"target":444},{"source":444,"target":26},{"source":41,"target":0},{"source":41,"target":26},{"source":41,"target":445},{"source":445,"target":26},{"source":42,"target":0},{"source":42,"target":26},{"source":42,"target":446},{"source":42,"target":447},{"source":446,"target":448},{"source":446,"target":42},{"source":447,"target":26},{"source":43,"target":0},{"source":43,"target":25},{"source":43,"target":449},{"source":449,"target":25},{"source":44,"target":0},{"source":44,"target":25},{"source":44,"target":450},{"source":450,"target":25},{"source":45,"target":0},{"source":45,"target":28},{"source":45,"target":451},{"source":451,"target":28},{"source":46,"target":0},{"source":46,"target":28},{"source":46,"target":452},{"source":452,"target":28},{"source":47,"target":0},{"source":47,"target":28},{"source":47,"target":453},{"source":453,"target":28},{"source":48,"target":0},{"source":48,"target":49},{"source":48,"target":454},{"source":48,"target":455},{"source":454,"target":456},{"source":454,"target":48},{"source":455,"target":49},{"source":49,"target":0},{"source":50,"target":0},{"source":50,"target":49},{"source":50,"target":457},{"source":457,"target":49},{"source":51,"target":0},{"source":51,"target":52},{"source":51,"target":458},{"source":51,"target":459},{"source":458,"target":53},{"source":458,"target":460},{"source":458,"target":51},{"source":460,"target":53},{"source":459,"target":52},{"source":52,"target":0},{"source":52,"target":461},{"source":52,"target":462},{"source":461,"target":463},{"source":461,"target":52},{"source":462,"target":464},{"source":462,"target":52},{"source":53,"target":0},{"source":53,"target":465},{"source":53,"target":466},{"source":465,"target":53},{"source":466,"target":53},{"source":54,"target":0},{"source":54,"target":52},{"source":54,"target":467},{"source":467,"target":52},{"source":55,"target":0},{"source":55,"target":52},{"source":55,"target":468},{"source":55,"target":469},{"source":468,"target":56},{"source":468,"target":470},{"source":468,"target":55},{"source":470,"target":56},{"source":469,"target":52},{"source":56,"target":0},{"source":56,"target":471},{"source":56,"target":472},{"source":56,"target":473},{"source":471,"target":56},{"source":472,"target":56},{"source":473,"target":56},{"source":57,"target":0},{"source":57,"target":52},{"source":57,"target":474},{"source":57,"target":475},{"source":474,"target":58},{"source":474,"target":476},{"source":474,"target":57},{"source":476,"target":58},{"source":475,"target":52},{"source":58,"target":0},{"source":58,"target":477},{"source":58,"target":478},{"source":58,"target":479},{"source":58,"target":480},{"source":58,"target":481},{"source":477,"target":58},{"source":478,"target":58},{"source":479,"target":58},{"source":480,"target":58},{"source":481,"target":58},{"source":59,"target":0},{"source":59,"target":52},{"source":59,"target":482},{"source":482,"target":52},{"source":60,"target":0},{"source":60,"target":52},{"source":60,"target":483},{"source":483,"target":52},{"source":61,"target":0},{"source":61,"target":62},{"source":61,"target":484},{"source":61,"target":485},{"source":484,"target":53},{"source":484,"target":486},{"source":484,"target":61},{"source":486,"target":53},{"source":485,"target":62},{"source":62,"target":0},{"source":62,"target":16},{"source":62,"target":487},{"source":487,"target":16},{"source":63,"target":0},{"source":63,"target":62},{"source":63,"target":488},{"source":488,"target":62},{"source":64,"target":0},{"source":64,"target":62},{"source":64,"target":489},{"source":64,"target":490},{"source":64,"target":491},{"source":489,"target":58},{"source":489,"target":492},{"source":489,"target":64},{"source":492,"target":58},{"source":490,"target":493},{"source":490,"target":64},{"source":491,"target":62},{"source":65,"target":0},{"source":65,"target":62},{"source":65,"target":494},{"source":65,"target":495},{"source":65,"target":496},{"source":494,"target":56},{"source":494,"target":497},{"source":494,"target":65},{"source":497,"target":56},{"source":495,"target":498},{"source":495,"target":65},{"source":496,"target":62},{"source":66,"target":0},{"source":66,"target":62},{"source":66,"target":499},{"source":66,"target":500},{"source":66,"target":501},{"source":499,"target":502},{"source":499,"target":66},{"source":500,"target":503},{"source":500,"target":66},{"source":501,"target":62},{"source":67,"target":0},{"source":67,"target":62},{"source":67,"target":504},{"source":504,"target":62},{"source":68,"target":0},{"source":68,"target":16},{"source":68,"target":505},{"source":505,"target":16},{"source":69,"target":0},{"source":69,"target":16},{"source":69,"target":506},{"source":69,"target":507},{"source":69,"target":508},{"source":506,"target":509},{"source":506,"target":69},{"source":507,"target":9},{"source":507,"target":510},{"source":507,"target":69},{"source":510,"target":9},{"source":508,"target":16},{"source":70,"target":0},{"source":70,"target":71},{"source":70,"target":511},{"source":511,"target":71},{"source":71,"target":0},{"source":71,"target":16},{"source":71,"target":512},{"source":512,"target":16},{"source":72,"target":0},{"source":72,"target":71},{"source":72,"target":513},{"source":513,"target":71},{"source":73,"target":0},{"source":73,"target":514},{"source":73,"target":515},{"source":73,"target":516},{"source":514,"target":73},{"source":515,"target":73},{"source":516,"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="DecModel" nsURI="http://www.sei.pku.edu.cn/rsa/decmodel" nsPrefix="DecModel"> <eClassifiers xsi:type="ecore:EClass" name="Decoration"> <eStructuralFeatures xsi:type="ecore:EReference" name="genModel" lowerBound="1" eType="ecore:EClass platform:/plugin/org.eclipse.emf.codegen.ecore/model/GenModel.ecore#//GenModel"/> <eStructuralFeatures xsi:type="ecore:EReference" name="importClass" eType="#//ImportClass" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="codeArea" eType="#//CommonCode" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="mapArea" eType="#//MapArea" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ImportClass"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="path" upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CommonCode"> <eStructuralFeatures xsi:type="ecore:EReference" name="code" upperBound="-1" eType="#//Code" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Code" abstract="true"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="description" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="code" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" changeable="false" volatile="true" transient="true" derived="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CodeNone" eSuperTypes="#//Code"/> <eClassifiers xsi:type="ecore:EClass" name="CodeFragment" eSuperTypes="#//Code"> <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="CodeReference" eSuperTypes="#//Code"> <eStructuralFeatures xsi:type="ecore:EReference" name="reference" lowerBound="1" eType="#//Code"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CodeComposition" eSuperTypes="#//Code"> <eStructuralFeatures xsi:type="ecore:EReference" name="child" lowerBound="1" upperBound="-1" eType="#//Code" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="MapArea"> <eStructuralFeatures xsi:type="ecore:EReference" name="globalMap" eType="#//GlobalMap" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="classMap" upperBound="-1" eType="#//ClassMap" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="AbstractMap" abstract="true"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="specType" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="specCode" upperBound="-1" eType="#//Logic" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="GlobalMap" eSuperTypes="#//AbstractMap"/> <eClassifiers xsi:type="ecore:EClass" name="ClassMap" eSuperTypes="#//AbstractMap"> <eStructuralFeatures xsi:type="ecore:EReference" name="classRef" lowerBound="1" eType="ecore:EClass platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EClass"/> <eStructuralFeatures xsi:type="ecore:EReference" name="featureMap" upperBound="-1" eType="#//PropertyMap" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="PropertyMap" eSuperTypes="#//AbstractMap"> <eStructuralFeatures xsi:type="ecore:EReference" name="feature" lowerBound="1" eType="ecore:EClass platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EStructuralFeature"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="FeatureMapForAbstractClass" eSuperTypes="#//PropertyMap"> <eStructuralFeatures xsi:type="ecore:EReference" name="class2eclass" upperBound="-1" eType="ecore:EClass platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EStringToStringMapEntry" containment="true" resolveProxies="false"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Logic" abstract="true"> <eStructuralFeatures xsi:type="ecore:EReference" name="code" lowerBound="1" eType="#//Code" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="final" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean" defaultValueLiteral="false"/> <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="Create" eSuperTypes="#//Logic"/> <eClassifiers xsi:type="ecore:EClass" name="Destroy" eSuperTypes="#//Logic"/> <eClassifiers xsi:type="ecore:EClass" name="Lookup" eSuperTypes="#//Logic"/> <eClassifiers xsi:type="ecore:EClass" name="Identify" eSuperTypes="#//Logic"/> <eClassifiers xsi:type="ecore:EClass" name="Get" eSuperTypes="#//Logic"/> <eClassifiers xsi:type="ecore:EClass" name="Set" eSuperTypes="#//Logic"/> <eClassifiers xsi:type="ecore:EClass" name="ListSub" eSuperTypes="#//Logic"/> <eClassifiers xsi:type="ecore:EClass" name="Insert" eSuperTypes="#//Logic"/> <eClassifiers xsi:type="ecore:EClass" name="Remove" eSuperTypes="#//Logic"/> <eClassifiers xsi:type="ecore:EClass" name="UtilMethod" eSuperTypes="#//Logic"/> <eClassifiers xsi:type="ecore:EClass" name="UtilField" eSuperTypes="#//Logic"/> <eClassifiers xsi:type="ecore:EClass" name="EStringToStringMapEntry" instanceClassName="java.util.Map$Entry"> <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> </ecore:EPackage>
github:ecore:/data/DylanYu/smatrt/src/cn.edu.pku.sei.ra.wrapping.decorate/forpresent/DecModel.ecore
ecore
DecModel Decoration genModel importClass codeArea mapArea ImportClass path CommonCode code Code description code CodeNone CodeFragment text CodeReference reference CodeComposition child MapArea globalMap classMap AbstractMap specType specCode GlobalMap ClassMap classRef featureMap PropertyMap feature FeatureMapForAbstractClass class2eclass Logic code final false description Create Destroy Lookup Identify Get Set ListSub Insert Remove UtilMethod UtilField EStringToStringMapEntry java.util.Map$Entry java.util.Map$Entry key value
null
{"directed":true,"nodes":[{"nsPrefix":"DecModel","nsURI":"http://www.sei.pku.edu.cn/rsa/decmodel","name":"DecModel","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Decoration","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ImportClass","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CommonCode","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Code","instanceClass":null,"abstract":true,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CodeNone","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CodeFragment","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CodeReference","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CodeComposition","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MapArea","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AbstractMap","instanceClass":null,"abstract":true,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"GlobalMap","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ClassMap","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PropertyMap","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FeatureMapForAbstractClass","instanceClass":null,"abstract":false,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Logic","instanceClass":null,"abstract":true,"id":15,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Create","instanceClass":null,"abstract":false,"id":16,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Destroy","instanceClass":null,"abstract":false,"id":17,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Lookup","instanceClass":null,"abstract":false,"id":18,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Identify","instanceClass":null,"abstract":false,"id":19,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Get","instanceClass":null,"abstract":false,"id":20,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Set","instanceClass":null,"abstract":false,"id":21,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ListSub","instanceClass":null,"abstract":false,"id":22,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Insert","instanceClass":null,"abstract":false,"id":23,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Remove","instanceClass":null,"abstract":false,"id":24,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"UtilMethod","instanceClass":null,"abstract":false,"id":25,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"UtilField","instanceClass":null,"abstract":false,"id":26,"interface":false,"eClass":"EClass"},{"instanceTypeName":"java.util.Map$Entry","defaultValue":null,"instanceClassName":"java.util.Map$Entry","name":"EStringToStringMapEntry","instanceClass":"java.util.Map$Entry","abstract":false,"id":27,"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":"genModel","changeable":true,"resolveProxies":true,"lowerBound":1,"id":28,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"importClass","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":"codeArea","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":true,"unsettable":false,"transient":false,"unique":true,"name":"mapArea","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"},{"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"path","changeable":true,"lowerBound":0,"iD":false,"id":36,"derived":false},{"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":"code","changeable":true,"resolveProxies":true,"lowerBound":0,"id":38,"derived":false},{"id":39,"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":40,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":true,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":true,"unique":true,"name":"code","changeable":false,"lowerBound":1,"iD":false,"id":41,"derived":true},{"id":42,"eClass":"EGenericType"},{"id":43,"eClass":"EGenericType"},{"id":44,"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":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":"reference","changeable":true,"resolveProxies":true,"lowerBound":1,"id":48,"derived":false},{"id":49,"eClass":"EGenericType"},{"id":50,"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":"child","changeable":true,"resolveProxies":true,"lowerBound":1,"id":51,"derived":false},{"id":52,"eClass":"EGenericType"},{"id":53,"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":"globalMap","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":"classMap","changeable":true,"resolveProxies":true,"lowerBound":0,"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":"specType","changeable":true,"lowerBound":0,"iD":false,"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":"specCode","changeable":true,"resolveProxies":true,"lowerBound":0,"id":59,"derived":false},{"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":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"classRef","changeable":true,"resolveProxies":true,"lowerBound":1,"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":"featureMap","changeable":true,"resolveProxies":true,"lowerBound":0,"id":64,"derived":false},{"id":65,"eClass":"EGenericType"},{"id":66,"eClass":"EGenericType"},{"id":67,"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":"feature","changeable":true,"resolveProxies":true,"lowerBound":1,"id":68,"derived":false},{"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":"class2eclass","changeable":true,"resolveProxies":false,"lowerBound":0,"id":71,"derived":false},{"id":72,"eClass":"EGenericType"},{"id":73,"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":"code","changeable":true,"resolveProxies":true,"lowerBound":1,"id":74,"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":"final","changeable":true,"lowerBound":1,"iD":false,"id":75,"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":76,"derived":false},{"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"},{"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":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":"value","changeable":true,"lowerBound":0,"iD":false,"id":92,"derived":false},{"id":93,"eClass":"EGenericType"},{"id":94,"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":1,"target":0},{"source":1,"target":28},{"source":1,"target":29},{"source":1,"target":30},{"source":1,"target":31},{"source":28,"target":32},{"source":28,"target":1},{"source":29,"target":2},{"source":29,"target":33},{"source":29,"target":1},{"source":33,"target":2},{"source":30,"target":3},{"source":30,"target":34},{"source":30,"target":1},{"source":34,"target":3},{"source":31,"target":9},{"source":31,"target":35},{"source":31,"target":1},{"source":35,"target":9},{"source":2,"target":0},{"source":2,"target":36},{"source":36,"target":37},{"source":36,"target":2},{"source":3,"target":0},{"source":3,"target":38},{"source":38,"target":4},{"source":38,"target":39},{"source":38,"target":3},{"source":39,"target":4},{"source":4,"target":0},{"source":4,"target":40},{"source":4,"target":41},{"source":40,"target":42},{"source":40,"target":4},{"source":41,"target":43},{"source":41,"target":4},{"source":5,"target":0},{"source":5,"target":4},{"source":5,"target":44},{"source":44,"target":4},{"source":6,"target":0},{"source":6,"target":4},{"source":6,"target":45},{"source":6,"target":46},{"source":45,"target":47},{"source":45,"target":6},{"source":46,"target":4},{"source":7,"target":0},{"source":7,"target":4},{"source":7,"target":48},{"source":7,"target":49},{"source":48,"target":4},{"source":48,"target":50},{"source":48,"target":7},{"source":50,"target":4},{"source":49,"target":4},{"source":8,"target":0},{"source":8,"target":4},{"source":8,"target":51},{"source":8,"target":52},{"source":51,"target":4},{"source":51,"target":53},{"source":51,"target":8},{"source":53,"target":4},{"source":52,"target":4},{"source":9,"target":0},{"source":9,"target":54},{"source":9,"target":55},{"source":54,"target":11},{"source":54,"target":56},{"source":54,"target":9},{"source":56,"target":11},{"source":55,"target":12},{"source":55,"target":57},{"source":55,"target":9},{"source":57,"target":12},{"source":10,"target":0},{"source":10,"target":58},{"source":10,"target":59},{"source":58,"target":60},{"source":58,"target":10},{"source":59,"target":15},{"source":59,"target":61},{"source":59,"target":10},{"source":61,"target":15},{"source":11,"target":0},{"source":11,"target":10},{"source":11,"target":62},{"source":62,"target":10},{"source":12,"target":0},{"source":12,"target":10},{"source":12,"target":63},{"source":12,"target":64},{"source":12,"target":65},{"source":63,"target":66},{"source":63,"target":12},{"source":64,"target":13},{"source":64,"target":67},{"source":64,"target":12},{"source":67,"target":13},{"source":65,"target":10},{"source":13,"target":0},{"source":13,"target":10},{"source":13,"target":68},{"source":13,"target":69},{"source":68,"target":70},{"source":68,"target":13},{"source":69,"target":10},{"source":14,"target":0},{"source":14,"target":13},{"source":14,"target":71},{"source":14,"target":72},{"source":71,"target":73},{"source":71,"target":14},{"source":72,"target":13},{"source":15,"target":0},{"source":15,"target":74},{"source":15,"target":75},{"source":15,"target":76},{"source":74,"target":4},{"source":74,"target":77},{"source":74,"target":15},{"source":77,"target":4},{"source":75,"target":78},{"source":75,"target":15},{"source":76,"target":79},{"source":76,"target":15},{"source":16,"target":0},{"source":16,"target":15},{"source":16,"target":80},{"source":80,"target":15},{"source":17,"target":0},{"source":17,"target":15},{"source":17,"target":81},{"source":81,"target":15},{"source":18,"target":0},{"source":18,"target":15},{"source":18,"target":82},{"source":82,"target":15},{"source":19,"target":0},{"source":19,"target":15},{"source":19,"target":83},{"source":83,"target":15},{"source":20,"target":0},{"source":20,"target":15},{"source":20,"target":84},{"source":84,"target":15},{"source":21,"target":0},{"source":21,"target":15},{"source":21,"target":85},{"source":85,"target":15},{"source":22,"target":0},{"source":22,"target":15},{"source":22,"target":86},{"source":86,"target":15},{"source":23,"target":0},{"source":23,"target":15},{"source":23,"target":87},{"source":87,"target":15},{"source":24,"target":0},{"source":24,"target":15},{"source":24,"target":88},{"source":88,"target":15},{"source":25,"target":0},{"source":25,"target":15},{"source":25,"target":89},{"source":89,"target":15},{"source":26,"target":0},{"source":26,"target":15},{"source":26,"target":90},{"source":90,"target":15},{"source":27,"target":0},{"source":27,"target":91},{"source":27,"target":92},{"source":91,"target":93},{"source":91,"target":27},{"source":92,"target":94},{"source":92,"target":27}],"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="diamon" nsURI="http://diamon" nsPrefix="diamon"> <eClassifiers xsi:type="ecore:EClass" name="A"/> <eClassifiers xsi:type="ecore:EClass" name="B" eSuperTypes="#//A"/> <eClassifiers xsi:type="ecore:EClass" name="C" eSuperTypes="#//A"/> <eClassifiers xsi:type="ecore:EClass" name="D" eSuperTypes="#//B #//C"/> </ecore:EPackage>
github:ecore:/data/gemoc/ale-lang/tests/org.eclipse.emf.ecoretools.ale.core.tests/model/diamon.ecore
ecore
diamon A B C D
null
{"directed":true,"nodes":[{"nsPrefix":"diamon","nsURI":"http://diamon","name":"diamon","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"A","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"B","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"C","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"D","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"id":5,"eClass":"EGenericType"},{"id":6,"eClass":"EGenericType"},{"id":7,"eClass":"EGenericType"},{"id":8,"eClass":"EGenericType"}],"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":2,"target":1},{"source":2,"target":5},{"source":5,"target":1},{"source":3,"target":0},{"source":3,"target":1},{"source":3,"target":6},{"source":6,"target":1},{"source":4,"target":0},{"source":4,"target":2},{"source":4,"target":3},{"source":4,"target":7},{"source":4,"target":8},{"source":7,"target":2},{"source":8,"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="clazz" nsURI="http://www.kerblue.org/class/1.0" nsPrefix="clazz"> <eClassifiers xsi:type="ecore:EClass" name="ClassModelElement" eSuperTypes="../../com.bluexml.side.Common/model/Common.ecore#//ModelElement"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Definition: 'Has comment' allows to link a class to a comment."/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="hasComments" upperBound="-1" eType="#//ClassComment" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ClassPackage" eSuperTypes="../../com.bluexml.side.Common/model/Common.ecore#//Package"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Definition: a package allows to organize class/data; this is similar to Java package structure.&#xD;&#xA;Constraints: the fully qualified name of a class is compose of the successive names of the containing package and the attribute name of the class. This fully qualified name must be unique in your application. For instance, 'org.bluexml.library.mediaVideo' identifies the class mediaVideo contains in the 'library' package, itself contains in the 'bluexml' package, itself contains in the 'org' package."/> </eAnnotations> <eAnnotations source="http://www.eclipse.org/emf/2002/Ecore"> <details key="constraints" value="PackageNameNull"/> </eAnnotations> <eAnnotations source="http://www.bluexml.com/OCL"> <details key="PackageNameNull" value="not self.name.oclIsUndefined() and self.name &lt;> ''"/> </eAnnotations> <eOperations name="getAllPackages" upperBound="-1" eType="#//ClassPackage"> <eAnnotations source="http://www.bluexml.com/OCL"> <details key="body" value="ClassPackage.allInstances()"/> </eAnnotations> </eOperations> <eOperations name="getAllClasses" upperBound="-1" eType="#//Clazz"> <eAnnotations source="http://www.bluexml.com/OCL"> <details key="body" value="Clazz.allInstances()"/> </eAnnotations> </eOperations> <eOperations name="getAllEnumerations" upperBound="-1" eType="#//Enumeration"> <eAnnotations source="http://www.bluexml.com/OCL"> <details key="body" value="Enumeration.allInstances()"/> </eAnnotations> </eOperations> <eOperations name="getAllAspects" upperBound="-1" eType="#//Aspect"> <eAnnotations source="http://www.bluexml.com/OCL"> <details key="body" value="Aspect.allInstances()"/> </eAnnotations> </eOperations> <eOperations name="getAllAssociations" upperBound="-1" eType="#//Association"> <eAnnotations source="http://www.bluexml.com/OCL"> <details key="body" value="Association.allInstances()"/> </eAnnotations> </eOperations> <eOperations name="getAllAbstractClasses" upperBound="-1" eType="#//AbstractClass"> <eAnnotations source="http://www.bluexml.com/OCL"> <details key="body" value="AbstractClass.allInstances()"/> </eAnnotations> </eOperations> <eOperations name="getAllClassesFromEveryWhere" upperBound="-1" eType="#//Clazz"> <eAnnotations source="http://www.bluexml.com/OCL"> <details key="body" value="getAllAbstractClassesAndReferences() -> select(x | x.oclIsTypeOf(Clazz))"/> </eAnnotations> </eOperations> <eOperations name="getAllAspectsFromEveryWhere" upperBound="-1" eType="#//Aspect"> <eAnnotations source="http://www.bluexml.com/OCL"> <details key="body" value="getAllAbstractClassesAndReferences() -> select(x | x.oclIsTypeOf(Aspect))"/> </eAnnotations> </eOperations> <eOperations name="getAllConstraints" upperBound="-1" eType="ecore:EClass ../../com.bluexml.side.Common/model/Common.ecore#//Constraint"> <eAnnotations source="http://www.bluexml.com/OCL"> <details key="body" value="common::Constraint.allInstances()"/> </eAnnotations> </eOperations> <eOperations name="getAllAbstractClassesAndLinked" upperBound="-1" eType="#//AbstractClass"> <eAnnotations source="http://www.bluexml.com/OCL"> <details key="body" value="AbstractClass.allInstances().getAllLinkedAbstractClass()"/> </eAnnotations> </eOperations> <eOperations name="getAllAbstractClassesAndReferences" upperBound="-1" eType="#//AbstractClass"> <eAnnotations source="http://www.bluexml.com/OCL"> <details key="body" value="AbstractClass.allInstances().getAllLinkedAbstractClass() -> union(AbstractClass.allInstances().getAssociatedClasses())"/> </eAnnotations> </eOperations> <eOperations name="getAllCustomDataType" upperBound="-1" eType="ecore:EClass ../../com.bluexml.side.Common/model/Common.ecore#//CustomDataType"> <eAnnotations source="http://www.bluexml.com/OCL"> <details key="body" value="common::CustomDataType.allInstances()"/> </eAnnotations> </eOperations> <eStructuralFeatures xsi:type="ecore:EReference" name="classSet" upperBound="-1" eType="#//Clazz" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="associationSet" upperBound="-1" eType="#//Association" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="aspectSet" upperBound="-1" eType="#//Aspect" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="enumerationSet" upperBound="-1" eType="#//Enumeration" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="constraintSet" upperBound="-1" eType="ecore:EClass ../../com.bluexml.side.Common/model/Common.ecore#//Constraint" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="customDataTypeSet" upperBound="-1" eType="ecore:EClass ../../com.bluexml.side.Common/model/Common.ecore#//CustomDataType" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="AbstractClass" abstract="true" eSuperTypes="#//TitledNamedClassModelElement ../../com.bluexml.side.Common/model/Common.ecore#//Container"> <eAnnotations source="http://www.bluexml.com/OCL"> <details key="TwoModelElementWithSameName" value="AbstractClass.allInstances()->select(a | a.name = self.name and a.getContainer() = self.getContainer() and a &lt;> self)->size() = 0"/> <details key="NameNull" value="not self.name.oclIsUndefined() and self.name &lt;> ''"/> <details key="noSpecialCharacters" value="self.name.regexMatch('[a-zA-Z0-9-]*') = true"/> <details key="TwoAttributesSameName" value="self.attributes -> forAll( a1, a2 | a1 &lt;> a2 implies a1.name &lt;>a2.name)"/> </eAnnotations> <eAnnotations source="http://www.eclipse.org/emf/2002/Ecore"> <details key="constraints" value="TwoModelElementWithSameName NameNull noSpecialCharacters TwoAttributesSameName"/> </eAnnotations> <eOperations name="equalsForMerge" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"> <eAnnotations source="http://www.bluexml.com/OCL"> <details key="body" value="self.name = other.name and self.title = other.title"/> </eAnnotations> <eParameters name="other" eType="#//AbstractClass"/> </eOperations> <eOperations name="getInheritedClasses" upperBound="-1" eType="#//AbstractClass"> <eAnnotations source="http://www.bluexml.com/OCL"> <details key="body" value="self.generalizations -> asSet() -> iterate(e:AbstractClass;result :Set(AbstractClass)= Set{}| result -> including(e) -> union(e.getInheritedClasses()))"/> </eAnnotations> </eOperations> <eOperations name="getSubTypes" upperBound="-1" eType="#//Clazz"> <eAnnotations source="http://www.bluexml.com/OCL"> <details key="body" value="AbstractClass.allInstances() ->select(e:AbstractClass|e.generalizations() ->includes(self) )"/> </eAnnotations> </eOperations> <eOperations name="getAllSubTypes" upperBound="-1" eType="#//AbstractClass"> <eAnnotations source="http://www.bluexml.com/OCL"> <details key="body" value="AbstractClass.allInstances() ->select(e:AbstractClass|e.getInheritedClasses() ->includes(self) )"/> </eAnnotations> </eOperations> <eOperations name="getSourceAssociations" upperBound="-1" eType="#//Association"> <eAnnotations source="http://www.bluexml.com/OCL"> <details key="body" value="Association.allInstances() ->select(c:Association|self.isSource(c))"/> <details key="description" value="search association where this clazz is source"/> </eAnnotations> </eOperations> <eOperations name="isSource" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"> <eAnnotations source="http://www.bluexml.com/OCL"> <details key="body" value="(asso.firstEnd.linkedClass = self and asso.secondEnd.navigable) or (asso.secondEnd.linkedClass = self and asso.firstEnd.navigable)"/> <details key="description" value="search for class attributes, inherited one and finaly added to the class by aspect"/> </eAnnotations> <eParameters name="asso" lowerBound="1" eType="#//Association"/> </eOperations> <eOperations name="isTarget" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"> <eAnnotations source="http://www.bluexml.com/OCL"> <details key="body" value="(asso.firstEnd.linkedClass = self and asso.firstEnd.navigable) or (asso.secondEnd.linkedClass = self and asso.secondEnd.navigable)"/> <details key="description" value="search for class attributes, inherited one and finaly added to the class by aspect"/> </eAnnotations> <eParameters name="asso" lowerBound="1" eType="#//Association"/> </eOperations> <eOperations name="getTargetAssociations" upperBound="-1" eType="#//Association"> <eAnnotations source="http://www.bluexml.com/OCL"> <details key="body" value="Association.allInstances() ->select(c:Association|self.isTarget(c))"/> <details key="description" value="search association where this clazz is target"/> </eAnnotations> </eOperations> <eOperations name="getSourceAssociationEnds" upperBound="-1" eType="#//AssociationEnd"> <eAnnotations source="http://www.bluexml.com/OCL"> <details key="body" value="AssociationEnd.allInstances() -> select (ae | ae.getOpposite().navigable and ae.linkedClass = self )"/> <details key="description" value="returns association ends where this clazz is source"/> </eAnnotations> </eOperations> <eOperations name="getTargetAssociationEnds" upperBound="-1" eType="#//AssociationEnd"> <eAnnotations source="http://www.bluexml.com/OCL"> <details key="body" value="AssociationEnd.allInstances() -> select (ae | ae.navigable and ae.linkedClass = self)"/> <details key="description" value="returns association ends where this clazz is target"/> </eAnnotations> </eOperations> <eOperations name="getAllSourceAssociations" upperBound="-1" eType="#//Association"> <eAnnotations source="http://www.bluexml.com/OCL"> <details key="body" value="getAllLinkedAbstractClass().getSourceAssociations()"/> <details key="description" value="search association where this AbstractClass is source"/> </eAnnotations> </eOperations> <eOperations name="getAllTargetAssociations" upperBound="-1" eType="#//Association"> <eAnnotations source="http://www.bluexml.com/OCL"> <details key="body" value="getAllLinkedAbstractClass().getTargetAssociations()"/> <details key="description" value="search associations where this AbstractClass is source or one of inheritedClass"/> </eAnnotations> </eOperations> <eOperations name="getAssociatedClasses" upperBound="-1" eType="#//AbstractClass"> <eAnnotations source="http://www.bluexml.com/OCL"> <details key="body" value="self.getAllSourceAssociations().getTarget() ->asOrderedSet()"/> </eAnnotations> </eOperations> <eOperations name="getAllSourceAssociationEnds" upperBound="-1" eType="#//AssociationEnd"> <eAnnotations source="http://www.bluexml.com/OCL"> <details key="body" value="AssociationEnd.allInstances() -> select (ae | ae.linkedClass.oclIsTypeOf(AbstractClass) and ae.getOpposite().navigable and self.getInheritedClasses() -> including (self) ->includes(ae.linkedClass.oclAsType(AbstractClass)) )"/> <details key="description" value="returns association ends where this clazz is source including inherited associations (association ends cannot link to aspects)"/> </eAnnotations> </eOperations> <eOperations name="getAllTargetAssociationEnds" upperBound="-1" eType="#//AssociationEnd"> <eAnnotations source="http://www.bluexml.com/OCL"> <details key="body" value="AssociationEnd.allInstances() -> select (ae | ae.navigable and self.getInheritedClasses() -> including (self) ->includes(ae.linkedClass) )"/> <details key="description" value="returns association ends where this clazz is target including inherited associations (association ends cannot link to aspects)"/> </eAnnotations> </eOperations> <eOperations name="getAllAttributes" upperBound="-1" eType="#//Attribute"> <eAnnotations source="http://www.bluexml.com/OCL"> <details key="body" value="getAllLinkedAbstractClass().attributes"/> <details key="description" value="search for class attributes, inherited one and finaly added to the class by aspect"/> </eAnnotations> </eOperations> <eOperations name="getClassAndAspectAttributes" upperBound="-1" eType="#//Attribute"> <eAnnotations source="http://www.bluexml.com/OCL"> <details key="body" value="self.attributes -> asSet() -> union(self.getAspectAttributes())"/> </eAnnotations> </eOperations> <eOperations name="getAspectAttributes" upperBound="-1" eType="#//Attribute"> <eAnnotations source="http://www.bluexml.com/OCL"> <details key="body" value="self.aspects -> asSet() -> iterate(e:Aspect;result :Set(Attribute)= Set{}| result -> union(e.getAllAttributes() ->asSet()))"/> </eAnnotations> </eOperations> <eOperations name="getAllInheritedClassAndAspectAttributes" upperBound="-1" eType="#//Attribute"> <eAnnotations source="http://www.bluexml.com/OCL"> <details key="body" value="self.getInheritedClasses() ->asSet().oclAsType(Clazz) ->iterate(cl:Clazz;result:Set(Attribute)=Set{}|result->union(cl.getClassAndAspectAttributes() ->asSet()))"/> <details key="description" value="search attributes than is describe in inherited classes (with Aspects)"/> </eAnnotations> </eOperations> <eOperations name="getAllInheritedAspects" upperBound="-1" eType="#//Aspect"> <eAnnotations source="http://www.bluexml.com/OCL"> <details key="body" value="self.getInheritedClasses().aspects"/> </eAnnotations> </eOperations> <eOperations name="getAllLinkedAbstractClass" upperBound="-1" eType="#//AbstractClass"> <eAnnotations source="http://www.bluexml.com/OCL"> <details key="body" value="let selfAndInherited : Set(AbstractClass) = self.getInheritedClasses() -> including(self)&#xA;&#x9;&#x9;in selfAndInherited -> union(selfAndInherited.aspects.getAllLinkedAbstractClass())"/> </eAnnotations> </eOperations> <eOperations name="getAllLinkedClasses" upperBound="-1" eType="#//Clazz"> <eAnnotations source="http://www.bluexml.com/OCL"> <details key="body" value="getAllLinkedAbstractClass() -> select(x | x.oclIsTypeOf(Clazz))"/> </eAnnotations> </eOperations> <eOperations name="getAllLinkedAspects" upperBound="-1" eType="#//Aspect"> <eAnnotations source="http://www.bluexml.com/OCL"> <details key="body" value="getAllLinkedAbstractClass() -> select(x | x.oclIsTypeOf(Aspect))"/> </eAnnotations> </eOperations> <eStructuralFeatures xsi:type="ecore:EReference" name="attributes" upperBound="-1" eType="#//Attribute" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="generalizations" upperBound="-1" eType="#//AbstractClass"/> <eStructuralFeatures xsi:type="ecore:EReference" name="aspects" upperBound="-1" eType="#//Aspect"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Clazz" eSuperTypes="#//AbstractClass"> <eAnnotations source="http://www.bluexml.com/OCL"> <details key="InheritanceCycle" value="not self.generalizations ->closure(generalizations)->includes(self)"/> </eAnnotations> <eAnnotations source="http://www.eclipse.org/emf/2002/Ecore"> <details key="constraints" value="ClassWithTwoAttributesSameName InheritanceCycle"/> </eAnnotations> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Definition: a class or data defines a category of instance of objects which shares exactly the same set of attributes. In ECM applications, a class relates to a content type. SIDE Data model describes data structure for persistence through class and attributes and keeps notation close to UML class diagram to reduce learning curve.&#xD;&#xA;Constraints: the fully qualified name of a class is compose of the successive names of the containing package and the attribute name of the class. This fully qualified name must be unique in your application. For instance, 'org.bluexml.library.mediaVideo' identifies the class mediaVideo contains in the 'library' package, itself contains in the 'bluexml' package, itself contains in the 'org' package.&#xD;&#xA;Example: in an Alfresco application the predefined 'cm:content' is modelized as a class."/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="operations" upperBound="-1" eType="ecore:EClass ../../com.bluexml.side.Common/model/Common.ecore#//OperationComponent" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="abstract" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Definition: this attribute indicates if the class is abstract; an abstract class cannot be instanciated but serve to define an object of more general level. For example, in the library, an abstract class 'media' may be defined to group all the kind of medias; the class 'mediaVideo' inherits of media to specialise 'media' as the media on video support.&#xD;&#xA;Constraint: during modeling, think to class and abstract class as real life objects, class being a specialisation of abstract class like the class 'novel' inherits of the abstracts class 'book'."/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="deprecated" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Definition: set this attribute to true if the class is no more used in new version of the model but is only kept to ensure compatibility with previous models."/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Association" eSuperTypes="#//TitledNamedClassModelElement"> <eAnnotations source="http://www.bluexml.com/OCL"> <details key="reflexiveAssociationMustHaveRole" value="if (self.firstEnd.oclIsTypeOf(Clazz) and self.secondEnd.oclIsTypeOf(Clazz)) then&#xA;( self.isReflexive() and self.firstEnd.navigable and self.secondEnd.navigable ) implies ( ( not self.firstEnd.name.oclIsUndefined() and self.firstEnd.name &lt;> '' ) and ( not self.secondEnd.name.oclIsUndefined() and self.secondEnd.name &lt;> '' ))&#xA;else&#xA;true&#xA;endif"/> <details key="MinAndMaxTarget" value="( self.secondEnd.cardMax &lt;> '-1' ) implies ( self.secondEnd.cardMin &lt;= self.secondEnd.cardMax )"/> <details key="MinAndMaxSource" value="( self.firstEnd.cardMax &lt;> '-1' ) implies ( self.firstEnd.cardMin &lt;= self.firstEnd.cardMax )"/> <details key="NameNull" value="not self.name.oclIsUndefined() and self.name &lt;> ''"/> <details key="SourceNull" value="self.firstEnd.linkedClass->notEmpty()"/> <details key="TargetNull" value="self.secondEnd.linkedClass->notEmpty()"/> <details key="AtLeastOneNavigableEdge" value="(firstEnd.navigable or secondEnd.navigable)"/> <details key="ClassCantBeReferencedbyTwoSameNameAssociation" value="if (self.getSource()->first().oclIsTypeOf(Aspect)) then&#xA;&#x9;Association.allInstances()->select(a | a.getSource() = self.getSource())->asSet()->select(a:Association|a.name = self.name)->size() = 1&#xA;else&#xA;&#x9;if (not (self.getSource().generalizations ->closure(generalizations)->intersection(self.getSource()) ->size() >0)) then&#xA;&#x9;&#x9;self.getSource().getAllSourceAssociations() ->asSet() ->select(a:Association|a.name = self.name)->size() = 1&#xA;&#x9;else&#xA;&#x9;&#x9;0 = 1&#xA;&#x9;endif&#xA;endif"/> <details key="IfAggregationOrCompositionThenUnidirectionalAssociation" value="(self.associationType &lt;> AssociationType::Direct) implies (self.firstEnd.navigable xor self.secondEnd.navigable )"/> <details key="twoWayNavigation" value="(self.firstEnd.navigable and self.secondEnd.navigable) implies (self.firstEnd.name &lt;> '' and self.secondEnd.name &lt;> '')"/> <details key="noSpecialCharacters" value="self.name.regexMatch('[\\w\(\),]*') = true"/> </eAnnotations> <eAnnotations source="http://www.eclipse.org/emf/2002/Ecore"> <details key="constraints" value="reflexiveAssociationMustHaveRole MinAndMaxTarget MinAndMaxSource NameNull SourceNull TargetNull AtLeastOneNavigableEdge ClassCantBeReferencedbyTwoSameNameAssociation IfAggregationOrCompositionThenUnidirectionalAssociation doubleNavigable noSpecialChracters"/> <details key="warning" value="twoWayNavigation"/> </eAnnotations> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Definition: Association allows to link data sharing particular relationships; for instance, an association may be created between a resume content and a working contract content."/> </eAnnotations> <eOperations name="equalsForMerge" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"> <eAnnotations source="http://www.bluexml.com/OCL"> <details key="body" value="if( self.secondEnd.linkedClass.oclIsKindOf(Classe))&#xD;&#xA;then&#xD;&#xA;self.secondEnd.linkedClass.oclAsType(Classe).equalsForMerge(other.secondEnd.linkedClass.oclAsType(Classe)) and self.firstEnd.linkedClass.oclAsType(Classe).equalsForMerge(other.firstEnd.linkedClass.oclAsType(Classe))&#xD;&#xA;and self.name = other.name&#xD;&#xA;else&#xD;&#xA;true&#xD;&#xA;endif&#xD;&#xA;"/> </eAnnotations> <eParameters name="other" eType="#//Association"/> </eOperations> <eOperations name="isReflexive" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"> <eAnnotations source="http://www.bluexml.com/OCL"> <details key="body" value="(self.firstEnd.linkedClass.getInheritedClasses() ->including(self.firstEnd.linkedClass) ->includes(self.secondEnd.linkedClass) and self.secondEnd.navigable)&#xD;or &#xD;(self.secondEnd.linkedClass.getInheritedClasses() ->including(self.secondEnd.linkedClass) ->includes(self.firstEnd.linkedClass) and self.firstEnd.navigable)&#xD;"/> </eAnnotations> </eOperations> <eOperations name="getSource" lowerBound="1" upperBound="2" eType="#//AbstractClass"> <eAnnotations source="http://www.bluexml.com/OCL"> <details key="body" value="if (self.firstEnd.navigable and self.secondEnd.navigable) then &#xD;&#x9;Set{} ->including(self.firstEnd.linkedClass) ->including(self.secondEnd.linkedClass)&#xD;else if (self.firstEnd.navigable) then&#xD;&#x9;&#x9;Set{}->including(self.secondEnd.linkedClass)&#xD;&#x9;else if (self.secondEnd.navigable) then &#xD;&#x9;&#x9;&#x9;Set{}->including(self.firstEnd.linkedClass)&#xD;&#x9;&#x9;else&#xD;&#x9;&#x9;&#x9;Set{}&#xD;&#x9;&#x9;endif&#xD;&#x9;endif&#xD;endif"/> <details key="description" value="get source Clazz"/> </eAnnotations> </eOperations> <eOperations name="getTarget" lowerBound="1" upperBound="2" eType="#//AbstractClass"> <eAnnotations source="http://www.bluexml.com/OCL"> <details key="body" value="if (self.firstEnd.navigable and self.secondEnd.navigable) then &#xD;&#x9;Set{} ->including(self.firstEnd.linkedClass) ->including(self.secondEnd.linkedClass)&#xD;else if (self.secondEnd.navigable) then&#xD;&#x9;&#x9;Set{}->including(self.secondEnd.linkedClass)&#xD;&#x9;else if (self.firstEnd.navigable) then &#xD;&#x9;&#x9;&#x9;Set{}->including(self.firstEnd.linkedClass)&#xD;&#x9;&#x9;else&#xD;&#x9;&#x9;&#x9;Set{}&#xD;&#x9;&#x9;endif&#xD;&#x9;endif&#xD;endif"/> <details key="description" value="get source Clazz"/> </eAnnotations> </eOperations> <eOperations name="getAssociationEnd" upperBound="2" eType="#//AssociationEnd"> <eAnnotations source="http://www.bluexml.com/OCL"> <details key="body" value="Sequence{self.firstEnd,self.secondEnd} -> select(ae | ae.linkedClass = clazz)&#xA;"/> <details key="description" value="returns the association end for which the parameter class (clazz) is linked to"/> </eAnnotations> <eParameters name="clazz" eType="#//AbstractClass"/> </eOperations> <eOperations name="isTwoWay" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"> <eAnnotations source="http://www.bluexml.com/OCL"> <details key="body" value="self.firstEnd.navigable and self.secondEnd.navigable"/> </eAnnotations> </eOperations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="associationType" eType="#//AssociationType"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Definition: an association may be of various type according to the relationship which must be established between two types of data:&#xD;&#xA;- Simple: this indicates that there are links between associated data instanes.&#xD;&#xA;- Aggregation: this indicates a stronger relation between data types which is usually a relation of inclusion; for instance, an association between a wiki and a page.&#xD;&#xA;- Composition: this indicates a composite aggregation and that if a container data type instance is suppressed, the associated contained data type instances must also be suppressed; for instance, if a wiki is suppressed, all its pages must be suppressed."/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="firstEnd" eType="#//AssociationEnd" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="secondEnd" eType="#//AssociationEnd" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="ordered" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Attribute" eSuperTypes="#//TitledNamedClassModelElement"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Definition: a class property descibes a characteristic of the concerned class. For example, the property 'title' of the class 'book' gives the title of the book.&#xD;&#xA;Constraints: &#xD;&#xA;- the name of a class property must be unique between all the direct and inherited property of a class.&#xD;&#xA;- a property is associated to a single class or abstract class; a class or an abstract class may contain zero, one or several properties.&#xD;&#xA;"/> </eAnnotations> <eAnnotations source="http://www.bluexml.com/OCL"> <details key="NameNull" value="not self.name.oclIsUndefined() and self.name &lt;> ''"/> <details key="noSpecialCharacters" value="self.name.regexMatch('[a-zA-Z0-9-]*') = true"/> </eAnnotations> <eAnnotations source="http://www.eclipse.org/emf/2002/Ecore"> <details key="constraints" value="NameNull noSpecialCharacters "/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="typ" eType="ecore:EEnum ../../com.bluexml.side.Common/model/Common.ecore#//DataType" defaultValueLiteral="String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Definition: the type of a class property allows to define its format; the supported property types are boolean, byte, char, double, float, int, long, short, String, Date, Object.&#xD;&#xA;"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="initialValue" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Definition: this attribute allows to set up an initial value to the class property at creation of an object."/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="visibility" eType="ecore:EEnum ../../com.bluexml.side.Common/model/Common.ecore#//Visibility" defaultValueLiteral="Private"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Definition: this attribute indicates the scope of the class property the possible values are:&#xD;&#xA;- public: the class property is visible to other classes through association.&#xD;&#xA;- private: the class property is not visible to other classes.&#xD;&#xA;- protected: the class property cannot be updated."/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="valueList" eType="#//Enumeration"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="unique" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean" defaultValueLiteral="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Definition: if true, this attribute inidcates that the class property is part of the unique constraint of the class. This means that the set of values of all the unique property must be unique through all the instances of the class."/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="mockup" upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="customType" eType="ecore:EClass ../../com.bluexml.side.Common/model/Common.ecore#//CustomDataType"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Enumeration" eSuperTypes="../../com.bluexml.side.Common/model/Common.ecore#//NamedModelElement"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Definition: an enumeration represents a list of values which may be associated to a class property.&#xD;&#xA;Example: the list of languages associated to the property 'language' of a book.&#xD;&#xA;Deprecated: the link'depends of' was used in previous release of SIDE to model a relation between enumeration like between a department list and a country list; this link has been kept for compatibility reason but is no more useful at the data level and is now managed between fields of Form model as a management rule."/> </eAnnotations> <eAnnotations source="http://www.bluexml.com/OCL"> <details key="enumDynamicAreNotAvailable" value="dynamic=false"/> </eAnnotations> <eAnnotations source="http://www.eclipse.org/emf/2002/Ecore"> <details key="warning" value="enumDynamicAreNotAvailable"/> <details key="constraints" value="enumDynamicAreNotAvailable"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="literals" upperBound="-1" eType="#//EnumerationLiteral" containment="true" eOpposite="#//EnumerationLiteral/enum"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="dynamic" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBooleanObject" defaultValueLiteral="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Definition: if false, this attribute indicates that the values of the enumeration are predefined and fixed: they are defined during modeling. If true, this attribute indicates that the set of values of the enumeration may be extended at application runtime."/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="depends" eType="#//Enumeration"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="EnumerationLiteral"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Defintion: the item of an enumeration; it is composed of a name and a value."/> </eAnnotations> <eAnnotations source="http://www.bluexml.com/OCL"> <details key="NameNull" value="not self.name.oclIsUndefined() and self.name &lt;> ''"/> <details key="noSpecialCharacters" value="self.name.regexMatch('[\\w]*') = true"/> </eAnnotations> <eAnnotations source="http://www.eclipse.org/emf/2002/Ecore"> <details key="constraints" value="NameNull"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Definition: the value of an item of an enumeration.&#xD;&#xA;Constraints: a single value may be defined for a name.&#xD;&#xA;Example: consider the enumeration mediaType : {(videoType, Video), (paperType, Paper), (audioType, Audio),(numericType, File), ...}; a Video media has the mediaType of name videoType and of value Video."/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Definition: the identifier of an item of an enumeration.&#xD;&#xA;Constraint: the name is unique in an enumeration"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="enum" eType="#//Enumeration" eOpposite="#//Enumeration/literals"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="AssociationType"> <eLiterals name="Direct"/> <eLiterals name="Aggregation" value="1"/> <eLiterals name="Composition" value="2" literal="Composition"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Aspect" eSuperTypes="#//AbstractClass"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Definition: an aspect allows to group attributes in order to isolate a specific characteristic of a data; an aspect may be associated to many different class or content type. To link an aspect to a data type, use the 'Has aspect' link.&#xD;&#xA;Example: if you want to have an automatic revision number for all the content types you defined, you can create an aspect 'Revision' which contains an attribute 'revisionNumber'. In your data modeling, you apply the aspect 'Revision' to all the content types.&#xD;&#xA;Constraints: the fully qualified name of an aspect is compose of the successive names of the containing package and the attribute name of the aspect. This fully qualified name must be unique in your application. For instance, 'org.bluexml.library.revision' identifies the aspect Revision contains in the 'library' package, itself contains in the 'bluexml' package, itself contains in the 'org' package."/> </eAnnotations> <eOperations name="equalsForMerge" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"> <eAnnotations source="http://www.bluexml.com/OCL"> <details key="body" value="self.name = other.name and self.title = other.title"/> </eAnnotations> <eParameters name="other" eType="#//Aspect"/> </eOperations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="TitledNamedClassModelElement" abstract="true" eSuperTypes="../../com.bluexml.side.Common/model/Common.ecore#//NamedModelElement #//ClassModelElement"> <eOperations name="getLabel" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"> <eAnnotations source="http://www.bluexml.com/OCL"> <details key="body" value="if self.title.oclIsUndefined() or self.title.size() = 0 then&#xD; self.name &#xD;else&#xD; self.title &#xD;endif"/> </eAnnotations> </eOperations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="title" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Definition: the title of the concerned elements. &#xD;&#xA;Constraints: do not forget to set up this value in order to have label associated to generated elements."/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ClassComment" eSuperTypes="../../com.bluexml.side.Common/model/Common.ecore#//Comment"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Definition: Comments may be used to describe class. Double click to fill up the comment body with the text you want."/> </eAnnotations> <eAnnotations source="InternalDoc"> <details key="documentation" value="Used because we can't put a Comment (from Common) on the diagram. "/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="AssociationEnd" eSuperTypes="#//TitledNamedClassModelElement ../../com.bluexml.side.Common/model/Common.ecore#//Comment"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Definition: one of the two sides of an association; it references a class/data."/> </eAnnotations> <eAnnotations source="http://www.bluexml.com/OCL"> <details key="noSpecialCharacters" value="self.name.regexMatch('[\w\(\),]*') = true"/> </eAnnotations> <eAnnotations source="http://www.eclipse.org/emf/2002/Ecore"> <details key="constraints" value="noSpecialChracters"/> </eAnnotations> <eOperations name="isMandatory" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"> <eAnnotations source="http://www.bluexml.com/OCL"> <details key="body" value="cardMin.toInteger() > 0"/> <details key="description" value="returns true if the association end is mandatory"/> </eAnnotations> </eOperations> <eOperations name="isMany" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"> <eAnnotations source="http://www.bluexml.com/OCL"> <details key="body" value="(cardMax.toInteger() > 1) or (cardMax.toInteger() = -1)"/> <details key="description" value="returns true if the association end has a multiple cardinality"/> </eAnnotations> </eOperations> <eOperations name="getOpposite" eType="#//AssociationEnd"> <eAnnotations source="http://www.bluexml.com/OCL"> <details key="body" value="let parent : Association = Association.allInstances() -> select(a | a.firstEnd = self or a.secondEnd = self) -> asSequence() -> first() in if (parent.firstEnd = self) then parent.secondEnd else parent.firstEnd endif"/> <details key="description" value="returns the other side of the containing association"/> </eAnnotations> </eOperations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="cardMin" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" defaultValueLiteral="0"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Definition: the minimum number (minimum cardinality) of instances of the targeted class which participate to the association.&#xD;&#xA;Example: let's consider a relation between a resume content and a working contract. The resume end association having a minimum cardinality of 0 means that a working contract may not be related to a resume. A cardinality of 1 indicates that at least one resume must be associated to a working contract.&#xD;&#xA;Constraints: the number must be equals or superior to 0."/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="cardMax" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" defaultValueLiteral="1"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Definition: the maximum number (maximum cardinality) of instances of the targeted class which participate to the association.&#xD;&#xA;Example: let's consider a relation between a resume content and a working contract. The resume end association having a maximum cardinality of 1 means that a working contract is related to at most one resume. A cardinality of * indicates that as many resume as you want may be associated to a working contract.&#xD;&#xA;Constraints: the number must be superior to 0."/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="navigable" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Definition: if false, this boolean indicates that the association is not navigable ie it is not possible to pass through the association.&#xD;&#xA;Example: let's consider a relation between a resume content and a working contract which is not navigable on the resume end association and navigable on the working contract. This means that the working contract instances will not store resume instances list (it is not possible from a working contract to list the associated resume) and that the resume instances will store working contract instances list (it is possible from a resume to list the associated working contracts)."/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="linkedClass" eType="#//AbstractClass"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Model" eSuperTypes="#//ClassPackage"/> </ecore:EPackage>
github:ecore:/data/bluedolmen/SIDE/MetaModel/Class/trunk/com.bluexml.side.Class/model/Class.ecore
ecore
clazz ClassModelElement hasComments ClassPackage getAllPackages getAllClasses getAllEnumerations getAllAspects getAllAssociations getAllAbstractClasses getAllClassesFromEveryWhere getAllAspectsFromEveryWhere getAllConstraints getAllAbstractClassesAndLinked getAllAbstractClassesAndReferences getAllCustomDataType classSet associationSet aspectSet enumerationSet constraintSet customDataTypeSet AbstractClass equalsForMerge other getInheritedClasses getSubTypes getAllSubTypes getSourceAssociations isSource asso isTarget asso getTargetAssociations getSourceAssociationEnds getTargetAssociationEnds getAllSourceAssociations getAllTargetAssociations getAssociatedClasses getAllSourceAssociationEnds getAllTargetAssociationEnds getAllAttributes getClassAndAspectAttributes getAspectAttributes getAllInheritedClassAndAspectAttributes getAllInheritedAspects getAllLinkedAbstractClass getAllLinkedClasses getAllLinkedAspects attributes generalizations aspects Clazz operations abstract deprecated Association equalsForMerge other isReflexive getSource getTarget getAssociationEnd clazz isTwoWay associationType firstEnd secondEnd ordered Attribute typ String initialValue visibility Private valueList unique false mockup customType Enumeration literals dynamic false depends EnumerationLiteral value name enum AssociationType Direct Direct Aggregation Aggregation Composition Composition Aspect equalsForMerge other TitledNamedClassModelElement getLabel title ClassComment AssociationEnd isMandatory isMany getOpposite cardMin 0 cardMax 1 navigable linkedClass Model
null
{"directed":true,"nodes":[{"nsPrefix":"clazz","nsURI":"http://www.kerblue.org/class/1.0","name":"clazz","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ClassModelElement","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ClassPackage","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AbstractClass","instanceClass":null,"abstract":true,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Clazz","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Association","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Attribute","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Enumeration","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EnumerationLiteral","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"AssociationType","instanceClass":null,"id":9,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Aspect","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TitledNamedClassModelElement","instanceClass":null,"abstract":true,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ClassComment","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AssociationEnd","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Model","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":"hasComments","changeable":true,"resolveProxies":true,"lowerBound":0,"id":15,"derived":false},{"id":16,"eClass":"EGenericType"},{"id":17,"eClass":"EGenericType"},{"ordered":true,"upperBound":-1,"unique":true,"name":"getAllPackages","lowerBound":0,"id":18,"many":true,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":-1,"unique":true,"name":"getAllClasses","lowerBound":0,"id":19,"many":true,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":-1,"unique":true,"name":"getAllEnumerations","lowerBound":0,"id":20,"many":true,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":-1,"unique":true,"name":"getAllAspects","lowerBound":0,"id":21,"many":true,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":-1,"unique":true,"name":"getAllAssociations","lowerBound":0,"id":22,"many":true,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":-1,"unique":true,"name":"getAllAbstractClasses","lowerBound":0,"id":23,"many":true,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":-1,"unique":true,"name":"getAllClassesFromEveryWhere","lowerBound":0,"id":24,"many":true,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":-1,"unique":true,"name":"getAllAspectsFromEveryWhere","lowerBound":0,"id":25,"many":true,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":-1,"unique":true,"name":"getAllConstraints","lowerBound":0,"id":26,"many":true,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":-1,"unique":true,"name":"getAllAbstractClassesAndLinked","lowerBound":0,"id":27,"many":true,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":-1,"unique":true,"name":"getAllAbstractClassesAndReferences","lowerBound":0,"id":28,"many":true,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":-1,"unique":true,"name":"getAllCustomDataType","lowerBound":0,"id":29,"many":true,"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":"classSet","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":"associationSet","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":"aspectSet","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":true,"unsettable":false,"transient":false,"unique":true,"name":"enumerationSet","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":"constraintSet","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":"customDataTypeSet","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"},{"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"},{"id":49,"eClass":"EGenericType"},{"id":50,"eClass":"EGenericType"},{"id":51,"eClass":"EGenericType"},{"id":52,"eClass":"EGenericType"},{"id":53,"eClass":"EGenericType"},{"id":54,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"equalsForMerge","lowerBound":0,"id":55,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":-1,"unique":true,"name":"getInheritedClasses","lowerBound":0,"id":56,"many":true,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":-1,"unique":true,"name":"getSubTypes","lowerBound":0,"id":57,"many":true,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":-1,"unique":true,"name":"getAllSubTypes","lowerBound":0,"id":58,"many":true,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":-1,"unique":true,"name":"getSourceAssociations","lowerBound":0,"id":59,"many":true,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"isSource","lowerBound":1,"id":60,"many":false,"required":true,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"isTarget","lowerBound":1,"id":61,"many":false,"required":true,"eClass":"EOperation"},{"ordered":true,"upperBound":-1,"unique":true,"name":"getTargetAssociations","lowerBound":0,"id":62,"many":true,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":-1,"unique":true,"name":"getSourceAssociationEnds","lowerBound":0,"id":63,"many":true,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":-1,"unique":true,"name":"getTargetAssociationEnds","lowerBound":0,"id":64,"many":true,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":-1,"unique":true,"name":"getAllSourceAssociations","lowerBound":0,"id":65,"many":true,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":-1,"unique":true,"name":"getAllTargetAssociations","lowerBound":0,"id":66,"many":true,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":-1,"unique":true,"name":"getAssociatedClasses","lowerBound":0,"id":67,"many":true,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":-1,"unique":true,"name":"getAllSourceAssociationEnds","lowerBound":0,"id":68,"many":true,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":-1,"unique":true,"name":"getAllTargetAssociationEnds","lowerBound":0,"id":69,"many":true,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":-1,"unique":true,"name":"getAllAttributes","lowerBound":0,"id":70,"many":true,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":-1,"unique":true,"name":"getClassAndAspectAttributes","lowerBound":0,"id":71,"many":true,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":-1,"unique":true,"name":"getAspectAttributes","lowerBound":0,"id":72,"many":true,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":-1,"unique":true,"name":"getAllInheritedClassAndAspectAttributes","lowerBound":0,"id":73,"many":true,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":-1,"unique":true,"name":"getAllInheritedAspects","lowerBound":0,"id":74,"many":true,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":-1,"unique":true,"name":"getAllLinkedAbstractClass","lowerBound":0,"id":75,"many":true,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":-1,"unique":true,"name":"getAllLinkedClasses","lowerBound":0,"id":76,"many":true,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":-1,"unique":true,"name":"getAllLinkedAspects","lowerBound":0,"id":77,"many":true,"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":"attributes","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":"generalizations","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":false,"unsettable":false,"transient":false,"unique":true,"name":"aspects","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,"unique":true,"name":"other","lowerBound":0,"id":84,"many":false,"required":false,"eClass":"EParameter"},{"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,"unique":true,"name":"asso","lowerBound":1,"id":91,"many":false,"required":true,"eClass":"EParameter"},{"id":92,"eClass":"EGenericType"},{"id":93,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"asso","lowerBound":1,"id":94,"many":false,"required":true,"eClass":"EParameter"},{"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"},{"id":110,"eClass":"EGenericType"},{"id":111,"eClass":"EGenericType"},{"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":"operations","changeable":true,"resolveProxies":true,"lowerBound":0,"id":115,"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":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":"deprecated","changeable":true,"lowerBound":0,"iD":false,"id":117,"derived":false},{"id":118,"eClass":"EGenericType"},{"id":119,"eClass":"EGenericType"},{"id":120,"eClass":"EGenericType"},{"id":121,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"equalsForMerge","lowerBound":0,"id":122,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"isReflexive","lowerBound":0,"id":123,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":2,"unique":true,"name":"getSource","lowerBound":1,"id":124,"many":true,"required":true,"eClass":"EOperation"},{"ordered":true,"upperBound":2,"unique":true,"name":"getTarget","lowerBound":1,"id":125,"many":true,"required":true,"eClass":"EOperation"},{"ordered":true,"upperBound":2,"unique":true,"name":"getAssociationEnd","lowerBound":0,"id":126,"many":true,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"isTwoWay","lowerBound":1,"id":127,"many":false,"required":true,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"associationType","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":"firstEnd","changeable":true,"resolveProxies":true,"lowerBound":0,"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":"secondEnd","changeable":true,"resolveProxies":true,"lowerBound":0,"id":130,"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":"ordered","changeable":true,"lowerBound":0,"iD":false,"id":131,"derived":false},{"id":132,"eClass":"EGenericType"},{"id":133,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"other","lowerBound":0,"id":134,"many":false,"required":false,"eClass":"EParameter"},{"id":135,"eClass":"EGenericType"},{"id":136,"eClass":"EGenericType"},{"id":137,"eClass":"EGenericType"},{"id":138,"eClass":"EGenericType"},{"id":139,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"clazz","lowerBound":0,"id":140,"many":false,"required":false,"eClass":"EParameter"},{"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":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"String","unsettable":false,"transient":false,"unique":true,"name":"typ","changeable":true,"lowerBound":0,"iD":false,"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":"initialValue","changeable":true,"lowerBound":0,"iD":false,"id":148,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"Private","unsettable":false,"transient":false,"unique":true,"name":"visibility","changeable":true,"lowerBound":0,"iD":false,"id":149,"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":"valueList","changeable":true,"resolveProxies":true,"lowerBound":0,"id":150,"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":"unique","changeable":true,"lowerBound":0,"iD":false,"id":151,"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":"mockup","changeable":true,"lowerBound":0,"iD":false,"id":152,"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":"customType","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"},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"literals","changeable":true,"resolveProxies":true,"lowerBound":0,"id":162,"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":"dynamic","changeable":true,"lowerBound":0,"iD":false,"id":163,"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":"depends","changeable":true,"resolveProxies":true,"lowerBound":0,"id":164,"derived":false},{"id":165,"eClass":"EGenericType"},{"id":166,"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":"enum","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":"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"},{"id":174,"eClass":"EGenericType"},{"name":"Direct","id":175,"value":0,"literal":"Direct","eClass":"EEnumLiteral"},{"name":"Aggregation","id":176,"value":1,"literal":"Aggregation","eClass":"EEnumLiteral"},{"name":"Composition","id":177,"value":2,"literal":"Composition","eClass":"EEnumLiteral"},{"ordered":true,"upperBound":1,"unique":true,"name":"equalsForMerge","lowerBound":0,"id":178,"many":false,"required":false,"eClass":"EOperation"},{"id":179,"eClass":"EGenericType"},{"id":180,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"other","lowerBound":0,"id":181,"many":false,"required":false,"eClass":"EParameter"},{"id":182,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"getLabel","lowerBound":1,"id":183,"many":false,"required":true,"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":"title","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":"isMandatory","lowerBound":0,"id":190,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"isMany","lowerBound":0,"id":191,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getOpposite","lowerBound":0,"id":192,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"defaultValue":"0","volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"0","unsettable":false,"transient":false,"unique":true,"name":"cardMin","changeable":true,"lowerBound":0,"iD":false,"id":193,"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":"cardMax","changeable":true,"lowerBound":0,"iD":false,"id":194,"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":"navigable","changeable":true,"lowerBound":0,"iD":false,"id":195,"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":"linkedClass","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"},{"id":201,"eClass":"EGenericType"},{"id":202,"eClass":"EGenericType"},{"id":203,"eClass":"EGenericType"},{"id":204,"eClass":"EGenericType"},{"id":205,"eClass":"EGenericType"},{"id":206,"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":1,"target":0},{"source":1,"target":15},{"source":1,"target":16},{"source":15,"target":12},{"source":15,"target":17},{"source":15,"target":1},{"source":17,"target":12},{"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":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":18,"target":2},{"source":18,"target":37},{"source":18,"target":2},{"source":37,"target":2},{"source":19,"target":4},{"source":19,"target":38},{"source":19,"target":2},{"source":38,"target":4},{"source":20,"target":7},{"source":20,"target":39},{"source":20,"target":2},{"source":39,"target":7},{"source":21,"target":10},{"source":21,"target":40},{"source":21,"target":2},{"source":40,"target":10},{"source":22,"target":5},{"source":22,"target":41},{"source":22,"target":2},{"source":41,"target":5},{"source":23,"target":3},{"source":23,"target":42},{"source":23,"target":2},{"source":42,"target":3},{"source":24,"target":4},{"source":24,"target":43},{"source":24,"target":2},{"source":43,"target":4},{"source":25,"target":10},{"source":25,"target":44},{"source":25,"target":2},{"source":44,"target":10},{"source":26,"target":45},{"source":26,"target":2},{"source":27,"target":3},{"source":27,"target":46},{"source":27,"target":2},{"source":46,"target":3},{"source":28,"target":3},{"source":28,"target":47},{"source":28,"target":2},{"source":47,"target":3},{"source":29,"target":48},{"source":29,"target":2},{"source":30,"target":4},{"source":30,"target":49},{"source":30,"target":2},{"source":49,"target":4},{"source":31,"target":5},{"source":31,"target":50},{"source":31,"target":2},{"source":50,"target":5},{"source":32,"target":10},{"source":32,"target":51},{"source":32,"target":2},{"source":51,"target":10},{"source":33,"target":7},{"source":33,"target":52},{"source":33,"target":2},{"source":52,"target":7},{"source":34,"target":53},{"source":34,"target":2},{"source":35,"target":54},{"source":35,"target":2},{"source":3,"target":0},{"source":3,"target":11},{"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":61},{"source":3,"target":62},{"source":3,"target":63},{"source":3,"target":64},{"source":3,"target":65},{"source":3,"target":66},{"source":3,"target":67},{"source":3,"target":68},{"source":3,"target":69},{"source":3,"target":70},{"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":55,"target":83},{"source":55,"target":3},{"source":55,"target":84},{"source":84,"target":3},{"source":84,"target":85},{"source":84,"target":55},{"source":85,"target":3},{"source":56,"target":3},{"source":56,"target":86},{"source":56,"target":3},{"source":86,"target":3},{"source":57,"target":4},{"source":57,"target":87},{"source":57,"target":3},{"source":87,"target":4},{"source":58,"target":3},{"source":58,"target":88},{"source":58,"target":3},{"source":88,"target":3},{"source":59,"target":5},{"source":59,"target":89},{"source":59,"target":3},{"source":89,"target":5},{"source":60,"target":90},{"source":60,"target":3},{"source":60,"target":91},{"source":91,"target":5},{"source":91,"target":92},{"source":91,"target":60},{"source":92,"target":5},{"source":61,"target":93},{"source":61,"target":3},{"source":61,"target":94},{"source":94,"target":5},{"source":94,"target":95},{"source":94,"target":61},{"source":95,"target":5},{"source":62,"target":5},{"source":62,"target":96},{"source":62,"target":3},{"source":96,"target":5},{"source":63,"target":13},{"source":63,"target":97},{"source":63,"target":3},{"source":97,"target":13},{"source":64,"target":13},{"source":64,"target":98},{"source":64,"target":3},{"source":98,"target":13},{"source":65,"target":5},{"source":65,"target":99},{"source":65,"target":3},{"source":99,"target":5},{"source":66,"target":5},{"source":66,"target":100},{"source":66,"target":3},{"source":100,"target":5},{"source":67,"target":3},{"source":67,"target":101},{"source":67,"target":3},{"source":101,"target":3},{"source":68,"target":13},{"source":68,"target":102},{"source":68,"target":3},{"source":102,"target":13},{"source":69,"target":13},{"source":69,"target":103},{"source":69,"target":3},{"source":103,"target":13},{"source":70,"target":6},{"source":70,"target":104},{"source":70,"target":3},{"source":104,"target":6},{"source":71,"target":6},{"source":71,"target":105},{"source":71,"target":3},{"source":105,"target":6},{"source":72,"target":6},{"source":72,"target":106},{"source":72,"target":3},{"source":106,"target":6},{"source":73,"target":6},{"source":73,"target":107},{"source":73,"target":3},{"source":107,"target":6},{"source":74,"target":10},{"source":74,"target":108},{"source":74,"target":3},{"source":108,"target":10},{"source":75,"target":3},{"source":75,"target":109},{"source":75,"target":3},{"source":109,"target":3},{"source":76,"target":4},{"source":76,"target":110},{"source":76,"target":3},{"source":110,"target":4},{"source":77,"target":10},{"source":77,"target":111},{"source":77,"target":3},{"source":111,"target":10},{"source":78,"target":6},{"source":78,"target":112},{"source":78,"target":3},{"source":112,"target":6},{"source":79,"target":3},{"source":79,"target":113},{"source":79,"target":3},{"source":113,"target":3},{"source":80,"target":10},{"source":80,"target":114},{"source":80,"target":3},{"source":114,"target":10},{"source":81,"target":11},{"source":4,"target":0},{"source":4,"target":3},{"source":4,"target":115},{"source":4,"target":116},{"source":4,"target":117},{"source":4,"target":118},{"source":115,"target":119},{"source":115,"target":4},{"source":116,"target":120},{"source":116,"target":4},{"source":117,"target":121},{"source":117,"target":4},{"source":118,"target":3},{"source":5,"target":0},{"source":5,"target":11},{"source":5,"target":122},{"source":5,"target":123},{"source":5,"target":124},{"source":5,"target":125},{"source":5,"target":126},{"source":5,"target":127},{"source":5,"target":128},{"source":5,"target":129},{"source":5,"target":130},{"source":5,"target":131},{"source":5,"target":132},{"source":122,"target":133},{"source":122,"target":5},{"source":122,"target":134},{"source":134,"target":5},{"source":134,"target":135},{"source":134,"target":122},{"source":135,"target":5},{"source":123,"target":136},{"source":123,"target":5},{"source":124,"target":3},{"source":124,"target":137},{"source":124,"target":5},{"source":137,"target":3},{"source":125,"target":3},{"source":125,"target":138},{"source":125,"target":5},{"source":138,"target":3},{"source":126,"target":13},{"source":126,"target":139},{"source":126,"target":5},{"source":126,"target":140},{"source":139,"target":13},{"source":140,"target":3},{"source":140,"target":141},{"source":140,"target":126},{"source":141,"target":3},{"source":127,"target":142},{"source":127,"target":5},{"source":128,"target":9},{"source":128,"target":143},{"source":128,"target":5},{"source":143,"target":9},{"source":129,"target":13},{"source":129,"target":144},{"source":129,"target":5},{"source":144,"target":13},{"source":130,"target":13},{"source":130,"target":145},{"source":130,"target":5},{"source":145,"target":13},{"source":131,"target":146},{"source":131,"target":5},{"source":132,"target":11},{"source":6,"target":0},{"source":6,"target":11},{"source":6,"target":147},{"source":6,"target":148},{"source":6,"target":149},{"source":6,"target":150},{"source":6,"target":151},{"source":6,"target":152},{"source":6,"target":153},{"source":6,"target":154},{"source":147,"target":155},{"source":147,"target":6},{"source":148,"target":156},{"source":148,"target":6},{"source":149,"target":157},{"source":149,"target":6},{"source":150,"target":7},{"source":150,"target":158},{"source":150,"target":6},{"source":158,"target":7},{"source":151,"target":159},{"source":151,"target":6},{"source":152,"target":160},{"source":152,"target":6},{"source":153,"target":161},{"source":153,"target":6},{"source":154,"target":11},{"source":7,"target":0},{"source":7,"target":162},{"source":7,"target":163},{"source":7,"target":164},{"source":7,"target":165},{"source":162,"target":8},{"source":162,"target":166},{"source":162,"target":7},{"source":162,"target":167},{"source":166,"target":8},{"source":163,"target":168},{"source":163,"target":7},{"source":164,"target":7},{"source":164,"target":169},{"source":164,"target":7},{"source":169,"target":7},{"source":8,"target":0},{"source":8,"target":170},{"source":8,"target":171},{"source":8,"target":167},{"source":170,"target":172},{"source":170,"target":8},{"source":171,"target":173},{"source":171,"target":8},{"source":167,"target":7},{"source":167,"target":174},{"source":167,"target":8},{"source":167,"target":162},{"source":174,"target":7},{"source":9,"target":0},{"source":9,"target":175},{"source":9,"target":176},{"source":9,"target":177},{"source":175,"target":9},{"source":176,"target":9},{"source":177,"target":9},{"source":10,"target":0},{"source":10,"target":3},{"source":10,"target":178},{"source":10,"target":179},{"source":178,"target":180},{"source":178,"target":10},{"source":178,"target":181},{"source":181,"target":10},{"source":181,"target":182},{"source":181,"target":178},{"source":182,"target":10},{"source":179,"target":3},{"source":11,"target":0},{"source":11,"target":1},{"source":11,"target":183},{"source":11,"target":184},{"source":11,"target":185},{"source":11,"target":186},{"source":183,"target":187},{"source":183,"target":11},{"source":184,"target":188},{"source":184,"target":11},{"source":186,"target":1},{"source":12,"target":0},{"source":12,"target":189},{"source":13,"target":0},{"source":13,"target":11},{"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":190,"target":199},{"source":190,"target":13},{"source":191,"target":200},{"source":191,"target":13},{"source":192,"target":13},{"source":192,"target":201},{"source":192,"target":13},{"source":201,"target":13},{"source":193,"target":202},{"source":193,"target":13},{"source":194,"target":203},{"source":194,"target":13},{"source":195,"target":204},{"source":195,"target":13},{"source":196,"target":3},{"source":196,"target":205},{"source":196,"target":13},{"source":205,"target":3},{"source":197,"target":11},{"source":14,"target":0},{"source":14,"target":2},{"source":14,"target":206},{"source":206,"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="RootPackage"> <eClassifiers xsi:type="ecore:EClass" name="AClass"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="this is a test for Cross Table"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="AnotherClass"/> </ecore:EPackage>
github:ecore:/data/CohesionForce/ecfrance-sirius/plugins/org.eclipse.sirius.tests.swtbot/data/unit/std/049/STD-TEST-049.ecore
ecore
RootPackage AClass AnotherClass
null
{"directed":true,"nodes":[{"nsPrefix":null,"nsURI":null,"name":"RootPackage","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AClass","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AnotherClass","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":1,"target":0},{"source":2,"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="tasks" nsURI="http://ict-alive.sourceforge.net/coordination/tasks" nsPrefix="tasks"> <eClassifiers xsi:type="ecore:EClass" name="Task"> <eStructuralFeatures xsi:type="ecore:EReference" name="components" lowerBound="1" upperBound="-1" eType="ecore:EClass ../../net.sf.ictalive.owls/model/process.ecore#//ControlConstruct" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="hasPrecondition" upperBound="-1" eType="ecore:EClass ../../net.sf.ictalive.owls/model/expr.ecore#//Condition" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="hasResult" eType="ecore:EClass actions.ecore#//ActionResult"/> <eStructuralFeatures xsi:type="ecore:EReference" name="input" upperBound="-1" eType="#//InputMessageMap" 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="id" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt" iD="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="version" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"> <eAnnotations source="teneo.jpa"> <details key="appinfo" value="@Version"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="InputMessageMap"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="messagePart" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="parameter" eType="ecore:EClass ../../net.sf.ictalive.owls/model/process.ecore#//Parameter"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="id" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt" iD="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="version" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"> <eAnnotations source="teneo.jpa"> <details key="appinfo" value="@Version"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Plan"> <eStructuralFeatures xsi:type="ecore:EReference" name="forTask" lowerBound="1" eType="#//Task"/> <eStructuralFeatures xsi:type="ecore:EReference" name="hasAtomicProcessGroundingList" lowerBound="1" eType="#//ActionGroundingList" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="id" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt" iD="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="version" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"> <eAnnotations source="teneo.jpa"> <details key="appinfo" value="@Version"/> </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="ActionGroundingList"> <eStructuralFeatures xsi:type="ecore:EReference" name="first" lowerBound="1" eType="#//ActionGrounding" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="rest" eType="#//ActionGroundingList" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="id" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt" iD="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="version" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"> <eAnnotations source="teneo.jpa"> <details key="appinfo" value="@Version"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ActionGrounding"> <eStructuralFeatures xsi:type="ecore:EReference" name="owlsProcess" lowerBound="1" eType="ecore:EClass actions.ecore#//Action"/> <eStructuralFeatures xsi:type="ecore:EReference" name="input" upperBound="-1" eType="#//InputMessageMap" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="id" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt" iD="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="version" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"> <eAnnotations source="teneo.jpa"> <details key="appinfo" value="@Version"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="TasksCollection"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="ns" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="tasks" upperBound="-1" eType="#//Task" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="id" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt" iD="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="version" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"> <eAnnotations source="teneo.jpa"> <details key="appinfo" value="@Version"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="PlansCollection"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="ns" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="plans" upperBound="-1" eType="#//Plan" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="id" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt" iD="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="version" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"> <eAnnotations source="teneo.jpa"> <details key="appinfo" value="@Version"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> </ecore:EPackage>
github:ecore:/data/kemlg/aliveclipse/net.sf.ictalive.coordination/model/tasks.ecore
ecore
tasks Task components hasPrecondition hasResult input name id version InputMessageMap messagePart parameter id version Plan forTask hasAtomicProcessGroundingList id version name ActionGroundingList first rest id version ActionGrounding owlsProcess input id version TasksCollection ns tasks id version PlansCollection ns plans id version
null
{"directed":true,"nodes":[{"nsPrefix":"tasks","nsURI":"http://ict-alive.sourceforge.net/coordination/tasks","name":"tasks","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Task","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InputMessageMap","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Plan","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ActionGroundingList","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ActionGrounding","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TasksCollection","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PlansCollection","instanceClass":null,"abstract":false,"id":7,"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":"components","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":true,"unsettable":false,"transient":false,"unique":true,"name":"hasPrecondition","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":"hasResult","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":"input","changeable":true,"resolveProxies":true,"lowerBound":0,"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":0,"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":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":"version","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"},{"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":"messagePart","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":"parameter","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":"id","changeable":true,"lowerBound":0,"iD":true,"id":24,"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":"version","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":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"forTask","changeable":true,"resolveProxies":true,"lowerBound":1,"id":30,"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":"hasAtomicProcessGroundingList","changeable":true,"resolveProxies":true,"lowerBound":1,"id":31,"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":true,"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":"version","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":"name","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":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"first","changeable":true,"resolveProxies":true,"lowerBound":1,"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":"rest","changeable":true,"resolveProxies":true,"lowerBound":0,"id":41,"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":true,"id":42,"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":"version","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"},{"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":"owlsProcess","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":"input","changeable":true,"resolveProxies":true,"lowerBound":0,"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":"id","changeable":true,"lowerBound":0,"iD":true,"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":"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"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"ns","changeable":true,"lowerBound":0,"iD":false,"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":"tasks","changeable":true,"resolveProxies":true,"lowerBound":0,"id":57,"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":true,"id":58,"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":"version","changeable":true,"lowerBound":0,"iD":false,"id":59,"derived":false},{"id":60,"eClass":"EGenericType"},{"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":"ns","changeable":true,"lowerBound":0,"iD":false,"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":"plans","changeable":true,"resolveProxies":true,"lowerBound":0,"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":"id","changeable":true,"lowerBound":0,"iD":true,"id":66,"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":"version","changeable":true,"lowerBound":0,"iD":false,"id":67,"derived":false},{"id":68,"eClass":"EGenericType"},{"id":69,"eClass":"EGenericType"},{"id":70,"eClass":"EGenericType"},{"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":1,"target":0},{"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":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":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":21},{"source":14,"target":1},{"source":2,"target":0},{"source":2,"target":22},{"source":2,"target":23},{"source":2,"target":24},{"source":2,"target":25},{"source":22,"target":26},{"source":22,"target":2},{"source":23,"target":27},{"source":23,"target":2},{"source":24,"target":28},{"source":24,"target":2},{"source":25,"target":29},{"source":25,"target":2},{"source":3,"target":0},{"source":3,"target":30},{"source":3,"target":31},{"source":3,"target":32},{"source":3,"target":33},{"source":3,"target":34},{"source":30,"target":1},{"source":30,"target":35},{"source":30,"target":3},{"source":35,"target":1},{"source":31,"target":4},{"source":31,"target":36},{"source":31,"target":3},{"source":36,"target":4},{"source":32,"target":37},{"source":32,"target":3},{"source":33,"target":38},{"source":33,"target":3},{"source":34,"target":39},{"source":34,"target":3},{"source":4,"target":0},{"source":4,"target":40},{"source":4,"target":41},{"source":4,"target":42},{"source":4,"target":43},{"source":40,"target":5},{"source":40,"target":44},{"source":40,"target":4},{"source":44,"target":5},{"source":41,"target":4},{"source":41,"target":45},{"source":41,"target":4},{"source":45,"target":4},{"source":42,"target":46},{"source":42,"target":4},{"source":43,"target":47},{"source":43,"target":4},{"source":5,"target":0},{"source":5,"target":48},{"source":5,"target":49},{"source":5,"target":50},{"source":5,"target":51},{"source":48,"target":52},{"source":48,"target":5},{"source":49,"target":2},{"source":49,"target":53},{"source":49,"target":5},{"source":53,"target":2},{"source":50,"target":54},{"source":50,"target":5},{"source":51,"target":55},{"source":51,"target":5},{"source":6,"target":0},{"source":6,"target":56},{"source":6,"target":57},{"source":6,"target":58},{"source":6,"target":59},{"source":56,"target":60},{"source":56,"target":6},{"source":57,"target":1},{"source":57,"target":61},{"source":57,"target":6},{"source":61,"target":1},{"source":58,"target":62},{"source":58,"target":6},{"source":59,"target":63},{"source":59,"target":6},{"source":7,"target":0},{"source":7,"target":64},{"source":7,"target":65},{"source":7,"target":66},{"source":7,"target":67},{"source":64,"target":68},{"source":64,"target":7},{"source":65,"target":3},{"source":65,"target":69},{"source":65,"target":7},{"source":69,"target":3},{"source":66,"target":70},{"source":66,"target":7},{"source":67,"target":71},{"source":67,"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="jFXCss" nsURI="http://www.bestsolution.at/e4/jfx/xtext/JFXCss" nsPrefix="jFXCss"> <eClassifiers xsi:type="ecore:EClass" name="JFXCss"> <eStructuralFeatures xsi:type="ecore:EReference" name="definitions" upperBound="-1" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//Definition" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Definition"> <eStructuralFeatures xsi:type="ecore:EReference" name="selector" upperBound="-1" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//Selector" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="properties" upperBound="-1" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//FXProperty" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Selector"> <eStructuralFeatures xsi:type="ecore:EReference" name="simpleSelector" upperBound="-1" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//SimpleSelector" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="SimpleSelector"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="element" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="id" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//IdSelector" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="pseudoClass" upperBound="-1" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//PseudoClassSelector" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="class" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//ClassSelector" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="IdSelector"> <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="ClassSelector"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="class" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="PseudoClassSelector"> <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="FXProperty"/> <eClassifiers xsi:type="ecore:EClass" name="FontProperty" eSuperTypes="platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//FXProperty"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="property" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="value" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//FontValue" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="FontFamilyProperty" eSuperTypes="platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//FXProperty"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="property" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="value" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//FontFamily" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="FontSizeProperty" eSuperTypes="platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//FXProperty"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="property" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="value" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//SizeValue" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="FontStyleProperty" eSuperTypes="platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//FXProperty"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="property" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="value" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//FontStyleValue" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="FontWeightProperty" eSuperTypes="platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//FXProperty"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="property" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="value" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//FontWeightValue" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CursorProperty" eSuperTypes="platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//FXProperty"> <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="EffectProperty" eSuperTypes="platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//FXProperty"> <eStructuralFeatures xsi:type="ecore:EReference" name="value" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//Effect" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Effect"> <eStructuralFeatures xsi:type="ecore:EReference" name="blur" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//BlurValue" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="color" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//ColorValue" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="blurRadius" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//NumberValue" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="offsetX" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//NumberValue" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="offsetY" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//NumberValue" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="EffectDropShadow" eSuperTypes="platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//Effect"> <eStructuralFeatures xsi:type="ecore:EReference" name="spread" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//NumberValue" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="EffectInnerShadow" eSuperTypes="platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//Effect"> <eStructuralFeatures xsi:type="ecore:EReference" name="choke" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//NumberValue" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="BooleanProperty" eSuperTypes="platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//FXProperty"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="property" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="ecore:EEnum platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//BooleanValue"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="SizeProperty" eSuperTypes="platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//FXProperty"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="property" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="value" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//SizeValue" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="NumberProperty" eSuperTypes="platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//FXProperty"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="property" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="value" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//NumberValue" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="IntegerProperty" eSuperTypes="platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//FXProperty"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="property" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="value" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//IntegerValue" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="PaintProperty" eSuperTypes="platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//FXProperty"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="property" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="value" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//PaintValue" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="PaintProperties" eSuperTypes="platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//FXProperty"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="property" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="values" upperBound="-1" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//PaintValue" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="BlendProperty" eSuperTypes="platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//FXProperty"> <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="UrlProperty" eSuperTypes="platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//FXProperty"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="property" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="value" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//UrlValue" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="MultiSizeProperties" eSuperTypes="platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//FXProperty"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="property" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="values" upperBound="-1" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//MultiSizeValue" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="HPositionProperty" eSuperTypes="platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//FXProperty"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="property" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="ecore:EEnum platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//HPositionValue"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="VPositionProperty" eSuperTypes="platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//FXProperty"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="property" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="value" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//VPositionValue" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="SideProperty" eSuperTypes="platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//FXProperty"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="property" 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="BarPolicyProperty" eSuperTypes="platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//FXProperty"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="property" 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="UrlProperties" eSuperTypes="platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//FXProperty"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="property" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="values" upperBound="-1" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//UrlValue" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="RepeatProperties" eSuperTypes="platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//FXProperty"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="property" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="values" upperBound="-1" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//RepeatStyleValue" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="MultiSizeProperty" eSuperTypes="platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//FXProperty"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="property" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="value" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//MultiSizeValue" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="SizeProperties" eSuperTypes="platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//FXProperty"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="property" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="values" upperBound="-1" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//SizeValue" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="MultiPaintProperties" eSuperTypes="platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//FXProperty"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="property" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="values" upperBound="-1" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//MultiPaintValue" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ColorProperty" eSuperTypes="platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//FXProperty"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="property" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="value" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//ColorValue" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="StringProperty" eSuperTypes="platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//FXProperty"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="property" 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="PositionProperty" eSuperTypes="platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//FXProperty"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="property" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="values" upperBound="-1" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//BgPositionValue" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="AlignmentProperty" eSuperTypes="platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//FXProperty"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="property" 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="StrokeLineCapProperty" eSuperTypes="platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//FXProperty"> <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="StrokeLineJoinProperty" eSuperTypes="platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//FXProperty"> <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="TextOriginProperty" eSuperTypes="platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//FXProperty"> <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="BackgroundImageSizeProperty" eSuperTypes="platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//FXProperty"> <eStructuralFeatures xsi:type="ecore:EReference" name="values" upperBound="-1" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//BgSizeValue" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="BorderStyleProperty" eSuperTypes="platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//FXProperty"> <eStructuralFeatures xsi:type="ecore:EReference" name="values" upperBound="-1" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//BorderStyleValue" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="BorderImageSliceProperty" eSuperTypes="platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//FXProperty"> <eStructuralFeatures xsi:type="ecore:EReference" name="values" upperBound="-1" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//SizeFill" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="TextOverrunProperty" eSuperTypes="platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//FXProperty"> <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="InsetsProperty" eSuperTypes="platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//FXProperty"> <eStructuralFeatures xsi:type="ecore:EReference" name="value" upperBound="-1" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//NumberValue" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="HorizontalGridLineStrokeDashArrayProperty" eSuperTypes="platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//FXProperty"> <eStructuralFeatures xsi:type="ecore:EReference" name="value" upperBound="-1" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//NumberValue" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="VerticalGridLineStrokeDashArrayProperty" eSuperTypes="platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//FXProperty"> <eStructuralFeatures xsi:type="ecore:EReference" name="values" upperBound="-1" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//NumberValue" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="BooleanValue"> <eLiterals name="true" literal="true"/> <eLiterals name="false" value="1" literal="false"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="HPositionValue"> <eLiterals name="left" literal="left"/> <eLiterals name="center" value="1" literal="center"/> <eLiterals name="right" value="2" literal="right"/> <eLiterals name="leading" value="3" literal="leading"/> <eLiterals name="trailing" value="4" literal="trailing"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="VPositionValue"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="v" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="BlurValue"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="v" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="NumberValue"/> <eClassifiers xsi:type="ecore:EClass" name="IntegerValue" eSuperTypes="platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//NumberValue"> <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="RealValue" eSuperTypes="platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//NumberValue"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="UrlValue"> <eStructuralFeatures xsi:type="ecore:EReference" name="address" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//AddressValue" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="AddressValue"> <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="SizeValue"> <eStructuralFeatures xsi:type="ecore:EReference" name="value" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//NumberValue" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="dimension" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="MultiSizeValue"> <eStructuralFeatures xsi:type="ecore:EReference" name="values" upperBound="-1" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//SizeValue" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="BgPositionValue"> <eStructuralFeatures xsi:type="ecore:EReference" name="absx" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//SizeValue" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="relx" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="absy" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//SizeValue" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="rely" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="RepeatStyleValue"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="v" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="v2" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="BgSizeValue"> <eStructuralFeatures xsi:type="ecore:EReference" name="xsize" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//SizeValue" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="xauto" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="ysize" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//SizeValue" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="yauto" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="predefined" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="MultiPaintValue"> <eStructuralFeatures xsi:type="ecore:EReference" name="values" upperBound="-1" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//PaintValue" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="BorderStyleValue"> <eStructuralFeatures xsi:type="ecore:EReference" name="dashStyle" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//DashStyleValue" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="location" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="miterAbs" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//NumberValue" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="miterPredefined" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="lineCap" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="DashStyleValue"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="v" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="SizeFill"> <eStructuralFeatures xsi:type="ecore:EReference" name="value" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//MultiSizeValue" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="fill" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="FontValue"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="styleOrWeightString" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="weight" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//IntegerProperty" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="size" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//SizeValue" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="family" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//FontFamily" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="FontStyleValue"> <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="FontWeightValue"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="valueString" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="valueInt" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//NumberValue" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="FontFamily"> <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="PaintValue"/> <eClassifiers xsi:type="ecore:EClass" name="LinearGradient" eSuperTypes="platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//PaintValue"> <eStructuralFeatures xsi:type="ecore:EReference" name="x1" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//SizeValue" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="y1" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//SizeValue" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="x2" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//SizeValue" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="y2" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//SizeValue" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="stops" upperBound="-1" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//StopValue" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="RadialGradient" eSuperTypes="platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//PaintValue"> <eStructuralFeatures xsi:type="ecore:EReference" name="cx" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//SizeValue" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="cy" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//SizeValue" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="radius" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//SizeValue" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="fx" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//SizeValue" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="fy" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//SizeValue" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="stops" upperBound="-1" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//StopValue" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="StopValue"> <eStructuralFeatures xsi:type="ecore:EReference" name="pos" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//SizeValue" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="color" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//ColorValue" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ColorValue" eSuperTypes="platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//PaintValue"/> <eClassifiers xsi:type="ecore:EClass" name="LookedUpColor" eSuperTypes="platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//ColorValue"> <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="NamedColor" eSuperTypes="platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//ColorValue"> <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="RGBColor" eSuperTypes="platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//ColorValue"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="hex" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="r" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//IntegerValue" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="g" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//IntegerValue" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="b" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//IntegerValue" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="rp" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//IntegerValue" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="gp" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//IntegerValue" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="bp" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//IntegerValue" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="alpha" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//NumberValue" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="HSBColor" eSuperTypes="platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//ColorValue"> <eStructuralFeatures xsi:type="ecore:EReference" name="hue" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//NumberValue" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="saturation" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//NumberValue" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="brightness" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//NumberValue" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="alpha" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//NumberValue" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ColorFunction" eSuperTypes="platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//ColorValue"> <eStructuralFeatures xsi:type="ecore:EReference" name="orig" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//ColorValue" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="mod" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//NumberValue" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="stopNumbers" upperBound="-1" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//NumberValue" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="stopColors" upperBound="-1" eType="ecore:EClass platform:/resource/at.bestsolution.e4.jfx.xtext.css/src-gen/at/bestsolution/e4/jfx/xtext/JFXCss.ecore#//ColorValue" containment="true"/> </eClassifiers> </ecore:EPackage>
github:ecore:/data/MDEGroup/QMM-COMLAN-data/validation-subjects/metamodels/JFXCss.ecore
ecore
jFXCss JFXCss definitions Definition selector properties Selector simpleSelector SimpleSelector element id pseudoClass class IdSelector id ClassSelector class PseudoClassSelector value FXProperty FontProperty property value FontFamilyProperty property value FontSizeProperty property value FontStyleProperty property value FontWeightProperty property value CursorProperty value EffectProperty value Effect blur color blurRadius offsetX offsetY EffectDropShadow spread EffectInnerShadow choke BooleanProperty property value SizeProperty property value NumberProperty property value IntegerProperty property value PaintProperty property value PaintProperties property values BlendProperty value UrlProperty property value MultiSizeProperties property values HPositionProperty property value VPositionProperty property value SideProperty property value BarPolicyProperty property value UrlProperties property values RepeatProperties property values MultiSizeProperty property value SizeProperties property values MultiPaintProperties property values ColorProperty property value StringProperty property value PositionProperty property values AlignmentProperty property value StrokeLineCapProperty value StrokeLineJoinProperty value TextOriginProperty value BackgroundImageSizeProperty values BorderStyleProperty values BorderImageSliceProperty values TextOverrunProperty value InsetsProperty value HorizontalGridLineStrokeDashArrayProperty value VerticalGridLineStrokeDashArrayProperty values BooleanValue true true false false HPositionValue left left center center right right leading leading trailing trailing VPositionValue v BlurValue v NumberValue IntegerValue value RealValue value UrlValue address AddressValue value SizeValue value dimension MultiSizeValue values BgPositionValue absx relx absy rely RepeatStyleValue v v2 BgSizeValue xsize xauto ysize yauto predefined MultiPaintValue values BorderStyleValue dashStyle location miterAbs miterPredefined lineCap DashStyleValue v SizeFill value fill FontValue styleOrWeightString weight size family FontStyleValue value FontWeightValue valueString valueInt FontFamily value PaintValue LinearGradient x1 y1 x2 y2 stops RadialGradient cx cy radius fx fy stops StopValue pos color ColorValue LookedUpColor value NamedColor value RGBColor hex r g b rp gp bp alpha HSBColor hue saturation brightness alpha ColorFunction orig mod stopNumbers stopColors
null
{"directed":true,"nodes":[{"nsPrefix":"jFXCss","nsURI":"http://www.bestsolution.at/e4/jfx/xtext/JFXCss","name":"jFXCss","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"JFXCss","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Definition","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Selector","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SimpleSelector","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IdSelector","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ClassSelector","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PseudoClassSelector","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FXProperty","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FontProperty","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FontFamilyProperty","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FontSizeProperty","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FontStyleProperty","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FontWeightProperty","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CursorProperty","instanceClass":null,"abstract":false,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EffectProperty","instanceClass":null,"abstract":false,"id":15,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Effect","instanceClass":null,"abstract":false,"id":16,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EffectDropShadow","instanceClass":null,"abstract":false,"id":17,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EffectInnerShadow","instanceClass":null,"abstract":false,"id":18,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BooleanProperty","instanceClass":null,"abstract":false,"id":19,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SizeProperty","instanceClass":null,"abstract":false,"id":20,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NumberProperty","instanceClass":null,"abstract":false,"id":21,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IntegerProperty","instanceClass":null,"abstract":false,"id":22,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PaintProperty","instanceClass":null,"abstract":false,"id":23,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PaintProperties","instanceClass":null,"abstract":false,"id":24,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BlendProperty","instanceClass":null,"abstract":false,"id":25,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"UrlProperty","instanceClass":null,"abstract":false,"id":26,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MultiSizeProperties","instanceClass":null,"abstract":false,"id":27,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"HPositionProperty","instanceClass":null,"abstract":false,"id":28,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"VPositionProperty","instanceClass":null,"abstract":false,"id":29,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SideProperty","instanceClass":null,"abstract":false,"id":30,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BarPolicyProperty","instanceClass":null,"abstract":false,"id":31,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"UrlProperties","instanceClass":null,"abstract":false,"id":32,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RepeatProperties","instanceClass":null,"abstract":false,"id":33,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MultiSizeProperty","instanceClass":null,"abstract":false,"id":34,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SizeProperties","instanceClass":null,"abstract":false,"id":35,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MultiPaintProperties","instanceClass":null,"abstract":false,"id":36,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ColorProperty","instanceClass":null,"abstract":false,"id":37,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StringProperty","instanceClass":null,"abstract":false,"id":38,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PositionProperty","instanceClass":null,"abstract":false,"id":39,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AlignmentProperty","instanceClass":null,"abstract":false,"id":40,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StrokeLineCapProperty","instanceClass":null,"abstract":false,"id":41,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StrokeLineJoinProperty","instanceClass":null,"abstract":false,"id":42,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TextOriginProperty","instanceClass":null,"abstract":false,"id":43,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BackgroundImageSizeProperty","instanceClass":null,"abstract":false,"id":44,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BorderStyleProperty","instanceClass":null,"abstract":false,"id":45,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BorderImageSliceProperty","instanceClass":null,"abstract":false,"id":46,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TextOverrunProperty","instanceClass":null,"abstract":false,"id":47,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InsetsProperty","instanceClass":null,"abstract":false,"id":48,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"HorizontalGridLineStrokeDashArrayProperty","instanceClass":null,"abstract":false,"id":49,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"VerticalGridLineStrokeDashArrayProperty","instanceClass":null,"abstract":false,"id":50,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"BooleanValue","instanceClass":null,"id":51,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"HPositionValue","instanceClass":null,"id":52,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"VPositionValue","instanceClass":null,"abstract":false,"id":53,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BlurValue","instanceClass":null,"abstract":false,"id":54,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NumberValue","instanceClass":null,"abstract":false,"id":55,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IntegerValue","instanceClass":null,"abstract":false,"id":56,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RealValue","instanceClass":null,"abstract":false,"id":57,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"UrlValue","instanceClass":null,"abstract":false,"id":58,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AddressValue","instanceClass":null,"abstract":false,"id":59,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SizeValue","instanceClass":null,"abstract":false,"id":60,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MultiSizeValue","instanceClass":null,"abstract":false,"id":61,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BgPositionValue","instanceClass":null,"abstract":false,"id":62,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RepeatStyleValue","instanceClass":null,"abstract":false,"id":63,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BgSizeValue","instanceClass":null,"abstract":false,"id":64,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MultiPaintValue","instanceClass":null,"abstract":false,"id":65,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BorderStyleValue","instanceClass":null,"abstract":false,"id":66,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DashStyleValue","instanceClass":null,"abstract":false,"id":67,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SizeFill","instanceClass":null,"abstract":false,"id":68,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FontValue","instanceClass":null,"abstract":false,"id":69,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FontStyleValue","instanceClass":null,"abstract":false,"id":70,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FontWeightValue","instanceClass":null,"abstract":false,"id":71,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FontFamily","instanceClass":null,"abstract":false,"id":72,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PaintValue","instanceClass":null,"abstract":false,"id":73,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LinearGradient","instanceClass":null,"abstract":false,"id":74,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RadialGradient","instanceClass":null,"abstract":false,"id":75,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StopValue","instanceClass":null,"abstract":false,"id":76,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ColorValue","instanceClass":null,"abstract":false,"id":77,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LookedUpColor","instanceClass":null,"abstract":false,"id":78,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NamedColor","instanceClass":null,"abstract":false,"id":79,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RGBColor","instanceClass":null,"abstract":false,"id":80,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"HSBColor","instanceClass":null,"abstract":false,"id":81,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ColorFunction","instanceClass":null,"abstract":false,"id":82,"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":"definitions","changeable":true,"resolveProxies":true,"lowerBound":0,"id":83,"derived":false},{"id":84,"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":"selector","changeable":true,"resolveProxies":true,"lowerBound":0,"id":85,"derived":false},{"container":false,"ordered":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":86,"derived":false},{"id":87,"eClass":"EGenericType"},{"id":88,"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":"simpleSelector","changeable":true,"resolveProxies":true,"lowerBound":0,"id":89,"derived":false},{"id":90,"eClass":"EGenericType"},{"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":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":"id","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":"pseudoClass","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":"class","changeable":true,"resolveProxies":true,"lowerBound":0,"id":94,"derived":false},{"id":95,"eClass":"EGenericType"},{"id":96,"eClass":"EGenericType"},{"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":"id","changeable":true,"lowerBound":0,"iD":false,"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":"class","changeable":true,"lowerBound":0,"iD":false,"id":101,"derived":false},{"id":102,"eClass":"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":103,"derived":false},{"id":104,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"property","changeable":true,"lowerBound":0,"iD":false,"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":"value","changeable":true,"resolveProxies":true,"lowerBound":0,"id":106,"derived":false},{"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":"property","changeable":true,"lowerBound":0,"iD":false,"id":110,"derived":false},{"container":false,"ordered":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":111,"derived":false},{"id":112,"eClass":"EGenericType"},{"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":"property","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"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"property","changeable":true,"lowerBound":0,"iD":false,"id":120,"derived":false},{"container":false,"ordered":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":121,"derived":false},{"id":122,"eClass":"EGenericType"},{"id":123,"eClass":"EGenericType"},{"id":124,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"property","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":"value","changeable":true,"resolveProxies":true,"lowerBound":0,"id":126,"derived":false},{"id":127,"eClass":"EGenericType"},{"id":128,"eClass":"EGenericType"},{"id":129,"eClass":"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":130,"derived":false},{"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":"value","changeable":true,"resolveProxies":true,"lowerBound":0,"id":133,"derived":false},{"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":true,"unsettable":false,"transient":false,"unique":true,"name":"blur","changeable":true,"resolveProxies":true,"lowerBound":0,"id":136,"derived":false},{"container":false,"ordered":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":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":"blurRadius","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":"offsetX","changeable":true,"resolveProxies":true,"lowerBound":0,"id":139,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"offsetY","changeable":true,"resolveProxies":true,"lowerBound":0,"id":140,"derived":false},{"id":141,"eClass":"EGenericType"},{"id":142,"eClass":"EGenericType"},{"id":143,"eClass":"EGenericType"},{"id":144,"eClass":"EGenericType"},{"id":145,"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":"spread","changeable":true,"resolveProxies":true,"lowerBound":0,"id":146,"derived":false},{"id":147,"eClass":"EGenericType"},{"id":148,"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":"choke","changeable":true,"resolveProxies":true,"lowerBound":0,"id":149,"derived":false},{"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":"property","changeable":true,"lowerBound":0,"iD":false,"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":"value","changeable":true,"lowerBound":0,"iD":false,"id":153,"derived":false},{"id":154,"eClass":"EGenericType"},{"id":155,"eClass":"EGenericType"},{"id":156,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"property","changeable":true,"lowerBound":0,"iD":false,"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":"value","changeable":true,"resolveProxies":true,"lowerBound":0,"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":"property","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"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"property","changeable":true,"lowerBound":0,"iD":false,"id":167,"derived":false},{"container":false,"ordered":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":168,"derived":false},{"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":"property","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":"value","changeable":true,"resolveProxies":true,"lowerBound":0,"id":173,"derived":false},{"id":174,"eClass":"EGenericType"},{"id":175,"eClass":"EGenericType"},{"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":"property","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":"values","changeable":true,"resolveProxies":true,"lowerBound":0,"id":178,"derived":false},{"id":179,"eClass":"EGenericType"},{"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":"value","changeable":true,"lowerBound":0,"iD":false,"id":182,"derived":false},{"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":"property","changeable":true,"lowerBound":0,"iD":false,"id":185,"derived":false},{"container":false,"ordered":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":186,"derived":false},{"id":187,"eClass":"EGenericType"},{"id":188,"eClass":"EGenericType"},{"id":189,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"property","changeable":true,"lowerBound":0,"iD":false,"id":190,"derived":false},{"container":false,"ordered":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":191,"derived":false},{"id":192,"eClass":"EGenericType"},{"id":193,"eClass":"EGenericType"},{"id":194,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"property","changeable":true,"lowerBound":0,"iD":false,"id":195,"derived":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":196,"derived":false},{"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":"property","changeable":true,"lowerBound":0,"iD":false,"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":"value","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":"property","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":"value","changeable":true,"lowerBound":0,"iD":false,"id":206,"derived":false},{"id":207,"eClass":"EGenericType"},{"id":208,"eClass":"EGenericType"},{"id":209,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"property","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":"value","changeable":true,"lowerBound":0,"iD":false,"id":211,"derived":false},{"id":212,"eClass":"EGenericType"},{"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":"property","changeable":true,"lowerBound":0,"iD":false,"id":215,"derived":false},{"container":false,"ordered":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":216,"derived":false},{"id":217,"eClass":"EGenericType"},{"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":"property","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":"values","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":"property","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":"value","changeable":true,"resolveProxies":true,"lowerBound":0,"id":226,"derived":false},{"id":227,"eClass":"EGenericType"},{"id":228,"eClass":"EGenericType"},{"id":229,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"property","changeable":true,"lowerBound":0,"iD":false,"id":230,"derived":false},{"container":false,"ordered":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":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":"property","changeable":true,"lowerBound":0,"iD":false,"id":235,"derived":false},{"container":false,"ordered":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":236,"derived":false},{"id":237,"eClass":"EGenericType"},{"id":238,"eClass":"EGenericType"},{"id":239,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"property","changeable":true,"lowerBound":0,"iD":false,"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":"value","changeable":true,"resolveProxies":true,"lowerBound":0,"id":241,"derived":false},{"id":242,"eClass":"EGenericType"},{"id":243,"eClass":"EGenericType"},{"id":244,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"property","changeable":true,"lowerBound":0,"iD":false,"id":245,"derived":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":246,"derived":false},{"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":"property","changeable":true,"lowerBound":0,"iD":false,"id":250,"derived":false},{"container":false,"ordered":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":251,"derived":false},{"id":252,"eClass":"EGenericType"},{"id":253,"eClass":"EGenericType"},{"id":254,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"property","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":"value","changeable":true,"lowerBound":0,"iD":false,"id":256,"derived":false},{"id":257,"eClass":"EGenericType"},{"id":258,"eClass":"EGenericType"},{"id":259,"eClass":"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":260,"derived":false},{"id":261,"eClass":"EGenericType"},{"id":262,"eClass":"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":263,"derived":false},{"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":"value","changeable":true,"lowerBound":0,"iD":false,"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":"values","changeable":true,"resolveProxies":true,"lowerBound":0,"id":269,"derived":false},{"id":270,"eClass":"EGenericType"},{"id":271,"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":272,"derived":false},{"id":273,"eClass":"EGenericType"},{"id":274,"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":275,"derived":false},{"id":276,"eClass":"EGenericType"},{"id":277,"eClass":"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":278,"derived":false},{"id":279,"eClass":"EGenericType"},{"id":280,"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":"value","changeable":true,"resolveProxies":true,"lowerBound":0,"id":281,"derived":false},{"id":282,"eClass":"EGenericType"},{"id":283,"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":"value","changeable":true,"resolveProxies":true,"lowerBound":0,"id":284,"derived":false},{"id":285,"eClass":"EGenericType"},{"id":286,"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":287,"derived":false},{"id":288,"eClass":"EGenericType"},{"id":289,"eClass":"EGenericType"},{"name":"true","id":290,"value":0,"literal":"true","eClass":"EEnumLiteral"},{"name":"false","id":291,"value":1,"literal":"false","eClass":"EEnumLiteral"},{"name":"left","id":292,"value":0,"literal":"left","eClass":"EEnumLiteral"},{"name":"center","id":293,"value":1,"literal":"center","eClass":"EEnumLiteral"},{"name":"right","id":294,"value":2,"literal":"right","eClass":"EEnumLiteral"},{"name":"leading","id":295,"value":3,"literal":"leading","eClass":"EEnumLiteral"},{"name":"trailing","id":296,"value":4,"literal":"trailing","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":"v","changeable":true,"lowerBound":0,"iD":false,"id":297,"derived":false},{"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":"v","changeable":true,"lowerBound":0,"iD":false,"id":299,"derived":false},{"id":300,"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":301,"derived":false},{"id":302,"eClass":"EGenericType"},{"id":303,"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":304,"derived":false},{"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":true,"unsettable":false,"transient":false,"unique":true,"name":"address","changeable":true,"resolveProxies":true,"lowerBound":0,"id":307,"derived":false},{"id":308,"eClass":"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":309,"derived":false},{"id":310,"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":"value","changeable":true,"resolveProxies":true,"lowerBound":0,"id":311,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"dimension","changeable":true,"lowerBound":0,"iD":false,"id":312,"derived":false},{"id":313,"eClass":"EGenericType"},{"id":314,"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":315,"derived":false},{"id":316,"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":"absx","changeable":true,"resolveProxies":true,"lowerBound":0,"id":317,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"relx","changeable":true,"lowerBound":0,"iD":false,"id":318,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"absy","changeable":true,"resolveProxies":true,"lowerBound":0,"id":319,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"rely","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"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"v","changeable":true,"lowerBound":0,"iD":false,"id":325,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"v2","changeable":true,"lowerBound":0,"iD":false,"id":326,"derived":false},{"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":true,"unsettable":false,"transient":false,"unique":true,"name":"xsize","changeable":true,"resolveProxies":true,"lowerBound":0,"id":329,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"xauto","changeable":true,"lowerBound":0,"iD":false,"id":330,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"ysize","changeable":true,"resolveProxies":true,"lowerBound":0,"id":331,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"yauto","changeable":true,"lowerBound":0,"iD":false,"id":332,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"predefined","changeable":true,"lowerBound":0,"iD":false,"id":333,"derived":false},{"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":"values","changeable":true,"resolveProxies":true,"lowerBound":0,"id":339,"derived":false},{"id":340,"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":"dashStyle","changeable":true,"resolveProxies":true,"lowerBound":0,"id":341,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"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":342,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"miterAbs","changeable":true,"resolveProxies":true,"lowerBound":0,"id":343,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"miterPredefined","changeable":true,"lowerBound":0,"iD":false,"id":344,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"lineCap","changeable":true,"lowerBound":0,"iD":false,"id":345,"derived":false},{"id":346,"eClass":"EGenericType"},{"id":347,"eClass":"EGenericType"},{"id":348,"eClass":"EGenericType"},{"id":349,"eClass":"EGenericType"},{"id":350,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"v","changeable":true,"lowerBound":0,"iD":false,"id":351,"derived":false},{"id":352,"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":"value","changeable":true,"resolveProxies":true,"lowerBound":0,"id":353,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"fill","changeable":true,"lowerBound":0,"iD":false,"id":354,"derived":false},{"id":355,"eClass":"EGenericType"},{"id":356,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"styleOrWeightString","changeable":true,"lowerBound":0,"iD":false,"id":357,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"weight","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":true,"unsettable":false,"transient":false,"unique":true,"name":"size","changeable":true,"resolveProxies":true,"lowerBound":0,"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":"family","changeable":true,"resolveProxies":true,"lowerBound":0,"id":360,"derived":false},{"id":361,"eClass":"EGenericType"},{"id":362,"eClass":"EGenericType"},{"id":363,"eClass":"EGenericType"},{"id":364,"eClass":"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":365,"derived":false},{"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":"valueString","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":"valueInt","changeable":true,"resolveProxies":true,"lowerBound":0,"id":368,"derived":false},{"id":369,"eClass":"EGenericType"},{"id":370,"eClass":"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":371,"derived":false},{"id":372,"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":"x1","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":"y1","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":"x2","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":"y2","changeable":true,"resolveProxies":true,"lowerBound":0,"id":376,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"stops","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"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"cx","changeable":true,"resolveProxies":true,"lowerBound":0,"id":384,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"cy","changeable":true,"resolveProxies":true,"lowerBound":0,"id":385,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"radius","changeable":true,"resolveProxies":true,"lowerBound":0,"id":386,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"fx","changeable":true,"resolveProxies":true,"lowerBound":0,"id":387,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"fy","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":"stops","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":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"pos","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":true,"unsettable":false,"transient":false,"unique":true,"name":"color","changeable":true,"resolveProxies":true,"lowerBound":0,"id":398,"derived":false},{"id":399,"eClass":"EGenericType"},{"id":400,"eClass":"EGenericType"},{"id":401,"eClass":"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":402,"derived":false},{"id":403,"eClass":"EGenericType"},{"id":404,"eClass":"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":405,"derived":false},{"id":406,"eClass":"EGenericType"},{"id":407,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"hex","changeable":true,"lowerBound":0,"iD":false,"id":408,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"r","changeable":true,"resolveProxies":true,"lowerBound":0,"id":409,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"g","changeable":true,"resolveProxies":true,"lowerBound":0,"id":410,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"b","changeable":true,"resolveProxies":true,"lowerBound":0,"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":"rp","changeable":true,"resolveProxies":true,"lowerBound":0,"id":412,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"gp","changeable":true,"resolveProxies":true,"lowerBound":0,"id":413,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"bp","changeable":true,"resolveProxies":true,"lowerBound":0,"id":414,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"alpha","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"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"hue","changeable":true,"resolveProxies":true,"lowerBound":0,"id":425,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"saturation","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":true,"unsettable":false,"transient":false,"unique":true,"name":"brightness","changeable":true,"resolveProxies":true,"lowerBound":0,"id":427,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"alpha","changeable":true,"resolveProxies":true,"lowerBound":0,"id":428,"derived":false},{"id":429,"eClass":"EGenericType"},{"id":430,"eClass":"EGenericType"},{"id":431,"eClass":"EGenericType"},{"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":"orig","changeable":true,"resolveProxies":true,"lowerBound":0,"id":434,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"mod","changeable":true,"resolveProxies":true,"lowerBound":0,"id":435,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"stopNumbers","changeable":true,"resolveProxies":true,"lowerBound":0,"id":436,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"stopColors","changeable":true,"resolveProxies":true,"lowerBound":0,"id":437,"derived":false},{"id":438,"eClass":"EGenericType"},{"id":439,"eClass":"EGenericType"},{"id":440,"eClass":"EGenericType"},{"id":441,"eClass":"EGenericType"},{"id":442,"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":1,"target":0},{"source":1,"target":83},{"source":83,"target":84},{"source":83,"target":1},{"source":2,"target":0},{"source":2,"target":85},{"source":2,"target":86},{"source":85,"target":87},{"source":85,"target":2},{"source":86,"target":88},{"source":86,"target":2},{"source":3,"target":0},{"source":3,"target":89},{"source":89,"target":90},{"source":89,"target":3},{"source":4,"target":0},{"source":4,"target":91},{"source":4,"target":92},{"source":4,"target":93},{"source":4,"target":94},{"source":91,"target":95},{"source":91,"target":4},{"source":92,"target":96},{"source":92,"target":4},{"source":93,"target":97},{"source":93,"target":4},{"source":94,"target":98},{"source":94,"target":4},{"source":5,"target":0},{"source":5,"target":99},{"source":99,"target":100},{"source":99,"target":5},{"source":6,"target":0},{"source":6,"target":101},{"source":101,"target":102},{"source":101,"target":6},{"source":7,"target":0},{"source":7,"target":103},{"source":103,"target":104},{"source":103,"target":7},{"source":8,"target":0},{"source":9,"target":0},{"source":9,"target":105},{"source":9,"target":106},{"source":9,"target":107},{"source":105,"target":108},{"source":105,"target":9},{"source":106,"target":109},{"source":106,"target":9},{"source":10,"target":0},{"source":10,"target":110},{"source":10,"target":111},{"source":10,"target":112},{"source":110,"target":113},{"source":110,"target":10},{"source":111,"target":114},{"source":111,"target":10},{"source":11,"target":0},{"source":11,"target":115},{"source":11,"target":116},{"source":11,"target":117},{"source":115,"target":118},{"source":115,"target":11},{"source":116,"target":119},{"source":116,"target":11},{"source":12,"target":0},{"source":12,"target":120},{"source":12,"target":121},{"source":12,"target":122},{"source":120,"target":123},{"source":120,"target":12},{"source":121,"target":124},{"source":121,"target":12},{"source":13,"target":0},{"source":13,"target":125},{"source":13,"target":126},{"source":13,"target":127},{"source":125,"target":128},{"source":125,"target":13},{"source":126,"target":129},{"source":126,"target":13},{"source":14,"target":0},{"source":14,"target":130},{"source":14,"target":131},{"source":130,"target":132},{"source":130,"target":14},{"source":15,"target":0},{"source":15,"target":133},{"source":15,"target":134},{"source":133,"target":135},{"source":133,"target":15},{"source":16,"target":0},{"source":16,"target":136},{"source":16,"target":137},{"source":16,"target":138},{"source":16,"target":139},{"source":16,"target":140},{"source":136,"target":141},{"source":136,"target":16},{"source":137,"target":142},{"source":137,"target":16},{"source":138,"target":143},{"source":138,"target":16},{"source":139,"target":144},{"source":139,"target":16},{"source":140,"target":145},{"source":140,"target":16},{"source":17,"target":0},{"source":17,"target":146},{"source":17,"target":147},{"source":146,"target":148},{"source":146,"target":17},{"source":18,"target":0},{"source":18,"target":149},{"source":18,"target":150},{"source":149,"target":151},{"source":149,"target":18},{"source":19,"target":0},{"source":19,"target":152},{"source":19,"target":153},{"source":19,"target":154},{"source":152,"target":155},{"source":152,"target":19},{"source":153,"target":156},{"source":153,"target":19},{"source":20,"target":0},{"source":20,"target":157},{"source":20,"target":158},{"source":20,"target":159},{"source":157,"target":160},{"source":157,"target":20},{"source":158,"target":161},{"source":158,"target":20},{"source":21,"target":0},{"source":21,"target":162},{"source":21,"target":163},{"source":21,"target":164},{"source":162,"target":165},{"source":162,"target":21},{"source":163,"target":166},{"source":163,"target":21},{"source":22,"target":0},{"source":22,"target":167},{"source":22,"target":168},{"source":22,"target":169},{"source":167,"target":170},{"source":167,"target":22},{"source":168,"target":171},{"source":168,"target":22},{"source":23,"target":0},{"source":23,"target":172},{"source":23,"target":173},{"source":23,"target":174},{"source":172,"target":175},{"source":172,"target":23},{"source":173,"target":176},{"source":173,"target":23},{"source":24,"target":0},{"source":24,"target":177},{"source":24,"target":178},{"source":24,"target":179},{"source":177,"target":180},{"source":177,"target":24},{"source":178,"target":181},{"source":178,"target":24},{"source":25,"target":0},{"source":25,"target":182},{"source":25,"target":183},{"source":182,"target":184},{"source":182,"target":25},{"source":26,"target":0},{"source":26,"target":185},{"source":26,"target":186},{"source":26,"target":187},{"source":185,"target":188},{"source":185,"target":26},{"source":186,"target":189},{"source":186,"target":26},{"source":27,"target":0},{"source":27,"target":190},{"source":27,"target":191},{"source":27,"target":192},{"source":190,"target":193},{"source":190,"target":27},{"source":191,"target":194},{"source":191,"target":27},{"source":28,"target":0},{"source":28,"target":195},{"source":28,"target":196},{"source":28,"target":197},{"source":195,"target":198},{"source":195,"target":28},{"source":196,"target":199},{"source":196,"target":28},{"source":29,"target":0},{"source":29,"target":200},{"source":29,"target":201},{"source":29,"target":202},{"source":200,"target":203},{"source":200,"target":29},{"source":201,"target":204},{"source":201,"target":29},{"source":30,"target":0},{"source":30,"target":205},{"source":30,"target":206},{"source":30,"target":207},{"source":205,"target":208},{"source":205,"target":30},{"source":206,"target":209},{"source":206,"target":30},{"source":31,"target":0},{"source":31,"target":210},{"source":31,"target":211},{"source":31,"target":212},{"source":210,"target":213},{"source":210,"target":31},{"source":211,"target":214},{"source":211,"target":31},{"source":32,"target":0},{"source":32,"target":215},{"source":32,"target":216},{"source":32,"target":217},{"source":215,"target":218},{"source":215,"target":32},{"source":216,"target":219},{"source":216,"target":32},{"source":33,"target":0},{"source":33,"target":220},{"source":33,"target":221},{"source":33,"target":222},{"source":220,"target":223},{"source":220,"target":33},{"source":221,"target":224},{"source":221,"target":33},{"source":34,"target":0},{"source":34,"target":225},{"source":34,"target":226},{"source":34,"target":227},{"source":225,"target":228},{"source":225,"target":34},{"source":226,"target":229},{"source":226,"target":34},{"source":35,"target":0},{"source":35,"target":230},{"source":35,"target":231},{"source":35,"target":232},{"source":230,"target":233},{"source":230,"target":35},{"source":231,"target":234},{"source":231,"target":35},{"source":36,"target":0},{"source":36,"target":235},{"source":36,"target":236},{"source":36,"target":237},{"source":235,"target":238},{"source":235,"target":36},{"source":236,"target":239},{"source":236,"target":36},{"source":37,"target":0},{"source":37,"target":240},{"source":37,"target":241},{"source":37,"target":242},{"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":248},{"source":245,"target":38},{"source":246,"target":249},{"source":246,"target":38},{"source":39,"target":0},{"source":39,"target":250},{"source":39,"target":251},{"source":39,"target":252},{"source":250,"target":253},{"source":250,"target":39},{"source":251,"target":254},{"source":251,"target":39},{"source":40,"target":0},{"source":40,"target":255},{"source":40,"target":256},{"source":40,"target":257},{"source":255,"target":258},{"source":255,"target":40},{"source":256,"target":259},{"source":256,"target":40},{"source":41,"target":0},{"source":41,"target":260},{"source":41,"target":261},{"source":260,"target":262},{"source":260,"target":41},{"source":42,"target":0},{"source":42,"target":263},{"source":42,"target":264},{"source":263,"target":265},{"source":263,"target":42},{"source":43,"target":0},{"source":43,"target":266},{"source":43,"target":267},{"source":266,"target":268},{"source":266,"target":43},{"source":44,"target":0},{"source":44,"target":269},{"source":44,"target":270},{"source":269,"target":271},{"source":269,"target":44},{"source":45,"target":0},{"source":45,"target":272},{"source":45,"target":273},{"source":272,"target":274},{"source":272,"target":45},{"source":46,"target":0},{"source":46,"target":275},{"source":46,"target":276},{"source":275,"target":277},{"source":275,"target":46},{"source":47,"target":0},{"source":47,"target":278},{"source":47,"target":279},{"source":278,"target":280},{"source":278,"target":47},{"source":48,"target":0},{"source":48,"target":281},{"source":48,"target":282},{"source":281,"target":283},{"source":281,"target":48},{"source":49,"target":0},{"source":49,"target":284},{"source":49,"target":285},{"source":284,"target":286},{"source":284,"target":49},{"source":50,"target":0},{"source":50,"target":287},{"source":50,"target":288},{"source":287,"target":289},{"source":287,"target":50},{"source":51,"target":0},{"source":51,"target":290},{"source":51,"target":291},{"source":290,"target":51},{"source":291,"target":51},{"source":52,"target":0},{"source":52,"target":292},{"source":52,"target":293},{"source":52,"target":294},{"source":52,"target":295},{"source":52,"target":296},{"source":292,"target":52},{"source":293,"target":52},{"source":294,"target":52},{"source":295,"target":52},{"source":296,"target":52},{"source":53,"target":0},{"source":53,"target":297},{"source":297,"target":298},{"source":297,"target":53},{"source":54,"target":0},{"source":54,"target":299},{"source":299,"target":300},{"source":299,"target":54},{"source":55,"target":0},{"source":56,"target":0},{"source":56,"target":301},{"source":56,"target":302},{"source":301,"target":303},{"source":301,"target":56},{"source":57,"target":0},{"source":57,"target":304},{"source":57,"target":305},{"source":304,"target":306},{"source":304,"target":57},{"source":58,"target":0},{"source":58,"target":307},{"source":307,"target":308},{"source":307,"target":58},{"source":59,"target":0},{"source":59,"target":309},{"source":309,"target":310},{"source":309,"target":59},{"source":60,"target":0},{"source":60,"target":311},{"source":60,"target":312},{"source":311,"target":313},{"source":311,"target":60},{"source":312,"target":314},{"source":312,"target":60},{"source":61,"target":0},{"source":61,"target":315},{"source":315,"target":316},{"source":315,"target":61},{"source":62,"target":0},{"source":62,"target":317},{"source":62,"target":318},{"source":62,"target":319},{"source":62,"target":320},{"source":317,"target":321},{"source":317,"target":62},{"source":318,"target":322},{"source":318,"target":62},{"source":319,"target":323},{"source":319,"target":62},{"source":320,"target":324},{"source":320,"target":62},{"source":63,"target":0},{"source":63,"target":325},{"source":63,"target":326},{"source":325,"target":327},{"source":325,"target":63},{"source":326,"target":328},{"source":326,"target":63},{"source":64,"target":0},{"source":64,"target":329},{"source":64,"target":330},{"source":64,"target":331},{"source":64,"target":332},{"source":64,"target":333},{"source":329,"target":334},{"source":329,"target":64},{"source":330,"target":335},{"source":330,"target":64},{"source":331,"target":336},{"source":331,"target":64},{"source":332,"target":337},{"source":332,"target":64},{"source":333,"target":338},{"source":333,"target":64},{"source":65,"target":0},{"source":65,"target":339},{"source":339,"target":340},{"source":339,"target":65},{"source":66,"target":0},{"source":66,"target":341},{"source":66,"target":342},{"source":66,"target":343},{"source":66,"target":344},{"source":66,"target":345},{"source":341,"target":346},{"source":341,"target":66},{"source":342,"target":347},{"source":342,"target":66},{"source":343,"target":348},{"source":343,"target":66},{"source":344,"target":349},{"source":344,"target":66},{"source":345,"target":350},{"source":345,"target":66},{"source":67,"target":0},{"source":67,"target":351},{"source":351,"target":352},{"source":351,"target":67},{"source":68,"target":0},{"source":68,"target":353},{"source":68,"target":354},{"source":353,"target":355},{"source":353,"target":68},{"source":354,"target":356},{"source":354,"target":68},{"source":69,"target":0},{"source":69,"target":357},{"source":69,"target":358},{"source":69,"target":359},{"source":69,"target":360},{"source":357,"target":361},{"source":357,"target":69},{"source":358,"target":362},{"source":358,"target":69},{"source":359,"target":363},{"source":359,"target":69},{"source":360,"target":364},{"source":360,"target":69},{"source":70,"target":0},{"source":70,"target":365},{"source":365,"target":366},{"source":365,"target":70},{"source":71,"target":0},{"source":71,"target":367},{"source":71,"target":368},{"source":367,"target":369},{"source":367,"target":71},{"source":368,"target":370},{"source":368,"target":71},{"source":72,"target":0},{"source":72,"target":371},{"source":371,"target":372},{"source":371,"target":72},{"source":73,"target":0},{"source":74,"target":0},{"source":74,"target":373},{"source":74,"target":374},{"source":74,"target":375},{"source":74,"target":376},{"source":74,"target":377},{"source":74,"target":378},{"source":373,"target":379},{"source":373,"target":74},{"source":374,"target":380},{"source":374,"target":74},{"source":375,"target":381},{"source":375,"target":74},{"source":376,"target":382},{"source":376,"target":74},{"source":377,"target":383},{"source":377,"target":74},{"source":75,"target":0},{"source":75,"target":384},{"source":75,"target":385},{"source":75,"target":386},{"source":75,"target":387},{"source":75,"target":388},{"source":75,"target":389},{"source":75,"target":390},{"source":384,"target":391},{"source":384,"target":75},{"source":385,"target":392},{"source":385,"target":75},{"source":386,"target":393},{"source":386,"target":75},{"source":387,"target":394},{"source":387,"target":75},{"source":388,"target":395},{"source":388,"target":75},{"source":389,"target":396},{"source":389,"target":75},{"source":76,"target":0},{"source":76,"target":397},{"source":76,"target":398},{"source":397,"target":399},{"source":397,"target":76},{"source":398,"target":400},{"source":398,"target":76},{"source":77,"target":0},{"source":77,"target":401},{"source":78,"target":0},{"source":78,"target":402},{"source":78,"target":403},{"source":402,"target":404},{"source":402,"target":78},{"source":79,"target":0},{"source":79,"target":405},{"source":79,"target":406},{"source":405,"target":407},{"source":405,"target":79},{"source":80,"target":0},{"source":80,"target":408},{"source":80,"target":409},{"source":80,"target":410},{"source":80,"target":411},{"source":80,"target":412},{"source":80,"target":413},{"source":80,"target":414},{"source":80,"target":415},{"source":80,"target":416},{"source":408,"target":417},{"source":408,"target":80},{"source":409,"target":418},{"source":409,"target":80},{"source":410,"target":419},{"source":410,"target":80},{"source":411,"target":420},{"source":411,"target":80},{"source":412,"target":421},{"source":412,"target":80},{"source":413,"target":422},{"source":413,"target":80},{"source":414,"target":423},{"source":414,"target":80},{"source":415,"target":424},{"source":415,"target":80},{"source":81,"target":0},{"source":81,"target":425},{"source":81,"target":426},{"source":81,"target":427},{"source":81,"target":428},{"source":81,"target":429},{"source":425,"target":430},{"source":425,"target":81},{"source":426,"target":431},{"source":426,"target":81},{"source":427,"target":432},{"source":427,"target":81},{"source":428,"target":433},{"source":428,"target":81},{"source":82,"target":0},{"source":82,"target":434},{"source":82,"target":435},{"source":82,"target":436},{"source":82,"target":437},{"source":82,"target":438},{"source":434,"target":439},{"source":434,"target":82},{"source":435,"target":440},{"source":435,"target":82},{"source":436,"target":441},{"source":436,"target":82},{"source":437,"target":442},{"source":437,"target":82}],"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=""> <eClassifiers xsi:type="ecore:EClass" name="new EClass 1" eSuperTypes="#//new%20EClass%202"/> <eClassifiers xsi:type="ecore:EClass" name="new EClass 2"/> <eClassifiers xsi:type="ecore:EClass" name="new EClass 3" eSuperTypes="#//new%20EClass%202"/> <eClassifiers xsi:type="ecore:EClass" name="EClass4"/> </ecore:EPackage>
github:ecore:/data/CohesionForce/ecfrance-sirius/plugins/org.eclipse.sirius.tests.swtbot/data/unit/dragAndDrop/tree_table_to_diagram/test.ecore
ecore
new EClass 1 new EClass 2 new EClass 3 EClass4
null
{"directed":true,"nodes":[{"nsPrefix":null,"nsURI":null,"name":"","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"new EClass 1","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"new EClass 2","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"new EClass 3","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EClass4","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"id":5,"eClass":"EGenericType"},{"id":6,"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":2},{"source":1,"target":5},{"source":5,"target":2},{"source":2,"target":0},{"source":3,"target":0},{"source":3,"target":2},{"source":3,"target":6},{"source":6,"target":2},{"source":4,"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="java" nsURI="http://java/1.0" nsPrefix="java"> <eClassifiers xsi:type="ecore:EClass" name="Block" eSuperTypes="#//Instruction"> <eStructuralFeatures xsi:type="ecore:EReference" name="instructions" upperBound="-1" eType="#//Instruction"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Primitive" eSuperTypes="#//Type"/> <eClassifiers xsi:type="ecore:EClass" name="Class" eSuperTypes="#//Type"> <eStructuralFeatures xsi:type="ecore:EReference" name="hasMethods" upperBound="-1" eType="#//Method" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="hasAttributes" upperBound="-1" eType="#//Attribute" containment="true"/> </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="Variable" eSuperTypes="#//Expression"> <eStructuralFeatures xsi:type="ecore:EReference" name="TypeOf" lowerBound="1" eType="#//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="Instruction"/> <eClassifiers xsi:type="ecore:EClass" name="Expression" eSuperTypes="#//Instruction"/> <eClassifiers xsi:type="ecore:EClass" name="Method" eSuperTypes="#//Instruction"> <eStructuralFeatures xsi:type="ecore:EReference" name="ReturnType" eType="#//Type"/> <eStructuralFeatures xsi:type="ecore:EReference" name="parameters" upperBound="-1" eType="#//Parameter" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="Contain" eType="#//Block" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="Return" eType="#//Expression" 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="Attribute" eSuperTypes="#//Variable"/> <eClassifiers xsi:type="ecore:EClass" name="Parameter" eSuperTypes="#//Expression"> <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="Constant" eSuperTypes="#//Expression"> <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="ControlStructure" eSuperTypes="#//Instruction"> <eStructuralFeatures xsi:type="ecore:EReference" name="condition" eType="#//Expression" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="If" eSuperTypes="#//ControlStructure"> <eStructuralFeatures xsi:type="ecore:EReference" name="Then" eType="#//Block" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="Else" eType="#//Block" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="For" eSuperTypes="#//ControlStructure"> <eStructuralFeatures xsi:type="ecore:EReference" name="For" eType="#//Block" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="While" eSuperTypes="#//ControlStructure"> <eStructuralFeatures xsi:type="ecore:EReference" name="While" eType="#//Block" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Do" eSuperTypes="#//ControlStructure"> <eStructuralFeatures xsi:type="ecore:EReference" name="Do" eType="#//Block" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CallMethod" eSuperTypes="#//Expression"> <eStructuralFeatures xsi:type="ecore:EReference" name="Args" upperBound="-1" eType="#//Expression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="Call" lowerBound="1" eType="#//Method"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="BinaryExpression" eSuperTypes="#//Expression"> <eStructuralFeatures xsi:type="ecore:EReference" name="RBinary" lowerBound="1" eType="#//Expression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="LBinary" lowerBound="1" eType="#//Expression" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Plus" eSuperTypes="#//BinaryExpression"/> <eClassifiers xsi:type="ecore:EClass" name="Minus" eSuperTypes="#//BinaryExpression"/> <eClassifiers xsi:type="ecore:EClass" name="Mult" eSuperTypes="#//BinaryExpression"/> <eClassifiers xsi:type="ecore:EClass" name="Div" eSuperTypes="#//BinaryExpression"/> <eClassifiers xsi:type="ecore:EClass" name="Equals" eSuperTypes="#//BinaryExpression"/> <eClassifiers xsi:type="ecore:EClass" name="Greater" eSuperTypes="#//BinaryExpression"/> <eClassifiers xsi:type="ecore:EClass" name="Lower" eSuperTypes="#//BinaryExpression"/> <eClassifiers xsi:type="ecore:EClass" name="ParameterCall" eSuperTypes="#//Expression"> <eStructuralFeatures xsi:type="ecore:EReference" name="parameter" lowerBound="1" eType="#//Parameter"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Number" 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="DrawMethod" eSuperTypes="#//Instruction"> <eStructuralFeatures xsi:type="ecore:EReference" name="Params" eType="#//Expression"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="Name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> </ecore:EPackage>
github:ecore:/data/oelhor/Logo2Java/Metamodel/Java.ecore
ecore
java Block instructions Primitive Class hasMethods hasAttributes Type name Variable TypeOf name Instruction Expression Method ReturnType parameters Contain Return name Attribute Parameter name Constant Value Name ControlStructure condition If Then Else For For While While Do Do CallMethod Args Call BinaryExpression RBinary LBinary Plus Minus Mult Div Equals Greater Lower ParameterCall parameter Number Value DrawMethod Params Name
null
{"directed":true,"nodes":[{"nsPrefix":"java","nsURI":"http://java/1.0","name":"java","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Block","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Primitive","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Class","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Type","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Variable","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Instruction","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Expression","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Method","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Attribute","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Parameter","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Constant","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ControlStructure","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"If","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"For","instanceClass":null,"abstract":false,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"While","instanceClass":null,"abstract":false,"id":15,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Do","instanceClass":null,"abstract":false,"id":16,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CallMethod","instanceClass":null,"abstract":false,"id":17,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BinaryExpression","instanceClass":null,"abstract":false,"id":18,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Plus","instanceClass":null,"abstract":false,"id":19,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Minus","instanceClass":null,"abstract":false,"id":20,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Mult","instanceClass":null,"abstract":false,"id":21,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Div","instanceClass":null,"abstract":false,"id":22,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Equals","instanceClass":null,"abstract":false,"id":23,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Greater","instanceClass":null,"abstract":false,"id":24,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Lower","instanceClass":null,"abstract":false,"id":25,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ParameterCall","instanceClass":null,"abstract":false,"id":26,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Number","instanceClass":null,"abstract":false,"id":27,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DrawMethod","instanceClass":null,"abstract":false,"id":28,"interface":false,"eClass":"EClass"},{"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":"instructions","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":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"hasMethods","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":"hasAttributes","changeable":true,"resolveProxies":true,"lowerBound":0,"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":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"},{"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":"TypeOf","changeable":true,"resolveProxies":true,"lowerBound":1,"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":"name","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"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"ReturnType","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":"parameters","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":"Contain","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":"Return","changeable":true,"resolveProxies":true,"lowerBound":0,"id":49,"derived":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":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,"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},{"id":59,"eClass":"EGenericType"},{"id":60,"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":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":"Name","changeable":true,"lowerBound":0,"iD":false,"id":62,"derived":false},{"id":63,"eClass":"EGenericType"},{"id":64,"eClass":"EGenericType"},{"id":65,"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":66,"derived":false},{"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":true,"unsettable":false,"transient":false,"unique":true,"name":"Then","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":"Else","changeable":true,"resolveProxies":true,"lowerBound":0,"id":70,"derived":false},{"id":71,"eClass":"EGenericType"},{"id":72,"eClass":"EGenericType"},{"id":73,"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":"For","changeable":true,"resolveProxies":true,"lowerBound":0,"id":74,"derived":false},{"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":true,"unsettable":false,"transient":false,"unique":true,"name":"While","changeable":true,"resolveProxies":true,"lowerBound":0,"id":77,"derived":false},{"id":78,"eClass":"EGenericType"},{"id":79,"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":"Do","changeable":true,"resolveProxies":true,"lowerBound":0,"id":80,"derived":false},{"id":81,"eClass":"EGenericType"},{"id":82,"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":"Args","changeable":true,"resolveProxies":true,"lowerBound":0,"id":83,"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":"Call","changeable":true,"resolveProxies":true,"lowerBound":1,"id":84,"derived":false},{"id":85,"eClass":"EGenericType"},{"id":86,"eClass":"EGenericType"},{"id":87,"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":"RBinary","changeable":true,"resolveProxies":true,"lowerBound":1,"id":88,"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":"LBinary","changeable":true,"resolveProxies":true,"lowerBound":1,"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"},{"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":100,"derived":false},{"id":101,"eClass":"EGenericType"},{"id":102,"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":103,"derived":false},{"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":false,"unsettable":false,"transient":false,"unique":true,"name":"Params","changeable":true,"resolveProxies":true,"lowerBound":0,"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":"Name","changeable":true,"lowerBound":0,"iD":false,"id":107,"derived":false},{"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":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":6},{"source":1,"target":29},{"source":1,"target":30},{"source":29,"target":6},{"source":29,"target":31},{"source":29,"target":1},{"source":31,"target":6},{"source":30,"target":6},{"source":2,"target":0},{"source":2,"target":4},{"source":2,"target":32},{"source":32,"target":4},{"source":3,"target":0},{"source":3,"target":4},{"source":3,"target":33},{"source":3,"target":34},{"source":3,"target":35},{"source":33,"target":8},{"source":33,"target":36},{"source":33,"target":3},{"source":36,"target":8},{"source":34,"target":9},{"source":34,"target":37},{"source":34,"target":3},{"source":37,"target":9},{"source":35,"target":4},{"source":4,"target":0},{"source":4,"target":38},{"source":38,"target":39},{"source":38,"target":4},{"source":5,"target":0},{"source":5,"target":7},{"source":5,"target":40},{"source":5,"target":41},{"source":5,"target":42},{"source":40,"target":4},{"source":40,"target":43},{"source":40,"target":5},{"source":43,"target":4},{"source":41,"target":44},{"source":41,"target":5},{"source":42,"target":7},{"source":6,"target":0},{"source":7,"target":0},{"source":7,"target":6},{"source":7,"target":45},{"source":45,"target":6},{"source":8,"target":0},{"source":8,"target":6},{"source":8,"target":46},{"source":8,"target":47},{"source":8,"target":48},{"source":8,"target":49},{"source":8,"target":50},{"source":8,"target":51},{"source":46,"target":4},{"source":46,"target":52},{"source":46,"target":8},{"source":52,"target":4},{"source":47,"target":10},{"source":47,"target":53},{"source":47,"target":8},{"source":53,"target":10},{"source":48,"target":1},{"source":48,"target":54},{"source":48,"target":8},{"source":54,"target":1},{"source":49,"target":7},{"source":49,"target":55},{"source":49,"target":8},{"source":55,"target":7},{"source":50,"target":56},{"source":50,"target":8},{"source":51,"target":6},{"source":9,"target":0},{"source":9,"target":5},{"source":9,"target":57},{"source":57,"target":5},{"source":10,"target":0},{"source":10,"target":7},{"source":10,"target":58},{"source":10,"target":59},{"source":58,"target":60},{"source":58,"target":10},{"source":59,"target":7},{"source":11,"target":0},{"source":11,"target":7},{"source":11,"target":61},{"source":11,"target":62},{"source":11,"target":63},{"source":61,"target":64},{"source":61,"target":11},{"source":62,"target":65},{"source":62,"target":11},{"source":63,"target":7},{"source":12,"target":0},{"source":12,"target":6},{"source":12,"target":66},{"source":12,"target":67},{"source":66,"target":7},{"source":66,"target":68},{"source":66,"target":12},{"source":68,"target":7},{"source":67,"target":6},{"source":13,"target":0},{"source":13,"target":12},{"source":13,"target":69},{"source":13,"target":70},{"source":13,"target":71},{"source":69,"target":1},{"source":69,"target":72},{"source":69,"target":13},{"source":72,"target":1},{"source":70,"target":1},{"source":70,"target":73},{"source":70,"target":13},{"source":73,"target":1},{"source":71,"target":12},{"source":14,"target":0},{"source":14,"target":12},{"source":14,"target":74},{"source":14,"target":75},{"source":74,"target":1},{"source":74,"target":76},{"source":74,"target":14},{"source":76,"target":1},{"source":75,"target":12},{"source":15,"target":0},{"source":15,"target":12},{"source":15,"target":77},{"source":15,"target":78},{"source":77,"target":1},{"source":77,"target":79},{"source":77,"target":15},{"source":79,"target":1},{"source":78,"target":12},{"source":16,"target":0},{"source":16,"target":12},{"source":16,"target":80},{"source":16,"target":81},{"source":80,"target":1},{"source":80,"target":82},{"source":80,"target":16},{"source":82,"target":1},{"source":81,"target":12},{"source":17,"target":0},{"source":17,"target":7},{"source":17,"target":83},{"source":17,"target":84},{"source":17,"target":85},{"source":83,"target":7},{"source":83,"target":86},{"source":83,"target":17},{"source":86,"target":7},{"source":84,"target":8},{"source":84,"target":87},{"source":84,"target":17},{"source":87,"target":8},{"source":85,"target":7},{"source":18,"target":0},{"source":18,"target":7},{"source":18,"target":88},{"source":18,"target":89},{"source":18,"target":90},{"source":88,"target":7},{"source":88,"target":91},{"source":88,"target":18},{"source":91,"target":7},{"source":89,"target":7},{"source":89,"target":92},{"source":89,"target":18},{"source":92,"target":7},{"source":90,"target":7},{"source":19,"target":0},{"source":19,"target":18},{"source":19,"target":93},{"source":93,"target":18},{"source":20,"target":0},{"source":20,"target":18},{"source":20,"target":94},{"source":94,"target":18},{"source":21,"target":0},{"source":21,"target":18},{"source":21,"target":95},{"source":95,"target":18},{"source":22,"target":0},{"source":22,"target":18},{"source":22,"target":96},{"source":96,"target":18},{"source":23,"target":0},{"source":23,"target":18},{"source":23,"target":97},{"source":97,"target":18},{"source":24,"target":0},{"source":24,"target":18},{"source":24,"target":98},{"source":98,"target":18},{"source":25,"target":0},{"source":25,"target":18},{"source":25,"target":99},{"source":99,"target":18},{"source":26,"target":0},{"source":26,"target":7},{"source":26,"target":100},{"source":26,"target":101},{"source":100,"target":10},{"source":100,"target":102},{"source":100,"target":26},{"source":102,"target":10},{"source":101,"target":7},{"source":27,"target":0},{"source":27,"target":7},{"source":27,"target":103},{"source":27,"target":104},{"source":103,"target":105},{"source":103,"target":27},{"source":104,"target":7},{"source":28,"target":0},{"source":28,"target":6},{"source":28,"target":106},{"source":28,"target":107},{"source":28,"target":108},{"source":106,"target":7},{"source":106,"target":109},{"source":106,"target":28},{"source":109,"target":7},{"source":107,"target":110},{"source":107,"target":28},{"source":108,"target":6}],"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="generics" nsURI="http://www.netxforge.com/13042011/generics" nsPrefix="generics"> <eClassifiers xsi:type="ecore:EEnum" name="ActionType"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="Action_._type"/> </eAnnotations> <eLiterals name="UPDATE"/> <eLiterals name="ADD" value="1"/> <eLiterals name="DELETE" value="2"/> </eClassifiers> <eClassifiers xsi:type="ecore:EDataType" name="ActionTypeObject" instanceClassName="org.eclipse.emf.common.util.Enumerator"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="Action_._type:Object"/> <details key="baseType" value="Action_._type"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Base"> <eAnnotations source="teneo.jpa"> <details key="appinfo" value="@MappedSuperclass"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="Base"/> <details key="kind" value="empty"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="deleted" 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="Deleted"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CommitLogEntry" eSuperTypes="#//Base"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="&#xA;&#x9;&#x9;&#x9;&#x9;Represents the changes done by a user for a certain&#xA;&#x9;&#x9;&#x9;&#x9;object/user.&#xA;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="CommitLogEntry"/> <details key="kind" value="empty"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="action" eType="#//ActionType" unsettable="true"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The Action type"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="Action"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="change" eType="#//Description2000"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;The type uri of the object being changed&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="Change"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="objectId" eType="#//Description2000"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;The id/uri of the object being changed&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="ObjectId"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="timeStamp" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//DateTime"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The TimeStamp attribute holds the time of the&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;commit.&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="TimeStamp"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="user" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;The user name&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="User"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Company" eSuperTypes="#//Base"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A type representing the basic information points of&#xA;&#x9;&#x9;&#x9;&#x9;a real company.&#xA;&#x9;&#x9;&#x9;&#x9;A Company can be a commercial vendor of equipment, a&#xA;&#x9;&#x9;&#x9;&#x9;telecommunication service provider or other&#xA;&#x9;&#x9;&#x9;&#x9;institution i.e. industry&#xA;&#x9;&#x9;&#x9;&#x9;cooperation bodies to promote usage of standards. It&#xA;&#x9;&#x9;&#x9;&#x9;is required to&#xA;&#x9;&#x9;&#x9;&#x9;organise objects&#xA;&#x9;&#x9;&#x9;&#x9;by Company.&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;Examples:&#xA;&#x9;&#x9;&#x9;&#x9;1. The company type is used to&#xA;&#x9;&#x9;&#x9;&#x9;organize reports like an expansion Bill&#xA;&#x9;&#x9;&#x9;&#x9;of Quantity by vendor.&#xA;&#x9;&#x9;&#x9;&#x9;2. The&#xA;&#x9;&#x9;&#x9;&#x9;company type is used in a UI widget to show equipments from a&#xA;&#x9;&#x9;&#x9;&#x9;certain company.&#xA;&#x9;&#x9;&#x9;&#x9;3. The company type is used in a UI widget to show&#xA;&#x9;&#x9;&#x9;&#x9;protocols from a&#xA;&#x9;&#x9;&#x9;&#x9;certain standardisation body.&#xA;&#x9;&#x9;&#x9;&#x9;4. The company type is&#xA;&#x9;&#x9;&#x9;&#x9;used in a UI widget to show RSS feed news from&#xA;&#x9;&#x9;&#x9;&#x9;a certain company.&#xA;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="Company"/> <details key="kind" value="elementOnly"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="icons" eType="#//MultiImage" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The Images reference, contains 0 or one&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;MultiImage type.&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="Icons"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="#//Name255"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The Name attribute is a free form text.&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </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="rSSurl" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//AnyURI"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The RSSurl attribute should contain a URL to a&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;so-called RSS feed.&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;The RSS format is defined here:&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;http://en.wikipedia.org/wiki/RSS&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;Examples:&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;1. The following URL is&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;an RSS URL:&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;http://isoc.org/wp/ietfjournal/?feed=rss2&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="RSSurl"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="shortName" eType="#//Name255"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The ShortName attribute is a free form text, but&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;should generally be kept short (3 characters).&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;Examples: 1. The&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;ShortName is used in UI widgets where space is limited.&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="ShortName"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="symbol" eType="#//Name255"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The financial Symbol or ticker attribute, is&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;according to financial market ticker definitions.&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;Examples: 1. The&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;Symbol type can be used to lookup financial information&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;of a&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;Company.&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="Symbol"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="website" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//AnyURI"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The Website attribute should contain the main&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;web URL of the website. It should be according to&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;http://en.wikipedia.org/wiki/Uniform_Resource_Locator&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;Examples: 1.&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;http://www.ietf.org&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="Website"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="DateTimeRange"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A type representing the basic information point for&#xA;&#x9;&#x9;&#x9;&#x9;a DateTime Range or a period.&#xA;&#x9;&#x9;&#x9;&#x9;A range with a start and end timestamp.&#xA;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="DateTimeRange"/> <details key="kind" value="empty"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="begin" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//DateTime"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The Begin attribute holds the starting date time&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;of the range.&#xA;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="Begin"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="end" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//DateTime"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The End attribute holds the end date time of the&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;range.&#xA;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="End"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EDataType" name="Description2000" instanceClassName="java.lang.String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A description type of 2000 chars"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="Description2000"/> <details key="baseType" value="http://www.eclipse.org/emf/2003/XMLType#string"/> <details key="maxLength" value="2000"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="DiagramInfo" eSuperTypes="#//Base"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A type representing the basic information point&#xA;&#x9;&#x9;&#x9;&#x9;Diagram.&#xA;&#x9;&#x9;&#x9;&#x9;It consists of a location (Where the diagram is stored), and&#xA;&#x9;&#x9;&#x9;&#x9;the type&#xA;&#x9;&#x9;&#x9;&#x9;of diagram.&#xA;&#x9;&#x9;&#x9;&#x9;Diagrams can be attached to various objects, to&#xA;&#x9;&#x9;&#x9;&#x9;visual the object relations.&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;The Diagram model is expected to be a&#xA;&#x9;&#x9;&#x9;&#x9;Notation model, which refers&#xA;&#x9;&#x9;&#x9;&#x9;to the NetXStudio model.&#xA;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="DiagramInfo"/> <details key="kind" value="empty"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="diagramKind" eType="#//DiagramKindType" unsettable="true"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The DiagramKind attribute holds a reference to&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;the&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;kind of diagram, to open the correct editor.&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="DiagramKind"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="location" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//AnyURI"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The Location attribute holds a reference to the&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;location where the diagram is stored.&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="Location"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="DiagramKindType"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="DiagramKind_._type"/> </eAnnotations> <eLiterals name="NETWORK"/> <eLiterals name="FUNCTION" value="1"/> <eLiterals name="EQUIPMENT" value="2"/> <eLiterals name="NODE" value="3"/> <eLiterals name="WIRING" value="4"/> </eClassifiers> <eClassifiers xsi:type="ecore:EDataType" name="DiagramKindTypeObject" instanceClassName="org.eclipse.emf.common.util.Enumerator"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="DiagramKind_._type:Object"/> <details key="baseType" value="DiagramKind_._type"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="ExpansionDuration"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A type representing a duration indication used to&#xA;&#x9;&#x9;&#x9;&#x9;determine when an expansion should be initiated&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;Quick less than 6&#xA;&#x9;&#x9;&#x9;&#x9;weeks Short less than 3 months Medium less than 9&#xA;&#x9;&#x9;&#x9;&#x9;months Long less&#xA;&#x9;&#x9;&#x9;&#x9;than 18 months&#xA;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="ExpansionDuration"/> </eAnnotations> <eLiterals name="QUICK"/> <eLiterals name="SHORT" value="1"/> <eLiterals name="MEDIUM" value="2"/> <eLiterals name="LONG" value="3"/> </eClassifiers> <eClassifiers xsi:type="ecore:EDataType" name="ExpansionDurationObject" instanceClassName="org.eclipse.emf.common.util.Enumerator"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="ExpansionDuration:Object"/> <details key="baseType" value="ExpansionDuration"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ExpansionDurationSetting" eSuperTypes="#//Base"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A type representing the complete settings of an expansion duration. &#xA;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="ExpansionDurationSetting"/> <details key="kind" value="elementOnly"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="quickDuration" eType="#//ExpansionDurationValue" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The value of the QUICK Duration&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="QuickDuration"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="shortDuration" eType="#//ExpansionDurationValue" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The value of the SHORT Duration&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="ShortDuration"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="mediumDuration" eType="#//ExpansionDurationValue" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The value of the MEDIUM Duration&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="MediumDuration"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="longDuration" eType="#//ExpansionDurationValue" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The value of the LONG Duration&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="LongDuration"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ExpansionDurationValue" eSuperTypes="#//Base"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A type representing a single expansion duration&#xA;&#x9;&#x9;&#x9;&#x9;value.&#xA;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="ExpansionDurationValue"/> <details key="kind" value="empty"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="expansionDuration" eType="#//ExpansionDuration" unsettable="true"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="ExpansionDuration"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="value" 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 Value attribute is the number of days an&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;expansion will take before completed and in production.&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="Value"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EDataType" name="ExpressionLine" instanceClassName="java.lang.String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A type representing an expression.&#xA;&#x9;&#x9;&#x9;&#x9;See NetXScript&#xA;&#x9;&#x9;&#x9;&#x9;specification&#xA;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="ExpressionLine"/> <details key="baseType" value="http://www.eclipse.org/emf/2003/XMLType#string"/> <details key="maxLength" value="1000"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Lifecycle" eSuperTypes="#//Base"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A type representing the lifecycle.&#xA;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="Lifecycle"/> <details key="kind" value="empty"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="constructionDate" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//DateTime"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The ConstructionDate attribute holds the date&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;and&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;time when constructed.&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="ConstructionDate"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="inServiceDate" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//DateTime"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The InServiceDate attribute holds the date and&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;time when brought into service.&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="InServiceDate"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="outOfServiceDate" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//DateTime"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The OutOfServiceDate attribute holds the date&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;and&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;time when out of service.&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="OutOfServiceDate"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="plannedDate" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//DateTime"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The PlannedDate attribute holds the date and&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;time&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;when planned.&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="PlannedDate"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="proposed" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//DateTime"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The Proposed attribute holds the date and time&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;when proposed.&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="Proposed"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EDataType" name="LongText" instanceClassName="java.lang.String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A long text used for logs etc."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="LongText"/> <details key="baseType" value="http://www.eclipse.org/emf/2003/XMLType#string"/> <details key="maxLength" value="20000"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Meta" eSuperTypes="#//Base"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A type representing meta information about this&#xA;&#x9;&#x9;&#x9;&#x9;model.&#xA;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="Meta"/> <details key="kind" value="elementOnly"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="author" eType="#//Person"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The Author reference, references 1 User type.&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="Author"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="description" eType="#//Description2000"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The Description attribute holds the description&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;of&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;this datamodel.&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </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="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 holds the version of this&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;datamodel.&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </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="MultiImage" eSuperTypes="#//Base"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A type representing an image. The image can be&#xA;&#x9;&#x9;&#x9;&#x9;specified for various sizes from 16x16 upto 128x128.&#xA;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="MultiImage"/> <details key="kind" value="elementOnly"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="obj16" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//AnyURI"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The obj16 attribute, refers to a 16x16 URI of&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;type png or gif.&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="obj16"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="obj32" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//AnyURI"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The obj32 attribute, refers to a 32x32 URI of&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;type png or gif.&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="obj32"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="obj48" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//AnyURI"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The obj48 attribute, refers to a 48x48 URI of&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;type png or gif.&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="obj48"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="obj96" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//AnyURI"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The obj96 attribute, refers to a 96x96 URI of&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;type png or gif.&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="obj96"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="obj128" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//AnyURI"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The obj128 attribute, refers to a 128x128 URI&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;of&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;type png or gif.&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="obj128"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EDataType" name="Name255" instanceClassName="java.lang.String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A name type of 255 chars."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="Name255"/> <details key="baseType" value="http://www.eclipse.org/emf/2003/XMLType#string"/> <details key="maxLength" value="255"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Person" eSuperTypes="#//Base"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="&#xA;&#x9;&#x9;&#x9;&#x9;A type representing the basic information points of&#xA;&#x9;&#x9;&#x9;&#x9;a&#xA;&#x9;&#x9;&#x9;&#x9;User in the context of using the application. The Email&#xA;&#x9;&#x9;&#x9;&#x9;attribute is&#xA;&#x9;&#x9;&#x9;&#x9;also the login identifier.&#xA;&#xA;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="Person"/> <details key="kind" value="elementOnly"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="roles" eType="#//Role"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="Roles"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="active" 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="Active"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="companyRef" eType="#//Company"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;The CompanyRef reference, refers to 0 or 1&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;Company&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;type.&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="CompanyRef"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="email" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;The Email attribute hols the email address of&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;the&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;user. It is according to regex:&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;^[A-Z0-9._%-]+@[A-Z0-9.-]+\.[A-Z]{2,4}$&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="Email"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="firstName" eType="#//Name255"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;The FirstName attribute holds the first name of&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;the&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;person.&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="FirstName"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="lastName" eType="#//Name255"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;The LastName attribute holds the last name of&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;the&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;person.&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="LastName"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="login" eType="#//Name255"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;The Login attribute holds the login ID of the&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;person.&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="Login"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="password" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;The Password attribute holds the password of the&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;user.&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="Password"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Role" eSuperTypes="#//Base"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="Role"/> <details key="kind" value="empty"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="#//Name255"> <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:EDataType" name="UnitCode" instanceClassName="java.lang.String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A type representing a Unit as in a measurement&#xA;&#x9;&#x9;&#x9;&#x9;unit. The Unit, is a three character string&#xA;&#x9;&#x9;&#x9;&#x9;which demarks the&#xA;&#x9;&#x9;&#x9;&#x9;resource unit for displaying purposes. (The Unit as&#xA;&#x9;&#x9;&#x9;&#x9;such is not&#xA;&#x9;&#x9;&#x9;&#x9;interpreted).&#xA;&#x9;&#x9;&#x9;&#x9;Units can be freely defined (Not implied by&#xA;&#x9;&#x9;&#x9;&#x9;enumeration).&#xA;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="UnitCode"/> <details key="baseType" value="http://www.eclipse.org/emf/2003/XMLType#string"/> <details key="maxLength" value="3"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Value"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A type representing a numeric value and a timestamp&#xA;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="Value"/> <details key="kind" value="empty"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="timeStamp" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//DateTime"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The TimeStamp attribute holds the time date for&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;which the value applies.&#xA;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="TimeStamp"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//Double" unsettable="true"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The Value attribute holds the numeric value&#xA;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="Value"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> </ecore:EPackage>
github:ecore:/data/dzonekl/netxstudio/model/com.netxforge.netxstudio.models/models/cdo/13042011/generics.ecore
ecore
generics ActionType UPDATE UPDATE ADD ADD DELETE DELETE ActionTypeObject org.eclipse.emf.common.util.Enumerator org.eclipse.emf.common.util.Enumerator Base deleted CommitLogEntry action change objectId timeStamp user Company icons name rSSurl shortName symbol website DateTimeRange begin end Description2000 java.lang.String java.lang.String DiagramInfo diagramKind location DiagramKindType NETWORK NETWORK FUNCTION FUNCTION EQUIPMENT EQUIPMENT NODE NODE WIRING WIRING DiagramKindTypeObject org.eclipse.emf.common.util.Enumerator org.eclipse.emf.common.util.Enumerator ExpansionDuration QUICK QUICK SHORT SHORT MEDIUM MEDIUM LONG LONG ExpansionDurationObject org.eclipse.emf.common.util.Enumerator org.eclipse.emf.common.util.Enumerator ExpansionDurationSetting quickDuration shortDuration mediumDuration longDuration ExpansionDurationValue expansionDuration value ExpressionLine java.lang.String java.lang.String Lifecycle constructionDate inServiceDate outOfServiceDate plannedDate proposed LongText java.lang.String java.lang.String Meta author description version MultiImage obj16 obj32 obj48 obj96 obj128 Name255 java.lang.String java.lang.String Person roles active companyRef email firstName lastName login password Role name UnitCode java.lang.String java.lang.String Value timeStamp value
null
{"directed":true,"nodes":[{"nsPrefix":"generics","nsURI":"http://www.netxforge.com/13042011/generics","name":"generics","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"instanceClassName":null,"name":"ActionType","instanceClass":null,"id":1,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":"org.eclipse.emf.common.util.Enumerator","defaultValue":null,"instanceClassName":"org.eclipse.emf.common.util.Enumerator","name":"ActionTypeObject","instanceClass":"org.eclipse.emf.common.util.Enumerator","id":2,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Base","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CommitLogEntry","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Company","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DateTimeRange","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":"java.lang.String","defaultValue":null,"instanceClassName":"java.lang.String","name":"Description2000","instanceClass":"java.lang.String","id":7,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DiagramInfo","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"DiagramKindType","instanceClass":null,"id":9,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":"org.eclipse.emf.common.util.Enumerator","defaultValue":null,"instanceClassName":"org.eclipse.emf.common.util.Enumerator","name":"DiagramKindTypeObject","instanceClass":"org.eclipse.emf.common.util.Enumerator","id":10,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":null,"instanceClassName":null,"name":"ExpansionDuration","instanceClass":null,"id":11,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":"org.eclipse.emf.common.util.Enumerator","defaultValue":null,"instanceClassName":"org.eclipse.emf.common.util.Enumerator","name":"ExpansionDurationObject","instanceClass":"org.eclipse.emf.common.util.Enumerator","id":12,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExpansionDurationSetting","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExpansionDurationValue","instanceClass":null,"abstract":false,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":"java.lang.String","defaultValue":null,"instanceClassName":"java.lang.String","name":"ExpressionLine","instanceClass":"java.lang.String","id":15,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Lifecycle","instanceClass":null,"abstract":false,"id":16,"interface":false,"eClass":"EClass"},{"instanceTypeName":"java.lang.String","defaultValue":null,"instanceClassName":"java.lang.String","name":"LongText","instanceClass":"java.lang.String","id":17,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Meta","instanceClass":null,"abstract":false,"id":18,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MultiImage","instanceClass":null,"abstract":false,"id":19,"interface":false,"eClass":"EClass"},{"instanceTypeName":"java.lang.String","defaultValue":null,"instanceClassName":"java.lang.String","name":"Name255","instanceClass":"java.lang.String","id":20,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Person","instanceClass":null,"abstract":false,"id":21,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Role","instanceClass":null,"abstract":false,"id":22,"interface":false,"eClass":"EClass"},{"instanceTypeName":"java.lang.String","defaultValue":null,"instanceClassName":"java.lang.String","name":"UnitCode","instanceClass":"java.lang.String","id":23,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Value","instanceClass":null,"abstract":false,"id":24,"interface":false,"eClass":"EClass"},{"name":"UPDATE","id":25,"value":0,"literal":"UPDATE","eClass":"EEnumLiteral"},{"name":"ADD","id":26,"value":1,"literal":"ADD","eClass":"EEnumLiteral"},{"name":"DELETE","id":27,"value":2,"literal":"DELETE","eClass":"EEnumLiteral"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":true,"name":"deleted","changeable":true,"lowerBound":0,"iD":false,"id":28,"derived":false},{"id":29,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":true,"name":"action","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":"change","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":"objectId","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":"timeStamp","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":"user","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"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"icons","changeable":true,"resolveProxies":false,"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":"name","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":"rSSurl","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":"shortName","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":"symbol","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":"website","changeable":true,"lowerBound":0,"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"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"begin","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":"end","changeable":true,"lowerBound":0,"iD":false,"id":55,"derived":false},{"id":56,"eClass":"EGenericType"},{"id":57,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":true,"name":"diagramKind","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":"location","changeable":true,"lowerBound":0,"iD":false,"id":59,"derived":false},{"id":60,"eClass":"EGenericType"},{"id":61,"eClass":"EGenericType"},{"id":62,"eClass":"EGenericType"},{"name":"NETWORK","id":63,"value":0,"literal":"NETWORK","eClass":"EEnumLiteral"},{"name":"FUNCTION","id":64,"value":1,"literal":"FUNCTION","eClass":"EEnumLiteral"},{"name":"EQUIPMENT","id":65,"value":2,"literal":"EQUIPMENT","eClass":"EEnumLiteral"},{"name":"NODE","id":66,"value":3,"literal":"NODE","eClass":"EEnumLiteral"},{"name":"WIRING","id":67,"value":4,"literal":"WIRING","eClass":"EEnumLiteral"},{"name":"QUICK","id":68,"value":0,"literal":"QUICK","eClass":"EEnumLiteral"},{"name":"SHORT","id":69,"value":1,"literal":"SHORT","eClass":"EEnumLiteral"},{"name":"MEDIUM","id":70,"value":2,"literal":"MEDIUM","eClass":"EEnumLiteral"},{"name":"LONG","id":71,"value":3,"literal":"LONG","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":"quickDuration","changeable":true,"resolveProxies":false,"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":"shortDuration","changeable":true,"resolveProxies":false,"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":"mediumDuration","changeable":true,"resolveProxies":false,"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":"longDuration","changeable":true,"resolveProxies":false,"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"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":true,"name":"expansionDuration","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":true,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":0,"iD":false,"id":82,"derived":false},{"id":83,"eClass":"EGenericType"},{"id":84,"eClass":"EGenericType"},{"id":85,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"constructionDate","changeable":true,"lowerBound":0,"iD":false,"id":86,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"inServiceDate","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":"outOfServiceDate","changeable":true,"lowerBound":0,"iD":false,"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":"plannedDate","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":"proposed","changeable":true,"lowerBound":0,"iD":false,"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"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"author","changeable":true,"resolveProxies":true,"lowerBound":0,"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":"description","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":"version","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"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"obj16","changeable":true,"lowerBound":0,"iD":false,"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":"obj32","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":"obj48","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":"obj96","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":"obj128","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"},{"id":114,"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":"roles","changeable":true,"resolveProxies":true,"lowerBound":0,"id":115,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":true,"name":"active","changeable":true,"lowerBound":0,"iD":false,"id":116,"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":"companyRef","changeable":true,"resolveProxies":true,"lowerBound":0,"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":"email","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":"firstName","changeable":true,"lowerBound":0,"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":"lastName","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":"login","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":"password","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"},{"id":127,"eClass":"EGenericType"},{"id":128,"eClass":"EGenericType"},{"id":129,"eClass":"EGenericType"},{"id":130,"eClass":"EGenericType"},{"id":131,"eClass":"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":132,"derived":false},{"id":133,"eClass":"EGenericType"},{"id":134,"eClass":"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":135,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":0,"iD":false,"id":136,"derived":false},{"id":137,"eClass":"EGenericType"},{"id":138,"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":1,"target":0},{"source":1,"target":25},{"source":1,"target":26},{"source":1,"target":27},{"source":25,"target":1},{"source":26,"target":1},{"source":27,"target":1},{"source":2,"target":0},{"source":3,"target":0},{"source":3,"target":28},{"source":28,"target":29},{"source":28,"target":3},{"source":4,"target":0},{"source":4,"target":3},{"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":30,"target":1},{"source":30,"target":36},{"source":30,"target":4},{"source":36,"target":1},{"source":31,"target":7},{"source":31,"target":37},{"source":31,"target":4},{"source":37,"target":7},{"source":32,"target":7},{"source":32,"target":38},{"source":32,"target":4},{"source":38,"target":7},{"source":33,"target":39},{"source":33,"target":4},{"source":34,"target":40},{"source":34,"target":4},{"source":35,"target":3},{"source":5,"target":0},{"source":5,"target":3},{"source":5,"target":41},{"source":5,"target":42},{"source":5,"target":43},{"source":5,"target":44},{"source":5,"target":45},{"source":5,"target":46},{"source":5,"target":47},{"source":41,"target":19},{"source":41,"target":48},{"source":41,"target":5},{"source":48,"target":19},{"source":42,"target":20},{"source":42,"target":49},{"source":42,"target":5},{"source":49,"target":20},{"source":43,"target":50},{"source":43,"target":5},{"source":44,"target":20},{"source":44,"target":51},{"source":44,"target":5},{"source":51,"target":20},{"source":45,"target":20},{"source":45,"target":52},{"source":45,"target":5},{"source":52,"target":20},{"source":46,"target":53},{"source":46,"target":5},{"source":47,"target":3},{"source":6,"target":0},{"source":6,"target":54},{"source":6,"target":55},{"source":54,"target":56},{"source":54,"target":6},{"source":55,"target":57},{"source":55,"target":6},{"source":7,"target":0},{"source":8,"target":0},{"source":8,"target":3},{"source":8,"target":58},{"source":8,"target":59},{"source":8,"target":60},{"source":58,"target":9},{"source":58,"target":61},{"source":58,"target":8},{"source":61,"target":9},{"source":59,"target":62},{"source":59,"target":8},{"source":60,"target":3},{"source":9,"target":0},{"source":9,"target":63},{"source":9,"target":64},{"source":9,"target":65},{"source":9,"target":66},{"source":9,"target":67},{"source":63,"target":9},{"source":64,"target":9},{"source":65,"target":9},{"source":66,"target":9},{"source":67,"target":9},{"source":10,"target":0},{"source":11,"target":0},{"source":11,"target":68},{"source":11,"target":69},{"source":11,"target":70},{"source":11,"target":71},{"source":68,"target":11},{"source":69,"target":11},{"source":70,"target":11},{"source":71,"target":11},{"source":12,"target":0},{"source":13,"target":0},{"source":13,"target":3},{"source":13,"target":72},{"source":13,"target":73},{"source":13,"target":74},{"source":13,"target":75},{"source":13,"target":76},{"source":72,"target":14},{"source":72,"target":77},{"source":72,"target":13},{"source":77,"target":14},{"source":73,"target":14},{"source":73,"target":78},{"source":73,"target":13},{"source":78,"target":14},{"source":74,"target":14},{"source":74,"target":79},{"source":74,"target":13},{"source":79,"target":14},{"source":75,"target":14},{"source":75,"target":80},{"source":75,"target":13},{"source":80,"target":14},{"source":76,"target":3},{"source":14,"target":0},{"source":14,"target":3},{"source":14,"target":81},{"source":14,"target":82},{"source":14,"target":83},{"source":81,"target":11},{"source":81,"target":84},{"source":81,"target":14},{"source":84,"target":11},{"source":82,"target":85},{"source":82,"target":14},{"source":83,"target":3},{"source":15,"target":0},{"source":16,"target":0},{"source":16,"target":3},{"source":16,"target":86},{"source":16,"target":87},{"source":16,"target":88},{"source":16,"target":89},{"source":16,"target":90},{"source":16,"target":91},{"source":86,"target":92},{"source":86,"target":16},{"source":87,"target":93},{"source":87,"target":16},{"source":88,"target":94},{"source":88,"target":16},{"source":89,"target":95},{"source":89,"target":16},{"source":90,"target":96},{"source":90,"target":16},{"source":91,"target":3},{"source":17,"target":0},{"source":18,"target":0},{"source":18,"target":3},{"source":18,"target":97},{"source":18,"target":98},{"source":18,"target":99},{"source":18,"target":100},{"source":97,"target":21},{"source":97,"target":101},{"source":97,"target":18},{"source":101,"target":21},{"source":98,"target":7},{"source":98,"target":102},{"source":98,"target":18},{"source":102,"target":7},{"source":99,"target":103},{"source":99,"target":18},{"source":100,"target":3},{"source":19,"target":0},{"source":19,"target":3},{"source":19,"target":104},{"source":19,"target":105},{"source":19,"target":106},{"source":19,"target":107},{"source":19,"target":108},{"source":19,"target":109},{"source":104,"target":110},{"source":104,"target":19},{"source":105,"target":111},{"source":105,"target":19},{"source":106,"target":112},{"source":106,"target":19},{"source":107,"target":113},{"source":107,"target":19},{"source":108,"target":114},{"source":108,"target":19},{"source":109,"target":3},{"source":20,"target":0},{"source":21,"target":0},{"source":21,"target":3},{"source":21,"target":115},{"source":21,"target":116},{"source":21,"target":117},{"source":21,"target":118},{"source":21,"target":119},{"source":21,"target":120},{"source":21,"target":121},{"source":21,"target":122},{"source":21,"target":123},{"source":115,"target":22},{"source":115,"target":124},{"source":115,"target":21},{"source":124,"target":22},{"source":116,"target":125},{"source":116,"target":21},{"source":117,"target":5},{"source":117,"target":126},{"source":117,"target":21},{"source":126,"target":5},{"source":118,"target":127},{"source":118,"target":21},{"source":119,"target":20},{"source":119,"target":128},{"source":119,"target":21},{"source":128,"target":20},{"source":120,"target":20},{"source":120,"target":129},{"source":120,"target":21},{"source":129,"target":20},{"source":121,"target":20},{"source":121,"target":130},{"source":121,"target":21},{"source":130,"target":20},{"source":122,"target":131},{"source":122,"target":21},{"source":123,"target":3},{"source":22,"target":0},{"source":22,"target":3},{"source":22,"target":132},{"source":22,"target":133},{"source":132,"target":20},{"source":132,"target":134},{"source":132,"target":22},{"source":134,"target":20},{"source":133,"target":3},{"source":23,"target":0},{"source":24,"target":0},{"source":24,"target":135},{"source":24,"target":136},{"source":135,"target":137},{"source":135,"target":24},{"source":136,"target":138},{"source":136,"target":24}],"multigraph":true}
true
<?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="abstractcim" nsURI="http://www.reuseware.org/application/abstractcim" nsPrefix="abstractcim"> <eClassifiers xsi:type="ecore:EClass" name="CimModel"> <eAnnotations source="reuseware.root"> <details key="targetPort" value="extension"/> <details key="sourcePort" value="contents"/> <details key="targetUFI" value="abstractcim/EmptyCore.cim"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="contents" upperBound="-1" eType="#//CimModelElement" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CimModelElement" abstract="true"> <eAnnotations source="reuseware.fragment"> <details key="label" value="name"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"> <eAnnotations source="reuseware.property"> <details key="port" value="name"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Interface" abstract="true" eSuperTypes="#//CimModelElement"/> <eClassifiers xsi:type="ecore:EClass" name="IPInterface" abstract="true" eSuperTypes="#//Interface"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="ipV4Address" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"> <eAnnotations source="reuseware.property"> <details key="port" value="ipAddress"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="subnetMask" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"> <eAnnotations source="reuseware.property"> <details key="port" value="subnetMask"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Router" eSuperTypes="#//CimModelElement"> <eAnnotations source="reuseware.fragment"> <details key="UFI" value="abstractcim/Router.cim"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="devices" upperBound="-1" eType="#//Interface"> <eAnnotations source="reuseware.link"> <details key="sourcePort" value="devices"/> <details key="targetPort" value="device"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="services" eType="#//DHCPServer"> <eAnnotations source="reuseware.link"> <details key="sourcePort" value="services"/> <details key="targetPort" value="service"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="forwardingServices" eType="#//NATService"> <eAnnotations source="reuseware.link"> <details key="sourcePort" value="forwardingServices"/> <details key="targetPort" value="forwardingService"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="filterList" eType="#//NATService"> <eAnnotations source="reuseware.link"> <details key="sourcePort" value="filterLists"/> <details key="targetPort" value="filterList"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="EthernetIPInterface" eSuperTypes="#//IPInterface"> <eAnnotations source="reuseware.fragment"> <details key="UFIExpr" value="&#xD;&#xA;&#x9;&#x9;if (self.numPort = 4) return 'abstractcim/4PortEthernetIPInterface.cim';&#xD;&#xA;&#x9;&#x9;if (self.numPort = 8) return 'abstractcim/8PortEthernetIPInterface.cim';"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="numPort" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ADSLIPInterface" eSuperTypes="#//IPInterface"> <eAnnotations source="reuseware.fragment"> <details key="UFI" value="abstractcim/ADSLIPInterface.cim"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="WifiInterface" eSuperTypes="#//Interface"> <eAnnotations source="reuseware.fragment"> <details key="UFI" value="abstractcim/WifiInterface.cim"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="endPoint" eType="#//IPInterface"> <eAnnotations source="reuseware.link"> <details key="sourcePort" value="endPoint"/> <details key="targetPort" value="ip"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="DHCPServer" eSuperTypes="#//CimModelElement"> <eAnnotations source="reuseware.fragment"> <details key="UFI" value="abstractcim/DHCPServer.cim"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="startAddress" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"> <eAnnotations source="reuseware.property"> <details key="port" value="startAddress"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="endAddress" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"> <eAnnotations source="reuseware.property"> <details key="port" value="endAddress"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="bindsTo" eType="#//IPInterface"> <eAnnotations source="reuseware.link"> <details key="sourcePort" value="bindsTo"/> <details key="targetPort" value="ip"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="NATService" eSuperTypes="#//CimModelElement"> <eAnnotations source="reuseware.fragment"> <details key="UFI" value="abstractcim/NATService.cim"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="endPoint" eType="#//IPInterface"> <eAnnotations source="reuseware.link"> <details key="sourcePort" value="endPoint"/> <details key="targetPort" value="ip"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> </ecore:EPackage>
github:ecore:/data/DevBoost/Reuseware/Applications/CIM_Layered_DSLs/plugins/org.reuseware.application.abstractcim/metamodel/abstractcim.ecore
ecore
abstractcim CimModel contents CimModelElement name Interface IPInterface ipV4Address subnetMask Router devices services forwardingServices filterList EthernetIPInterface numPort ADSLIPInterface WifiInterface endPoint DHCPServer startAddress endAddress bindsTo NATService endPoint
null
{"directed":true,"nodes":[{"nsPrefix":"abstractcim","nsURI":"http://www.reuseware.org/application/abstractcim","name":"abstractcim","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CimModel","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CimModelElement","instanceClass":null,"abstract":true,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Interface","instanceClass":null,"abstract":true,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IPInterface","instanceClass":null,"abstract":true,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Router","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EthernetIPInterface","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ADSLIPInterface","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"WifiInterface","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DHCPServer","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NATService","instanceClass":null,"abstract":false,"id":10,"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":"contents","changeable":true,"resolveProxies":true,"lowerBound":0,"id":11,"derived":false},{"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":"name","changeable":true,"lowerBound":0,"iD":false,"id":13,"derived":false},{"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":"ipV4Address","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":"subnetMask","changeable":true,"lowerBound":0,"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":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"devices","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":"services","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":"forwardingServices","changeable":true,"resolveProxies":true,"lowerBound":0,"id":23,"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":"filterList","changeable":true,"resolveProxies":true,"lowerBound":0,"id":24,"derived":false},{"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":"numPort","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":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"endPoint","changeable":true,"resolveProxies":true,"lowerBound":0,"id":34,"derived":false},{"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":"startAddress","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":"endAddress","changeable":true,"lowerBound":0,"iD":false,"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":"bindsTo","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":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"endPoint","changeable":true,"resolveProxies":true,"lowerBound":0,"id":44,"derived":false},{"id":45,"eClass":"EGenericType"},{"id":46,"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":11,"target":2},{"source":11,"target":12},{"source":11,"target":1},{"source":12,"target":2},{"source":2,"target":0},{"source":2,"target":13},{"source":13,"target":14},{"source":13,"target":2},{"source":3,"target":0},{"source":3,"target":2},{"source":3,"target":15},{"source":15,"target":2},{"source":4,"target":0},{"source":4,"target":3},{"source":4,"target":16},{"source":4,"target":17},{"source":4,"target":18},{"source":16,"target":19},{"source":16,"target":4},{"source":17,"target":20},{"source":17,"target":4},{"source":18,"target":3},{"source":5,"target":0},{"source":5,"target":2},{"source":5,"target":21},{"source":5,"target":22},{"source":5,"target":23},{"source":5,"target":24},{"source":5,"target":25},{"source":21,"target":3},{"source":21,"target":26},{"source":21,"target":5},{"source":26,"target":3},{"source":22,"target":9},{"source":22,"target":27},{"source":22,"target":5},{"source":27,"target":9},{"source":23,"target":10},{"source":23,"target":28},{"source":23,"target":5},{"source":28,"target":10},{"source":24,"target":10},{"source":24,"target":29},{"source":24,"target":5},{"source":29,"target":10},{"source":25,"target":2},{"source":6,"target":0},{"source":6,"target":4},{"source":6,"target":30},{"source":6,"target":31},{"source":30,"target":32},{"source":30,"target":6},{"source":31,"target":4},{"source":7,"target":0},{"source":7,"target":4},{"source":7,"target":33},{"source":33,"target":4},{"source":8,"target":0},{"source":8,"target":3},{"source":8,"target":34},{"source":8,"target":35},{"source":34,"target":4},{"source":34,"target":36},{"source":34,"target":8},{"source":36,"target":4},{"source":35,"target":3},{"source":9,"target":0},{"source":9,"target":2},{"source":9,"target":37},{"source":9,"target":38},{"source":9,"target":39},{"source":9,"target":40},{"source":37,"target":41},{"source":37,"target":9},{"source":38,"target":42},{"source":38,"target":9},{"source":39,"target":4},{"source":39,"target":43},{"source":39,"target":9},{"source":43,"target":4},{"source":40,"target":2},{"source":10,"target":0},{"source":10,"target":2},{"source":10,"target":44},{"source":10,"target":45},{"source":44,"target":4},{"source":44,"target":46},{"source":44,"target":10},{"source":46,"target":4},{"source":45,"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="mymodel" nsURI="http:///mymodel.ecore" nsPrefix="mymodel"> <eClassifiers xsi:type="ecore:EClass" name="IPerson"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="lastname" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" defaultValueLiteral=""/> </eClassifiers> </ecore:EPackage>
github:ecore:/data/MDEGroup/QMM-COMLAN-data/validation-subjects/metamodels/MyModel.ecore
ecore
mymodel IPerson lastname
null
{"directed":true,"nodes":[{"nsPrefix":"mymodel","nsURI":"http:///mymodel.ecore","name":"mymodel","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IPerson","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"ordered":true,"upperBound":1,"defaultValue":"","volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"","unsettable":false,"transient":false,"unique":true,"name":"lastname","changeable":true,"lowerBound":0,"iD":false,"id":2,"derived":false},{"id":3,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":1,"target":0},{"source":1,"target":2},{"source":2,"target":3},{"source":2,"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="umlPort" nsURI="http://www.eclipse.org/papyrus/uml/textedit/port/xtext/UmlPort" nsPrefix="umlPort"> <eClassifiers xsi:type="ecore:EClass" name="PortRule"> <eStructuralFeatures xsi:type="ecore:EReference" name="visibility" eType="#//VisibilityRule" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="derived" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="conjugated" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EReference" name="type" eType="#//TypeRule" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="typeUndefined" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EReference" name="multiplicity" eType="#//MultiplicityRule" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="modifiers" eType="#//ModifiersRule" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="default" eType="#//DefaultValueRule" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="VisibilityKind"> <eLiterals name="public" literal="+"/> <eLiterals name="private" value="1" literal="-"/> <eLiterals name="protected" value="2" literal="#"/> <eLiterals name="package" value="3" literal="~"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="VisibilityRule"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="visibility" eType="#//VisibilityKind"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="TypeRule"> <eStructuralFeatures xsi:type="ecore:EReference" name="path" eType="#//QualifiedName" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="type" eType="ecore:EClass platform:/resource/org.eclipse.uml2.uml/model/UML.ecore#//Classifier"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="QualifiedName"> <eStructuralFeatures xsi:type="ecore:EReference" name="path" eType="ecore:EClass platform:/resource/org.eclipse.uml2.uml/model/UML.ecore#//Namespace"/> <eStructuralFeatures xsi:type="ecore:EReference" name="remaining" eType="#//QualifiedName" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="MultiplicityRule"> <eStructuralFeatures xsi:type="ecore:EReference" name="bounds" upperBound="-1" eType="#//BoundSpecification" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="BoundSpecification"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ModifiersRule"> <eStructuralFeatures xsi:type="ecore:EReference" name="values" upperBound="-1" eType="#//ModifierSpecification" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ModifierSpecification"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="#//ModifierKind"/> <eStructuralFeatures xsi:type="ecore:EReference" name="redefines" eType="#//RedefinesRule" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="subsets" eType="#//SubsetsRule" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="ModifierKind"> <eLiterals name="readOnly" literal="readOnly"/> <eLiterals name="union" value="1" literal="union"/> <eLiterals name="ordered" value="2" literal="ordered"/> <eLiterals name="unique" value="3" literal="unique"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="RedefinesRule"> <eStructuralFeatures xsi:type="ecore:EReference" name="port" eType="ecore:EClass platform:/resource/org.eclipse.uml2.uml/model/UML.ecore#//Port"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="SubsetsRule"> <eStructuralFeatures xsi:type="ecore:EReference" name="port" eType="ecore:EClass platform:/resource/org.eclipse.uml2.uml/model/UML.ecore#//Port"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="DefaultValueRule"> <eStructuralFeatures xsi:type="ecore:EReference" name="default" eType="#//Value" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Value"/> <eClassifiers xsi:type="ecore:EClass" name="IntValue" eSuperTypes="#//Value"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="literalInteger" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="StringValue" eSuperTypes="#//Value"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="literalString" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="BooleanLiterals"> <eLiterals name="TRUE" literal="true"/> <eLiterals name="FALSE" value="1" literal="false"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="BooleanValue" eSuperTypes="#//Value"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="literalBoolean" eType="#//BooleanLiterals"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="RealValue" eSuperTypes="#//Value"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="integer" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="fraction" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="NullValue" eSuperTypes="#//Value"/> <eClassifiers xsi:type="ecore:EClass" name="NoValue" eSuperTypes="#//Value"/> </ecore:EPackage>
github:ecore:/data/sasobadovinac/papyrus/plugins/uml/textedit/org.eclipse.papyrus.uml.textedit.port.xtext/src-gen/org/eclipse/papyrus/uml/textedit/port/xtext/UmlPort.ecore
ecore
umlPort PortRule visibility derived name conjugated type typeUndefined multiplicity modifiers default VisibilityKind public + private - protected # package ~ VisibilityRule visibility TypeRule path type QualifiedName path remaining MultiplicityRule bounds BoundSpecification value ModifiersRule values ModifierSpecification value redefines subsets ModifierKind readOnly readOnly union union ordered ordered unique unique RedefinesRule port SubsetsRule port DefaultValueRule default Value IntValue literalInteger StringValue literalString BooleanLiterals TRUE true FALSE false BooleanValue literalBoolean RealValue integer fraction NullValue NoValue
null
{"directed":true,"nodes":[{"nsPrefix":"umlPort","nsURI":"http://www.eclipse.org/papyrus/uml/textedit/port/xtext/UmlPort","name":"umlPort","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PortRule","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"VisibilityKind","instanceClass":null,"id":2,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"VisibilityRule","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TypeRule","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"QualifiedName","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MultiplicityRule","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BoundSpecification","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ModifiersRule","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ModifierSpecification","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"ModifierKind","instanceClass":null,"id":10,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RedefinesRule","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SubsetsRule","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DefaultValueRule","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Value","instanceClass":null,"abstract":false,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IntValue","instanceClass":null,"abstract":false,"id":15,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StringValue","instanceClass":null,"abstract":false,"id":16,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"BooleanLiterals","instanceClass":null,"id":17,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BooleanValue","instanceClass":null,"abstract":false,"id":18,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RealValue","instanceClass":null,"abstract":false,"id":19,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NullValue","instanceClass":null,"abstract":false,"id":20,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NoValue","instanceClass":null,"abstract":false,"id":21,"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":"visibility","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":"derived","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":"name","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":"conjugated","changeable":true,"lowerBound":0,"iD":false,"id":25,"derived":false},{"container":false,"ordered":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":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":"typeUndefined","changeable":true,"lowerBound":0,"iD":false,"id":27,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"multiplicity","changeable":true,"resolveProxies":true,"lowerBound":0,"id":28,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"modifiers","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":"default","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"},{"id":39,"eClass":"EGenericType"},{"name":"public","id":40,"value":0,"literal":"+","eClass":"EEnumLiteral"},{"name":"private","id":41,"value":1,"literal":"-","eClass":"EEnumLiteral"},{"name":"protected","id":42,"value":2,"literal":"#","eClass":"EEnumLiteral"},{"name":"package","id":43,"value":3,"literal":"~","eClass":"EEnumLiteral"},{"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":44,"derived":false},{"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":"path","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":false,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"resolveProxies":true,"lowerBound":0,"id":47,"derived":false},{"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":"path","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":"remaining","changeable":true,"resolveProxies":true,"lowerBound":0,"id":51,"derived":false},{"id":52,"eClass":"EGenericType"},{"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":"bounds","changeable":true,"resolveProxies":true,"lowerBound":0,"id":54,"derived":false},{"id":55,"eClass":"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":56,"derived":false},{"id":57,"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":58,"derived":false},{"id":59,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"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":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":"redefines","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":"subsets","changeable":true,"resolveProxies":true,"lowerBound":0,"id":62,"derived":false},{"id":63,"eClass":"EGenericType"},{"id":64,"eClass":"EGenericType"},{"id":65,"eClass":"EGenericType"},{"name":"readOnly","id":66,"value":0,"literal":"readOnly","eClass":"EEnumLiteral"},{"name":"union","id":67,"value":1,"literal":"union","eClass":"EEnumLiteral"},{"name":"ordered","id":68,"value":2,"literal":"ordered","eClass":"EEnumLiteral"},{"name":"unique","id":69,"value":3,"literal":"unique","eClass":"EEnumLiteral"},{"container":false,"ordered":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":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":"port","changeable":true,"resolveProxies":true,"lowerBound":0,"id":72,"derived":false},{"id":73,"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":"default","changeable":true,"resolveProxies":true,"lowerBound":0,"id":74,"derived":false},{"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":"literalInteger","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":"literalString","changeable":true,"lowerBound":0,"iD":false,"id":79,"derived":false},{"id":80,"eClass":"EGenericType"},{"id":81,"eClass":"EGenericType"},{"name":"TRUE","id":82,"value":0,"literal":"true","eClass":"EEnumLiteral"},{"name":"FALSE","id":83,"value":1,"literal":"false","eClass":"EEnumLiteral"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"literalBoolean","changeable":true,"lowerBound":0,"iD":false,"id":84,"derived":false},{"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":"integer","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":"fraction","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"}],"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":1,"target":0},{"source":1,"target":22},{"source":1,"target":23},{"source":1,"target":24},{"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":22,"target":3},{"source":22,"target":31},{"source":22,"target":1},{"source":31,"target":3},{"source":23,"target":32},{"source":23,"target":1},{"source":24,"target":33},{"source":24,"target":1},{"source":25,"target":34},{"source":25,"target":1},{"source":26,"target":4},{"source":26,"target":35},{"source":26,"target":1},{"source":35,"target":4},{"source":27,"target":36},{"source":27,"target":1},{"source":28,"target":6},{"source":28,"target":37},{"source":28,"target":1},{"source":37,"target":6},{"source":29,"target":8},{"source":29,"target":38},{"source":29,"target":1},{"source":38,"target":8},{"source":30,"target":13},{"source":30,"target":39},{"source":30,"target":1},{"source":39,"target":13},{"source":2,"target":0},{"source":2,"target":40},{"source":2,"target":41},{"source":2,"target":42},{"source":2,"target":43},{"source":40,"target":2},{"source":41,"target":2},{"source":42,"target":2},{"source":43,"target":2},{"source":3,"target":0},{"source":3,"target":44},{"source":44,"target":2},{"source":44,"target":45},{"source":44,"target":3},{"source":45,"target":2},{"source":4,"target":0},{"source":4,"target":46},{"source":4,"target":47},{"source":46,"target":5},{"source":46,"target":48},{"source":46,"target":4},{"source":48,"target":5},{"source":47,"target":49},{"source":47,"target":4},{"source":5,"target":0},{"source":5,"target":50},{"source":5,"target":51},{"source":50,"target":52},{"source":50,"target":5},{"source":51,"target":5},{"source":51,"target":53},{"source":51,"target":5},{"source":53,"target":5},{"source":6,"target":0},{"source":6,"target":54},{"source":54,"target":7},{"source":54,"target":55},{"source":54,"target":6},{"source":55,"target":7},{"source":7,"target":0},{"source":7,"target":56},{"source":56,"target":57},{"source":56,"target":7},{"source":8,"target":0},{"source":8,"target":58},{"source":58,"target":9},{"source":58,"target":59},{"source":58,"target":8},{"source":59,"target":9},{"source":9,"target":0},{"source":9,"target":60},{"source":9,"target":61},{"source":9,"target":62},{"source":60,"target":10},{"source":60,"target":63},{"source":60,"target":9},{"source":63,"target":10},{"source":61,"target":11},{"source":61,"target":64},{"source":61,"target":9},{"source":64,"target":11},{"source":62,"target":12},{"source":62,"target":65},{"source":62,"target":9},{"source":65,"target":12},{"source":10,"target":0},{"source":10,"target":66},{"source":10,"target":67},{"source":10,"target":68},{"source":10,"target":69},{"source":66,"target":10},{"source":67,"target":10},{"source":68,"target":10},{"source":69,"target":10},{"source":11,"target":0},{"source":11,"target":70},{"source":70,"target":71},{"source":70,"target":11},{"source":12,"target":0},{"source":12,"target":72},{"source":72,"target":73},{"source":72,"target":12},{"source":13,"target":0},{"source":13,"target":74},{"source":74,"target":14},{"source":74,"target":75},{"source":74,"target":13},{"source":75,"target":14},{"source":14,"target":0},{"source":15,"target":0},{"source":15,"target":14},{"source":15,"target":76},{"source":15,"target":77},{"source":76,"target":78},{"source":76,"target":15},{"source":77,"target":14},{"source":16,"target":0},{"source":16,"target":14},{"source":16,"target":79},{"source":16,"target":80},{"source":79,"target":81},{"source":79,"target":16},{"source":80,"target":14},{"source":17,"target":0},{"source":17,"target":82},{"source":17,"target":83},{"source":82,"target":17},{"source":83,"target":17},{"source":18,"target":0},{"source":18,"target":14},{"source":18,"target":84},{"source":18,"target":85},{"source":84,"target":17},{"source":84,"target":86},{"source":84,"target":18},{"source":86,"target":17},{"source":85,"target":14},{"source":19,"target":0},{"source":19,"target":14},{"source":19,"target":87},{"source":19,"target":88},{"source":19,"target":89},{"source":87,"target":90},{"source":87,"target":19},{"source":88,"target":91},{"source":88,"target":19},{"source":89,"target":14},{"source":20,"target":0},{"source":20,"target":14},{"source":20,"target":92},{"source":92,"target":14},{"source":21,"target":0},{"source":21,"target":14},{"source":21,"target":93},{"source":93,"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="test" nsURI="testNsURI"> <eClassifiers xsi:type="ecore:EClass" name="test"> <eStructuralFeatures xsi:type="ecore:EReference" name="aTest" eType="#//test" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="anotherTest" eType="#//test"/> </eClassifiers> </ecore:EPackage>
github:ecore:/data/diverse-project/kermeta/kermeta_projects/fr.irisa.triskell.kermeta.model/build/ecore/My.ecore
ecore
test test aTest anotherTest
null
{"directed":true,"nodes":[{"nsPrefix":null,"nsURI":"testNsURI","name":"test","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"test","instanceClass":null,"abstract":false,"id":1,"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":"aTest","changeable":true,"resolveProxies":true,"lowerBound":0,"id":2,"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":"anotherTest","changeable":true,"resolveProxies":true,"lowerBound":0,"id":3,"derived":false},{"id":4,"eClass":"EGenericType"},{"id":5,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":1,"target":0},{"source":1,"target":2},{"source":1,"target":3},{"source":2,"target":1},{"source":2,"target":4},{"source":2,"target":1},{"source":4,"target":1},{"source":3,"target":1},{"source":3,"target":5},{"source":3,"target":1},{"source":5,"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="generics" nsURI="http://www.netxforge.com/13042011/generics" nsPrefix="generics"> <eClassifiers xsi:type="ecore:EEnum" name="ActionType"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="Action_._type"/> </eAnnotations> <eLiterals name="UPDATE"/> <eLiterals name="ADD" value="1"/> <eLiterals name="DELETE" value="2"/> </eClassifiers> <eClassifiers xsi:type="ecore:EDataType" name="ActionTypeObject" instanceClassName="org.eclipse.emf.common.util.Enumerator"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="Action_._type:Object"/> <details key="baseType" value="Action_._type"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Base"> <eAnnotations source="teneo.jpa"> <details key="appinfo" value="@MappedSuperclass"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="Base"/> <details key="kind" value="empty"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="deleted" 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="Deleted"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CommitLogEntry" eSuperTypes="#//Base"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="&#xA;&#x9;&#x9;&#x9;&#x9;Represents the changes done by a user for a certain&#xA;&#x9;&#x9;&#x9;&#x9;object/user.&#xA;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="CommitLogEntry"/> <details key="kind" value="empty"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="action" eType="#//ActionType" unsettable="true"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The Action type"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="Action"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="change" eType="#//Description2000"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;The type uri of the object being changed&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="Change"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="objectId" eType="#//Description2000"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;The id/uri of the object being changed&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="ObjectId"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="timeStamp" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//DateTime"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The TimeStamp attribute holds the time of the&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;commit.&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="TimeStamp"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="user" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;The user name&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="User"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Company" eSuperTypes="#//Base"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A type representing the basic information points of&#xA;&#x9;&#x9;&#x9;&#x9;a real company.&#xA;&#x9;&#x9;&#x9;&#x9;A Company can be a commercial vendor of equipment, a&#xA;&#x9;&#x9;&#x9;&#x9;telecommunication service provider or other&#xA;&#x9;&#x9;&#x9;&#x9;institution i.e. industry&#xA;&#x9;&#x9;&#x9;&#x9;cooperation bodies to promote usage of standards. It&#xA;&#x9;&#x9;&#x9;&#x9;is required to&#xA;&#x9;&#x9;&#x9;&#x9;organise objects&#xA;&#x9;&#x9;&#x9;&#x9;by Company.&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;Examples:&#xA;&#x9;&#x9;&#x9;&#x9;1. The company type is used to&#xA;&#x9;&#x9;&#x9;&#x9;organize reports like an expansion Bill&#xA;&#x9;&#x9;&#x9;&#x9;of Quantity by vendor.&#xA;&#x9;&#x9;&#x9;&#x9;2. The&#xA;&#x9;&#x9;&#x9;&#x9;company type is used in a UI widget to show equipments from a&#xA;&#x9;&#x9;&#x9;&#x9;certain company.&#xA;&#x9;&#x9;&#x9;&#x9;3. The company type is used in a UI widget to show&#xA;&#x9;&#x9;&#x9;&#x9;protocols from a&#xA;&#x9;&#x9;&#x9;&#x9;certain standardisation body.&#xA;&#x9;&#x9;&#x9;&#x9;4. The company type is&#xA;&#x9;&#x9;&#x9;&#x9;used in a UI widget to show RSS feed news from&#xA;&#x9;&#x9;&#x9;&#x9;a certain company.&#xA;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="Company"/> <details key="kind" value="elementOnly"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="icons" eType="#//MultiImage" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The Images reference, contains 0 or one&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;MultiImage type.&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="Icons"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="#//Name255"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The Name attribute is a free form text.&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </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="rSSurl" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//AnyURI"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The RSSurl attribute should contain a URL to a&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;so-called RSS feed.&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;The RSS format is defined here:&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;http://en.wikipedia.org/wiki/RSS&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;Examples:&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;1. The following URL is&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;an RSS URL:&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;http://isoc.org/wp/ietfjournal/?feed=rss2&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="RSSurl"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="shortName" eType="#//Name255"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The ShortName attribute is a free form text, but&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;should generally be kept short (3 characters).&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;Examples: 1. The&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;ShortName is used in UI widgets where space is limited.&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="ShortName"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="symbol" eType="#//Name255"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The financial Symbol or ticker attribute, is&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;according to financial market ticker definitions.&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;Examples: 1. The&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;Symbol type can be used to lookup financial information&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;of a&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;Company.&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="Symbol"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="website" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//AnyURI"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The Website attribute should contain the main&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;web URL of the website. It should be according to&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;http://en.wikipedia.org/wiki/Uniform_Resource_Locator&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;Examples: 1.&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;http://www.ietf.org&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="Website"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="DateTimeRange"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A type representing the basic information point for&#xA;&#x9;&#x9;&#x9;&#x9;a DateTime Range or a period.&#xA;&#x9;&#x9;&#x9;&#x9;A range with a start and end timestamp.&#xA;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="DateTimeRange"/> <details key="kind" value="empty"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="begin" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//DateTime"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The Begin attribute holds the starting date time&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;of the range.&#xA;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="Begin"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="end" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//DateTime"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The End attribute holds the end date time of the&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;range.&#xA;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="End"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EDataType" name="Description2000" instanceClassName="java.lang.String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A description type of 2000 chars"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="Description2000"/> <details key="baseType" value="http://www.eclipse.org/emf/2003/XMLType#string"/> <details key="maxLength" value="2000"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="DiagramInfo" eSuperTypes="#//Base"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A type representing the basic information point&#xA;&#x9;&#x9;&#x9;&#x9;Diagram.&#xA;&#x9;&#x9;&#x9;&#x9;It consists of a location (Where the diagram is stored), and&#xA;&#x9;&#x9;&#x9;&#x9;the type&#xA;&#x9;&#x9;&#x9;&#x9;of diagram.&#xA;&#x9;&#x9;&#x9;&#x9;Diagrams can be attached to various objects, to&#xA;&#x9;&#x9;&#x9;&#x9;visual the object relations.&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;The Diagram model is expected to be a&#xA;&#x9;&#x9;&#x9;&#x9;Notation model, which refers&#xA;&#x9;&#x9;&#x9;&#x9;to the NetXStudio model.&#xA;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="DiagramInfo"/> <details key="kind" value="empty"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="diagramKind" eType="#//DiagramKindType" unsettable="true"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The DiagramKind attribute holds a reference to&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;the&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;kind of diagram, to open the correct editor.&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="DiagramKind"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="location" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//AnyURI"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The Location attribute holds a reference to the&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;location where the diagram is stored.&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="Location"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="DiagramKindType"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="DiagramKind_._type"/> </eAnnotations> <eLiterals name="NETWORK"/> <eLiterals name="FUNCTION" value="1"/> <eLiterals name="EQUIPMENT" value="2"/> <eLiterals name="NODE" value="3"/> <eLiterals name="WIRING" value="4"/> </eClassifiers> <eClassifiers xsi:type="ecore:EDataType" name="DiagramKindTypeObject" instanceClassName="org.eclipse.emf.common.util.Enumerator"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="DiagramKind_._type:Object"/> <details key="baseType" value="DiagramKind_._type"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="ExpansionDuration"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A type representing a duration indication used to&#xA;&#x9;&#x9;&#x9;&#x9;determine when an expansion should be initiated&#xA;&#xA;&#x9;&#x9;&#x9;&#x9;Quick less than 6&#xA;&#x9;&#x9;&#x9;&#x9;weeks Short less than 3 months Medium less than 9&#xA;&#x9;&#x9;&#x9;&#x9;months Long less&#xA;&#x9;&#x9;&#x9;&#x9;than 18 months&#xA;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="ExpansionDuration"/> </eAnnotations> <eLiterals name="QUICK"/> <eLiterals name="SHORT" value="1"/> <eLiterals name="MEDIUM" value="2"/> <eLiterals name="LONG" value="3"/> </eClassifiers> <eClassifiers xsi:type="ecore:EDataType" name="ExpansionDurationObject" instanceClassName="org.eclipse.emf.common.util.Enumerator"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="ExpansionDuration:Object"/> <details key="baseType" value="ExpansionDuration"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ExpansionDurationSetting" eSuperTypes="#//Base"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A type representing the complete settings of an expansion duration. &#xA;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="ExpansionDurationSetting"/> <details key="kind" value="elementOnly"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="quickDuration" eType="#//ExpansionDurationValue" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The value of the QUICK Duration&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="QuickDuration"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="shortDuration" eType="#//ExpansionDurationValue" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The value of the SHORT Duration&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="ShortDuration"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="mediumDuration" eType="#//ExpansionDurationValue" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The value of the MEDIUM Duration&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="MediumDuration"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="longDuration" eType="#//ExpansionDurationValue" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The value of the LONG Duration&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="LongDuration"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ExpansionDurationValue" eSuperTypes="#//Base"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A type representing a single expansion duration&#xA;&#x9;&#x9;&#x9;&#x9;value.&#xA;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="ExpansionDurationValue"/> <details key="kind" value="empty"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="expansionDuration" eType="#//ExpansionDuration" unsettable="true"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="ExpansionDuration"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="value" 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 Value attribute is the number of days an&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;expansion will take before completed and in production.&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="Value"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EDataType" name="ExpressionLine" instanceClassName="java.lang.String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A type representing an expression.&#xA;&#x9;&#x9;&#x9;&#x9;See NetXScript&#xA;&#x9;&#x9;&#x9;&#x9;specification&#xA;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="ExpressionLine"/> <details key="baseType" value="http://www.eclipse.org/emf/2003/XMLType#string"/> <details key="maxLength" value="1000"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Lifecycle" eSuperTypes="#//Base"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A type representing the lifecycle.&#xA;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="Lifecycle"/> <details key="kind" value="empty"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="constructionDate" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//DateTime"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The ConstructionDate attribute holds the date&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;and&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;time when constructed.&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="ConstructionDate"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="inServiceDate" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//DateTime"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The InServiceDate attribute holds the date and&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;time when brought into service.&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="InServiceDate"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="outOfServiceDate" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//DateTime"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The OutOfServiceDate attribute holds the date&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;and&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;time when out of service.&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="OutOfServiceDate"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="plannedDate" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//DateTime"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The PlannedDate attribute holds the date and&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;time&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;when planned.&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="PlannedDate"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="proposed" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//DateTime"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The Proposed attribute holds the date and time&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;when proposed.&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="Proposed"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EDataType" name="LongText" instanceClassName="java.lang.String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A long text used for logs etc."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="LongText"/> <details key="baseType" value="http://www.eclipse.org/emf/2003/XMLType#string"/> <details key="maxLength" value="20000"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Meta" eSuperTypes="#//Base"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A type representing meta information about this&#xA;&#x9;&#x9;&#x9;&#x9;model.&#xA;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="Meta"/> <details key="kind" value="elementOnly"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="author" eType="#//Person"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The Author reference, references 1 User type.&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="Author"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="description" eType="#//Description2000"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The Description attribute holds the description&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;of&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;this datamodel.&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </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="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 holds the version of this&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;datamodel.&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </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="MultiImage" eSuperTypes="#//Base"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A type representing an image. The image can be&#xA;&#x9;&#x9;&#x9;&#x9;specified for various sizes from 16x16 upto 128x128.&#xA;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="MultiImage"/> <details key="kind" value="elementOnly"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="obj16" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//AnyURI"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The obj16 attribute, refers to a 16x16 URI of&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;type png or gif.&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="obj16"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="obj32" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//AnyURI"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The obj32 attribute, refers to a 32x32 URI of&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;type png or gif.&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="obj32"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="obj48" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//AnyURI"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The obj48 attribute, refers to a 48x48 URI of&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;type png or gif.&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="obj48"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="obj96" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//AnyURI"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The obj96 attribute, refers to a 96x96 URI of&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;type png or gif.&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="obj96"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="obj128" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//AnyURI"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The obj128 attribute, refers to a 128x128 URI&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;of&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;type png or gif.&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="obj128"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EDataType" name="Name255" instanceClassName="java.lang.String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A name type of 255 chars."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="Name255"/> <details key="baseType" value="http://www.eclipse.org/emf/2003/XMLType#string"/> <details key="maxLength" value="255"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Person" eSuperTypes="#//Base"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="&#xA;&#x9;&#x9;&#x9;&#x9;A type representing the basic information points of&#xA;&#x9;&#x9;&#x9;&#x9;a&#xA;&#x9;&#x9;&#x9;&#x9;User in the context of using the application. The Email&#xA;&#x9;&#x9;&#x9;&#x9;attribute is&#xA;&#x9;&#x9;&#x9;&#x9;also the login identifier.&#xA;&#xA;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="Person"/> <details key="kind" value="elementOnly"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="roles" eType="#//Role"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="Roles"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="active" 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="Active"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="companyRef" eType="#//Company"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;The CompanyRef reference, refers to 0 or 1&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;Company&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;type.&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="CompanyRef"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="email" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;The Email attribute hols the email address of&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;the&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;user. It is according to regex:&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;^[A-Z0-9._%-]+@[A-Z0-9.-]+\.[A-Z]{2,4}$&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="Email"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="firstName" eType="#//Name255"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;The FirstName attribute holds the first name of&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;the&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;person.&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="FirstName"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="lastName" eType="#//Name255"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;The LastName attribute holds the last name of&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;the&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;person.&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="LastName"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="login" eType="#//Name255"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;The Login attribute holds the login ID of the&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;person.&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="Login"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="password" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;The Password attribute holds the password of the&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;user.&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="Password"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Role" eSuperTypes="#//Base"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="Role"/> <details key="kind" value="empty"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="#//Name255"> <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:EDataType" name="UnitCode" instanceClassName="java.lang.String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A type representing a Unit as in a measurement&#xA;&#x9;&#x9;&#x9;&#x9;unit. The Unit, is a three character string&#xA;&#x9;&#x9;&#x9;&#x9;which demarks the&#xA;&#x9;&#x9;&#x9;&#x9;resource unit for displaying purposes. (The Unit as&#xA;&#x9;&#x9;&#x9;&#x9;such is not&#xA;&#x9;&#x9;&#x9;&#x9;interpreted).&#xA;&#x9;&#x9;&#x9;&#x9;Units can be freely defined (Not implied by&#xA;&#x9;&#x9;&#x9;&#x9;enumeration).&#xA;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="UnitCode"/> <details key="baseType" value="http://www.eclipse.org/emf/2003/XMLType#string"/> <details key="maxLength" value="3"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Value"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A type representing a numeric value and a timestamp&#xA;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="Value"/> <details key="kind" value="empty"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="timeStamp" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//DateTime"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The TimeStamp attribute holds the time date for&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;which the value applies.&#xA;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="TimeStamp"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="value" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//Double" unsettable="true"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The Value attribute holds the numeric value&#xA;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="Value"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> </ecore:EPackage>
github:ecore:/data/dzonekl/netxstudio/model/com.netxforge.netxstudio.models.export/src/models/generics.ecore
ecore
generics ActionType UPDATE UPDATE ADD ADD DELETE DELETE ActionTypeObject org.eclipse.emf.common.util.Enumerator org.eclipse.emf.common.util.Enumerator Base deleted CommitLogEntry action change objectId timeStamp user Company icons name rSSurl shortName symbol website DateTimeRange begin end Description2000 java.lang.String java.lang.String DiagramInfo diagramKind location DiagramKindType NETWORK NETWORK FUNCTION FUNCTION EQUIPMENT EQUIPMENT NODE NODE WIRING WIRING DiagramKindTypeObject org.eclipse.emf.common.util.Enumerator org.eclipse.emf.common.util.Enumerator ExpansionDuration QUICK QUICK SHORT SHORT MEDIUM MEDIUM LONG LONG ExpansionDurationObject org.eclipse.emf.common.util.Enumerator org.eclipse.emf.common.util.Enumerator ExpansionDurationSetting quickDuration shortDuration mediumDuration longDuration ExpansionDurationValue expansionDuration value ExpressionLine java.lang.String java.lang.String Lifecycle constructionDate inServiceDate outOfServiceDate plannedDate proposed LongText java.lang.String java.lang.String Meta author description version MultiImage obj16 obj32 obj48 obj96 obj128 Name255 java.lang.String java.lang.String Person roles active companyRef email firstName lastName login password Role name UnitCode java.lang.String java.lang.String Value timeStamp value
null
{"directed":true,"nodes":[{"nsPrefix":"generics","nsURI":"http://www.netxforge.com/13042011/generics","name":"generics","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"instanceClassName":null,"name":"ActionType","instanceClass":null,"id":1,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":"org.eclipse.emf.common.util.Enumerator","defaultValue":null,"instanceClassName":"org.eclipse.emf.common.util.Enumerator","name":"ActionTypeObject","instanceClass":"org.eclipse.emf.common.util.Enumerator","id":2,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Base","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CommitLogEntry","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Company","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DateTimeRange","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":"java.lang.String","defaultValue":null,"instanceClassName":"java.lang.String","name":"Description2000","instanceClass":"java.lang.String","id":7,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DiagramInfo","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"DiagramKindType","instanceClass":null,"id":9,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":"org.eclipse.emf.common.util.Enumerator","defaultValue":null,"instanceClassName":"org.eclipse.emf.common.util.Enumerator","name":"DiagramKindTypeObject","instanceClass":"org.eclipse.emf.common.util.Enumerator","id":10,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":null,"instanceClassName":null,"name":"ExpansionDuration","instanceClass":null,"id":11,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":"org.eclipse.emf.common.util.Enumerator","defaultValue":null,"instanceClassName":"org.eclipse.emf.common.util.Enumerator","name":"ExpansionDurationObject","instanceClass":"org.eclipse.emf.common.util.Enumerator","id":12,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExpansionDurationSetting","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExpansionDurationValue","instanceClass":null,"abstract":false,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":"java.lang.String","defaultValue":null,"instanceClassName":"java.lang.String","name":"ExpressionLine","instanceClass":"java.lang.String","id":15,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Lifecycle","instanceClass":null,"abstract":false,"id":16,"interface":false,"eClass":"EClass"},{"instanceTypeName":"java.lang.String","defaultValue":null,"instanceClassName":"java.lang.String","name":"LongText","instanceClass":"java.lang.String","id":17,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Meta","instanceClass":null,"abstract":false,"id":18,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MultiImage","instanceClass":null,"abstract":false,"id":19,"interface":false,"eClass":"EClass"},{"instanceTypeName":"java.lang.String","defaultValue":null,"instanceClassName":"java.lang.String","name":"Name255","instanceClass":"java.lang.String","id":20,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Person","instanceClass":null,"abstract":false,"id":21,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Role","instanceClass":null,"abstract":false,"id":22,"interface":false,"eClass":"EClass"},{"instanceTypeName":"java.lang.String","defaultValue":null,"instanceClassName":"java.lang.String","name":"UnitCode","instanceClass":"java.lang.String","id":23,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Value","instanceClass":null,"abstract":false,"id":24,"interface":false,"eClass":"EClass"},{"name":"UPDATE","id":25,"value":0,"literal":"UPDATE","eClass":"EEnumLiteral"},{"name":"ADD","id":26,"value":1,"literal":"ADD","eClass":"EEnumLiteral"},{"name":"DELETE","id":27,"value":2,"literal":"DELETE","eClass":"EEnumLiteral"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":true,"name":"deleted","changeable":true,"lowerBound":0,"iD":false,"id":28,"derived":false},{"id":29,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":true,"name":"action","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":"change","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":"objectId","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":"timeStamp","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":"user","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"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"icons","changeable":true,"resolveProxies":false,"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":"name","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":"rSSurl","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":"shortName","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":"symbol","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":"website","changeable":true,"lowerBound":0,"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"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"begin","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":"end","changeable":true,"lowerBound":0,"iD":false,"id":55,"derived":false},{"id":56,"eClass":"EGenericType"},{"id":57,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":true,"name":"diagramKind","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":"location","changeable":true,"lowerBound":0,"iD":false,"id":59,"derived":false},{"id":60,"eClass":"EGenericType"},{"id":61,"eClass":"EGenericType"},{"id":62,"eClass":"EGenericType"},{"name":"NETWORK","id":63,"value":0,"literal":"NETWORK","eClass":"EEnumLiteral"},{"name":"FUNCTION","id":64,"value":1,"literal":"FUNCTION","eClass":"EEnumLiteral"},{"name":"EQUIPMENT","id":65,"value":2,"literal":"EQUIPMENT","eClass":"EEnumLiteral"},{"name":"NODE","id":66,"value":3,"literal":"NODE","eClass":"EEnumLiteral"},{"name":"WIRING","id":67,"value":4,"literal":"WIRING","eClass":"EEnumLiteral"},{"name":"QUICK","id":68,"value":0,"literal":"QUICK","eClass":"EEnumLiteral"},{"name":"SHORT","id":69,"value":1,"literal":"SHORT","eClass":"EEnumLiteral"},{"name":"MEDIUM","id":70,"value":2,"literal":"MEDIUM","eClass":"EEnumLiteral"},{"name":"LONG","id":71,"value":3,"literal":"LONG","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":"quickDuration","changeable":true,"resolveProxies":false,"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":"shortDuration","changeable":true,"resolveProxies":false,"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":"mediumDuration","changeable":true,"resolveProxies":false,"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":"longDuration","changeable":true,"resolveProxies":false,"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"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":true,"name":"expansionDuration","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":true,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":0,"iD":false,"id":82,"derived":false},{"id":83,"eClass":"EGenericType"},{"id":84,"eClass":"EGenericType"},{"id":85,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"constructionDate","changeable":true,"lowerBound":0,"iD":false,"id":86,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"inServiceDate","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":"outOfServiceDate","changeable":true,"lowerBound":0,"iD":false,"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":"plannedDate","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":"proposed","changeable":true,"lowerBound":0,"iD":false,"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"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"author","changeable":true,"resolveProxies":true,"lowerBound":0,"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":"description","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":"version","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"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"obj16","changeable":true,"lowerBound":0,"iD":false,"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":"obj32","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":"obj48","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":"obj96","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":"obj128","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"},{"id":114,"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":"roles","changeable":true,"resolveProxies":true,"lowerBound":0,"id":115,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":true,"name":"active","changeable":true,"lowerBound":0,"iD":false,"id":116,"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":"companyRef","changeable":true,"resolveProxies":true,"lowerBound":0,"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":"email","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":"firstName","changeable":true,"lowerBound":0,"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":"lastName","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":"login","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":"password","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"},{"id":127,"eClass":"EGenericType"},{"id":128,"eClass":"EGenericType"},{"id":129,"eClass":"EGenericType"},{"id":130,"eClass":"EGenericType"},{"id":131,"eClass":"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":132,"derived":false},{"id":133,"eClass":"EGenericType"},{"id":134,"eClass":"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":135,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0.0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":true,"name":"value","changeable":true,"lowerBound":0,"iD":false,"id":136,"derived":false},{"id":137,"eClass":"EGenericType"},{"id":138,"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":1,"target":0},{"source":1,"target":25},{"source":1,"target":26},{"source":1,"target":27},{"source":25,"target":1},{"source":26,"target":1},{"source":27,"target":1},{"source":2,"target":0},{"source":3,"target":0},{"source":3,"target":28},{"source":28,"target":29},{"source":28,"target":3},{"source":4,"target":0},{"source":4,"target":3},{"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":30,"target":1},{"source":30,"target":36},{"source":30,"target":4},{"source":36,"target":1},{"source":31,"target":7},{"source":31,"target":37},{"source":31,"target":4},{"source":37,"target":7},{"source":32,"target":7},{"source":32,"target":38},{"source":32,"target":4},{"source":38,"target":7},{"source":33,"target":39},{"source":33,"target":4},{"source":34,"target":40},{"source":34,"target":4},{"source":35,"target":3},{"source":5,"target":0},{"source":5,"target":3},{"source":5,"target":41},{"source":5,"target":42},{"source":5,"target":43},{"source":5,"target":44},{"source":5,"target":45},{"source":5,"target":46},{"source":5,"target":47},{"source":41,"target":19},{"source":41,"target":48},{"source":41,"target":5},{"source":48,"target":19},{"source":42,"target":20},{"source":42,"target":49},{"source":42,"target":5},{"source":49,"target":20},{"source":43,"target":50},{"source":43,"target":5},{"source":44,"target":20},{"source":44,"target":51},{"source":44,"target":5},{"source":51,"target":20},{"source":45,"target":20},{"source":45,"target":52},{"source":45,"target":5},{"source":52,"target":20},{"source":46,"target":53},{"source":46,"target":5},{"source":47,"target":3},{"source":6,"target":0},{"source":6,"target":54},{"source":6,"target":55},{"source":54,"target":56},{"source":54,"target":6},{"source":55,"target":57},{"source":55,"target":6},{"source":7,"target":0},{"source":8,"target":0},{"source":8,"target":3},{"source":8,"target":58},{"source":8,"target":59},{"source":8,"target":60},{"source":58,"target":9},{"source":58,"target":61},{"source":58,"target":8},{"source":61,"target":9},{"source":59,"target":62},{"source":59,"target":8},{"source":60,"target":3},{"source":9,"target":0},{"source":9,"target":63},{"source":9,"target":64},{"source":9,"target":65},{"source":9,"target":66},{"source":9,"target":67},{"source":63,"target":9},{"source":64,"target":9},{"source":65,"target":9},{"source":66,"target":9},{"source":67,"target":9},{"source":10,"target":0},{"source":11,"target":0},{"source":11,"target":68},{"source":11,"target":69},{"source":11,"target":70},{"source":11,"target":71},{"source":68,"target":11},{"source":69,"target":11},{"source":70,"target":11},{"source":71,"target":11},{"source":12,"target":0},{"source":13,"target":0},{"source":13,"target":3},{"source":13,"target":72},{"source":13,"target":73},{"source":13,"target":74},{"source":13,"target":75},{"source":13,"target":76},{"source":72,"target":14},{"source":72,"target":77},{"source":72,"target":13},{"source":77,"target":14},{"source":73,"target":14},{"source":73,"target":78},{"source":73,"target":13},{"source":78,"target":14},{"source":74,"target":14},{"source":74,"target":79},{"source":74,"target":13},{"source":79,"target":14},{"source":75,"target":14},{"source":75,"target":80},{"source":75,"target":13},{"source":80,"target":14},{"source":76,"target":3},{"source":14,"target":0},{"source":14,"target":3},{"source":14,"target":81},{"source":14,"target":82},{"source":14,"target":83},{"source":81,"target":11},{"source":81,"target":84},{"source":81,"target":14},{"source":84,"target":11},{"source":82,"target":85},{"source":82,"target":14},{"source":83,"target":3},{"source":15,"target":0},{"source":16,"target":0},{"source":16,"target":3},{"source":16,"target":86},{"source":16,"target":87},{"source":16,"target":88},{"source":16,"target":89},{"source":16,"target":90},{"source":16,"target":91},{"source":86,"target":92},{"source":86,"target":16},{"source":87,"target":93},{"source":87,"target":16},{"source":88,"target":94},{"source":88,"target":16},{"source":89,"target":95},{"source":89,"target":16},{"source":90,"target":96},{"source":90,"target":16},{"source":91,"target":3},{"source":17,"target":0},{"source":18,"target":0},{"source":18,"target":3},{"source":18,"target":97},{"source":18,"target":98},{"source":18,"target":99},{"source":18,"target":100},{"source":97,"target":21},{"source":97,"target":101},{"source":97,"target":18},{"source":101,"target":21},{"source":98,"target":7},{"source":98,"target":102},{"source":98,"target":18},{"source":102,"target":7},{"source":99,"target":103},{"source":99,"target":18},{"source":100,"target":3},{"source":19,"target":0},{"source":19,"target":3},{"source":19,"target":104},{"source":19,"target":105},{"source":19,"target":106},{"source":19,"target":107},{"source":19,"target":108},{"source":19,"target":109},{"source":104,"target":110},{"source":104,"target":19},{"source":105,"target":111},{"source":105,"target":19},{"source":106,"target":112},{"source":106,"target":19},{"source":107,"target":113},{"source":107,"target":19},{"source":108,"target":114},{"source":108,"target":19},{"source":109,"target":3},{"source":20,"target":0},{"source":21,"target":0},{"source":21,"target":3},{"source":21,"target":115},{"source":21,"target":116},{"source":21,"target":117},{"source":21,"target":118},{"source":21,"target":119},{"source":21,"target":120},{"source":21,"target":121},{"source":21,"target":122},{"source":21,"target":123},{"source":115,"target":22},{"source":115,"target":124},{"source":115,"target":21},{"source":124,"target":22},{"source":116,"target":125},{"source":116,"target":21},{"source":117,"target":5},{"source":117,"target":126},{"source":117,"target":21},{"source":126,"target":5},{"source":118,"target":127},{"source":118,"target":21},{"source":119,"target":20},{"source":119,"target":128},{"source":119,"target":21},{"source":128,"target":20},{"source":120,"target":20},{"source":120,"target":129},{"source":120,"target":21},{"source":129,"target":20},{"source":121,"target":20},{"source":121,"target":130},{"source":121,"target":21},{"source":130,"target":20},{"source":122,"target":131},{"source":122,"target":21},{"source":123,"target":3},{"source":22,"target":0},{"source":22,"target":3},{"source":22,"target":132},{"source":22,"target":133},{"source":132,"target":20},{"source":132,"target":134},{"source":132,"target":22},{"source":134,"target":20},{"source":133,"target":3},{"source":23,"target":0},{"source":24,"target":0},{"source":24,"target":135},{"source":24,"target":136},{"source":135,"target":137},{"source":135,"target":24},{"source":136,"target":138},{"source":136,"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="transaction" nsURI="http://www.eclipse.org/emf/mwe/ewm/workflow/transaction" nsPrefix="org.eclipse.emf.mwe.ewm.workflow.transaction"> <eClassifiers xsi:type="ecore:EDataType" name="TransactionalEditingDomain" instanceClassName="org.eclipse.emf.transaction.TransactionalEditingDomain"/> <eSubpackages name="runtime" nsURI="http://www.eclipse.org/emf/mwe/ewm/workflow/transaction/runtime" nsPrefix="org.eclipse.emf.mwe.ewm.workflow.transaction.runtime"> <eClassifiers xsi:type="ecore:EClass" name="WorkflowTransactionalContext" eSuperTypes="../../org.eclipse.emf.mwe.ewm.core/model/workflow.ecore#//runtime/WorkflowContext"> <eOperations name="clearLog"> <eParameters name="component" lowerBound="1" eType="ecore:EClass ../../org.eclipse.emf.mwe.ewm.core/model/workflow.ecore#//WorkflowComponent"/> </eOperations> <eOperations name="getExecutionInfo" eType="ecore:EClass ../../org.eclipse.emf.mwe.ewm.core/model/workflow.ecore#//runtime/WorkflowComponentExecutionInfo"> <eParameters name="component" lowerBound="1" eType="ecore:EClass ../../org.eclipse.emf.mwe.ewm.core/model/workflow.ecore#//WorkflowComponent"/> </eOperations> <eOperations name="getParameterValue" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EJavaObject" eExceptions="ecore:EDataType ../../org.eclipse.emf.mwe.ewm.core/model/workflow.ecore#//runtime/WorkflowRuntimeException"> <eParameters name="parameter" lowerBound="1" eType="ecore:EClass ../../org.eclipse.emf.mwe.ewm.core/model/workflow.ecore#//WorkflowParameter"/> </eOperations> <eOperations name="getState" eType="ecore:EClass ../../org.eclipse.emf.mwe.ewm.core/model/workflow.ecore#//runtime/state/WorkflowState"> <eParameters name="component" lowerBound="1" eType="ecore:EClass ../../org.eclipse.emf.mwe.ewm.core/model/workflow.ecore#//WorkflowComponent"/> </eOperations> <eOperations name="logError"> <eParameters name="component" lowerBound="1" eType="ecore:EClass ../../org.eclipse.emf.mwe.ewm.core/model/workflow.ecore#//WorkflowComponent"/> <eParameters name="message" lowerBound="1" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> </eOperations> <eOperations name="logWarning"> <eParameters name="component" lowerBound="1" eType="ecore:EClass ../../org.eclipse.emf.mwe.ewm.core/model/workflow.ecore#//WorkflowComponent"/> <eParameters name="message" lowerBound="1" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> </eOperations> <eOperations name="logInfo"> <eParameters name="component" lowerBound="1" eType="ecore:EClass ../../org.eclipse.emf.mwe.ewm.core/model/workflow.ecore#//WorkflowComponent"/> <eParameters name="message" lowerBound="1" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> </eOperations> <eOperations name="logDebug"> <eParameters name="component" lowerBound="1" eType="ecore:EClass ../../org.eclipse.emf.mwe.ewm.core/model/workflow.ecore#//WorkflowComponent"/> <eParameters name="message" lowerBound="1" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> </eOperations> <eOperations name="logException"> <eParameters name="component" lowerBound="1" eType="ecore:EClass ../../org.eclipse.emf.mwe.ewm.core/model/workflow.ecore#//WorkflowComponent"/> <eParameters name="exception" lowerBound="1" eType="ecore:EDataType ../../org.eclipse.emf.mwe.ewm.core/model/workflow.ecore#//runtime/Exception"/> </eOperations> <eOperations name="setExecutionInfo"> <eParameters name="component" lowerBound="1" eType="ecore:EClass ../../org.eclipse.emf.mwe.ewm.core/model/workflow.ecore#//WorkflowComponent"/> <eParameters name="executionInfo" lowerBound="1" eType="ecore:EClass ../../org.eclipse.emf.mwe.ewm.core/model/workflow.ecore#//runtime/WorkflowComponentExecutionInfo"/> </eOperations> <eOperations name="setParameterValue" eExceptions="ecore:EDataType ../../org.eclipse.emf.mwe.ewm.core/model/workflow.ecore#//runtime/WorkflowRuntimeException"> <eParameters name="parameter" lowerBound="1" eType="ecore:EClass ../../org.eclipse.emf.mwe.ewm.core/model/workflow.ecore#//WorkflowParameter"/> <eParameters name="value" lowerBound="1" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EJavaObject"/> </eOperations> <eOperations name="setState"> <eParameters name="component" lowerBound="1" eType="ecore:EClass ../../org.eclipse.emf.mwe.ewm.core/model/workflow.ecore#//WorkflowComponent"/> <eParameters name="state" lowerBound="1" eType="ecore:EClass ../../org.eclipse.emf.mwe.ewm.core/model/workflow.ecore#//runtime/state/WorkflowState"/> </eOperations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="editingDomain" lowerBound="1" eType="#//TransactionalEditingDomain" transient="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="threadPool" eType="ecore:EDataType ../../org.eclipse.emf.mwe.ewm.core/model/workflow.ecore#//runtime/ExecutorService" changeable="false" transient="true"/> </eClassifiers> </eSubpackages> <eSubpackages name="orchestration" nsURI="http://www.eclipse.org/emf/mwe/ewm/workflow/transaction/orchestration" nsPrefix="org.eclipse.emf.mwe.ewm.workflow.transaction.orchestration"> <eClassifiers xsi:type="ecore:EClass" name="WorkflowParallelOrchestrationStrategy" eSuperTypes="../../org.eclipse.emf.mwe.ewm.core/model/workflow.ecore#//orchestration/WorkflowCompositeOrchestrationStrategy"> <eOperations name="run"> <eParameters name="composite" eType="ecore:EClass ../../org.eclipse.emf.mwe.ewm.core/model/workflow.ecore#//WorkflowCompositeComponent"/> <eParameters name="context" eType="ecore:EClass ../../org.eclipse.emf.mwe.ewm.core/model/workflow.ecore#//runtime/WorkflowContext"/> </eOperations> </eClassifiers> </eSubpackages> </ecore:EPackage>
github:ecore:/data/gssi/metamodel-dataset-analysis-toolchain/metamodels/transaction.ecore
ecore
transaction TransactionalEditingDomain org.eclipse.emf.transaction.TransactionalEditingDomain org.eclipse.emf.transaction.TransactionalEditingDomain runtime WorkflowTransactionalContext clearLog component getExecutionInfo component getParameterValue parameter getState component logError component message logWarning component message logInfo component message logDebug component message logException component exception setExecutionInfo component executionInfo setParameterValue parameter value setState component state editingDomain threadPool orchestration WorkflowParallelOrchestrationStrategy run composite context
null
{"directed":true,"nodes":[{"nsPrefix":"org.eclipse.emf.mwe.ewm.workflow.transaction","nsURI":"http://www.eclipse.org/emf/mwe/ewm/workflow/transaction","name":"transaction","id":0,"eClass":"EPackage"},{"instanceTypeName":"org.eclipse.emf.transaction.TransactionalEditingDomain","defaultValue":null,"instanceClassName":"org.eclipse.emf.transaction.TransactionalEditingDomain","name":"TransactionalEditingDomain","instanceClass":null,"id":1,"serializable":true,"eClass":"EDataType"},{"nsPrefix":"org.eclipse.emf.mwe.ewm.workflow.transaction.runtime","nsURI":"http://www.eclipse.org/emf/mwe/ewm/workflow/transaction/runtime","name":"runtime","id":2,"eClass":"EPackage"},{"nsPrefix":"org.eclipse.emf.mwe.ewm.workflow.transaction.orchestration","nsURI":"http://www.eclipse.org/emf/mwe/ewm/workflow/transaction/orchestration","name":"orchestration","id":3,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"WorkflowTransactionalContext","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"ordered":true,"upperBound":1,"unique":true,"name":"clearLog","lowerBound":0,"id":5,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getExecutionInfo","lowerBound":0,"id":6,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getParameterValue","lowerBound":0,"id":7,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getState","lowerBound":0,"id":8,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"logError","lowerBound":0,"id":9,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"logWarning","lowerBound":0,"id":10,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"logInfo","lowerBound":0,"id":11,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"logDebug","lowerBound":0,"id":12,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"logException","lowerBound":0,"id":13,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"setExecutionInfo","lowerBound":0,"id":14,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"setParameterValue","lowerBound":0,"id":15,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"setState","lowerBound":0,"id":16,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":true,"unique":true,"name":"editingDomain","changeable":true,"lowerBound":1,"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":true,"unique":true,"name":"threadPool","changeable":false,"lowerBound":0,"iD":false,"id":18,"derived":false},{"id":19,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"component","lowerBound":1,"id":20,"many":false,"required":true,"eClass":"EParameter"},{"id":21,"eClass":"EGenericType"},{"id":22,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"component","lowerBound":1,"id":23,"many":false,"required":true,"eClass":"EParameter"},{"id":24,"eClass":"EGenericType"},{"id":25,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"parameter","lowerBound":1,"id":26,"many":false,"required":true,"eClass":"EParameter"},{"id":27,"eClass":"EGenericType"},{"id":28,"eClass":"EGenericType"},{"id":29,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"component","lowerBound":1,"id":30,"many":false,"required":true,"eClass":"EParameter"},{"id":31,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"component","lowerBound":1,"id":32,"many":false,"required":true,"eClass":"EParameter"},{"ordered":true,"upperBound":1,"unique":true,"name":"message","lowerBound":1,"id":33,"many":false,"required":true,"eClass":"EParameter"},{"id":34,"eClass":"EGenericType"},{"id":35,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"component","lowerBound":1,"id":36,"many":false,"required":true,"eClass":"EParameter"},{"ordered":true,"upperBound":1,"unique":true,"name":"message","lowerBound":1,"id":37,"many":false,"required":true,"eClass":"EParameter"},{"id":38,"eClass":"EGenericType"},{"id":39,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"component","lowerBound":1,"id":40,"many":false,"required":true,"eClass":"EParameter"},{"ordered":true,"upperBound":1,"unique":true,"name":"message","lowerBound":1,"id":41,"many":false,"required":true,"eClass":"EParameter"},{"id":42,"eClass":"EGenericType"},{"id":43,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"component","lowerBound":1,"id":44,"many":false,"required":true,"eClass":"EParameter"},{"ordered":true,"upperBound":1,"unique":true,"name":"message","lowerBound":1,"id":45,"many":false,"required":true,"eClass":"EParameter"},{"id":46,"eClass":"EGenericType"},{"id":47,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"component","lowerBound":1,"id":48,"many":false,"required":true,"eClass":"EParameter"},{"ordered":true,"upperBound":1,"unique":true,"name":"exception","lowerBound":1,"id":49,"many":false,"required":true,"eClass":"EParameter"},{"id":50,"eClass":"EGenericType"},{"id":51,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"component","lowerBound":1,"id":52,"many":false,"required":true,"eClass":"EParameter"},{"ordered":true,"upperBound":1,"unique":true,"name":"executionInfo","lowerBound":1,"id":53,"many":false,"required":true,"eClass":"EParameter"},{"id":54,"eClass":"EGenericType"},{"id":55,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"parameter","lowerBound":1,"id":56,"many":false,"required":true,"eClass":"EParameter"},{"ordered":true,"upperBound":1,"unique":true,"name":"value","lowerBound":1,"id":57,"many":false,"required":true,"eClass":"EParameter"},{"id":58,"eClass":"EGenericType"},{"id":59,"eClass":"EGenericType"},{"id":60,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"component","lowerBound":1,"id":61,"many":false,"required":true,"eClass":"EParameter"},{"ordered":true,"upperBound":1,"unique":true,"name":"state","lowerBound":1,"id":62,"many":false,"required":true,"eClass":"EParameter"},{"id":63,"eClass":"EGenericType"},{"id":64,"eClass":"EGenericType"},{"id":65,"eClass":"EGenericType"},{"id":66,"eClass":"EGenericType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"WorkflowParallelOrchestrationStrategy","instanceClass":null,"abstract":false,"id":67,"interface":false,"eClass":"EClass"},{"ordered":true,"upperBound":1,"unique":true,"name":"run","lowerBound":0,"id":68,"many":false,"required":false,"eClass":"EOperation"},{"id":69,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"composite","lowerBound":0,"id":70,"many":false,"required":false,"eClass":"EParameter"},{"ordered":true,"upperBound":1,"unique":true,"name":"context","lowerBound":0,"id":71,"many":false,"required":false,"eClass":"EParameter"},{"id":72,"eClass":"EGenericType"},{"id":73,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":0,"target":3},{"source":1,"target":0},{"source":2,"target":4},{"source":2,"target":0},{"source":4,"target":2},{"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":18},{"source":4,"target":19},{"source":5,"target":4},{"source":5,"target":20},{"source":20,"target":21},{"source":20,"target":5},{"source":6,"target":22},{"source":6,"target":4},{"source":6,"target":23},{"source":23,"target":24},{"source":23,"target":6},{"source":7,"target":25},{"source":7,"target":4},{"source":7,"target":26},{"source":7,"target":27},{"source":26,"target":28},{"source":26,"target":7},{"source":8,"target":29},{"source":8,"target":4},{"source":8,"target":30},{"source":30,"target":31},{"source":30,"target":8},{"source":9,"target":4},{"source":9,"target":32},{"source":9,"target":33},{"source":32,"target":34},{"source":32,"target":9},{"source":33,"target":35},{"source":33,"target":9},{"source":10,"target":4},{"source":10,"target":36},{"source":10,"target":37},{"source":36,"target":38},{"source":36,"target":10},{"source":37,"target":39},{"source":37,"target":10},{"source":11,"target":4},{"source":11,"target":40},{"source":11,"target":41},{"source":40,"target":42},{"source":40,"target":11},{"source":41,"target":43},{"source":41,"target":11},{"source":12,"target":4},{"source":12,"target":44},{"source":12,"target":45},{"source":44,"target":46},{"source":44,"target":12},{"source":45,"target":47},{"source":45,"target":12},{"source":13,"target":4},{"source":13,"target":48},{"source":13,"target":49},{"source":48,"target":50},{"source":48,"target":13},{"source":49,"target":51},{"source":49,"target":13},{"source":14,"target":4},{"source":14,"target":52},{"source":14,"target":53},{"source":52,"target":54},{"source":52,"target":14},{"source":53,"target":55},{"source":53,"target":14},{"source":15,"target":4},{"source":15,"target":56},{"source":15,"target":57},{"source":15,"target":58},{"source":56,"target":59},{"source":56,"target":15},{"source":57,"target":60},{"source":57,"target":15},{"source":16,"target":4},{"source":16,"target":61},{"source":16,"target":62},{"source":61,"target":63},{"source":61,"target":16},{"source":62,"target":64},{"source":62,"target":16},{"source":17,"target":1},{"source":17,"target":65},{"source":17,"target":4},{"source":65,"target":1},{"source":18,"target":66},{"source":18,"target":4},{"source":3,"target":67},{"source":3,"target":0},{"source":67,"target":3},{"source":67,"target":68},{"source":67,"target":69},{"source":68,"target":67},{"source":68,"target":70},{"source":68,"target":71},{"source":70,"target":72},{"source":70,"target":68},{"source":71,"target":73},{"source":71,"target":68}],"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="javaz" nsURI="javaz" nsPrefix="javaz"> <eClassifiers xsi:type="ecore:EClass" name="Javaz" eSuperTypes="#//JavaElement"> <eStructuralFeatures xsi:type="ecore:EReference" name="packages" upperBound="-1" eType="#//JavaPackageX" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="classes" upperBound="-1" eType="#//JavaClass" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="JavaClass" eSuperTypes="#//JavaElement"> <eStructuralFeatures xsi:type="ecore:EReference" name="methods" upperBound="-1" eType="#//Method" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="fields" upperBound="-1" eType="#//Field" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="imports" upperBound="-1" eType="#//JavaClass"/> <eStructuralFeatures xsi:type="ecore:EReference" name="package" eType="#//JavaPackageX"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="kind" eType="#//JavaKind"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="public" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="final" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EReference" name="extends" eType="#//JavaClass"/> <eStructuralFeatures xsi:type="ecore:EReference" name="implements" upperBound="-1" eType="#//JavaClass"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="rewritable" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="needToGenerate" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="JavaPackageX" eSuperTypes="#//JavaElement"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="needToGenerate" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="JavaParameter" eSuperTypes="#//JavaElement"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="final" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="parameterKind" eType="#//JavaParameterKind"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="type" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="kind" eType="#//JavaParameterKind"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Method" eSuperTypes="#//JavaElement"> <eStructuralFeatures xsi:type="ecore:EReference" name="parameters" upperBound="-1" eType="#//JavaParameter" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="visibility" eType="#//JavaVisibilityKind"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="final" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="static" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="synchronized" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="constructor" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="native" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="abstract" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EReference" name="block" eType="#//Block" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Field" eSuperTypes="#//JavaElement"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="visibility" eType="#//JavaVisibilityKind"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="static" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="transient" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="volatile" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="final" 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"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="JavaElement"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="JavaVisibilityKind"> <eLiterals name="PUBLIC" literal="public"/> <eLiterals name="PRIVATE" value="1" literal="private"/> <eLiterals name="PROTECTED" value="2" literal="protected"/> <eLiterals name="PACKAGE" value="3" literal="package"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="JavaKind"> <eLiterals name="CLASS" literal="class"/> <eLiterals name="INTERFACE" value="1" literal="interface"/> <eLiterals name="EXCEPTION" value="2" literal="exception"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="JavaParameterKind"> <eLiterals name="IN"/> <eLiterals name="OUT" value="1"/> <eLiterals name="INOUT" value="2"/> <eLiterals name="RETURN" value="3"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Block"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="content" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> </ecore:EPackage>
github:ecore:/data/gssi/metamodel-dataset-analysis-toolchain/metamodels/javaz.ecore
ecore
javaz Javaz packages classes JavaClass methods fields imports package kind public final extends implements rewritable needToGenerate JavaPackageX needToGenerate JavaParameter final parameterKind type kind Method parameters visibility final static synchronized constructor native abstract block Field visibility static transient volatile final type JavaElement name JavaVisibilityKind PUBLIC public PRIVATE private PROTECTED protected PACKAGE package JavaKind CLASS class INTERFACE interface EXCEPTION exception JavaParameterKind IN IN OUT OUT INOUT INOUT RETURN RETURN Block content
null
{"directed":true,"nodes":[{"nsPrefix":"javaz","nsURI":"javaz","name":"javaz","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Javaz","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"JavaClass","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"JavaPackageX","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"JavaParameter","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Method","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Field","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"JavaElement","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"JavaVisibilityKind","instanceClass":null,"id":8,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"JavaKind","instanceClass":null,"id":9,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"JavaParameterKind","instanceClass":null,"id":10,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Block","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":"packages","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":true,"unsettable":false,"transient":false,"unique":true,"name":"classes","changeable":true,"resolveProxies":true,"lowerBound":0,"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":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"methods","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":"fields","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":"imports","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":"package","changeable":true,"resolveProxies":true,"lowerBound":0,"id":20,"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":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":"public","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":"final","changeable":true,"lowerBound":0,"iD":false,"id":23,"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":"extends","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":"implements","changeable":true,"resolveProxies":true,"lowerBound":0,"id":25,"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":"rewritable","changeable":true,"lowerBound":0,"iD":false,"id":26,"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":"needToGenerate","changeable":true,"lowerBound":0,"iD":false,"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"},{"id":34,"eClass":"EGenericType"},{"id":35,"eClass":"EGenericType"},{"id":36,"eClass":"EGenericType"},{"id":37,"eClass":"EGenericType"},{"id":38,"eClass":"EGenericType"},{"id":39,"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":"needToGenerate","changeable":true,"lowerBound":0,"iD":false,"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":"final","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":"parameterKind","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":"type","changeable":true,"lowerBound":0,"iD":false,"id":45,"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":46,"derived":false},{"id":47,"eClass":"EGenericType"},{"id":48,"eClass":"EGenericType"},{"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":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"parameters","changeable":true,"resolveProxies":true,"lowerBound":0,"id":52,"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":53,"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":"final","changeable":true,"lowerBound":0,"iD":false,"id":54,"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":"static","changeable":true,"lowerBound":0,"iD":false,"id":55,"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":"synchronized","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":"constructor","changeable":true,"lowerBound":0,"iD":false,"id":57,"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":"native","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":false,"transient":false,"unique":true,"name":"abstract","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":true,"unsettable":false,"transient":false,"unique":true,"name":"block","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"},{"id":69,"eClass":"EGenericType"},{"id":70,"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":71,"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":"static","changeable":true,"lowerBound":0,"iD":false,"id":72,"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":73,"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":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":"final","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":"type","changeable":true,"lowerBound":0,"iD":false,"id":76,"derived":false},{"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"},{"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"},{"name":"PUBLIC","id":86,"value":0,"literal":"public","eClass":"EEnumLiteral"},{"name":"PRIVATE","id":87,"value":1,"literal":"private","eClass":"EEnumLiteral"},{"name":"PROTECTED","id":88,"value":2,"literal":"protected","eClass":"EEnumLiteral"},{"name":"PACKAGE","id":89,"value":3,"literal":"package","eClass":"EEnumLiteral"},{"name":"CLASS","id":90,"value":0,"literal":"class","eClass":"EEnumLiteral"},{"name":"INTERFACE","id":91,"value":1,"literal":"interface","eClass":"EEnumLiteral"},{"name":"EXCEPTION","id":92,"value":2,"literal":"exception","eClass":"EEnumLiteral"},{"name":"IN","id":93,"value":0,"literal":"IN","eClass":"EEnumLiteral"},{"name":"OUT","id":94,"value":1,"literal":"OUT","eClass":"EEnumLiteral"},{"name":"INOUT","id":95,"value":2,"literal":"INOUT","eClass":"EEnumLiteral"},{"name":"RETURN","id":96,"value":3,"literal":"RETURN","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":"content","changeable":true,"lowerBound":0,"iD":false,"id":97,"derived":false},{"id":98,"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":7},{"source":1,"target":12},{"source":1,"target":13},{"source":1,"target":14},{"source":12,"target":3},{"source":12,"target":15},{"source":12,"target":1},{"source":15,"target":3},{"source":13,"target":2},{"source":13,"target":16},{"source":13,"target":1},{"source":16,"target":2},{"source":14,"target":7},{"source":2,"target":0},{"source":2,"target":7},{"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":2,"target":24},{"source":2,"target":25},{"source":2,"target":26},{"source":2,"target":27},{"source":2,"target":28},{"source":17,"target":5},{"source":17,"target":29},{"source":17,"target":2},{"source":29,"target":5},{"source":18,"target":6},{"source":18,"target":30},{"source":18,"target":2},{"source":30,"target":6},{"source":19,"target":2},{"source":19,"target":31},{"source":19,"target":2},{"source":31,"target":2},{"source":20,"target":3},{"source":20,"target":32},{"source":20,"target":2},{"source":32,"target":3},{"source":21,"target":9},{"source":21,"target":33},{"source":21,"target":2},{"source":33,"target":9},{"source":22,"target":34},{"source":22,"target":2},{"source":23,"target":35},{"source":23,"target":2},{"source":24,"target":2},{"source":24,"target":36},{"source":24,"target":2},{"source":36,"target":2},{"source":25,"target":2},{"source":25,"target":37},{"source":25,"target":2},{"source":37,"target":2},{"source":26,"target":38},{"source":26,"target":2},{"source":27,"target":39},{"source":27,"target":2},{"source":28,"target":7},{"source":3,"target":0},{"source":3,"target":7},{"source":3,"target":40},{"source":3,"target":41},{"source":40,"target":42},{"source":40,"target":3},{"source":41,"target":7},{"source":4,"target":0},{"source":4,"target":7},{"source":4,"target":43},{"source":4,"target":44},{"source":4,"target":45},{"source":4,"target":46},{"source":4,"target":47},{"source":43,"target":48},{"source":43,"target":4},{"source":44,"target":10},{"source":44,"target":49},{"source":44,"target":4},{"source":49,"target":10},{"source":45,"target":50},{"source":45,"target":4},{"source":46,"target":10},{"source":46,"target":51},{"source":46,"target":4},{"source":51,"target":10},{"source":47,"target":7},{"source":5,"target":0},{"source":5,"target":7},{"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":52,"target":4},{"source":52,"target":62},{"source":52,"target":5},{"source":62,"target":4},{"source":53,"target":8},{"source":53,"target":63},{"source":53,"target":5},{"source":63,"target":8},{"source":54,"target":64},{"source":54,"target":5},{"source":55,"target":65},{"source":55,"target":5},{"source":56,"target":66},{"source":56,"target":5},{"source":57,"target":67},{"source":57,"target":5},{"source":58,"target":68},{"source":58,"target":5},{"source":59,"target":69},{"source":59,"target":5},{"source":60,"target":11},{"source":60,"target":70},{"source":60,"target":5},{"source":70,"target":11},{"source":61,"target":7},{"source":6,"target":0},{"source":6,"target":7},{"source":6,"target":71},{"source":6,"target":72},{"source":6,"target":73},{"source":6,"target":74},{"source":6,"target":75},{"source":6,"target":76},{"source":6,"target":77},{"source":71,"target":8},{"source":71,"target":78},{"source":71,"target":6},{"source":78,"target":8},{"source":72,"target":79},{"source":72,"target":6},{"source":73,"target":80},{"source":73,"target":6},{"source":74,"target":81},{"source":74,"target":6},{"source":75,"target":82},{"source":75,"target":6},{"source":76,"target":83},{"source":76,"target":6},{"source":77,"target":7},{"source":7,"target":0},{"source":7,"target":84},{"source":84,"target":85},{"source":84,"target":7},{"source":8,"target":0},{"source":8,"target":86},{"source":8,"target":87},{"source":8,"target":88},{"source":8,"target":89},{"source":86,"target":8},{"source":87,"target":8},{"source":88,"target":8},{"source":89,"target":8},{"source":9,"target":0},{"source":9,"target":90},{"source":9,"target":91},{"source":9,"target":92},{"source":90,"target":9},{"source":91,"target":9},{"source":92,"target":9},{"source":10,"target":0},{"source":10,"target":93},{"source":10,"target":94},{"source":10,"target":95},{"source":10,"target":96},{"source":93,"target":10},{"source":94,"target":10},{"source":95,"target":10},{"source":96,"target":10},{"source":11,"target":0},{"source":11,"target":97},{"source":97,"target":98},{"source":97,"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="datatypes" nsURI="http://www.ibm.com/xmlns/prod/commerce/member" nsPrefix="Member"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="&#xD;&#xA;&#x9;&#x9;&#x9;This foundation XML schema file defines the common elements and types shared by the&#xD;&#xA;&#x9;&#x9;&#x9;entire schema.&#xD;&#xA;&#x9;&#x9;"/> </eAnnotations> <eClassifiers xsi:type="ecore:EClass" name="BusinessProfileType"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="BusinessProfileType"/> <details key="kind" value="elementOnly"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="businessTitle" unique="false" 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 business title."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="BusinessTitle"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="organizationName" unique="false" 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 of the organization."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="OrganizationName"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="organizationalUnitName" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Name of the organizational unit."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="OrganizationalUnitName"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="employeeID" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A method to identify the employee, such as by employee number. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="EmployeeID"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="alternateID" 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="A special ID assigned by the organization or organizational unit to which this business user belongs. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="AlternateID"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="employeeType" unique="false" 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 employee type, such as regular, part time, special part time, supplemental, and contractor. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="EmployeeType"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="officeAddress" eType="ecore:EClass com.ibm.commerce.foundation.datatypes.ecore#//AddressType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The office address."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="OfficeAddress"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="departmentNumber" unique="false" 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 department number for the business user. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="DepartmentNumber"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="manager" unique="false" 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 of the manager or supervisor or this his business user. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="Manager"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="secretary" unique="false" 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 of the secretary or administrative assistant of the business user. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="Secretary"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="requisitionerID" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A unique ID for identifying the requisitioner. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="RequisitionerID"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="userArea" eType="ecore:EClass com.ibm.commerce.foundation.datatypes.ecore#//UserDataType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="User data."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="UserArea"/> <details key="namespace" value="##targetNamespace"/> </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="organization" upperBound="-2" eType="#//OrganizationType" 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="Organization"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="syncOrganization" upperBound="-2" eType="#//SyncOrganizationType" 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="SyncOrganization"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="person" upperBound="-2" eType="#//PersonType" 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="Person"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="syncPerson" upperBound="-2" eType="#//SyncPersonType" 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="SyncPerson"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="OrganizationType"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="OrganizationType"/> <details key="kind" value="elementOnly"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="organizationIdentifier" eType="ecore:EClass com.ibm.commerce.foundation.datatypes.ecore#//OrganizationIdentifierType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The organization identifier."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="OrganizationIdentifier"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="parentIdentifier" eType="ecore:EClass com.ibm.commerce.foundation.datatypes.ecore#//OrganizationIdentifierType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The identifier for the parent."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="ParentIdentifier"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="organizationName" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Short name for organization (O) or organization unit (OU). Not null is a requirement since it will be mapped to O or OU which are required attributes in LDAP. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="OrganizationName"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="organizationType" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Type of OrgEntity. Valid values are as follows:&#xD;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;O = organization&#xD;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;OU = organization unit &#xD;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="OrganizationType"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="businessCategory" unique="false" 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 business category, which describes the kind of business performed by an OrgEntity. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="BusinessCategory"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="description" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A description of the OrgEntity. "/> </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="contactInfo" eType="ecore:EClass com.ibm.commerce.foundation.datatypes.ecore#//ContactInfoType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The primary contact information."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="ContactInfo"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="contactList" eType="ecore:EClass com.ibm.commerce.foundation.datatypes.ecore#//ContactListType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A list of the contact information."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="ContactList"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="contextAttribute" upperBound="-1" eType="ecore:EClass com.ibm.commerce.foundation.datatypes.ecore#//AttributeType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The context attribute."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="ContextAttribute"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="userArea" eType="ecore:EClass com.ibm.commerce.foundation.datatypes.ecore#//UserDataType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="User data."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="UserArea"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="PersonalProfileType"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="PersonalProfileType"/> <details key="kind" value="elementOnly"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="preferredCurrency" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Preferred currency in 3-character alphabetic code as per ISO 4217. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="PreferredCurrency"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="preferredLanguage" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Preferred language."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="PreferredLanguage"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="displayName" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Display name of the entry. This is a name used in displaying an entry in a one line summary list. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="DisplayName"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="photoURL" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A location for the photograph of the person. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="PhotoURL"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="preferredMeasure" unique="false" 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 preferred measure."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="PreferredMeasure"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="preferredCommunication" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Preferred method of communication by phone. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="PreferredCommunication"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="preferredDelivery" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Preferred delivery method. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="PreferredDelivery"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="description" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Description of the person. "/> </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="gender" unique="false" 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 gender of the person. Valid values are as follows:&#xD;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;F = female &#xD;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;M = male &#xD;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;N = not provided &#xD;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;If not provided, N is used as the default. &#xD;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="Gender"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="birthDay" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//Date"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The birthday of the person."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="BirthDay"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="income" unique="false" 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 annual income for the person."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="Income"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="maritalStatus" unique="false" 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 marital status of the person."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="MaritalStatus"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="incomeCurrency" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Currency for the income of the person."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="IncomeCurrency"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="numberOfChildren" unique="false" 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 number of children that the person has. If not provided, the default is 0. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="NumberOfChildren"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="household" unique="false" 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="Number of people in the household. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="Household"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="companyName" unique="false" 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 company for which the person works. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="CompanyName"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="hobbies" 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 main interests and hobbies of the person."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="Hobbies"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="timezone" unique="false" 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 time zone in which the person resides. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="Timezone"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="userArea" eType="ecore:EClass com.ibm.commerce.foundation.datatypes.ecore#//UserDataType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="User data."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="UserArea"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="PersonType"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="PersonType"/> <details key="kind" value="elementOnly"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="personIdentifier" eType="ecore:EClass com.ibm.commerce.foundation.datatypes.ecore#//PersonIdentifierType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The person identifier."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="PersonIdentifier"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="parentIdentifier" eType="ecore:EClass com.ibm.commerce.foundation.datatypes.ecore#//OrganizationIdentifierType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The identifier for the parent."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="ParentIdentifier"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="name" eType="ecore:EClass com.ibm.commerce.foundation.datatypes.ecore#//PersonNameType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The person's name."/> </eAnnotations> <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="personalProfile" eType="#//PersonalProfileType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The personal profile."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="PersonalProfile"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="businessProfile" eType="#//BusinessProfileType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The business profile."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="BusinessProfile"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="authentication" eType="ecore:EClass com.ibm.commerce.foundation.datatypes.ecore#//AuthenticationType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The authentication information."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="Authentication"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="contactInfo" eType="ecore:EClass com.ibm.commerce.foundation.datatypes.ecore#//ContactInfoType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The primary contact information."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="ContactInfo"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="contactList" eType="ecore:EClass com.ibm.commerce.foundation.datatypes.ecore#//ContactListType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A list of the contact information."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="ContactList"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="contextAttribute" upperBound="-1" eType="ecore:EClass com.ibm.commerce.foundation.datatypes.ecore#//AttributeType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The context attribute."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="ContextAttribute"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="userArea" eType="ecore:EClass com.ibm.commerce.foundation.datatypes.ecore#//UserDataType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="User data."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="UserArea"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="SyncOrganizationDataAreaType"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="SyncOrganizationDataAreaType"/> <details key="kind" value="elementOnly"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="sync" lowerBound="1" eType="ecore:EClass com.ibm.commerce.oagis9.datatypes.ecore#//SyncType" containment="true" resolveProxies="false"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="Sync"/> <details key="namespace" value="http://www.openapplications.org/oagis/9"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="organization" upperBound="-1" eType="#//OrganizationType" containment="true" resolveProxies="false"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="Organization"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="SyncOrganizationType" eSuperTypes="com.ibm.commerce.oagis9.datatypes.ecore#//BusinessObjectDocumentType"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="SyncOrganizationType"/> <details key="kind" value="elementOnly"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="dataArea" lowerBound="1" eType="#//SyncOrganizationDataAreaType" containment="true" resolveProxies="false"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="DataArea"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="SyncPersonDataAreaType"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="SyncPersonDataAreaType"/> <details key="kind" value="elementOnly"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="sync" lowerBound="1" eType="ecore:EClass com.ibm.commerce.oagis9.datatypes.ecore#//SyncType" containment="true" resolveProxies="false"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="Sync"/> <details key="namespace" value="http://www.openapplications.org/oagis/9"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="person" upperBound="-1" eType="#//PersonType" containment="true" resolveProxies="false"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="Person"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="SyncPersonType" eSuperTypes="com.ibm.commerce.oagis9.datatypes.ecore#//BusinessObjectDocumentType"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="SyncPersonType"/> <details key="kind" value="elementOnly"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="dataArea" lowerBound="1" eType="#//SyncPersonDataAreaType" containment="true" resolveProxies="false"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="DataArea"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> </ecore:EPackage>
github:ecore:/data/MagMar94/ParmorelExperimentResults/Experiments/Experiment-distance-impact/original-distance/RelaxationCloseDistance/100_com.ibm.commerce.member.datatypes.ecore
ecore
datatypes BusinessProfileType businessTitle organizationName organizationalUnitName employeeID alternateID employeeType officeAddress departmentNumber manager secretary requisitionerID userArea DocumentRoot mixed xMLNSPrefixMap xSISchemaLocation organization syncOrganization person syncPerson OrganizationType organizationIdentifier parentIdentifier organizationName organizationType businessCategory description contactInfo contactList contextAttribute userArea PersonalProfileType preferredCurrency preferredLanguage displayName photoURL preferredMeasure preferredCommunication preferredDelivery description gender birthDay income maritalStatus incomeCurrency numberOfChildren household companyName hobbies timezone userArea PersonType personIdentifier parentIdentifier name personalProfile businessProfile authentication contactInfo contactList contextAttribute userArea SyncOrganizationDataAreaType sync organization SyncOrganizationType dataArea SyncPersonDataAreaType sync person SyncPersonType dataArea
null
{"directed":true,"nodes":[{"nsPrefix":"Member","nsURI":"http://www.ibm.com/xmlns/prod/commerce/member","name":"datatypes","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BusinessProfileType","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":"OrganizationType","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PersonalProfileType","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PersonType","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SyncOrganizationDataAreaType","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SyncOrganizationType","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SyncPersonDataAreaType","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SyncPersonType","instanceClass":null,"abstract":false,"id":9,"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":"businessTitle","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":false,"name":"organizationName","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":false,"name":"organizationalUnitName","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":false,"name":"employeeID","changeable":true,"lowerBound":0,"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":"alternateID","changeable":true,"lowerBound":0,"iD":false,"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":false,"name":"employeeType","changeable":true,"lowerBound":0,"iD":false,"id":15,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"officeAddress","changeable":true,"resolveProxies":false,"lowerBound":0,"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":false,"name":"departmentNumber","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":false,"name":"manager","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":false,"name":"secretary","changeable":true,"lowerBound":0,"iD":false,"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":false,"name":"requisitionerID","changeable":true,"lowerBound":0,"iD":false,"id":20,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"userArea","changeable":true,"resolveProxies":false,"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"},{"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":"mixed","changeable":true,"lowerBound":0,"iD":false,"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":true,"unique":false,"name":"xMLNSPrefixMap","changeable":true,"resolveProxies":false,"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":false,"unsettable":false,"transient":true,"unique":false,"name":"xSISchemaLocation","changeable":true,"resolveProxies":false,"lowerBound":0,"id":36,"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":"organization","changeable":true,"resolveProxies":false,"lowerBound":0,"id":37,"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":"syncOrganization","changeable":true,"resolveProxies":false,"lowerBound":0,"id":38,"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":"person","changeable":true,"resolveProxies":false,"lowerBound":0,"id":39,"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":"syncPerson","changeable":true,"resolveProxies":false,"lowerBound":0,"id":40,"derived":true},{"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"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"organizationIdentifier","changeable":true,"resolveProxies":false,"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":"parentIdentifier","changeable":true,"resolveProxies":false,"lowerBound":0,"id":49,"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":"organizationName","changeable":true,"lowerBound":0,"iD":false,"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":false,"name":"organizationType","changeable":true,"lowerBound":0,"iD":false,"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":false,"name":"businessCategory","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":false,"name":"description","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":"contactInfo","changeable":true,"resolveProxies":false,"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":"contactList","changeable":true,"resolveProxies":false,"lowerBound":0,"id":55,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"contextAttribute","changeable":true,"resolveProxies":false,"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":"userArea","changeable":true,"resolveProxies":false,"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"},{"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":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"preferredCurrency","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":false,"name":"preferredLanguage","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":false,"name":"displayName","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":false,"name":"photoURL","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":false,"name":"preferredMeasure","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":false,"name":"preferredCommunication","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":false,"name":"preferredDelivery","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":false,"name":"description","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":false,"name":"gender","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":false,"name":"birthDay","changeable":true,"lowerBound":0,"iD":false,"id":77,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":false,"name":"income","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":false,"name":"maritalStatus","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":false,"name":"incomeCurrency","changeable":true,"lowerBound":0,"iD":false,"id":80,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":false,"name":"numberOfChildren","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":true,"transient":false,"unique":false,"name":"household","changeable":true,"lowerBound":0,"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":false,"name":"companyName","changeable":true,"lowerBound":0,"iD":false,"id":83,"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":"hobbies","changeable":true,"lowerBound":0,"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":false,"name":"timezone","changeable":true,"lowerBound":0,"iD":false,"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":"userArea","changeable":true,"resolveProxies":false,"lowerBound":0,"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"},{"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"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"personIdentifier","changeable":true,"resolveProxies":false,"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":"parentIdentifier","changeable":true,"resolveProxies":false,"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":"name","changeable":true,"resolveProxies":false,"lowerBound":0,"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":"personalProfile","changeable":true,"resolveProxies":false,"lowerBound":0,"id":109,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"businessProfile","changeable":true,"resolveProxies":false,"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":true,"unsettable":false,"transient":false,"unique":true,"name":"authentication","changeable":true,"resolveProxies":false,"lowerBound":0,"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":"contactInfo","changeable":true,"resolveProxies":false,"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":"contactList","changeable":true,"resolveProxies":false,"lowerBound":0,"id":113,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"contextAttribute","changeable":true,"resolveProxies":false,"lowerBound":0,"id":114,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"userArea","changeable":true,"resolveProxies":false,"lowerBound":0,"id":115,"derived":false},{"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"},{"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":"sync","changeable":true,"resolveProxies":false,"lowerBound":1,"id":126,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"organization","changeable":true,"resolveProxies":false,"lowerBound":0,"id":127,"derived":false},{"id":128,"eClass":"EGenericType"},{"id":129,"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":"dataArea","changeable":true,"resolveProxies":false,"lowerBound":1,"id":130,"derived":false},{"id":131,"eClass":"EGenericType"},{"id":132,"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":"sync","changeable":true,"resolveProxies":false,"lowerBound":1,"id":133,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"person","changeable":true,"resolveProxies":false,"lowerBound":0,"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":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"dataArea","changeable":true,"resolveProxies":false,"lowerBound":1,"id":137,"derived":false},{"id":138,"eClass":"EGenericType"},{"id":139,"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":1,"target":17},{"source":1,"target":18},{"source":1,"target":19},{"source":1,"target":20},{"source":1,"target":21},{"source":10,"target":22},{"source":10,"target":1},{"source":11,"target":23},{"source":11,"target":1},{"source":12,"target":24},{"source":12,"target":1},{"source":13,"target":25},{"source":13,"target":1},{"source":14,"target":26},{"source":14,"target":1},{"source":15,"target":27},{"source":15,"target":1},{"source":16,"target":28},{"source":16,"target":1},{"source":17,"target":29},{"source":17,"target":1},{"source":18,"target":30},{"source":18,"target":1},{"source":19,"target":31},{"source":19,"target":1},{"source":20,"target":32},{"source":20,"target":1},{"source":21,"target":33},{"source":21,"target":1},{"source":2,"target":0},{"source":2,"target":34},{"source":2,"target":35},{"source":2,"target":36},{"source":2,"target":37},{"source":2,"target":38},{"source":2,"target":39},{"source":2,"target":40},{"source":34,"target":41},{"source":34,"target":2},{"source":35,"target":42},{"source":35,"target":2},{"source":36,"target":43},{"source":36,"target":2},{"source":37,"target":3},{"source":37,"target":44},{"source":37,"target":2},{"source":44,"target":3},{"source":38,"target":7},{"source":38,"target":45},{"source":38,"target":2},{"source":45,"target":7},{"source":39,"target":5},{"source":39,"target":46},{"source":39,"target":2},{"source":46,"target":5},{"source":40,"target":9},{"source":40,"target":47},{"source":40,"target":2},{"source":47,"target":9},{"source":3,"target":0},{"source":3,"target":48},{"source":3,"target":49},{"source":3,"target":50},{"source":3,"target":51},{"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":48,"target":58},{"source":48,"target":3},{"source":49,"target":59},{"source":49,"target":3},{"source":50,"target":60},{"source":50,"target":3},{"source":51,"target":61},{"source":51,"target":3},{"source":52,"target":62},{"source":52,"target":3},{"source":53,"target":63},{"source":53,"target":3},{"source":54,"target":64},{"source":54,"target":3},{"source":55,"target":65},{"source":55,"target":3},{"source":56,"target":66},{"source":56,"target":3},{"source":57,"target":67},{"source":57,"target":3},{"source":4,"target":0},{"source":4,"target":68},{"source":4,"target":69},{"source":4,"target":70},{"source":4,"target":71},{"source":4,"target":72},{"source":4,"target":73},{"source":4,"target":74},{"source":4,"target":75},{"source":4,"target":76},{"source":4,"target":77},{"source":4,"target":78},{"source":4,"target":79},{"source":4,"target":80},{"source":4,"target":81},{"source":4,"target":82},{"source":4,"target":83},{"source":4,"target":84},{"source":4,"target":85},{"source":4,"target":86},{"source":68,"target":87},{"source":68,"target":4},{"source":69,"target":88},{"source":69,"target":4},{"source":70,"target":89},{"source":70,"target":4},{"source":71,"target":90},{"source":71,"target":4},{"source":72,"target":91},{"source":72,"target":4},{"source":73,"target":92},{"source":73,"target":4},{"source":74,"target":93},{"source":74,"target":4},{"source":75,"target":94},{"source":75,"target":4},{"source":76,"target":95},{"source":76,"target":4},{"source":77,"target":96},{"source":77,"target":4},{"source":78,"target":97},{"source":78,"target":4},{"source":79,"target":98},{"source":79,"target":4},{"source":80,"target":99},{"source":80,"target":4},{"source":81,"target":100},{"source":81,"target":4},{"source":82,"target":101},{"source":82,"target":4},{"source":83,"target":102},{"source":83,"target":4},{"source":84,"target":103},{"source":84,"target":4},{"source":85,"target":104},{"source":85,"target":4},{"source":86,"target":105},{"source":86,"target":4},{"source":5,"target":0},{"source":5,"target":106},{"source":5,"target":107},{"source":5,"target":108},{"source":5,"target":109},{"source":5,"target":110},{"source":5,"target":111},{"source":5,"target":112},{"source":5,"target":113},{"source":5,"target":114},{"source":5,"target":115},{"source":106,"target":116},{"source":106,"target":5},{"source":107,"target":117},{"source":107,"target":5},{"source":108,"target":118},{"source":108,"target":5},{"source":109,"target":4},{"source":109,"target":119},{"source":109,"target":5},{"source":119,"target":4},{"source":110,"target":1},{"source":110,"target":120},{"source":110,"target":5},{"source":120,"target":1},{"source":111,"target":121},{"source":111,"target":5},{"source":112,"target":122},{"source":112,"target":5},{"source":113,"target":123},{"source":113,"target":5},{"source":114,"target":124},{"source":114,"target":5},{"source":115,"target":125},{"source":115,"target":5},{"source":6,"target":0},{"source":6,"target":126},{"source":6,"target":127},{"source":126,"target":128},{"source":126,"target":6},{"source":127,"target":3},{"source":127,"target":129},{"source":127,"target":6},{"source":129,"target":3},{"source":7,"target":0},{"source":7,"target":130},{"source":7,"target":131},{"source":130,"target":6},{"source":130,"target":132},{"source":130,"target":7},{"source":132,"target":6},{"source":8,"target":0},{"source":8,"target":133},{"source":8,"target":134},{"source":133,"target":135},{"source":133,"target":8},{"source":134,"target":5},{"source":134,"target":136},{"source":134,"target":8},{"source":136,"target":5},{"source":9,"target":0},{"source":9,"target":137},{"source":9,"target":138},{"source":137,"target":8},{"source":137,"target":139},{"source":137,"target":9},{"source":139,"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="root" nsURI="http://www.root.com" nsPrefix="R"> <eClassifiers xsi:type="ecore:EClass" name="Car"/> <eClassifiers xsi:type="ecore:EClass" name="Person"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> </ecore:EPackage>
github:ecore:/data/lynnmie/EMT_Tools/TraceTest/test.ecore
ecore
root Car Person name
null
{"directed":true,"nodes":[{"nsPrefix":"R","nsURI":"http://www.root.com","name":"root","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Car","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Person","instanceClass":null,"abstract":false,"id":2,"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":3,"derived":false},{"id":4,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":1,"target":0},{"source":2,"target":0},{"source":2,"target":3},{"source":3,"target":4},{"source":3,"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="hExample_3_LHS" nsURI="hExample_3_LHS" nsPrefix="hExample_3_LHS"> <eClassifiers xsi:type="ecore:EClass" name="A"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" defaultValueLiteral=""/> </eClassifiers> </ecore:EPackage>
github:ecore:/data/AlFranzis/SmartMatcher/SmartMatcherTrunk/models/hExample_3/hExample_3_LHS.ecore
ecore
hExample_3_LHS A name
null
{"directed":true,"nodes":[{"nsPrefix":"hExample_3_LHS","nsURI":"hExample_3_LHS","name":"hExample_3_LHS","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"A","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"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":2,"derived":false},{"id":3,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":1,"target":0},{"source":1,"target":2},{"source":2,"target":3},{"source":2,"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="namedelement" nsURI="http://sdq.ipd.uka.de/NamedElement/0.1" nsPrefix="namedelement"> <eClassifiers xsi:type="ecore:EClass" name="NamedElement"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> </ecore:EPackage>
github:ecore:/data/KAMP-Research/Toometa/de.uka.ipd.sdq.namedelement/model/namedelement.ecore
ecore
namedelement NamedElement name
null
{"directed":true,"nodes":[{"nsPrefix":"namedelement","nsURI":"http://sdq.ipd.uka.de/NamedElement/0.1","name":"namedelement","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NamedElement","instanceClass":null,"abstract":false,"id":1,"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":2,"derived":false},{"id":3,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":1,"target":0},{"source":1,"target":2},{"source":2,"target":3},{"source":2,"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="datatypes" nsURI="http://www.ibm.com/xmlns/prod/commerce/member" nsPrefix="Member"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="&#xD;&#xA;&#x9;&#x9;&#x9;This foundation XML schema file defines the common elements and types shared by the&#xD;&#xA;&#x9;&#x9;&#x9;entire schema.&#xD;&#xA;&#x9;&#x9;"/> </eAnnotations> <eClassifiers xsi:type="ecore:EClass" name="BusinessProfileType"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="BusinessProfileType"/> <details key="kind" value="elementOnly"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="businessTitle" unique="false" 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 business title."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="BusinessTitle"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="organizationName" unique="false" 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 of the organization."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="OrganizationName"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="organizationalUnitName" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Name of the organizational unit."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="OrganizationalUnitName"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="employeeID" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A method to identify the employee, such as by employee number. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="EmployeeID"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="alternateID" 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="A special ID assigned by the organization or organizational unit to which this business user belongs. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="AlternateID"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="employeeType" unique="false" 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 employee type, such as regular, part time, special part time, supplemental, and contractor. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="EmployeeType"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="officeAddress" eType="ecore:EClass com.ibm.commerce.foundation.datatypes.ecore#//AddressType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The office address."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="OfficeAddress"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="departmentNumber" unique="false" 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 department number for the business user. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="DepartmentNumber"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="manager" unique="false" 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 of the manager or supervisor or this his business user. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="Manager"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="secretary" unique="false" 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 of the secretary or administrative assistant of the business user. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="Secretary"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="requisitionerID" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A unique ID for identifying the requisitioner. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="RequisitionerID"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="userArea" eType="ecore:EClass com.ibm.commerce.foundation.datatypes.ecore#//UserDataType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="User data."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="UserArea"/> <details key="namespace" value="##targetNamespace"/> </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" 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="organization" upperBound="-2" eType="#//OrganizationType" 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="Organization"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="syncOrganization" upperBound="-2" eType="#//SyncOrganizationType" 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="SyncOrganization"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="person" upperBound="-2" eType="#//PersonType" 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="Person"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="syncPerson" upperBound="-2" eType="#//SyncPersonType" 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="SyncPerson"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="OrganizationType"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="OrganizationType"/> <details key="kind" value="elementOnly"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="organizationIdentifier" eType="ecore:EClass com.ibm.commerce.foundation.datatypes.ecore#//OrganizationIdentifierType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The organization identifier."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="OrganizationIdentifier"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="parentIdentifier" eType="ecore:EClass com.ibm.commerce.foundation.datatypes.ecore#//OrganizationIdentifierType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The identifier for the parent."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="ParentIdentifier"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="organizationName" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Short name for organization (O) or organization unit (OU). Not null is a requirement since it will be mapped to O or OU which are required attributes in LDAP. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="OrganizationName"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="organizationType" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Type of OrgEntity. Valid values are as follows:&#xD;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;O = organization&#xD;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;OU = organization unit &#xD;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="OrganizationType"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="businessCategory" unique="false" 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 business category, which describes the kind of business performed by an OrgEntity. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="BusinessCategory"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="description" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A description of the OrgEntity. "/> </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="contactInfo" eType="ecore:EClass com.ibm.commerce.foundation.datatypes.ecore#//ContactInfoType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The primary contact information."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="ContactInfo"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="contactList" eType="ecore:EClass com.ibm.commerce.foundation.datatypes.ecore#//ContactListType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A list of the contact information."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="ContactList"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="contextAttribute" upperBound="-1" eType="ecore:EClass com.ibm.commerce.foundation.datatypes.ecore#//AttributeType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The context attribute."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="ContextAttribute"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="userArea" eType="ecore:EClass com.ibm.commerce.foundation.datatypes.ecore#//UserDataType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="User data."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="UserArea"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="PersonalProfileType"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="PersonalProfileType"/> <details key="kind" value="elementOnly"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="preferredCurrency" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Preferred currency in 3-character alphabetic code as per ISO 4217. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="PreferredCurrency"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="preferredLanguage" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Preferred language."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="PreferredLanguage"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="displayName" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Display name of the entry. This is a name used in displaying an entry in a one line summary list. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="DisplayName"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="photoURL" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A location for the photograph of the person. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="PhotoURL"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="preferredMeasure" unique="false" 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 preferred measure."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="PreferredMeasure"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="preferredCommunication" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Preferred method of communication by phone. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="PreferredCommunication"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="preferredDelivery" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Preferred delivery method. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="PreferredDelivery"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="description" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Description of the person. "/> </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="gender" unique="false" 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 gender of the person. Valid values are as follows:&#xD;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;F = female &#xD;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;M = male &#xD;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;N = not provided &#xD;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;If not provided, N is used as the default. &#xD;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="Gender"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="birthDay" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//Date"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The birthday of the person."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="BirthDay"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="income" unique="false" 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 annual income for the person."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="Income"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="maritalStatus" unique="false" 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 marital status of the person."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="MaritalStatus"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="incomeCurrency" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Currency for the income of the person."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="IncomeCurrency"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="numberOfChildren" unique="false" 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 number of children that the person has. If not provided, the default is 0. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="NumberOfChildren"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="household" unique="false" 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="Number of people in the household. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="Household"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="companyName" unique="false" 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 company for which the person works. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="CompanyName"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="hobbies" 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 main interests and hobbies of the person."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="Hobbies"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="timezone" unique="false" 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 time zone in which the person resides. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="Timezone"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="userArea" eType="ecore:EClass com.ibm.commerce.foundation.datatypes.ecore#//UserDataType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="User data."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="UserArea"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="PersonType"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="PersonType"/> <details key="kind" value="elementOnly"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="personIdentifier" eType="ecore:EClass com.ibm.commerce.foundation.datatypes.ecore#//PersonIdentifierType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The person identifier."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="PersonIdentifier"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="parentIdentifier" eType="ecore:EClass com.ibm.commerce.foundation.datatypes.ecore#//OrganizationIdentifierType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The identifier for the parent."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="ParentIdentifier"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="name" eType="ecore:EClass com.ibm.commerce.foundation.datatypes.ecore#//PersonNameType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The person's name."/> </eAnnotations> <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="personalProfile" eType="#//PersonalProfileType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The personal profile."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="PersonalProfile"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="businessProfile" eType="#//BusinessProfileType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The business profile."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="BusinessProfile"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="authentication" eType="ecore:EClass com.ibm.commerce.foundation.datatypes.ecore#//AuthenticationType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The authentication information."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="Authentication"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="contactInfo" eType="ecore:EClass com.ibm.commerce.foundation.datatypes.ecore#//ContactInfoType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The primary contact information."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="ContactInfo"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="contactList" eType="ecore:EClass com.ibm.commerce.foundation.datatypes.ecore#//ContactListType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A list of the contact information."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="ContactList"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="contextAttribute" upperBound="-1" eType="ecore:EClass com.ibm.commerce.foundation.datatypes.ecore#//AttributeType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The context attribute."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="ContextAttribute"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="userArea" eType="ecore:EClass com.ibm.commerce.foundation.datatypes.ecore#//UserDataType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="User data."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="UserArea"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="SyncOrganizationDataAreaType"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="SyncOrganizationDataAreaType"/> <details key="kind" value="elementOnly"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="sync" lowerBound="1" eType="ecore:EClass com.ibm.commerce.oagis9.datatypes.ecore#//SyncType" containment="true" resolveProxies="false"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="Sync"/> <details key="namespace" value="http://www.openapplications.org/oagis/9"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="organization" upperBound="-1" eType="#//OrganizationType" containment="true" resolveProxies="false"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="Organization"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="SyncOrganizationType" eSuperTypes="com.ibm.commerce.oagis9.datatypes.ecore#//BusinessObjectDocumentType"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="SyncOrganizationType"/> <details key="kind" value="elementOnly"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="dataArea" lowerBound="1" eType="#//SyncOrganizationDataAreaType" containment="true" resolveProxies="false"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="DataArea"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="SyncPersonDataAreaType"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="SyncPersonDataAreaType"/> <details key="kind" value="elementOnly"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="sync" lowerBound="1" eType="ecore:EClass com.ibm.commerce.oagis9.datatypes.ecore#//SyncType" containment="true" resolveProxies="false"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="Sync"/> <details key="namespace" value="http://www.openapplications.org/oagis/9"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="person" upperBound="-1" eType="#//PersonType" containment="true" resolveProxies="false"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="Person"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="SyncPersonType" eSuperTypes="com.ibm.commerce.oagis9.datatypes.ecore#//BusinessObjectDocumentType"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="SyncPersonType"/> <details key="kind" value="elementOnly"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="dataArea" lowerBound="1" eType="#//SyncPersonDataAreaType" containment="true" resolveProxies="false"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="DataArea"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> </ecore:EPackage>
github:ecore:/data/MagMar94/ParmorelExperimentResults/Experiments/Experiment-distance-impact/original-distance/ReuseCloseDistance/100_com.ibm.commerce.member.datatypes.ecore
ecore
datatypes BusinessProfileType businessTitle organizationName organizationalUnitName employeeID alternateID employeeType officeAddress departmentNumber manager secretary requisitionerID userArea DocumentRoot mixed xMLNSPrefixMap xSISchemaLocation organization syncOrganization person syncPerson OrganizationType organizationIdentifier parentIdentifier organizationName organizationType businessCategory description contactInfo contactList contextAttribute userArea PersonalProfileType preferredCurrency preferredLanguage displayName photoURL preferredMeasure preferredCommunication preferredDelivery description gender birthDay income maritalStatus incomeCurrency numberOfChildren household companyName hobbies timezone userArea PersonType personIdentifier parentIdentifier name personalProfile businessProfile authentication contactInfo contactList contextAttribute userArea SyncOrganizationDataAreaType sync organization SyncOrganizationType dataArea SyncPersonDataAreaType sync person SyncPersonType dataArea
null
{"directed":true,"nodes":[{"nsPrefix":"Member","nsURI":"http://www.ibm.com/xmlns/prod/commerce/member","name":"datatypes","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BusinessProfileType","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":"OrganizationType","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PersonalProfileType","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PersonType","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SyncOrganizationDataAreaType","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SyncOrganizationType","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SyncPersonDataAreaType","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SyncPersonType","instanceClass":null,"abstract":false,"id":9,"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":"businessTitle","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":false,"name":"organizationName","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":false,"name":"organizationalUnitName","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":false,"name":"employeeID","changeable":true,"lowerBound":0,"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":"alternateID","changeable":true,"lowerBound":0,"iD":false,"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":false,"name":"employeeType","changeable":true,"lowerBound":0,"iD":false,"id":15,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"officeAddress","changeable":true,"resolveProxies":false,"lowerBound":0,"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":false,"name":"departmentNumber","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":false,"name":"manager","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":false,"name":"secretary","changeable":true,"lowerBound":0,"iD":false,"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":false,"name":"requisitionerID","changeable":true,"lowerBound":0,"iD":false,"id":20,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"userArea","changeable":true,"resolveProxies":false,"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"},{"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":"mixed","changeable":true,"lowerBound":0,"iD":false,"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":true,"unique":false,"name":"xMLNSPrefixMap","changeable":true,"resolveProxies":false,"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":true,"unique":false,"name":"xSISchemaLocation","changeable":true,"resolveProxies":false,"lowerBound":0,"id":36,"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":"organization","changeable":true,"resolveProxies":false,"lowerBound":0,"id":37,"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":"syncOrganization","changeable":true,"resolveProxies":false,"lowerBound":0,"id":38,"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":"person","changeable":true,"resolveProxies":false,"lowerBound":0,"id":39,"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":"syncPerson","changeable":true,"resolveProxies":false,"lowerBound":0,"id":40,"derived":true},{"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"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"organizationIdentifier","changeable":true,"resolveProxies":false,"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":"parentIdentifier","changeable":true,"resolveProxies":false,"lowerBound":0,"id":49,"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":"organizationName","changeable":true,"lowerBound":0,"iD":false,"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":false,"name":"organizationType","changeable":true,"lowerBound":0,"iD":false,"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":false,"name":"businessCategory","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":false,"name":"description","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":"contactInfo","changeable":true,"resolveProxies":false,"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":"contactList","changeable":true,"resolveProxies":false,"lowerBound":0,"id":55,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"contextAttribute","changeable":true,"resolveProxies":false,"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":"userArea","changeable":true,"resolveProxies":false,"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"},{"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":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"preferredCurrency","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":false,"name":"preferredLanguage","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":false,"name":"displayName","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":false,"name":"photoURL","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":false,"name":"preferredMeasure","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":false,"name":"preferredCommunication","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":false,"name":"preferredDelivery","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":false,"name":"description","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":false,"name":"gender","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":false,"name":"birthDay","changeable":true,"lowerBound":0,"iD":false,"id":77,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":false,"name":"income","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":false,"name":"maritalStatus","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":false,"name":"incomeCurrency","changeable":true,"lowerBound":0,"iD":false,"id":80,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":false,"name":"numberOfChildren","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":true,"transient":false,"unique":false,"name":"household","changeable":true,"lowerBound":0,"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":false,"name":"companyName","changeable":true,"lowerBound":0,"iD":false,"id":83,"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":"hobbies","changeable":true,"lowerBound":0,"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":false,"name":"timezone","changeable":true,"lowerBound":0,"iD":false,"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":"userArea","changeable":true,"resolveProxies":false,"lowerBound":0,"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"},{"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"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"personIdentifier","changeable":true,"resolveProxies":false,"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":"parentIdentifier","changeable":true,"resolveProxies":false,"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":"name","changeable":true,"resolveProxies":false,"lowerBound":0,"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":"personalProfile","changeable":true,"resolveProxies":false,"lowerBound":0,"id":109,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"businessProfile","changeable":true,"resolveProxies":false,"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":true,"unsettable":false,"transient":false,"unique":true,"name":"authentication","changeable":true,"resolveProxies":false,"lowerBound":0,"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":"contactInfo","changeable":true,"resolveProxies":false,"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":"contactList","changeable":true,"resolveProxies":false,"lowerBound":0,"id":113,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"contextAttribute","changeable":true,"resolveProxies":false,"lowerBound":0,"id":114,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"userArea","changeable":true,"resolveProxies":false,"lowerBound":0,"id":115,"derived":false},{"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"},{"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":"sync","changeable":true,"resolveProxies":false,"lowerBound":1,"id":126,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"organization","changeable":true,"resolveProxies":false,"lowerBound":0,"id":127,"derived":false},{"id":128,"eClass":"EGenericType"},{"id":129,"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":"dataArea","changeable":true,"resolveProxies":false,"lowerBound":1,"id":130,"derived":false},{"id":131,"eClass":"EGenericType"},{"id":132,"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":"sync","changeable":true,"resolveProxies":false,"lowerBound":1,"id":133,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"person","changeable":true,"resolveProxies":false,"lowerBound":0,"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":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"dataArea","changeable":true,"resolveProxies":false,"lowerBound":1,"id":137,"derived":false},{"id":138,"eClass":"EGenericType"},{"id":139,"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":1,"target":17},{"source":1,"target":18},{"source":1,"target":19},{"source":1,"target":20},{"source":1,"target":21},{"source":10,"target":22},{"source":10,"target":1},{"source":11,"target":23},{"source":11,"target":1},{"source":12,"target":24},{"source":12,"target":1},{"source":13,"target":25},{"source":13,"target":1},{"source":14,"target":26},{"source":14,"target":1},{"source":15,"target":27},{"source":15,"target":1},{"source":16,"target":28},{"source":16,"target":1},{"source":17,"target":29},{"source":17,"target":1},{"source":18,"target":30},{"source":18,"target":1},{"source":19,"target":31},{"source":19,"target":1},{"source":20,"target":32},{"source":20,"target":1},{"source":21,"target":33},{"source":21,"target":1},{"source":2,"target":0},{"source":2,"target":34},{"source":2,"target":35},{"source":2,"target":36},{"source":2,"target":37},{"source":2,"target":38},{"source":2,"target":39},{"source":2,"target":40},{"source":34,"target":41},{"source":34,"target":2},{"source":35,"target":42},{"source":35,"target":2},{"source":36,"target":43},{"source":36,"target":2},{"source":37,"target":3},{"source":37,"target":44},{"source":37,"target":2},{"source":44,"target":3},{"source":38,"target":7},{"source":38,"target":45},{"source":38,"target":2},{"source":45,"target":7},{"source":39,"target":5},{"source":39,"target":46},{"source":39,"target":2},{"source":46,"target":5},{"source":40,"target":9},{"source":40,"target":47},{"source":40,"target":2},{"source":47,"target":9},{"source":3,"target":0},{"source":3,"target":48},{"source":3,"target":49},{"source":3,"target":50},{"source":3,"target":51},{"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":48,"target":58},{"source":48,"target":3},{"source":49,"target":59},{"source":49,"target":3},{"source":50,"target":60},{"source":50,"target":3},{"source":51,"target":61},{"source":51,"target":3},{"source":52,"target":62},{"source":52,"target":3},{"source":53,"target":63},{"source":53,"target":3},{"source":54,"target":64},{"source":54,"target":3},{"source":55,"target":65},{"source":55,"target":3},{"source":56,"target":66},{"source":56,"target":3},{"source":57,"target":67},{"source":57,"target":3},{"source":4,"target":0},{"source":4,"target":68},{"source":4,"target":69},{"source":4,"target":70},{"source":4,"target":71},{"source":4,"target":72},{"source":4,"target":73},{"source":4,"target":74},{"source":4,"target":75},{"source":4,"target":76},{"source":4,"target":77},{"source":4,"target":78},{"source":4,"target":79},{"source":4,"target":80},{"source":4,"target":81},{"source":4,"target":82},{"source":4,"target":83},{"source":4,"target":84},{"source":4,"target":85},{"source":4,"target":86},{"source":68,"target":87},{"source":68,"target":4},{"source":69,"target":88},{"source":69,"target":4},{"source":70,"target":89},{"source":70,"target":4},{"source":71,"target":90},{"source":71,"target":4},{"source":72,"target":91},{"source":72,"target":4},{"source":73,"target":92},{"source":73,"target":4},{"source":74,"target":93},{"source":74,"target":4},{"source":75,"target":94},{"source":75,"target":4},{"source":76,"target":95},{"source":76,"target":4},{"source":77,"target":96},{"source":77,"target":4},{"source":78,"target":97},{"source":78,"target":4},{"source":79,"target":98},{"source":79,"target":4},{"source":80,"target":99},{"source":80,"target":4},{"source":81,"target":100},{"source":81,"target":4},{"source":82,"target":101},{"source":82,"target":4},{"source":83,"target":102},{"source":83,"target":4},{"source":84,"target":103},{"source":84,"target":4},{"source":85,"target":104},{"source":85,"target":4},{"source":86,"target":105},{"source":86,"target":4},{"source":5,"target":0},{"source":5,"target":106},{"source":5,"target":107},{"source":5,"target":108},{"source":5,"target":109},{"source":5,"target":110},{"source":5,"target":111},{"source":5,"target":112},{"source":5,"target":113},{"source":5,"target":114},{"source":5,"target":115},{"source":106,"target":116},{"source":106,"target":5},{"source":107,"target":117},{"source":107,"target":5},{"source":108,"target":118},{"source":108,"target":5},{"source":109,"target":4},{"source":109,"target":119},{"source":109,"target":5},{"source":119,"target":4},{"source":110,"target":1},{"source":110,"target":120},{"source":110,"target":5},{"source":120,"target":1},{"source":111,"target":121},{"source":111,"target":5},{"source":112,"target":122},{"source":112,"target":5},{"source":113,"target":123},{"source":113,"target":5},{"source":114,"target":124},{"source":114,"target":5},{"source":115,"target":125},{"source":115,"target":5},{"source":6,"target":0},{"source":6,"target":126},{"source":6,"target":127},{"source":126,"target":128},{"source":126,"target":6},{"source":127,"target":3},{"source":127,"target":129},{"source":127,"target":6},{"source":129,"target":3},{"source":7,"target":0},{"source":7,"target":130},{"source":7,"target":131},{"source":130,"target":6},{"source":130,"target":132},{"source":130,"target":7},{"source":132,"target":6},{"source":8,"target":0},{"source":8,"target":133},{"source":8,"target":134},{"source":133,"target":135},{"source":133,"target":8},{"source":134,"target":5},{"source":134,"target":136},{"source":134,"target":8},{"source":136,"target":5},{"source":9,"target":0},{"source":9,"target":137},{"source":9,"target":138},{"source":137,"target":8},{"source":137,"target":139},{"source":137,"target":9},{"source":139,"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="IndexAttribute" nsURI="http://mondo.dsl.org/mmPatterns/indexattribute" nsPrefix="index"> <eClassifiers xsi:type="ecore:EClass" name="IndexClass"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="indexAttribute" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EJavaObject"/> </eClassifiers> </ecore:EPackage>
github:ecore:/data/antoniogarmendia/gallery-graphical-dsls-emfStencil/mindstorms-robot-editor/plugins/org.miso.mindstorms.sample/patterns/IndexAttribute.ecore
ecore
IndexAttribute IndexClass indexAttribute
null
{"directed":true,"nodes":[{"nsPrefix":"index","nsURI":"http://mondo.dsl.org/mmPatterns/indexattribute","name":"IndexAttribute","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IndexClass","instanceClass":null,"abstract":false,"id":1,"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":"indexAttribute","changeable":true,"lowerBound":0,"iD":false,"id":2,"derived":false},{"id":3,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":1,"target":0},{"source":1,"target":2},{"source":2,"target":3},{"source":2,"target":1}],"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="org.eclipse.scava.metricprovider.indexing.communicationchannels.model"> <eClassifiers xsi:type="ecore:EClass" name="CommunicationChannelsIndexingMetric"> <eAnnotations source="db"> <details key="qualifiedCollectionNames" value="true"/> </eAnnotations> <eAnnotations source="customize"/> </eClassifiers> </ecore:EPackage>
github:ecore:/data/crossminer/scava/metric-platform/metric-providers/org.eclipse.scava.metricprovider.indexing.communicationchannels/src/org/eclipse/scava/metricprovider/indexing/communicationchannels/model/CommunicationChannelsIndexerTransMetric.ecore
ecore
org.eclipse.scava.metricprovider.indexing.communicationchannels.model CommunicationChannelsIndexingMetric
null
{"directed":true,"nodes":[{"nsPrefix":null,"nsURI":null,"name":"org.eclipse.scava.metricprovider.indexing.communicationchannels.model","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CommunicationChannelsIndexingMetric","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"}],"links":[{"source":0,"target":1},{"source":1,"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="swt" nsURI="org.eclipse.gmt.emfacade.swt" nsPrefix="swt"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="basePackage" value="org.eclipse.gmt.emfacade"/> </eAnnotations> <eClassifiers xsi:type="ecore:EClass" name="Widget" abstract="true"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="style" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt" changeable="false" volatile="true" transient="true" derived="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Layout" abstract="true"> <eTypeParameters name="T"> <eBounds eClassifier="#//LayoutData"/> </eTypeParameters> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="LayoutData" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="Control" abstract="true" eSuperTypes="#//Widget"> <eStructuralFeatures xsi:type="ecore:EReference" name="parent"> <eGenericType eClassifier="#//AbstractComposite"> <eTypeArguments eClassifier="#//Control"/> </eGenericType> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="borderStyle" unique="false" eType="#//BorderStyle"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="textOrientationStyle" unique="false" eType="#//TextOrientationStyle"/> <eStructuralFeatures xsi:type="ecore:EReference" name="layoutData" eType="#//LayoutData" containment="true" resolveProxies="false"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="enabled" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EBoolean" defaultValueLiteral="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="visible" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EBoolean" defaultValueLiteral="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="touchEnabled" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="toolTipText" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="background" eType="#//Color" containment="true" resolveProxies="false"/> <eStructuralFeatures xsi:type="ecore:EReference" name="font" eType="#//Font" containment="true" resolveProxies="false"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="size" unique="false" eType="#//Point"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="AbstractComposite" abstract="true" eSuperTypes="#//Control"> <eTypeParameters name="T"> <eBounds eClassifier="#//Control"/> </eTypeParameters> <eStructuralFeatures xsi:type="ecore:EReference" name="controls" upperBound="-1" containment="true" resolveProxies="false"> <eGenericType eTypeParameter="#//AbstractComposite/T"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="layout" containment="true" resolveProxies="false"> <eGenericType eClassifier="#//Layout"> <eTypeArguments eClassifier="#//LayoutData"/> </eGenericType> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Composite"> <eGenericSuperTypes eClassifier="#//AbstractComposite"> <eTypeArguments eClassifier="#//Control"/> </eGenericSuperTypes> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Group" eSuperTypes="#//Composite"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="text" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Canvas" eSuperTypes="#//Composite"/> <eClassifiers xsi:type="ecore:EClass" name="Decorations" abstract="true" eSuperTypes="#//Canvas"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="maximized" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="minimized" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EReference" name="menuBar" eType="#//MenuBar" containment="true" resolveProxies="false" eOpposite="#//MenuBar/parent"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Shell" eSuperTypes="#//Decorations"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="modalStyle" unique="false" eType="#//ModalStyle"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="trimStyle" unique="false" eType="#//TrimStyle"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="fullScreen" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="alpha" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt" defaultValueLiteral="255"/> <eStructuralFeatures xsi:type="ecore:EReference" name="defaultButton" eType="#//Button"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="AbstractMenu" abstract="true" eSuperTypes="#//Widget"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="textOrientationStyle" unique="false" eType="#//TextOrientationStyle"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="enabled" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EBoolean" defaultValueLiteral="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="visible" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EBoolean" defaultValueLiteral="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="items" upperBound="-1" eType="#//MenuItem" containment="true" resolveProxies="false"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Menu" eSuperTypes="#//AbstractMenu"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="menuStyle" unique="false" eType="#//MenuStyle"/> <eStructuralFeatures xsi:type="ecore:EReference" name="parentItem" eType="#//MenuItem" eOpposite="#//MenuItem/menu"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="MenuBar" eSuperTypes="#//AbstractMenu"> <eStructuralFeatures xsi:type="ecore:EReference" name="parent" eType="#//Decorations" eOpposite="#//Decorations/menuBar"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Labeled" abstract="true"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="text" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="image" unique="false" eType="#//ImageRef"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Item" abstract="true" eSuperTypes="#//Widget #//Labeled"/> <eClassifiers xsi:type="ecore:EClass" name="MenuItem" eSuperTypes="#//Item"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="menuItemStyle" unique="false" eType="#//MenuItemStyle"/> <eStructuralFeatures xsi:type="ecore:EReference" name="menu" eType="#//Menu" containment="true" resolveProxies="false" eOpposite="#//Menu/parentItem"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="ID" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="accelerator" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="enabled" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="selection" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EBoolean"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ToolBar" eSuperTypes="#//Control"> <eStructuralFeatures xsi:type="ecore:EReference" name="items" upperBound="-1" eType="#//ToolItem" containment="true" resolveProxies="false" eOpposite="#//ToolItem/parent"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="orientationStyle" unique="false" eType="#//OrientationStyle"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ToolItem" eSuperTypes="#//Item"> <eStructuralFeatures xsi:type="ecore:EReference" name="parent" eType="#//ToolBar" eOpposite="#//ToolBar/items"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="enabled" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="hotImage" unique="false" eType="#//ImageRef"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="toolTipText" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="selection" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EBoolean"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CoolBar"> <eStructuralFeatures xsi:type="ecore:EReference" name="items" upperBound="-1" eType="#//CoolItem" containment="true" resolveProxies="false" eOpposite="#//CoolItem/parent"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="orientationStyle" unique="false" eType="#//OrientationStyle"/> <eGenericSuperTypes eClassifier="#//AbstractComposite"> <eTypeArguments eClassifier="#//Control"/> </eGenericSuperTypes> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CoolItem" eSuperTypes="#//Item"> <eStructuralFeatures xsi:type="ecore:EReference" name="parent" eType="#//CoolBar" eOpposite="#//CoolBar/items"/> <eStructuralFeatures xsi:type="ecore:EReference" name="control" eType="#//Control"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="minimumSize" unique="false" eType="#//Point"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="preferredSize" unique="false" eType="#//Point"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="size" unique="false" eType="#//Point"/> </eClassifiers> <eClassifiers xsi:type="ecore:EDataType" name="ImageRef" instanceClassName="org.eclipse.emf.common.util.URI"/> <eClassifiers xsi:type="ecore:EClass" name="Label" eSuperTypes="#//Control #//Labeled"/> <eClassifiers xsi:type="ecore:EClass" name="Separator" eSuperTypes="#//Control"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="orientationStyle" unique="false" eType="#//OrientationStyle"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Button" eSuperTypes="#//Control #//Labeled"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="buttonStyle" unique="false" eType="#//ButtonStyle"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="arrowStyle" unique="false" eType="#//ArrowStyle"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="selection" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EBoolean"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Text" eSuperTypes="#//Control"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="multiplicityStyle" unique="false" eType="#//MultiplicityStyle"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="text" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="selection" unique="false" eType="#//Point"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="editable" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="echoChar" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EChar"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="tabs" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="textLimit" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="topIndex" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="message" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="PasswordText" eSuperTypes="#//Text"/> <eClassifiers xsi:type="ecore:EClass" name="SearchText" eSuperTypes="#//Text"/> <eClassifiers xsi:type="ecore:EClass" name="IntervalControl" abstract="true" eSuperTypes="#//Control"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="minimum" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="maximum" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="selection" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="IntervalSelector" abstract="true" eSuperTypes="#//IntervalControl"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="orientationStyle" unique="false" eType="#//OrientationStyle"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="increment" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="pageIncrement" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Slider" eSuperTypes="#//IntervalSelector"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="thumb" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Spinner" eSuperTypes="#//IntervalSelector"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="digits" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="textLimit" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ProgressBar" eSuperTypes="#//IntervalControl"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="state" unique="false" eType="#//ProgressState"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="ProgressState"> <eLiterals name="NORMAL"/> <eLiterals name="PAUSED" value="4"/> <eLiterals name="ERROR" value="1"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="DateTime" eSuperTypes="#//Control"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="seconds" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="minutes" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="hours" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="day" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="month" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="year" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Browser" eSuperTypes="#//Control"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="javascriptEnabled" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="text" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="url" unique="false" eType="#//URI"/> </eClassifiers> <eClassifiers xsi:type="ecore:EDataType" name="URI" instanceClassName="org.eclipse.emf.common.util.URI"/> <eClassifiers xsi:type="ecore:EClass" name="AbstractList" abstract="true" eSuperTypes="#//Control"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="items" unique="false" upperBound="-1" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="selectionIndex" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="List" eSuperTypes="#//AbstractList"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="multiplicityStyle" unique="false" eType="#//MultiplicityStyle"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="selectionIndices" unique="false" upperBound="-1" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="selection" unique="false" upperBound="-1" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Combo" eSuperTypes="#//AbstractList"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="text" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="textLimit" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="TabFolder" eSuperTypes="#//Control"> <eStructuralFeatures xsi:type="ecore:EReference" name="items" upperBound="-1" eType="#//TabItem" containment="true" resolveProxies="false"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="TabItem" eSuperTypes="#//Item"> <eStructuralFeatures xsi:type="ecore:EReference" name="control" eType="#//Control" containment="true" resolveProxies="false"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="toolTipText" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Color" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="SystemColor" eSuperTypes="#//Color"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="color" unique="false" eType="#//SystemColors"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="SystemColors"> <eLiterals name="RED" value="3"/> <eLiterals name="GREEN" value="5"/> <eLiterals name="BLUE" value="9"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="RGBColor" eSuperTypes="#//Color"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="red" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt" defaultValueLiteral="255"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="green" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt" defaultValueLiteral="255"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="blue" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt" defaultValueLiteral="255"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Font"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="style" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="height" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt"/> </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="FillLayout"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="orientationStyle" unique="false" eType="#//OrientationStyle"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="marginWidth" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt" defaultValueLiteral="0"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="marginHeight" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt" defaultValueLiteral="0"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="spacing" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt" defaultValueLiteral="0"/> <eGenericSuperTypes eClassifier="#//Layout"> <eTypeArguments eClassifier="#//LayoutData"/> </eGenericSuperTypes> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="RowLayout"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="orientationStyle" unique="false" eType="#//OrientationStyle"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="marginWidth" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt" defaultValueLiteral="0"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="marginHeight" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt" defaultValueLiteral="0"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="spacing" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt" defaultValueLiteral="3"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="wrap" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EBoolean" defaultValueLiteral="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="pack" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EBoolean" defaultValueLiteral="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="fill" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EBoolean" defaultValueLiteral="false"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="center" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EBoolean" defaultValueLiteral="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="justify" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EBoolean" defaultValueLiteral="false"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="marginLeft" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt" defaultValueLiteral="3"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="marginTop" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt" defaultValueLiteral="3"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="marginRight" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt" defaultValueLiteral="3"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="marginBottom" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt" defaultValueLiteral="3"/> <eGenericSuperTypes eClassifier="#//Layout"> <eTypeArguments eClassifier="#//RowData"/> </eGenericSuperTypes> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="RowData" eSuperTypes="#//LayoutData"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="width" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt" defaultValueLiteral="-1"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="height" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt" defaultValueLiteral="-1"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="exclude" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EBoolean" defaultValueLiteral="false"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="GridLayout"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="numColumns" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt" defaultValueLiteral="1"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="makeColumnsEqualWidth" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EBoolean" defaultValueLiteral="false"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="marginWidth" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt" defaultValueLiteral="5"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="marginHeight" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt" defaultValueLiteral="5"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="marginLeft" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt" defaultValueLiteral="0"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="marginTop" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt" defaultValueLiteral="0"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="marginRight" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt" defaultValueLiteral="0"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="marginBottom" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt" defaultValueLiteral="0"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="horizontalSpacing" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt" defaultValueLiteral="5"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="verticalSpacing" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt" defaultValueLiteral="5"/> <eGenericSuperTypes eClassifier="#//Layout"> <eTypeArguments eClassifier="#//GridData"/> </eGenericSuperTypes> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="GridData" eSuperTypes="#//LayoutData"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="verticalAlignment" unique="false" eType="#//VerticalAlignmentStyle"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="horizontalAlignment" unique="false" eType="#//HorizontalAlignmentStyle"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="widthHint" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt" defaultValueLiteral="-1"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="heightHint" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt" defaultValueLiteral="-1"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="horizontalIndent" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt" defaultValueLiteral="0"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="verticalIndent" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt" defaultValueLiteral="0"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="horizontalSpan" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt" defaultValueLiteral="1"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="verticalSpan" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt" defaultValueLiteral="1"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="grabExcessHorizontalSpace" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EBoolean" defaultValueLiteral="false"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="grabExcessVerticalSpace" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EBoolean" defaultValueLiteral="false"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="minimumWidth" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt" defaultValueLiteral="0"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="minimumHeight" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt" defaultValueLiteral="0"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="exclude" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EBoolean" defaultValueLiteral="false"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="FormLayout"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="marginWidth" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt" defaultValueLiteral="0"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="marginHeight" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt" defaultValueLiteral="0"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="spacing" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt" defaultValueLiteral="3"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="marginLeft" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt" defaultValueLiteral="3"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="marginTop" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt" defaultValueLiteral="3"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="marginRight" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt" defaultValueLiteral="3"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="marginBottom" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt" defaultValueLiteral="3"/> <eGenericSuperTypes eClassifier="#//Layout"> <eTypeArguments eClassifier="#//FormData"/> </eGenericSuperTypes> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="FormData" eSuperTypes="#//LayoutData"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="width" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt" defaultValueLiteral="0"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="height" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt" defaultValueLiteral="0"/> <eStructuralFeatures xsi:type="ecore:EReference" name="left" eType="#//FormAttachment" containment="true" resolveProxies="false"/> <eStructuralFeatures xsi:type="ecore:EReference" name="top" eType="#//FormAttachment" containment="true" resolveProxies="false"/> <eStructuralFeatures xsi:type="ecore:EReference" name="right" eType="#//FormAttachment" containment="true" resolveProxies="false"/> <eStructuralFeatures xsi:type="ecore:EReference" name="bottom" eType="#//FormAttachment" containment="true" resolveProxies="false"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="FormAttachment"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="alignment" unique="false" eType="#//FormAttachmentAlignment"/> <eStructuralFeatures xsi:type="ecore:EReference" name="control" eType="#//Control"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="denominator" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt" defaultValueLiteral="100"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="numerator" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="offset" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="FormAttachmentAlignment"> <eLiterals name="DEFAULT" value="-1"/> <eLiterals name="TOP" value="128"/> <eLiterals name="BOTTOM" value="1024"/> <eLiterals name="LEFT" value="16384"/> <eLiterals name="RIGHT" value="131072"/> <eLiterals name="CENTER" value="16777216"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="BorderStyle"> <eLiterals name="NONE"/> <eLiterals name="BORDER" value="2048"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="ButtonStyle"> <eLiterals name="TOGGLE" value="2"/> <eLiterals name="PUSH" value="8"/> <eLiterals name="RADIO" value="16"/> <eLiterals name="CHECK" value="32"/> <eLiterals name="ARROW" value="4"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="ArrowStyle"> <eLiterals name="NONE"/> <eLiterals name="UP" value="128"/> <eLiterals name="DOWN" value="1024"/> <eLiterals name="LEFT" value="16384"/> <eLiterals name="RIGHT" value="131072"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="TextOrientationStyle"> <eLiterals name="LEFT_TO_RIGHT" value="33554432"/> <eLiterals name="RIGHT_TO_LEFT" value="67108864"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="OrientationStyle"> <eLiterals name="HORIZONTAL" value="256"/> <eLiterals name="VERTICAL" value="512"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="HorizontalAlignmentStyle"> <eLiterals name="LEFT" value="16384"/> <eLiterals name="CENTER" value="16777216"/> <eLiterals name="RIGHT" value="131072"/> <eLiterals name="FILL" value="4"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="VerticalAlignmentStyle"> <eLiterals name="CENTER" value="16777216"/> <eLiterals name="TOP" value="128"/> <eLiterals name="BOTTOM" value="1024"/> <eLiterals name="FILL" value="4"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="MultiplicityStyle"> <eLiterals name="SINGLE" value="4"/> <eLiterals name="MULTI" value="2"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="ComboStyle"> <eLiterals name="DROP_DOWN" value="4"/> <eLiterals name="READ_ONLY" value="8"/> <eLiterals name="SIMPLE" value="64"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="MenuStyle"> <eLiterals name="POP_UP" value="8"/> <eLiterals name="DROP_DOWN" value="4"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="MenuItemStyle"> <eLiterals name="PUSH" value="8"/> <eLiterals name="CASCADE" value="64"/> <eLiterals name="CHECK" value="32"/> <eLiterals name="RADIO" value="16"/> <eLiterals name="SEPARATOR" value="2"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="ModalStyle"> <eLiterals name="SYSTEM_MODAL" value="131072"/> <eLiterals name="APPLICATION_MODAL" value="65536"/> <eLiterals name="PRIMARY_MODAL" value="32768"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="TrimStyle"> <eLiterals name="NOT_TRIM" value="8"/> <eLiterals name="SHELL_TRIM" value="1264"/> <eLiterals name="DIALOG_TRIM" value="2144"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="LineAttributes"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="width" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EFloat"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="style" unique="false" eType="#//LineStyle"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="cap" unique="false" eType="#//CapStyle"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="join" unique="false" eType="#//JoinStyle"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="dash" unique="false" upperBound="-1" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EFloat"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="dashOffset" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EFloat"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="miterLimit" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EFloat"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="LineStyle"> <eLiterals name="CUSTOM" value="6"/> <eLiterals name="DASH" value="2"/> <eLiterals name="DASHDOT" value="4"/> <eLiterals name="DASHDOTDOT" value="5"/> <eLiterals name="DOT" value="3"/> <eLiterals name="SOLID" value="1"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="CapStyle"> <eLiterals name="FLAT" value="1"/> <eLiterals name="ROUND" value="2"/> <eLiterals name="SQUARE" value="3"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="JoinStyle"> <eLiterals name="BEVEL" value="3"/> <eLiterals name="MITER" value="1"/> <eLiterals name="ROUND" value="2"/> </eClassifiers> <eClassifiers xsi:type="ecore:EDataType" name="Point" instanceClassName="org.eclipse.swt.graphics.Point"/> <eClassifiers xsi:type="ecore:EClass" name="TreeColumn" eSuperTypes="#//Item"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="toolTipText" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="displayText" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Tree" eSuperTypes="#//Control"> <eStructuralFeatures xsi:type="ecore:EReference" name="columns" upperBound="-1" eType="#//TreeColumn" containment="true" resolveProxies="false"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="headerVisible" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="linesVisible" unique="false" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EReference" name="sortColumn" eType="#//TreeColumn"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="sortDirection" unique="false" eType="#//SortDirection"/> <eStructuralFeatures xsi:type="ecore:EReference" name="viewer" eType="#//TreeViewer" containment="true" resolveProxies="false"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="SortDirection"> <eLiterals name="NONE"/> <eLiterals name="UP" value="128"/> <eLiterals name="DOWN" value="1024"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Viewer" abstract="true"> <eTypeParameters name="T"> <eBounds eClassifier="#//Control"/> </eTypeParameters> <eStructuralFeatures xsi:type="ecore:EReference" name="control"> <eGenericType eTypeParameter="#//Viewer/T"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="input" unique="false" eType="#//ViewerInput" transient="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EDataType" name="ViewerInput" instanceClassName="java.lang.Object"/> <eClassifiers xsi:type="ecore:EClass" name="TreeViewer"> <eGenericSuperTypes eClassifier="#//Viewer"> <eTypeArguments eClassifier="#//Tree"/> </eGenericSuperTypes> </eClassifiers> </ecore:EPackage>
github:ecore:/data/hallvard/emfacade/org.eclipse.gmt.emfacade.tests/src/org/eclipse/gmt/emfacade/swt/swt.ecore
ecore
swt Widget style Layout T LayoutData Control parent borderStyle textOrientationStyle layoutData enabled true visible true touchEnabled toolTipText background font size AbstractComposite T controls layout Composite Group text Canvas Decorations maximized minimized menuBar Shell modalStyle trimStyle fullScreen alpha 255 defaultButton AbstractMenu textOrientationStyle enabled true visible true items Menu menuStyle parentItem MenuBar parent Labeled text image Item MenuItem menuItemStyle menu ID accelerator enabled selection ToolBar items orientationStyle ToolItem parent enabled hotImage toolTipText selection CoolBar items orientationStyle CoolItem parent control minimumSize preferredSize size ImageRef org.eclipse.emf.common.util.URI org.eclipse.emf.common.util.URI Label Separator orientationStyle Button buttonStyle arrowStyle selection Text multiplicityStyle text selection editable echoChar tabs textLimit topIndex message PasswordText SearchText IntervalControl minimum maximum selection IntervalSelector orientationStyle increment pageIncrement Slider thumb Spinner digits textLimit ProgressBar state ProgressState NORMAL NORMAL PAUSED PAUSED ERROR ERROR DateTime seconds minutes hours day month year Browser javascriptEnabled text url URI org.eclipse.emf.common.util.URI org.eclipse.emf.common.util.URI AbstractList items selectionIndex List multiplicityStyle selectionIndices selection Combo text textLimit TabFolder items TabItem control toolTipText Color SystemColor color SystemColors RED RED GREEN GREEN BLUE BLUE RGBColor red 255 green 255 blue 255 Font name style height FontStyle NORMAL NORMAL BOLD BOLD ITALIC ITALIC FillLayout orientationStyle marginWidth 0 marginHeight 0 spacing 0 RowLayout orientationStyle marginWidth 0 marginHeight 0 spacing 3 wrap true pack true fill false center true justify false marginLeft 3 marginTop 3 marginRight 3 marginBottom 3 RowData width -1 height -1 exclude false GridLayout numColumns 1 makeColumnsEqualWidth false marginWidth 5 marginHeight 5 marginLeft 0 marginTop 0 marginRight 0 marginBottom 0 horizontalSpacing 5 verticalSpacing 5 GridData verticalAlignment horizontalAlignment widthHint -1 heightHint -1 horizontalIndent 0 verticalIndent 0 horizontalSpan 1 verticalSpan 1 grabExcessHorizontalSpace false grabExcessVerticalSpace false minimumWidth 0 minimumHeight 0 exclude false FormLayout marginWidth 0 marginHeight 0 spacing 3 marginLeft 3 marginTop 3 marginRight 3 marginBottom 3 FormData width 0 height 0 left top right bottom FormAttachment alignment control denominator 100 numerator offset FormAttachmentAlignment DEFAULT DEFAULT TOP TOP BOTTOM BOTTOM LEFT LEFT RIGHT RIGHT CENTER CENTER BorderStyle NONE NONE BORDER BORDER ButtonStyle TOGGLE TOGGLE PUSH PUSH RADIO RADIO CHECK CHECK ARROW ARROW ArrowStyle NONE NONE UP UP DOWN DOWN LEFT LEFT RIGHT RIGHT TextOrientationStyle LEFT_TO_RIGHT LEFT_TO_RIGHT RIGHT_TO_LEFT RIGHT_TO_LEFT OrientationStyle HORIZONTAL HORIZONTAL VERTICAL VERTICAL HorizontalAlignmentStyle LEFT LEFT CENTER CENTER RIGHT RIGHT FILL FILL VerticalAlignmentStyle CENTER CENTER TOP TOP BOTTOM BOTTOM FILL FILL MultiplicityStyle SINGLE SINGLE MULTI MULTI ComboStyle DROP_DOWN DROP_DOWN READ_ONLY READ_ONLY SIMPLE SIMPLE MenuStyle POP_UP POP_UP DROP_DOWN DROP_DOWN MenuItemStyle PUSH PUSH CASCADE CASCADE CHECK CHECK RADIO RADIO SEPARATOR SEPARATOR ModalStyle SYSTEM_MODAL SYSTEM_MODAL APPLICATION_MODAL APPLICATION_MODAL PRIMARY_MODAL PRIMARY_MODAL TrimStyle NOT_TRIM NOT_TRIM SHELL_TRIM SHELL_TRIM DIALOG_TRIM DIALOG_TRIM LineAttributes width style cap join dash dashOffset miterLimit LineStyle CUSTOM CUSTOM DASH DASH DASHDOT DASHDOT DASHDOTDOT DASHDOTDOT DOT DOT SOLID SOLID CapStyle FLAT FLAT ROUND ROUND SQUARE SQUARE JoinStyle BEVEL BEVEL MITER MITER ROUND ROUND Point org.eclipse.swt.graphics.Point org.eclipse.swt.graphics.Point TreeColumn toolTipText displayText Tree columns headerVisible linesVisible sortColumn sortDirection viewer SortDirection NONE NONE UP UP DOWN DOWN Viewer T control input ViewerInput java.lang.Object java.lang.Object TreeViewer
null
{"directed":true,"nodes":[{"nsPrefix":"swt","nsURI":"org.eclipse.gmt.emfacade.swt","name":"swt","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Widget","instanceClass":null,"abstract":true,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Layout","instanceClass":null,"abstract":true,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LayoutData","instanceClass":null,"abstract":true,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Control","instanceClass":null,"abstract":true,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AbstractComposite","instanceClass":null,"abstract":true,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Composite","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Group","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Canvas","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Decorations","instanceClass":null,"abstract":true,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Shell","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AbstractMenu","instanceClass":null,"abstract":true,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Menu","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MenuBar","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Labeled","instanceClass":null,"abstract":true,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Item","instanceClass":null,"abstract":true,"id":15,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MenuItem","instanceClass":null,"abstract":false,"id":16,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ToolBar","instanceClass":null,"abstract":false,"id":17,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ToolItem","instanceClass":null,"abstract":false,"id":18,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CoolBar","instanceClass":null,"abstract":false,"id":19,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CoolItem","instanceClass":null,"abstract":false,"id":20,"interface":false,"eClass":"EClass"},{"instanceTypeName":"org.eclipse.emf.common.util.URI","defaultValue":null,"instanceClassName":"org.eclipse.emf.common.util.URI","name":"ImageRef","instanceClass":"org.eclipse.emf.common.util.URI","id":21,"serializable":true,"eClass":"EDataType"},{"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":"Separator","instanceClass":null,"abstract":false,"id":23,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Button","instanceClass":null,"abstract":false,"id":24,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Text","instanceClass":null,"abstract":false,"id":25,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PasswordText","instanceClass":null,"abstract":false,"id":26,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SearchText","instanceClass":null,"abstract":false,"id":27,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IntervalControl","instanceClass":null,"abstract":true,"id":28,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IntervalSelector","instanceClass":null,"abstract":true,"id":29,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Slider","instanceClass":null,"abstract":false,"id":30,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Spinner","instanceClass":null,"abstract":false,"id":31,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ProgressBar","instanceClass":null,"abstract":false,"id":32,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"ProgressState","instanceClass":null,"id":33,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DateTime","instanceClass":null,"abstract":false,"id":34,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Browser","instanceClass":null,"abstract":false,"id":35,"interface":false,"eClass":"EClass"},{"instanceTypeName":"org.eclipse.emf.common.util.URI","defaultValue":null,"instanceClassName":"org.eclipse.emf.common.util.URI","name":"URI","instanceClass":"org.eclipse.emf.common.util.URI","id":36,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AbstractList","instanceClass":null,"abstract":true,"id":37,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"List","instanceClass":null,"abstract":false,"id":38,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Combo","instanceClass":null,"abstract":false,"id":39,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TabFolder","instanceClass":null,"abstract":false,"id":40,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TabItem","instanceClass":null,"abstract":false,"id":41,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Color","instanceClass":null,"abstract":true,"id":42,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SystemColor","instanceClass":null,"abstract":false,"id":43,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"SystemColors","instanceClass":null,"id":44,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RGBColor","instanceClass":null,"abstract":false,"id":45,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Font","instanceClass":null,"abstract":false,"id":46,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"FontStyle","instanceClass":null,"id":47,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FillLayout","instanceClass":null,"abstract":false,"id":48,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RowLayout","instanceClass":null,"abstract":false,"id":49,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RowData","instanceClass":null,"abstract":false,"id":50,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"GridLayout","instanceClass":null,"abstract":false,"id":51,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"GridData","instanceClass":null,"abstract":false,"id":52,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FormLayout","instanceClass":null,"abstract":false,"id":53,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FormData","instanceClass":null,"abstract":false,"id":54,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FormAttachment","instanceClass":null,"abstract":false,"id":55,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"FormAttachmentAlignment","instanceClass":null,"id":56,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"BorderStyle","instanceClass":null,"id":57,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"ButtonStyle","instanceClass":null,"id":58,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"ArrowStyle","instanceClass":null,"id":59,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"TextOrientationStyle","instanceClass":null,"id":60,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"OrientationStyle","instanceClass":null,"id":61,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"HorizontalAlignmentStyle","instanceClass":null,"id":62,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"VerticalAlignmentStyle","instanceClass":null,"id":63,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"MultiplicityStyle","instanceClass":null,"id":64,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"ComboStyle","instanceClass":null,"id":65,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"MenuStyle","instanceClass":null,"id":66,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"MenuItemStyle","instanceClass":null,"id":67,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"ModalStyle","instanceClass":null,"id":68,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"TrimStyle","instanceClass":null,"id":69,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LineAttributes","instanceClass":null,"abstract":false,"id":70,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"LineStyle","instanceClass":null,"id":71,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"CapStyle","instanceClass":null,"id":72,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"JoinStyle","instanceClass":null,"id":73,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":"org.eclipse.swt.graphics.Point","defaultValue":null,"instanceClassName":"org.eclipse.swt.graphics.Point","name":"Point","instanceClass":null,"id":74,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TreeColumn","instanceClass":null,"abstract":false,"id":75,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Tree","instanceClass":null,"abstract":false,"id":76,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"SortDirection","instanceClass":null,"id":77,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Viewer","instanceClass":null,"abstract":true,"id":78,"interface":false,"eClass":"EClass"},{"instanceTypeName":"java.lang.Object","defaultValue":null,"instanceClassName":"java.lang.Object","name":"ViewerInput","instanceClass":"java.lang.Object","id":79,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TreeViewer","instanceClass":null,"abstract":false,"id":80,"interface":false,"eClass":"EClass"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":true,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":true,"unique":false,"name":"style","changeable":false,"lowerBound":0,"iD":false,"id":81,"derived":true},{"id":82,"eClass":"EGenericType"},{"name":"T","id":83,"eClass":"ETypeParameter"},{"id":84,"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":85,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"borderStyle","changeable":true,"lowerBound":0,"iD":false,"id":86,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"textOrientationStyle","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":"layoutData","changeable":true,"resolveProxies":false,"lowerBound":0,"id":88,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"true","unsettable":false,"transient":false,"unique":false,"name":"enabled","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":"true","unsettable":false,"transient":false,"unique":false,"name":"visible","changeable":true,"lowerBound":0,"iD":false,"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":false,"name":"touchEnabled","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":false,"name":"toolTipText","changeable":true,"lowerBound":0,"iD":false,"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":"background","changeable":true,"resolveProxies":false,"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":"font","changeable":true,"resolveProxies":false,"lowerBound":0,"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":false,"name":"size","changeable":true,"lowerBound":0,"iD":false,"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"},{"id":106,"eClass":"EGenericType"},{"id":107,"eClass":"EGenericType"},{"id":108,"eClass":"EGenericType"},{"name":"T","id":109,"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":"controls","changeable":true,"resolveProxies":false,"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":true,"unsettable":false,"transient":false,"unique":true,"name":"layout","changeable":true,"resolveProxies":false,"lowerBound":0,"id":111,"derived":false},{"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"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"text","changeable":true,"lowerBound":0,"iD":false,"id":119,"derived":false},{"id":120,"eClass":"EGenericType"},{"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":false,"name":"maximized","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":false,"name":"minimized","changeable":true,"lowerBound":0,"iD":false,"id":124,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"menuBar","changeable":true,"resolveProxies":false,"lowerBound":0,"id":125,"derived":false},{"id":126,"eClass":"EGenericType"},{"id":127,"eClass":"EGenericType"},{"id":128,"eClass":"EGenericType"},{"id":129,"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":true,"resolveProxies":true,"lowerBound":0,"id":130,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"modalStyle","changeable":true,"lowerBound":0,"iD":false,"id":131,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"trimStyle","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":false,"name":"fullScreen","changeable":true,"lowerBound":0,"iD":false,"id":133,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"255","unsettable":false,"transient":false,"unique":false,"name":"alpha","changeable":true,"lowerBound":0,"iD":false,"id":134,"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":"defaultButton","changeable":true,"resolveProxies":true,"lowerBound":0,"id":135,"derived":false},{"id":136,"eClass":"EGenericType"},{"id":137,"eClass":"EGenericType"},{"id":138,"eClass":"EGenericType"},{"id":139,"eClass":"EGenericType"},{"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":false,"name":"textOrientationStyle","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":"true","unsettable":false,"transient":false,"unique":false,"name":"enabled","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":"true","unsettable":false,"transient":false,"unique":false,"name":"visible","changeable":true,"lowerBound":0,"iD":false,"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":"items","changeable":true,"resolveProxies":false,"lowerBound":0,"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,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"menuStyle","changeable":true,"lowerBound":0,"iD":false,"id":151,"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":"parentItem","changeable":true,"resolveProxies":true,"lowerBound":0,"id":152,"derived":false},{"id":153,"eClass":"EGenericType"},{"id":154,"eClass":"EGenericType"},{"id":155,"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":"menu","changeable":true,"resolveProxies":false,"lowerBound":0,"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":false,"name":"text","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":false,"name":"image","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"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"menuItemStyle","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":false,"name":"ID","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":false,"name":"accelerator","changeable":true,"lowerBound":0,"iD":false,"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":false,"name":"enabled","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":false,"name":"selection","changeable":true,"lowerBound":0,"iD":false,"id":169,"derived":false},{"id":170,"eClass":"EGenericType"},{"id":171,"eClass":"EGenericType"},{"id":172,"eClass":"EGenericType"},{"id":173,"eClass":"EGenericType"},{"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":"items","changeable":true,"resolveProxies":false,"lowerBound":0,"id":177,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"orientationStyle","changeable":true,"lowerBound":0,"iD":false,"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":"parent","changeable":true,"resolveProxies":true,"lowerBound":0,"id":181,"derived":false},{"id":182,"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":"enabled","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":false,"name":"hotImage","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":false,"name":"toolTipText","changeable":true,"lowerBound":0,"iD":false,"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":false,"name":"selection","changeable":true,"lowerBound":0,"iD":false,"id":186,"derived":false},{"id":187,"eClass":"EGenericType"},{"id":188,"eClass":"EGenericType"},{"id":189,"eClass":"EGenericType"},{"id":190,"eClass":"EGenericType"},{"id":191,"eClass":"EGenericType"},{"id":192,"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":false,"lowerBound":0,"id":193,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"orientationStyle","changeable":true,"lowerBound":0,"iD":false,"id":194,"derived":false},{"id":195,"eClass":"EGenericType"},{"id":196,"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":true,"resolveProxies":true,"lowerBound":0,"id":197,"derived":false},{"id":198,"eClass":"EGenericType"},{"id":199,"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":"control","changeable":true,"resolveProxies":true,"lowerBound":0,"id":200,"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":"minimumSize","changeable":true,"lowerBound":0,"iD":false,"id":201,"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":"preferredSize","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":false,"name":"size","changeable":true,"lowerBound":0,"iD":false,"id":203,"derived":false},{"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"},{"id":211,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"orientationStyle","changeable":true,"lowerBound":0,"iD":false,"id":212,"derived":false},{"id":213,"eClass":"EGenericType"},{"id":214,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"buttonStyle","changeable":true,"lowerBound":0,"iD":false,"id":215,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"arrowStyle","changeable":true,"lowerBound":0,"iD":false,"id":216,"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":"selection","changeable":true,"lowerBound":0,"iD":false,"id":217,"derived":false},{"id":218,"eClass":"EGenericType"},{"id":219,"eClass":"EGenericType"},{"id":220,"eClass":"EGenericType"},{"id":221,"eClass":"EGenericType"},{"id":222,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"multiplicityStyle","changeable":true,"lowerBound":0,"iD":false,"id":223,"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":"text","changeable":true,"lowerBound":0,"iD":false,"id":224,"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":"selection","changeable":true,"lowerBound":0,"iD":false,"id":225,"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":"editable","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":false,"name":"echoChar","changeable":true,"lowerBound":0,"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":false,"name":"tabs","changeable":true,"lowerBound":0,"iD":false,"id":228,"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":"textLimit","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":false,"name":"topIndex","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":false,"name":"message","changeable":true,"lowerBound":0,"iD":false,"id":231,"derived":false},{"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"},{"id":242,"eClass":"EGenericType"},{"id":243,"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":"minimum","changeable":true,"lowerBound":0,"iD":false,"id":244,"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":"maximum","changeable":true,"lowerBound":0,"iD":false,"id":245,"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":"selection","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"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"orientationStyle","changeable":true,"lowerBound":0,"iD":false,"id":251,"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":"increment","changeable":true,"lowerBound":0,"iD":false,"id":252,"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":"pageIncrement","changeable":true,"lowerBound":0,"iD":false,"id":253,"derived":false},{"id":254,"eClass":"EGenericType"},{"id":255,"eClass":"EGenericType"},{"id":256,"eClass":"EGenericType"},{"id":257,"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":"thumb","changeable":true,"lowerBound":0,"iD":false,"id":258,"derived":false},{"id":259,"eClass":"EGenericType"},{"id":260,"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":"digits","changeable":true,"lowerBound":0,"iD":false,"id":261,"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":"textLimit","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,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"state","changeable":true,"lowerBound":0,"iD":false,"id":266,"derived":false},{"id":267,"eClass":"EGenericType"},{"id":268,"eClass":"EGenericType"},{"name":"NORMAL","id":269,"value":0,"literal":"NORMAL","eClass":"EEnumLiteral"},{"name":"PAUSED","id":270,"value":4,"literal":"PAUSED","eClass":"EEnumLiteral"},{"name":"ERROR","id":271,"value":1,"literal":"ERROR","eClass":"EEnumLiteral"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"seconds","changeable":true,"lowerBound":0,"iD":false,"id":272,"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":"minutes","changeable":true,"lowerBound":0,"iD":false,"id":273,"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":"hours","changeable":true,"lowerBound":0,"iD":false,"id":274,"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":"day","changeable":true,"lowerBound":0,"iD":false,"id":275,"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":"month","changeable":true,"lowerBound":0,"iD":false,"id":276,"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":"year","changeable":true,"lowerBound":0,"iD":false,"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"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"javascriptEnabled","changeable":true,"lowerBound":0,"iD":false,"id":285,"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":"text","changeable":true,"lowerBound":0,"iD":false,"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":false,"name":"url","changeable":true,"lowerBound":0,"iD":false,"id":287,"derived":false},{"id":288,"eClass":"EGenericType"},{"id":289,"eClass":"EGenericType"},{"id":290,"eClass":"EGenericType"},{"id":291,"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":"items","changeable":true,"lowerBound":0,"iD":false,"id":292,"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":"selectionIndex","changeable":true,"lowerBound":0,"iD":false,"id":293,"derived":false},{"id":294,"eClass":"EGenericType"},{"id":295,"eClass":"EGenericType"},{"id":296,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"multiplicityStyle","changeable":true,"lowerBound":0,"iD":false,"id":297,"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":"selectionIndices","changeable":true,"lowerBound":0,"iD":false,"id":298,"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":"selection","changeable":true,"lowerBound":0,"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":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"text","changeable":true,"lowerBound":0,"iD":false,"id":304,"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":"textLimit","changeable":true,"lowerBound":0,"iD":false,"id":305,"derived":false},{"id":306,"eClass":"EGenericType"},{"id":307,"eClass":"EGenericType"},{"id":308,"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":false,"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":true,"unsettable":false,"transient":false,"unique":true,"name":"control","changeable":true,"resolveProxies":false,"lowerBound":0,"id":312,"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":"toolTipText","changeable":true,"lowerBound":0,"iD":false,"id":313,"derived":false},{"id":314,"eClass":"EGenericType"},{"id":315,"eClass":"EGenericType"},{"id":316,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"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":317,"derived":false},{"id":318,"eClass":"EGenericType"},{"id":319,"eClass":"EGenericType"},{"name":"RED","id":320,"value":3,"literal":"RED","eClass":"EEnumLiteral"},{"name":"GREEN","id":321,"value":5,"literal":"GREEN","eClass":"EEnumLiteral"},{"name":"BLUE","id":322,"value":9,"literal":"BLUE","eClass":"EEnumLiteral"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"255","unsettable":false,"transient":false,"unique":false,"name":"red","changeable":true,"lowerBound":0,"iD":false,"id":323,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"255","unsettable":false,"transient":false,"unique":false,"name":"green","changeable":true,"lowerBound":0,"iD":false,"id":324,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"255","unsettable":false,"transient":false,"unique":false,"name":"blue","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"},{"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":330,"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":"style","changeable":true,"lowerBound":0,"iD":false,"id":331,"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":"height","changeable":true,"lowerBound":0,"iD":false,"id":332,"derived":false},{"id":333,"eClass":"EGenericType"},{"id":334,"eClass":"EGenericType"},{"id":335,"eClass":"EGenericType"},{"name":"NORMAL","id":336,"value":0,"literal":"NORMAL","eClass":"EEnumLiteral"},{"name":"BOLD","id":337,"value":1,"literal":"BOLD","eClass":"EEnumLiteral"},{"name":"ITALIC","id":338,"value":2,"literal":"ITALIC","eClass":"EEnumLiteral"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"orientationStyle","changeable":true,"lowerBound":0,"iD":false,"id":339,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"0","unsettable":false,"transient":false,"unique":false,"name":"marginWidth","changeable":true,"lowerBound":0,"iD":false,"id":340,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"0","unsettable":false,"transient":false,"unique":false,"name":"marginHeight","changeable":true,"lowerBound":0,"iD":false,"id":341,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"0","unsettable":false,"transient":false,"unique":false,"name":"spacing","changeable":true,"lowerBound":0,"iD":false,"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"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"orientationStyle","changeable":true,"lowerBound":0,"iD":false,"id":349,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"0","unsettable":false,"transient":false,"unique":false,"name":"marginWidth","changeable":true,"lowerBound":0,"iD":false,"id":350,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"0","unsettable":false,"transient":false,"unique":false,"name":"marginHeight","changeable":true,"lowerBound":0,"iD":false,"id":351,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"3","unsettable":false,"transient":false,"unique":false,"name":"spacing","changeable":true,"lowerBound":0,"iD":false,"id":352,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"true","unsettable":false,"transient":false,"unique":false,"name":"wrap","changeable":true,"lowerBound":0,"iD":false,"id":353,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"true","unsettable":false,"transient":false,"unique":false,"name":"pack","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":"false","unsettable":false,"transient":false,"unique":false,"name":"fill","changeable":true,"lowerBound":0,"iD":false,"id":355,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"true","unsettable":false,"transient":false,"unique":false,"name":"center","changeable":true,"lowerBound":0,"iD":false,"id":356,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"false","unsettable":false,"transient":false,"unique":false,"name":"justify","changeable":true,"lowerBound":0,"iD":false,"id":357,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"3","unsettable":false,"transient":false,"unique":false,"name":"marginLeft","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":"3","unsettable":false,"transient":false,"unique":false,"name":"marginTop","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":"3","unsettable":false,"transient":false,"unique":false,"name":"marginRight","changeable":true,"lowerBound":0,"iD":false,"id":360,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"3","unsettable":false,"transient":false,"unique":false,"name":"marginBottom","changeable":true,"lowerBound":0,"iD":false,"id":361,"derived":false},{"id":362,"eClass":"EGenericType"},{"id":363,"eClass":"EGenericType"},{"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"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"-1","unsettable":false,"transient":false,"unique":false,"name":"width","changeable":true,"lowerBound":0,"iD":false,"id":377,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"-1","unsettable":false,"transient":false,"unique":false,"name":"height","changeable":true,"lowerBound":0,"iD":false,"id":378,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"false","unsettable":false,"transient":false,"unique":false,"name":"exclude","changeable":true,"lowerBound":0,"iD":false,"id":379,"derived":false},{"id":380,"eClass":"EGenericType"},{"id":381,"eClass":"EGenericType"},{"id":382,"eClass":"EGenericType"},{"id":383,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"1","unsettable":false,"transient":false,"unique":false,"name":"numColumns","changeable":true,"lowerBound":0,"iD":false,"id":384,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"false","unsettable":false,"transient":false,"unique":false,"name":"makeColumnsEqualWidth","changeable":true,"lowerBound":0,"iD":false,"id":385,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"5","unsettable":false,"transient":false,"unique":false,"name":"marginWidth","changeable":true,"lowerBound":0,"iD":false,"id":386,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"5","unsettable":false,"transient":false,"unique":false,"name":"marginHeight","changeable":true,"lowerBound":0,"iD":false,"id":387,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"0","unsettable":false,"transient":false,"unique":false,"name":"marginLeft","changeable":true,"lowerBound":0,"iD":false,"id":388,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"0","unsettable":false,"transient":false,"unique":false,"name":"marginTop","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":"0","unsettable":false,"transient":false,"unique":false,"name":"marginRight","changeable":true,"lowerBound":0,"iD":false,"id":390,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"0","unsettable":false,"transient":false,"unique":false,"name":"marginBottom","changeable":true,"lowerBound":0,"iD":false,"id":391,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"5","unsettable":false,"transient":false,"unique":false,"name":"horizontalSpacing","changeable":true,"lowerBound":0,"iD":false,"id":392,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"5","unsettable":false,"transient":false,"unique":false,"name":"verticalSpacing","changeable":true,"lowerBound":0,"iD":false,"id":393,"derived":false},{"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"},{"ordered":true,"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":406,"derived":false},{"ordered":true,"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":407,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"-1","unsettable":false,"transient":false,"unique":false,"name":"widthHint","changeable":true,"lowerBound":0,"iD":false,"id":408,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"-1","unsettable":false,"transient":false,"unique":false,"name":"heightHint","changeable":true,"lowerBound":0,"iD":false,"id":409,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"0","unsettable":false,"transient":false,"unique":false,"name":"horizontalIndent","changeable":true,"lowerBound":0,"iD":false,"id":410,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"0","unsettable":false,"transient":false,"unique":false,"name":"verticalIndent","changeable":true,"lowerBound":0,"iD":false,"id":411,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"1","unsettable":false,"transient":false,"unique":false,"name":"horizontalSpan","changeable":true,"lowerBound":0,"iD":false,"id":412,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"1","unsettable":false,"transient":false,"unique":false,"name":"verticalSpan","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":"false","unsettable":false,"transient":false,"unique":false,"name":"grabExcessHorizontalSpace","changeable":true,"lowerBound":0,"iD":false,"id":414,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"false","unsettable":false,"transient":false,"unique":false,"name":"grabExcessVerticalSpace","changeable":true,"lowerBound":0,"iD":false,"id":415,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"0","unsettable":false,"transient":false,"unique":false,"name":"minimumWidth","changeable":true,"lowerBound":0,"iD":false,"id":416,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"0","unsettable":false,"transient":false,"unique":false,"name":"minimumHeight","changeable":true,"lowerBound":0,"iD":false,"id":417,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"false","unsettable":false,"transient":false,"unique":false,"name":"exclude","changeable":true,"lowerBound":0,"iD":false,"id":418,"derived":false},{"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"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"0","unsettable":false,"transient":false,"unique":false,"name":"marginWidth","changeable":true,"lowerBound":0,"iD":false,"id":433,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"0","unsettable":false,"transient":false,"unique":false,"name":"marginHeight","changeable":true,"lowerBound":0,"iD":false,"id":434,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"3","unsettable":false,"transient":false,"unique":false,"name":"spacing","changeable":true,"lowerBound":0,"iD":false,"id":435,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"3","unsettable":false,"transient":false,"unique":false,"name":"marginLeft","changeable":true,"lowerBound":0,"iD":false,"id":436,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"3","unsettable":false,"transient":false,"unique":false,"name":"marginTop","changeable":true,"lowerBound":0,"iD":false,"id":437,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"3","unsettable":false,"transient":false,"unique":false,"name":"marginRight","changeable":true,"lowerBound":0,"iD":false,"id":438,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"3","unsettable":false,"transient":false,"unique":false,"name":"marginBottom","changeable":true,"lowerBound":0,"iD":false,"id":439,"derived":false},{"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"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"0","unsettable":false,"transient":false,"unique":false,"name":"width","changeable":true,"lowerBound":0,"iD":false,"id":449,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"0","unsettable":false,"transient":false,"unique":false,"name":"height","changeable":true,"lowerBound":0,"iD":false,"id":450,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"left","changeable":true,"resolveProxies":false,"lowerBound":0,"id":451,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"top","changeable":true,"resolveProxies":false,"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":true,"unsettable":false,"transient":false,"unique":true,"name":"right","changeable":true,"resolveProxies":false,"lowerBound":0,"id":453,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"bottom","changeable":true,"resolveProxies":false,"lowerBound":0,"id":454,"derived":false},{"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"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"alignment","changeable":true,"lowerBound":0,"iD":false,"id":462,"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":"control","changeable":true,"resolveProxies":true,"lowerBound":0,"id":463,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"100","unsettable":false,"transient":false,"unique":false,"name":"denominator","changeable":true,"lowerBound":0,"iD":false,"id":464,"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":"numerator","changeable":true,"lowerBound":0,"iD":false,"id":465,"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":"offset","changeable":true,"lowerBound":0,"iD":false,"id":466,"derived":false},{"id":467,"eClass":"EGenericType"},{"id":468,"eClass":"EGenericType"},{"id":469,"eClass":"EGenericType"},{"id":470,"eClass":"EGenericType"},{"id":471,"eClass":"EGenericType"},{"name":"DEFAULT","id":472,"value":-1,"literal":"DEFAULT","eClass":"EEnumLiteral"},{"name":"TOP","id":473,"value":128,"literal":"TOP","eClass":"EEnumLiteral"},{"name":"BOTTOM","id":474,"value":1024,"literal":"BOTTOM","eClass":"EEnumLiteral"},{"name":"LEFT","id":475,"value":16384,"literal":"LEFT","eClass":"EEnumLiteral"},{"name":"RIGHT","id":476,"value":131072,"literal":"RIGHT","eClass":"EEnumLiteral"},{"name":"CENTER","id":477,"value":16777216,"literal":"CENTER","eClass":"EEnumLiteral"},{"name":"NONE","id":478,"value":0,"literal":"NONE","eClass":"EEnumLiteral"},{"name":"BORDER","id":479,"value":2048,"literal":"BORDER","eClass":"EEnumLiteral"},{"name":"TOGGLE","id":480,"value":2,"literal":"TOGGLE","eClass":"EEnumLiteral"},{"name":"PUSH","id":481,"value":8,"literal":"PUSH","eClass":"EEnumLiteral"},{"name":"RADIO","id":482,"value":16,"literal":"RADIO","eClass":"EEnumLiteral"},{"name":"CHECK","id":483,"value":32,"literal":"CHECK","eClass":"EEnumLiteral"},{"name":"ARROW","id":484,"value":4,"literal":"ARROW","eClass":"EEnumLiteral"},{"name":"NONE","id":485,"value":0,"literal":"NONE","eClass":"EEnumLiteral"},{"name":"UP","id":486,"value":128,"literal":"UP","eClass":"EEnumLiteral"},{"name":"DOWN","id":487,"value":1024,"literal":"DOWN","eClass":"EEnumLiteral"},{"name":"LEFT","id":488,"value":16384,"literal":"LEFT","eClass":"EEnumLiteral"},{"name":"RIGHT","id":489,"value":131072,"literal":"RIGHT","eClass":"EEnumLiteral"},{"name":"LEFT_TO_RIGHT","id":490,"value":33554432,"literal":"LEFT_TO_RIGHT","eClass":"EEnumLiteral"},{"name":"RIGHT_TO_LEFT","id":491,"value":67108864,"literal":"RIGHT_TO_LEFT","eClass":"EEnumLiteral"},{"name":"HORIZONTAL","id":492,"value":256,"literal":"HORIZONTAL","eClass":"EEnumLiteral"},{"name":"VERTICAL","id":493,"value":512,"literal":"VERTICAL","eClass":"EEnumLiteral"},{"name":"LEFT","id":494,"value":16384,"literal":"LEFT","eClass":"EEnumLiteral"},{"name":"CENTER","id":495,"value":16777216,"literal":"CENTER","eClass":"EEnumLiteral"},{"name":"RIGHT","id":496,"value":131072,"literal":"RIGHT","eClass":"EEnumLiteral"},{"name":"FILL","id":497,"value":4,"literal":"FILL","eClass":"EEnumLiteral"},{"name":"CENTER","id":498,"value":16777216,"literal":"CENTER","eClass":"EEnumLiteral"},{"name":"TOP","id":499,"value":128,"literal":"TOP","eClass":"EEnumLiteral"},{"name":"BOTTOM","id":500,"value":1024,"literal":"BOTTOM","eClass":"EEnumLiteral"},{"name":"FILL","id":501,"value":4,"literal":"FILL","eClass":"EEnumLiteral"},{"name":"SINGLE","id":502,"value":4,"literal":"SINGLE","eClass":"EEnumLiteral"},{"name":"MULTI","id":503,"value":2,"literal":"MULTI","eClass":"EEnumLiteral"},{"name":"DROP_DOWN","id":504,"value":4,"literal":"DROP_DOWN","eClass":"EEnumLiteral"},{"name":"READ_ONLY","id":505,"value":8,"literal":"READ_ONLY","eClass":"EEnumLiteral"},{"name":"SIMPLE","id":506,"value":64,"literal":"SIMPLE","eClass":"EEnumLiteral"},{"name":"POP_UP","id":507,"value":8,"literal":"POP_UP","eClass":"EEnumLiteral"},{"name":"DROP_DOWN","id":508,"value":4,"literal":"DROP_DOWN","eClass":"EEnumLiteral"},{"name":"PUSH","id":509,"value":8,"literal":"PUSH","eClass":"EEnumLiteral"},{"name":"CASCADE","id":510,"value":64,"literal":"CASCADE","eClass":"EEnumLiteral"},{"name":"CHECK","id":511,"value":32,"literal":"CHECK","eClass":"EEnumLiteral"},{"name":"RADIO","id":512,"value":16,"literal":"RADIO","eClass":"EEnumLiteral"},{"name":"SEPARATOR","id":513,"value":2,"literal":"SEPARATOR","eClass":"EEnumLiteral"},{"name":"SYSTEM_MODAL","id":514,"value":131072,"literal":"SYSTEM_MODAL","eClass":"EEnumLiteral"},{"name":"APPLICATION_MODAL","id":515,"value":65536,"literal":"APPLICATION_MODAL","eClass":"EEnumLiteral"},{"name":"PRIMARY_MODAL","id":516,"value":32768,"literal":"PRIMARY_MODAL","eClass":"EEnumLiteral"},{"name":"NOT_TRIM","id":517,"value":8,"literal":"NOT_TRIM","eClass":"EEnumLiteral"},{"name":"SHELL_TRIM","id":518,"value":1264,"literal":"SHELL_TRIM","eClass":"EEnumLiteral"},{"name":"DIALOG_TRIM","id":519,"value":2144,"literal":"DIALOG_TRIM","eClass":"EEnumLiteral"},{"ordered":true,"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":520,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"style","changeable":true,"lowerBound":0,"iD":false,"id":521,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"cap","changeable":true,"lowerBound":0,"iD":false,"id":522,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"join","changeable":true,"lowerBound":0,"iD":false,"id":523,"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":"dash","changeable":true,"lowerBound":0,"iD":false,"id":524,"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":"dashOffset","changeable":true,"lowerBound":0,"iD":false,"id":525,"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":"miterLimit","changeable":true,"lowerBound":0,"iD":false,"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"},{"name":"CUSTOM","id":534,"value":6,"literal":"CUSTOM","eClass":"EEnumLiteral"},{"name":"DASH","id":535,"value":2,"literal":"DASH","eClass":"EEnumLiteral"},{"name":"DASHDOT","id":536,"value":4,"literal":"DASHDOT","eClass":"EEnumLiteral"},{"name":"DASHDOTDOT","id":537,"value":5,"literal":"DASHDOTDOT","eClass":"EEnumLiteral"},{"name":"DOT","id":538,"value":3,"literal":"DOT","eClass":"EEnumLiteral"},{"name":"SOLID","id":539,"value":1,"literal":"SOLID","eClass":"EEnumLiteral"},{"name":"FLAT","id":540,"value":1,"literal":"FLAT","eClass":"EEnumLiteral"},{"name":"ROUND","id":541,"value":2,"literal":"ROUND","eClass":"EEnumLiteral"},{"name":"SQUARE","id":542,"value":3,"literal":"SQUARE","eClass":"EEnumLiteral"},{"name":"BEVEL","id":543,"value":3,"literal":"BEVEL","eClass":"EEnumLiteral"},{"name":"MITER","id":544,"value":1,"literal":"MITER","eClass":"EEnumLiteral"},{"name":"ROUND","id":545,"value":2,"literal":"ROUND","eClass":"EEnumLiteral"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"toolTipText","changeable":true,"lowerBound":0,"iD":false,"id":546,"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":"displayText","changeable":true,"lowerBound":0,"iD":false,"id":547,"derived":false},{"id":548,"eClass":"EGenericType"},{"id":549,"eClass":"EGenericType"},{"id":550,"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":"columns","changeable":true,"resolveProxies":false,"lowerBound":0,"id":551,"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":"headerVisible","changeable":true,"lowerBound":0,"iD":false,"id":552,"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":"linesVisible","changeable":true,"lowerBound":0,"iD":false,"id":553,"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":"sortColumn","changeable":true,"resolveProxies":true,"lowerBound":0,"id":554,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"sortDirection","changeable":true,"lowerBound":0,"iD":false,"id":555,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"viewer","changeable":true,"resolveProxies":false,"lowerBound":0,"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"},{"name":"NONE","id":564,"value":0,"literal":"NONE","eClass":"EEnumLiteral"},{"name":"UP","id":565,"value":128,"literal":"UP","eClass":"EEnumLiteral"},{"name":"DOWN","id":566,"value":1024,"literal":"DOWN","eClass":"EEnumLiteral"},{"name":"T","id":567,"eClass":"ETypeParameter"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"control","changeable":true,"resolveProxies":true,"lowerBound":0,"id":568,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":true,"unique":false,"name":"input","changeable":true,"lowerBound":0,"iD":false,"id":569,"derived":false},{"id":570,"eClass":"EGenericType"},{"id":571,"eClass":"EGenericType"},{"id":572,"eClass":"EGenericType"},{"id":573,"eClass":"EGenericType"},{"id":574,"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":1,"target":0},{"source":1,"target":81},{"source":81,"target":82},{"source":81,"target":1},{"source":2,"target":0},{"source":2,"target":83},{"source":83,"target":84},{"source":84,"target":3},{"source":3,"target":0},{"source":4,"target":0},{"source":4,"target":1},{"source":4,"target":85},{"source":4,"target":86},{"source":4,"target":87},{"source":4,"target":88},{"source":4,"target":89},{"source":4,"target":90},{"source":4,"target":91},{"source":4,"target":92},{"source":4,"target":93},{"source":4,"target":94},{"source":4,"target":95},{"source":4,"target":96},{"source":85,"target":5},{"source":85,"target":97},{"source":85,"target":4},{"source":97,"target":98},{"source":97,"target":5},{"source":98,"target":4},{"source":86,"target":57},{"source":86,"target":99},{"source":86,"target":4},{"source":99,"target":57},{"source":87,"target":60},{"source":87,"target":100},{"source":87,"target":4},{"source":100,"target":60},{"source":88,"target":3},{"source":88,"target":101},{"source":88,"target":4},{"source":101,"target":3},{"source":89,"target":102},{"source":89,"target":4},{"source":90,"target":103},{"source":90,"target":4},{"source":91,"target":104},{"source":91,"target":4},{"source":92,"target":105},{"source":92,"target":4},{"source":93,"target":42},{"source":93,"target":106},{"source":93,"target":4},{"source":106,"target":42},{"source":94,"target":46},{"source":94,"target":107},{"source":94,"target":4},{"source":107,"target":46},{"source":95,"target":74},{"source":95,"target":108},{"source":95,"target":4},{"source":108,"target":74},{"source":96,"target":1},{"source":5,"target":0},{"source":5,"target":109},{"source":5,"target":4},{"source":5,"target":110},{"source":5,"target":111},{"source":5,"target":112},{"source":109,"target":113},{"source":113,"target":4},{"source":110,"target":4},{"source":110,"target":114},{"source":110,"target":5},{"source":114,"target":109},{"source":111,"target":2},{"source":111,"target":115},{"source":111,"target":5},{"source":115,"target":116},{"source":115,"target":2},{"source":116,"target":3},{"source":112,"target":4},{"source":6,"target":0},{"source":6,"target":5},{"source":6,"target":117},{"source":117,"target":118},{"source":117,"target":5},{"source":118,"target":4},{"source":7,"target":0},{"source":7,"target":6},{"source":7,"target":119},{"source":7,"target":120},{"source":119,"target":121},{"source":119,"target":7},{"source":120,"target":6},{"source":8,"target":0},{"source":8,"target":6},{"source":8,"target":122},{"source":122,"target":6},{"source":9,"target":0},{"source":9,"target":8},{"source":9,"target":123},{"source":9,"target":124},{"source":9,"target":125},{"source":9,"target":126},{"source":123,"target":127},{"source":123,"target":9},{"source":124,"target":128},{"source":124,"target":9},{"source":125,"target":13},{"source":125,"target":129},{"source":125,"target":9},{"source":125,"target":130},{"source":129,"target":13},{"source":126,"target":8},{"source":10,"target":0},{"source":10,"target":9},{"source":10,"target":131},{"source":10,"target":132},{"source":10,"target":133},{"source":10,"target":134},{"source":10,"target":135},{"source":10,"target":136},{"source":131,"target":68},{"source":131,"target":137},{"source":131,"target":10},{"source":137,"target":68},{"source":132,"target":69},{"source":132,"target":138},{"source":132,"target":10},{"source":138,"target":69},{"source":133,"target":139},{"source":133,"target":10},{"source":134,"target":140},{"source":134,"target":10},{"source":135,"target":24},{"source":135,"target":141},{"source":135,"target":10},{"source":141,"target":24},{"source":136,"target":9},{"source":11,"target":0},{"source":11,"target":1},{"source":11,"target":142},{"source":11,"target":143},{"source":11,"target":144},{"source":11,"target":145},{"source":11,"target":146},{"source":142,"target":60},{"source":142,"target":147},{"source":142,"target":11},{"source":147,"target":60},{"source":143,"target":148},{"source":143,"target":11},{"source":144,"target":149},{"source":144,"target":11},{"source":145,"target":16},{"source":145,"target":150},{"source":145,"target":11},{"source":150,"target":16},{"source":146,"target":1},{"source":12,"target":0},{"source":12,"target":11},{"source":12,"target":151},{"source":12,"target":152},{"source":12,"target":153},{"source":151,"target":66},{"source":151,"target":154},{"source":151,"target":12},{"source":154,"target":66},{"source":152,"target":16},{"source":152,"target":155},{"source":152,"target":12},{"source":152,"target":156},{"source":155,"target":16},{"source":153,"target":11},{"source":13,"target":0},{"source":13,"target":11},{"source":13,"target":130},{"source":13,"target":157},{"source":130,"target":9},{"source":130,"target":158},{"source":130,"target":13},{"source":130,"target":125},{"source":158,"target":9},{"source":157,"target":11},{"source":14,"target":0},{"source":14,"target":159},{"source":14,"target":160},{"source":159,"target":161},{"source":159,"target":14},{"source":160,"target":21},{"source":160,"target":162},{"source":160,"target":14},{"source":162,"target":21},{"source":15,"target":0},{"source":15,"target":1},{"source":15,"target":14},{"source":15,"target":163},{"source":15,"target":164},{"source":163,"target":1},{"source":164,"target":14},{"source":16,"target":0},{"source":16,"target":15},{"source":16,"target":165},{"source":16,"target":156},{"source":16,"target":166},{"source":16,"target":167},{"source":16,"target":168},{"source":16,"target":169},{"source":16,"target":170},{"source":165,"target":67},{"source":165,"target":171},{"source":165,"target":16},{"source":171,"target":67},{"source":156,"target":12},{"source":156,"target":172},{"source":156,"target":16},{"source":156,"target":152},{"source":172,"target":12},{"source":166,"target":173},{"source":166,"target":16},{"source":167,"target":174},{"source":167,"target":16},{"source":168,"target":175},{"source":168,"target":16},{"source":169,"target":176},{"source":169,"target":16},{"source":170,"target":15},{"source":17,"target":0},{"source":17,"target":4},{"source":17,"target":177},{"source":17,"target":178},{"source":17,"target":179},{"source":177,"target":18},{"source":177,"target":180},{"source":177,"target":17},{"source":177,"target":181},{"source":180,"target":18},{"source":178,"target":61},{"source":178,"target":182},{"source":178,"target":17},{"source":182,"target":61},{"source":179,"target":4},{"source":18,"target":0},{"source":18,"target":15},{"source":18,"target":181},{"source":18,"target":183},{"source":18,"target":184},{"source":18,"target":185},{"source":18,"target":186},{"source":18,"target":187},{"source":181,"target":17},{"source":181,"target":188},{"source":181,"target":18},{"source":181,"target":177},{"source":188,"target":17},{"source":183,"target":189},{"source":183,"target":18},{"source":184,"target":21},{"source":184,"target":190},{"source":184,"target":18},{"source":190,"target":21},{"source":185,"target":191},{"source":185,"target":18},{"source":186,"target":192},{"source":186,"target":18},{"source":187,"target":15},{"source":19,"target":0},{"source":19,"target":5},{"source":19,"target":193},{"source":19,"target":194},{"source":19,"target":195},{"source":193,"target":20},{"source":193,"target":196},{"source":193,"target":19},{"source":193,"target":197},{"source":196,"target":20},{"source":194,"target":61},{"source":194,"target":198},{"source":194,"target":19},{"source":198,"target":61},{"source":195,"target":199},{"source":195,"target":5},{"source":199,"target":4},{"source":20,"target":0},{"source":20,"target":15},{"source":20,"target":197},{"source":20,"target":200},{"source":20,"target":201},{"source":20,"target":202},{"source":20,"target":203},{"source":20,"target":204},{"source":197,"target":19},{"source":197,"target":205},{"source":197,"target":20},{"source":197,"target":193},{"source":205,"target":19},{"source":200,"target":4},{"source":200,"target":206},{"source":200,"target":20},{"source":206,"target":4},{"source":201,"target":74},{"source":201,"target":207},{"source":201,"target":20},{"source":207,"target":74},{"source":202,"target":74},{"source":202,"target":208},{"source":202,"target":20},{"source":208,"target":74},{"source":203,"target":74},{"source":203,"target":209},{"source":203,"target":20},{"source":209,"target":74},{"source":204,"target":15},{"source":21,"target":0},{"source":22,"target":0},{"source":22,"target":4},{"source":22,"target":14},{"source":22,"target":210},{"source":22,"target":211},{"source":210,"target":4},{"source":211,"target":14},{"source":23,"target":0},{"source":23,"target":4},{"source":23,"target":212},{"source":23,"target":213},{"source":212,"target":61},{"source":212,"target":214},{"source":212,"target":23},{"source":214,"target":61},{"source":213,"target":4},{"source":24,"target":0},{"source":24,"target":4},{"source":24,"target":14},{"source":24,"target":215},{"source":24,"target":216},{"source":24,"target":217},{"source":24,"target":218},{"source":24,"target":219},{"source":215,"target":58},{"source":215,"target":220},{"source":215,"target":24},{"source":220,"target":58},{"source":216,"target":59},{"source":216,"target":221},{"source":216,"target":24},{"source":221,"target":59},{"source":217,"target":222},{"source":217,"target":24},{"source":218,"target":4},{"source":219,"target":14},{"source":25,"target":0},{"source":25,"target":4},{"source":25,"target":223},{"source":25,"target":224},{"source":25,"target":225},{"source":25,"target":226},{"source":25,"target":227},{"source":25,"target":228},{"source":25,"target":229},{"source":25,"target":230},{"source":25,"target":231},{"source":25,"target":232},{"source":223,"target":64},{"source":223,"target":233},{"source":223,"target":25},{"source":233,"target":64},{"source":224,"target":234},{"source":224,"target":25},{"source":225,"target":74},{"source":225,"target":235},{"source":225,"target":25},{"source":235,"target":74},{"source":226,"target":236},{"source":226,"target":25},{"source":227,"target":237},{"source":227,"target":25},{"source":228,"target":238},{"source":228,"target":25},{"source":229,"target":239},{"source":229,"target":25},{"source":230,"target":240},{"source":230,"target":25},{"source":231,"target":241},{"source":231,"target":25},{"source":232,"target":4},{"source":26,"target":0},{"source":26,"target":25},{"source":26,"target":242},{"source":242,"target":25},{"source":27,"target":0},{"source":27,"target":25},{"source":27,"target":243},{"source":243,"target":25},{"source":28,"target":0},{"source":28,"target":4},{"source":28,"target":244},{"source":28,"target":245},{"source":28,"target":246},{"source":28,"target":247},{"source":244,"target":248},{"source":244,"target":28},{"source":245,"target":249},{"source":245,"target":28},{"source":246,"target":250},{"source":246,"target":28},{"source":247,"target":4},{"source":29,"target":0},{"source":29,"target":28},{"source":29,"target":251},{"source":29,"target":252},{"source":29,"target":253},{"source":29,"target":254},{"source":251,"target":61},{"source":251,"target":255},{"source":251,"target":29},{"source":255,"target":61},{"source":252,"target":256},{"source":252,"target":29},{"source":253,"target":257},{"source":253,"target":29},{"source":254,"target":28},{"source":30,"target":0},{"source":30,"target":29},{"source":30,"target":258},{"source":30,"target":259},{"source":258,"target":260},{"source":258,"target":30},{"source":259,"target":29},{"source":31,"target":0},{"source":31,"target":29},{"source":31,"target":261},{"source":31,"target":262},{"source":31,"target":263},{"source":261,"target":264},{"source":261,"target":31},{"source":262,"target":265},{"source":262,"target":31},{"source":263,"target":29},{"source":32,"target":0},{"source":32,"target":28},{"source":32,"target":266},{"source":32,"target":267},{"source":266,"target":33},{"source":266,"target":268},{"source":266,"target":32},{"source":268,"target":33},{"source":267,"target":28},{"source":33,"target":0},{"source":33,"target":269},{"source":33,"target":270},{"source":33,"target":271},{"source":269,"target":33},{"source":270,"target":33},{"source":271,"target":33},{"source":34,"target":0},{"source":34,"target":4},{"source":34,"target":272},{"source":34,"target":273},{"source":34,"target":274},{"source":34,"target":275},{"source":34,"target":276},{"source":34,"target":277},{"source":34,"target":278},{"source":272,"target":279},{"source":272,"target":34},{"source":273,"target":280},{"source":273,"target":34},{"source":274,"target":281},{"source":274,"target":34},{"source":275,"target":282},{"source":275,"target":34},{"source":276,"target":283},{"source":276,"target":34},{"source":277,"target":284},{"source":277,"target":34},{"source":278,"target":4},{"source":35,"target":0},{"source":35,"target":4},{"source":35,"target":285},{"source":35,"target":286},{"source":35,"target":287},{"source":35,"target":288},{"source":285,"target":289},{"source":285,"target":35},{"source":286,"target":290},{"source":286,"target":35},{"source":287,"target":36},{"source":287,"target":291},{"source":287,"target":35},{"source":291,"target":36},{"source":288,"target":4},{"source":36,"target":0},{"source":37,"target":0},{"source":37,"target":4},{"source":37,"target":292},{"source":37,"target":293},{"source":37,"target":294},{"source":292,"target":295},{"source":292,"target":37},{"source":293,"target":296},{"source":293,"target":37},{"source":294,"target":4},{"source":38,"target":0},{"source":38,"target":37},{"source":38,"target":297},{"source":38,"target":298},{"source":38,"target":299},{"source":38,"target":300},{"source":297,"target":64},{"source":297,"target":301},{"source":297,"target":38},{"source":301,"target":64},{"source":298,"target":302},{"source":298,"target":38},{"source":299,"target":303},{"source":299,"target":38},{"source":300,"target":37},{"source":39,"target":0},{"source":39,"target":37},{"source":39,"target":304},{"source":39,"target":305},{"source":39,"target":306},{"source":304,"target":307},{"source":304,"target":39},{"source":305,"target":308},{"source":305,"target":39},{"source":306,"target":37},{"source":40,"target":0},{"source":40,"target":4},{"source":40,"target":309},{"source":40,"target":310},{"source":309,"target":41},{"source":309,"target":311},{"source":309,"target":40},{"source":311,"target":41},{"source":310,"target":4},{"source":41,"target":0},{"source":41,"target":15},{"source":41,"target":312},{"source":41,"target":313},{"source":41,"target":314},{"source":312,"target":4},{"source":312,"target":315},{"source":312,"target":41},{"source":315,"target":4},{"source":313,"target":316},{"source":313,"target":41},{"source":314,"target":15},{"source":42,"target":0},{"source":43,"target":0},{"source":43,"target":42},{"source":43,"target":317},{"source":43,"target":318},{"source":317,"target":44},{"source":317,"target":319},{"source":317,"target":43},{"source":319,"target":44},{"source":318,"target":42},{"source":44,"target":0},{"source":44,"target":320},{"source":44,"target":321},{"source":44,"target":322},{"source":320,"target":44},{"source":321,"target":44},{"source":322,"target":44},{"source":45,"target":0},{"source":45,"target":42},{"source":45,"target":323},{"source":45,"target":324},{"source":45,"target":325},{"source":45,"target":326},{"source":323,"target":327},{"source":323,"target":45},{"source":324,"target":328},{"source":324,"target":45},{"source":325,"target":329},{"source":325,"target":45},{"source":326,"target":42},{"source":46,"target":0},{"source":46,"target":330},{"source":46,"target":331},{"source":46,"target":332},{"source":330,"target":333},{"source":330,"target":46},{"source":331,"target":334},{"source":331,"target":46},{"source":332,"target":335},{"source":332,"target":46},{"source":47,"target":0},{"source":47,"target":336},{"source":47,"target":337},{"source":47,"target":338},{"source":336,"target":47},{"source":337,"target":47},{"source":338,"target":47},{"source":48,"target":0},{"source":48,"target":2},{"source":48,"target":339},{"source":48,"target":340},{"source":48,"target":341},{"source":48,"target":342},{"source":48,"target":343},{"source":339,"target":61},{"source":339,"target":344},{"source":339,"target":48},{"source":344,"target":61},{"source":340,"target":345},{"source":340,"target":48},{"source":341,"target":346},{"source":341,"target":48},{"source":342,"target":347},{"source":342,"target":48},{"source":343,"target":348},{"source":343,"target":2},{"source":348,"target":3},{"source":49,"target":0},{"source":49,"target":2},{"source":49,"target":349},{"source":49,"target":350},{"source":49,"target":351},{"source":49,"target":352},{"source":49,"target":353},{"source":49,"target":354},{"source":49,"target":355},{"source":49,"target":356},{"source":49,"target":357},{"source":49,"target":358},{"source":49,"target":359},{"source":49,"target":360},{"source":49,"target":361},{"source":49,"target":362},{"source":349,"target":61},{"source":349,"target":363},{"source":349,"target":49},{"source":363,"target":61},{"source":350,"target":364},{"source":350,"target":49},{"source":351,"target":365},{"source":351,"target":49},{"source":352,"target":366},{"source":352,"target":49},{"source":353,"target":367},{"source":353,"target":49},{"source":354,"target":368},{"source":354,"target":49},{"source":355,"target":369},{"source":355,"target":49},{"source":356,"target":370},{"source":356,"target":49},{"source":357,"target":371},{"source":357,"target":49},{"source":358,"target":372},{"source":358,"target":49},{"source":359,"target":373},{"source":359,"target":49},{"source":360,"target":374},{"source":360,"target":49},{"source":361,"target":375},{"source":361,"target":49},{"source":362,"target":376},{"source":362,"target":2},{"source":376,"target":50},{"source":50,"target":0},{"source":50,"target":3},{"source":50,"target":377},{"source":50,"target":378},{"source":50,"target":379},{"source":50,"target":380},{"source":377,"target":381},{"source":377,"target":50},{"source":378,"target":382},{"source":378,"target":50},{"source":379,"target":383},{"source":379,"target":50},{"source":380,"target":3},{"source":51,"target":0},{"source":51,"target":2},{"source":51,"target":384},{"source":51,"target":385},{"source":51,"target":386},{"source":51,"target":387},{"source":51,"target":388},{"source":51,"target":389},{"source":51,"target":390},{"source":51,"target":391},{"source":51,"target":392},{"source":51,"target":393},{"source":51,"target":394},{"source":384,"target":395},{"source":384,"target":51},{"source":385,"target":396},{"source":385,"target":51},{"source":386,"target":397},{"source":386,"target":51},{"source":387,"target":398},{"source":387,"target":51},{"source":388,"target":399},{"source":388,"target":51},{"source":389,"target":400},{"source":389,"target":51},{"source":390,"target":401},{"source":390,"target":51},{"source":391,"target":402},{"source":391,"target":51},{"source":392,"target":403},{"source":392,"target":51},{"source":393,"target":404},{"source":393,"target":51},{"source":394,"target":405},{"source":394,"target":2},{"source":405,"target":52},{"source":52,"target":0},{"source":52,"target":3},{"source":52,"target":406},{"source":52,"target":407},{"source":52,"target":408},{"source":52,"target":409},{"source":52,"target":410},{"source":52,"target":411},{"source":52,"target":412},{"source":52,"target":413},{"source":52,"target":414},{"source":52,"target":415},{"source":52,"target":416},{"source":52,"target":417},{"source":52,"target":418},{"source":52,"target":419},{"source":406,"target":63},{"source":406,"target":420},{"source":406,"target":52},{"source":420,"target":63},{"source":407,"target":62},{"source":407,"target":421},{"source":407,"target":52},{"source":421,"target":62},{"source":408,"target":422},{"source":408,"target":52},{"source":409,"target":423},{"source":409,"target":52},{"source":410,"target":424},{"source":410,"target":52},{"source":411,"target":425},{"source":411,"target":52},{"source":412,"target":426},{"source":412,"target":52},{"source":413,"target":427},{"source":413,"target":52},{"source":414,"target":428},{"source":414,"target":52},{"source":415,"target":429},{"source":415,"target":52},{"source":416,"target":430},{"source":416,"target":52},{"source":417,"target":431},{"source":417,"target":52},{"source":418,"target":432},{"source":418,"target":52},{"source":419,"target":3},{"source":53,"target":0},{"source":53,"target":2},{"source":53,"target":433},{"source":53,"target":434},{"source":53,"target":435},{"source":53,"target":436},{"source":53,"target":437},{"source":53,"target":438},{"source":53,"target":439},{"source":53,"target":440},{"source":433,"target":441},{"source":433,"target":53},{"source":434,"target":442},{"source":434,"target":53},{"source":435,"target":443},{"source":435,"target":53},{"source":436,"target":444},{"source":436,"target":53},{"source":437,"target":445},{"source":437,"target":53},{"source":438,"target":446},{"source":438,"target":53},{"source":439,"target":447},{"source":439,"target":53},{"source":440,"target":448},{"source":440,"target":2},{"source":448,"target":54},{"source":54,"target":0},{"source":54,"target":3},{"source":54,"target":449},{"source":54,"target":450},{"source":54,"target":451},{"source":54,"target":452},{"source":54,"target":453},{"source":54,"target":454},{"source":54,"target":455},{"source":449,"target":456},{"source":449,"target":54},{"source":450,"target":457},{"source":450,"target":54},{"source":451,"target":55},{"source":451,"target":458},{"source":451,"target":54},{"source":458,"target":55},{"source":452,"target":55},{"source":452,"target":459},{"source":452,"target":54},{"source":459,"target":55},{"source":453,"target":55},{"source":453,"target":460},{"source":453,"target":54},{"source":460,"target":55},{"source":454,"target":55},{"source":454,"target":461},{"source":454,"target":54},{"source":461,"target":55},{"source":455,"target":3},{"source":55,"target":0},{"source":55,"target":462},{"source":55,"target":463},{"source":55,"target":464},{"source":55,"target":465},{"source":55,"target":466},{"source":462,"target":56},{"source":462,"target":467},{"source":462,"target":55},{"source":467,"target":56},{"source":463,"target":4},{"source":463,"target":468},{"source":463,"target":55},{"source":468,"target":4},{"source":464,"target":469},{"source":464,"target":55},{"source":465,"target":470},{"source":465,"target":55},{"source":466,"target":471},{"source":466,"target":55},{"source":56,"target":0},{"source":56,"target":472},{"source":56,"target":473},{"source":56,"target":474},{"source":56,"target":475},{"source":56,"target":476},{"source":56,"target":477},{"source":472,"target":56},{"source":473,"target":56},{"source":474,"target":56},{"source":475,"target":56},{"source":476,"target":56},{"source":477,"target":56},{"source":57,"target":0},{"source":57,"target":478},{"source":57,"target":479},{"source":478,"target":57},{"source":479,"target":57},{"source":58,"target":0},{"source":58,"target":480},{"source":58,"target":481},{"source":58,"target":482},{"source":58,"target":483},{"source":58,"target":484},{"source":480,"target":58},{"source":481,"target":58},{"source":482,"target":58},{"source":483,"target":58},{"source":484,"target":58},{"source":59,"target":0},{"source":59,"target":485},{"source":59,"target":486},{"source":59,"target":487},{"source":59,"target":488},{"source":59,"target":489},{"source":485,"target":59},{"source":486,"target":59},{"source":487,"target":59},{"source":488,"target":59},{"source":489,"target":59},{"source":60,"target":0},{"source":60,"target":490},{"source":60,"target":491},{"source":490,"target":60},{"source":491,"target":60},{"source":61,"target":0},{"source":61,"target":492},{"source":61,"target":493},{"source":492,"target":61},{"source":493,"target":61},{"source":62,"target":0},{"source":62,"target":494},{"source":62,"target":495},{"source":62,"target":496},{"source":62,"target":497},{"source":494,"target":62},{"source":495,"target":62},{"source":496,"target":62},{"source":497,"target":62},{"source":63,"target":0},{"source":63,"target":498},{"source":63,"target":499},{"source":63,"target":500},{"source":63,"target":501},{"source":498,"target":63},{"source":499,"target":63},{"source":500,"target":63},{"source":501,"target":63},{"source":64,"target":0},{"source":64,"target":502},{"source":64,"target":503},{"source":502,"target":64},{"source":503,"target":64},{"source":65,"target":0},{"source":65,"target":504},{"source":65,"target":505},{"source":65,"target":506},{"source":504,"target":65},{"source":505,"target":65},{"source":506,"target":65},{"source":66,"target":0},{"source":66,"target":507},{"source":66,"target":508},{"source":507,"target":66},{"source":508,"target":66},{"source":67,"target":0},{"source":67,"target":509},{"source":67,"target":510},{"source":67,"target":511},{"source":67,"target":512},{"source":67,"target":513},{"source":509,"target":67},{"source":510,"target":67},{"source":511,"target":67},{"source":512,"target":67},{"source":513,"target":67},{"source":68,"target":0},{"source":68,"target":514},{"source":68,"target":515},{"source":68,"target":516},{"source":514,"target":68},{"source":515,"target":68},{"source":516,"target":68},{"source":69,"target":0},{"source":69,"target":517},{"source":69,"target":518},{"source":69,"target":519},{"source":517,"target":69},{"source":518,"target":69},{"source":519,"target":69},{"source":70,"target":0},{"source":70,"target":520},{"source":70,"target":521},{"source":70,"target":522},{"source":70,"target":523},{"source":70,"target":524},{"source":70,"target":525},{"source":70,"target":526},{"source":520,"target":527},{"source":520,"target":70},{"source":521,"target":71},{"source":521,"target":528},{"source":521,"target":70},{"source":528,"target":71},{"source":522,"target":72},{"source":522,"target":529},{"source":522,"target":70},{"source":529,"target":72},{"source":523,"target":73},{"source":523,"target":530},{"source":523,"target":70},{"source":530,"target":73},{"source":524,"target":531},{"source":524,"target":70},{"source":525,"target":532},{"source":525,"target":70},{"source":526,"target":533},{"source":526,"target":70},{"source":71,"target":0},{"source":71,"target":534},{"source":71,"target":535},{"source":71,"target":536},{"source":71,"target":537},{"source":71,"target":538},{"source":71,"target":539},{"source":534,"target":71},{"source":535,"target":71},{"source":536,"target":71},{"source":537,"target":71},{"source":538,"target":71},{"source":539,"target":71},{"source":72,"target":0},{"source":72,"target":540},{"source":72,"target":541},{"source":72,"target":542},{"source":540,"target":72},{"source":541,"target":72},{"source":542,"target":72},{"source":73,"target":0},{"source":73,"target":543},{"source":73,"target":544},{"source":73,"target":545},{"source":543,"target":73},{"source":544,"target":73},{"source":545,"target":73},{"source":74,"target":0},{"source":75,"target":0},{"source":75,"target":15},{"source":75,"target":546},{"source":75,"target":547},{"source":75,"target":548},{"source":546,"target":549},{"source":546,"target":75},{"source":547,"target":550},{"source":547,"target":75},{"source":548,"target":15},{"source":76,"target":0},{"source":76,"target":4},{"source":76,"target":551},{"source":76,"target":552},{"source":76,"target":553},{"source":76,"target":554},{"source":76,"target":555},{"source":76,"target":556},{"source":76,"target":557},{"source":551,"target":75},{"source":551,"target":558},{"source":551,"target":76},{"source":558,"target":75},{"source":552,"target":559},{"source":552,"target":76},{"source":553,"target":560},{"source":553,"target":76},{"source":554,"target":75},{"source":554,"target":561},{"source":554,"target":76},{"source":561,"target":75},{"source":555,"target":77},{"source":555,"target":562},{"source":555,"target":76},{"source":562,"target":77},{"source":556,"target":80},{"source":556,"target":563},{"source":556,"target":76},{"source":563,"target":80},{"source":557,"target":4},{"source":77,"target":0},{"source":77,"target":564},{"source":77,"target":565},{"source":77,"target":566},{"source":564,"target":77},{"source":565,"target":77},{"source":566,"target":77},{"source":78,"target":0},{"source":78,"target":567},{"source":78,"target":568},{"source":78,"target":569},{"source":567,"target":570},{"source":570,"target":4},{"source":568,"target":4},{"source":568,"target":571},{"source":568,"target":78},{"source":571,"target":567},{"source":569,"target":79},{"source":569,"target":572},{"source":569,"target":78},{"source":572,"target":79},{"source":79,"target":0},{"source":80,"target":0},{"source":80,"target":78},{"source":80,"target":573},{"source":573,"target":574},{"source":573,"target":78},{"source":574,"target":76}],"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="TypeC" nsURI="platform:/resource/A2BMatched/Metamodel/TypeC.ecore" nsPrefix="tpC"> <eClassifiers xsi:type="ecore:EClass" name="CElement"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="elementName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> </ecore:EPackage>
github:ecore:/data/NMFCode/ATL2NMFS/resources/A2BMatched/TypeC.ecore
ecore
TypeC CElement elementName
null
{"directed":true,"nodes":[{"nsPrefix":"tpC","nsURI":"platform:/resource/A2BMatched/Metamodel/TypeC.ecore","name":"TypeC","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CElement","instanceClass":null,"abstract":false,"id":1,"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":"elementName","changeable":true,"lowerBound":0,"iD":false,"id":2,"derived":false},{"id":3,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":1,"target":0},{"source":1,"target":2},{"source":2,"target":3},{"source":2,"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="TypeC" nsURI="platform:/resource/A2BMultipleOutput/Metamodel/TypeC.ecore" nsPrefix="tpC"> <eClassifiers xsi:type="ecore:EClass" name="CElement"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="elementName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> </ecore:EPackage>
github:ecore:/data/NMFCode/ATL2NMFS/resources/A2BMultipleOutput/TypeC.ecore
ecore
TypeC CElement elementName
null
{"directed":true,"nodes":[{"nsPrefix":"tpC","nsURI":"platform:/resource/A2BMultipleOutput/Metamodel/TypeC.ecore","name":"TypeC","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CElement","instanceClass":null,"abstract":false,"id":1,"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":"elementName","changeable":true,"lowerBound":0,"iD":false,"id":2,"derived":false},{"id":3,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":1,"target":0},{"source":1,"target":2},{"source":2,"target":3},{"source":2,"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="datatypes" nsURI="http://www.ibm.com/xmlns/prod/commerce/member" nsPrefix="Member"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="&#xD;&#xA;&#x9;&#x9;&#x9;This foundation XML schema file defines the common elements and types shared by the&#xD;&#xA;&#x9;&#x9;&#x9;entire schema.&#xD;&#xA;&#x9;&#x9;"/> </eAnnotations> <eClassifiers xsi:type="ecore:EClass" name="BusinessProfileType"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="BusinessProfileType"/> <details key="kind" value="elementOnly"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="businessTitle" unique="false" 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 business title."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="BusinessTitle"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="organizationName" unique="false" 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 of the organization."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="OrganizationName"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="organizationalUnitName" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Name of the organizational unit."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="OrganizationalUnitName"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="employeeID" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A method to identify the employee, such as by employee number. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="EmployeeID"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="alternateID" 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="A special ID assigned by the organization or organizational unit to which this business user belongs. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="AlternateID"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="employeeType" unique="false" 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 employee type, such as regular, part time, special part time, supplemental, and contractor. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="EmployeeType"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="officeAddress" eType="ecore:EClass com.ibm.commerce.foundation.datatypes.ecore#//AddressType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The office address."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="OfficeAddress"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="departmentNumber" unique="false" 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 department number for the business user. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="DepartmentNumber"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="manager" unique="false" 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 of the manager or supervisor or this his business user. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="Manager"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="secretary" unique="false" 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 of the secretary or administrative assistant of the business user. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="Secretary"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="requisitionerID" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A unique ID for identifying the requisitioner. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="RequisitionerID"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="userArea" eType="ecore:EClass com.ibm.commerce.foundation.datatypes.ecore#//UserDataType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="User data."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="UserArea"/> <details key="namespace" value="##targetNamespace"/> </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="organization" upperBound="-2" eType="#//OrganizationType" 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="Organization"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="syncOrganization" upperBound="-2" eType="#//SyncOrganizationType" 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="SyncOrganization"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="person" upperBound="-2" eType="#//PersonType" 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="Person"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="syncPerson" upperBound="-2" eType="#//SyncPersonType" 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="SyncPerson"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="OrganizationType"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="OrganizationType"/> <details key="kind" value="elementOnly"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="organizationIdentifier" eType="ecore:EClass com.ibm.commerce.foundation.datatypes.ecore#//OrganizationIdentifierType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The organization identifier."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="OrganizationIdentifier"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="parentIdentifier" eType="ecore:EClass com.ibm.commerce.foundation.datatypes.ecore#//OrganizationIdentifierType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The identifier for the parent."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="ParentIdentifier"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="organizationName" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Short name for organization (O) or organization unit (OU). Not null is a requirement since it will be mapped to O or OU which are required attributes in LDAP. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="OrganizationName"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="organizationType" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Type of OrgEntity. Valid values are as follows:&#xD;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;O = organization&#xD;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;OU = organization unit &#xD;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="OrganizationType"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="businessCategory" unique="false" 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 business category, which describes the kind of business performed by an OrgEntity. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="BusinessCategory"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="description" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A description of the OrgEntity. "/> </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="contactInfo" eType="ecore:EClass com.ibm.commerce.foundation.datatypes.ecore#//ContactInfoType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The primary contact information."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="ContactInfo"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="contactList" eType="ecore:EClass com.ibm.commerce.foundation.datatypes.ecore#//ContactListType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A list of the contact information."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="ContactList"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="contextAttribute" upperBound="-1" eType="ecore:EClass com.ibm.commerce.foundation.datatypes.ecore#//AttributeType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The context attribute."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="ContextAttribute"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="userArea" eType="ecore:EClass com.ibm.commerce.foundation.datatypes.ecore#//UserDataType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="User data."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="UserArea"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="PersonalProfileType"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="PersonalProfileType"/> <details key="kind" value="elementOnly"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="preferredCurrency" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Preferred currency in 3-character alphabetic code as per ISO 4217. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="PreferredCurrency"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="preferredLanguage" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Preferred language."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="PreferredLanguage"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="displayName" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Display name of the entry. This is a name used in displaying an entry in a one line summary list. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="DisplayName"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="photoURL" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A location for the photograph of the person. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="PhotoURL"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="preferredMeasure" unique="false" 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 preferred measure."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="PreferredMeasure"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="preferredCommunication" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Preferred method of communication by phone. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="PreferredCommunication"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="preferredDelivery" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Preferred delivery method. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="PreferredDelivery"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="description" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Description of the person. "/> </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="gender" unique="false" 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 gender of the person. Valid values are as follows:&#xD;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;F = female &#xD;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;M = male &#xD;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;N = not provided &#xD;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;If not provided, N is used as the default. &#xD;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="Gender"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="birthDay" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//Date"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The birthday of the person."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="BirthDay"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="income" unique="false" 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 annual income for the person."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="Income"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="maritalStatus" unique="false" 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 marital status of the person."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="MaritalStatus"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="incomeCurrency" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Currency for the income of the person."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="IncomeCurrency"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="numberOfChildren" unique="false" 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 number of children that the person has. If not provided, the default is 0. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="NumberOfChildren"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="household" unique="false" 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="Number of people in the household. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="Household"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="companyName" unique="false" 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 company for which the person works. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="CompanyName"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="hobbies" 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 main interests and hobbies of the person."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="Hobbies"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="timezone" unique="false" 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 time zone in which the person resides. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="Timezone"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="userArea" eType="ecore:EClass com.ibm.commerce.foundation.datatypes.ecore#//UserDataType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="User data."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="UserArea"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="PersonType"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="PersonType"/> <details key="kind" value="elementOnly"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="personIdentifier" eType="ecore:EClass com.ibm.commerce.foundation.datatypes.ecore#//PersonIdentifierType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The person identifier."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="PersonIdentifier"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="parentIdentifier" eType="ecore:EClass com.ibm.commerce.foundation.datatypes.ecore#//OrganizationIdentifierType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The identifier for the parent."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="ParentIdentifier"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="name" eType="ecore:EClass com.ibm.commerce.foundation.datatypes.ecore#//PersonNameType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The person's name."/> </eAnnotations> <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="personalProfile" eType="#//PersonalProfileType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The personal profile."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="PersonalProfile"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="businessProfile" eType="#//BusinessProfileType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The business profile."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="BusinessProfile"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="authentication" eType="ecore:EClass com.ibm.commerce.foundation.datatypes.ecore#//AuthenticationType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The authentication information."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="Authentication"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="contactInfo" eType="ecore:EClass com.ibm.commerce.foundation.datatypes.ecore#//ContactInfoType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The primary contact information."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="ContactInfo"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="contactList" eType="ecore:EClass com.ibm.commerce.foundation.datatypes.ecore#//ContactListType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A list of the contact information."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="ContactList"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="contextAttribute" upperBound="-1" eType="ecore:EClass com.ibm.commerce.foundation.datatypes.ecore#//AttributeType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The context attribute."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="ContextAttribute"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="userArea" eType="ecore:EClass com.ibm.commerce.foundation.datatypes.ecore#//UserDataType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="User data."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="UserArea"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="SyncOrganizationDataAreaType"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="SyncOrganizationDataAreaType"/> <details key="kind" value="elementOnly"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="sync" lowerBound="1" eType="ecore:EClass com.ibm.commerce.oagis9.datatypes.ecore#//SyncType" containment="true" resolveProxies="false"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="Sync"/> <details key="namespace" value="http://www.openapplications.org/oagis/9"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="organization" upperBound="-1" eType="#//OrganizationType" containment="true" resolveProxies="false"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="Organization"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="SyncOrganizationType" eSuperTypes="com.ibm.commerce.oagis9.datatypes.ecore#//BusinessObjectDocumentType"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="SyncOrganizationType"/> <details key="kind" value="elementOnly"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="dataArea" lowerBound="1" eType="#//SyncOrganizationDataAreaType" containment="true" resolveProxies="false"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="DataArea"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="SyncPersonDataAreaType"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="SyncPersonDataAreaType"/> <details key="kind" value="elementOnly"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="sync" lowerBound="1" eType="ecore:EClass com.ibm.commerce.oagis9.datatypes.ecore#//SyncType" containment="true" resolveProxies="false"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="Sync"/> <details key="namespace" value="http://www.openapplications.org/oagis/9"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="person" upperBound="-1" eType="#//PersonType" containment="true" resolveProxies="false"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="Person"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="SyncPersonType" eSuperTypes="com.ibm.commerce.oagis9.datatypes.ecore#//BusinessObjectDocumentType"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="SyncPersonType"/> <details key="kind" value="elementOnly"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="dataArea" lowerBound="1" eType="#//SyncPersonDataAreaType" containment="true" resolveProxies="false"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="DataArea"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> </ecore:EPackage>
github:ecore:/data/MagMar94/ParmorelExperimentResults/Experiments/Experimen-compare-preferences/ACMR/bestWeight02/100_com.ibm.commerce.member.datatypes.ecore
ecore
datatypes BusinessProfileType businessTitle organizationName organizationalUnitName employeeID alternateID employeeType officeAddress departmentNumber manager secretary requisitionerID userArea DocumentRoot mixed xMLNSPrefixMap xSISchemaLocation organization syncOrganization person syncPerson OrganizationType organizationIdentifier parentIdentifier organizationName organizationType businessCategory description contactInfo contactList contextAttribute userArea PersonalProfileType preferredCurrency preferredLanguage displayName photoURL preferredMeasure preferredCommunication preferredDelivery description gender birthDay income maritalStatus incomeCurrency numberOfChildren household companyName hobbies timezone userArea PersonType personIdentifier parentIdentifier name personalProfile businessProfile authentication contactInfo contactList contextAttribute userArea SyncOrganizationDataAreaType sync organization SyncOrganizationType dataArea SyncPersonDataAreaType sync person SyncPersonType dataArea
null
{"directed":true,"nodes":[{"nsPrefix":"Member","nsURI":"http://www.ibm.com/xmlns/prod/commerce/member","name":"datatypes","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BusinessProfileType","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":"OrganizationType","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PersonalProfileType","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PersonType","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SyncOrganizationDataAreaType","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SyncOrganizationType","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SyncPersonDataAreaType","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SyncPersonType","instanceClass":null,"abstract":false,"id":9,"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":"businessTitle","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":false,"name":"organizationName","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":false,"name":"organizationalUnitName","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":false,"name":"employeeID","changeable":true,"lowerBound":0,"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":"alternateID","changeable":true,"lowerBound":0,"iD":false,"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":false,"name":"employeeType","changeable":true,"lowerBound":0,"iD":false,"id":15,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"officeAddress","changeable":true,"resolveProxies":false,"lowerBound":0,"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":false,"name":"departmentNumber","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":false,"name":"manager","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":false,"name":"secretary","changeable":true,"lowerBound":0,"iD":false,"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":false,"name":"requisitionerID","changeable":true,"lowerBound":0,"iD":false,"id":20,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"userArea","changeable":true,"resolveProxies":false,"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"},{"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":"mixed","changeable":true,"lowerBound":0,"iD":false,"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":true,"unique":false,"name":"xMLNSPrefixMap","changeable":true,"resolveProxies":false,"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":true,"unique":false,"name":"xSISchemaLocation","changeable":true,"resolveProxies":false,"lowerBound":0,"id":36,"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":"organization","changeable":true,"resolveProxies":false,"lowerBound":0,"id":37,"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":"syncOrganization","changeable":true,"resolveProxies":false,"lowerBound":0,"id":38,"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":"person","changeable":true,"resolveProxies":false,"lowerBound":0,"id":39,"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":"syncPerson","changeable":true,"resolveProxies":false,"lowerBound":0,"id":40,"derived":true},{"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"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"organizationIdentifier","changeable":true,"resolveProxies":false,"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":"parentIdentifier","changeable":true,"resolveProxies":false,"lowerBound":0,"id":49,"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":"organizationName","changeable":true,"lowerBound":0,"iD":false,"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":false,"name":"organizationType","changeable":true,"lowerBound":0,"iD":false,"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":false,"name":"businessCategory","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":false,"name":"description","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":"contactInfo","changeable":true,"resolveProxies":false,"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":"contactList","changeable":true,"resolveProxies":false,"lowerBound":0,"id":55,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"contextAttribute","changeable":true,"resolveProxies":false,"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":"userArea","changeable":true,"resolveProxies":false,"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"},{"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":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"preferredCurrency","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":false,"name":"preferredLanguage","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":false,"name":"displayName","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":false,"name":"photoURL","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":false,"name":"preferredMeasure","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":false,"name":"preferredCommunication","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":false,"name":"preferredDelivery","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":false,"name":"description","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":false,"name":"gender","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":false,"name":"birthDay","changeable":true,"lowerBound":0,"iD":false,"id":77,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":false,"name":"income","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":false,"name":"maritalStatus","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":false,"name":"incomeCurrency","changeable":true,"lowerBound":0,"iD":false,"id":80,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":false,"name":"numberOfChildren","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":true,"transient":false,"unique":false,"name":"household","changeable":true,"lowerBound":0,"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":false,"name":"companyName","changeable":true,"lowerBound":0,"iD":false,"id":83,"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":"hobbies","changeable":true,"lowerBound":0,"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":false,"name":"timezone","changeable":true,"lowerBound":0,"iD":false,"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":"userArea","changeable":true,"resolveProxies":false,"lowerBound":0,"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"},{"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"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"personIdentifier","changeable":true,"resolveProxies":false,"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":"parentIdentifier","changeable":true,"resolveProxies":false,"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":"name","changeable":true,"resolveProxies":false,"lowerBound":0,"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":"personalProfile","changeable":true,"resolveProxies":false,"lowerBound":0,"id":109,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"businessProfile","changeable":true,"resolveProxies":false,"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":true,"unsettable":false,"transient":false,"unique":true,"name":"authentication","changeable":true,"resolveProxies":false,"lowerBound":0,"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":"contactInfo","changeable":true,"resolveProxies":false,"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":"contactList","changeable":true,"resolveProxies":false,"lowerBound":0,"id":113,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"contextAttribute","changeable":true,"resolveProxies":false,"lowerBound":0,"id":114,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"userArea","changeable":true,"resolveProxies":false,"lowerBound":0,"id":115,"derived":false},{"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"},{"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":"sync","changeable":true,"resolveProxies":false,"lowerBound":1,"id":126,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"organization","changeable":true,"resolveProxies":false,"lowerBound":0,"id":127,"derived":false},{"id":128,"eClass":"EGenericType"},{"id":129,"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":"dataArea","changeable":true,"resolveProxies":false,"lowerBound":1,"id":130,"derived":false},{"id":131,"eClass":"EGenericType"},{"id":132,"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":"sync","changeable":true,"resolveProxies":false,"lowerBound":1,"id":133,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"person","changeable":true,"resolveProxies":false,"lowerBound":0,"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":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"dataArea","changeable":true,"resolveProxies":false,"lowerBound":1,"id":137,"derived":false},{"id":138,"eClass":"EGenericType"},{"id":139,"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":1,"target":17},{"source":1,"target":18},{"source":1,"target":19},{"source":1,"target":20},{"source":1,"target":21},{"source":10,"target":22},{"source":10,"target":1},{"source":11,"target":23},{"source":11,"target":1},{"source":12,"target":24},{"source":12,"target":1},{"source":13,"target":25},{"source":13,"target":1},{"source":14,"target":26},{"source":14,"target":1},{"source":15,"target":27},{"source":15,"target":1},{"source":16,"target":28},{"source":16,"target":1},{"source":17,"target":29},{"source":17,"target":1},{"source":18,"target":30},{"source":18,"target":1},{"source":19,"target":31},{"source":19,"target":1},{"source":20,"target":32},{"source":20,"target":1},{"source":21,"target":33},{"source":21,"target":1},{"source":2,"target":0},{"source":2,"target":34},{"source":2,"target":35},{"source":2,"target":36},{"source":2,"target":37},{"source":2,"target":38},{"source":2,"target":39},{"source":2,"target":40},{"source":34,"target":41},{"source":34,"target":2},{"source":35,"target":42},{"source":35,"target":2},{"source":36,"target":43},{"source":36,"target":2},{"source":37,"target":3},{"source":37,"target":44},{"source":37,"target":2},{"source":44,"target":3},{"source":38,"target":7},{"source":38,"target":45},{"source":38,"target":2},{"source":45,"target":7},{"source":39,"target":5},{"source":39,"target":46},{"source":39,"target":2},{"source":46,"target":5},{"source":40,"target":9},{"source":40,"target":47},{"source":40,"target":2},{"source":47,"target":9},{"source":3,"target":0},{"source":3,"target":48},{"source":3,"target":49},{"source":3,"target":50},{"source":3,"target":51},{"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":48,"target":58},{"source":48,"target":3},{"source":49,"target":59},{"source":49,"target":3},{"source":50,"target":60},{"source":50,"target":3},{"source":51,"target":61},{"source":51,"target":3},{"source":52,"target":62},{"source":52,"target":3},{"source":53,"target":63},{"source":53,"target":3},{"source":54,"target":64},{"source":54,"target":3},{"source":55,"target":65},{"source":55,"target":3},{"source":56,"target":66},{"source":56,"target":3},{"source":57,"target":67},{"source":57,"target":3},{"source":4,"target":0},{"source":4,"target":68},{"source":4,"target":69},{"source":4,"target":70},{"source":4,"target":71},{"source":4,"target":72},{"source":4,"target":73},{"source":4,"target":74},{"source":4,"target":75},{"source":4,"target":76},{"source":4,"target":77},{"source":4,"target":78},{"source":4,"target":79},{"source":4,"target":80},{"source":4,"target":81},{"source":4,"target":82},{"source":4,"target":83},{"source":4,"target":84},{"source":4,"target":85},{"source":4,"target":86},{"source":68,"target":87},{"source":68,"target":4},{"source":69,"target":88},{"source":69,"target":4},{"source":70,"target":89},{"source":70,"target":4},{"source":71,"target":90},{"source":71,"target":4},{"source":72,"target":91},{"source":72,"target":4},{"source":73,"target":92},{"source":73,"target":4},{"source":74,"target":93},{"source":74,"target":4},{"source":75,"target":94},{"source":75,"target":4},{"source":76,"target":95},{"source":76,"target":4},{"source":77,"target":96},{"source":77,"target":4},{"source":78,"target":97},{"source":78,"target":4},{"source":79,"target":98},{"source":79,"target":4},{"source":80,"target":99},{"source":80,"target":4},{"source":81,"target":100},{"source":81,"target":4},{"source":82,"target":101},{"source":82,"target":4},{"source":83,"target":102},{"source":83,"target":4},{"source":84,"target":103},{"source":84,"target":4},{"source":85,"target":104},{"source":85,"target":4},{"source":86,"target":105},{"source":86,"target":4},{"source":5,"target":0},{"source":5,"target":106},{"source":5,"target":107},{"source":5,"target":108},{"source":5,"target":109},{"source":5,"target":110},{"source":5,"target":111},{"source":5,"target":112},{"source":5,"target":113},{"source":5,"target":114},{"source":5,"target":115},{"source":106,"target":116},{"source":106,"target":5},{"source":107,"target":117},{"source":107,"target":5},{"source":108,"target":118},{"source":108,"target":5},{"source":109,"target":4},{"source":109,"target":119},{"source":109,"target":5},{"source":119,"target":4},{"source":110,"target":1},{"source":110,"target":120},{"source":110,"target":5},{"source":120,"target":1},{"source":111,"target":121},{"source":111,"target":5},{"source":112,"target":122},{"source":112,"target":5},{"source":113,"target":123},{"source":113,"target":5},{"source":114,"target":124},{"source":114,"target":5},{"source":115,"target":125},{"source":115,"target":5},{"source":6,"target":0},{"source":6,"target":126},{"source":6,"target":127},{"source":126,"target":128},{"source":126,"target":6},{"source":127,"target":3},{"source":127,"target":129},{"source":127,"target":6},{"source":129,"target":3},{"source":7,"target":0},{"source":7,"target":130},{"source":7,"target":131},{"source":130,"target":6},{"source":130,"target":132},{"source":130,"target":7},{"source":132,"target":6},{"source":8,"target":0},{"source":8,"target":133},{"source":8,"target":134},{"source":133,"target":135},{"source":133,"target":8},{"source":134,"target":5},{"source":134,"target":136},{"source":134,"target":8},{"source":136,"target":5},{"source":9,"target":0},{"source":9,"target":137},{"source":9,"target":138},{"source":137,"target":8},{"source":137,"target":139},{"source":137,"target":9},{"source":139,"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="TypeC" nsURI="platform:/resource/A2BMultOut/Metamodel/TypeC.ecore" nsPrefix="tpC"> <eClassifiers xsi:type="ecore:EClass" name="CElement"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="elementName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> </ecore:EPackage>
github:ecore:/data/NMFCode/ATL2NMFS/resources/A2BMultOut/TypeC.ecore
ecore
TypeC CElement elementName
null
{"directed":true,"nodes":[{"nsPrefix":"tpC","nsURI":"platform:/resource/A2BMultOut/Metamodel/TypeC.ecore","name":"TypeC","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CElement","instanceClass":null,"abstract":false,"id":1,"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":"elementName","changeable":true,"lowerBound":0,"iD":false,"id":2,"derived":false},{"id":3,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":1,"target":0},{"source":1,"target":2},{"source":2,"target":3},{"source":2,"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="example" nsURI="http://www.example.org/examples/example.ecore" nsPrefix="ex"> <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:EEnum" name="Sexe" serializable="false"> <eLiterals name="MALE" value="1"/> <eLiterals name="FEMELLE"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="EcoleTortues"> <eStructuralFeatures xsi:type="ecore:EReference" name="entries" ordered="false" upperBound="-1" eType="#//Tortue" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Aliment"> <eStructuralFeatures xsi:type="ecore:EReference" name="typeAliment" eType="#//TypeAliment" eOpposite="#//TypeAliment/alim"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="TypeAliment"> <eStructuralFeatures xsi:type="ecore:EReference" name="alim" ordered="false" upperBound="-1" eType="#//Aliment" eOpposite="#//Aliment/typeAliment"/> <eStructuralFeatures xsi:type="ecore:EReference" name="alim2" eType="#//ModeElevage" eOpposite="#//ModeElevage/regimeCaptivite"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ModeElevage"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="tempJour" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBigInteger"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="tempNuit" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBigInteger"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="terrarium" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="pleinAir" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EReference" name="regimeCaptivite" eType="#//TypeAliment" eOpposite="#//TypeAliment/alim2"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="EspeceTortue"> <eOperations name="nourriturePossible" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"> <eParameters name="t" eType="#//TypeAliment"/> </eOperations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="nomLatin" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="tailleMaxAdulte" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBigInteger"/> <eStructuralFeatures xsi:type="ecore:EReference" name="tortue" ordered="false" upperBound="-1" eType="#//Tortue" eOpposite="#//Tortue/espece"/> <eStructuralFeatures xsi:type="ecore:EReference" name="tortueEstDans" eType="#//RepartitionGeographique" eOpposite="#//RepartitionGeographique/repartitionGeo"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="RepartitionGeographique"> <eStructuralFeatures xsi:type="ecore:EReference" name="repartition" ordered="false" upperBound="-1" eType="#//Lieu" eOpposite="#//Lieu/estDans"/> <eStructuralFeatures xsi:type="ecore:EReference" name="repartitionGeo" ordered="false" upperBound="-1" eType="#//EspeceTortue" eOpposite="#//EspeceTortue/tortueEstDans"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="TypeMilieu"> <eStructuralFeatures xsi:type="ecore:EReference" name="typeMilieux" ordered="false" upperBound="-1" eType="#//Lieu" eOpposite="#//Lieu/lieux"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Lieu"> <eStructuralFeatures xsi:type="ecore:EReference" name="lieu" ordered="false" upperBound="-1" eType="#//Tortue" containment="true" eOpposite="#//Tortue/habite"/> <eStructuralFeatures xsi:type="ecore:EReference" name="lieux" ordered="false" upperBound="-1" eType="#//TypeMilieu" containment="true" eOpposite="#//TypeMilieu/typeMilieux"/> <eStructuralFeatures xsi:type="ecore:EReference" name="estDans" ordered="false" upperBound="-1" eType="#//RepartitionGeographique" eOpposite="#//RepartitionGeographique/repartition"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Tortue"> <eOperations name="mange"> <eParameters name="a" eType="#//Aliment"/> </eOperations> <eOperations name="changeTaille"> <eParameters name="nelleTaille" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBigInteger"/> </eOperations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="nom" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"> <eAnnotations source="http://www.eclipse.org/emf/2002/Ecore/OCL/Pivot"> <details key="derivation" value="'inconnu'"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="age" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBigInteger"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="taille" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBigInteger"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="sexe" eType="#//Sexe"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="dateNote" ordered="false" upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="captive" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EReference" name="espece" eType="#//EspeceTortue" eOpposite="#//EspeceTortue/tortue"/> <eStructuralFeatures xsi:type="ecore:EReference" name="habite" eType="#//Lieu" eOpposite="#//Lieu/lieu"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="RepartitionGeographique"> <eStructuralFeatures xsi:type="ecore:EReference" name="lieux" ordered="false" upperBound="-1" eType="#//Lieu" containment="true"/> </eClassifiers> </ecore:EPackage>
github:ecore:/data/Doelia/M2-modeles/eclipse/1103m_TP_tortue/model/MesTortues.ecore
ecore
example Sexe MALE MALE FEMELLE FEMELLE EcoleTortues entries Aliment typeAliment TypeAliment alim alim2 ModeElevage tempJour tempNuit terrarium pleinAir regimeCaptivite EspeceTortue nourriturePossible t nomLatin tailleMaxAdulte tortue tortueEstDans RepartitionGeographique repartition repartitionGeo TypeMilieu typeMilieux Lieu lieu lieux estDans Tortue mange a changeTaille nelleTaille nom age taille sexe dateNote captive espece habite RepartitionGeographique lieux
null
{"directed":true,"nodes":[{"nsPrefix":"ex","nsURI":"http://www.example.org/examples/example.ecore","name":"example","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"instanceClassName":null,"name":"Sexe","instanceClass":null,"id":1,"serializable":false,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EcoleTortues","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Aliment","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TypeAliment","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ModeElevage","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EspeceTortue","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RepartitionGeographique","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TypeMilieu","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Lieu","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Tortue","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RepartitionGeographique","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"name":"MALE","id":12,"value":1,"literal":"MALE","eClass":"EEnumLiteral"},{"name":"FEMELLE","id":13,"value":0,"literal":"FEMELLE","eClass":"EEnumLiteral"},{"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":"entries","changeable":true,"resolveProxies":true,"lowerBound":0,"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":"typeAliment","changeable":true,"resolveProxies":true,"lowerBound":0,"id":16,"derived":false},{"id":17,"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":"alim","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":false,"unsettable":false,"transient":false,"unique":true,"name":"alim2","changeable":true,"resolveProxies":true,"lowerBound":0,"id":19,"derived":false},{"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":"regimeCaptivite","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":"tempJour","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":"tempNuit","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":"terrarium","changeable":true,"lowerBound":0,"iD":false,"id":25,"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":"pleinAir","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,"unique":true,"name":"nourriturePossible","lowerBound":0,"id":32,"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":"nomLatin","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":"tailleMaxAdulte","changeable":true,"lowerBound":0,"iD":false,"id":34,"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":"tortue","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":"tortueEstDans","changeable":true,"resolveProxies":true,"lowerBound":0,"id":36,"derived":false},{"id":37,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"t","lowerBound":0,"id":38,"many":false,"required":false,"eClass":"EParameter"},{"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":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"espece","changeable":true,"resolveProxies":true,"lowerBound":0,"id":43,"derived":false},{"id":44,"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":"repartitionGeo","changeable":true,"resolveProxies":true,"lowerBound":0,"id":45,"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":"repartition","changeable":true,"resolveProxies":true,"lowerBound":0,"id":46,"derived":false},{"id":47,"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":"estDans","changeable":true,"resolveProxies":true,"lowerBound":0,"id":48,"derived":false},{"id":49,"eClass":"EGenericType"},{"container":true,"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":"typeMilieux","changeable":true,"resolveProxies":true,"lowerBound":0,"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":true,"unsettable":false,"transient":false,"unique":true,"name":"lieux","changeable":true,"resolveProxies":true,"lowerBound":0,"id":52,"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":"lieu","changeable":true,"resolveProxies":true,"lowerBound":0,"id":53,"derived":false},{"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":"habite","changeable":true,"resolveProxies":true,"lowerBound":0,"id":55,"derived":false},{"id":56,"eClass":"EGenericType"},{"id":57,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"mange","lowerBound":0,"id":58,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"changeTaille","lowerBound":0,"id":59,"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":"nom","changeable":true,"lowerBound":0,"iD":false,"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":"age","changeable":true,"lowerBound":0,"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":true,"name":"taille","changeable":true,"lowerBound":0,"iD":false,"id":62,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"sexe","changeable":true,"lowerBound":0,"iD":false,"id":63,"derived":false},{"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"dateNote","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":false,"transient":false,"unique":true,"name":"captive","changeable":true,"lowerBound":0,"iD":false,"id":65,"derived":false},{"ordered":true,"upperBound":1,"unique":true,"name":"a","lowerBound":0,"id":66,"many":false,"required":false,"eClass":"EParameter"},{"id":67,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"nelleTaille","lowerBound":0,"id":68,"many":false,"required":false,"eClass":"EParameter"},{"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":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"lieux","changeable":true,"resolveProxies":true,"lowerBound":0,"id":78,"derived":false},{"id":79,"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":12,"target":1},{"source":13,"target":1},{"source":2,"target":0},{"source":2,"target":14},{"source":14,"target":10},{"source":14,"target":15},{"source":14,"target":2},{"source":15,"target":10},{"source":3,"target":0},{"source":3,"target":16},{"source":16,"target":4},{"source":16,"target":17},{"source":16,"target":3},{"source":16,"target":18},{"source":17,"target":4},{"source":4,"target":0},{"source":4,"target":18},{"source":4,"target":19},{"source":18,"target":3},{"source":18,"target":20},{"source":18,"target":4},{"source":18,"target":16},{"source":20,"target":3},{"source":19,"target":5},{"source":19,"target":21},{"source":19,"target":4},{"source":19,"target":22},{"source":21,"target":5},{"source":5,"target":0},{"source":5,"target":23},{"source":5,"target":24},{"source":5,"target":25},{"source":5,"target":26},{"source":5,"target":22},{"source":23,"target":27},{"source":23,"target":5},{"source":24,"target":28},{"source":24,"target":5},{"source":25,"target":29},{"source":25,"target":5},{"source":26,"target":30},{"source":26,"target":5},{"source":22,"target":4},{"source":22,"target":31},{"source":22,"target":5},{"source":22,"target":19},{"source":31,"target":4},{"source":6,"target":0},{"source":6,"target":32},{"source":6,"target":33},{"source":6,"target":34},{"source":6,"target":35},{"source":6,"target":36},{"source":32,"target":37},{"source":32,"target":6},{"source":32,"target":38},{"source":38,"target":4},{"source":38,"target":39},{"source":38,"target":32},{"source":39,"target":4},{"source":33,"target":40},{"source":33,"target":6},{"source":34,"target":41},{"source":34,"target":6},{"source":35,"target":10},{"source":35,"target":42},{"source":35,"target":6},{"source":35,"target":43},{"source":42,"target":10},{"source":36,"target":7},{"source":36,"target":44},{"source":36,"target":6},{"source":36,"target":45},{"source":44,"target":7},{"source":7,"target":0},{"source":7,"target":46},{"source":7,"target":45},{"source":46,"target":9},{"source":46,"target":47},{"source":46,"target":7},{"source":46,"target":48},{"source":47,"target":9},{"source":45,"target":6},{"source":45,"target":49},{"source":45,"target":7},{"source":45,"target":36},{"source":49,"target":6},{"source":8,"target":0},{"source":8,"target":50},{"source":50,"target":9},{"source":50,"target":51},{"source":50,"target":8},{"source":50,"target":52},{"source":51,"target":9},{"source":9,"target":0},{"source":9,"target":53},{"source":9,"target":52},{"source":9,"target":48},{"source":53,"target":10},{"source":53,"target":54},{"source":53,"target":9},{"source":53,"target":55},{"source":54,"target":10},{"source":52,"target":8},{"source":52,"target":56},{"source":52,"target":9},{"source":52,"target":50},{"source":56,"target":8},{"source":48,"target":7},{"source":48,"target":57},{"source":48,"target":9},{"source":48,"target":46},{"source":57,"target":7},{"source":10,"target":0},{"source":10,"target":58},{"source":10,"target":59},{"source":10,"target":60},{"source":10,"target":61},{"source":10,"target":62},{"source":10,"target":63},{"source":10,"target":64},{"source":10,"target":65},{"source":10,"target":43},{"source":10,"target":55},{"source":58,"target":10},{"source":58,"target":66},{"source":66,"target":3},{"source":66,"target":67},{"source":66,"target":58},{"source":67,"target":3},{"source":59,"target":10},{"source":59,"target":68},{"source":68,"target":69},{"source":68,"target":59},{"source":60,"target":70},{"source":60,"target":10},{"source":61,"target":71},{"source":61,"target":10},{"source":62,"target":72},{"source":62,"target":10},{"source":63,"target":1},{"source":63,"target":73},{"source":63,"target":10},{"source":73,"target":1},{"source":64,"target":74},{"source":64,"target":10},{"source":65,"target":75},{"source":65,"target":10},{"source":43,"target":6},{"source":43,"target":76},{"source":43,"target":10},{"source":43,"target":35},{"source":76,"target":6},{"source":55,"target":9},{"source":55,"target":77},{"source":55,"target":10},{"source":55,"target":53},{"source":77,"target":9},{"source":11,"target":0},{"source":11,"target":78},{"source":78,"target":9},{"source":78,"target":79},{"source":78,"target":11},{"source":79,"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="domain" nsURI="http://www.example.org/domain" nsPrefix="domain"> <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="DomainModel"> <eAnnotations source="http://www.eclipse.org/emf/2002/Ecore"> <details key="constraints" value="valueObjectNameNotEqual"/> </eAnnotations> <eAnnotations source="http://www.eclipse.org/emf/2002/Ecore/OCL/Pivot"> <details key="valueObjectNameNotEqual" value="self.valueobject -> exists(r | self &lt;> r and self.name = r.name) = false"/> </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="entities" upperBound="-1" eType="#//Entity" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="valueobject" upperBound="-1" eType="#//ValueObject" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Entity"> <eAnnotations source="http://www.eclipse.org/emf/2002/Ecore"> <details key="constraints" value="mustCheckRoot mustHaveDifferentName mustHaveDescription mustNotHaveRootReference referenceNameNotEqual fieldNameNotEqual mustHaveDifferentFieldName"/> </eAnnotations> <eAnnotations source="http://www.eclipse.org/emf/2002/Ecore/OCL/Pivot"> <details key="mustCheckRoot" value="root = true or root = false"/> <details key="mustHaveDifferentName" value="self.oclType().allInstances() -> exists(r | self &lt;> r and self.name = r.name) = false"/> <details key="mustHaveDescription" value="name.oclIsInvalid() = false"/> <details key="mustNotHaveRootReference" value="self.root = 'true' implies self.references -> one(Entity.root = 'true') = false"/> <details key="referenceNameNotEqual" value="self.references -> exists(r | self &lt;> r and self.name = r.name) = false"/> <details key="fieldNameNotEqual" value="self.fields -> exists(r | self &lt;> r and self.name = r.name) = false"/> <details key="mustHaveDifferentFieldName" value="self.fields -> exists(r | self &lt;> r and self.name = r.name) = false"/> </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="fields" upperBound="-1" eType="#//Field" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="references" upperBound="-1" eType="#//Reference" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="root" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean" defaultValueLiteral="false"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Field"> <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="#//FieldType" defaultValueLiteral="STRING"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="FieldType"> <eLiterals name="STRING" literal="STRING"/> <eLiterals name="INTEGER" value="1" literal="INTEGER"/> <eLiterals name="REAL" value="2" literal="REAL"/> <eLiterals name="BOOL" value="3" literal="BOOLEAN"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Reference"> <eAnnotations source="http://www.eclipse.org/emf/2002/Ecore"> <details key="constraints" value="mustHaveValueObjectOrEntity needsName mustHaveDifferentReferenceName"/> </eAnnotations> <eAnnotations source="http://www.eclipse.org/emf/2002/Ecore/OCL/Pivot"> <details key="mustHaveValueObjectOrEntity" value="entity.oclIsUndefined() &lt;> valueobject.oclIsUndefined()"/> <details key="needsName" value="name.oclIsUndefined() = false"/> <details key="mustHaveDifferentReferenceName" value="self.oclType().allInstances() -> exists(r | self &lt;> r and self.name = r.name) = false"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="entity" eType="#//Entity"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="upperBound" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/> <eStructuralFeatures xsi:type="ecore:EReference" name="valueobject" eType="#//ValueObject"/> <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="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ValueObject"> <eAnnotations source="http://www.eclipse.org/emf/2002/Ecore"> <details key="constraints" value="mustHaveDifferentValueObjectName"/> </eAnnotations> <eAnnotations source="http://www.eclipse.org/emf/2002/Ecore/OCL/Pivot"> <details key="mustHaveDifferentValueObjectName" value="self.oclType().allInstances() -> exists(r | self &lt;> r and self.name = r.name) = false"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="field" lowerBound="1" eType="#//Field" 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="isId" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean" defaultValueLiteral="false"/> </eClassifiers> </ecore:EPackage>
github:ecore:/data/PeFerreira98/ISEP.Master.EDOM_2019/project-assignment5/mei-isep-pt.isep.edom.project1920/pt.isep.edom.project.c3.mm.domain/model/domain.ecore
ecore
domain DomainModel name entities valueobject Entity name fields references root false Field name type STRING FieldType STRING STRING INTEGER INTEGER REAL REAL BOOL BOOLEAN Reference entity upperBound valueobject lowerBound name ValueObject field name isId false
null
{"directed":true,"nodes":[{"nsPrefix":"domain","nsURI":"http://www.example.org/domain","name":"domain","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":"Entity","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Field","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"FieldType","instanceClass":null,"id":4,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Reference","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ValueObject","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":"entities","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":"valueobject","changeable":true,"resolveProxies":true,"lowerBound":0,"id":9,"derived":false},{"id":10,"eClass":"EGenericType"},{"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":"name","changeable":true,"lowerBound":0,"iD":false,"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":"fields","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":"references","changeable":true,"resolveProxies":true,"lowerBound":0,"id":15,"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":"root","changeable":true,"lowerBound":1,"iD":false,"id":16,"derived":false},{"id":17,"eClass":"EGenericType"},{"id":18,"eClass":"EGenericType"},{"id":19,"eClass":"EGenericType"},{"id":20,"eClass":"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":21,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"STRING","unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"lowerBound":0,"iD":false,"id":22,"derived":false},{"id":23,"eClass":"EGenericType"},{"id":24,"eClass":"EGenericType"},{"name":"STRING","id":25,"value":0,"literal":"STRING","eClass":"EEnumLiteral"},{"name":"INTEGER","id":26,"value":1,"literal":"INTEGER","eClass":"EEnumLiteral"},{"name":"REAL","id":27,"value":2,"literal":"REAL","eClass":"EEnumLiteral"},{"name":"BOOL","id":28,"value":3,"literal":"BOOLEAN","eClass":"EEnumLiteral"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"entity","changeable":true,"resolveProxies":true,"lowerBound":0,"id":29,"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":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":"valueobject","changeable":true,"resolveProxies":true,"lowerBound":0,"id":31,"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":"lowerBound","changeable":true,"lowerBound":1,"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":"name","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"},{"id":38,"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":"field","changeable":true,"resolveProxies":true,"lowerBound":1,"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":"name","changeable":true,"lowerBound":0,"iD":false,"id":40,"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":"isId","changeable":true,"lowerBound":1,"iD":false,"id":41,"derived":false},{"id":42,"eClass":"EGenericType"},{"id":43,"eClass":"EGenericType"},{"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":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":2},{"source":8,"target":11},{"source":8,"target":1},{"source":11,"target":2},{"source":9,"target":6},{"source":9,"target":12},{"source":9,"target":1},{"source":12,"target":6},{"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":5},{"source":15,"target":19},{"source":15,"target":2},{"source":19,"target":5},{"source":16,"target":20},{"source":16,"target":2},{"source":3,"target":0},{"source":3,"target":21},{"source":3,"target":22},{"source":21,"target":23},{"source":21,"target":3},{"source":22,"target":4},{"source":22,"target":24},{"source":22,"target":3},{"source":24,"target":4},{"source":4,"target":0},{"source":4,"target":25},{"source":4,"target":26},{"source":4,"target":27},{"source":4,"target":28},{"source":25,"target":4},{"source":26,"target":4},{"source":27,"target":4},{"source":28,"target":4},{"source":5,"target":0},{"source":5,"target":29},{"source":5,"target":30},{"source":5,"target":31},{"source":5,"target":32},{"source":5,"target":33},{"source":29,"target":2},{"source":29,"target":34},{"source":29,"target":5},{"source":34,"target":2},{"source":30,"target":35},{"source":30,"target":5},{"source":31,"target":6},{"source":31,"target":36},{"source":31,"target":5},{"source":36,"target":6},{"source":32,"target":37},{"source":32,"target":5},{"source":33,"target":38},{"source":33,"target":5},{"source":6,"target":0},{"source":6,"target":39},{"source":6,"target":40},{"source":6,"target":41},{"source":39,"target":3},{"source":39,"target":42},{"source":39,"target":6},{"source":42,"target":3},{"source":40,"target":43},{"source":40,"target":6},{"source":41,"target":44},{"source":41,"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="TGG_correspondence" nsURI="http://snt.uni.lu/TGGcorrespondence" nsPrefix="TGGcorrespondence"> <eClassifiers xsi:type="ecore:EClass" name="CORR" eSuperTypes="../../lu.uni.snt.secan.ttc_java/model/generated/TTC_Java.ecore#//AbstractCorrT ../../lu.uni.snt.secan.ttc_xml/model/generated/TTC_XML.ecore#//AbstractCorr"/> </ecore:EPackage>
github:ecore:/data/de-tu-berlin-tfs/Henshin-Editor/de.tub.tfs.henshin.tgg.examples/Examples/TTC2014-FIXML2JAVA/lu.uni.snt.secan.ttc_correspondence/model/CORR.ecore
ecore
TGG_correspondence CORR
null
{"directed":true,"nodes":[{"nsPrefix":"TGGcorrespondence","nsURI":"http://snt.uni.lu/TGGcorrespondence","name":"TGG_correspondence","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CORR","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"id":2,"eClass":"EGenericType"},{"id":3,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":1,"target":0},{"source":1,"target":2},{"source":1,"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="pagemeta" nsURI="http://www.soluvas.org/schema/web.site.pagemeta/1.0" nsPrefix="pagemeta"> <eClassifiers xsi:type="ecore:EClass" name="PageMeta"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Low-level meta-information about a HTML page.&#xA;&#xA;For practical purposes, these are usually provided dynamically. However, some information, like favicon URIs and OpenGraph siteName are usually provided statically from application's site catalog XMI e.g. berbatik.SiteCatalog.xmi.&#xA;&#xA;Note that PageMeta uses low-level HTML title, not a &quot;CMS title&quot; (which needs to be reformatted i.e. with prefix &amp; suffix).&#xA;It also distinguishes between meta description and og:description.&#xA;So it doesn't fit well to be provided statically."/> </eAnnotations> <eOperations name="toText" eType="#//PageMeta"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Creates a new PageMeta with phase=text using the input context.&#xA;&#xA;Throws IllegalStateException if phase is after text (i.e. final)."/> </eAnnotations> <eParameters name="context" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EJavaObject"/> </eOperations> <eOperations name="toFinal" eType="#//PageMeta"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Returns a new PageMeta with titles merged.&#xA;&#xA;Throws IllegalStateException if phase is not text."/> </eAnnotations> <eParameters name="appTitle" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eOperations> <eStructuralFeatures xsi:type="ecore:EReference" name="icon" eType="#//PageIcon" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="languageCode" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Used in &quot;html&quot; tag, recommended is &quot;en&quot;."/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="openGraph" eType="#//OpenGraphMeta" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="openGraphImage" eType="#//OpenGraphImage" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="openGraphVideo" eType="#//OpenGraphVideo" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="openGraphAudio" eType="#//OpenGraphAudio" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="charset" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Recommended: utf-8."/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="title" 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:EAttribute" name="description" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="viewport" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Recommended: width=device-width, initial-scale=1.0"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="author" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="phase" eType="#//PageMetaPhase"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="robots" 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 &lt;a href=&quot;http://en.wikipedia.org/wiki/Noindex&quot;>noindex&lt;/a> value of an HTML robots meta tag requests that automated Internet bots avoid indexing a web page. Reasons why one might want to use this meta tag include advising robots not to index a very large database, webpages that are very transitory, pages that one wishes to keep slightly more private, or the printer and mobile-friendly versions of pages. Since the burden of honoring a website's noindex tag lies with the author of the search robot, sometimes these tags are ignored. Also the interpretation of the noindex tag is sometimes slightly different from one search engine company to the next.&#xA;&#xA;&lt;p>Possible values for the meta tag content are: &quot;none&quot;, &quot;all&quot;, &quot;index&quot;, &quot;noindex&quot;, &quot;nofollow&quot;, and &quot;follow&quot;. A combination of the values is also possible."/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="PageIcon"> <eOperations name="toAbsolute" eType="#//PageIcon"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Create a PageIcon containing absolute URIs."/> </eAnnotations> <eParameters name="imagesUri" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eOperations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="brandingBundleName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Used to calculate the absolute URI of icons, relative to Image URI and bundle name.&#xA;&#xA;This will be used only if any of *Uri is not set."/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="faviconPath" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="faviconUri" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="icon57Path" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="icon57Uri" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="icon72Path" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="icon72Uri" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="icon114Path" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="icon114Uri" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="icon144Path" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="icon144Uri" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="OpenGraphMeta"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The Open Graph protocol enables any web page to become a rich object in a social graph. For instance, this is used on Facebook to allow any web page to have the same functionality as any other object on Facebook.&#xA;&#xA;While many different technologies and schemas exist and could be combined together, there isn't a single technology which provides enough information to richly represent any web page within the social graph. The Open Graph protocol builds on these existing technologies and gives developers one thing to implement. Developer simplicity is a key goal of the Open Graph protocol which has informed many of the technical design decisions.&#xA;&#xA;Basic Metadata&#xA;To turn your web pages into graph objects, you need to add basic metadata to your page. We've based the initial version of the protocol on RDFa which means that you'll place additional &lt;meta> tags in the &lt;head> of your web page. The four required properties for every page are:&#xA;&#xA;og:title - The title of your object as it should appear within the graph, e.g., &quot;The Rock&quot;.&#xA;og:type - The type of your object, e.g., &quot;video.movie&quot;. Depending on the type you specify, other properties may also be required.&#xA;og:image - An image URL which should represent your object within the graph.&#xA;og:url - The canonical URL of your object that will be used as its permanent ID in the graph, e.g., &quot;http://www.imdb.com/title/tt0117500/&quot;.&#xA;As an example, the following is the Open Graph protocol markup for The Rock on IMDB:&#xA;&#xA;&lt;html prefix=&quot;og: http://ogp.me/ns#&quot;>&#xA;&lt;head>&#xA;&lt;title>The Rock (1996)&lt;/title>&#xA;&lt;meta property=&quot;og:title&quot; content=&quot;The Rock&quot; />&#xA;&lt;meta property=&quot;og:type&quot; content=&quot;video.movie&quot; />&#xA;&lt;meta property=&quot;og:url&quot; content=&quot;http://www.imdb.com/title/tt0117500/&quot; />&#xA;&lt;meta property=&quot;og:image&quot; content=&quot;http://ia.media-imdb.com/images/rock.jpg&quot; />&#xA;...&#xA;&lt;/head>&#xA;...&#xA;&lt;/html>&#xA;Optional Metadata&#xA;The following properties are optional for any object and are generally recommended:&#xA;&#xA;og:audio - A URL to an audio file to accompany this object.&#xA;og:description - A one to two sentence description of your object.&#xA;og:determiner - The word that appears before this object's title in a sentence. An enum of (a, an, the, &quot;&quot;, auto). If auto is chosen, the consumer of your data should chose between &quot;a&quot; or &quot;an&quot;. Default is &quot;&quot; (blank).&#xA;og:locale - The locale these tags are marked up in. Of the format language_TERRITORY. Default is en_US.&#xA;og:locale:alternate - An array of other locales this page is available in.&#xA;og:site_name - If your object is part of a larger web site, the name which should be displayed for the overall site. e.g., &quot;IMDb&quot;.&#xA;og:video - A URL to a video file that complements this object.&#xA;For example (line-break solely for display purposes):&#xA;&#xA;&lt;meta property=&quot;og:audio&quot; content=&quot;http://example.com/bond/theme.mp3&quot; />&#xA;&lt;meta property=&quot;og:description&quot; &#xA; content=&quot;Sean Connery found fame and fortune as the&#xA; suave, sophisticated British agent, James Bond.&quot; />&#xA;&lt;meta property=&quot;og:determiner&quot; content=&quot;the&quot; />&#xA;&lt;meta property=&quot;og:locale&quot; content=&quot;en_GB&quot; />&#xA;&lt;meta property=&quot;og:locale:alternate&quot; content=&quot;fr_FR&quot; />&#xA;&lt;meta property=&quot;og:locale:alternate&quot; content=&quot;es_ES&quot; />&#xA;&lt;meta property=&quot;og:site_name&quot; content=&quot;IMDb&quot; />&#xA;&lt;meta property=&quot;og:video&quot; content=&quot;http://example.com/bond/trailer.swf&quot; />&#xA;The RDF schema (in Turtle) can be found at ogp.me/ns.&#xA;&#xA;Structured Properties&#xA;Some properties can have extra metadata attached to them. These are specified in the same way as other metadata with property and content, but the property will have extra :.&#xA;&#xA;The og:image property has some optional structured properties:&#xA;&#xA;og:image:url - Identical to og:image.&#xA;og:image:secure_url - An alternate url to use if the webpage requires HTTPS.&#xA;og:image:type - A MIME type for this image.&#xA;og:image:width - The number of pixels wide.&#xA;og:image:height - The number of pixels high.&#xA;A full image example:&#xA;&#xA;&lt;meta property=&quot;og:image&quot; content=&quot;http://example.com/ogp.jpg&quot; />&#xA;&lt;meta property=&quot;og:image:secure_url&quot; content=&quot;https://secure.example.com/ogp.jpg&quot; />&#xA;&lt;meta property=&quot;og:image:type&quot; content=&quot;image/jpeg&quot; />&#xA;&lt;meta property=&quot;og:image:width&quot; content=&quot;400&quot; />&#xA;&lt;meta property=&quot;og:image:height&quot; content=&quot;300&quot; />&#xA;The og:video tag has the identical tags as og:image. Here is an example:&#xA;&#xA;&lt;meta property=&quot;og:video&quot; content=&quot;http://example.com/movie.swf&quot; />&#xA;&lt;meta property=&quot;og:video:secure_url&quot; content=&quot;https://secure.example.com/movie.swf&quot; />&#xA;&lt;meta property=&quot;og:video:type&quot; content=&quot;application/x-shockwave-flash&quot; />&#xA;&lt;meta property=&quot;og:video:width&quot; content=&quot;400&quot; />&#xA;&lt;meta property=&quot;og:video:height&quot; content=&quot;300&quot; />&#xA;The og:audio tag only has the first 3 properties available (since size doesn't make sense for sound):&#xA;&#xA;&lt;meta property=&quot;og:audio&quot; content=&quot;http://example.com/sound.mp3&quot; />&#xA;&lt;meta property=&quot;og:audio:secure_url&quot; content=&quot;https://secure.example.com/sound.mp3&quot; />&#xA;&lt;meta property=&quot;og:audio:type&quot; content=&quot;audio/mpeg&quot; />&#xA;Arrays&#xA;If a tag can have multiple values, just put multiple versions of the same &lt;meta> tag on your page. The first tag (from top to bottom) is given preference during conflicts.&#xA;&#xA;&lt;meta property=&quot;og:image&quot; content=&quot;http://example.com/rock.jpg&quot; />&#xA;&lt;meta property=&quot;og:image&quot; content=&quot;http://example.com/rock2.jpg&quot; />&#xA;Put structured properties after you declare their root tag. Whenever another root element is parsed, that structured property is considered to be done and another one is started.&#xA;&#xA;For example:&#xA;&#xA;&lt;meta property=&quot;og:image&quot; content=&quot;http://example.com/rock.jpg&quot; />&#xA;&lt;meta property=&quot;og:image:width&quot; content=&quot;300&quot; />&#xA;&lt;meta property=&quot;og:image:height&quot; content=&quot;300&quot; />&#xA;&lt;meta property=&quot;og:image&quot; content=&quot;http://example.com/rock2.jpg&quot; />&#xA;&lt;meta property=&quot;og:image&quot; content=&quot;http://example.com/rock3.jpg&quot; />&#xA;&lt;meta property=&quot;og:image:height&quot; content=&quot;1000&quot; />&#xA;means there are 3 images on this page, the first image is 300x300, the middle one has unspecified dimensions, and the last one is 1000px tall.&#xA;&#xA;Object Types&#xA;In order for your object to be represented within the graph, you need to specify its type. This is done using the og:type property:&#xA;&#xA;&lt;meta property=&quot;og:type&quot; content=&quot;website&quot; />&#xA;When the community agrees on the schema for a type, it is added to the list of global types. All other objects in the type system are CURIEs of the form&#xA;&#xA;&lt;head prefix=&quot;my_namespace: http://example.com/ns#&quot;>&#xA;&lt;meta property=&quot;og:type&quot; content=&quot;my_namespace:my_type&quot; />&#xA;The global types are grouped into verticals. Each vertical has its own namespace. The og:type values for a namespace are always prefixed with the namespace and then a period. This is to reduce confusion with user-defined namespaced types which always have colons in them.&#xA;&#xA;Music&#xA;Namespace URI: http://ogp.me/ns/music#&#xA;og:type values:&#xA;&#xA;music.song&#xA;&#xA;music:duration - integer >=1 - The song's length in seconds.&#xA;music:album - music.album array - The album this song is from.&#xA;music:album:disc - integer >=1 - Which disc of the album this song is on.&#xA;music:album:track - integer >=1 - Which track this song is.&#xA;music:musician - profile array - The musician that made this song.&#xA;music.album&#xA;&#xA;music:song - music.song - The song on this album.&#xA;music:song:disc - integer >=1 - The same as music:album:disc but in reverse.&#xA;music:song:track - integer >=1 - The same as music:album:track but in reverse.&#xA;music:musician - profile - The musician that made this song.&#xA;music:release_date - datetime - The date the album was released.&#xA;music.playlist&#xA;&#xA;music:song - Identical to the ones on music.album&#xA;music:song:disc&#xA;music:song:track&#xA;music:creator - profile - The creator of this playlist.&#xA;music.radio_station&#xA;&#xA;music:creator - profile - The creator of this station.&#xA;Video&#xA;Namespace URI: http://ogp.me/ns/video#&#xA;og:type values:&#xA;&#xA;video.movie&#xA;&#xA;video:actor - profile array - Actors in the movie.&#xA;video:actor:role - string - The role they played.&#xA;video:director - profile array - Directors of the movie.&#xA;video:writer - profile array - Writers of the movie.&#xA;video:duration - integer >=1 - The movie's length in seconds.&#xA;video:release_date - datetime - The date the movie was released.&#xA;video:tag - string array - Tag words associated with this movie.&#xA;video.episode&#xA;&#xA;video:actor - Identical to video.movie&#xA;video:actor:role&#xA;video:director&#xA;video:writer&#xA;video:duration&#xA;video:release_date&#xA;video:tag&#xA;video:series - video.tv_show - Which series this episode belongs to.&#xA;video.tv_show&#xA;&#xA;A multi-episode TV show. The metadata is identical to video.movie.&#xA;&#xA;video.other&#xA;&#xA;A video that doesn't belong in any other category. The metadata is identical to video.movie.&#xA;&#xA;No Vertical&#xA;These are globally defined objects that just don't fit into a vertical but yet are broadly used and agreed upon.&#xA;&#xA;og:type values:&#xA;&#xA;article - Namespace URI: http://ogp.me/ns/article#&#xA;&#xA;article:published_time - datetime - When the article was first published.&#xA;article:modified_time - datetime - When the article was last changed.&#xA;article:expiration_time - datetime - When the article is out of date after.&#xA;article:author - profile array - Writers of the article.&#xA;article:section - string - A high-level section name. E.g. Technology&#xA;article:tag - string array - Tag words associated with this article.&#xA;book - Namespace URI: http://ogp.me/ns/book#&#xA;&#xA;book:author - profile array - Who wrote this book.&#xA;book:isbn - string - The ISBN&#xA;book:release_date - datetime - The date the book was released.&#xA;book:tag - string array - Tag words associated with this book.&#xA;profile - Namespace URI: http://ogp.me/ns/profile#&#xA;&#xA;profile:first_name - string - A name normally given to an individual by a parent or self-chosen.&#xA;profile:last_name - string - A name inherited from a family or marriage and by which the individual is commonly known.&#xA;profile:username - string - A short unique string to identify them.&#xA;profile:gender - enum(male, female) - Their gender.&#xA;website - Namespace URI: http://ogp.me/ns/website#&#xA;&#xA;No additional properties other than the basic ones. Any non-marked up webpage should be treated as og:type website.&#xA;&#xA;Types&#xA;The following types are used when defining attributes in Open Graph protocol.&#xA;&#xA;Type&#x9;Description&#x9;Literals&#xA;Boolean&#x9;A Boolean represents a true or false value&#x9;true, false, 1, 0&#xA;DateTime&#x9;A DateTime represents a temporal value composed of a date (year, month, day) and an optional time component (hours, minutes)&#x9;ISO 8601&#xA;Enum&#x9;A type consisting of bounded set of constant string values (enumeration members).&#x9;A string value that is a member of the enumeration&#xA;Float&#x9;A 64-bit signed floating point number&#x9;All literals that conform to the following formats:&#xA;&#xA;1.234&#xA;-1.234&#xA;1.2e3&#xA;-1.2e3&#xA;7E-10&#xA;Integer&#x9;A 32-bit signed integer. In many languages integers over 32-bits become floats, so we limit Open Graph protocol for easy multi-language use.&#x9;All literals that conform to the following formats:&#xA;&#xA;1234&#xA;-123&#xA;String&#x9;A sequence of Unicode characters&#x9;All literals composed of Unicode characters with no escape characters&#xA;URL&#x9;A sequence of Unicode characters that identify an Internet resource.&#x9;All valid URLs that utilize the http:// or https:// protocols&#xA;"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="title" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="og:title. The title of your object as it should appear within the graph, e.g., &quot;The Rock&quot;."/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="type" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="og:type. The type of your object, e.g., &quot;video.movie&quot;. Depending on the type you specify, other properties may also be required."/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="image" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="og:image - An image URL which should represent your object within the graph.&#xA;The 'og:image' property should be explicitly provided, even if a value can be inferred from other tags."/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="url" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="og:url - The canonical URL of your object that will be used as its permanent ID in the graph, e.g., &quot;http://www.imdb.com/title/tt0117500/&quot;.&#xA;The 'og:url' property should be explicitly provided, even if a value can be inferred from other tags."/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="audio" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="og:audio - A URL to an audio file to accompany this object."/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="description" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="og:description - A one to two sentence description of your object.&#xA;The 'og:description' property should be explicitly provided, even if a value can be inferred from other tags."/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="determiner" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="og:determiner - The word that appears before this object's title in a sentence. An enum of (a, an, the, &quot;&quot;, auto). If auto is chosen, the consumer of your data should chose between &quot;a&quot; or &quot;an&quot;. Default is &quot;&quot; (blank)."/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="locale" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="og:locale - The locale these tags are marked up in. Of the format language_TERRITORY. Default is en_US."/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="localeAlternates" upperBound="-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="og:locale:alternate - An array of other locales this page is available in.&#xA;"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="siteName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="og:site_name - If your object is part of a larger web site, the name which should be displayed for the overall site. e.g., &quot;IMDb&quot;."/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="video" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="og:video - A URL to a video file that complements this object.&#xA;"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="OpenGraphImage"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The og:image property has some optional structured properties:&#xA;&#xA;og:image:url - Identical to og:image.&#xA;og:image:secure_url - An alternate url to use if the webpage requires HTTPS.&#xA;og:image:type - A MIME type for this image.&#xA;og:image:width - The number of pixels wide.&#xA;og:image:height - The number of pixels high.&#xA;A full image example:&#xA;&#xA;&lt;meta property=&quot;og:image&quot; content=&quot;http://example.com/ogp.jpg&quot; />&#xA;&lt;meta property=&quot;og:image:secure_url&quot; content=&quot;https://secure.example.com/ogp.jpg&quot; />&#xA;&lt;meta property=&quot;og:image:type&quot; content=&quot;image/jpeg&quot; />&#xA;&lt;meta property=&quot;og:image:width&quot; content=&quot;400&quot; />&#xA;&lt;meta property=&quot;og:image:height&quot; content=&quot;300&quot; />"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="url" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="og:image:url - Identical to og:image."/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="secureUrl" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="og:image:secure_url - An alternate url to use if the webpage requires HTTPS.&#xA;"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="type" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="og:image:type - A MIME type for this image.&#xA;"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="width" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="og:image:width - The number of pixels wide.&#xA;"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="height" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="og:image:height - The number of pixels high.&#xA;"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="OpenGraphVideo"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The og:video tag has the identical tags as og:image. Here is an example:&#xA;&#xA;&lt;meta property=&quot;og:video&quot; content=&quot;http://example.com/movie.swf&quot; />&#xA;&lt;meta property=&quot;og:video:secure_url&quot; content=&quot;https://secure.example.com/movie.swf&quot; />&#xA;&lt;meta property=&quot;og:video:type&quot; content=&quot;application/x-shockwave-flash&quot; />&#xA;&lt;meta property=&quot;og:video:width&quot; content=&quot;400&quot; />&#xA;&lt;meta property=&quot;og:video:height&quot; content=&quot;300&quot; />"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="url" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="og:image:url - Identical to og:image."/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="secureUrl" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="og:image:secure_url - An alternate url to use if the webpage requires HTTPS.&#xA;"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="type" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="og:image:type - A MIME type for this image.&#xA;"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="width" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="og:image:width - The number of pixels wide.&#xA;"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="height" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="og:image:height - The number of pixels high.&#xA;"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="OpenGraphAudio"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The og:audio tag only has the first 3 properties available (since size doesn't make sense for sound):&#xA;&#xA;&lt;meta property=&quot;og:audio&quot; content=&quot;http://example.com/sound.mp3&quot; />&#xA;&lt;meta property=&quot;og:audio:secure_url&quot; content=&quot;https://secure.example.com/sound.mp3&quot; />&#xA;&lt;meta property=&quot;og:audio:type&quot; content=&quot;audio/mpeg&quot; />"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="url" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="og:image:url - Identical to og:image."/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="secureUrl" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="og:image:secure_url - An alternate url to use if the webpage requires HTTPS.&#xA;"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="type" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="og:image:type - A MIME type for this image.&#xA;"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="PageSelector" abstract="true" interface="true"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Matches a web request against a rule and modifies the current Page object."/> </eAnnotations> <eOperations name="matches" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Determines if this selector matches the provided page."/> </eAnnotations> <eParameters name="context" eType="#//PageRuleContext"/> </eOperations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="UriPatternPageSelector" eSuperTypes="#//PageSelector"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Matches web requests using http://code.google.com/p/wo-furi/"/> </eAnnotations> <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="PageRule" eSuperTypes="../../../../../../../../org.soluvas.commons/src/main/resources/org/soluvas/commons/commons.ecore#//BundleAware ../../../../../../../../org.soluvas.commons/src/main/resources/org/soluvas/commons/commons.ecore#//ResourceAware ../../../../../../../../org.soluvas.commons/src/main/resources/org/soluvas/commons/commons.ecore#//Positionable"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Positioner Guide:&#xA;&#xA;* -200 : org.soluvas core&#xA;* -100 : coarse-grained&#xA;* -50 : module-level fine-grained (e.g. bippo salesorder)&#xA;* -10 : product-level fine-grained (e.g. bippo )&#xA;* 0 or missing : application-level fine-grained (e.g. berbatik)&#xA;* 10 : customizations&#xA;"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="selector" eType="#//PageSelector" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="declaration" eType="#//PageDeclaration" containment="true"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="What to apply when the selector matches."/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="PageDeclaration" abstract="true" interface="true"/> <eClassifiers xsi:type="ecore:EClass" name="SourcePageDeclaration" eSuperTypes="#//PageDeclaration"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Applies the contents of the specified &quot;source&quot; Page to current web request.&#xA;&#xA;The Page instance must be linked via EMF, which is sometimes handy but not very flexible for runtime purposes."/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="source" lowerBound="1" eType="#//PageMeta" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ProcessorPageDeclaration" eSuperTypes="#//PageDeclaration"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Uses a PageProcessor implementation to modify the Page for current web request.&#xA;&#xA;It will be looked up in OSGi (scoped for the current tenant) using the given filters."/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="filter" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Filter in LDAP syntax."/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ResourcePageDeclaration" eSuperTypes="#//PageDeclaration"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Loads the file from the specified bundle and the specified resource path.&#xA;&#xA;This is handy to load from classpath in OSGi environments, but cannot handle overrides properly. You need a proper federating repository for that."/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="bundle" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Bundle symbolic name that hosts the Page XMI file."/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="path" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Full path to the Page XMI in the bundle, including the leading '/' and the '.xmi' extension."/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="RepositoryPageDeclaration" eSuperTypes="#//PageDeclaration"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="filter" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Filter to the repository in LDAP syntax. Will be looked up in OSGi."/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="path" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Path to the page in the repository."/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="PageMetaCatalog" eSuperTypes="#//PageRuleCollection ../../../../../../../../org.soluvas.commons/src/main/resources/org/soluvas/commons/commons.ecore#//BundleAware ../../../../../../../../org.soluvas.commons/src/main/resources/org/soluvas/commons/commons.ecore#//ResourceAware"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The site catalog is used to define all *logical* sections and pages in a site.&#xA;&#xA;It is used in 2 ways:&#xA;1. at generation time, to generate concrete page classes, Wicket HTML markup, and JS files.&#xA;2. at runtime, to inspect *logical* sections and pages in the site.&#xA;&#xA;Note that information about actual concrete page classes etc. are not visible here, and if needed, then it should be described using another schema."/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="PageMetaCollection" abstract="true" interface="true"> <eStructuralFeatures xsi:type="ecore:EReference" name="pageMetas" upperBound="-1" eType="#//PageMeta" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="PageRuleCollection" abstract="true" interface="true"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Contains a list of rules."/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="rules" upperBound="-1" eType="#//PageRule" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="PageTitle"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Used to compose a title string.&#xA;&#xA;This will set the :&#xA;- page meta title : prefixes.join(prefixSeparator) + main + suffixes.join(suffixSeparator)&#xA;- open graph meta : title &lt;= main (TODO: needs to be more configurable), e.g. we want to display &quot;Zalova Bag - Bags&quot; or &quot;Zalova Bag - O Batiks&quot; or even &quot;Zalova Bag - Bags - O Batiks&quot;"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="main" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="prefixes" upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="suffixes" upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="prefixSeparator" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="suffixSeparator" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ClassPageSelector" eSuperTypes="#//PageSelector"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Selects pages based on Wicket page class name."/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="className" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EDataType" name="PageRuleContext" instanceClassName="org.soluvas.web.site.PageRequestContext"/> <eClassifiers xsi:type="ecore:EEnum" name="PageMetaPhase"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="PageMeta need to have at least 3 states : &#xA;&#xA;1. `template`. Contains Mustache templates.&#xA;2. `text`. Will not be parsed for template but titles not yet merged.&#xA;3. `final`. Titles already merged."/> </eAnnotations> <eLiterals name="template"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Contains Mustache templates."/> </eAnnotations> </eLiterals> <eLiterals name="text" value="1"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Will not be parsed for template but titles not yet merged."/> </eAnnotations> </eLiterals> <eLiterals name="final" value="2"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Titles already merged."/> </eAnnotations> </eLiterals> </eClassifiers> </ecore:EPackage>
github:ecore:/data/soluvas/soluvas-web/site/src/main/resources/org/soluvas/web/site/pagemeta.ecore
ecore
pagemeta PageMeta toText context toFinal appTitle icon languageCode openGraph openGraphImage openGraphVideo openGraphAudio charset title keywords description viewport author phase robots PageIcon toAbsolute imagesUri brandingBundleName faviconPath faviconUri icon57Path icon57Uri icon72Path icon72Uri icon114Path icon114Uri icon144Path icon144Uri OpenGraphMeta title type image url audio description determiner locale localeAlternates siteName video OpenGraphImage url secureUrl type width height OpenGraphVideo url secureUrl type width height OpenGraphAudio url secureUrl type PageSelector matches context UriPatternPageSelector pattern PageRule selector declaration PageDeclaration SourcePageDeclaration source ProcessorPageDeclaration filter ResourcePageDeclaration bundle path RepositoryPageDeclaration filter path PageMetaCatalog PageMetaCollection pageMetas PageRuleCollection rules PageTitle main prefixes suffixes prefixSeparator suffixSeparator ClassPageSelector className PageRuleContext org.soluvas.web.site.PageRequestContext org.soluvas.web.site.PageRequestContext PageMetaPhase template template text text final final
null
{"directed":true,"nodes":[{"nsPrefix":"pagemeta","nsURI":"http://www.soluvas.org/schema/web.site.pagemeta/1.0","name":"pagemeta","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PageMeta","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PageIcon","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OpenGraphMeta","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OpenGraphImage","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OpenGraphVideo","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OpenGraphAudio","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PageSelector","instanceClass":null,"abstract":true,"id":7,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"UriPatternPageSelector","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PageRule","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PageDeclaration","instanceClass":null,"abstract":true,"id":10,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SourcePageDeclaration","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ProcessorPageDeclaration","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ResourcePageDeclaration","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RepositoryPageDeclaration","instanceClass":null,"abstract":false,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PageMetaCatalog","instanceClass":null,"abstract":false,"id":15,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PageMetaCollection","instanceClass":null,"abstract":true,"id":16,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PageRuleCollection","instanceClass":null,"abstract":true,"id":17,"interface":true,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PageTitle","instanceClass":null,"abstract":false,"id":18,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ClassPageSelector","instanceClass":null,"abstract":false,"id":19,"interface":false,"eClass":"EClass"},{"instanceTypeName":"org.soluvas.web.site.PageRequestContext","defaultValue":null,"instanceClassName":"org.soluvas.web.site.PageRequestContext","name":"PageRuleContext","instanceClass":null,"id":20,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":null,"instanceClassName":null,"name":"PageMetaPhase","instanceClass":null,"id":21,"serializable":true,"eClass":"EEnum"},{"ordered":true,"upperBound":1,"unique":true,"name":"toText","lowerBound":0,"id":22,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"toFinal","lowerBound":0,"id":23,"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":"icon","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":"languageCode","changeable":true,"lowerBound":0,"iD":false,"id":25,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"openGraph","changeable":true,"resolveProxies":true,"lowerBound":0,"id":26,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"openGraphImage","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":true,"unsettable":false,"transient":false,"unique":true,"name":"openGraphVideo","changeable":true,"resolveProxies":true,"lowerBound":0,"id":28,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"openGraphAudio","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":"charset","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":"title","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":"keywords","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":"description","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":"viewport","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":"author","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":false,"transient":false,"unique":true,"name":"phase","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":"robots","changeable":true,"lowerBound":0,"iD":false,"id":37,"derived":false},{"id":38,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"context","lowerBound":0,"id":39,"many":false,"required":false,"eClass":"EParameter"},{"id":40,"eClass":"EGenericType"},{"id":41,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"appTitle","lowerBound":0,"id":42,"many":false,"required":false,"eClass":"EParameter"},{"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"},{"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,"unique":true,"name":"toAbsolute","lowerBound":0,"id":58,"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":"brandingBundleName","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":"faviconPath","changeable":true,"lowerBound":0,"iD":false,"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":"faviconUri","changeable":true,"lowerBound":0,"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":true,"name":"icon57Path","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":"icon57Uri","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":"icon72Path","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":"icon72Uri","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":true,"name":"icon114Path","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":"icon114Uri","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":"icon144Path","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":"icon144Uri","changeable":true,"lowerBound":0,"iD":false,"id":69,"derived":false},{"id":70,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"imagesUri","lowerBound":0,"id":71,"many":false,"required":false,"eClass":"EParameter"},{"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"},{"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":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":"type","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":"image","changeable":true,"lowerBound":0,"iD":false,"id":86,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"url","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":"audio","changeable":true,"lowerBound":0,"iD":false,"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":"description","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":"determiner","changeable":true,"lowerBound":0,"iD":false,"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":"locale","changeable":true,"lowerBound":0,"iD":false,"id":91,"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":"localeAlternates","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":"siteName","changeable":true,"lowerBound":0,"iD":false,"id":93,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"video","changeable":true,"lowerBound":0,"iD":false,"id":94,"derived":false},{"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"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"url","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":"secureUrl","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":"type","changeable":true,"lowerBound":0,"iD":false,"id":108,"derived":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":109,"derived":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":110,"derived":false},{"id":111,"eClass":"EGenericType"},{"id":112,"eClass":"EGenericType"},{"id":113,"eClass":"EGenericType"},{"id":114,"eClass":"EGenericType"},{"id":115,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"url","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":"secureUrl","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":"type","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":"width","changeable":true,"lowerBound":0,"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":"height","changeable":true,"lowerBound":0,"iD":false,"id":120,"derived":false},{"id":121,"eClass":"EGenericType"},{"id":122,"eClass":"EGenericType"},{"id":123,"eClass":"EGenericType"},{"id":124,"eClass":"EGenericType"},{"id":125,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"url","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":"secureUrl","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":"type","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,"unique":true,"name":"matches","lowerBound":0,"id":132,"many":false,"required":false,"eClass":"EOperation"},{"id":133,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"context","lowerBound":0,"id":134,"many":false,"required":false,"eClass":"EParameter"},{"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":"pattern","changeable":true,"lowerBound":1,"iD":false,"id":136,"derived":false},{"id":137,"eClass":"EGenericType"},{"id":138,"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":"selector","changeable":true,"resolveProxies":true,"lowerBound":0,"id":139,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"declaration","changeable":true,"resolveProxies":true,"lowerBound":0,"id":140,"derived":false},{"id":141,"eClass":"EGenericType"},{"id":142,"eClass":"EGenericType"},{"id":143,"eClass":"EGenericType"},{"id":144,"eClass":"EGenericType"},{"id":145,"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":"source","changeable":true,"resolveProxies":true,"lowerBound":1,"id":146,"derived":false},{"id":147,"eClass":"EGenericType"},{"id":148,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"filter","changeable":true,"lowerBound":0,"iD":false,"id":149,"derived":false},{"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":"bundle","changeable":true,"lowerBound":0,"iD":false,"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":"path","changeable":true,"lowerBound":0,"iD":false,"id":153,"derived":false},{"id":154,"eClass":"EGenericType"},{"id":155,"eClass":"EGenericType"},{"id":156,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"filter","changeable":true,"lowerBound":0,"iD":false,"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":"path","changeable":true,"lowerBound":0,"iD":false,"id":158,"derived":false},{"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":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"pageMetas","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":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"rules","changeable":true,"resolveProxies":true,"lowerBound":0,"id":167,"derived":false},{"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":"main","changeable":true,"lowerBound":0,"iD":false,"id":169,"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":"prefixes","changeable":true,"lowerBound":0,"iD":false,"id":170,"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":"suffixes","changeable":true,"lowerBound":0,"iD":false,"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":"prefixSeparator","changeable":true,"lowerBound":0,"iD":false,"id":172,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"suffixSeparator","changeable":true,"lowerBound":0,"iD":false,"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":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"className","changeable":true,"lowerBound":1,"iD":false,"id":179,"derived":false},{"id":180,"eClass":"EGenericType"},{"id":181,"eClass":"EGenericType"},{"name":"template","id":182,"value":0,"literal":"template","eClass":"EEnumLiteral"},{"name":"text","id":183,"value":1,"literal":"text","eClass":"EEnumLiteral"},{"name":"final","id":184,"value":2,"literal":"final","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":1,"target":0},{"source":1,"target":22},{"source":1,"target":23},{"source":1,"target":24},{"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":1,"target":31},{"source":1,"target":32},{"source":1,"target":33},{"source":1,"target":34},{"source":1,"target":35},{"source":1,"target":36},{"source":1,"target":37},{"source":22,"target":1},{"source":22,"target":38},{"source":22,"target":1},{"source":22,"target":39},{"source":38,"target":1},{"source":39,"target":40},{"source":39,"target":22},{"source":23,"target":1},{"source":23,"target":41},{"source":23,"target":1},{"source":23,"target":42},{"source":41,"target":1},{"source":42,"target":43},{"source":42,"target":23},{"source":24,"target":2},{"source":24,"target":44},{"source":24,"target":1},{"source":44,"target":2},{"source":25,"target":45},{"source":25,"target":1},{"source":26,"target":3},{"source":26,"target":46},{"source":26,"target":1},{"source":46,"target":3},{"source":27,"target":4},{"source":27,"target":47},{"source":27,"target":1},{"source":47,"target":4},{"source":28,"target":5},{"source":28,"target":48},{"source":28,"target":1},{"source":48,"target":5},{"source":29,"target":6},{"source":29,"target":49},{"source":29,"target":1},{"source":49,"target":6},{"source":30,"target":50},{"source":30,"target":1},{"source":31,"target":51},{"source":31,"target":1},{"source":32,"target":52},{"source":32,"target":1},{"source":33,"target":53},{"source":33,"target":1},{"source":34,"target":54},{"source":34,"target":1},{"source":35,"target":55},{"source":35,"target":1},{"source":36,"target":21},{"source":36,"target":56},{"source":36,"target":1},{"source":56,"target":21},{"source":37,"target":57},{"source":37,"target":1},{"source":2,"target":0},{"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":58,"target":2},{"source":58,"target":70},{"source":58,"target":2},{"source":58,"target":71},{"source":70,"target":2},{"source":71,"target":72},{"source":71,"target":58},{"source":59,"target":73},{"source":59,"target":2},{"source":60,"target":74},{"source":60,"target":2},{"source":61,"target":75},{"source":61,"target":2},{"source":62,"target":76},{"source":62,"target":2},{"source":63,"target":77},{"source":63,"target":2},{"source":64,"target":78},{"source":64,"target":2},{"source":65,"target":79},{"source":65,"target":2},{"source":66,"target":80},{"source":66,"target":2},{"source":67,"target":81},{"source":67,"target":2},{"source":68,"target":82},{"source":68,"target":2},{"source":69,"target":83},{"source":69,"target":2},{"source":3,"target":0},{"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":84,"target":95},{"source":84,"target":3},{"source":85,"target":96},{"source":85,"target":3},{"source":86,"target":97},{"source":86,"target":3},{"source":87,"target":98},{"source":87,"target":3},{"source":88,"target":99},{"source":88,"target":3},{"source":89,"target":100},{"source":89,"target":3},{"source":90,"target":101},{"source":90,"target":3},{"source":91,"target":102},{"source":91,"target":3},{"source":92,"target":103},{"source":92,"target":3},{"source":93,"target":104},{"source":93,"target":3},{"source":94,"target":105},{"source":94,"target":3},{"source":4,"target":0},{"source":4,"target":106},{"source":4,"target":107},{"source":4,"target":108},{"source":4,"target":109},{"source":4,"target":110},{"source":106,"target":111},{"source":106,"target":4},{"source":107,"target":112},{"source":107,"target":4},{"source":108,"target":113},{"source":108,"target":4},{"source":109,"target":114},{"source":109,"target":4},{"source":110,"target":115},{"source":110,"target":4},{"source":5,"target":0},{"source":5,"target":116},{"source":5,"target":117},{"source":5,"target":118},{"source":5,"target":119},{"source":5,"target":120},{"source":116,"target":121},{"source":116,"target":5},{"source":117,"target":122},{"source":117,"target":5},{"source":118,"target":123},{"source":118,"target":5},{"source":119,"target":124},{"source":119,"target":5},{"source":120,"target":125},{"source":120,"target":5},{"source":6,"target":0},{"source":6,"target":126},{"source":6,"target":127},{"source":6,"target":128},{"source":126,"target":129},{"source":126,"target":6},{"source":127,"target":130},{"source":127,"target":6},{"source":128,"target":131},{"source":128,"target":6},{"source":7,"target":0},{"source":7,"target":132},{"source":132,"target":133},{"source":132,"target":7},{"source":132,"target":134},{"source":134,"target":20},{"source":134,"target":135},{"source":134,"target":132},{"source":135,"target":20},{"source":8,"target":0},{"source":8,"target":7},{"source":8,"target":136},{"source":8,"target":137},{"source":136,"target":138},{"source":136,"target":8},{"source":137,"target":7},{"source":9,"target":0},{"source":9,"target":139},{"source":9,"target":140},{"source":9,"target":141},{"source":9,"target":142},{"source":9,"target":143},{"source":139,"target":7},{"source":139,"target":144},{"source":139,"target":9},{"source":144,"target":7},{"source":140,"target":10},{"source":140,"target":145},{"source":140,"target":9},{"source":145,"target":10},{"source":10,"target":0},{"source":11,"target":0},{"source":11,"target":10},{"source":11,"target":146},{"source":11,"target":147},{"source":146,"target":1},{"source":146,"target":148},{"source":146,"target":11},{"source":148,"target":1},{"source":147,"target":10},{"source":12,"target":0},{"source":12,"target":10},{"source":12,"target":149},{"source":12,"target":150},{"source":149,"target":151},{"source":149,"target":12},{"source":150,"target":10},{"source":13,"target":0},{"source":13,"target":10},{"source":13,"target":152},{"source":13,"target":153},{"source":13,"target":154},{"source":152,"target":155},{"source":152,"target":13},{"source":153,"target":156},{"source":153,"target":13},{"source":154,"target":10},{"source":14,"target":0},{"source":14,"target":10},{"source":14,"target":157},{"source":14,"target":158},{"source":14,"target":159},{"source":157,"target":160},{"source":157,"target":14},{"source":158,"target":161},{"source":158,"target":14},{"source":159,"target":10},{"source":15,"target":0},{"source":15,"target":17},{"source":15,"target":162},{"source":15,"target":163},{"source":15,"target":164},{"source":162,"target":17},{"source":16,"target":0},{"source":16,"target":165},{"source":165,"target":1},{"source":165,"target":166},{"source":165,"target":16},{"source":166,"target":1},{"source":17,"target":0},{"source":17,"target":167},{"source":167,"target":9},{"source":167,"target":168},{"source":167,"target":17},{"source":168,"target":9},{"source":18,"target":0},{"source":18,"target":169},{"source":18,"target":170},{"source":18,"target":171},{"source":18,"target":172},{"source":18,"target":173},{"source":169,"target":174},{"source":169,"target":18},{"source":170,"target":175},{"source":170,"target":18},{"source":171,"target":176},{"source":171,"target":18},{"source":172,"target":177},{"source":172,"target":18},{"source":173,"target":178},{"source":173,"target":18},{"source":19,"target":0},{"source":19,"target":7},{"source":19,"target":179},{"source":19,"target":180},{"source":179,"target":181},{"source":179,"target":19},{"source":180,"target":7},{"source":20,"target":0},{"source":21,"target":0},{"source":21,"target":182},{"source":21,"target":183},{"source":21,"target":184},{"source":182,"target":21},{"source":183,"target":21},{"source":184,"target":21}],"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="K" nsURI="http://kcl.ac.uk/xdsml/K" nsPrefix="k"> <eClassifiers xsi:type="ecore:EClass" name="K1"> <eAnnotations source="Interface"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="K2"> <eStructuralFeatures xsi:type="ecore:EReference" name="observed" eType="#//K1"/> </eClassifiers> </ecore:EPackage>
github:ecore:/data/gts-morpher/gts_morpher/uk.ac.kcl.inf.gts_morpher.tests/src/uk/ac/kcl/inf/gts_morpher/tests/converter/K.ecore
ecore
K K1 K2 observed
null
{"directed":true,"nodes":[{"nsPrefix":"k","nsURI":"http://kcl.ac.uk/xdsml/K","name":"K","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"K1","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"K2","instanceClass":null,"abstract":false,"id":2,"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":"observed","changeable":true,"resolveProxies":true,"lowerBound":0,"id":3,"derived":false},{"id":4,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":1,"target":0},{"source":2,"target":0},{"source":2,"target":3},{"source":3,"target":1},{"source":3,"target":4},{"source":3,"target":2},{"source":4,"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="school" nsURI="http://www.example.org/school" nsPrefix="school"> <eClassifiers xsi:type="ecore:EClass" name="School"> <eStructuralFeatures xsi:type="ecore:EReference" name="faculty" upperBound="-1" eType="#//Faculty" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="courseofstudy" upperBound="-1" eType="#//CourseOfStudy" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="course" upperBound="-1" eType="#//Course" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="student" upperBound="-1" eType="#//Student" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="teacher" upperBound="-1" eType="#//Teacher" 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="Faculty"> <eStructuralFeatures xsi:type="ecore:EReference" name="courseofstudy" upperBound="-1" eType="#//CourseOfStudy" eOpposite="#//CourseOfStudy/faculty"/> <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="CourseOfStudy"> <eStructuralFeatures xsi:type="ecore:EReference" name="course" upperBound="-1" eType="#//Course"/> <eStructuralFeatures xsi:type="ecore:EReference" name="faculty" lowerBound="1" eType="#//Faculty" eOpposite="#//Faculty/courseofstudy"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="student" upperBound="-1" eType="#//Student" eOpposite="#//Student/courseofstudy"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Course"> <eStructuralFeatures xsi:type="ecore:EReference" name="enrolledStudent" upperBound="-1" eType="#//Student" eOpposite="#//Student/enrolledIn"/> <eStructuralFeatures xsi:type="ecore:EReference" name="taughtBy" lowerBound="1" eType="#//Teacher" eOpposite="#//Teacher/teaches"/> <eStructuralFeatures xsi:type="ecore:EReference" name="courseresult" upperBound="-1" eType="#//CourseResult" containment="true" eOpposite="#//CourseResult/course"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="courseNumber" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Student"> <eStructuralFeatures xsi:type="ecore:EReference" name="enrolledIn" upperBound="-1" eType="#//Course" eOpposite="#//Course/enrolledStudent"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="studentNumber" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="courseofstudy" lowerBound="1" eType="#//CourseOfStudy" eOpposite="#//CourseOfStudy/student"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Teacher"> <eStructuralFeatures xsi:type="ecore:EReference" name="teaches" upperBound="-1" eType="#//Course" eOpposite="#//Course/taughtBy"/> <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="CourseResult"> <eStructuralFeatures xsi:type="ecore:EReference" name="student" lowerBound="1" eType="#//Student"/> <eStructuralFeatures xsi:type="ecore:EReference" name="course" lowerBound="1" eType="#//Course" eOpposite="#//Course/courseresult"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="grade" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBigInteger"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Query"> <eStructuralFeatures xsi:type="ecore:EReference" name="student" eType="#//Student"/> <eStructuralFeatures xsi:type="ecore:EReference" name="where" eType="#//Where" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="type" eType="#//SchoolElement"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Where"> <eStructuralFeatures xsi:type="ecore:EReference" name="booleanexpr" lowerBound="1" eType="#//BooleanExpr" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="BooleanExpr"> <eStructuralFeatures xsi:type="ecore:EReference" name="and" eType="#//BooleanExpr" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="or" eType="#//BooleanExpr" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="lhs" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="rhs" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="operator" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="SchoolDatabase"> <eStructuralFeatures xsi:type="ecore:EReference" name="school" lowerBound="1" eType="#//School" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="query" upperBound="-1" eType="#//Query" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="SchoolElement"> <eLiterals name="School"/> <eLiterals name="Student" value="1"/> <eLiterals name="Teacher" value="2"/> <eLiterals name="Faculty" value="3"/> <eLiterals name="CourseOfStudy" value="4"/> <eLiterals name="Course" value="5"/> </eClassifiers> </ecore:EPackage>
github:ecore:/data/AlexAalbertsberg/model-driven-engineering/school/model/school.ecore
ecore
school School faculty courseofstudy course student teacher name Faculty courseofstudy name CourseOfStudy course faculty name student Course enrolledStudent taughtBy courseresult name courseNumber Student enrolledIn name studentNumber courseofstudy Teacher teaches name CourseResult student course grade Query student where type Where booleanexpr BooleanExpr and or lhs rhs operator SchoolDatabase school query SchoolElement School School Student Student Teacher Teacher Faculty Faculty CourseOfStudy CourseOfStudy Course Course
null
{"directed":true,"nodes":[{"nsPrefix":"school","nsURI":"http://www.example.org/school","name":"school","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"School","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Faculty","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CourseOfStudy","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Course","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":"Teacher","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CourseResult","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Query","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Where","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BooleanExpr","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SchoolDatabase","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"SchoolElement","instanceClass":null,"id":12,"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":"faculty","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":"courseofstudy","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":"course","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":"student","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":"teacher","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":"name","changeable":true,"lowerBound":0,"iD":false,"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"},{"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":"courseofstudy","changeable":true,"resolveProxies":true,"lowerBound":0,"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":"name","changeable":true,"lowerBound":0,"iD":false,"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":"faculty","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":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"course","changeable":true,"resolveProxies":true,"lowerBound":0,"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":"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":"student","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"},{"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":"courseofstudy","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":false,"unsettable":false,"transient":false,"unique":true,"name":"enrolledStudent","changeable":true,"resolveProxies":true,"lowerBound":0,"id":38,"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":"taughtBy","changeable":true,"resolveProxies":true,"lowerBound":1,"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":"courseresult","changeable":true,"resolveProxies":true,"lowerBound":0,"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":"name","changeable":true,"lowerBound":0,"iD":false,"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":"courseNumber","changeable":true,"lowerBound":0,"iD":false,"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":false,"unsettable":false,"transient":false,"unique":true,"name":"enrolledIn","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":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"teaches","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":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"course","changeable":true,"resolveProxies":true,"lowerBound":1,"id":48,"derived":false},{"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":"name","changeable":true,"lowerBound":0,"iD":false,"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":"studentNumber","changeable":true,"lowerBound":0,"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":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":"student","changeable":true,"resolveProxies":true,"lowerBound":1,"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":"grade","changeable":true,"lowerBound":0,"iD":false,"id":61,"derived":false},{"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":false,"unsettable":false,"transient":false,"unique":true,"name":"student","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":"where","changeable":true,"resolveProxies":true,"lowerBound":0,"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":"type","changeable":true,"lowerBound":0,"iD":false,"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":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"booleanexpr","changeable":true,"resolveProxies":true,"lowerBound":1,"id":71,"derived":false},{"id":72,"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":"and","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":"or","changeable":true,"resolveProxies":true,"lowerBound":0,"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":"lhs","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":"rhs","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":"operator","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"},{"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":"school","changeable":true,"resolveProxies":true,"lowerBound":1,"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":"query","changeable":true,"resolveProxies":true,"lowerBound":0,"id":84,"derived":false},{"id":85,"eClass":"EGenericType"},{"id":86,"eClass":"EGenericType"},{"name":"School","id":87,"value":0,"literal":"School","eClass":"EEnumLiteral"},{"name":"Student","id":88,"value":1,"literal":"Student","eClass":"EEnumLiteral"},{"name":"Teacher","id":89,"value":2,"literal":"Teacher","eClass":"EEnumLiteral"},{"name":"Faculty","id":90,"value":3,"literal":"Faculty","eClass":"EEnumLiteral"},{"name":"CourseOfStudy","id":91,"value":4,"literal":"CourseOfStudy","eClass":"EEnumLiteral"},{"name":"Course","id":92,"value":5,"literal":"Course","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":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":2},{"source":13,"target":19},{"source":13,"target":1},{"source":19,"target":2},{"source":14,"target":3},{"source":14,"target":20},{"source":14,"target":1},{"source":20,"target":3},{"source":15,"target":4},{"source":15,"target":21},{"source":15,"target":1},{"source":21,"target":4},{"source":16,"target":5},{"source":16,"target":22},{"source":16,"target":1},{"source":22,"target":5},{"source":17,"target":6},{"source":17,"target":23},{"source":17,"target":1},{"source":23,"target":6},{"source":18,"target":24},{"source":18,"target":1},{"source":2,"target":0},{"source":2,"target":25},{"source":2,"target":26},{"source":25,"target":3},{"source":25,"target":27},{"source":25,"target":2},{"source":25,"target":28},{"source":27,"target":3},{"source":26,"target":29},{"source":26,"target":2},{"source":3,"target":0},{"source":3,"target":30},{"source":3,"target":28},{"source":3,"target":31},{"source":3,"target":32},{"source":30,"target":4},{"source":30,"target":33},{"source":30,"target":3},{"source":33,"target":4},{"source":28,"target":2},{"source":28,"target":34},{"source":28,"target":3},{"source":28,"target":25},{"source":34,"target":2},{"source":31,"target":35},{"source":31,"target":3},{"source":32,"target":5},{"source":32,"target":36},{"source":32,"target":3},{"source":32,"target":37},{"source":36,"target":5},{"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":38,"target":5},{"source":38,"target":43},{"source":38,"target":4},{"source":38,"target":44},{"source":43,"target":5},{"source":39,"target":6},{"source":39,"target":45},{"source":39,"target":4},{"source":39,"target":46},{"source":45,"target":6},{"source":40,"target":7},{"source":40,"target":47},{"source":40,"target":4},{"source":40,"target":48},{"source":47,"target":7},{"source":41,"target":49},{"source":41,"target":4},{"source":42,"target":50},{"source":42,"target":4},{"source":5,"target":0},{"source":5,"target":44},{"source":5,"target":51},{"source":5,"target":52},{"source":5,"target":37},{"source":44,"target":4},{"source":44,"target":53},{"source":44,"target":5},{"source":44,"target":38},{"source":53,"target":4},{"source":51,"target":54},{"source":51,"target":5},{"source":52,"target":55},{"source":52,"target":5},{"source":37,"target":3},{"source":37,"target":56},{"source":37,"target":5},{"source":37,"target":32},{"source":56,"target":3},{"source":6,"target":0},{"source":6,"target":46},{"source":6,"target":57},{"source":46,"target":4},{"source":46,"target":58},{"source":46,"target":6},{"source":46,"target":39},{"source":58,"target":4},{"source":57,"target":59},{"source":57,"target":6},{"source":7,"target":0},{"source":7,"target":60},{"source":7,"target":48},{"source":7,"target":61},{"source":60,"target":5},{"source":60,"target":62},{"source":60,"target":7},{"source":62,"target":5},{"source":48,"target":4},{"source":48,"target":63},{"source":48,"target":7},{"source":48,"target":40},{"source":63,"target":4},{"source":61,"target":64},{"source":61,"target":7},{"source":8,"target":0},{"source":8,"target":65},{"source":8,"target":66},{"source":8,"target":67},{"source":65,"target":5},{"source":65,"target":68},{"source":65,"target":8},{"source":68,"target":5},{"source":66,"target":9},{"source":66,"target":69},{"source":66,"target":8},{"source":69,"target":9},{"source":67,"target":12},{"source":67,"target":70},{"source":67,"target":8},{"source":70,"target":12},{"source":9,"target":0},{"source":9,"target":71},{"source":71,"target":10},{"source":71,"target":72},{"source":71,"target":9},{"source":72,"target":10},{"source":10,"target":0},{"source":10,"target":73},{"source":10,"target":74},{"source":10,"target":75},{"source":10,"target":76},{"source":10,"target":77},{"source":73,"target":10},{"source":73,"target":78},{"source":73,"target":10},{"source":78,"target":10},{"source":74,"target":10},{"source":74,"target":79},{"source":74,"target":10},{"source":79,"target":10},{"source":75,"target":80},{"source":75,"target":10},{"source":76,"target":81},{"source":76,"target":10},{"source":77,"target":82},{"source":77,"target":10},{"source":11,"target":0},{"source":11,"target":83},{"source":11,"target":84},{"source":83,"target":1},{"source":83,"target":85},{"source":83,"target":11},{"source":85,"target":1},{"source":84,"target":8},{"source":84,"target":86},{"source":84,"target":11},{"source":86,"target":8},{"source":12,"target":0},{"source":12,"target":87},{"source":12,"target":88},{"source":12,"target":89},{"source":12,"target":90},{"source":12,"target":91},{"source":12,"target":92},{"source":87,"target":12},{"source":88,"target":12},{"source":89,"target":12},{"source":90,"target":12},{"source":91,"target":12},{"source":92,"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="Hallo"> <eClassifiers xsi:type="ecore:EClass" name="X"> <eTypeParameters name="T"/> <eStructuralFeatures xsi:type="ecore:EReference" name="a"> <eGenericType eClassifier="#//X"> <eTypeArguments eTypeParameter="#//X/T"/> </eGenericType> </eStructuralFeatures> </eClassifiers> </ecore:EPackage>
github:ecore:/data/repairvision/repairvision/plugins/org.sidiff.revision.editrules.generation.difference/tests/test01/modelB/model.ecore
ecore
Hallo X T a
null
{"directed":true,"nodes":[{"nsPrefix":null,"nsURI":null,"name":"Hallo","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"X","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"name":"T","id":2,"eClass":"ETypeParameter"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"a","changeable":true,"resolveProxies":true,"lowerBound":0,"id":3,"derived":false},{"id":4,"eClass":"EGenericType"},{"id":5,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":1,"target":0},{"source":1,"target":2},{"source":1,"target":3},{"source":3,"target":1},{"source":3,"target":4},{"source":3,"target":1},{"source":4,"target":5},{"source":4,"target":1},{"source":5,"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="datatypes" nsURI="http://www.ibm.com/xmlns/prod/commerce/member" nsPrefix="Member"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="&#xD;&#xA;&#x9;&#x9;&#x9;This foundation XML schema file defines the common elements and types shared by the&#xD;&#xA;&#x9;&#x9;&#x9;entire schema.&#xD;&#xA;&#x9;&#x9;"/> </eAnnotations> <eClassifiers xsi:type="ecore:EClass" name="BusinessProfileType"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="BusinessProfileType"/> <details key="kind" value="elementOnly"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="businessTitle" unique="false" 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 business title."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="BusinessTitle"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="organizationName" unique="false" 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 of the organization."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="OrganizationName"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="organizationalUnitName" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Name of the organizational unit."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="OrganizationalUnitName"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="employeeID" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A method to identify the employee, such as by employee number. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="EmployeeID"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="alternateID" 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="A special ID assigned by the organization or organizational unit to which this business user belongs. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="AlternateID"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="employeeType" unique="false" 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 employee type, such as regular, part time, special part time, supplemental, and contractor. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="EmployeeType"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="officeAddress" eType="ecore:EClass com.ibm.commerce.foundation.datatypes.ecore#//AddressType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The office address."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="OfficeAddress"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="departmentNumber" unique="false" 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 department number for the business user. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="DepartmentNumber"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="manager" unique="false" 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 of the manager or supervisor or this his business user. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="Manager"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="secretary" unique="false" 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 of the secretary or administrative assistant of the business user. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="Secretary"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="requisitionerID" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A unique ID for identifying the requisitioner. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="RequisitionerID"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="userArea" eType="ecore:EClass com.ibm.commerce.foundation.datatypes.ecore#//UserDataType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="User data."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="UserArea"/> <details key="namespace" value="##targetNamespace"/> </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="organization" upperBound="-2" eType="#//OrganizationType" 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="Organization"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="syncOrganization" upperBound="-2" eType="#//SyncOrganizationType" 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="SyncOrganization"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="person" upperBound="-2" eType="#//PersonType" 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="Person"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="syncPerson" upperBound="-2" eType="#//SyncPersonType" 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="SyncPerson"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="OrganizationType"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="OrganizationType"/> <details key="kind" value="elementOnly"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="organizationIdentifier" eType="ecore:EClass com.ibm.commerce.foundation.datatypes.ecore#//OrganizationIdentifierType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The organization identifier."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="OrganizationIdentifier"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="parentIdentifier" eType="ecore:EClass com.ibm.commerce.foundation.datatypes.ecore#//OrganizationIdentifierType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The identifier for the parent."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="ParentIdentifier"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="organizationName" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Short name for organization (O) or organization unit (OU). Not null is a requirement since it will be mapped to O or OU which are required attributes in LDAP. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="OrganizationName"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="organizationType" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Type of OrgEntity. Valid values are as follows:&#xD;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;O = organization&#xD;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;OU = organization unit &#xD;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="OrganizationType"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="businessCategory" unique="false" 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 business category, which describes the kind of business performed by an OrgEntity. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="BusinessCategory"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="description" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A description of the OrgEntity. "/> </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="contactInfo" eType="ecore:EClass com.ibm.commerce.foundation.datatypes.ecore#//ContactInfoType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The primary contact information."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="ContactInfo"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="contactList" eType="ecore:EClass com.ibm.commerce.foundation.datatypes.ecore#//ContactListType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A list of the contact information."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="ContactList"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="contextAttribute" upperBound="-1" eType="ecore:EClass com.ibm.commerce.foundation.datatypes.ecore#//AttributeType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The context attribute."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="ContextAttribute"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="userArea" eType="ecore:EClass com.ibm.commerce.foundation.datatypes.ecore#//UserDataType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="User data."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="UserArea"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="PersonalProfileType"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="PersonalProfileType"/> <details key="kind" value="elementOnly"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="preferredCurrency" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Preferred currency in 3-character alphabetic code as per ISO 4217. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="PreferredCurrency"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="preferredLanguage" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Preferred language."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="PreferredLanguage"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="displayName" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Display name of the entry. This is a name used in displaying an entry in a one line summary list. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="DisplayName"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="photoURL" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A location for the photograph of the person. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="PhotoURL"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="preferredMeasure" unique="false" 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 preferred measure."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="PreferredMeasure"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="preferredCommunication" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Preferred method of communication by phone. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="PreferredCommunication"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="preferredDelivery" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Preferred delivery method. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="PreferredDelivery"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="description" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Description of the person. "/> </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="gender" unique="false" 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 gender of the person. Valid values are as follows:&#xD;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;F = female &#xD;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;M = male &#xD;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;N = not provided &#xD;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;If not provided, N is used as the default. &#xD;&#xA;&#x9;&#x9;&#x9;&#x9;&#x9;"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="Gender"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="birthDay" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//Date"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The birthday of the person."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="BirthDay"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="income" unique="false" 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 annual income for the person."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="Income"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="maritalStatus" unique="false" 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 marital status of the person."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="MaritalStatus"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="incomeCurrency" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Currency for the income of the person."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="IncomeCurrency"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="numberOfChildren" unique="false" 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 number of children that the person has. If not provided, the default is 0. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="NumberOfChildren"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="household" unique="false" 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="Number of people in the household. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="Household"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="companyName" unique="false" 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 company for which the person works. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="CompanyName"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="hobbies" 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 main interests and hobbies of the person."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="Hobbies"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="timezone" unique="false" 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 time zone in which the person resides. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="Timezone"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="userArea" eType="ecore:EClass com.ibm.commerce.foundation.datatypes.ecore#//UserDataType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="User data."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="UserArea"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="PersonType"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="PersonType"/> <details key="kind" value="elementOnly"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="personIdentifier" eType="ecore:EClass com.ibm.commerce.foundation.datatypes.ecore#//PersonIdentifierType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The person identifier."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="PersonIdentifier"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="parentIdentifier" eType="ecore:EClass com.ibm.commerce.foundation.datatypes.ecore#//OrganizationIdentifierType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The identifier for the parent."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="ParentIdentifier"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="name" eType="ecore:EClass com.ibm.commerce.foundation.datatypes.ecore#//PersonNameType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The person's name."/> </eAnnotations> <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="personalProfile" eType="#//PersonalProfileType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The personal profile."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="PersonalProfile"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="businessProfile" eType="#//BusinessProfileType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The business profile."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="BusinessProfile"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="authentication" eType="ecore:EClass com.ibm.commerce.foundation.datatypes.ecore#//AuthenticationType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The authentication information."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="Authentication"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="contactInfo" eType="ecore:EClass com.ibm.commerce.foundation.datatypes.ecore#//ContactInfoType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The primary contact information."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="ContactInfo"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="contactList" eType="ecore:EClass com.ibm.commerce.foundation.datatypes.ecore#//ContactListType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A list of the contact information."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="ContactList"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="contextAttribute" upperBound="-1" eType="ecore:EClass com.ibm.commerce.foundation.datatypes.ecore#//AttributeType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The context attribute."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="ContextAttribute"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="userArea" eType="ecore:EClass com.ibm.commerce.foundation.datatypes.ecore#//UserDataType" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="User data."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="UserArea"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="SyncOrganizationDataAreaType"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="SyncOrganizationDataAreaType"/> <details key="kind" value="elementOnly"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="sync" lowerBound="1" eType="ecore:EClass com.ibm.commerce.oagis9.datatypes.ecore#//SyncType" containment="true" resolveProxies="false"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="Sync"/> <details key="namespace" value="http://www.openapplications.org/oagis/9"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="organization" upperBound="-1" eType="#//OrganizationType" containment="true" resolveProxies="false"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="Organization"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="SyncOrganizationType" eSuperTypes="com.ibm.commerce.oagis9.datatypes.ecore#//BusinessObjectDocumentType"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="SyncOrganizationType"/> <details key="kind" value="elementOnly"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="dataArea" lowerBound="1" eType="#//SyncOrganizationDataAreaType" containment="true" resolveProxies="false"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="DataArea"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="SyncPersonDataAreaType"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="SyncPersonDataAreaType"/> <details key="kind" value="elementOnly"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="sync" lowerBound="1" eType="ecore:EClass com.ibm.commerce.oagis9.datatypes.ecore#//SyncType" containment="true" resolveProxies="false"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="Sync"/> <details key="namespace" value="http://www.openapplications.org/oagis/9"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="person" upperBound="-1" eType="#//PersonType" containment="true" resolveProxies="false"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="Person"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="SyncPersonType" eSuperTypes="com.ibm.commerce.oagis9.datatypes.ecore#//BusinessObjectDocumentType"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="SyncPersonType"/> <details key="kind" value="elementOnly"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="dataArea" lowerBound="1" eType="#//SyncPersonDataAreaType" containment="true" resolveProxies="false"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="DataArea"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> </ecore:EPackage>
github:ecore:/data/marcin-jaz/tutorials/WebServicesRouter/com.ibm.commerce.member.datatypes.ecore
ecore
datatypes BusinessProfileType businessTitle organizationName organizationalUnitName employeeID alternateID employeeType officeAddress departmentNumber manager secretary requisitionerID userArea DocumentRoot mixed xMLNSPrefixMap xSISchemaLocation organization syncOrganization person syncPerson OrganizationType organizationIdentifier parentIdentifier organizationName organizationType businessCategory description contactInfo contactList contextAttribute userArea PersonalProfileType preferredCurrency preferredLanguage displayName photoURL preferredMeasure preferredCommunication preferredDelivery description gender birthDay income maritalStatus incomeCurrency numberOfChildren household companyName hobbies timezone userArea PersonType personIdentifier parentIdentifier name personalProfile businessProfile authentication contactInfo contactList contextAttribute userArea SyncOrganizationDataAreaType sync organization SyncOrganizationType dataArea SyncPersonDataAreaType sync person SyncPersonType dataArea
null
{"directed":true,"nodes":[{"nsPrefix":"Member","nsURI":"http://www.ibm.com/xmlns/prod/commerce/member","name":"datatypes","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BusinessProfileType","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":"OrganizationType","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PersonalProfileType","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PersonType","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SyncOrganizationDataAreaType","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SyncOrganizationType","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SyncPersonDataAreaType","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SyncPersonType","instanceClass":null,"abstract":false,"id":9,"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":"businessTitle","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":false,"name":"organizationName","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":false,"name":"organizationalUnitName","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":false,"name":"employeeID","changeable":true,"lowerBound":0,"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":"alternateID","changeable":true,"lowerBound":0,"iD":false,"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":false,"name":"employeeType","changeable":true,"lowerBound":0,"iD":false,"id":15,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"officeAddress","changeable":true,"resolveProxies":false,"lowerBound":0,"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":false,"name":"departmentNumber","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":false,"name":"manager","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":false,"name":"secretary","changeable":true,"lowerBound":0,"iD":false,"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":false,"name":"requisitionerID","changeable":true,"lowerBound":0,"iD":false,"id":20,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"userArea","changeable":true,"resolveProxies":false,"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"},{"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":"mixed","changeable":true,"lowerBound":0,"iD":false,"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":true,"unique":false,"name":"xMLNSPrefixMap","changeable":true,"resolveProxies":false,"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":true,"unique":false,"name":"xSISchemaLocation","changeable":true,"resolveProxies":false,"lowerBound":0,"id":36,"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":"organization","changeable":true,"resolveProxies":false,"lowerBound":0,"id":37,"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":"syncOrganization","changeable":true,"resolveProxies":false,"lowerBound":0,"id":38,"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":"person","changeable":true,"resolveProxies":false,"lowerBound":0,"id":39,"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":"syncPerson","changeable":true,"resolveProxies":false,"lowerBound":0,"id":40,"derived":true},{"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"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"organizationIdentifier","changeable":true,"resolveProxies":false,"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":"parentIdentifier","changeable":true,"resolveProxies":false,"lowerBound":0,"id":49,"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":"organizationName","changeable":true,"lowerBound":0,"iD":false,"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":false,"name":"organizationType","changeable":true,"lowerBound":0,"iD":false,"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":false,"name":"businessCategory","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":false,"name":"description","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":"contactInfo","changeable":true,"resolveProxies":false,"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":"contactList","changeable":true,"resolveProxies":false,"lowerBound":0,"id":55,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"contextAttribute","changeable":true,"resolveProxies":false,"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":"userArea","changeable":true,"resolveProxies":false,"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"},{"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":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":false,"name":"preferredCurrency","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":false,"name":"preferredLanguage","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":false,"name":"displayName","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":false,"name":"photoURL","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":false,"name":"preferredMeasure","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":false,"name":"preferredCommunication","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":false,"name":"preferredDelivery","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":false,"name":"description","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":false,"name":"gender","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":false,"name":"birthDay","changeable":true,"lowerBound":0,"iD":false,"id":77,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":false,"name":"income","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":false,"name":"maritalStatus","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":false,"name":"incomeCurrency","changeable":true,"lowerBound":0,"iD":false,"id":80,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":false,"name":"numberOfChildren","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":true,"transient":false,"unique":false,"name":"household","changeable":true,"lowerBound":0,"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":false,"name":"companyName","changeable":true,"lowerBound":0,"iD":false,"id":83,"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":"hobbies","changeable":true,"lowerBound":0,"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":false,"name":"timezone","changeable":true,"lowerBound":0,"iD":false,"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":"userArea","changeable":true,"resolveProxies":false,"lowerBound":0,"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"},{"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"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"personIdentifier","changeable":true,"resolveProxies":false,"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":"parentIdentifier","changeable":true,"resolveProxies":false,"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":"name","changeable":true,"resolveProxies":false,"lowerBound":0,"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":"personalProfile","changeable":true,"resolveProxies":false,"lowerBound":0,"id":109,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"businessProfile","changeable":true,"resolveProxies":false,"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":true,"unsettable":false,"transient":false,"unique":true,"name":"authentication","changeable":true,"resolveProxies":false,"lowerBound":0,"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":"contactInfo","changeable":true,"resolveProxies":false,"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":"contactList","changeable":true,"resolveProxies":false,"lowerBound":0,"id":113,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"contextAttribute","changeable":true,"resolveProxies":false,"lowerBound":0,"id":114,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"userArea","changeable":true,"resolveProxies":false,"lowerBound":0,"id":115,"derived":false},{"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"},{"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":"sync","changeable":true,"resolveProxies":false,"lowerBound":1,"id":126,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"organization","changeable":true,"resolveProxies":false,"lowerBound":0,"id":127,"derived":false},{"id":128,"eClass":"EGenericType"},{"id":129,"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":"dataArea","changeable":true,"resolveProxies":false,"lowerBound":1,"id":130,"derived":false},{"id":131,"eClass":"EGenericType"},{"id":132,"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":"sync","changeable":true,"resolveProxies":false,"lowerBound":1,"id":133,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"person","changeable":true,"resolveProxies":false,"lowerBound":0,"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":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"dataArea","changeable":true,"resolveProxies":false,"lowerBound":1,"id":137,"derived":false},{"id":138,"eClass":"EGenericType"},{"id":139,"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":1,"target":17},{"source":1,"target":18},{"source":1,"target":19},{"source":1,"target":20},{"source":1,"target":21},{"source":10,"target":22},{"source":10,"target":1},{"source":11,"target":23},{"source":11,"target":1},{"source":12,"target":24},{"source":12,"target":1},{"source":13,"target":25},{"source":13,"target":1},{"source":14,"target":26},{"source":14,"target":1},{"source":15,"target":27},{"source":15,"target":1},{"source":16,"target":28},{"source":16,"target":1},{"source":17,"target":29},{"source":17,"target":1},{"source":18,"target":30},{"source":18,"target":1},{"source":19,"target":31},{"source":19,"target":1},{"source":20,"target":32},{"source":20,"target":1},{"source":21,"target":33},{"source":21,"target":1},{"source":2,"target":0},{"source":2,"target":34},{"source":2,"target":35},{"source":2,"target":36},{"source":2,"target":37},{"source":2,"target":38},{"source":2,"target":39},{"source":2,"target":40},{"source":34,"target":41},{"source":34,"target":2},{"source":35,"target":42},{"source":35,"target":2},{"source":36,"target":43},{"source":36,"target":2},{"source":37,"target":3},{"source":37,"target":44},{"source":37,"target":2},{"source":44,"target":3},{"source":38,"target":7},{"source":38,"target":45},{"source":38,"target":2},{"source":45,"target":7},{"source":39,"target":5},{"source":39,"target":46},{"source":39,"target":2},{"source":46,"target":5},{"source":40,"target":9},{"source":40,"target":47},{"source":40,"target":2},{"source":47,"target":9},{"source":3,"target":0},{"source":3,"target":48},{"source":3,"target":49},{"source":3,"target":50},{"source":3,"target":51},{"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":48,"target":58},{"source":48,"target":3},{"source":49,"target":59},{"source":49,"target":3},{"source":50,"target":60},{"source":50,"target":3},{"source":51,"target":61},{"source":51,"target":3},{"source":52,"target":62},{"source":52,"target":3},{"source":53,"target":63},{"source":53,"target":3},{"source":54,"target":64},{"source":54,"target":3},{"source":55,"target":65},{"source":55,"target":3},{"source":56,"target":66},{"source":56,"target":3},{"source":57,"target":67},{"source":57,"target":3},{"source":4,"target":0},{"source":4,"target":68},{"source":4,"target":69},{"source":4,"target":70},{"source":4,"target":71},{"source":4,"target":72},{"source":4,"target":73},{"source":4,"target":74},{"source":4,"target":75},{"source":4,"target":76},{"source":4,"target":77},{"source":4,"target":78},{"source":4,"target":79},{"source":4,"target":80},{"source":4,"target":81},{"source":4,"target":82},{"source":4,"target":83},{"source":4,"target":84},{"source":4,"target":85},{"source":4,"target":86},{"source":68,"target":87},{"source":68,"target":4},{"source":69,"target":88},{"source":69,"target":4},{"source":70,"target":89},{"source":70,"target":4},{"source":71,"target":90},{"source":71,"target":4},{"source":72,"target":91},{"source":72,"target":4},{"source":73,"target":92},{"source":73,"target":4},{"source":74,"target":93},{"source":74,"target":4},{"source":75,"target":94},{"source":75,"target":4},{"source":76,"target":95},{"source":76,"target":4},{"source":77,"target":96},{"source":77,"target":4},{"source":78,"target":97},{"source":78,"target":4},{"source":79,"target":98},{"source":79,"target":4},{"source":80,"target":99},{"source":80,"target":4},{"source":81,"target":100},{"source":81,"target":4},{"source":82,"target":101},{"source":82,"target":4},{"source":83,"target":102},{"source":83,"target":4},{"source":84,"target":103},{"source":84,"target":4},{"source":85,"target":104},{"source":85,"target":4},{"source":86,"target":105},{"source":86,"target":4},{"source":5,"target":0},{"source":5,"target":106},{"source":5,"target":107},{"source":5,"target":108},{"source":5,"target":109},{"source":5,"target":110},{"source":5,"target":111},{"source":5,"target":112},{"source":5,"target":113},{"source":5,"target":114},{"source":5,"target":115},{"source":106,"target":116},{"source":106,"target":5},{"source":107,"target":117},{"source":107,"target":5},{"source":108,"target":118},{"source":108,"target":5},{"source":109,"target":4},{"source":109,"target":119},{"source":109,"target":5},{"source":119,"target":4},{"source":110,"target":1},{"source":110,"target":120},{"source":110,"target":5},{"source":120,"target":1},{"source":111,"target":121},{"source":111,"target":5},{"source":112,"target":122},{"source":112,"target":5},{"source":113,"target":123},{"source":113,"target":5},{"source":114,"target":124},{"source":114,"target":5},{"source":115,"target":125},{"source":115,"target":5},{"source":6,"target":0},{"source":6,"target":126},{"source":6,"target":127},{"source":126,"target":128},{"source":126,"target":6},{"source":127,"target":3},{"source":127,"target":129},{"source":127,"target":6},{"source":129,"target":3},{"source":7,"target":0},{"source":7,"target":130},{"source":7,"target":131},{"source":130,"target":6},{"source":130,"target":132},{"source":130,"target":7},{"source":132,"target":6},{"source":8,"target":0},{"source":8,"target":133},{"source":8,"target":134},{"source":133,"target":135},{"source":133,"target":8},{"source":134,"target":5},{"source":134,"target":136},{"source":134,"target":8},{"source":136,"target":5},{"source":9,"target":0},{"source":9,"target":137},{"source":9,"target":138},{"source":137,"target":8},{"source":137,"target":139},{"source":137,"target":9},{"source":139,"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="extendedcontentfwk" nsURI="http://inria/atlanmod/extendedcontentfwk" nsPrefix="extendedcontentfwk"> <eClassifiers xsi:type="ecore:EClass" name="TranslatedElement"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="designation_EN" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ExtendedLogicalApplicationComponent" eSuperTypes="http://www.obeonetwork.org/dsl/togaf/contentfwk/9.0.0#//LogicalApplicationComponent #//TranslatedElement"/> <eClassifiers xsi:type="ecore:EClass" name="ExtendedDataEntity" eSuperTypes="http://www.obeonetwork.org/dsl/togaf/contentfwk/9.0.0#//DataEntity #//TranslatedElement"/> <eClassifiers xsi:type="ecore:EClass" name="ExtendedInformationSystemService" eSuperTypes="http://www.obeonetwork.org/dsl/togaf/contentfwk/9.0.0#//InformationSystemService #//TranslatedElement"/> <eClassifiers xsi:type="ecore:EClass" name="ExtendedPhysicalApplicationComponent" eSuperTypes="http://www.obeonetwork.org/dsl/togaf/contentfwk/9.0.0#//PhysicalApplicationComponent #//TranslatedElement"/> <eClassifiers xsi:type="ecore:EClass" name="ExtendedFunction" eSuperTypes="http://www.obeonetwork.org/dsl/togaf/contentfwk/9.0.0#//Function #//TranslatedElement"/> <eClassifiers xsi:type="ecore:EClass" name="ExtendedProduct" eSuperTypes="http://www.obeonetwork.org/dsl/togaf/contentfwk/9.0.0#//Product #//TranslatedElement"> <eStructuralFeatures xsi:type="ecore:EReference" name="isBasedOn" upperBound="-1" eType="#//ExtendedPhysicalApplicationComponent"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ExtendedBusinessService" eSuperTypes="http://www.obeonetwork.org/dsl/togaf/contentfwk/9.0.0#//BusinessService #//TranslatedElement"/> <eClassifiers xsi:type="ecore:EClass" name="ExtendedRole" eSuperTypes="http://www.obeonetwork.org/dsl/togaf/contentfwk/9.0.0#//Role #//TranslatedElement"/> <eClassifiers xsi:type="ecore:EClass" name="ExtendedProcess" eSuperTypes="http://www.obeonetwork.org/dsl/togaf/contentfwk/9.0.0#//Process #//TranslatedElement"> <eStructuralFeatures xsi:type="ecore:EReference" name="isDocumentedBy" eType="#//Document" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ExtendedActor" eSuperTypes="http://www.obeonetwork.org/dsl/togaf/contentfwk/9.0.0#//Actor #//TranslatedElement"/> <eClassifiers xsi:type="ecore:EClass" name="Document" eSuperTypes="#//TranslatedElement http://www.obeonetwork.org/dsl/togaf/contentfwk/9.0.0#//Element"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="source" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="lien_FR" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="lien_EN" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ExtendedPhysicalTechnologyComponent" eSuperTypes="http://www.obeonetwork.org/dsl/togaf/contentfwk/9.0.0#//PhysicalTechnologyComponent #//TranslatedElement"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="hostName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="ip" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eSubpackages name="glpi" nsURI="http://inria/atlanmod/extendedcontentfwk/glpi" nsPrefix="glpi"> <eClassifiers xsi:type="ecore:EClass" name="Entity" eSuperTypes="http://www.obeonetwork.org/dsl/togaf/contentfwk/9.0.0#//OrganizationUnit"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="completename" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="address" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="GLPILocation" eSuperTypes="http://www.obeonetwork.org/dsl/togaf/contentfwk/9.0.0#//Location"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="completename" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Software" eSuperTypes="http://www.obeonetwork.org/dsl/togaf/contentfwk/9.0.0#//LogicalTechnologyComponent"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="manufacturer" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="OperatingSystem" eSuperTypes="http://www.obeonetwork.org/dsl/togaf/contentfwk/9.0.0#//LogicalTechnologyComponent"/> <eClassifiers xsi:type="ecore:EClass" name="GLPIPhysicalTechnologyComponent" eSuperTypes="#//ExtendedPhysicalTechnologyComponent"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="serial" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="other_serial" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="contact" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="contact_num" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="manufacturer" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Computer" eSuperTypes="#//glpi/GLPIPhysicalTechnologyComponent"> <eStructuralFeatures xsi:type="ecore:EReference" name="operatingSystem" eType="#//glpi/OperatingSystem"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Printer" eSuperTypes="#//glpi/GLPIPhysicalTechnologyComponent"/> <eClassifiers xsi:type="ecore:EClass" name="Monitor" eSuperTypes="#//glpi/GLPIPhysicalTechnologyComponent"/> </eSubpackages> </ecore:EPackage>
github:ecore:/data/mallon/Past-Projects/TEAP/Metamodels/acf_extended/extendedcontentfwk.ecore
ecore
extendedcontentfwk TranslatedElement designation_EN ExtendedLogicalApplicationComponent ExtendedDataEntity ExtendedInformationSystemService ExtendedPhysicalApplicationComponent ExtendedFunction ExtendedProduct isBasedOn ExtendedBusinessService ExtendedRole ExtendedProcess isDocumentedBy ExtendedActor Document source lien_FR lien_EN ExtendedPhysicalTechnologyComponent hostName ip glpi Entity completename address GLPILocation completename Software manufacturer OperatingSystem GLPIPhysicalTechnologyComponent serial other_serial contact contact_num manufacturer Computer operatingSystem Printer Monitor
null
{"directed":true,"nodes":[{"nsPrefix":"extendedcontentfwk","nsURI":"http://inria/atlanmod/extendedcontentfwk","name":"extendedcontentfwk","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TranslatedElement","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExtendedLogicalApplicationComponent","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExtendedDataEntity","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExtendedInformationSystemService","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExtendedPhysicalApplicationComponent","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExtendedFunction","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExtendedProduct","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExtendedBusinessService","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExtendedRole","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExtendedProcess","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExtendedActor","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Document","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExtendedPhysicalTechnologyComponent","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"nsPrefix":"glpi","nsURI":"http://inria/atlanmod/extendedcontentfwk/glpi","name":"glpi","id":14,"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":"designation_EN","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"},{"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":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"isBasedOn","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"},{"id":34,"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":"isDocumentedBy","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"},{"id":40,"eClass":"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":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":"lien_FR","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":"lien_EN","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"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"hostName","changeable":true,"lowerBound":0,"iD":false,"id":49,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"ip","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"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Entity","instanceClass":null,"abstract":false,"id":55,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"GLPILocation","instanceClass":null,"abstract":false,"id":56,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Software","instanceClass":null,"abstract":false,"id":57,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OperatingSystem","instanceClass":null,"abstract":false,"id":58,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"GLPIPhysicalTechnologyComponent","instanceClass":null,"abstract":false,"id":59,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Computer","instanceClass":null,"abstract":false,"id":60,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Printer","instanceClass":null,"abstract":false,"id":61,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Monitor","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":"completename","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":"address","changeable":true,"lowerBound":0,"iD":false,"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":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"completename","changeable":true,"lowerBound":0,"iD":false,"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":"manufacturer","changeable":true,"lowerBound":0,"iD":false,"id":71,"derived":false},{"id":72,"eClass":"EGenericType"},{"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":"serial","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":"other_serial","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":"contact","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":"contact_num","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":"manufacturer","changeable":true,"lowerBound":0,"iD":false,"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"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"operatingSystem","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"}],"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":1,"target":0},{"source":1,"target":15},{"source":15,"target":16},{"source":15,"target":1},{"source":2,"target":0},{"source":2,"target":1},{"source":2,"target":17},{"source":2,"target":18},{"source":18,"target":1},{"source":3,"target":0},{"source":3,"target":1},{"source":3,"target":19},{"source":3,"target":20},{"source":20,"target":1},{"source":4,"target":0},{"source":4,"target":1},{"source":4,"target":21},{"source":4,"target":22},{"source":22,"target":1},{"source":5,"target":0},{"source":5,"target":1},{"source":5,"target":23},{"source":5,"target":24},{"source":24,"target":1},{"source":6,"target":0},{"source":6,"target":1},{"source":6,"target":25},{"source":6,"target":26},{"source":26,"target":1},{"source":7,"target":0},{"source":7,"target":1},{"source":7,"target":27},{"source":7,"target":28},{"source":7,"target":29},{"source":27,"target":5},{"source":27,"target":30},{"source":27,"target":7},{"source":30,"target":5},{"source":29,"target":1},{"source":8,"target":0},{"source":8,"target":1},{"source":8,"target":31},{"source":8,"target":32},{"source":32,"target":1},{"source":9,"target":0},{"source":9,"target":1},{"source":9,"target":33},{"source":9,"target":34},{"source":34,"target":1},{"source":10,"target":0},{"source":10,"target":1},{"source":10,"target":35},{"source":10,"target":36},{"source":10,"target":37},{"source":35,"target":12},{"source":35,"target":38},{"source":35,"target":10},{"source":38,"target":12},{"source":37,"target":1},{"source":11,"target":0},{"source":11,"target":1},{"source":11,"target":39},{"source":11,"target":40},{"source":40,"target":1},{"source":12,"target":0},{"source":12,"target":1},{"source":12,"target":41},{"source":12,"target":42},{"source":12,"target":43},{"source":12,"target":44},{"source":12,"target":45},{"source":41,"target":46},{"source":41,"target":12},{"source":42,"target":47},{"source":42,"target":12},{"source":43,"target":48},{"source":43,"target":12},{"source":44,"target":1},{"source":13,"target":0},{"source":13,"target":1},{"source":13,"target":49},{"source":13,"target":50},{"source":13,"target":51},{"source":13,"target":52},{"source":49,"target":53},{"source":49,"target":13},{"source":50,"target":54},{"source":50,"target":13},{"source":52,"target":1},{"source":14,"target":55},{"source":14,"target":56},{"source":14,"target":57},{"source":14,"target":58},{"source":14,"target":59},{"source":14,"target":60},{"source":14,"target":61},{"source":14,"target":62},{"source":14,"target":0},{"source":55,"target":14},{"source":55,"target":63},{"source":55,"target":64},{"source":55,"target":65},{"source":63,"target":66},{"source":63,"target":55},{"source":64,"target":67},{"source":64,"target":55},{"source":56,"target":14},{"source":56,"target":68},{"source":56,"target":69},{"source":68,"target":70},{"source":68,"target":56},{"source":57,"target":14},{"source":57,"target":71},{"source":57,"target":72},{"source":71,"target":73},{"source":71,"target":57},{"source":58,"target":14},{"source":58,"target":74},{"source":59,"target":14},{"source":59,"target":13},{"source":59,"target":75},{"source":59,"target":76},{"source":59,"target":77},{"source":59,"target":78},{"source":59,"target":79},{"source":59,"target":80},{"source":75,"target":81},{"source":75,"target":59},{"source":76,"target":82},{"source":76,"target":59},{"source":77,"target":83},{"source":77,"target":59},{"source":78,"target":84},{"source":78,"target":59},{"source":79,"target":85},{"source":79,"target":59},{"source":80,"target":13},{"source":60,"target":14},{"source":60,"target":59},{"source":60,"target":86},{"source":60,"target":87},{"source":86,"target":58},{"source":86,"target":88},{"source":86,"target":60},{"source":88,"target":58},{"source":87,"target":59},{"source":61,"target":14},{"source":61,"target":59},{"source":61,"target":89},{"source":89,"target":59},{"source":62,"target":14},{"source":62,"target":59},{"source":62,"target":90},{"source":90,"target":59}],"multigraph":true}
true
<?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="astransast" nsURI="http://ast.ast" nsPrefix="astransast"> <eClassifiers xsi:type="ecore:EClass" name="BAS"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="b"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eStructuralFeatures> </eClassifiers> </ecore:EPackage>
github:ecore:/data/abreslav/astrans/ru.ifmo.rain.astrans.tests/testData/interpreter/testTranslateToPrimitive/output.ecore
ecore
astransast BAS b
null
{"directed":true,"nodes":[{"nsPrefix":"astransast","nsURI":"http://ast.ast","name":"astransast","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BAS","instanceClass":null,"abstract":false,"id":1,"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":"b","changeable":true,"lowerBound":0,"iD":false,"id":2,"derived":false},{"id":3,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":1,"target":0},{"source":1,"target":2},{"source":2,"target":3},{"source":2,"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="solverlpsolve" nsURI="http://www.misc.com/common/moplaf/solver/lpsolve/model/0.1" nsPrefix="svrlp"> <eClassifiers xsi:type="ecore:EClass" name="SolverLpSolve" eSuperTypes="../../com.misc.common.moplaf.solver.emf/model/solver.ecore#//SolverLp ../../com.misc.common.moplaf.solver.emf/model/solver.ecore#//ILpWriter"/> </ecore:EPackage>
github:ecore:/data/MichelSc/common.moplaf/common.moplaf.solver.lpsolve/com.misc.common.moplaf.solver.lpsolve.emf/model/solverlpsolve.ecore
ecore
solverlpsolve SolverLpSolve
null
{"directed":true,"nodes":[{"nsPrefix":"svrlp","nsURI":"http://www.misc.com/common/moplaf/solver/lpsolve/model/0.1","name":"solverlpsolve","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SolverLpSolve","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"id":2,"eClass":"EGenericType"},{"id":3,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":1,"target":0},{"source":1,"target":2},{"source":1,"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="RBAC" nsURI="rbac.ecore" nsPrefix="csu"> <eClassifiers xsi:type="ecore:EClass" name="User"> <eOperations name="CreateSession" lowerBound="1" eType="#//Session"> <eParameters name="roles" upperBound="-1" eType="#//Role"/> </eOperations> <eOperations name="DeleteSessions" eType="#//Boolean"> <eParameters name="session" lowerBound="1" eType="#//Session"/> </eOperations> <eOperations name="AssignRole" lowerBound="1" eType="#//Boolean"> <eParameters name="role" lowerBound="1" eType="#//Role"/> </eOperations> <eOperations name="DeassignRole" lowerBound="1" eType="#//Boolean"> <eParameters name="role" lowerBound="1" eType="#//Role"/> </eOperations> <eOperations name="GetAssignedRoles" upperBound="-1" eType="#//Role"/> <eOperations name="GetAuthorizedRoles" upperBound="-1" eType="#//Role"/> <eStructuralFeatures xsi:type="ecore:EReference" name="UserSession" lowerBound="1" upperBound="-1" eType="#//Session" eOpposite="#//Session/UserSession"/> <eStructuralFeatures xsi:type="ecore:EReference" name="UserAssignment" upperBound="-1" eType="#//Role" eOpposite="#//Role/UserAssignment"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Session"> <eOperations name="AddActiveRole"> <eParameters name="role" lowerBound="1" eType="#//Role"/> </eOperations> <eOperations name="DropActiveRole"> <eParameters name="role" lowerBound="1" eType="#//Role"/> </eOperations> <eOperations name="CheckAccess" lowerBound="1" eType="#//Boolean"> <eParameters name="target" lowerBound="1" eType="#//Target"/> <eParameters name="operationType" lowerBound="1" eType="#//Operation"/> </eOperations> <eOperations name="GetAllActiveRole" upperBound="-1" eType="#//Role"/> <eStructuralFeatures xsi:type="ecore:EReference" name="SessionRole" upperBound="-1" eType="#//Role" eOpposite="#//Role/SessionRole"/> <eStructuralFeatures xsi:type="ecore:EReference" name="UserSession" eType="#//User" eOpposite="#//User/UserSession"/> <eStructuralFeatures xsi:type="ecore:EReference" name="SessionOperation" lowerBound="1" upperBound="-1" eType="#//Operation"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Role"> <eOperations name="GrantPermission" lowerBound="1" eType="#//Boolean"> <eParameters name="permission" lowerBound="1" eType="#//Permission"/> </eOperations> <eOperations name="RevokePermission" lowerBound="1" eType="#//Boolean"> <eParameters name="permission" lowerBound="1" eType="#//Permission"/> </eOperations> <eOperations name="CheckAccess" lowerBound="1" eType="#//Boolean"> <eParameters name="target" lowerBound="1" eType="#//Target"/> <eParameters name="operationType" lowerBound="1" eType="#//Operation"/> </eOperations> <eOperations name="AddInheritance" lowerBound="1" eType="#//Boolean"> <eParameters name="seniorRole" lowerBound="1" eType="#//Role"/> </eOperations> <eOperations name="DeleteInheritance" lowerBound="1" eType="#//Boolean"> <eParameters name="seniorRole" lowerBound="1" eType="#//Role"/> </eOperations> <eOperations name="AddSSDRole" lowerBound="1" eType="#//Boolean"> <eParameters name="role" eType="#//Role"/> </eOperations> <eOperations name="DeleteSSDRole" lowerBound="1" eType="#//Boolean"> <eParameters name="role" eType="#//Role"/> </eOperations> <eOperations name="GetAllJuniors" upperBound="-1" eType="#//Role"/> <eOperations name="GetAllSeniors" upperBound="-1" eType="#//Role"/> <eOperations name="GetAuthorizedUsers" upperBound="-1" eType="#//User"/> <eStructuralFeatures xsi:type="ecore:EReference" name="UserAssignment" upperBound="-1" eType="#//User" eOpposite="#//User/UserAssignment"/> <eStructuralFeatures xsi:type="ecore:EReference" name="SessionRole" upperBound="-1" eType="#//Session" eOpposite="#//Session/SessionRole"/> <eStructuralFeatures xsi:type="ecore:EReference" name="junior" upperBound="-1" eType="#//Role" eOpposite="#//Role/senior"/> <eStructuralFeatures xsi:type="ecore:EReference" name="senior" upperBound="-1" eType="#//Role" eOpposite="#//Role/junior"/> <eStructuralFeatures xsi:type="ecore:EReference" name="PermAssignment" upperBound="-1" eType="#//Permission" eOpposite="#//Permission/PermAssignment"/> <eStructuralFeatures xsi:type="ecore:EReference" name="SSDA" upperBound="-1" eType="#//Role" eOpposite="#//Role/SSDB"/> <eStructuralFeatures xsi:type="ecore:EReference" name="SSDB" upperBound="-1" eType="#//Role" eOpposite="#//Role/SSDA"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Permission"> <eStructuralFeatures xsi:type="ecore:EReference" name="PermAssignment" upperBound="-1" eType="#//Role" eOpposite="#//Role/PermAssignment"/> <eStructuralFeatures xsi:type="ecore:EReference" name="target" upperBound="-1" eType="#//Target" eOpposite="#//Target/pemission"/> <eStructuralFeatures xsi:type="ecore:EReference" name="operationType" upperBound="-1" eType="#//Operation" eOpposite="#//Operation/pemission"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Target"> <eStructuralFeatures xsi:type="ecore:EReference" name="pemission" upperBound="-1" eType="#//Permission" eOpposite="#//Permission/target"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Operation"> <eOperations name="execute" eType="#//Type"> <eParameters name="target" lowerBound="1" upperBound="-1" eType="#//Target"/> <eParameters name="params" upperBound="-1" eType="#//Type"/> </eOperations> <eStructuralFeatures xsi:type="ecore:EReference" name="pemission" upperBound="-1" eType="#//Permission" eOpposite="#//Permission/operationType"/> <eStructuralFeatures xsi:type="ecore:EReference" name="SessionOperation" lowerBound="1" upperBound="-1" eType="#//Session"/> </eClassifiers> <eClassifiers xsi:type="ecore:EDataType" name="Boolean" instanceClassName="java.lang.Boolean"/> <eClassifiers xsi:type="ecore:EDataType" name="Type" instanceClassName="java.lang.Object"/> </ecore:EPackage>
github:ecore:/data/diverse-project/kermeta/kompose_projects/backup_04_11_08/org.kermeta.kompose.external/RbacAcl/model/RBAC_command.ecore
ecore
RBAC User CreateSession roles DeleteSessions session AssignRole role DeassignRole role GetAssignedRoles GetAuthorizedRoles UserSession UserAssignment Session AddActiveRole role DropActiveRole role CheckAccess target operationType GetAllActiveRole SessionRole UserSession SessionOperation Role GrantPermission permission RevokePermission permission CheckAccess target operationType AddInheritance seniorRole DeleteInheritance seniorRole AddSSDRole role DeleteSSDRole role GetAllJuniors GetAllSeniors GetAuthorizedUsers UserAssignment SessionRole junior senior PermAssignment SSDA SSDB Permission PermAssignment target operationType Target pemission Operation execute target params pemission SessionOperation Boolean java.lang.Boolean java.lang.Boolean Type java.lang.Object java.lang.Object
null
{"directed":true,"nodes":[{"nsPrefix":"csu","nsURI":"rbac.ecore","name":"RBAC","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"User","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Session","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Role","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Permission","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Target","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":"java.lang.Boolean","defaultValue":null,"instanceClassName":"java.lang.Boolean","name":"Boolean","instanceClass":"java.lang.Boolean","id":7,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.lang.Object","defaultValue":null,"instanceClassName":"java.lang.Object","name":"Type","instanceClass":"java.lang.Object","id":8,"serializable":true,"eClass":"EDataType"},{"ordered":true,"upperBound":1,"unique":true,"name":"CreateSession","lowerBound":1,"id":9,"many":false,"required":true,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"DeleteSessions","lowerBound":0,"id":10,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"AssignRole","lowerBound":1,"id":11,"many":false,"required":true,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"DeassignRole","lowerBound":1,"id":12,"many":false,"required":true,"eClass":"EOperation"},{"ordered":true,"upperBound":-1,"unique":true,"name":"GetAssignedRoles","lowerBound":0,"id":13,"many":true,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":-1,"unique":true,"name":"GetAuthorizedRoles","lowerBound":0,"id":14,"many":true,"required":false,"eClass":"EOperation"},{"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":"UserSession","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":false,"unsettable":false,"transient":false,"unique":true,"name":"UserAssignment","changeable":true,"resolveProxies":true,"lowerBound":0,"id":16,"derived":false},{"id":17,"eClass":"EGenericType"},{"ordered":true,"upperBound":-1,"unique":true,"name":"roles","lowerBound":0,"id":18,"many":true,"required":false,"eClass":"EParameter"},{"id":19,"eClass":"EGenericType"},{"id":20,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"session","lowerBound":1,"id":21,"many":false,"required":true,"eClass":"EParameter"},{"id":22,"eClass":"EGenericType"},{"id":23,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"role","lowerBound":1,"id":24,"many":false,"required":true,"eClass":"EParameter"},{"id":25,"eClass":"EGenericType"},{"id":26,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"role","lowerBound":1,"id":27,"many":false,"required":true,"eClass":"EParameter"},{"id":28,"eClass":"EGenericType"},{"id":29,"eClass":"EGenericType"},{"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":false,"unsettable":false,"transient":false,"unique":true,"name":"UserSession","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":false,"unsettable":false,"transient":false,"unique":true,"name":"UserAssignment","changeable":true,"resolveProxies":true,"lowerBound":0,"id":34,"derived":false},{"ordered":true,"upperBound":1,"unique":true,"name":"AddActiveRole","lowerBound":0,"id":35,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"DropActiveRole","lowerBound":0,"id":36,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"CheckAccess","lowerBound":1,"id":37,"many":false,"required":true,"eClass":"EOperation"},{"ordered":true,"upperBound":-1,"unique":true,"name":"GetAllActiveRole","lowerBound":0,"id":38,"many":true,"required":false,"eClass":"EOperation"},{"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":"SessionRole","changeable":true,"resolveProxies":true,"lowerBound":0,"id":39,"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":"SessionOperation","changeable":true,"resolveProxies":true,"lowerBound":1,"id":40,"derived":false},{"ordered":true,"upperBound":1,"unique":true,"name":"role","lowerBound":1,"id":41,"many":false,"required":true,"eClass":"EParameter"},{"id":42,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"role","lowerBound":1,"id":43,"many":false,"required":true,"eClass":"EParameter"},{"id":44,"eClass":"EGenericType"},{"id":45,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"target","lowerBound":1,"id":46,"many":false,"required":true,"eClass":"EParameter"},{"ordered":true,"upperBound":1,"unique":true,"name":"operationType","lowerBound":1,"id":47,"many":false,"required":true,"eClass":"EParameter"},{"id":48,"eClass":"EGenericType"},{"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":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"SessionRole","changeable":true,"resolveProxies":true,"lowerBound":0,"id":52,"derived":false},{"id":53,"eClass":"EGenericType"},{"id":54,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"GrantPermission","lowerBound":1,"id":55,"many":false,"required":true,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"RevokePermission","lowerBound":1,"id":56,"many":false,"required":true,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"CheckAccess","lowerBound":1,"id":57,"many":false,"required":true,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"AddInheritance","lowerBound":1,"id":58,"many":false,"required":true,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"DeleteInheritance","lowerBound":1,"id":59,"many":false,"required":true,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"AddSSDRole","lowerBound":1,"id":60,"many":false,"required":true,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"DeleteSSDRole","lowerBound":1,"id":61,"many":false,"required":true,"eClass":"EOperation"},{"ordered":true,"upperBound":-1,"unique":true,"name":"GetAllJuniors","lowerBound":0,"id":62,"many":true,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":-1,"unique":true,"name":"GetAllSeniors","lowerBound":0,"id":63,"many":true,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":-1,"unique":true,"name":"GetAuthorizedUsers","lowerBound":0,"id":64,"many":true,"required":false,"eClass":"EOperation"},{"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":"junior","changeable":true,"resolveProxies":true,"lowerBound":0,"id":65,"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":"senior","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":false,"unsettable":false,"transient":false,"unique":true,"name":"PermAssignment","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":"SSDA","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":false,"unsettable":false,"transient":false,"unique":true,"name":"SSDB","changeable":true,"resolveProxies":true,"lowerBound":0,"id":69,"derived":false},{"id":70,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"permission","lowerBound":1,"id":71,"many":false,"required":true,"eClass":"EParameter"},{"id":72,"eClass":"EGenericType"},{"id":73,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"permission","lowerBound":1,"id":74,"many":false,"required":true,"eClass":"EParameter"},{"id":75,"eClass":"EGenericType"},{"id":76,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"target","lowerBound":1,"id":77,"many":false,"required":true,"eClass":"EParameter"},{"ordered":true,"upperBound":1,"unique":true,"name":"operationType","lowerBound":1,"id":78,"many":false,"required":true,"eClass":"EParameter"},{"id":79,"eClass":"EGenericType"},{"id":80,"eClass":"EGenericType"},{"id":81,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"seniorRole","lowerBound":1,"id":82,"many":false,"required":true,"eClass":"EParameter"},{"id":83,"eClass":"EGenericType"},{"id":84,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"seniorRole","lowerBound":1,"id":85,"many":false,"required":true,"eClass":"EParameter"},{"id":86,"eClass":"EGenericType"},{"id":87,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"role","lowerBound":0,"id":88,"many":false,"required":false,"eClass":"EParameter"},{"id":89,"eClass":"EGenericType"},{"id":90,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"role","lowerBound":0,"id":91,"many":false,"required":false,"eClass":"EParameter"},{"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"},{"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":"PermAssignment","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":false,"unsettable":false,"transient":false,"unique":true,"name":"target","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":false,"unsettable":false,"transient":false,"unique":true,"name":"operationType","changeable":true,"resolveProxies":true,"lowerBound":0,"id":105,"derived":false},{"id":106,"eClass":"EGenericType"},{"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":false,"unique":true,"name":"pemission","changeable":true,"resolveProxies":true,"lowerBound":0,"id":108,"derived":false},{"id":109,"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":"pemission","changeable":true,"resolveProxies":true,"lowerBound":0,"id":110,"derived":false},{"id":111,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"execute","lowerBound":0,"id":112,"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":false,"unsettable":false,"transient":false,"unique":true,"name":"SessionOperation","changeable":true,"resolveProxies":true,"lowerBound":1,"id":113,"derived":false},{"id":114,"eClass":"EGenericType"},{"ordered":true,"upperBound":-1,"unique":true,"name":"target","lowerBound":1,"id":115,"many":true,"required":true,"eClass":"EParameter"},{"ordered":true,"upperBound":-1,"unique":true,"name":"params","lowerBound":0,"id":116,"many":true,"required":false,"eClass":"EParameter"},{"id":117,"eClass":"EGenericType"},{"id":118,"eClass":"EGenericType"},{"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":1,"target":0},{"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":9,"target":2},{"source":9,"target":17},{"source":9,"target":1},{"source":9,"target":18},{"source":17,"target":2},{"source":18,"target":3},{"source":18,"target":19},{"source":18,"target":9},{"source":19,"target":3},{"source":10,"target":7},{"source":10,"target":20},{"source":10,"target":1},{"source":10,"target":21},{"source":20,"target":7},{"source":21,"target":2},{"source":21,"target":22},{"source":21,"target":10},{"source":22,"target":2},{"source":11,"target":7},{"source":11,"target":23},{"source":11,"target":1},{"source":11,"target":24},{"source":23,"target":7},{"source":24,"target":3},{"source":24,"target":25},{"source":24,"target":11},{"source":25,"target":3},{"source":12,"target":7},{"source":12,"target":26},{"source":12,"target":1},{"source":12,"target":27},{"source":26,"target":7},{"source":27,"target":3},{"source":27,"target":28},{"source":27,"target":12},{"source":28,"target":3},{"source":13,"target":3},{"source":13,"target":29},{"source":13,"target":1},{"source":29,"target":3},{"source":14,"target":3},{"source":14,"target":30},{"source":14,"target":1},{"source":30,"target":3},{"source":15,"target":2},{"source":15,"target":31},{"source":15,"target":1},{"source":15,"target":32},{"source":31,"target":2},{"source":16,"target":3},{"source":16,"target":33},{"source":16,"target":1},{"source":16,"target":34},{"source":33,"target":3},{"source":2,"target":0},{"source":2,"target":35},{"source":2,"target":36},{"source":2,"target":37},{"source":2,"target":38},{"source":2,"target":39},{"source":2,"target":32},{"source":2,"target":40},{"source":35,"target":2},{"source":35,"target":41},{"source":41,"target":3},{"source":41,"target":42},{"source":41,"target":35},{"source":42,"target":3},{"source":36,"target":2},{"source":36,"target":43},{"source":43,"target":3},{"source":43,"target":44},{"source":43,"target":36},{"source":44,"target":3},{"source":37,"target":7},{"source":37,"target":45},{"source":37,"target":2},{"source":37,"target":46},{"source":37,"target":47},{"source":45,"target":7},{"source":46,"target":5},{"source":46,"target":48},{"source":46,"target":37},{"source":48,"target":5},{"source":47,"target":6},{"source":47,"target":49},{"source":47,"target":37},{"source":49,"target":6},{"source":38,"target":3},{"source":38,"target":50},{"source":38,"target":2},{"source":50,"target":3},{"source":39,"target":3},{"source":39,"target":51},{"source":39,"target":2},{"source":39,"target":52},{"source":51,"target":3},{"source":32,"target":1},{"source":32,"target":53},{"source":32,"target":2},{"source":32,"target":15},{"source":53,"target":1},{"source":40,"target":6},{"source":40,"target":54},{"source":40,"target":2},{"source":54,"target":6},{"source":3,"target":0},{"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":61},{"source":3,"target":62},{"source":3,"target":63},{"source":3,"target":64},{"source":3,"target":34},{"source":3,"target":52},{"source":3,"target":65},{"source":3,"target":66},{"source":3,"target":67},{"source":3,"target":68},{"source":3,"target":69},{"source":55,"target":7},{"source":55,"target":70},{"source":55,"target":3},{"source":55,"target":71},{"source":70,"target":7},{"source":71,"target":4},{"source":71,"target":72},{"source":71,"target":55},{"source":72,"target":4},{"source":56,"target":7},{"source":56,"target":73},{"source":56,"target":3},{"source":56,"target":74},{"source":73,"target":7},{"source":74,"target":4},{"source":74,"target":75},{"source":74,"target":56},{"source":75,"target":4},{"source":57,"target":7},{"source":57,"target":76},{"source":57,"target":3},{"source":57,"target":77},{"source":57,"target":78},{"source":76,"target":7},{"source":77,"target":5},{"source":77,"target":79},{"source":77,"target":57},{"source":79,"target":5},{"source":78,"target":6},{"source":78,"target":80},{"source":78,"target":57},{"source":80,"target":6},{"source":58,"target":7},{"source":58,"target":81},{"source":58,"target":3},{"source":58,"target":82},{"source":81,"target":7},{"source":82,"target":3},{"source":82,"target":83},{"source":82,"target":58},{"source":83,"target":3},{"source":59,"target":7},{"source":59,"target":84},{"source":59,"target":3},{"source":59,"target":85},{"source":84,"target":7},{"source":85,"target":3},{"source":85,"target":86},{"source":85,"target":59},{"source":86,"target":3},{"source":60,"target":7},{"source":60,"target":87},{"source":60,"target":3},{"source":60,"target":88},{"source":87,"target":7},{"source":88,"target":3},{"source":88,"target":89},{"source":88,"target":60},{"source":89,"target":3},{"source":61,"target":7},{"source":61,"target":90},{"source":61,"target":3},{"source":61,"target":91},{"source":90,"target":7},{"source":91,"target":3},{"source":91,"target":92},{"source":91,"target":61},{"source":92,"target":3},{"source":62,"target":3},{"source":62,"target":93},{"source":62,"target":3},{"source":93,"target":3},{"source":63,"target":3},{"source":63,"target":94},{"source":63,"target":3},{"source":94,"target":3},{"source":64,"target":1},{"source":64,"target":95},{"source":64,"target":3},{"source":95,"target":1},{"source":34,"target":1},{"source":34,"target":96},{"source":34,"target":3},{"source":34,"target":16},{"source":96,"target":1},{"source":52,"target":2},{"source":52,"target":97},{"source":52,"target":3},{"source":52,"target":39},{"source":97,"target":2},{"source":65,"target":3},{"source":65,"target":98},{"source":65,"target":3},{"source":65,"target":66},{"source":98,"target":3},{"source":66,"target":3},{"source":66,"target":99},{"source":66,"target":3},{"source":66,"target":65},{"source":99,"target":3},{"source":67,"target":4},{"source":67,"target":100},{"source":67,"target":3},{"source":67,"target":101},{"source":100,"target":4},{"source":68,"target":3},{"source":68,"target":102},{"source":68,"target":3},{"source":68,"target":69},{"source":102,"target":3},{"source":69,"target":3},{"source":69,"target":103},{"source":69,"target":3},{"source":69,"target":68},{"source":103,"target":3},{"source":4,"target":0},{"source":4,"target":101},{"source":4,"target":104},{"source":4,"target":105},{"source":101,"target":3},{"source":101,"target":106},{"source":101,"target":4},{"source":101,"target":67},{"source":106,"target":3},{"source":104,"target":5},{"source":104,"target":107},{"source":104,"target":4},{"source":104,"target":108},{"source":107,"target":5},{"source":105,"target":6},{"source":105,"target":109},{"source":105,"target":4},{"source":105,"target":110},{"source":109,"target":6},{"source":5,"target":0},{"source":5,"target":108},{"source":108,"target":4},{"source":108,"target":111},{"source":108,"target":5},{"source":108,"target":104},{"source":111,"target":4},{"source":6,"target":0},{"source":6,"target":112},{"source":6,"target":110},{"source":6,"target":113},{"source":112,"target":8},{"source":112,"target":114},{"source":112,"target":6},{"source":112,"target":115},{"source":112,"target":116},{"source":114,"target":8},{"source":115,"target":5},{"source":115,"target":117},{"source":115,"target":112},{"source":117,"target":5},{"source":116,"target":8},{"source":116,"target":118},{"source":116,"target":112},{"source":118,"target":8},{"source":110,"target":4},{"source":110,"target":119},{"source":110,"target":6},{"source":110,"target":105},{"source":119,"target":4},{"source":113,"target":2},{"source":113,"target":120},{"source":113,"target":6},{"source":120,"target":2},{"source":7,"target":0},{"source":8,"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="week1" nsURI="http://www.bjornkjellgren.se/Week1" nsPrefix="week1"> <eClassifiers xsi:type="ecore:EClass" name="Week1"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="elements" unique="false" upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> </ecore:EPackage>
github:ecore:/data/makxan/Quizz/Workspace/se.bjornkjellgren.week1/src-gen/se/bjornkjellgren/Week1.ecore
ecore
week1 Week1 elements
null
{"directed":true,"nodes":[{"nsPrefix":"week1","nsURI":"http://www.bjornkjellgren.se/Week1","name":"week1","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Week1","instanceClass":null,"abstract":false,"id":1,"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":"elements","changeable":true,"lowerBound":0,"iD":false,"id":2,"derived":false},{"id":3,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":1,"target":0},{"source":1,"target":2},{"source":2,"target":3},{"source":2,"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="vm" nsURI="http://fr.inria.diverse.puzzle.vm.metamodel" nsPrefix="vm"> <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="LanguageProductLine"> <eStructuralFeatures xsi:type="ecore:EReference" name="functionalVariability" lowerBound="1" eType="#//LanguageFeatureModel" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="semanticalVariability" eType="#//OrthogonalVariabilityModel" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="LanguageFeatureModel" eSuperTypes="#//NamedElement"> <eStructuralFeatures xsi:type="ecore:EReference" name="rootFeature" eType="#//LanguageFeature" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="constraints" upperBound="-1" eType="#//LanguageConstraint" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="LanguageFeature" eSuperTypes="#//NamedElement"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="mandatory" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EReference" name="children" upperBound="-1" eType="#//LanguageFeature" containment="true" eOpposite="#//LanguageFeature/parent"/> <eStructuralFeatures xsi:type="ecore:EReference" name="parent" eType="#//LanguageFeature" eOpposite="#//LanguageFeature/children"/> <eStructuralFeatures xsi:type="ecore:EReference" name="groups" upperBound="-1" eType="#//LanguageFeatureGroup" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="parentGroup" eType="#//LanguageFeatureGroup" eOpposite="#//LanguageFeatureGroup/features"/> <eStructuralFeatures xsi:type="ecore:EReference" name="implementationModule" eType="ecore:EClass ../../fr.inria.diverse.puzzle.language.adl.metamodel/models/ADL.ecore#//LanguageModule"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="selected" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EReference" name="semanticVariationPoint" eType="#//SemanticVariationPoint" eOpposite="#//SemanticVariationPoint/feature"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="LanguageFeatureGroup"> <eStructuralFeatures xsi:type="ecore:EReference" name="features" lowerBound="1" upperBound="-1" eType="#//LanguageFeature" eOpposite="#//LanguageFeature/parentGroup"/> <eStructuralFeatures xsi:type="ecore:EReference" name="cardinality" lowerBound="1" eType="#//LanguageFeatureGroupCardinality" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="LanguageFeatureGroupCardinality"> <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="LanguageConstraint" eSuperTypes="#//NamedElement"> <eStructuralFeatures xsi:type="ecore:EReference" name="expression" lowerBound="1" eType="#//BooleanExpression" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="BooleanExpression" abstract="true"/> <eClassifiers xsi:type="ecore:EClass" name="LanguageFeatureRef" eSuperTypes="#//BooleanExpression"> <eStructuralFeatures xsi:type="ecore:EReference" name="ref" eType="#//LanguageFeature"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="UnaryExpression" eSuperTypes="#//BooleanExpression"> <eStructuralFeatures xsi:type="ecore:EReference" name="expr" lowerBound="1" eType="#//BooleanExpression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="operator" eType="#//UninaryOperator"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="UninaryOperator"> <eLiterals name="not"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="BinaryExpression" eSuperTypes="#//BooleanExpression"> <eStructuralFeatures xsi:type="ecore:EReference" name="left" lowerBound="1" eType="#//BooleanExpression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="right" lowerBound="1" eType="#//BooleanExpression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="operator" eType="#//BinaryOperator"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="BinaryOperator"> <eLiterals name="and"/> <eLiterals name="or" value="1"/> <eLiterals name="implies" value="2"/> <eLiterals name="xor" value="3"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="OrthogonalVariabilityModel"> <eStructuralFeatures xsi:type="ecore:EReference" name="semanticVariationPoints" upperBound="-1" eType="#//SemanticVariationPoint" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="SemanticVariationPoint" eSuperTypes="#//NamedElement"> <eStructuralFeatures xsi:type="ecore:EReference" name="feature" lowerBound="1" eType="#//LanguageFeature" eOpposite="#//LanguageFeature/semanticVariationPoint"/> <eStructuralFeatures xsi:type="ecore:EReference" name="interpretations" lowerBound="1" upperBound="-1" eType="#//SemanticInterpretation" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="SemanticInterpretation" eSuperTypes="#//NamedElement"> <eStructuralFeatures xsi:type="ecore:EReference" name="implementation" lowerBound="1" eType="ecore:EClass ../../fr.inria.diverse.puzzle.language.adl.metamodel/models/ADL.ecore#//SemanticsImplementation"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="selected" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/> </eClassifiers> </ecore:EPackage>
github:ecore:/data/damenac/puzzle/plugins/fr.inria.diverse.puzzle.language.vm.metamodel/models/VM.ecore
ecore
vm NamedElement name LanguageProductLine functionalVariability semanticalVariability LanguageFeatureModel rootFeature constraints LanguageFeature mandatory children parent groups parentGroup implementationModule selected semanticVariationPoint LanguageFeatureGroup features cardinality LanguageFeatureGroupCardinality lowerBound upperBound LanguageConstraint expression BooleanExpression LanguageFeatureRef ref UnaryExpression expr operator UninaryOperator not not BinaryExpression left right operator BinaryOperator and and or or implies implies xor xor OrthogonalVariabilityModel semanticVariationPoints SemanticVariationPoint feature interpretations SemanticInterpretation implementation selected
null
{"directed":true,"nodes":[{"nsPrefix":"vm","nsURI":"http://fr.inria.diverse.puzzle.vm.metamodel","name":"vm","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"NamedElement","instanceClass":null,"abstract":true,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LanguageProductLine","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LanguageFeatureModel","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LanguageFeature","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LanguageFeatureGroup","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LanguageFeatureGroupCardinality","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LanguageConstraint","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BooleanExpression","instanceClass":null,"abstract":true,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LanguageFeatureRef","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"UnaryExpression","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"UninaryOperator","instanceClass":null,"id":11,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BinaryExpression","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"BinaryOperator","instanceClass":null,"id":13,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OrthogonalVariabilityModel","instanceClass":null,"abstract":false,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SemanticVariationPoint","instanceClass":null,"abstract":false,"id":15,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SemanticInterpretation","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":true,"name":"name","changeable":true,"lowerBound":0,"iD":false,"id":17,"derived":false},{"id":18,"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":"functionalVariability","changeable":true,"resolveProxies":true,"lowerBound":1,"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":"semanticalVariability","changeable":true,"resolveProxies":true,"lowerBound":0,"id":20,"derived":false},{"id":21,"eClass":"EGenericType"},{"id":22,"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":"rootFeature","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":true,"unsettable":false,"transient":false,"unique":true,"name":"constraints","changeable":true,"resolveProxies":true,"lowerBound":0,"id":24,"derived":false},{"id":25,"eClass":"EGenericType"},{"id":26,"eClass":"EGenericType"},{"id":27,"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":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":"children","changeable":true,"resolveProxies":true,"lowerBound":0,"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":false,"unique":true,"name":"parent","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":"groups","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":"parentGroup","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":"implementationModule","changeable":true,"resolveProxies":true,"lowerBound":0,"id":33,"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":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":"semanticVariationPoint","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"},{"id":40,"eClass":"EGenericType"},{"id":41,"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":"features","changeable":true,"resolveProxies":true,"lowerBound":1,"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":false,"unsettable":false,"transient":false,"unique":true,"name":"feature","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":"cardinality","changeable":true,"resolveProxies":true,"lowerBound":1,"id":47,"derived":false},{"id":48,"eClass":"EGenericType"},{"id":49,"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":50,"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":51,"derived":false},{"id":52,"eClass":"EGenericType"},{"id":53,"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":"expression","changeable":true,"resolveProxies":true,"lowerBound":1,"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":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"ref","changeable":true,"resolveProxies":true,"lowerBound":0,"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":true,"unsettable":false,"transient":false,"unique":true,"name":"expr","changeable":true,"resolveProxies":true,"lowerBound":1,"id":60,"derived":false},{"ordered":true,"upperBound":1,"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":61,"derived":false},{"id":62,"eClass":"EGenericType"},{"id":63,"eClass":"EGenericType"},{"id":64,"eClass":"EGenericType"},{"name":"not","id":65,"value":0,"literal":"not","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":"left","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":true,"unsettable":false,"transient":false,"unique":true,"name":"right","changeable":true,"resolveProxies":true,"lowerBound":1,"id":67,"derived":false},{"ordered":true,"upperBound":1,"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":68,"derived":false},{"id":69,"eClass":"EGenericType"},{"id":70,"eClass":"EGenericType"},{"id":71,"eClass":"EGenericType"},{"id":72,"eClass":"EGenericType"},{"name":"and","id":73,"value":0,"literal":"and","eClass":"EEnumLiteral"},{"name":"or","id":74,"value":1,"literal":"or","eClass":"EEnumLiteral"},{"name":"implies","id":75,"value":2,"literal":"implies","eClass":"EEnumLiteral"},{"name":"xor","id":76,"value":3,"literal":"xor","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":"semanticVariationPoints","changeable":true,"resolveProxies":true,"lowerBound":0,"id":77,"derived":false},{"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":"interpretations","changeable":true,"resolveProxies":true,"lowerBound":1,"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":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"implementation","changeable":true,"resolveProxies":true,"lowerBound":1,"id":83,"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":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":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":3},{"source":19,"target":21},{"source":19,"target":2},{"source":21,"target":3},{"source":20,"target":14},{"source":20,"target":22},{"source":20,"target":2},{"source":22,"target":14},{"source":3,"target":0},{"source":3,"target":1},{"source":3,"target":23},{"source":3,"target":24},{"source":3,"target":25},{"source":23,"target":4},{"source":23,"target":26},{"source":23,"target":3},{"source":26,"target":4},{"source":24,"target":7},{"source":24,"target":27},{"source":24,"target":3},{"source":27,"target":7},{"source":25,"target":1},{"source":4,"target":0},{"source":4,"target":1},{"source":4,"target":28},{"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":28,"target":37},{"source":28,"target":4},{"source":29,"target":4},{"source":29,"target":38},{"source":29,"target":4},{"source":29,"target":30},{"source":38,"target":4},{"source":30,"target":4},{"source":30,"target":39},{"source":30,"target":4},{"source":30,"target":29},{"source":39,"target":4},{"source":31,"target":5},{"source":31,"target":40},{"source":31,"target":4},{"source":40,"target":5},{"source":32,"target":5},{"source":32,"target":41},{"source":32,"target":4},{"source":32,"target":42},{"source":41,"target":5},{"source":33,"target":43},{"source":33,"target":4},{"source":34,"target":44},{"source":34,"target":4},{"source":35,"target":15},{"source":35,"target":45},{"source":35,"target":4},{"source":35,"target":46},{"source":45,"target":15},{"source":36,"target":1},{"source":5,"target":0},{"source":5,"target":42},{"source":5,"target":47},{"source":42,"target":4},{"source":42,"target":48},{"source":42,"target":5},{"source":42,"target":32},{"source":48,"target":4},{"source":47,"target":6},{"source":47,"target":49},{"source":47,"target":5},{"source":49,"target":6},{"source":6,"target":0},{"source":6,"target":50},{"source":6,"target":51},{"source":50,"target":52},{"source":50,"target":6},{"source":51,"target":53},{"source":51,"target":6},{"source":7,"target":0},{"source":7,"target":1},{"source":7,"target":54},{"source":7,"target":55},{"source":54,"target":8},{"source":54,"target":56},{"source":54,"target":7},{"source":56,"target":8},{"source":55,"target":1},{"source":8,"target":0},{"source":9,"target":0},{"source":9,"target":8},{"source":9,"target":57},{"source":9,"target":58},{"source":57,"target":4},{"source":57,"target":59},{"source":57,"target":9},{"source":59,"target":4},{"source":58,"target":8},{"source":10,"target":0},{"source":10,"target":8},{"source":10,"target":60},{"source":10,"target":61},{"source":10,"target":62},{"source":60,"target":8},{"source":60,"target":63},{"source":60,"target":10},{"source":63,"target":8},{"source":61,"target":11},{"source":61,"target":64},{"source":61,"target":10},{"source":64,"target":11},{"source":62,"target":8},{"source":11,"target":0},{"source":11,"target":65},{"source":65,"target":11},{"source":12,"target":0},{"source":12,"target":8},{"source":12,"target":66},{"source":12,"target":67},{"source":12,"target":68},{"source":12,"target":69},{"source":66,"target":8},{"source":66,"target":70},{"source":66,"target":12},{"source":70,"target":8},{"source":67,"target":8},{"source":67,"target":71},{"source":67,"target":12},{"source":71,"target":8},{"source":68,"target":13},{"source":68,"target":72},{"source":68,"target":12},{"source":72,"target":13},{"source":69,"target":8},{"source":13,"target":0},{"source":13,"target":73},{"source":13,"target":74},{"source":13,"target":75},{"source":13,"target":76},{"source":73,"target":13},{"source":74,"target":13},{"source":75,"target":13},{"source":76,"target":13},{"source":14,"target":0},{"source":14,"target":77},{"source":77,"target":15},{"source":77,"target":78},{"source":77,"target":14},{"source":78,"target":15},{"source":15,"target":0},{"source":15,"target":1},{"source":15,"target":46},{"source":15,"target":79},{"source":15,"target":80},{"source":46,"target":4},{"source":46,"target":81},{"source":46,"target":15},{"source":46,"target":35},{"source":81,"target":4},{"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":1},{"source":16,"target":83},{"source":16,"target":84},{"source":16,"target":85},{"source":83,"target":86},{"source":83,"target":16},{"source":84,"target":87},{"source":84,"target":16},{"source":85,"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="fruits" nsURI="fruits" nsPrefix="fruits"> <eClassifiers xsi:type="ecore:EClass" name="Basket"> <eStructuralFeatures xsi:type="ecore:EReference" name="fruits" upperBound="-1" eType="#//Fruit" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Fruit" abstract="true"/> </ecore:EPackage>
github:ecore:/data/quratulain-york/org.eclipse.epsilon/tests/org.eclipse.epsilon.eol.engine.test.acceptance/src/org/eclipse/epsilon/eol/engine/test/acceptance/eunit/fruits.ecore
ecore
fruits Basket fruits Fruit
null
{"directed":true,"nodes":[{"nsPrefix":"fruits","nsURI":"fruits","name":"fruits","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Basket","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Fruit","instanceClass":null,"abstract":true,"id":2,"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":"fruits","changeable":true,"resolveProxies":true,"lowerBound":0,"id":3,"derived":false},{"id":4,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":0,"target":2},{"source":1,"target":0},{"source":1,"target":3},{"source":3,"target":2},{"source":3,"target":4},{"source":3,"target":1},{"source":4,"target":2},{"source":2,"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="valueDomains" nsURI="http://LexGrid.org/schema/2009/01/LexGrid/valueDomains" nsPrefix="lgVD"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="&#xD;&#xA; &lt;h2 xmlns=&quot;http://LexGrid.org/schema/2009/01/LexGrid/valueDomains&quot;>Value domains and pick list packages&lt;/h2>&#xD;&#xA; &#xD;&#xA;The LexGrid model of value domains and associated pick lists.&#xD;&#xA;&#xD;&#xA; &lt;h2 xmlns=&quot;http://LexGrid.org/schema/2009/01/LexGrid/naming&quot;>Local identifier to URI mapping resource definition&lt;/h2>&#xD;&#xA; &#xD;&#xA;This package supports the local id to URI mappings.&#xD;&#xA;&#xD;&#xA; &lt;h2 xmlns=&quot;http://LexGrid.org/schema/2009/01/LexGrid/builtins&quot;>Core data types for the LexGrid package&lt;/h2>&#xD;&#xA; &#xD;&#xA;These are the basic types used in the construction of the rest of the LexGrid model. They need to be mapped to the appropriate implementation specific data types. The mapping in this package represents the XML Schema data types mapping&#xD;&#xA;&#xD;&#xA; &lt;h2 xmlns=&quot;http://LexGrid.org/schema/2009/01/LexGrid/commonTypes&quot;>Shared types for the LexGrid package&lt;/h2>&#xD;&#xA; &#xD;&#xA;Type definitions that are shared by more than one LexGrid module"/> </eAnnotations> <eClassifiers xsi:type="ecore:EClass" name="CodingSchemeReference"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A reference to all of the entity codes in a given coding scheme. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="codingSchemeReference"/> <details key="kind" value="empty"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="codingScheme" lowerBound="1" eType="ecore:EDataType types.ecore#//CodingSchemeName"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The local identifier of the coding scheme that the entity codes are drawn from . codingSchemeName must match a local id of a supportedCodingScheme in the mappings section."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="codingScheme"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="DefinitionEntry"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A reference to an entry code, a coding scheme or another value domain along with the instructions about how the reference is applied. Definition entrys are applied in entryOrder, with each successive entry either adding to or subtracting from the final set of entity codes."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="definitionEntry"/> <details key="kind" value="elementOnly"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="entityReference" eType="#//EntityReference" containment="true" resolveProxies="false"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="entityReference"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="valueDomainReference" eType="#//ValueDomainReference" containment="true" resolveProxies="false"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="valueDomainReference"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="codingSchemeReference" eType="#//CodingSchemeReference" containment="true" resolveProxies="false"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="codingSchemeReference"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="operator" eType="#//DefinitionOperator" unsettable="true"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="How this entry is to be applied to the value domain"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="operator"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="ruleOrder" lowerBound="1" eType="ecore:EDataType types.ecore#//EntryOrder"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The unique identifier of the definition entry within the definition as well as the relative order in which this entry should be applied"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="ruleOrder"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="DefinitionOperator"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The description of how a given definition entry is applied"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="definitionOperator"/> </eAnnotations> <eLiterals name="OR"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Add the set of entityCodes described by the currentEntity to the value domain. (logical OR)"/> </eAnnotations> </eLiterals> <eLiterals name="SUBTRACT" value="1"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Subtract (remove) the set of entityCodes described by the currentEntity to the value domain. (logical NAND)"/> </eAnnotations> </eLiterals> <eLiterals name="AND" value="2"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Only include the entity codes that are both in the value domain and the definition entry. (logical AND)"/> </eAnnotations> </eLiterals> </eClassifiers> <eClassifiers xsi:type="ecore:EDataType" name="DefinitionOperatorObject" instanceClassName="org.eclipse.emf.common.util.Enumerator"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="definitionOperator:Object"/> <details key="baseType" value="definitionOperator"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="EntityReference"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A reference to an entityCode and/or one or more entityCodes that have a relationship to the specified entity code."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="entityReference"/> <details key="kind" value="empty"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="entityCode" lowerBound="1" eType="ecore:EDataType types.ecore#//EntityCode"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The entity code being referenced."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="entityCode"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="entityCodeNamespace" eType="ecore:EDataType types.ecore#//NamespaceName"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Local identifier of the namespace of the entityCode. entityCodeNamespace must match a local id of a supportedNamespace in the corresponding mappings section. If omitted, the URI of the defaultCodingScheme will be used as the URI of the entity code."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="entityCodeNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="leafOnly" eType="ecore:EDataType builtins.ecore#//TsBoolean" unsettable="true"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="If true and referenceAssociation is supplied and referenceAssociation is defined as transitive, include all entity codes that are &quot;leaves&quot; in transitive closure of referenceAssociation as applied to entity code. Default: false"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="leafOnly"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="referenceAssociation" eType="ecore:EDataType types.ecore#//AssociationName"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The local identifier of an association that appears in the native relations collection in the default coding scheme. This association is used to describe a set of entity codes. If absent, only the entityCode itself is included in this definition."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="referenceAssociation"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="targetToSource" eType="ecore:EDataType builtins.ecore#//TsBoolean" unsettable="true"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="If true and referenceAssociation is supplied, navigate from entityCode as the association target to the corresponding sources. If transitiveClosure is true and the referenceAssociation is transitive, include all the ancestors in the list rather than just the direct &quot;parents&quot; (sources)."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="targetToSource"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="transitiveClosure" eType="ecore:EDataType builtins.ecore#//TsBoolean" unsettable="true"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="If true and referenceAssociation is supplied and referenceAssociation is defined as transitive, include all entity codes that belong to transitive closure of referenceAssociation as applied to entity code. Default: false"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="transitiveClosure"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="PickListDefinition" eSuperTypes="types.ecore#//VersionableAndDescribable"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="An ordered list of entity codes and corresponding presentations drawn from a value domain."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="pickListDefinition"/> <details key="kind" value="elementOnly"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="mappings" eType="ecore:EClass naming.ecore#//Mappings" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The mappings that are specific to this pick list definition. This set of mappings must be supplied when a pick list definition is included in a changedEntry and must be empty when it is included in a pickLists collection, as the collection itself carries the mappings"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="mappings"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="pickListEntryNode" upperBound="-1" eType="#//PickListEntryNode" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="An entry in the list"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="pickListEntryNode"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="source" upperBound="-1" eType="ecore:EClass types.ecore#//Source" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The local identifiers of the source(s) of this pick list definition. Must match a local id of a supportedSource in the corresponding mappings section. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="source"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="defaultPickContext" unique="false" upperBound="-1" eType="ecore:EDataType types.ecore#//Context"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The local identifiers of the context used in the definition of the pick list."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="defaultPickContext"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="properties" eType="ecore:EClass types.ecore#//Properties" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A list of propeties used in the description of this pick list."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="properties"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="completeDomain" eType="ecore:EDataType builtins.ecore#//TsBoolean" unsettable="true"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="True means that this pick list should represent all of the entries in the domain. Any active entity codes that aren't in the specific pick list entries are added to the end, using the designations identified by the defaultLanguage, defaultSortOrder and defaultPickContext. Default: false"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="completeDomain"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="defaultEntityCodeNamespace" eType="ecore:EDataType types.ecore#//NamespaceName"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Local name of the namespace to which the entry codes in this list belong. defaultEntityCodeNamespace must match a local id of a supportedNamespace in the mappings section."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="defaultEntityCodeNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="defaultLanguage" eType="ecore:EDataType types.ecore#//Language"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The local identifier of the language that is used to generate the text of this pick list if not otherwise specified. Note that this language does NOT necessarily have any coorelation with the language of a pickListEntry itself or the language of the target user. defaultLanguage must match a local id of a supportedLanguage in the mappings section. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="defaultLanguage"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="defaultSortOrder" eType="ecore:EDataType types.ecore#//SortOrder"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The local identifier of a sort order that is used as the default in the definition of the pick list"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="defaultSortOrder"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="pickListId" lowerBound="1" eType="ecore:EDataType types.ecore#//NodeId"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="An identifier that uniquely names this list within the context of the collection."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="pickListId"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="representsValueDomain" lowerBound="1" eType="ecore:EDataType types.ecore#//URI"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The URI of the value domain definition that is represented by this pick list"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="representsValueDomain"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="PickListEntry"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="An entity code and corresponding textual representation. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="pickListEntry"/> <details key="kind" value="elementOnly"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="pickText" lowerBound="1" eType="ecore:EDataType builtins.ecore#//TsCaseSensitiveDirectoryString"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The text that represents this node in the pick list. Some business rules may require that this string match a presentation associated with the entityCode"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="pickText"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="pickContext" unique="false" upperBound="-1" eType="ecore:EDataType types.ecore#//Context"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The local identifiers of the context(s) in which this entry applies. pickContext must match a local id of a supportedContext in the mappings section "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="pickContext"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="entityCode" lowerBound="1" eType="ecore:EDataType types.ecore#//EntityCode"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Entity code associated with this entry. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="entityCode"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="entityCodeNamespace" eType="ecore:EDataType types.ecore#//NamespaceName"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Local identifier of the namespace of the entity code if different than the pickListDefinition defaultEntityCodeNamespace. entityCodeNamespace must match a local id of a supportedNamespace in the mappings section."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="entityCodeNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="entryOrder" eType="ecore:EDataType types.ecore#//EntryOrder"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Relative order of this entry in the list. pickListEntries without a supplied order follow the all entries with an order, and the order is not defined."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="entryOrder"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="isDefault" eType="ecore:EDataType builtins.ecore#//TsBoolean" unsettable="true"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="True means that this is the default entry for the supplied language and context."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="isDefault"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="language" eType="ecore:EDataType types.ecore#//Language"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The local name of the language to be used when the application/user supplies a selection language matches. If absent, this matches all languages. language must match a local id od of a supportedLanguage in the mappings section."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="language"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="matchIfNoContext" eType="ecore:EDataType builtins.ecore#//TsBoolean" unsettable="true"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="True means that this entry can be used if no contexts are supplied, even though pickContext ispresent."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="matchIfNoContext"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="propertyId" eType="ecore:EDataType types.ecore#//PropertyId"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The property identifier associated with the entityCode and entityCodeNamespace that the pickText was derived from. If absent, the pick text can be anything. Some terminologies may have business rules requiring this attribute to be present."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="propertyId"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="PickListEntryExclusion"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="An entity code that is explicitly excluded from a pick list."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="pickListEntryExclusion"/> <details key="kind" value="empty"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="entityCode" lowerBound="1" eType="ecore:EDataType types.ecore#//EntityCode"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Entity code associated with this entry. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="entityCode"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="entityCodeNamespace" eType="ecore:EDataType types.ecore#//NamespaceName"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Local identifier of the namespace of the entity code if different than the pickListDefinition defaultEntityCodeNamespace. entityCodeNamespace must match a local id of a supportedNamespace in the mappings section."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="entityCodeNamespace"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="PickListEntryNode" eSuperTypes="types.ecore#//Versionable"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="An inclusion (pickListEntry) or exclusion (pickListEntryExclusion) in a pick list definition"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="pickListEntryNode"/> <details key="kind" value="elementOnly"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="exclusionEntry" eType="#//PickListEntryExclusion" containment="true" resolveProxies="false"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="exclusionEntry"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="inclusionEntry" eType="#//PickListEntry" containment="true" resolveProxies="false"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="inclusionEntry"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="properties" eType="ecore:EClass types.ecore#//Properties" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Additional properties associated with this particular entry node"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="properties"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="pickListEntryId" lowerBound="1" eType="ecore:EDataType types.ecore#//NodeId"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Unique identifier of this node within the list."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="pickListEntryId"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="PickLists"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A collection of pick list definitions."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="pickLists"/> <details key="kind" value="elementOnly"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="mappings" lowerBound="1" eType="ecore:EClass naming.ecore#//Mappings" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The local names and corresponding URIs used in this collection"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="mappings"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="pickListDefinition" lowerBound="1" upperBound="-1" eType="#//PickListDefinition" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A pick list definition"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="pickListDefinition"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ValueDomainDefinition" eSuperTypes="types.ecore#//VersionableAndDescribable"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A definition of a given value domain. A value domain can be a simple description with no associated value domain entries, or it can consist of one or more definitionEntries that resolve to an enumerated list of entityCodes when applied to one or more codingScheme versions.&#xD;&#xA;NOTE: Value domain definitions aren't versionable - changing the definition of the domain changes its identity."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="valueDomainDefinition"/> <details key="kind" value="elementOnly"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="mappings" eType="ecore:EClass naming.ecore#//Mappings" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The mappings that are specific to this value domain definition. This set of mappings must be supplied when a value domain definition is included in a changedEntry and must be empty when it is included in a valueDomains collection, as the collection itself carries the mappings"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="mappings"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="source" upperBound="-1" eType="ecore:EClass types.ecore#//Source" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The local identifiers of the source(s) of this property. Must match a local id of a supportedSource in the corresponding mappings section."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="source"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="representsRealmOrContext" unique="false" upperBound="-1" eType="ecore:EDataType types.ecore#//Context"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The local identifiers of the context(s) in which this value domain applies. Must match a local id of a supportedContext in the corresponding mappings section."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="representsRealmOrContext"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="properties" eType="ecore:EClass types.ecore#//Properties" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A list of propeties used in the description of this value domain."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="properties"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="definitionEntry" upperBound="-1" eType="#//DefinitionEntry" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A portion of the value domain definition. Definition entries are ordered."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="definitionEntry"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="defaultCodingScheme" eType="ecore:EDataType types.ecore#//CodingSchemeName"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Local name of the primary coding scheme from which the domain is drawn. defaultCodingScheme must match a local id of a supportedCodingScheme in the mappings section."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="defaultCodingScheme"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="valueDomainName" eType="ecore:EDataType builtins.ecore#//TsCaseIgnoreIA5String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The name of this domain, if any."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="valueDomainName"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="valueDomainURI" lowerBound="1" eType="ecore:EDataType types.ecore#//URI"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The URI of this value domain."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="valueDomainURI"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ValueDomainReference"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A reference to the set of codes defined in another value domain. "/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="valueDomainReference"/> <details key="kind" value="empty"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="valueDomainURI" lowerBound="1" eType="ecore:EDataType types.ecore#//URI"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The URI of the value domain to apply the operator to. This value domain may be contained within the local service or may need to be resolved externally."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="attribute"/> <details key="name" value="valueDomainURI"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ValueDomains"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A collection of value domain definitions."/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="name" value="valueDomains"/> <details key="kind" value="elementOnly"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="mappings" lowerBound="1" eType="ecore:EClass naming.ecore#//Mappings" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="The local names and corresponding URIs used in this collection"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="mappings"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="valueDomainDefinition" lowerBound="1" upperBound="-1" eType="#//ValueDomainDefinition" containment="true" resolveProxies="false"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="A value domain definition"/> </eAnnotations> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="kind" value="element"/> <details key="name" value="valueDomainDefinition"/> <details key="namespace" value="##targetNamespace"/> </eAnnotations> </eStructuralFeatures> </eClassifiers> </ecore:EPackage>
github:ecore:/data/gssi/metamodel-dataset-analysis-toolchain/metamodels/domains.ecore
ecore
valueDomains CodingSchemeReference codingScheme DefinitionEntry entityReference valueDomainReference codingSchemeReference operator ruleOrder DefinitionOperator OR OR SUBTRACT SUBTRACT AND AND DefinitionOperatorObject org.eclipse.emf.common.util.Enumerator org.eclipse.emf.common.util.Enumerator EntityReference entityCode entityCodeNamespace leafOnly referenceAssociation targetToSource transitiveClosure PickListDefinition mappings pickListEntryNode source defaultPickContext properties completeDomain defaultEntityCodeNamespace defaultLanguage defaultSortOrder pickListId representsValueDomain PickListEntry pickText pickContext entityCode entityCodeNamespace entryOrder isDefault language matchIfNoContext propertyId PickListEntryExclusion entityCode entityCodeNamespace PickListEntryNode exclusionEntry inclusionEntry properties pickListEntryId PickLists mappings pickListDefinition ValueDomainDefinition mappings source representsRealmOrContext properties definitionEntry defaultCodingScheme valueDomainName valueDomainURI ValueDomainReference valueDomainURI ValueDomains mappings valueDomainDefinition
null
{"directed":true,"nodes":[{"nsPrefix":"lgVD","nsURI":"http://LexGrid.org/schema/2009/01/LexGrid/valueDomains","name":"valueDomains","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CodingSchemeReference","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DefinitionEntry","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"DefinitionOperator","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":"DefinitionOperatorObject","instanceClass":"org.eclipse.emf.common.util.Enumerator","id":4,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EntityReference","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PickListDefinition","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PickListEntry","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PickListEntryExclusion","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PickListEntryNode","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PickLists","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ValueDomainDefinition","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ValueDomainReference","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ValueDomains","instanceClass":null,"abstract":false,"id":13,"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":"codingScheme","changeable":true,"lowerBound":1,"iD":false,"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":true,"unsettable":false,"transient":false,"unique":true,"name":"entityReference","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":"valueDomainReference","changeable":true,"resolveProxies":false,"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":"codingSchemeReference","changeable":true,"resolveProxies":false,"lowerBound":0,"id":18,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":true,"name":"operator","changeable":true,"lowerBound":0,"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":true,"name":"ruleOrder","changeable":true,"lowerBound":1,"iD":false,"id":20,"derived":false},{"id":21,"eClass":"EGenericType"},{"id":22,"eClass":"EGenericType"},{"id":23,"eClass":"EGenericType"},{"id":24,"eClass":"EGenericType"},{"id":25,"eClass":"EGenericType"},{"name":"OR","id":26,"value":0,"literal":"OR","eClass":"EEnumLiteral"},{"name":"SUBTRACT","id":27,"value":1,"literal":"SUBTRACT","eClass":"EEnumLiteral"},{"name":"AND","id":28,"value":2,"literal":"AND","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":"entityCode","changeable":true,"lowerBound":1,"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":"entityCodeNamespace","changeable":true,"lowerBound":0,"iD":false,"id":30,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":true,"name":"leafOnly","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":"referenceAssociation","changeable":true,"lowerBound":0,"iD":false,"id":32,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":true,"name":"targetToSource","changeable":true,"lowerBound":0,"iD":false,"id":33,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":true,"name":"transitiveClosure","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"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"mappings","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":false,"unique":true,"name":"pickListEntryNode","changeable":true,"resolveProxies":false,"lowerBound":0,"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":"source","changeable":true,"resolveProxies":false,"lowerBound":0,"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":"defaultPickContext","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":"properties","changeable":true,"resolveProxies":false,"lowerBound":0,"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":true,"name":"completeDomain","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":"defaultEntityCodeNamespace","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":"defaultLanguage","changeable":true,"lowerBound":0,"iD":false,"id":48,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"defaultSortOrder","changeable":true,"lowerBound":0,"iD":false,"id":49,"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":"pickListId","changeable":true,"lowerBound":1,"iD":false,"id":50,"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":"representsValueDomain","changeable":true,"lowerBound":1,"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"},{"id":58,"eClass":"EGenericType"},{"id":59,"eClass":"EGenericType"},{"id":60,"eClass":"EGenericType"},{"id":61,"eClass":"EGenericType"},{"id":62,"eClass":"EGenericType"},{"id":63,"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":"pickText","changeable":true,"lowerBound":1,"iD":false,"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":"pickContext","changeable":true,"lowerBound":0,"iD":false,"id":65,"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":"entityCode","changeable":true,"lowerBound":1,"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":"entityCodeNamespace","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":"entryOrder","changeable":true,"lowerBound":0,"iD":false,"id":68,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":true,"name":"isDefault","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":"language","changeable":true,"lowerBound":0,"iD":false,"id":70,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":true,"name":"matchIfNoContext","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":"propertyId","changeable":true,"lowerBound":0,"iD":false,"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"},{"id":79,"eClass":"EGenericType"},{"id":80,"eClass":"EGenericType"},{"id":81,"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":"entityCode","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":"entityCodeNamespace","changeable":true,"lowerBound":0,"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":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"exclusionEntry","changeable":true,"resolveProxies":false,"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":"inclusionEntry","changeable":true,"resolveProxies":false,"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":"properties","changeable":true,"resolveProxies":false,"lowerBound":0,"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":"pickListEntryId","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"},{"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":"mappings","changeable":true,"resolveProxies":false,"lowerBound":1,"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":"pickListDefinition","changeable":true,"resolveProxies":false,"lowerBound":1,"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":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"mappings","changeable":true,"resolveProxies":false,"lowerBound":0,"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":"source","changeable":true,"resolveProxies":false,"lowerBound":0,"id":100,"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":"representsRealmOrContext","changeable":true,"lowerBound":0,"iD":false,"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":"properties","changeable":true,"resolveProxies":false,"lowerBound":0,"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":"definitionEntry","changeable":true,"resolveProxies":false,"lowerBound":0,"id":103,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"defaultCodingScheme","changeable":true,"lowerBound":0,"iD":false,"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":"valueDomainName","changeable":true,"lowerBound":0,"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":"valueDomainURI","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"},{"id":113,"eClass":"EGenericType"},{"id":114,"eClass":"EGenericType"},{"id":115,"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":"valueDomainURI","changeable":true,"lowerBound":1,"iD":false,"id":116,"derived":false},{"id":117,"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":"mappings","changeable":true,"resolveProxies":false,"lowerBound":1,"id":118,"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":"valueDomainDefinition","changeable":true,"resolveProxies":false,"lowerBound":1,"id":119,"derived":false},{"id":120,"eClass":"EGenericType"},{"id":121,"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":14,"target":15},{"source":14,"target":1},{"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":5},{"source":16,"target":21},{"source":16,"target":2},{"source":21,"target":5},{"source":17,"target":12},{"source":17,"target":22},{"source":17,"target":2},{"source":22,"target":12},{"source":18,"target":1},{"source":18,"target":23},{"source":18,"target":2},{"source":23,"target":1},{"source":19,"target":3},{"source":19,"target":24},{"source":19,"target":2},{"source":24,"target":3},{"source":20,"target":25},{"source":20,"target":2},{"source":3,"target":0},{"source":3,"target":26},{"source":3,"target":27},{"source":3,"target":28},{"source":26,"target":3},{"source":27,"target":3},{"source":28,"target":3},{"source":4,"target":0},{"source":5,"target":0},{"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":29,"target":35},{"source":29,"target":5},{"source":30,"target":36},{"source":30,"target":5},{"source":31,"target":37},{"source":31,"target":5},{"source":32,"target":38},{"source":32,"target":5},{"source":33,"target":39},{"source":33,"target":5},{"source":34,"target":40},{"source":34,"target":5},{"source":6,"target":0},{"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":41,"target":53},{"source":41,"target":6},{"source":42,"target":9},{"source":42,"target":54},{"source":42,"target":6},{"source":54,"target":9},{"source":43,"target":55},{"source":43,"target":6},{"source":44,"target":56},{"source":44,"target":6},{"source":45,"target":57},{"source":45,"target":6},{"source":46,"target":58},{"source":46,"target":6},{"source":47,"target":59},{"source":47,"target":6},{"source":48,"target":60},{"source":48,"target":6},{"source":49,"target":61},{"source":49,"target":6},{"source":50,"target":62},{"source":50,"target":6},{"source":51,"target":63},{"source":51,"target":6},{"source":7,"target":0},{"source":7,"target":64},{"source":7,"target":65},{"source":7,"target":66},{"source":7,"target":67},{"source":7,"target":68},{"source":7,"target":69},{"source":7,"target":70},{"source":7,"target":71},{"source":7,"target":72},{"source":64,"target":73},{"source":64,"target":7},{"source":65,"target":74},{"source":65,"target":7},{"source":66,"target":75},{"source":66,"target":7},{"source":67,"target":76},{"source":67,"target":7},{"source":68,"target":77},{"source":68,"target":7},{"source":69,"target":78},{"source":69,"target":7},{"source":70,"target":79},{"source":70,"target":7},{"source":71,"target":80},{"source":71,"target":7},{"source":72,"target":81},{"source":72,"target":7},{"source":8,"target":0},{"source":8,"target":82},{"source":8,"target":83},{"source":82,"target":84},{"source":82,"target":8},{"source":83,"target":85},{"source":83,"target":8},{"source":9,"target":0},{"source":9,"target":86},{"source":9,"target":87},{"source":9,"target":88},{"source":9,"target":89},{"source":9,"target":90},{"source":86,"target":8},{"source":86,"target":91},{"source":86,"target":9},{"source":91,"target":8},{"source":87,"target":7},{"source":87,"target":92},{"source":87,"target":9},{"source":92,"target":7},{"source":88,"target":93},{"source":88,"target":9},{"source":89,"target":94},{"source":89,"target":9},{"source":10,"target":0},{"source":10,"target":95},{"source":10,"target":96},{"source":95,"target":97},{"source":95,"target":10},{"source":96,"target":6},{"source":96,"target":98},{"source":96,"target":10},{"source":98,"target":6},{"source":11,"target":0},{"source":11,"target":99},{"source":11,"target":100},{"source":11,"target":101},{"source":11,"target":102},{"source":11,"target":103},{"source":11,"target":104},{"source":11,"target":105},{"source":11,"target":106},{"source":11,"target":107},{"source":99,"target":108},{"source":99,"target":11},{"source":100,"target":109},{"source":100,"target":11},{"source":101,"target":110},{"source":101,"target":11},{"source":102,"target":111},{"source":102,"target":11},{"source":103,"target":2},{"source":103,"target":112},{"source":103,"target":11},{"source":112,"target":2},{"source":104,"target":113},{"source":104,"target":11},{"source":105,"target":114},{"source":105,"target":11},{"source":106,"target":115},{"source":106,"target":11},{"source":12,"target":0},{"source":12,"target":116},{"source":116,"target":117},{"source":116,"target":12},{"source":13,"target":0},{"source":13,"target":118},{"source":13,"target":119},{"source":118,"target":120},{"source":118,"target":13},{"source":119,"target":11},{"source":119,"target":121},{"source":119,"target":13},{"source":121,"target":11}],"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="GCLACS" nsURI="GCLACS" nsPrefix="gcl"> <eClassifiers xsi:type="ecore:EClass" name="Document_Root"> <eStructuralFeatures xsi:type="ecore:EReference" name="componentInstance" lowerBound="1" eType="#//ComponentInstance" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="BindingKind"> <eLiterals name="simple"/> <eLiterals name="delegation"/> <eLiterals name="constraintConnection"/> <eLiterals name="contractConnection"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="ComponentKind"> <eLiterals name="business"/> <eLiterals name="constraint"/> <eLiterals name="contract"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="Visibility"> <eLiterals name="internal"/> <eLiterals name="external"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Interface"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="service" upperBound="-1" eType="#//Services" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ComponentInstance"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="interface" upperBound="-1" eType="#//Interface" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="componentInstance" upperBound="-1" eType="#//ComponentInstance" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="port" lowerBound="1" upperBound="-1" eType="#//Port" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="binding" upperBound="-1" eType="#//Binding" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="kind" eType="#//ComponentKind" defaultValueLiteral=""/> <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="defineByDescriptor" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Services"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="kind" eType="#//ServiceKind"/> <eStructuralFeatures xsi:type="ecore:EReference" name="arg" upperBound="-1" eType="#//Arg" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="body" eType="#//BodyType" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="returnedType" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Port"> <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="#//Visibility"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="xp" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="yp" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/> <eStructuralFeatures xsi:type="ecore:EReference" name="defineByInterface" lowerBound="1" eType="#//DefineByInterface" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="RequiredPort" eSuperTypes="#//Port"/> <eClassifiers xsi:type="ecore:EClass" name="Binding"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="kind" eType="#//BindingKind"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="glue" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EReference" name="source" lowerBound="1" eType="#//Port"/> <eStructuralFeatures xsi:type="ecore:EReference" name="target" lowerBound="1" eType="#//Port"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="usedServiceName" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="usedServiceArgs" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ProvidedPort" eSuperTypes="#//Port"/> <eClassifiers xsi:type="ecore:EClass" name="DefineByInterface"> <eStructuralFeatures xsi:type="ecore:EReference" name="Interface" lowerBound="1" eType="#//Interface"/> <eStructuralFeatures xsi:type="ecore:EReference" name="port" lowerBound="1" eType="#//Port"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="ServiceKind"> <eLiterals name="business"/> <eLiterals name="constraintCheck"/> <eLiterals name="contractCheck"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Arg"> <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="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="BodyType"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="value" 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"/> </eClassifiers> </ecore:EPackage>
github:ecore:/data/saharkallel/clacs/GCLACS/model/gclacs.ecore
ecore
GCLACS Document_Root componentInstance BindingKind simple simple delegation delegation constraintConnection constraintConnection contractConnection contractConnection ComponentKind business business constraint constraint contract contract Visibility internal internal external external Interface name service ComponentInstance name interface componentInstance port binding kind width height defineByDescriptor Services name kind arg body returnedType Port name visibility xp yp defineByInterface RequiredPort Binding kind glue source target name usedServiceName usedServiceArgs ProvidedPort DefineByInterface Interface port ServiceKind business business constraintCheck constraintCheck contractCheck contractCheck Arg name type BodyType value language
null
{"directed":true,"nodes":[{"nsPrefix":"gcl","nsURI":"GCLACS","name":"GCLACS","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Document_Root","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"BindingKind","instanceClass":null,"id":2,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"ComponentKind","instanceClass":null,"id":3,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"Visibility","instanceClass":null,"id":4,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Interface","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ComponentInstance","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Services","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Port","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RequiredPort","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Binding","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ProvidedPort","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DefineByInterface","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"ServiceKind","instanceClass":null,"id":13,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Arg","instanceClass":null,"abstract":false,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BodyType","instanceClass":null,"abstract":false,"id":15,"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":"componentInstance","changeable":true,"resolveProxies":true,"lowerBound":1,"id":16,"derived":false},{"id":17,"eClass":"EGenericType"},{"name":"simple","id":18,"value":0,"literal":"simple","eClass":"EEnumLiteral"},{"name":"delegation","id":19,"value":0,"literal":"delegation","eClass":"EEnumLiteral"},{"name":"constraintConnection","id":20,"value":0,"literal":"constraintConnection","eClass":"EEnumLiteral"},{"name":"contractConnection","id":21,"value":0,"literal":"contractConnection","eClass":"EEnumLiteral"},{"name":"business","id":22,"value":0,"literal":"business","eClass":"EEnumLiteral"},{"name":"constraint","id":23,"value":0,"literal":"constraint","eClass":"EEnumLiteral"},{"name":"contract","id":24,"value":0,"literal":"contract","eClass":"EEnumLiteral"},{"name":"internal","id":25,"value":0,"literal":"internal","eClass":"EEnumLiteral"},{"name":"external","id":26,"value":0,"literal":"external","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":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":"service","changeable":true,"resolveProxies":true,"lowerBound":0,"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":true,"unsettable":false,"transient":false,"unique":true,"name":"interface","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":true,"unsettable":false,"transient":false,"unique":true,"name":"componentInstance","changeable":true,"resolveProxies":true,"lowerBound":0,"id":33,"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":"port","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":"binding","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":"","unsettable":false,"transient":false,"unique":true,"name":"kind","changeable":true,"lowerBound":0,"iD":false,"id":36,"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":37,"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":38,"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":"defineByDescriptor","changeable":true,"lowerBound":1,"iD":false,"id":39,"derived":false},{"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"},{"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},{"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":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":"arg","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":"body","changeable":true,"resolveProxies":true,"lowerBound":0,"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":"returnedType","changeable":true,"lowerBound":0,"iD":false,"id":53,"derived":false},{"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":false,"id":59,"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":60,"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":"xp","changeable":true,"lowerBound":0,"iD":false,"id":61,"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":"yp","changeable":true,"lowerBound":0,"iD":false,"id":62,"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":"defineByInterface","changeable":true,"resolveProxies":true,"lowerBound":1,"id":63,"derived":false},{"id":64,"eClass":"EGenericType"},{"id":65,"eClass":"EGenericType"},{"id":66,"eClass":"EGenericType"},{"id":67,"eClass":"EGenericType"},{"id":68,"eClass":"EGenericType"},{"id":69,"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":70,"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":"glue","changeable":true,"lowerBound":0,"iD":false,"id":71,"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":"source","changeable":true,"resolveProxies":true,"lowerBound":1,"id":72,"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":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":"name","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":"usedServiceName","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":"usedServiceArgs","changeable":true,"lowerBound":0,"iD":false,"id":76,"derived":false},{"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"},{"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":"Interface","changeable":true,"resolveProxies":true,"lowerBound":1,"id":85,"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":"port","changeable":true,"resolveProxies":true,"lowerBound":1,"id":86,"derived":false},{"id":87,"eClass":"EGenericType"},{"id":88,"eClass":"EGenericType"},{"name":"business","id":89,"value":0,"literal":"business","eClass":"EEnumLiteral"},{"name":"constraintCheck","id":90,"value":0,"literal":"constraintCheck","eClass":"EEnumLiteral"},{"name":"contractCheck","id":91,"value":0,"literal":"contractCheck","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":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":"type","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":"value","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":"language","changeable":true,"lowerBound":0,"iD":false,"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":1,"target":0},{"source":1,"target":16},{"source":16,"target":6},{"source":16,"target":17},{"source":16,"target":1},{"source":17,"target":6},{"source":2,"target":0},{"source":2,"target":18},{"source":2,"target":19},{"source":2,"target":20},{"source":2,"target":21},{"source":18,"target":2},{"source":19,"target":2},{"source":20,"target":2},{"source":21,"target":2},{"source":3,"target":0},{"source":3,"target":22},{"source":3,"target":23},{"source":3,"target":24},{"source":22,"target":3},{"source":23,"target":3},{"source":24,"target":3},{"source":4,"target":0},{"source":4,"target":25},{"source":4,"target":26},{"source":25,"target":4},{"source":26,"target":4},{"source":5,"target":0},{"source":5,"target":27},{"source":5,"target":28},{"source":27,"target":29},{"source":27,"target":5},{"source":28,"target":7},{"source":28,"target":30},{"source":28,"target":5},{"source":30,"target":7},{"source":6,"target":0},{"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":6,"target":38},{"source":6,"target":39},{"source":31,"target":40},{"source":31,"target":6},{"source":32,"target":5},{"source":32,"target":41},{"source":32,"target":6},{"source":41,"target":5},{"source":33,"target":6},{"source":33,"target":42},{"source":33,"target":6},{"source":42,"target":6},{"source":34,"target":8},{"source":34,"target":43},{"source":34,"target":6},{"source":43,"target":8},{"source":35,"target":10},{"source":35,"target":44},{"source":35,"target":6},{"source":44,"target":10},{"source":36,"target":3},{"source":36,"target":45},{"source":36,"target":6},{"source":45,"target":3},{"source":37,"target":46},{"source":37,"target":6},{"source":38,"target":47},{"source":38,"target":6},{"source":39,"target":48},{"source":39,"target":6},{"source":7,"target":0},{"source":7,"target":49},{"source":7,"target":50},{"source":7,"target":51},{"source":7,"target":52},{"source":7,"target":53},{"source":49,"target":54},{"source":49,"target":7},{"source":50,"target":13},{"source":50,"target":55},{"source":50,"target":7},{"source":55,"target":13},{"source":51,"target":14},{"source":51,"target":56},{"source":51,"target":7},{"source":56,"target":14},{"source":52,"target":15},{"source":52,"target":57},{"source":52,"target":7},{"source":57,"target":15},{"source":53,"target":58},{"source":53,"target":7},{"source":8,"target":0},{"source":8,"target":59},{"source":8,"target":60},{"source":8,"target":61},{"source":8,"target":62},{"source":8,"target":63},{"source":59,"target":64},{"source":59,"target":8},{"source":60,"target":4},{"source":60,"target":65},{"source":60,"target":8},{"source":65,"target":4},{"source":61,"target":66},{"source":61,"target":8},{"source":62,"target":67},{"source":62,"target":8},{"source":63,"target":12},{"source":63,"target":68},{"source":63,"target":8},{"source":68,"target":12},{"source":9,"target":0},{"source":9,"target":8},{"source":9,"target":69},{"source":69,"target":8},{"source":10,"target":0},{"source":10,"target":70},{"source":10,"target":71},{"source":10,"target":72},{"source":10,"target":73},{"source":10,"target":74},{"source":10,"target":75},{"source":10,"target":76},{"source":70,"target":2},{"source":70,"target":77},{"source":70,"target":10},{"source":77,"target":2},{"source":71,"target":78},{"source":71,"target":10},{"source":72,"target":8},{"source":72,"target":79},{"source":72,"target":10},{"source":79,"target":8},{"source":73,"target":8},{"source":73,"target":80},{"source":73,"target":10},{"source":80,"target":8},{"source":74,"target":81},{"source":74,"target":10},{"source":75,"target":82},{"source":75,"target":10},{"source":76,"target":83},{"source":76,"target":10},{"source":11,"target":0},{"source":11,"target":8},{"source":11,"target":84},{"source":84,"target":8},{"source":12,"target":0},{"source":12,"target":85},{"source":12,"target":86},{"source":85,"target":5},{"source":85,"target":87},{"source":85,"target":12},{"source":87,"target":5},{"source":86,"target":8},{"source":86,"target":88},{"source":86,"target":12},{"source":88,"target":8},{"source":13,"target":0},{"source":13,"target":89},{"source":13,"target":90},{"source":13,"target":91},{"source":89,"target":13},{"source":90,"target":13},{"source":91,"target":13},{"source":14,"target":0},{"source":14,"target":92},{"source":14,"target":93},{"source":92,"target":94},{"source":92,"target":14},{"source":93,"target":95},{"source":93,"target":14},{"source":15,"target":0},{"source":15,"target":96},{"source":15,"target":97},{"source":96,"target":98},{"source":96,"target":15},{"source":97,"target":99},{"source":97,"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="variantdata" nsURI="http:///variantdata.ecore" nsPrefix="vd"> <eClassifiers xsi:type="ecore:EClass" name="VariantData" eSuperTypes="configurationEMF.ecore#//Data"> <eStructuralFeatures xsi:type="ecore:EReference" name="include" upperBound="-1" eType="#//VariantData"/> </eClassifiers> </ecore:EPackage>
github:ecore:/data/SymbianSource/oss.FCL.sftools.depl.swconfigapps.configtools/configtool/com.nokia.S60CT/model/variantdata.ecore
ecore
variantdata VariantData include
null
{"directed":true,"nodes":[{"nsPrefix":"vd","nsURI":"http:///variantdata.ecore","name":"variantdata","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"VariantData","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"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":"include","changeable":true,"resolveProxies":true,"lowerBound":0,"id":2,"derived":false},{"id":3,"eClass":"EGenericType"},{"id":4,"eClass":"EGenericType"}],"links":[{"source":0,"target":1},{"source":1,"target":0},{"source":1,"target":2},{"source":1,"target":3},{"source":2,"target":1},{"source":2,"target":4},{"source":2,"target":1},{"source":4,"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="diagram" nsURI="http://osate.org/diagram" nsPrefix="diagram"> <eClassifiers xsi:type="ecore:EClass" name="Diagram" eSuperTypes="#//DiagramNode"> <eStructuralFeatures xsi:type="ecore:EReference" name="config" eType="#//DiagramConfiguration" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="formatVersion" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//Int" defaultValueLiteral="0"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="DiagramNode"> <eStructuralFeatures xsi:type="ecore:EReference" name="element" upperBound="-1" eType="#//DiagramElement" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="DiagramElement" eSuperTypes="#//DiagramNode"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="id" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//LongObject" iD="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="bo" eType="#//RelativeBusinessObjectReference" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="manual" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//Boolean" defaultValueLiteral="false"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="autoContentsFilter" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Deprecated"/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="position" eType="#//Point" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="size" eType="#//Dimension" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="dockArea" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"/> <eStructuralFeatures xsi:type="ecore:EReference" name="bendpoints" eType="#//BendpointList" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="primaryLabelPosition" eType="#//Point" containment="true"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="documentation" value="Only supported for connections."/> </eAnnotations> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="background" eType="#//Color"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="outline" eType="#//Color"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="fontColor" eType="#//Color"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="fontSize" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//DoubleObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="lineWidth" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//DoubleObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="primaryLabelVisible" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBooleanObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="image" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="showAsImage" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBooleanObject"/> <eStructuralFeatures xsi:type="ecore:EReference" name="contentFilters" eType="#//ContentFilters" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Point"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="x" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//Double"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="y" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//Double"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Dimension"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="width" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//Double"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="height" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//Double"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="BendpointList"> <eStructuralFeatures xsi:type="ecore:EReference" name="point" upperBound="-1" eType="#//Point" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="AadlPropertiesSet"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="property" ordered="false" upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CanonicalBusinessObjectReference" eSuperTypes="#//Reference"/> <eClassifiers xsi:type="ecore:EClass" name="RelativeBusinessObjectReference" eSuperTypes="#//Reference"/> <eClassifiers xsi:type="ecore:EClass" name="DiagramConfiguration"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="type" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"/> <eStructuralFeatures xsi:type="ecore:EReference" name="enabledAadlProperties" eType="#//AadlPropertiesSet" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="context" eType="#//CanonicalBusinessObjectReference" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="connectionPrimaryLabelsVisible" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBooleanObject"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Reference" abstract="true"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="seg" upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"/> </eClassifiers> <eClassifiers xsi:type="ecore:EDataType" name="Color" instanceClassName="java.lang.String"/> <eClassifiers xsi:type="ecore:EClass" name="ContentFilters"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="filter" ordered="false" upperBound="-1" eType="ecore:EDataType http://www.eclipse.org/emf/2003/XMLType#//String"/> </eClassifiers> </ecore:EPackage>
github:ecore:/data/osate/osate-ge/org.osate.ge.diagram/model/diagram.ecore
ecore
diagram Diagram config formatVersion 0 DiagramNode element DiagramElement id bo manual false autoContentsFilter position size dockArea bendpoints primaryLabelPosition background outline fontColor fontSize lineWidth primaryLabelVisible image showAsImage contentFilters Point x y Dimension width height BendpointList point AadlPropertiesSet property CanonicalBusinessObjectReference RelativeBusinessObjectReference DiagramConfiguration type enabledAadlProperties context connectionPrimaryLabelsVisible Reference seg Color java.lang.String java.lang.String ContentFilters filter
null
{"directed":true,"nodes":[{"nsPrefix":"diagram","nsURI":"http://osate.org/diagram","name":"diagram","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Diagram","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DiagramNode","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DiagramElement","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Point","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Dimension","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BendpointList","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AadlPropertiesSet","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CanonicalBusinessObjectReference","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RelativeBusinessObjectReference","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DiagramConfiguration","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Reference","instanceClass":null,"abstract":true,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":"java.lang.String","defaultValue":null,"instanceClassName":"java.lang.String","name":"Color","instanceClass":"java.lang.String","id":12,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ContentFilters","instanceClass":null,"abstract":false,"id":13,"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":"config","changeable":true,"resolveProxies":true,"lowerBound":0,"id":14,"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":"formatVersion","changeable":true,"lowerBound":0,"iD":false,"id":15,"derived":false},{"id":16,"eClass":"EGenericType"},{"id":17,"eClass":"EGenericType"},{"id":18,"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":"element","changeable":true,"resolveProxies":true,"lowerBound":0,"id":19,"derived":false},{"id":20,"eClass":"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":21,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"bo","changeable":true,"resolveProxies":true,"lowerBound":0,"id":22,"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":"manual","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":"autoContentsFilter","changeable":true,"lowerBound":0,"iD":false,"id":24,"derived":false},{"container":false,"ordered":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":25,"derived":false},{"container":false,"ordered":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":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":"dockArea","changeable":true,"lowerBound":0,"iD":false,"id":27,"derived":false},{"container":false,"ordered":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":28,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"primaryLabelPosition","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":"background","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":"outline","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":"fontColor","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":"fontSize","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":"lineWidth","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":"primaryLabelVisible","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":"image","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":"showAsImage","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":"contentFilters","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"},{"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"},{"id":56,"eClass":"EGenericType"},{"id":57,"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":58,"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":59,"derived":false},{"id":60,"eClass":"EGenericType"},{"id":61,"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":"width","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":"height","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":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"point","changeable":true,"resolveProxies":true,"lowerBound":0,"id":66,"derived":false},{"id":67,"eClass":"EGenericType"},{"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"property","changeable":true,"lowerBound":0,"iD":false,"id":68,"derived":false},{"id":69,"eClass":"EGenericType"},{"id":70,"eClass":"EGenericType"},{"id":71,"eClass":"EGenericType"},{"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":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":"enabledAadlProperties","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":"context","changeable":true,"resolveProxies":true,"lowerBound":0,"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":"connectionPrimaryLabelsVisible","changeable":true,"lowerBound":0,"iD":false,"id":75,"derived":false},{"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":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"seg","changeable":true,"lowerBound":0,"iD":false,"id":80,"derived":false},{"id":81,"eClass":"EGenericType"},{"ordered":false,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"filter","changeable":true,"lowerBound":0,"iD":false,"id":82,"derived":false},{"id":83,"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":2},{"source":1,"target":14},{"source":1,"target":15},{"source":1,"target":16},{"source":14,"target":10},{"source":14,"target":17},{"source":14,"target":1},{"source":17,"target":10},{"source":15,"target":18},{"source":15,"target":1},{"source":16,"target":2},{"source":2,"target":0},{"source":2,"target":19},{"source":19,"target":3},{"source":19,"target":20},{"source":19,"target":2},{"source":20,"target":3},{"source":3,"target":0},{"source":3,"target":2},{"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":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":3,"target":38},{"source":3,"target":39},{"source":21,"target":40},{"source":21,"target":3},{"source":22,"target":9},{"source":22,"target":41},{"source":22,"target":3},{"source":41,"target":9},{"source":23,"target":42},{"source":23,"target":3},{"source":24,"target":43},{"source":24,"target":3},{"source":25,"target":4},{"source":25,"target":44},{"source":25,"target":3},{"source":44,"target":4},{"source":26,"target":5},{"source":26,"target":45},{"source":26,"target":3},{"source":45,"target":5},{"source":27,"target":46},{"source":27,"target":3},{"source":28,"target":6},{"source":28,"target":47},{"source":28,"target":3},{"source":47,"target":6},{"source":29,"target":4},{"source":29,"target":48},{"source":29,"target":3},{"source":48,"target":4},{"source":30,"target":12},{"source":30,"target":49},{"source":30,"target":3},{"source":49,"target":12},{"source":31,"target":12},{"source":31,"target":50},{"source":31,"target":3},{"source":50,"target":12},{"source":32,"target":12},{"source":32,"target":51},{"source":32,"target":3},{"source":51,"target":12},{"source":33,"target":52},{"source":33,"target":3},{"source":34,"target":53},{"source":34,"target":3},{"source":35,"target":54},{"source":35,"target":3},{"source":36,"target":55},{"source":36,"target":3},{"source":37,"target":56},{"source":37,"target":3},{"source":38,"target":13},{"source":38,"target":57},{"source":38,"target":3},{"source":57,"target":13},{"source":39,"target":2},{"source":4,"target":0},{"source":4,"target":58},{"source":4,"target":59},{"source":58,"target":60},{"source":58,"target":4},{"source":59,"target":61},{"source":59,"target":4},{"source":5,"target":0},{"source":5,"target":62},{"source":5,"target":63},{"source":62,"target":64},{"source":62,"target":5},{"source":63,"target":65},{"source":63,"target":5},{"source":6,"target":0},{"source":6,"target":66},{"source":66,"target":4},{"source":66,"target":67},{"source":66,"target":6},{"source":67,"target":4},{"source":7,"target":0},{"source":7,"target":68},{"source":68,"target":69},{"source":68,"target":7},{"source":8,"target":0},{"source":8,"target":11},{"source":8,"target":70},{"source":70,"target":11},{"source":9,"target":0},{"source":9,"target":11},{"source":9,"target":71},{"source":71,"target":11},{"source":10,"target":0},{"source":10,"target":72},{"source":10,"target":73},{"source":10,"target":74},{"source":10,"target":75},{"source":72,"target":76},{"source":72,"target":10},{"source":73,"target":7},{"source":73,"target":77},{"source":73,"target":10},{"source":77,"target":7},{"source":74,"target":8},{"source":74,"target":78},{"source":74,"target":10},{"source":78,"target":8},{"source":75,"target":79},{"source":75,"target":10},{"source":11,"target":0},{"source":11,"target":80},{"source":80,"target":81},{"source":80,"target":11},{"source":12,"target":0},{"source":13,"target":0},{"source":13,"target":82},{"source":82,"target":83},{"source":82,"target":13}],"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="parser" nsURI="http://www.jku.at/weiner/c/parser/Parser" nsPrefix="parser"> <eClassifiers xsi:type="ecore:EClass" name="ExternalDeclaration"> <eStructuralFeatures xsi:type="ecore:EReference" name="functiondefHead" eType="#//FunctionDefHead" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="functionDefinition" eType="#//FunctionDefinition" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="declaration" eType="#//Declaration" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="semi" eType="ecore:EDataType ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="gccAsmBasic" eType="#//GccAsmBasic" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="FunctionDefHead"> <eStructuralFeatures xsi:type="ecore:EReference" name="funDeclSpecifiers" eType="#//FunctionDeclarationSpecifiers" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="funDeclarator" eType="#//Declarator" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="funDeclaration" upperBound="-1" eType="#//Declaration" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="FunctionDefinition"> <eStructuralFeatures xsi:type="ecore:EReference" name="body" eType="#//Statement" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Declaration"> <eStructuralFeatures xsi:type="ecore:EReference" name="specifiers" eType="#//DeclarationSpecifiers" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="initDeclaratorList" upperBound="-1" eType="#//InitDeclaratorList" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="FunctionDeclarationSpecifiers"> <eStructuralFeatures xsi:type="ecore:EReference" name="declarationSpecifier" upperBound="-1" eType="ecore:EClass ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EObject" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="DeclarationSpecifiers"> <eStructuralFeatures xsi:type="ecore:EReference" name="declarationSpecifier" upperBound="-1" eType="ecore:EClass ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EObject" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="InitDeclaratorList"> <eStructuralFeatures xsi:type="ecore:EReference" name="initDeclarator" upperBound="-1" eType="#//InitDeclarator" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="InitDeclarator"> <eStructuralFeatures xsi:type="ecore:EReference" name="declarator" eType="#//Declarator" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="initializer" eType="#//Initializer" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="StorageClassSpecifier"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="TypeSpecifier"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="extType" eType="ecore:EDataType ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="specifier" eType="#//DeclarationSpecifier" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="type" eType="#//TypedefName" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="typeOf" eType="ecore:EDataType ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="typeName" eType="#//TypeName" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="constExpr" eType="#//Expression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="builtinChooseExpr" eType="ecore:EDataType ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EReference" name="expr1" eType="#//Expression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="expr2" eType="#//Expression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="gccAttributeSpecifier" eType="#//GccAttributeSpecifier" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="TypedefName"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="ident" eType="ecore:EDataType ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="DeclarationSpecifier"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="ident" eType="ecore:EDataType ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="StructOrUnion"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="StructDeclarationList"> <eStructuralFeatures xsi:type="ecore:EReference" name="structDeclaration" upperBound="-1" eType="#//StructDeclaration" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="StructDeclaration"> <eStructuralFeatures xsi:type="ecore:EReference" name="list" eType="#//SpecifierQualifierList" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="structDeclarationList" eType="#//StructDeclaratorList" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="SpecifierQualifierList"> <eStructuralFeatures xsi:type="ecore:EReference" name="typeSpecifier" upperBound="-1" eType="#//TypeSpecifier" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="typeQualifier" upperBound="-1" eType="#//TypeQualifier" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="StructDeclaratorList"> <eStructuralFeatures xsi:type="ecore:EReference" name="structDeclarator" upperBound="-1" eType="#//StructDeclarator" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="StructDeclarator"> <eStructuralFeatures xsi:type="ecore:EReference" name="declarator" eType="#//Declarator" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="constExpr" upperBound="-1" eType="#//Expression" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="EnumeratorList"> <eStructuralFeatures xsi:type="ecore:EReference" name="enumerator" upperBound="-1" eType="#//Enumerator" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="lastComma" eType="ecore:EDataType ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EBoolean"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Enumerator"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="ident" eType="ecore:EDataType ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="expr" eType="#//Expression" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="TypeQualifier"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="type" eType="ecore:EDataType ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="FunctionSpecifier"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="gccAttributeSpecifier" eType="#//GccAttributeSpecifier" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Declarator"> <eStructuralFeatures xsi:type="ecore:EReference" name="pointer" eType="#//Pointer" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="gccDeclExt1" upperBound="-1" eType="#//GccDeclaratorExtension" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="declarator" eType="#//DirectDeclarator" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="gccDeclExt2" upperBound="-1" eType="#//GccDeclaratorExtension" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="DirectDeclarator"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="ident" eType="ecore:EDataType ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="declarator" eType="#//Declarator" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="declaratorSuffix" upperBound="-1" eType="#//DeclaratorSuffix" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="DeclaratorSuffix"> <eStructuralFeatures xsi:type="ecore:EReference" name="expr" eType="#//Expression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="lastSuffix" eType="#//DirectDeclaratorLastSuffix" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="DirectDeclaratorLastSuffix"> <eStructuralFeatures xsi:type="ecore:EReference" name="parameterTypeList" upperBound="-1" eType="#//ParameterTypeList" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="identifierList" eType="#//IdentifierList" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="GccDeclaratorExtension"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="asm" eType="ecore:EDataType ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="string" unique="false" upperBound="-1" eType="ecore:EDataType ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="gccAttributeSpecifier" eType="#//GccAttributeSpecifier" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="GccAttributeSpecifier"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="attribute" eType="ecore:EDataType ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="list" eType="#//GccAttributeList" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="GccAttributeList"> <eStructuralFeatures xsi:type="ecore:EReference" name="gccAttribute" upperBound="-1" eType="#//GccAttribute" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="GccAttribute"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="ident" eType="ecore:EDataType ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="const" eType="ecore:EDataType ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="keyword" eType="ecore:EDataType ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="list" eType="#//ArgumentExpressionList" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Pointer"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="star" unique="false" upperBound="-1" eType="ecore:EDataType ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="caret" unique="false" upperBound="-1" eType="ecore:EDataType ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="typeQualifierList" upperBound="-1" eType="#//TypeQualifierList" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="TypeQualifierList"> <eStructuralFeatures xsi:type="ecore:EReference" name="typeQualifier" upperBound="-1" eType="#//TypeQualifier" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ParameterTypeList"> <eStructuralFeatures xsi:type="ecore:EReference" name="list" eType="#//ParameterList" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="ellipsis" eType="ecore:EDataType ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EBoolean"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ParameterList"> <eStructuralFeatures xsi:type="ecore:EReference" name="parameterDeclaration" upperBound="-1" eType="#//ParameterDeclaration" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ParameterDeclaration"> <eStructuralFeatures xsi:type="ecore:EReference" name="declSpecifiers" eType="#//DeclarationSpecifiers" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="declarator" eType="#//Declarator" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="abstractDeclator" eType="#//AbstractDeclarator" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="IdentifierList"> <eStructuralFeatures xsi:type="ecore:EReference" name="ident" upperBound="-1" eType="#//MyIdentifier" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="MyIdentifier"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="ident" eType="ecore:EDataType ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="TypeName"> <eStructuralFeatures xsi:type="ecore:EReference" name="list" eType="#//SpecifierQualifierList" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="abstractDeclarator" eType="#//AbstractDeclarator" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="AbstractDeclarator"> <eStructuralFeatures xsi:type="ecore:EReference" name="pointer" eType="#//Pointer" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="directAbstractDeclarator" eType="#//DirectAbstractDeclarator" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="gccDeclExtAbstract" upperBound="-1" eType="#//GccDeclaratorExtension" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="DirectAbstractDeclarator"> <eStructuralFeatures xsi:type="ecore:EReference" name="declarator" eType="#//AbstractDeclarator" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="gccDeclExt" upperBound="-1" eType="#//GccDeclaratorExtension" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="abstractDeclaratorSuffix" upperBound="-1" eType="#//AbstractDeclaratorSuffix" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="AbstractDeclaratorSuffix"> <eStructuralFeatures xsi:type="ecore:EReference" name="typeQualifierList" eType="#//TypeQualifierList" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="assignmentExpr" upperBound="-1" eType="#//Expression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="typeQualifierListOrig" eType="#//TypeQualifierList" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="parameterTypeList" eType="#//ParameterTypeList" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="gccDeclExt" upperBound="-1" eType="#//GccDeclaratorExtension" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Initializer"> <eStructuralFeatures xsi:type="ecore:EReference" name="expr" eType="#//Expression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="list" eType="#//InitializerList" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="lastComma" eType="ecore:EDataType ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EBoolean"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="InitializerList"> <eStructuralFeatures xsi:type="ecore:EReference" name="init" upperBound="-1" eType="#//Init" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Init"> <eStructuralFeatures xsi:type="ecore:EReference" name="designation" eType="#//Designation" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="initializer" eType="#//Initializer" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="BlockList"> <eStructuralFeatures xsi:type="ecore:EReference" name="declaration" upperBound="-1" eType="#//Declaration" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="statement" upperBound="-1" eType="#//Statement" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Statement"> <eStructuralFeatures xsi:type="ecore:EReference" name="stmt" eType="#//Statement" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="AsmLine"> <eStructuralFeatures xsi:type="ecore:EReference" name="sym" eType="#//AsmSymbolicName" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="expr" eType="#//Expression" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="AsmSymbolicName"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="ident" eType="ecore:EDataType ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="AsmLineWithColon"> <eStructuralFeatures xsi:type="ecore:EReference" name="asmLine" eType="#//AsmLineWithoutColon" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="AsmLineWithoutColon"> <eStructuralFeatures xsi:type="ecore:EReference" name="asmLines" upperBound="-1" eType="#//AsmLine" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Designation"> <eStructuralFeatures xsi:type="ecore:EReference" name="list" eType="#//DesignatorList" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="DesignatorList"> <eStructuralFeatures xsi:type="ecore:EReference" name="designator" upperBound="-1" eType="#//Designator" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Designator"> <eStructuralFeatures xsi:type="ecore:EReference" name="expr" eType="#//Expression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="to" eType="#//Expression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="ident" eType="ecore:EDataType ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Expression" eSuperTypes="../../../at.jku.weiner.c.common/model/custom/Common.ecore#//Expression"> <eStructuralFeatures xsi:type="ecore:EReference" name="left" eType="#//Expression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="right" eType="#//Expression" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="PostfixExpressionSuffix" eSuperTypes="../../../at.jku.weiner.c.common/model/custom/Common.ecore#//PostfixExpressionSuffix"/> <eClassifiers xsi:type="ecore:EClass" name="ArgumentExpressionList" eSuperTypes="../../../at.jku.weiner.c.common/model/custom/Common.ecore#//ArgumentExpressionList"/> <eClassifiers xsi:type="ecore:EClass" name="Parser" eSuperTypes="../../../at.jku.weiner.c.common/model/custom/Common.ecore#//Parser"> <eStructuralFeatures xsi:type="ecore:EReference" name="external" upperBound="-1" eType="#//ExternalDeclaration" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="StructOrUnionSpecifier" eSuperTypes="#//DeclarationSpecifier"> <eStructuralFeatures xsi:type="ecore:EReference" name="type" eType="#//StructOrUnion" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="braces" eType="ecore:EDataType ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EReference" name="structDeclList" eType="#//StructDeclarationList" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="EnumSpecifier" eSuperTypes="#//DeclarationSpecifier"> <eStructuralFeatures xsi:type="ecore:EReference" name="enumList" eType="#//EnumeratorList" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="LabeledStatement" eSuperTypes="#//Statement"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="ident" eType="ecore:EDataType ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="lStmt" eType="#//Statement" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="case" eType="ecore:EDataType ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="expr" eType="#//Expression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="mydefault" eType="ecore:EDataType ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EReference" name="higher" eType="#//Expression" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CompoundStatement" eSuperTypes="#//Statement"> <eStructuralFeatures xsi:type="ecore:EReference" name="body" eType="#//Statement" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="BodyStatement" eSuperTypes="#//Statement"> <eStructuralFeatures xsi:type="ecore:EReference" name="blockList" upperBound="-1" eType="#//BlockList" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ExpressionStatement" eSuperTypes="#//Statement"> <eStructuralFeatures xsi:type="ecore:EReference" name="expression" eType="#//Expression" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="SelectionStatement" eSuperTypes="#//Statement"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="if" eType="ecore:EDataType ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="expr" eType="#//Expression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="ifStatement" eType="#//Statement" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="else" eType="ecore:EDataType ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="elseStatement" eType="#//Statement" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="switch" eType="ecore:EDataType ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="switchStatement" eType="#//Statement" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="IterationStatement" eSuperTypes="#//Statement"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="while" eType="ecore:EDataType ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="expr" eType="#//Expression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="statement" eType="#//Statement" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="do" eType="ecore:EDataType ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="semi" eType="ecore:EDataType ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="for" eType="ecore:EDataType ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="initExpr" eType="#//Expression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="incExpr" eType="#//Expression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="initDecl" eType="#//Declaration" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="JumpStatement" eSuperTypes="#//Statement"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="continue" eType="ecore:EDataType ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="break" eType="ecore:EDataType ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="return" eType="ecore:EDataType ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="expr" eType="#//Expression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="goto" eType="ecore:EDataType ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="AsmStatement" eSuperTypes="#//Statement"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="asm" eType="ecore:EDataType ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="volatile" eType="ecore:EDataType ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="asmLine1" eType="#//AsmLine" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="asmLines" upperBound="-1" eType="#//AsmLineWithColon" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="lastComma" eType="ecore:EDataType ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="goto" eType="ecore:EDataType ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EString" defaultValueLiteral=""/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="AssignmentExpression" eSuperTypes="#//Expression"> <eStructuralFeatures xsi:type="ecore:EReference" name="expr" eType="#//Expression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="op" eType="ecore:EDataType ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="assignmentExpr" eType="#//Expression" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ConditionalExpression" eSuperTypes="#//Expression"> <eStructuralFeatures xsi:type="ecore:EReference" name="qExpr" eType="#//Expression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="cExpr" eType="#//Expression" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="LogicalOrExpression" eSuperTypes="#//Expression"/> <eClassifiers xsi:type="ecore:EClass" name="LogicalAndExpression" eSuperTypes="#//Expression"/> <eClassifiers xsi:type="ecore:EClass" name="InclusiveOrExpression" eSuperTypes="#//Expression"/> <eClassifiers xsi:type="ecore:EClass" name="ExclusiveOrExpression" eSuperTypes="#//Expression"/> <eClassifiers xsi:type="ecore:EClass" name="AndExpression" eSuperTypes="#//Expression"/> <eClassifiers xsi:type="ecore:EClass" name="EqualityExpression" eSuperTypes="#//Expression"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="op" eType="ecore:EDataType ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="RelationalExpression" eSuperTypes="#//Expression"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="op" eType="ecore:EDataType ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ShiftExpression" eSuperTypes="#//Expression"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="op" eType="ecore:EDataType ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="AdditiveExpression" eSuperTypes="#//Expression"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="op" eType="ecore:EDataType ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="MultiplicativeExpression" eSuperTypes="#//Expression"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="op" eType="ecore:EDataType ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CastExpression" eSuperTypes="#//Expression"> <eStructuralFeatures xsi:type="ecore:EReference" name="type" eType="#//TypeName" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="expr" eType="#//Expression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="extension" eType="ecore:EDataType ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EBoolean"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="UnaryExpression" eSuperTypes="#//Expression"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="plusplus" eType="ecore:EDataType ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="expr" eType="#//Expression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="minusminus" eType="ecore:EDataType ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="op" eType="ecore:EDataType ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="sizeOf" eType="ecore:EDataType ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="typeName" eType="#//TypeName" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="alignOf" eType="ecore:EDataType ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="andand" eType="ecore:EDataType ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="ident" eType="ecore:EDataType ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="PostfixExpression" eSuperTypes="#//Expression"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="ext" eType="ecore:EDataType ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EReference" name="typeName" eType="#//TypeName" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="initializerList" eType="#//InitializerList" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="comma" eType="ecore:EDataType ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EReference" name="expr" eType="#//Expression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="suffix" eType="#//PostfixExpressionSuffix" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="PostfixExpressionSuffixArray" eSuperTypes="#//PostfixExpressionSuffix"> <eStructuralFeatures xsi:type="ecore:EReference" name="arrayExpr" eType="#//Expression" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="PostfixExpressionSuffixArgument" eSuperTypes="#//PostfixExpressionSuffix"> <eStructuralFeatures xsi:type="ecore:EReference" name="argumentExpressionList" eType="#//ArgumentExpressionList" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="PostfixExpressionSuffixDot" eSuperTypes="#//PostfixExpressionSuffix"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="ident" eType="ecore:EDataType ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="PostfixExpressionSuffixArrow" eSuperTypes="#//PostfixExpressionSuffix"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="ident" eType="ecore:EDataType ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="PostfixExpressionSuffixPlusPlus" eSuperTypes="#//PostfixExpressionSuffix"/> <eClassifiers xsi:type="ecore:EClass" name="PostfixExpressionSuffixMinusMinus" eSuperTypes="#//PostfixExpressionSuffix"/> <eClassifiers xsi:type="ecore:EClass" name="PrimaryExpression" eSuperTypes="#//Expression"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="ident" eType="ecore:EDataType ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="const" eType="ecore:EClass ../../../at.jku.weiner.c.common/model/custom/Common.ecore#//Constant2" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="string" unique="false" upperBound="-1" eType="ecore:EDataType ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="parentheses" eType="ecore:EDataType ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EReference" name="expr" eType="#//Expression" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="ext" eType="ecore:EDataType ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EReference" name="compoundStmt" eType="#//Statement" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="builtin_offsetof" eType="ecore:EDataType ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EReference" name="typeName" eType="#//TypeName" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="builtin_typescompatiblep" eType="ecore:EDataType ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EReference" name="typeName2" eType="#//TypeName" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ConstantExpression" eSuperTypes="#//Expression"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="restrict" eType="ecore:EDataType ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="expr" eType="#//Expression" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="GccAsmBasic"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="asm" eType="ecore:EDataType ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="string" upperBound="-1" eType="ecore:EDataType ../../../org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/> </eClassifiers> </ecore:EPackage>
github:ecore:/data/timeraider4u/kefax/workspace/at.jku.weiner.c.parser/model/custom/Parser.ecore
ecore
parser ExternalDeclaration functiondefHead functionDefinition declaration semi gccAsmBasic FunctionDefHead funDeclSpecifiers funDeclarator funDeclaration FunctionDefinition body Declaration specifiers initDeclaratorList FunctionDeclarationSpecifiers declarationSpecifier DeclarationSpecifiers declarationSpecifier InitDeclaratorList initDeclarator InitDeclarator declarator initializer StorageClassSpecifier name TypeSpecifier name extType specifier type typeOf typeName constExpr builtinChooseExpr expr1 expr2 gccAttributeSpecifier TypedefName ident DeclarationSpecifier ident StructOrUnion name StructDeclarationList structDeclaration StructDeclaration list structDeclarationList SpecifierQualifierList typeSpecifier typeQualifier StructDeclaratorList structDeclarator StructDeclarator declarator constExpr EnumeratorList enumerator lastComma Enumerator ident expr TypeQualifier type FunctionSpecifier name gccAttributeSpecifier Declarator pointer gccDeclExt1 declarator gccDeclExt2 DirectDeclarator ident declarator declaratorSuffix DeclaratorSuffix expr lastSuffix DirectDeclaratorLastSuffix parameterTypeList identifierList GccDeclaratorExtension asm string gccAttributeSpecifier GccAttributeSpecifier attribute list GccAttributeList gccAttribute GccAttribute ident const keyword list Pointer star caret typeQualifierList TypeQualifierList typeQualifier ParameterTypeList list ellipsis ParameterList parameterDeclaration ParameterDeclaration declSpecifiers declarator abstractDeclator IdentifierList ident MyIdentifier ident TypeName list abstractDeclarator AbstractDeclarator pointer directAbstractDeclarator gccDeclExtAbstract DirectAbstractDeclarator declarator gccDeclExt abstractDeclaratorSuffix AbstractDeclaratorSuffix typeQualifierList assignmentExpr typeQualifierListOrig parameterTypeList gccDeclExt Initializer expr list lastComma InitializerList init Init designation initializer BlockList declaration statement Statement stmt AsmLine sym expr AsmSymbolicName ident AsmLineWithColon asmLine AsmLineWithoutColon asmLines Designation list DesignatorList designator Designator expr to ident Expression left right PostfixExpressionSuffix ArgumentExpressionList Parser external StructOrUnionSpecifier type braces structDeclList EnumSpecifier enumList LabeledStatement ident lStmt case expr mydefault higher CompoundStatement body BodyStatement blockList ExpressionStatement expression SelectionStatement if expr ifStatement else elseStatement switch switchStatement IterationStatement while expr statement do semi for initExpr incExpr initDecl JumpStatement continue break return expr goto AsmStatement asm volatile asmLine1 asmLines lastComma goto AssignmentExpression expr op assignmentExpr ConditionalExpression qExpr cExpr LogicalOrExpression LogicalAndExpression InclusiveOrExpression ExclusiveOrExpression AndExpression EqualityExpression op RelationalExpression op ShiftExpression op AdditiveExpression op MultiplicativeExpression op CastExpression type expr extension UnaryExpression plusplus expr minusminus op sizeOf typeName alignOf andand ident PostfixExpression ext typeName initializerList comma expr suffix PostfixExpressionSuffixArray arrayExpr PostfixExpressionSuffixArgument argumentExpressionList PostfixExpressionSuffixDot ident PostfixExpressionSuffixArrow ident PostfixExpressionSuffixPlusPlus PostfixExpressionSuffixMinusMinus PrimaryExpression ident const string parentheses expr ext compoundStmt builtin_offsetof typeName builtin_typescompatiblep typeName2 ConstantExpression restrict expr GccAsmBasic asm string
null
{"directed":true,"nodes":[{"nsPrefix":"parser","nsURI":"http://www.jku.at/weiner/c/parser/Parser","name":"parser","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExternalDeclaration","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FunctionDefHead","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FunctionDefinition","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Declaration","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FunctionDeclarationSpecifiers","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DeclarationSpecifiers","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InitDeclaratorList","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InitDeclarator","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StorageClassSpecifier","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TypeSpecifier","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TypedefName","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DeclarationSpecifier","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StructOrUnion","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StructDeclarationList","instanceClass":null,"abstract":false,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StructDeclaration","instanceClass":null,"abstract":false,"id":15,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SpecifierQualifierList","instanceClass":null,"abstract":false,"id":16,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StructDeclaratorList","instanceClass":null,"abstract":false,"id":17,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StructDeclarator","instanceClass":null,"abstract":false,"id":18,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EnumeratorList","instanceClass":null,"abstract":false,"id":19,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Enumerator","instanceClass":null,"abstract":false,"id":20,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TypeQualifier","instanceClass":null,"abstract":false,"id":21,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"FunctionSpecifier","instanceClass":null,"abstract":false,"id":22,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Declarator","instanceClass":null,"abstract":false,"id":23,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DirectDeclarator","instanceClass":null,"abstract":false,"id":24,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DeclaratorSuffix","instanceClass":null,"abstract":false,"id":25,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DirectDeclaratorLastSuffix","instanceClass":null,"abstract":false,"id":26,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"GccDeclaratorExtension","instanceClass":null,"abstract":false,"id":27,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"GccAttributeSpecifier","instanceClass":null,"abstract":false,"id":28,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"GccAttributeList","instanceClass":null,"abstract":false,"id":29,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"GccAttribute","instanceClass":null,"abstract":false,"id":30,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Pointer","instanceClass":null,"abstract":false,"id":31,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TypeQualifierList","instanceClass":null,"abstract":false,"id":32,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ParameterTypeList","instanceClass":null,"abstract":false,"id":33,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ParameterList","instanceClass":null,"abstract":false,"id":34,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ParameterDeclaration","instanceClass":null,"abstract":false,"id":35,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IdentifierList","instanceClass":null,"abstract":false,"id":36,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MyIdentifier","instanceClass":null,"abstract":false,"id":37,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TypeName","instanceClass":null,"abstract":false,"id":38,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AbstractDeclarator","instanceClass":null,"abstract":false,"id":39,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DirectAbstractDeclarator","instanceClass":null,"abstract":false,"id":40,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AbstractDeclaratorSuffix","instanceClass":null,"abstract":false,"id":41,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Initializer","instanceClass":null,"abstract":false,"id":42,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InitializerList","instanceClass":null,"abstract":false,"id":43,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Init","instanceClass":null,"abstract":false,"id":44,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BlockList","instanceClass":null,"abstract":false,"id":45,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Statement","instanceClass":null,"abstract":false,"id":46,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AsmLine","instanceClass":null,"abstract":false,"id":47,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AsmSymbolicName","instanceClass":null,"abstract":false,"id":48,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AsmLineWithColon","instanceClass":null,"abstract":false,"id":49,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AsmLineWithoutColon","instanceClass":null,"abstract":false,"id":50,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Designation","instanceClass":null,"abstract":false,"id":51,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DesignatorList","instanceClass":null,"abstract":false,"id":52,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Designator","instanceClass":null,"abstract":false,"id":53,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Expression","instanceClass":null,"abstract":false,"id":54,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PostfixExpressionSuffix","instanceClass":null,"abstract":false,"id":55,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ArgumentExpressionList","instanceClass":null,"abstract":false,"id":56,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Parser","instanceClass":null,"abstract":false,"id":57,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StructOrUnionSpecifier","instanceClass":null,"abstract":false,"id":58,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EnumSpecifier","instanceClass":null,"abstract":false,"id":59,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LabeledStatement","instanceClass":null,"abstract":false,"id":60,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CompoundStatement","instanceClass":null,"abstract":false,"id":61,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BodyStatement","instanceClass":null,"abstract":false,"id":62,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExpressionStatement","instanceClass":null,"abstract":false,"id":63,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SelectionStatement","instanceClass":null,"abstract":false,"id":64,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"IterationStatement","instanceClass":null,"abstract":false,"id":65,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"JumpStatement","instanceClass":null,"abstract":false,"id":66,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AsmStatement","instanceClass":null,"abstract":false,"id":67,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AssignmentExpression","instanceClass":null,"abstract":false,"id":68,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ConditionalExpression","instanceClass":null,"abstract":false,"id":69,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LogicalOrExpression","instanceClass":null,"abstract":false,"id":70,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LogicalAndExpression","instanceClass":null,"abstract":false,"id":71,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InclusiveOrExpression","instanceClass":null,"abstract":false,"id":72,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ExclusiveOrExpression","instanceClass":null,"abstract":false,"id":73,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AndExpression","instanceClass":null,"abstract":false,"id":74,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EqualityExpression","instanceClass":null,"abstract":false,"id":75,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RelationalExpression","instanceClass":null,"abstract":false,"id":76,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ShiftExpression","instanceClass":null,"abstract":false,"id":77,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AdditiveExpression","instanceClass":null,"abstract":false,"id":78,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MultiplicativeExpression","instanceClass":null,"abstract":false,"id":79,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CastExpression","instanceClass":null,"abstract":false,"id":80,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"UnaryExpression","instanceClass":null,"abstract":false,"id":81,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PostfixExpression","instanceClass":null,"abstract":false,"id":82,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PostfixExpressionSuffixArray","instanceClass":null,"abstract":false,"id":83,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PostfixExpressionSuffixArgument","instanceClass":null,"abstract":false,"id":84,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PostfixExpressionSuffixDot","instanceClass":null,"abstract":false,"id":85,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PostfixExpressionSuffixArrow","instanceClass":null,"abstract":false,"id":86,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PostfixExpressionSuffixPlusPlus","instanceClass":null,"abstract":false,"id":87,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PostfixExpressionSuffixMinusMinus","instanceClass":null,"abstract":false,"id":88,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"PrimaryExpression","instanceClass":null,"abstract":false,"id":89,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ConstantExpression","instanceClass":null,"abstract":false,"id":90,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"GccAsmBasic","instanceClass":null,"abstract":false,"id":91,"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":"functiondefHead","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":"functionDefinition","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":"declaration","changeable":true,"resolveProxies":true,"lowerBound":0,"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":"semi","changeable":true,"lowerBound":0,"iD":false,"id":95,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"gccAsmBasic","changeable":true,"resolveProxies":true,"lowerBound":0,"id":96,"derived":false},{"id":97,"eClass":"EGenericType"},{"id":98,"eClass":"EGenericType"},{"id":99,"eClass":"EGenericType"},{"id":100,"eClass":"EGenericType"},{"id":101,"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":"funDeclSpecifiers","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":true,"unsettable":false,"transient":false,"unique":true,"name":"funDeclarator","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":"funDeclaration","changeable":true,"resolveProxies":true,"lowerBound":0,"id":104,"derived":false},{"id":105,"eClass":"EGenericType"},{"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":"body","changeable":true,"resolveProxies":true,"lowerBound":0,"id":108,"derived":false},{"id":109,"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":"specifiers","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":"initDeclaratorList","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":"declarationSpecifier","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":"declarationSpecifier","changeable":true,"resolveProxies":true,"lowerBound":0,"id":116,"derived":false},{"id":117,"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":"initDeclarator","changeable":true,"resolveProxies":true,"lowerBound":0,"id":118,"derived":false},{"id":119,"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":"declarator","changeable":true,"resolveProxies":true,"lowerBound":0,"id":120,"derived":false},{"container":false,"ordered":true,"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":121,"derived":false},{"id":122,"eClass":"EGenericType"},{"id":123,"eClass":"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":124,"derived":false},{"id":125,"eClass":"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":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":"extType","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":"specifier","changeable":true,"resolveProxies":true,"lowerBound":0,"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":"type","changeable":true,"resolveProxies":true,"lowerBound":0,"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":"typeOf","changeable":true,"lowerBound":0,"iD":false,"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":"typeName","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":"constExpr","changeable":true,"resolveProxies":true,"lowerBound":0,"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":"builtinChooseExpr","changeable":true,"lowerBound":0,"iD":false,"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":"expr1","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":"expr2","changeable":true,"resolveProxies":true,"lowerBound":0,"id":135,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"gccAttributeSpecifier","changeable":true,"resolveProxies":true,"lowerBound":0,"id":136,"derived":false},{"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"},{"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":"ident","changeable":true,"lowerBound":0,"iD":false,"id":148,"derived":false},{"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":"ident","changeable":true,"lowerBound":0,"iD":false,"id":150,"derived":false},{"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":"name","changeable":true,"lowerBound":0,"iD":false,"id":152,"derived":false},{"id":153,"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":"structDeclaration","changeable":true,"resolveProxies":true,"lowerBound":0,"id":154,"derived":false},{"id":155,"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":"list","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":"structDeclarationList","changeable":true,"resolveProxies":true,"lowerBound":0,"id":157,"derived":false},{"id":158,"eClass":"EGenericType"},{"id":159,"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":"typeSpecifier","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":"typeQualifier","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":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"structDeclarator","changeable":true,"resolveProxies":true,"lowerBound":0,"id":164,"derived":false},{"id":165,"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":"declarator","changeable":true,"resolveProxies":true,"lowerBound":0,"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":"constExpr","changeable":true,"resolveProxies":true,"lowerBound":0,"id":167,"derived":false},{"id":168,"eClass":"EGenericType"},{"id":169,"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":"enumerator","changeable":true,"resolveProxies":true,"lowerBound":0,"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":"lastComma","changeable":true,"lowerBound":0,"iD":false,"id":171,"derived":false},{"id":172,"eClass":"EGenericType"},{"id":173,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"ident","changeable":true,"lowerBound":0,"iD":false,"id":174,"derived":false},{"container":false,"ordered":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":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":"type","changeable":true,"lowerBound":0,"iD":false,"id":178,"derived":false},{"id":179,"eClass":"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":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":"gccAttributeSpecifier","changeable":true,"resolveProxies":true,"lowerBound":0,"id":181,"derived":false},{"id":182,"eClass":"EGenericType"},{"id":183,"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":184,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"gccDeclExt1","changeable":true,"resolveProxies":true,"lowerBound":0,"id":185,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"declarator","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":"gccDeclExt2","changeable":true,"resolveProxies":true,"lowerBound":0,"id":187,"derived":false},{"id":188,"eClass":"EGenericType"},{"id":189,"eClass":"EGenericType"},{"id":190,"eClass":"EGenericType"},{"id":191,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"ident","changeable":true,"lowerBound":0,"iD":false,"id":192,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"declarator","changeable":true,"resolveProxies":true,"lowerBound":0,"id":193,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"declaratorSuffix","changeable":true,"resolveProxies":true,"lowerBound":0,"id":194,"derived":false},{"id":195,"eClass":"EGenericType"},{"id":196,"eClass":"EGenericType"},{"id":197,"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":198,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"lastSuffix","changeable":true,"resolveProxies":true,"lowerBound":0,"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":"parameterTypeList","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":"identifierList","changeable":true,"resolveProxies":true,"lowerBound":0,"id":203,"derived":false},{"id":204,"eClass":"EGenericType"},{"id":205,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"asm","changeable":true,"lowerBound":0,"iD":false,"id":206,"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":"string","changeable":true,"lowerBound":0,"iD":false,"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":"gccAttributeSpecifier","changeable":true,"resolveProxies":true,"lowerBound":0,"id":208,"derived":false},{"id":209,"eClass":"EGenericType"},{"id":210,"eClass":"EGenericType"},{"id":211,"eClass":"EGenericType"},{"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":212,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"list","changeable":true,"resolveProxies":true,"lowerBound":0,"id":213,"derived":false},{"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":"gccAttribute","changeable":true,"resolveProxies":true,"lowerBound":0,"id":216,"derived":false},{"id":217,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"ident","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":"const","changeable":true,"lowerBound":0,"iD":false,"id":219,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"keyword","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":"list","changeable":true,"resolveProxies":true,"lowerBound":0,"id":221,"derived":false},{"id":222,"eClass":"EGenericType"},{"id":223,"eClass":"EGenericType"},{"id":224,"eClass":"EGenericType"},{"id":225,"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":"star","changeable":true,"lowerBound":0,"iD":false,"id":226,"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":"caret","changeable":true,"lowerBound":0,"iD":false,"id":227,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"typeQualifierList","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":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"typeQualifier","changeable":true,"resolveProxies":true,"lowerBound":0,"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":"list","changeable":true,"resolveProxies":true,"lowerBound":0,"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":"ellipsis","changeable":true,"lowerBound":0,"iD":false,"id":235,"derived":false},{"id":236,"eClass":"EGenericType"},{"id":237,"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":"parameterDeclaration","changeable":true,"resolveProxies":true,"lowerBound":0,"id":238,"derived":false},{"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":"declSpecifiers","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":"declarator","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":true,"unsettable":false,"transient":false,"unique":true,"name":"abstractDeclator","changeable":true,"resolveProxies":true,"lowerBound":0,"id":242,"derived":false},{"id":243,"eClass":"EGenericType"},{"id":244,"eClass":"EGenericType"},{"id":245,"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":"ident","changeable":true,"resolveProxies":true,"lowerBound":0,"id":246,"derived":false},{"id":247,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"ident","changeable":true,"lowerBound":0,"iD":false,"id":248,"derived":false},{"id":249,"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":"list","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":true,"unsettable":false,"transient":false,"unique":true,"name":"abstractDeclarator","changeable":true,"resolveProxies":true,"lowerBound":0,"id":251,"derived":false},{"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":"pointer","changeable":true,"resolveProxies":true,"lowerBound":0,"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":"directAbstractDeclarator","changeable":true,"resolveProxies":true,"lowerBound":0,"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":"gccDeclExtAbstract","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":"declarator","changeable":true,"resolveProxies":true,"lowerBound":0,"id":260,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"gccDeclExt","changeable":true,"resolveProxies":true,"lowerBound":0,"id":261,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"abstractDeclaratorSuffix","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":"typeQualifierList","changeable":true,"resolveProxies":true,"lowerBound":0,"id":266,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"assignmentExpr","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":"typeQualifierListOrig","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":"parameterTypeList","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":"gccDeclExt","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"},{"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":"expr","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":"list","changeable":true,"resolveProxies":true,"lowerBound":0,"id":277,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"lastComma","changeable":true,"lowerBound":0,"iD":false,"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":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"init","changeable":true,"resolveProxies":true,"lowerBound":0,"id":282,"derived":false},{"id":283,"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":"designation","changeable":true,"resolveProxies":true,"lowerBound":0,"id":284,"derived":false},{"container":false,"ordered":true,"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":285,"derived":false},{"id":286,"eClass":"EGenericType"},{"id":287,"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":"declaration","changeable":true,"resolveProxies":true,"lowerBound":0,"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":"statement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":289,"derived":false},{"id":290,"eClass":"EGenericType"},{"id":291,"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":"stmt","changeable":true,"resolveProxies":true,"lowerBound":0,"id":292,"derived":false},{"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":"sym","changeable":true,"resolveProxies":true,"lowerBound":0,"id":294,"derived":false},{"container":false,"ordered":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":295,"derived":false},{"id":296,"eClass":"EGenericType"},{"id":297,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"ident","changeable":true,"lowerBound":0,"iD":false,"id":298,"derived":false},{"id":299,"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":"asmLine","changeable":true,"resolveProxies":true,"lowerBound":0,"id":300,"derived":false},{"id":301,"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":"asmLines","changeable":true,"resolveProxies":true,"lowerBound":0,"id":302,"derived":false},{"id":303,"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":"list","changeable":true,"resolveProxies":true,"lowerBound":0,"id":304,"derived":false},{"id":305,"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":"designator","changeable":true,"resolveProxies":true,"lowerBound":0,"id":306,"derived":false},{"id":307,"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":308,"derived":false},{"container":false,"ordered":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":309,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"ident","changeable":true,"lowerBound":0,"iD":false,"id":310,"derived":false},{"id":311,"eClass":"EGenericType"},{"id":312,"eClass":"EGenericType"},{"id":313,"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":"left","changeable":true,"resolveProxies":true,"lowerBound":0,"id":314,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"right","changeable":true,"resolveProxies":true,"lowerBound":0,"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":"external","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":true,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"resolveProxies":true,"lowerBound":0,"id":324,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"braces","changeable":true,"lowerBound":0,"iD":false,"id":325,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"structDeclList","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"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"enumList","changeable":true,"resolveProxies":true,"lowerBound":0,"id":331,"derived":false},{"id":332,"eClass":"EGenericType"},{"id":333,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"ident","changeable":true,"lowerBound":0,"iD":false,"id":334,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"lStmt","changeable":true,"resolveProxies":true,"lowerBound":0,"id":335,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"case","changeable":true,"lowerBound":0,"iD":false,"id":336,"derived":false},{"container":false,"ordered":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":337,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"mydefault","changeable":true,"lowerBound":0,"iD":false,"id":338,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"higher","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"},{"container":false,"ordered":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":347,"derived":false},{"id":348,"eClass":"EGenericType"},{"id":349,"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":"blockList","changeable":true,"resolveProxies":true,"lowerBound":0,"id":350,"derived":false},{"id":351,"eClass":"EGenericType"},{"id":352,"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":353,"derived":false},{"id":354,"eClass":"EGenericType"},{"id":355,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"if","changeable":true,"lowerBound":0,"iD":false,"id":356,"derived":false},{"container":false,"ordered":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":357,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"ifStatement","changeable":true,"resolveProxies":true,"lowerBound":0,"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":"else","changeable":true,"lowerBound":0,"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":"elseStatement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":360,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"switch","changeable":true,"lowerBound":0,"iD":false,"id":361,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"switchStatement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":362,"derived":false},{"id":363,"eClass":"EGenericType"},{"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":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"while","changeable":true,"lowerBound":0,"iD":false,"id":371,"derived":false},{"container":false,"ordered":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":372,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"statement","changeable":true,"resolveProxies":true,"lowerBound":0,"id":373,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"do","changeable":true,"lowerBound":0,"iD":false,"id":374,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"semi","changeable":true,"lowerBound":0,"iD":false,"id":375,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"for","changeable":true,"lowerBound":0,"iD":false,"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":"initExpr","changeable":true,"resolveProxies":true,"lowerBound":0,"id":377,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"incExpr","changeable":true,"resolveProxies":true,"lowerBound":0,"id":378,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"initDecl","changeable":true,"resolveProxies":true,"lowerBound":0,"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"},{"id":389,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"continue","changeable":true,"lowerBound":0,"iD":false,"id":390,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"break","changeable":true,"lowerBound":0,"iD":false,"id":391,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"return","changeable":true,"lowerBound":0,"iD":false,"id":392,"derived":false},{"container":false,"ordered":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":393,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"goto","changeable":true,"lowerBound":0,"iD":false,"id":394,"derived":false},{"id":395,"eClass":"EGenericType"},{"id":396,"eClass":"EGenericType"},{"id":397,"eClass":"EGenericType"},{"id":398,"eClass":"EGenericType"},{"id":399,"eClass":"EGenericType"},{"id":400,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"asm","changeable":true,"lowerBound":0,"iD":false,"id":401,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"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":402,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"asmLine1","changeable":true,"resolveProxies":true,"lowerBound":0,"id":403,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"asmLines","changeable":true,"resolveProxies":true,"lowerBound":0,"id":404,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"lastComma","changeable":true,"lowerBound":0,"iD":false,"id":405,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"","unsettable":false,"transient":false,"unique":true,"name":"goto","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"},{"id":411,"eClass":"EGenericType"},{"id":412,"eClass":"EGenericType"},{"id":413,"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":414,"derived":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":415,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"assignmentExpr","changeable":true,"resolveProxies":true,"lowerBound":0,"id":416,"derived":false},{"id":417,"eClass":"EGenericType"},{"id":418,"eClass":"EGenericType"},{"id":419,"eClass":"EGenericType"},{"id":420,"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":"qExpr","changeable":true,"resolveProxies":true,"lowerBound":0,"id":421,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"cExpr","changeable":true,"resolveProxies":true,"lowerBound":0,"id":422,"derived":false},{"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"},{"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":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":"op","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":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"op","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":"op","changeable":true,"lowerBound":0,"iD":false,"id":440,"derived":false},{"id":441,"eClass":"EGenericType"},{"id":442,"eClass":"EGenericType"},{"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":443,"derived":false},{"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":true,"unsettable":false,"transient":false,"unique":true,"name":"type","changeable":true,"resolveProxies":true,"lowerBound":0,"id":446,"derived":false},{"container":false,"ordered":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":447,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"extension","changeable":true,"lowerBound":0,"iD":false,"id":448,"derived":false},{"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":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"plusplus","changeable":true,"lowerBound":0,"iD":false,"id":453,"derived":false},{"container":false,"ordered":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":454,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"minusminus","changeable":true,"lowerBound":0,"iD":false,"id":455,"derived":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":456,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"sizeOf","changeable":true,"lowerBound":0,"iD":false,"id":457,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"typeName","changeable":true,"resolveProxies":true,"lowerBound":0,"id":458,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"alignOf","changeable":true,"lowerBound":0,"iD":false,"id":459,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"andand","changeable":true,"lowerBound":0,"iD":false,"id":460,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"ident","changeable":true,"lowerBound":0,"iD":false,"id":461,"derived":false},{"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"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"ext","changeable":true,"lowerBound":0,"iD":false,"id":472,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"typeName","changeable":true,"resolveProxies":true,"lowerBound":0,"id":473,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"initializerList","changeable":true,"resolveProxies":true,"lowerBound":0,"id":474,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"comma","changeable":true,"lowerBound":0,"iD":false,"id":475,"derived":false},{"container":false,"ordered":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":476,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"suffix","changeable":true,"resolveProxies":true,"lowerBound":0,"id":477,"derived":false},{"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"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"arrayExpr","changeable":true,"resolveProxies":true,"lowerBound":0,"id":485,"derived":false},{"id":486,"eClass":"EGenericType"},{"id":487,"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":"argumentExpressionList","changeable":true,"resolveProxies":true,"lowerBound":0,"id":488,"derived":false},{"id":489,"eClass":"EGenericType"},{"id":490,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"ident","changeable":true,"lowerBound":0,"iD":false,"id":491,"derived":false},{"id":492,"eClass":"EGenericType"},{"id":493,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"ident","changeable":true,"lowerBound":0,"iD":false,"id":494,"derived":false},{"id":495,"eClass":"EGenericType"},{"id":496,"eClass":"EGenericType"},{"id":497,"eClass":"EGenericType"},{"id":498,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"ident","changeable":true,"lowerBound":0,"iD":false,"id":499,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"const","changeable":true,"resolveProxies":true,"lowerBound":0,"id":500,"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":"string","changeable":true,"lowerBound":0,"iD":false,"id":501,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"parentheses","changeable":true,"lowerBound":0,"iD":false,"id":502,"derived":false},{"container":false,"ordered":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":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":"ext","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":true,"unsettable":false,"transient":false,"unique":true,"name":"compoundStmt","changeable":true,"resolveProxies":true,"lowerBound":0,"id":505,"derived":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_offsetof","changeable":true,"lowerBound":0,"iD":false,"id":506,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"typeName","changeable":true,"resolveProxies":true,"lowerBound":0,"id":507,"derived":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_typescompatiblep","changeable":true,"lowerBound":0,"iD":false,"id":508,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"typeName2","changeable":true,"resolveProxies":true,"lowerBound":0,"id":509,"derived":false},{"id":510,"eClass":"EGenericType"},{"id":511,"eClass":"EGenericType"},{"id":512,"eClass":"EGenericType"},{"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"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"restrict","changeable":true,"lowerBound":0,"iD":false,"id":522,"derived":false},{"container":false,"ordered":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":523,"derived":false},{"id":524,"eClass":"EGenericType"},{"id":525,"eClass":"EGenericType"},{"id":526,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"asm","changeable":true,"lowerBound":0,"iD":false,"id":527,"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":"string","changeable":true,"lowerBound":0,"iD":false,"id":528,"derived":false},{"id":529,"eClass":"EGenericType"},{"id":530,"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":1,"target":0},{"source":1,"target":92},{"source":1,"target":93},{"source":1,"target":94},{"source":1,"target":95},{"source":1,"target":96},{"source":92,"target":2},{"source":92,"target":97},{"source":92,"target":1},{"source":97,"target":2},{"source":93,"target":3},{"source":93,"target":98},{"source":93,"target":1},{"source":98,"target":3},{"source":94,"target":4},{"source":94,"target":99},{"source":94,"target":1},{"source":99,"target":4},{"source":95,"target":100},{"source":95,"target":1},{"source":96,"target":91},{"source":96,"target":101},{"source":96,"target":1},{"source":101,"target":91},{"source":2,"target":0},{"source":2,"target":102},{"source":2,"target":103},{"source":2,"target":104},{"source":102,"target":5},{"source":102,"target":105},{"source":102,"target":2},{"source":105,"target":5},{"source":103,"target":23},{"source":103,"target":106},{"source":103,"target":2},{"source":106,"target":23},{"source":104,"target":4},{"source":104,"target":107},{"source":104,"target":2},{"source":107,"target":4},{"source":3,"target":0},{"source":3,"target":108},{"source":108,"target":46},{"source":108,"target":109},{"source":108,"target":3},{"source":109,"target":46},{"source":4,"target":0},{"source":4,"target":110},{"source":4,"target":111},{"source":110,"target":6},{"source":110,"target":112},{"source":110,"target":4},{"source":112,"target":6},{"source":111,"target":7},{"source":111,"target":113},{"source":111,"target":4},{"source":113,"target":7},{"source":5,"target":0},{"source":5,"target":114},{"source":114,"target":115},{"source":114,"target":5},{"source":6,"target":0},{"source":6,"target":116},{"source":116,"target":117},{"source":116,"target":6},{"source":7,"target":0},{"source":7,"target":118},{"source":118,"target":8},{"source":118,"target":119},{"source":118,"target":7},{"source":119,"target":8},{"source":8,"target":0},{"source":8,"target":120},{"source":8,"target":121},{"source":120,"target":23},{"source":120,"target":122},{"source":120,"target":8},{"source":122,"target":23},{"source":121,"target":42},{"source":121,"target":123},{"source":121,"target":8},{"source":123,"target":42},{"source":9,"target":0},{"source":9,"target":124},{"source":124,"target":125},{"source":124,"target":9},{"source":10,"target":0},{"source":10,"target":126},{"source":10,"target":127},{"source":10,"target":128},{"source":10,"target":129},{"source":10,"target":130},{"source":10,"target":131},{"source":10,"target":132},{"source":10,"target":133},{"source":10,"target":134},{"source":10,"target":135},{"source":10,"target":136},{"source":126,"target":137},{"source":126,"target":10},{"source":127,"target":138},{"source":127,"target":10},{"source":128,"target":12},{"source":128,"target":139},{"source":128,"target":10},{"source":139,"target":12},{"source":129,"target":11},{"source":129,"target":140},{"source":129,"target":10},{"source":140,"target":11},{"source":130,"target":141},{"source":130,"target":10},{"source":131,"target":38},{"source":131,"target":142},{"source":131,"target":10},{"source":142,"target":38},{"source":132,"target":54},{"source":132,"target":143},{"source":132,"target":10},{"source":143,"target":54},{"source":133,"target":144},{"source":133,"target":10},{"source":134,"target":54},{"source":134,"target":145},{"source":134,"target":10},{"source":145,"target":54},{"source":135,"target":54},{"source":135,"target":146},{"source":135,"target":10},{"source":146,"target":54},{"source":136,"target":28},{"source":136,"target":147},{"source":136,"target":10},{"source":147,"target":28},{"source":11,"target":0},{"source":11,"target":148},{"source":148,"target":149},{"source":148,"target":11},{"source":12,"target":0},{"source":12,"target":150},{"source":150,"target":151},{"source":150,"target":12},{"source":13,"target":0},{"source":13,"target":152},{"source":152,"target":153},{"source":152,"target":13},{"source":14,"target":0},{"source":14,"target":154},{"source":154,"target":15},{"source":154,"target":155},{"source":154,"target":14},{"source":155,"target":15},{"source":15,"target":0},{"source":15,"target":156},{"source":15,"target":157},{"source":156,"target":16},{"source":156,"target":158},{"source":156,"target":15},{"source":158,"target":16},{"source":157,"target":17},{"source":157,"target":159},{"source":157,"target":15},{"source":159,"target":17},{"source":16,"target":0},{"source":16,"target":160},{"source":16,"target":161},{"source":160,"target":10},{"source":160,"target":162},{"source":160,"target":16},{"source":162,"target":10},{"source":161,"target":21},{"source":161,"target":163},{"source":161,"target":16},{"source":163,"target":21},{"source":17,"target":0},{"source":17,"target":164},{"source":164,"target":18},{"source":164,"target":165},{"source":164,"target":17},{"source":165,"target":18},{"source":18,"target":0},{"source":18,"target":166},{"source":18,"target":167},{"source":166,"target":23},{"source":166,"target":168},{"source":166,"target":18},{"source":168,"target":23},{"source":167,"target":54},{"source":167,"target":169},{"source":167,"target":18},{"source":169,"target":54},{"source":19,"target":0},{"source":19,"target":170},{"source":19,"target":171},{"source":170,"target":20},{"source":170,"target":172},{"source":170,"target":19},{"source":172,"target":20},{"source":171,"target":173},{"source":171,"target":19},{"source":20,"target":0},{"source":20,"target":174},{"source":20,"target":175},{"source":174,"target":176},{"source":174,"target":20},{"source":175,"target":54},{"source":175,"target":177},{"source":175,"target":20},{"source":177,"target":54},{"source":21,"target":0},{"source":21,"target":178},{"source":178,"target":179},{"source":178,"target":21},{"source":22,"target":0},{"source":22,"target":180},{"source":22,"target":181},{"source":180,"target":182},{"source":180,"target":22},{"source":181,"target":28},{"source":181,"target":183},{"source":181,"target":22},{"source":183,"target":28},{"source":23,"target":0},{"source":23,"target":184},{"source":23,"target":185},{"source":23,"target":186},{"source":23,"target":187},{"source":184,"target":31},{"source":184,"target":188},{"source":184,"target":23},{"source":188,"target":31},{"source":185,"target":27},{"source":185,"target":189},{"source":185,"target":23},{"source":189,"target":27},{"source":186,"target":24},{"source":186,"target":190},{"source":186,"target":23},{"source":190,"target":24},{"source":187,"target":27},{"source":187,"target":191},{"source":187,"target":23},{"source":191,"target":27},{"source":24,"target":0},{"source":24,"target":192},{"source":24,"target":193},{"source":24,"target":194},{"source":192,"target":195},{"source":192,"target":24},{"source":193,"target":23},{"source":193,"target":196},{"source":193,"target":24},{"source":196,"target":23},{"source":194,"target":25},{"source":194,"target":197},{"source":194,"target":24},{"source":197,"target":25},{"source":25,"target":0},{"source":25,"target":198},{"source":25,"target":199},{"source":198,"target":54},{"source":198,"target":200},{"source":198,"target":25},{"source":200,"target":54},{"source":199,"target":26},{"source":199,"target":201},{"source":199,"target":25},{"source":201,"target":26},{"source":26,"target":0},{"source":26,"target":202},{"source":26,"target":203},{"source":202,"target":33},{"source":202,"target":204},{"source":202,"target":26},{"source":204,"target":33},{"source":203,"target":36},{"source":203,"target":205},{"source":203,"target":26},{"source":205,"target":36},{"source":27,"target":0},{"source":27,"target":206},{"source":27,"target":207},{"source":27,"target":208},{"source":206,"target":209},{"source":206,"target":27},{"source":207,"target":210},{"source":207,"target":27},{"source":208,"target":28},{"source":208,"target":211},{"source":208,"target":27},{"source":211,"target":28},{"source":28,"target":0},{"source":28,"target":212},{"source":28,"target":213},{"source":212,"target":214},{"source":212,"target":28},{"source":213,"target":29},{"source":213,"target":215},{"source":213,"target":28},{"source":215,"target":29},{"source":29,"target":0},{"source":29,"target":216},{"source":216,"target":30},{"source":216,"target":217},{"source":216,"target":29},{"source":217,"target":30},{"source":30,"target":0},{"source":30,"target":218},{"source":30,"target":219},{"source":30,"target":220},{"source":30,"target":221},{"source":218,"target":222},{"source":218,"target":30},{"source":219,"target":223},{"source":219,"target":30},{"source":220,"target":224},{"source":220,"target":30},{"source":221,"target":56},{"source":221,"target":225},{"source":221,"target":30},{"source":225,"target":56},{"source":31,"target":0},{"source":31,"target":226},{"source":31,"target":227},{"source":31,"target":228},{"source":226,"target":229},{"source":226,"target":31},{"source":227,"target":230},{"source":227,"target":31},{"source":228,"target":32},{"source":228,"target":231},{"source":228,"target":31},{"source":231,"target":32},{"source":32,"target":0},{"source":32,"target":232},{"source":232,"target":21},{"source":232,"target":233},{"source":232,"target":32},{"source":233,"target":21},{"source":33,"target":0},{"source":33,"target":234},{"source":33,"target":235},{"source":234,"target":34},{"source":234,"target":236},{"source":234,"target":33},{"source":236,"target":34},{"source":235,"target":237},{"source":235,"target":33},{"source":34,"target":0},{"source":34,"target":238},{"source":238,"target":35},{"source":238,"target":239},{"source":238,"target":34},{"source":239,"target":35},{"source":35,"target":0},{"source":35,"target":240},{"source":35,"target":241},{"source":35,"target":242},{"source":240,"target":6},{"source":240,"target":243},{"source":240,"target":35},{"source":243,"target":6},{"source":241,"target":23},{"source":241,"target":244},{"source":241,"target":35},{"source":244,"target":23},{"source":242,"target":39},{"source":242,"target":245},{"source":242,"target":35},{"source":245,"target":39},{"source":36,"target":0},{"source":36,"target":246},{"source":246,"target":37},{"source":246,"target":247},{"source":246,"target":36},{"source":247,"target":37},{"source":37,"target":0},{"source":37,"target":248},{"source":248,"target":249},{"source":248,"target":37},{"source":38,"target":0},{"source":38,"target":250},{"source":38,"target":251},{"source":250,"target":16},{"source":250,"target":252},{"source":250,"target":38},{"source":252,"target":16},{"source":251,"target":39},{"source":251,"target":253},{"source":251,"target":38},{"source":253,"target":39},{"source":39,"target":0},{"source":39,"target":254},{"source":39,"target":255},{"source":39,"target":256},{"source":254,"target":31},{"source":254,"target":257},{"source":254,"target":39},{"source":257,"target":31},{"source":255,"target":40},{"source":255,"target":258},{"source":255,"target":39},{"source":258,"target":40},{"source":256,"target":27},{"source":256,"target":259},{"source":256,"target":39},{"source":259,"target":27},{"source":40,"target":0},{"source":40,"target":260},{"source":40,"target":261},{"source":40,"target":262},{"source":260,"target":39},{"source":260,"target":263},{"source":260,"target":40},{"source":263,"target":39},{"source":261,"target":27},{"source":261,"target":264},{"source":261,"target":40},{"source":264,"target":27},{"source":262,"target":41},{"source":262,"target":265},{"source":262,"target":40},{"source":265,"target":41},{"source":41,"target":0},{"source":41,"target":266},{"source":41,"target":267},{"source":41,"target":268},{"source":41,"target":269},{"source":41,"target":270},{"source":266,"target":32},{"source":266,"target":271},{"source":266,"target":41},{"source":271,"target":32},{"source":267,"target":54},{"source":267,"target":272},{"source":267,"target":41},{"source":272,"target":54},{"source":268,"target":32},{"source":268,"target":273},{"source":268,"target":41},{"source":273,"target":32},{"source":269,"target":33},{"source":269,"target":274},{"source":269,"target":41},{"source":274,"target":33},{"source":270,"target":27},{"source":270,"target":275},{"source":270,"target":41},{"source":275,"target":27},{"source":42,"target":0},{"source":42,"target":276},{"source":42,"target":277},{"source":42,"target":278},{"source":276,"target":54},{"source":276,"target":279},{"source":276,"target":42},{"source":279,"target":54},{"source":277,"target":43},{"source":277,"target":280},{"source":277,"target":42},{"source":280,"target":43},{"source":278,"target":281},{"source":278,"target":42},{"source":43,"target":0},{"source":43,"target":282},{"source":282,"target":44},{"source":282,"target":283},{"source":282,"target":43},{"source":283,"target":44},{"source":44,"target":0},{"source":44,"target":284},{"source":44,"target":285},{"source":284,"target":51},{"source":284,"target":286},{"source":284,"target":44},{"source":286,"target":51},{"source":285,"target":42},{"source":285,"target":287},{"source":285,"target":44},{"source":287,"target":42},{"source":45,"target":0},{"source":45,"target":288},{"source":45,"target":289},{"source":288,"target":4},{"source":288,"target":290},{"source":288,"target":45},{"source":290,"target":4},{"source":289,"target":46},{"source":289,"target":291},{"source":289,"target":45},{"source":291,"target":46},{"source":46,"target":0},{"source":46,"target":292},{"source":292,"target":46},{"source":292,"target":293},{"source":292,"target":46},{"source":293,"target":46},{"source":47,"target":0},{"source":47,"target":294},{"source":47,"target":295},{"source":294,"target":48},{"source":294,"target":296},{"source":294,"target":47},{"source":296,"target":48},{"source":295,"target":54},{"source":295,"target":297},{"source":295,"target":47},{"source":297,"target":54},{"source":48,"target":0},{"source":48,"target":298},{"source":298,"target":299},{"source":298,"target":48},{"source":49,"target":0},{"source":49,"target":300},{"source":300,"target":50},{"source":300,"target":301},{"source":300,"target":49},{"source":301,"target":50},{"source":50,"target":0},{"source":50,"target":302},{"source":302,"target":47},{"source":302,"target":303},{"source":302,"target":50},{"source":303,"target":47},{"source":51,"target":0},{"source":51,"target":304},{"source":304,"target":52},{"source":304,"target":305},{"source":304,"target":51},{"source":305,"target":52},{"source":52,"target":0},{"source":52,"target":306},{"source":306,"target":53},{"source":306,"target":307},{"source":306,"target":52},{"source":307,"target":53},{"source":53,"target":0},{"source":53,"target":308},{"source":53,"target":309},{"source":53,"target":310},{"source":308,"target":54},{"source":308,"target":311},{"source":308,"target":53},{"source":311,"target":54},{"source":309,"target":54},{"source":309,"target":312},{"source":309,"target":53},{"source":312,"target":54},{"source":310,"target":313},{"source":310,"target":53},{"source":54,"target":0},{"source":54,"target":314},{"source":54,"target":315},{"source":54,"target":316},{"source":314,"target":54},{"source":314,"target":317},{"source":314,"target":54},{"source":317,"target":54},{"source":315,"target":54},{"source":315,"target":318},{"source":315,"target":54},{"source":318,"target":54},{"source":55,"target":0},{"source":55,"target":319},{"source":56,"target":0},{"source":56,"target":320},{"source":57,"target":0},{"source":57,"target":321},{"source":57,"target":322},{"source":321,"target":1},{"source":321,"target":323},{"source":321,"target":57},{"source":323,"target":1},{"source":58,"target":0},{"source":58,"target":12},{"source":58,"target":324},{"source":58,"target":325},{"source":58,"target":326},{"source":58,"target":327},{"source":324,"target":13},{"source":324,"target":328},{"source":324,"target":58},{"source":328,"target":13},{"source":325,"target":329},{"source":325,"target":58},{"source":326,"target":14},{"source":326,"target":330},{"source":326,"target":58},{"source":330,"target":14},{"source":327,"target":12},{"source":59,"target":0},{"source":59,"target":12},{"source":59,"target":331},{"source":59,"target":332},{"source":331,"target":19},{"source":331,"target":333},{"source":331,"target":59},{"source":333,"target":19},{"source":332,"target":12},{"source":60,"target":0},{"source":60,"target":46},{"source":60,"target":334},{"source":60,"target":335},{"source":60,"target":336},{"source":60,"target":337},{"source":60,"target":338},{"source":60,"target":339},{"source":60,"target":340},{"source":334,"target":341},{"source":334,"target":60},{"source":335,"target":46},{"source":335,"target":342},{"source":335,"target":60},{"source":342,"target":46},{"source":336,"target":343},{"source":336,"target":60},{"source":337,"target":54},{"source":337,"target":344},{"source":337,"target":60},{"source":344,"target":54},{"source":338,"target":345},{"source":338,"target":60},{"source":339,"target":54},{"source":339,"target":346},{"source":339,"target":60},{"source":346,"target":54},{"source":340,"target":46},{"source":61,"target":0},{"source":61,"target":46},{"source":61,"target":347},{"source":61,"target":348},{"source":347,"target":46},{"source":347,"target":349},{"source":347,"target":61},{"source":349,"target":46},{"source":348,"target":46},{"source":62,"target":0},{"source":62,"target":46},{"source":62,"target":350},{"source":62,"target":351},{"source":350,"target":45},{"source":350,"target":352},{"source":350,"target":62},{"source":352,"target":45},{"source":351,"target":46},{"source":63,"target":0},{"source":63,"target":46},{"source":63,"target":353},{"source":63,"target":354},{"source":353,"target":54},{"source":353,"target":355},{"source":353,"target":63},{"source":355,"target":54},{"source":354,"target":46},{"source":64,"target":0},{"source":64,"target":46},{"source":64,"target":356},{"source":64,"target":357},{"source":64,"target":358},{"source":64,"target":359},{"source":64,"target":360},{"source":64,"target":361},{"source":64,"target":362},{"source":64,"target":363},{"source":356,"target":364},{"source":356,"target":64},{"source":357,"target":54},{"source":357,"target":365},{"source":357,"target":64},{"source":365,"target":54},{"source":358,"target":46},{"source":358,"target":366},{"source":358,"target":64},{"source":366,"target":46},{"source":359,"target":367},{"source":359,"target":64},{"source":360,"target":46},{"source":360,"target":368},{"source":360,"target":64},{"source":368,"target":46},{"source":361,"target":369},{"source":361,"target":64},{"source":362,"target":46},{"source":362,"target":370},{"source":362,"target":64},{"source":370,"target":46},{"source":363,"target":46},{"source":65,"target":0},{"source":65,"target":46},{"source":65,"target":371},{"source":65,"target":372},{"source":65,"target":373},{"source":65,"target":374},{"source":65,"target":375},{"source":65,"target":376},{"source":65,"target":377},{"source":65,"target":378},{"source":65,"target":379},{"source":65,"target":380},{"source":371,"target":381},{"source":371,"target":65},{"source":372,"target":54},{"source":372,"target":382},{"source":372,"target":65},{"source":382,"target":54},{"source":373,"target":46},{"source":373,"target":383},{"source":373,"target":65},{"source":383,"target":46},{"source":374,"target":384},{"source":374,"target":65},{"source":375,"target":385},{"source":375,"target":65},{"source":376,"target":386},{"source":376,"target":65},{"source":377,"target":54},{"source":377,"target":387},{"source":377,"target":65},{"source":387,"target":54},{"source":378,"target":54},{"source":378,"target":388},{"source":378,"target":65},{"source":388,"target":54},{"source":379,"target":4},{"source":379,"target":389},{"source":379,"target":65},{"source":389,"target":4},{"source":380,"target":46},{"source":66,"target":0},{"source":66,"target":46},{"source":66,"target":390},{"source":66,"target":391},{"source":66,"target":392},{"source":66,"target":393},{"source":66,"target":394},{"source":66,"target":395},{"source":390,"target":396},{"source":390,"target":66},{"source":391,"target":397},{"source":391,"target":66},{"source":392,"target":398},{"source":392,"target":66},{"source":393,"target":54},{"source":393,"target":399},{"source":393,"target":66},{"source":399,"target":54},{"source":394,"target":400},{"source":394,"target":66},{"source":395,"target":46},{"source":67,"target":0},{"source":67,"target":46},{"source":67,"target":401},{"source":67,"target":402},{"source":67,"target":403},{"source":67,"target":404},{"source":67,"target":405},{"source":67,"target":406},{"source":67,"target":407},{"source":401,"target":408},{"source":401,"target":67},{"source":402,"target":409},{"source":402,"target":67},{"source":403,"target":47},{"source":403,"target":410},{"source":403,"target":67},{"source":410,"target":47},{"source":404,"target":49},{"source":404,"target":411},{"source":404,"target":67},{"source":411,"target":49},{"source":405,"target":412},{"source":405,"target":67},{"source":406,"target":413},{"source":406,"target":67},{"source":407,"target":46},{"source":68,"target":0},{"source":68,"target":54},{"source":68,"target":414},{"source":68,"target":415},{"source":68,"target":416},{"source":68,"target":417},{"source":414,"target":54},{"source":414,"target":418},{"source":414,"target":68},{"source":418,"target":54},{"source":415,"target":419},{"source":415,"target":68},{"source":416,"target":54},{"source":416,"target":420},{"source":416,"target":68},{"source":420,"target":54},{"source":417,"target":54},{"source":69,"target":0},{"source":69,"target":54},{"source":69,"target":421},{"source":69,"target":422},{"source":69,"target":423},{"source":421,"target":54},{"source":421,"target":424},{"source":421,"target":69},{"source":424,"target":54},{"source":422,"target":54},{"source":422,"target":425},{"source":422,"target":69},{"source":425,"target":54},{"source":423,"target":54},{"source":70,"target":0},{"source":70,"target":54},{"source":70,"target":426},{"source":426,"target":54},{"source":71,"target":0},{"source":71,"target":54},{"source":71,"target":427},{"source":427,"target":54},{"source":72,"target":0},{"source":72,"target":54},{"source":72,"target":428},{"source":428,"target":54},{"source":73,"target":0},{"source":73,"target":54},{"source":73,"target":429},{"source":429,"target":54},{"source":74,"target":0},{"source":74,"target":54},{"source":74,"target":430},{"source":430,"target":54},{"source":75,"target":0},{"source":75,"target":54},{"source":75,"target":431},{"source":75,"target":432},{"source":431,"target":433},{"source":431,"target":75},{"source":432,"target":54},{"source":76,"target":0},{"source":76,"target":54},{"source":76,"target":434},{"source":76,"target":435},{"source":434,"target":436},{"source":434,"target":76},{"source":435,"target":54},{"source":77,"target":0},{"source":77,"target":54},{"source":77,"target":437},{"source":77,"target":438},{"source":437,"target":439},{"source":437,"target":77},{"source":438,"target":54},{"source":78,"target":0},{"source":78,"target":54},{"source":78,"target":440},{"source":78,"target":441},{"source":440,"target":442},{"source":440,"target":78},{"source":441,"target":54},{"source":79,"target":0},{"source":79,"target":54},{"source":79,"target":443},{"source":79,"target":444},{"source":443,"target":445},{"source":443,"target":79},{"source":444,"target":54},{"source":80,"target":0},{"source":80,"target":54},{"source":80,"target":446},{"source":80,"target":447},{"source":80,"target":448},{"source":80,"target":449},{"source":446,"target":38},{"source":446,"target":450},{"source":446,"target":80},{"source":450,"target":38},{"source":447,"target":54},{"source":447,"target":451},{"source":447,"target":80},{"source":451,"target":54},{"source":448,"target":452},{"source":448,"target":80},{"source":449,"target":54},{"source":81,"target":0},{"source":81,"target":54},{"source":81,"target":453},{"source":81,"target":454},{"source":81,"target":455},{"source":81,"target":456},{"source":81,"target":457},{"source":81,"target":458},{"source":81,"target":459},{"source":81,"target":460},{"source":81,"target":461},{"source":81,"target":462},{"source":453,"target":463},{"source":453,"target":81},{"source":454,"target":54},{"source":454,"target":464},{"source":454,"target":81},{"source":464,"target":54},{"source":455,"target":465},{"source":455,"target":81},{"source":456,"target":466},{"source":456,"target":81},{"source":457,"target":467},{"source":457,"target":81},{"source":458,"target":38},{"source":458,"target":468},{"source":458,"target":81},{"source":468,"target":38},{"source":459,"target":469},{"source":459,"target":81},{"source":460,"target":470},{"source":460,"target":81},{"source":461,"target":471},{"source":461,"target":81},{"source":462,"target":54},{"source":82,"target":0},{"source":82,"target":54},{"source":82,"target":472},{"source":82,"target":473},{"source":82,"target":474},{"source":82,"target":475},{"source":82,"target":476},{"source":82,"target":477},{"source":82,"target":478},{"source":472,"target":479},{"source":472,"target":82},{"source":473,"target":38},{"source":473,"target":480},{"source":473,"target":82},{"source":480,"target":38},{"source":474,"target":43},{"source":474,"target":481},{"source":474,"target":82},{"source":481,"target":43},{"source":475,"target":482},{"source":475,"target":82},{"source":476,"target":54},{"source":476,"target":483},{"source":476,"target":82},{"source":483,"target":54},{"source":477,"target":55},{"source":477,"target":484},{"source":477,"target":82},{"source":484,"target":55},{"source":478,"target":54},{"source":83,"target":0},{"source":83,"target":55},{"source":83,"target":485},{"source":83,"target":486},{"source":485,"target":54},{"source":485,"target":487},{"source":485,"target":83},{"source":487,"target":54},{"source":486,"target":55},{"source":84,"target":0},{"source":84,"target":55},{"source":84,"target":488},{"source":84,"target":489},{"source":488,"target":56},{"source":488,"target":490},{"source":488,"target":84},{"source":490,"target":56},{"source":489,"target":55},{"source":85,"target":0},{"source":85,"target":55},{"source":85,"target":491},{"source":85,"target":492},{"source":491,"target":493},{"source":491,"target":85},{"source":492,"target":55},{"source":86,"target":0},{"source":86,"target":55},{"source":86,"target":494},{"source":86,"target":495},{"source":494,"target":496},{"source":494,"target":86},{"source":495,"target":55},{"source":87,"target":0},{"source":87,"target":55},{"source":87,"target":497},{"source":497,"target":55},{"source":88,"target":0},{"source":88,"target":55},{"source":88,"target":498},{"source":498,"target":55},{"source":89,"target":0},{"source":89,"target":54},{"source":89,"target":499},{"source":89,"target":500},{"source":89,"target":501},{"source":89,"target":502},{"source":89,"target":503},{"source":89,"target":504},{"source":89,"target":505},{"source":89,"target":506},{"source":89,"target":507},{"source":89,"target":508},{"source":89,"target":509},{"source":89,"target":510},{"source":499,"target":511},{"source":499,"target":89},{"source":500,"target":512},{"source":500,"target":89},{"source":501,"target":513},{"source":501,"target":89},{"source":502,"target":514},{"source":502,"target":89},{"source":503,"target":54},{"source":503,"target":515},{"source":503,"target":89},{"source":515,"target":54},{"source":504,"target":516},{"source":504,"target":89},{"source":505,"target":46},{"source":505,"target":517},{"source":505,"target":89},{"source":517,"target":46},{"source":506,"target":518},{"source":506,"target":89},{"source":507,"target":38},{"source":507,"target":519},{"source":507,"target":89},{"source":519,"target":38},{"source":508,"target":520},{"source":508,"target":89},{"source":509,"target":38},{"source":509,"target":521},{"source":509,"target":89},{"source":521,"target":38},{"source":510,"target":54},{"source":90,"target":0},{"source":90,"target":54},{"source":90,"target":522},{"source":90,"target":523},{"source":90,"target":524},{"source":522,"target":525},{"source":522,"target":90},{"source":523,"target":54},{"source":523,"target":526},{"source":523,"target":90},{"source":526,"target":54},{"source":524,"target":54},{"source":91,"target":0},{"source":91,"target":527},{"source":91,"target":528},{"source":527,"target":529},{"source":527,"target":91},{"source":528,"target":530},{"source":528,"target":91}],"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="root" nsURI="root" nsPrefix="root"> <eSubpackages name="container" nsURI="container" nsPrefix="container"> <eClassifiers xsi:type="ecore:EClass" name="border_node_1"/> <eClassifiers xsi:type="ecore:EClass" name="border_node_2"/> <eClassifiers xsi:type="ecore:EClass" name="border_node_3"/> </eSubpackages> </ecore:EPackage>
github:ecore:/data/eclipse-sirius/sirius-specs/specs/archived/440296_Required_side_for_border_nodes/sample/border_node.ecore
ecore
root container border_node_1 border_node_2 border_node_3
null
{"directed":true,"nodes":[{"nsPrefix":"root","nsURI":"root","name":"root","id":0,"eClass":"EPackage"},{"nsPrefix":"container","nsURI":"container","name":"container","id":1,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"border_node_1","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"border_node_2","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"border_node_3","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"}],"links":[{"source":0,"target":1},{"source":1,"target":2},{"source":1,"target":3},{"source":1,"target":4},{"source":1,"target":0},{"source":2,"target":1},{"source":3,"target":1},{"source":4,"target":1}],"multigraph":true}
false
<?xml version="1.0" encoding="ISO-8859-1"?> <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="JTwitter" nsURI="http://modelum.es/atlandmod" nsPrefix="modelum"> <eClassifiers xsi:type="ecore:EClass" name="UnknownElement"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="type"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Base64Encoder" eSuperTypes="//Object"> <eAnnotations source="ExtendedMetaData" references="//Base64Encoder"> <details key="canonicalName" value="lgpl.haustein.Base64Encoder"/> <details key="isMainType" value="true"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CDL" eSuperTypes="//Object"> <eAnnotations source="ExtendedMetaData" references="//CDL"> <details key="canonicalName" value="org.json.CDL"/> <details key="isMainType" value="true"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="JSONArray" eSuperTypes="//Object"> <eAnnotations source="ExtendedMetaData" references="//JSONArray"> <details key="canonicalName" value="org.json.JSONArray"/> <details key="isMainType" value="true"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="JSONTokener" eSuperTypes="//Object"> <eAnnotations source="ExtendedMetaData" references="//JSONTokener"> <details key="canonicalName" value="org.json.JSONTokener"/> <details key="isMainType" value="true"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="JSONException" eSuperTypes="//Exception"> <eAnnotations source="ExtendedMetaData" references="//JSONException"> <details key="canonicalName" value="org.json.JSONException"/> <details key="isMainType" value="true"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="cause" eType="//Throwable"/> <eStructuralFeatures xsi:type="ecore:EReference" name="cause" eType="//Throwable"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="JSONObject" eSuperTypes="//Object"> <eAnnotations source="ExtendedMetaData" references="//JSONObject"> <details key="canonicalName" value="org.json.JSONObject"/> <details key="isMainType" value="true"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Cookie" eSuperTypes="//Object"> <eAnnotations source="ExtendedMetaData" references="//Cookie"> <details key="canonicalName" value="org.json.Cookie"/> <details key="isMainType" value="true"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CookieList" eSuperTypes="//Object"> <eAnnotations source="ExtendedMetaData" references="//CookieList"> <details key="canonicalName" value="org.json.CookieList"/> <details key="isMainType" value="true"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="HTTP" eSuperTypes="//Object"> <eAnnotations source="ExtendedMetaData" references="//HTTP"> <details key="canonicalName" value="org.json.HTTP"/> <details key="isMainType" value="true"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="HTTPTokener" eSuperTypes="//JSONTokener"> <eAnnotations source="ExtendedMetaData" references="//HTTPTokener"> <details key="canonicalName" value="org.json.HTTPTokener"/> <details key="isMainType" value="true"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="JSONString" abstract="true"> <eAnnotations source="ExtendedMetaData" references="//JSONString"> <details key="canonicalName" value="org.json.JSONString"/> <details key="isMainType" value="true"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="JSONStringer" eSuperTypes="//JSONWriter"> <eAnnotations source="ExtendedMetaData" references="//JSONStringer"> <details key="canonicalName" value="org.json.JSONStringer"/> <details key="isMainType" value="true"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="JSONWriter" eSuperTypes="//Object"> <eAnnotations source="ExtendedMetaData" references="//JSONWriter"> <details key="canonicalName" value="org.json.JSONWriter"/> <details key="isMainType" value="true"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Test" eSuperTypes="//Object"> <eAnnotations source="ExtendedMetaData" references="//Test"> <details key="canonicalName" value="org.json.Test"/> <details key="isMainType" value="true"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="XML" eSuperTypes="//Object"> <eAnnotations source="ExtendedMetaData" references="//XML"> <details key="canonicalName" value="org.json.XML"/> <details key="isMainType" value="true"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="XMLTokener" eSuperTypes="//JSONTokener"> <eAnnotations source="ExtendedMetaData" references="//XMLTokener"> <details key="canonicalName" value="org.json.XMLTokener"/> <details key="isMainType" value="true"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="OAuthScribeClient" eSuperTypes="//Object //Twitter.IHttpClient"> <eAnnotations source="ExtendedMetaData" references="//OAuthScribeClient"> <details key="canonicalName" value="winterwell.jtwitter.OAuthScribeClient"/> <details key="isMainType" value="true"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Twitter.IHttpClient" abstract="true"> <eAnnotations source="ExtendedMetaData" references="//Twitter.IHttpClient"> <details key="canonicalName" value="winterwell.jtwitter.Twitter.IHttpClient"/> <details key="isMainType" value="true"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="TwitterException" eSuperTypes="//RuntimeException"> <eAnnotations source="ExtendedMetaData" references="//TwitterException"> <details key="canonicalName" value="winterwell.jtwitter.TwitterException"/> <details key="isMainType" value="true"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="additionalInfo"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="additionalInfo"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Twitter" eSuperTypes="//Object"> <eAnnotations source="ExtendedMetaData" references="//Twitter"> <details key="canonicalName" value="winterwell.jtwitter.Twitter"/> <details key="isMainType" value="true"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="maxResults"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//EInt"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="untilDate" eType="//Date"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="screenName"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="friends" upperBound="-1" eType="//Twitter.User"/> <eStructuralFeatures xsi:type="ecore:EReference" name="directMessagesSent" upperBound="-1" eType="//Twitter.Message"/> <eStructuralFeatures xsi:type="ecore:EReference" name="publicTimeline" upperBound="-1" eType="//Twitter.Status"/> <eStructuralFeatures xsi:type="ecore:EReference" name="lists" upperBound="-1" eType="//TwitterList"/> <eStructuralFeatures xsi:type="ecore:EReference" name="httpClient" eType="//Twitter.IHttpClient"/> <eStructuralFeatures xsi:type="ecore:EReference" name="friendsTimeline" upperBound="-1" eType="//Twitter.Status"/> <eStructuralFeatures xsi:type="ecore:EReference" name="untilDate" eType="//Date"/> <eStructuralFeatures xsi:type="ecore:EReference" name="directMessages" upperBound="-1" eType="//Twitter.Message"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="followerIDs" upperBound="-1"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//ELong"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="retweetsOfMe" upperBound="-1" eType="//Twitter.Status"/> <eStructuralFeatures xsi:type="ecore:EReference" name="status" eType="//Twitter.Status"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="trends" upperBound="-1"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="retweetsByMe" upperBound="-1" eType="//Twitter.Status"/> <eStructuralFeatures xsi:type="ecore:EReference" name="userTimeline" upperBound="-1" eType="//Twitter.Status"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="rateLimitStatus"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//EInt"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="followers" upperBound="-1" eType="//Twitter.User"/> <eStructuralFeatures xsi:type="ecore:EReference" name="homeTimeline" upperBound="-1" eType="//Twitter.Status"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="friendIDs" upperBound="-1"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//ELong"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="maxResults"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//EInt"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="favorites" upperBound="-1" eType="//Twitter.Status"/> <eStructuralFeatures xsi:type="ecore:EReference" name="featured" upperBound="-1" eType="//Twitter.User"/> <eStructuralFeatures xsi:type="ecore:EReference" name="replies" upperBound="-1" eType="//Twitter.Status"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Twitter.User" eSuperTypes="//Object"> <eAnnotations source="ExtendedMetaData" references="//Twitter.User"> <details key="canonicalName" value="winterwell.jtwitter.Twitter.User"/> <details key="isMainType" value="true"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="profileImageUrl" eType="//URI"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="followersCount"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//EInt"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="protectedUser"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="createdAt" eType="//Date"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="screenName"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="followersCount"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//EInt"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="profileBackgroundImageUrl" eType="//URI"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="favoritesCount"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//EInt"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="profileSidebarBorderColor"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="profileLinkColor"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="profileTextColor"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="timezone"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="profileImageUrl" eType="//URI"/> <eStructuralFeatures xsi:type="ecore:EReference" name="status" eType="//Twitter.Status"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="statusesCount"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//EInt"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="location"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="website" eType="//URI"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="description"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="friendsCount"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//EInt"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="id"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//ELong"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="timezoneOffSet"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//EInt"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="profileBackgroundColor"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="profileSidebarFillColor"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Twitter.Status" eSuperTypes="//Object //Twitter.ITweet"> <eAnnotations source="ExtendedMetaData" references="//Twitter.Status"> <details key="canonicalName" value="winterwell.jtwitter.Twitter.Status"/> <details key="isMainType" value="true"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="original" eType="//Twitter.Status"/> <eStructuralFeatures xsi:type="ecore:EReference" name="user" eType="//Twitter.User"/> <eStructuralFeatures xsi:type="ecore:EReference" name="original" eType="//Twitter.Status"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="id"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//ELong"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="text"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="createdAt" eType="//Date"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="mentions" upperBound="-1"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Twitter.ITweet" abstract="true"> <eAnnotations source="ExtendedMetaData" references="//Twitter.ITweet"> <details key="canonicalName" value="winterwell.jtwitter.Twitter.ITweet"/> <details key="isMainType" value="true"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="text"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="user" eType="//Twitter.User"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="id"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//ELong"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="createdAt" eType="//Date"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Twitter.ICallback" abstract="true"> <eAnnotations source="ExtendedMetaData" references="//Twitter.ICallback"> <details key="canonicalName" value="winterwell.jtwitter.Twitter.ICallback"/> <details key="isMainType" value="true"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Twitter.Message" eSuperTypes="//Object //Twitter.ITweet"> <eAnnotations source="ExtendedMetaData" references="//Twitter.Message"> <details key="canonicalName" value="winterwell.jtwitter.Twitter.Message"/> <details key="isMainType" value="true"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="inReplyToMessageId"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//ELong"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="text"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="createdAt" eType="//Date"/> <eStructuralFeatures xsi:type="ecore:EReference" name="recipient" eType="//Twitter.User"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="id"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//ELong"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="user" eType="//Twitter.User"/> <eStructuralFeatures xsi:type="ecore:EReference" name="sender" eType="//Twitter.User"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="TwitterList" eSuperTypes="//AbstractList"> <eAnnotations source="ExtendedMetaData" references="//TwitterList"> <details key="canonicalName" value="winterwell.jtwitter.TwitterList"/> <details key="isMainType" value="true"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="subscriberCount"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//EInt"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="description"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="subscriberCount"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//EInt"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="description"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="subscribers" upperBound="-1" eType="//Twitter.User"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="statuses" upperBound="-1" eType="//Twitter.Status"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="OAuthSignpostClient" eSuperTypes="//URLConnectionHttpClient //Twitter.IHttpClient"> <eAnnotations source="ExtendedMetaData" references="//OAuthSignpostClient"> <details key="canonicalName" value="winterwell.jtwitter.OAuthSignpostClient"/> <details key="isMainType" value="true"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="accessToken" upperBound="-1"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="OAuthConsumer" abstract="true" eSuperTypes="//Serializable"> <eAnnotations source="ExtendedMetaData" references="//OAuthConsumer"> <details key="canonicalName" value="oauth.signpost.OAuthConsumer"/> <details key="isMainType" value="true"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="token"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="tokenSecret"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="requestParameters" eType="//HttpParameters"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="consumerKey"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="consumerSecret"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="OAuthMessageSignerException" eSuperTypes="//OAuthException"> <eAnnotations source="ExtendedMetaData" references="//OAuthMessageSignerException"> <details key="canonicalName" value="oauth.signpost.exception.OAuthMessageSignerException"/> <details key="isMainType" value="true"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="OAuthException" abstract="true" eSuperTypes="//Exception"> <eAnnotations source="ExtendedMetaData" references="//OAuthException"> <details key="canonicalName" value="oauth.signpost.exception.OAuthException"/> <details key="isMainType" value="true"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="OAuthExpectationFailedException" eSuperTypes="//OAuthException"> <eAnnotations source="ExtendedMetaData" references="//OAuthExpectationFailedException"> <details key="canonicalName" value="oauth.signpost.exception.OAuthExpectationFailedException"/> <details key="isMainType" value="true"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="OAuthCommunicationException" eSuperTypes="//OAuthException"> <eAnnotations source="ExtendedMetaData" references="//OAuthCommunicationException"> <details key="canonicalName" value="oauth.signpost.exception.OAuthCommunicationException"/> <details key="isMainType" value="true"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="responseBody"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="responseBody"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="HttpRequest" abstract="true"> <eAnnotations source="ExtendedMetaData" references="//HttpRequest"> <details key="canonicalName" value="oauth.signpost.http.HttpRequest"/> <details key="isMainType" value="true"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="method"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="contentType"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="messagePayload" eType="//InputStream"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="allHeaders"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="requestUrl"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="OAuthMessageSigner" abstract="true" eSuperTypes="//Object //Serializable"> <eAnnotations source="ExtendedMetaData" references="//OAuthMessageSigner"> <details key="canonicalName" value="oauth.signpost.signature.OAuthMessageSigner"/> <details key="isMainType" value="true"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="consumerSecret"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="tokenSecret"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="consumerSecret"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="tokenSecret"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="signatureMethod"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Base64" eSuperTypes="//Object //BinaryDecoder //BinaryEncoder"> <eAnnotations source="ExtendedMetaData" references="//Base64"> <details key="canonicalName" value="org.apache.commons.codec.binary.Base64"/> <details key="isMainType" value="true"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="DecoderException" eSuperTypes="//Exception"> <eAnnotations source="ExtendedMetaData" references="//DecoderException"> <details key="canonicalName" value="org.apache.commons.codec.DecoderException"/> <details key="isMainType" value="true"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="EncoderException" eSuperTypes="//Exception"> <eAnnotations source="ExtendedMetaData" references="//EncoderException"> <details key="canonicalName" value="org.apache.commons.codec.EncoderException"/> <details key="isMainType" value="true"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="BinaryEncoder" abstract="true" eSuperTypes="//Encoder"> <eAnnotations source="ExtendedMetaData" references="//BinaryEncoder"> <details key="canonicalName" value="org.apache.commons.codec.BinaryEncoder"/> <details key="isMainType" value="true"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Encoder" abstract="true"> <eAnnotations source="ExtendedMetaData" references="//Encoder"> <details key="canonicalName" value="org.apache.commons.codec.Encoder"/> <details key="isMainType" value="true"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="BinaryDecoder" abstract="true" eSuperTypes="//Decoder"> <eAnnotations source="ExtendedMetaData" references="//BinaryDecoder"> <details key="canonicalName" value="org.apache.commons.codec.BinaryDecoder"/> <details key="isMainType" value="true"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Decoder" abstract="true"> <eAnnotations source="ExtendedMetaData" references="//Decoder"> <details key="canonicalName" value="org.apache.commons.codec.Decoder"/> <details key="isMainType" value="true"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="HttpParameters" eSuperTypes="//Object //Serializable //Map"> <eAnnotations source="ExtendedMetaData" references="//HttpParameters"> <details key="canonicalName" value="oauth.signpost.http.HttpParameters"/> <details key="isMainType" value="true"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="SigningStrategy" abstract="true" eSuperTypes="//Serializable"> <eAnnotations source="ExtendedMetaData" references="//SigningStrategy"> <details key="canonicalName" value="oauth.signpost.signature.SigningStrategy"/> <details key="isMainType" value="true"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="DefaultOAuthProvider" eSuperTypes="//AbstractOAuthProvider"> <eAnnotations source="ExtendedMetaData" references="//DefaultOAuthProvider"> <details key="canonicalName" value="oauth.signpost.basic.DefaultOAuthProvider"/> <details key="isMainType" value="true"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="HttpResponse" abstract="true"> <eAnnotations source="ExtendedMetaData" references="//HttpResponse"> <details key="canonicalName" value="oauth.signpost.http.HttpResponse"/> <details key="isMainType" value="true"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="content" eType="//InputStream"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="statusCode"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//EInt"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="reasonPhrase"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="OAuthNotAuthorizedException" eSuperTypes="//OAuthException"> <eAnnotations source="ExtendedMetaData" references="//OAuthNotAuthorizedException"> <details key="canonicalName" value="oauth.signpost.exception.OAuthNotAuthorizedException"/> <details key="isMainType" value="true"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="responseBody"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="responseBody"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="OAuthProviderListener" abstract="true"> <eAnnotations source="ExtendedMetaData" references="//OAuthProviderListener"> <details key="canonicalName" value="oauth.signpost.OAuthProviderListener"/> <details key="isMainType" value="true"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="AbstractOAuthProvider" abstract="true" eSuperTypes="//Object //OAuthProvider"> <eAnnotations source="ExtendedMetaData" references="//AbstractOAuthProvider"> <details key="canonicalName" value="oauth.signpost.AbstractOAuthProvider"/> <details key="isMainType" value="true"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="requestTokenEndpointUrl"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="accessTokenEndpointUrl"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="authorizationWebsiteUrl"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="responseParameters" eType="//HttpParameters"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="authorizationWebsiteUrl"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="requestTokenEndpointUrl"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="responseParameters" eType="//HttpParameters"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="accessTokenEndpointUrl"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="requestHeaders"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="OAuthProvider" abstract="true" eSuperTypes="//Serializable"> <eAnnotations source="ExtendedMetaData" references="//OAuthProvider"> <details key="canonicalName" value="oauth.signpost.OAuthProvider"/> <details key="isMainType" value="true"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="requestTokenEndpointUrl"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EReference" name="responseParameters" eType="//HttpParameters"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="authorizationWebsiteUrl"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="requestHeaders"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="accessTokenEndpointUrl"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="URLConnectionHttpClient" eSuperTypes="//Object //Twitter.IHttpClient"> <eAnnotations source="ExtendedMetaData" references="//URLConnectionHttpClient"> <details key="canonicalName" value="winterwell.jtwitter.URLConnectionHttpClient"/> <details key="isMainType" value="true"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eStructuralFeatures> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name"> <eType xsi:type="ecore:EDataType" href="http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eStructuralFeatures> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="SimpleRSSReader" eSuperTypes="//Object"> <eAnnotations source="ExtendedMetaData" references="//SimpleRSSReader"> <details key="canonicalName" value="winterwell.jtwitter.SimpleRSSReader"/> <details key="isMainType" value="true"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="statuses" upperBound="-1" eType="//Twitter.Status"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="TwitterAccount" eSuperTypes="//Object"> <eAnnotations source="ExtendedMetaData" references="//TwitterAccount"> <details key="canonicalName" value="winterwell.jtwitter.TwitterAccount"/> <details key="isMainType" value="true"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="TwitterException.E401" eSuperTypes="//TwitterException"> <eAnnotations source="ExtendedMetaData" references="//TwitterException.E401"> <details key="canonicalName" value="winterwell.jtwitter.TwitterException.E401"/> <details key="isMainType" value="true"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Object"> <eAnnotations source="ExtendedMetaData"> <details key="canonicalName" value="java.lang.Object"/> <details key="isMainType" value="false"/> <references href="../bootstrap/resultReflect-JTwitter.ecore.xmi#/10"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Throwable" eSuperTypes="//Object //Serializable"> <eAnnotations source="ExtendedMetaData"> <details key="canonicalName" value="java.lang.Throwable"/> <details key="isMainType" value="false"/> <references href="../bootstrap/resultReflect-JTwitter.ecore.xmi#/11"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Serializable"> <eAnnotations source="ExtendedMetaData"> <details key="canonicalName" value="java.io.Serializable"/> <details key="isMainType" value="false"/> <references href="../bootstrap/resultReflect-JTwitter.ecore.xmi#/19"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Exception" eSuperTypes="//Throwable"> <eAnnotations source="ExtendedMetaData"> <details key="canonicalName" value="java.lang.Exception"/> <details key="isMainType" value="false"/> <references href="../bootstrap/resultReflect-JTwitter.ecore.xmi#/118"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="RuntimeException" eSuperTypes="//Exception"> <eAnnotations source="ExtendedMetaData"> <details key="canonicalName" value="java.lang.RuntimeException"/> <details key="isMainType" value="false"/> <references href="../bootstrap/resultReflect-JTwitter.ecore.xmi#/121"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Date" eSuperTypes="//Object //Cloneable //Serializable //Comparable"> <eAnnotations source="ExtendedMetaData"> <details key="canonicalName" value="java.util.Date"/> <details key="isMainType" value="false"/> <references href="../bootstrap/resultReflect-JTwitter.ecore.xmi#/375"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Cloneable"> <eAnnotations source="ExtendedMetaData"> <details key="canonicalName" value="java.lang.Cloneable"/> <details key="isMainType" value="false"/> <references href="../bootstrap/resultReflect-JTwitter.ecore.xmi#/18"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Comparable"> <eAnnotations source="ExtendedMetaData"> <details key="canonicalName" value="java.lang.Comparable"/> <details key="isMainType" value="false"/> <references href="../bootstrap/resultReflect-JTwitter.ecore.xmi#/196"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="URI" eSuperTypes="//Object //Serializable //Comparable"> <eAnnotations source="ExtendedMetaData"> <details key="canonicalName" value="java.net.URI"/> <details key="isMainType" value="false"/> <references href="../bootstrap/resultReflect-JTwitter.ecore.xmi#/115"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="AbstractList" eSuperTypes="//AbstractCollection //List"> <eAnnotations source="ExtendedMetaData"> <details key="canonicalName" value="java.util.AbstractList"/> <details key="isMainType" value="false"/> <references href="../bootstrap/resultReflect-JTwitter.ecore.xmi#/531"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="AbstractCollection" eSuperTypes="//Object //Collection"> <eAnnotations source="ExtendedMetaData"> <details key="canonicalName" value="java.util.AbstractCollection"/> <details key="isMainType" value="false"/> <references href="../bootstrap/resultReflect-JTwitter.ecore.xmi#/536"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Collection" eSuperTypes="//Iterable"> <eAnnotations source="ExtendedMetaData"> <details key="canonicalName" value="java.util.Collection"/> <details key="isMainType" value="false"/> <references href="../bootstrap/resultReflect-JTwitter.ecore.xmi#/51"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Iterable"> <eAnnotations source="ExtendedMetaData"> <details key="canonicalName" value="java.lang.Iterable"/> <details key="isMainType" value="false"/> <references href="../bootstrap/resultReflect-JTwitter.ecore.xmi#/60"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="List" eSuperTypes="//Collection"> <eAnnotations source="ExtendedMetaData"> <details key="canonicalName" value="java.util.List"/> <details key="isMainType" value="false"/> <references href="../bootstrap/resultReflect-JTwitter.ecore.xmi#/49"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="InputStream" eSuperTypes="//Object //Closeable"> <eAnnotations source="ExtendedMetaData"> <details key="canonicalName" value="java.io.InputStream"/> <details key="isMainType" value="false"/> <references href="../bootstrap/resultReflect-JTwitter.ecore.xmi#/225"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Closeable"> <eAnnotations source="ExtendedMetaData"> <details key="canonicalName" value="java.io.Closeable"/> <details key="isMainType" value="false"/> <references href="../bootstrap/resultReflect-JTwitter.ecore.xmi#/110"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Map"> <eAnnotations source="ExtendedMetaData"> <details key="canonicalName" value="java.util.Map"/> <details key="isMainType" value="false"/> <references href="../bootstrap/resultReflect-JTwitter.ecore.xmi#/145"/> </eAnnotations> </eClassifiers> </ecore:EPackage>
github:ecore:/data/siwiwit/api2mol/examples/fr.inria.atlanmod.api2mol.example.jtwitter/metamodel/resultEcore-ATL-JTwitter.ecore
ecore
JTwitter UnknownElement type Base64Encoder CDL JSONArray JSONTokener JSONException cause cause JSONObject Cookie CookieList HTTP HTTPTokener JSONString JSONStringer JSONWriter Test XML XMLTokener OAuthScribeClient Twitter.IHttpClient TwitterException additionalInfo additionalInfo Twitter maxResults untilDate screenName friends directMessagesSent publicTimeline lists httpClient friendsTimeline untilDate directMessages followerIDs retweetsOfMe status trends retweetsByMe userTimeline rateLimitStatus followers homeTimeline friendIDs maxResults favorites featured replies Twitter.User profileImageUrl followersCount protectedUser createdAt screenName name followersCount profileBackgroundImageUrl favoritesCount profileSidebarBorderColor profileLinkColor profileTextColor timezone profileImageUrl status statusesCount location website description friendsCount id timezoneOffSet profileBackgroundColor profileSidebarFillColor Twitter.Status original user original id text createdAt mentions Twitter.ITweet text user id createdAt Twitter.ICallback Twitter.Message inReplyToMessageId text createdAt recipient id user sender TwitterList name subscriberCount description subscriberCount description subscribers name statuses OAuthSignpostClient accessToken name OAuthConsumer token tokenSecret requestParameters consumerKey consumerSecret OAuthMessageSignerException OAuthException OAuthExpectationFailedException OAuthCommunicationException responseBody responseBody HttpRequest method contentType messagePayload allHeaders requestUrl OAuthMessageSigner consumerSecret tokenSecret consumerSecret tokenSecret signatureMethod Base64 DecoderException EncoderException BinaryEncoder Encoder BinaryDecoder Decoder HttpParameters SigningStrategy DefaultOAuthProvider HttpResponse content statusCode reasonPhrase OAuthNotAuthorizedException responseBody responseBody OAuthProviderListener AbstractOAuthProvider requestTokenEndpointUrl accessTokenEndpointUrl authorizationWebsiteUrl responseParameters authorizationWebsiteUrl requestTokenEndpointUrl responseParameters accessTokenEndpointUrl requestHeaders OAuthProvider requestTokenEndpointUrl responseParameters authorizationWebsiteUrl requestHeaders accessTokenEndpointUrl URLConnectionHttpClient name name SimpleRSSReader statuses TwitterAccount TwitterException.E401 Object Throwable Serializable Exception RuntimeException Date Cloneable Comparable URI AbstractList AbstractCollection Collection Iterable List InputStream Closeable Map
null
{"directed":true,"nodes":[{"nsPrefix":"modelum","nsURI":"http://modelum.es/atlandmod","name":"JTwitter","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"UnknownElement","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Base64Encoder","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CDL","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"JSONArray","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"JSONTokener","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"JSONException","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"JSONObject","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Cookie","instanceClass":null,"abstract":false,"id":8,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CookieList","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"HTTP","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"HTTPTokener","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"JSONString","instanceClass":null,"abstract":true,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"JSONStringer","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"JSONWriter","instanceClass":null,"abstract":false,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Test","instanceClass":null,"abstract":false,"id":15,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"XML","instanceClass":null,"abstract":false,"id":16,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"XMLTokener","instanceClass":null,"abstract":false,"id":17,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OAuthScribeClient","instanceClass":null,"abstract":false,"id":18,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Twitter.IHttpClient","instanceClass":null,"abstract":true,"id":19,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TwitterException","instanceClass":null,"abstract":false,"id":20,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Twitter","instanceClass":null,"abstract":false,"id":21,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Twitter.User","instanceClass":null,"abstract":false,"id":22,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Twitter.Status","instanceClass":null,"abstract":false,"id":23,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Twitter.ITweet","instanceClass":null,"abstract":true,"id":24,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Twitter.ICallback","instanceClass":null,"abstract":true,"id":25,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Twitter.Message","instanceClass":null,"abstract":false,"id":26,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TwitterList","instanceClass":null,"abstract":false,"id":27,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OAuthSignpostClient","instanceClass":null,"abstract":false,"id":28,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OAuthConsumer","instanceClass":null,"abstract":true,"id":29,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OAuthMessageSignerException","instanceClass":null,"abstract":false,"id":30,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OAuthException","instanceClass":null,"abstract":true,"id":31,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OAuthExpectationFailedException","instanceClass":null,"abstract":false,"id":32,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OAuthCommunicationException","instanceClass":null,"abstract":false,"id":33,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"HttpRequest","instanceClass":null,"abstract":true,"id":34,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OAuthMessageSigner","instanceClass":null,"abstract":true,"id":35,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Base64","instanceClass":null,"abstract":false,"id":36,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DecoderException","instanceClass":null,"abstract":false,"id":37,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EncoderException","instanceClass":null,"abstract":false,"id":38,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BinaryEncoder","instanceClass":null,"abstract":true,"id":39,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Encoder","instanceClass":null,"abstract":true,"id":40,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BinaryDecoder","instanceClass":null,"abstract":true,"id":41,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Decoder","instanceClass":null,"abstract":true,"id":42,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"HttpParameters","instanceClass":null,"abstract":false,"id":43,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SigningStrategy","instanceClass":null,"abstract":true,"id":44,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"DefaultOAuthProvider","instanceClass":null,"abstract":false,"id":45,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"HttpResponse","instanceClass":null,"abstract":true,"id":46,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OAuthNotAuthorizedException","instanceClass":null,"abstract":false,"id":47,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OAuthProviderListener","instanceClass":null,"abstract":true,"id":48,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AbstractOAuthProvider","instanceClass":null,"abstract":true,"id":49,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OAuthProvider","instanceClass":null,"abstract":true,"id":50,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"URLConnectionHttpClient","instanceClass":null,"abstract":false,"id":51,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"SimpleRSSReader","instanceClass":null,"abstract":false,"id":52,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TwitterAccount","instanceClass":null,"abstract":false,"id":53,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TwitterException.E401","instanceClass":null,"abstract":false,"id":54,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Object","instanceClass":null,"abstract":false,"id":55,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Throwable","instanceClass":null,"abstract":false,"id":56,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Serializable","instanceClass":null,"abstract":false,"id":57,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Exception","instanceClass":null,"abstract":false,"id":58,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"RuntimeException","instanceClass":null,"abstract":false,"id":59,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Date","instanceClass":null,"abstract":false,"id":60,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Cloneable","instanceClass":null,"abstract":false,"id":61,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Comparable","instanceClass":null,"abstract":false,"id":62,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"URI","instanceClass":null,"abstract":false,"id":63,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AbstractList","instanceClass":null,"abstract":false,"id":64,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AbstractCollection","instanceClass":null,"abstract":false,"id":65,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Collection","instanceClass":null,"abstract":false,"id":66,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Iterable","instanceClass":null,"abstract":false,"id":67,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"List","instanceClass":null,"abstract":false,"id":68,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InputStream","instanceClass":null,"abstract":false,"id":69,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Closeable","instanceClass":null,"abstract":false,"id":70,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Map","instanceClass":null,"abstract":false,"id":71,"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":"type","changeable":true,"lowerBound":0,"iD":false,"id":72,"derived":false},{"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":false,"unsettable":false,"transient":false,"unique":true,"name":"cause","changeable":true,"resolveProxies":true,"lowerBound":0,"id":78,"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":"cause","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"},{"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"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"additionalInfo","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":"additionalInfo","changeable":true,"lowerBound":0,"iD":false,"id":96,"derived":false},{"id":97,"eClass":"EGenericType"},{"id":98,"eClass":"EGenericType"},{"id":99,"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":"maxResults","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":false,"unsettable":false,"transient":false,"unique":true,"name":"untilDate","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":"screenName","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":false,"unsettable":false,"transient":false,"unique":true,"name":"friends","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":false,"unsettable":false,"transient":false,"unique":true,"name":"directMessagesSent","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":false,"unsettable":false,"transient":false,"unique":true,"name":"publicTimeline","changeable":true,"resolveProxies":true,"lowerBound":0,"id":105,"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":"lists","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":false,"unsettable":false,"transient":false,"unique":true,"name":"httpClient","changeable":true,"resolveProxies":true,"lowerBound":0,"id":107,"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":"friendsTimeline","changeable":true,"resolveProxies":true,"lowerBound":0,"id":108,"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":"untilDate","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":false,"unsettable":false,"transient":false,"unique":true,"name":"directMessages","changeable":true,"resolveProxies":true,"lowerBound":0,"id":110,"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":"followerIDs","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":"retweetsOfMe","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":false,"unsettable":false,"transient":false,"unique":true,"name":"status","changeable":true,"resolveProxies":true,"lowerBound":0,"id":113,"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":"trends","changeable":true,"lowerBound":0,"iD":false,"id":114,"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":"retweetsByMe","changeable":true,"resolveProxies":true,"lowerBound":0,"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":"userTimeline","changeable":true,"resolveProxies":true,"lowerBound":0,"id":116,"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":"rateLimitStatus","changeable":true,"lowerBound":0,"iD":false,"id":117,"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":"followers","changeable":true,"resolveProxies":true,"lowerBound":0,"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":"homeTimeline","changeable":true,"resolveProxies":true,"lowerBound":0,"id":119,"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":"friendIDs","changeable":true,"lowerBound":0,"iD":false,"id":120,"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":"maxResults","changeable":true,"lowerBound":0,"iD":false,"id":121,"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":"favorites","changeable":true,"resolveProxies":true,"lowerBound":0,"id":122,"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":"featured","changeable":true,"resolveProxies":true,"lowerBound":0,"id":123,"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":"replies","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"},{"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"},{"id":145,"eClass":"EGenericType"},{"id":146,"eClass":"EGenericType"},{"id":147,"eClass":"EGenericType"},{"id":148,"eClass":"EGenericType"},{"id":149,"eClass":"EGenericType"},{"id":150,"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":"profileImageUrl","changeable":true,"resolveProxies":true,"lowerBound":0,"id":151,"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":"followersCount","changeable":true,"lowerBound":0,"iD":false,"id":152,"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":"protectedUser","changeable":true,"lowerBound":0,"iD":false,"id":153,"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":"createdAt","changeable":true,"resolveProxies":true,"lowerBound":0,"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":"screenName","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":"name","changeable":true,"lowerBound":0,"iD":false,"id":156,"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":"followersCount","changeable":true,"lowerBound":0,"iD":false,"id":157,"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":"profileBackgroundImageUrl","changeable":true,"resolveProxies":true,"lowerBound":0,"id":158,"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":"favoritesCount","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":"profileSidebarBorderColor","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":"profileLinkColor","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":"profileTextColor","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":"timezone","changeable":true,"lowerBound":0,"iD":false,"id":163,"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":"profileImageUrl","changeable":true,"resolveProxies":true,"lowerBound":0,"id":164,"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":"status","changeable":true,"resolveProxies":true,"lowerBound":0,"id":165,"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":"statusesCount","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":"location","changeable":true,"lowerBound":0,"iD":false,"id":167,"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":"website","changeable":true,"resolveProxies":true,"lowerBound":0,"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":"description","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":"friendsCount","changeable":true,"lowerBound":0,"iD":false,"id":170,"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":171,"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":"timezoneOffSet","changeable":true,"lowerBound":0,"iD":false,"id":172,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"profileBackgroundColor","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":"profileSidebarFillColor","changeable":true,"lowerBound":0,"iD":false,"id":174,"derived":false},{"id":175,"eClass":"EGenericType"},{"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"},{"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"},{"id":191,"eClass":"EGenericType"},{"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"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"original","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":false,"unsettable":false,"transient":false,"unique":true,"name":"user","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":"original","changeable":true,"resolveProxies":true,"lowerBound":0,"id":202,"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":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":"text","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":false,"unsettable":false,"transient":false,"unique":true,"name":"createdAt","changeable":true,"resolveProxies":true,"lowerBound":0,"id":205,"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":"mentions","changeable":true,"lowerBound":0,"iD":false,"id":206,"derived":false},{"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"},{"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":"text","changeable":true,"lowerBound":0,"iD":false,"id":216,"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":"user","changeable":true,"resolveProxies":true,"lowerBound":0,"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":"id","changeable":true,"lowerBound":0,"iD":false,"id":218,"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":"createdAt","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"},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"inReplyToMessageId","changeable":true,"lowerBound":0,"iD":false,"id":224,"derived":false},{"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":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":"createdAt","changeable":true,"resolveProxies":true,"lowerBound":0,"id":226,"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":"recipient","changeable":true,"resolveProxies":true,"lowerBound":0,"id":227,"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":228,"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":"user","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":false,"unsettable":false,"transient":false,"unique":true,"name":"sender","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"},{"id":238,"eClass":"EGenericType"},{"id":239,"eClass":"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":240,"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":"subscriberCount","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":"description","changeable":true,"lowerBound":0,"iD":false,"id":242,"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":"subscriberCount","changeable":true,"lowerBound":0,"iD":false,"id":243,"derived":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":244,"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":"subscribers","changeable":true,"resolveProxies":true,"lowerBound":0,"id":245,"derived":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":246,"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":"statuses","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"},{"id":253,"eClass":"EGenericType"},{"id":254,"eClass":"EGenericType"},{"id":255,"eClass":"EGenericType"},{"id":256,"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":"accessToken","changeable":true,"lowerBound":0,"iD":false,"id":257,"derived":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":258,"derived":false},{"id":259,"eClass":"EGenericType"},{"id":260,"eClass":"EGenericType"},{"id":261,"eClass":"EGenericType"},{"id":262,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"token","changeable":true,"lowerBound":0,"iD":false,"id":263,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"tokenSecret","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":"requestParameters","changeable":true,"resolveProxies":true,"lowerBound":0,"id":265,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"consumerKey","changeable":true,"lowerBound":0,"iD":false,"id":266,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"consumerSecret","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"},{"id":276,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"responseBody","changeable":true,"lowerBound":0,"iD":false,"id":277,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"responseBody","changeable":true,"lowerBound":0,"iD":false,"id":278,"derived":false},{"id":279,"eClass":"EGenericType"},{"id":280,"eClass":"EGenericType"},{"id":281,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"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":282,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"contentType","changeable":true,"lowerBound":0,"iD":false,"id":283,"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":"messagePayload","changeable":true,"resolveProxies":true,"lowerBound":0,"id":284,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"allHeaders","changeable":true,"lowerBound":0,"iD":false,"id":285,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"requestUrl","changeable":true,"lowerBound":0,"iD":false,"id":286,"derived":false},{"id":287,"eClass":"EGenericType"},{"id":288,"eClass":"EGenericType"},{"id":289,"eClass":"EGenericType"},{"id":290,"eClass":"EGenericType"},{"id":291,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"consumerSecret","changeable":true,"lowerBound":0,"iD":false,"id":292,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"tokenSecret","changeable":true,"lowerBound":0,"iD":false,"id":293,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"consumerSecret","changeable":true,"lowerBound":0,"iD":false,"id":294,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"tokenSecret","changeable":true,"lowerBound":0,"iD":false,"id":295,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"signatureMethod","changeable":true,"lowerBound":0,"iD":false,"id":296,"derived":false},{"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"},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"content","changeable":true,"resolveProxies":true,"lowerBound":0,"id":316,"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":"statusCode","changeable":true,"lowerBound":0,"iD":false,"id":317,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"reasonPhrase","changeable":true,"lowerBound":0,"iD":false,"id":318,"derived":false},{"id":319,"eClass":"EGenericType"},{"id":320,"eClass":"EGenericType"},{"id":321,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"responseBody","changeable":true,"lowerBound":0,"iD":false,"id":322,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"responseBody","changeable":true,"lowerBound":0,"iD":false,"id":323,"derived":false},{"id":324,"eClass":"EGenericType"},{"id":325,"eClass":"EGenericType"},{"id":326,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"requestTokenEndpointUrl","changeable":true,"lowerBound":0,"iD":false,"id":327,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"accessTokenEndpointUrl","changeable":true,"lowerBound":0,"iD":false,"id":328,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"authorizationWebsiteUrl","changeable":true,"lowerBound":0,"iD":false,"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":"responseParameters","changeable":true,"resolveProxies":true,"lowerBound":0,"id":330,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"authorizationWebsiteUrl","changeable":true,"lowerBound":0,"iD":false,"id":331,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"requestTokenEndpointUrl","changeable":true,"lowerBound":0,"iD":false,"id":332,"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":"responseParameters","changeable":true,"resolveProxies":true,"lowerBound":0,"id":333,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"accessTokenEndpointUrl","changeable":true,"lowerBound":0,"iD":false,"id":334,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"requestHeaders","changeable":true,"lowerBound":0,"iD":false,"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"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"requestTokenEndpointUrl","changeable":true,"lowerBound":0,"iD":false,"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":"responseParameters","changeable":true,"resolveProxies":true,"lowerBound":0,"id":348,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"authorizationWebsiteUrl","changeable":true,"lowerBound":0,"iD":false,"id":349,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"requestHeaders","changeable":true,"lowerBound":0,"iD":false,"id":350,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"accessTokenEndpointUrl","changeable":true,"lowerBound":0,"iD":false,"id":351,"derived":false},{"id":352,"eClass":"EGenericType"},{"id":353,"eClass":"EGenericType"},{"id":354,"eClass":"EGenericType"},{"id":355,"eClass":"EGenericType"},{"id":356,"eClass":"EGenericType"},{"id":357,"eClass":"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":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":"name","changeable":true,"lowerBound":0,"iD":false,"id":359,"derived":false},{"id":360,"eClass":"EGenericType"},{"id":361,"eClass":"EGenericType"},{"id":362,"eClass":"EGenericType"},{"id":363,"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":"statuses","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"},{"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"},{"id":385,"eClass":"EGenericType"},{"id":386,"eClass":"EGenericType"},{"id":387,"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":1,"target":0},{"source":1,"target":72},{"source":72,"target":73},{"source":72,"target":1},{"source":2,"target":0},{"source":2,"target":55},{"source":2,"target":74},{"source":74,"target":55},{"source":3,"target":0},{"source":3,"target":55},{"source":3,"target":75},{"source":75,"target":55},{"source":4,"target":0},{"source":4,"target":55},{"source":4,"target":76},{"source":76,"target":55},{"source":5,"target":0},{"source":5,"target":55},{"source":5,"target":77},{"source":77,"target":55},{"source":6,"target":0},{"source":6,"target":58},{"source":6,"target":78},{"source":6,"target":79},{"source":6,"target":80},{"source":78,"target":56},{"source":78,"target":81},{"source":78,"target":6},{"source":81,"target":56},{"source":79,"target":56},{"source":79,"target":82},{"source":79,"target":6},{"source":82,"target":56},{"source":80,"target":58},{"source":7,"target":0},{"source":7,"target":55},{"source":7,"target":83},{"source":83,"target":55},{"source":8,"target":0},{"source":8,"target":55},{"source":8,"target":84},{"source":84,"target":55},{"source":9,"target":0},{"source":9,"target":55},{"source":9,"target":85},{"source":85,"target":55},{"source":10,"target":0},{"source":10,"target":55},{"source":10,"target":86},{"source":86,"target":55},{"source":11,"target":0},{"source":11,"target":5},{"source":11,"target":87},{"source":87,"target":5},{"source":12,"target":0},{"source":13,"target":0},{"source":13,"target":14},{"source":13,"target":88},{"source":88,"target":14},{"source":14,"target":0},{"source":14,"target":55},{"source":14,"target":89},{"source":89,"target":55},{"source":15,"target":0},{"source":15,"target":55},{"source":15,"target":90},{"source":90,"target":55},{"source":16,"target":0},{"source":16,"target":55},{"source":16,"target":91},{"source":91,"target":55},{"source":17,"target":0},{"source":17,"target":5},{"source":17,"target":92},{"source":92,"target":5},{"source":18,"target":0},{"source":18,"target":55},{"source":18,"target":19},{"source":18,"target":93},{"source":18,"target":94},{"source":93,"target":55},{"source":94,"target":19},{"source":19,"target":0},{"source":20,"target":0},{"source":20,"target":59},{"source":20,"target":95},{"source":20,"target":96},{"source":20,"target":97},{"source":95,"target":98},{"source":95,"target":20},{"source":96,"target":99},{"source":96,"target":20},{"source":97,"target":59},{"source":21,"target":0},{"source":21,"target":55},{"source":21,"target":100},{"source":21,"target":101},{"source":21,"target":102},{"source":21,"target":103},{"source":21,"target":104},{"source":21,"target":105},{"source":21,"target":106},{"source":21,"target":107},{"source":21,"target":108},{"source":21,"target":109},{"source":21,"target":110},{"source":21,"target":111},{"source":21,"target":112},{"source":21,"target":113},{"source":21,"target":114},{"source":21,"target":115},{"source":21,"target":116},{"source":21,"target":117},{"source":21,"target":118},{"source":21,"target":119},{"source":21,"target":120},{"source":21,"target":121},{"source":21,"target":122},{"source":21,"target":123},{"source":21,"target":124},{"source":21,"target":125},{"source":100,"target":126},{"source":100,"target":21},{"source":101,"target":60},{"source":101,"target":127},{"source":101,"target":21},{"source":127,"target":60},{"source":102,"target":128},{"source":102,"target":21},{"source":103,"target":22},{"source":103,"target":129},{"source":103,"target":21},{"source":129,"target":22},{"source":104,"target":26},{"source":104,"target":130},{"source":104,"target":21},{"source":130,"target":26},{"source":105,"target":23},{"source":105,"target":131},{"source":105,"target":21},{"source":131,"target":23},{"source":106,"target":27},{"source":106,"target":132},{"source":106,"target":21},{"source":132,"target":27},{"source":107,"target":19},{"source":107,"target":133},{"source":107,"target":21},{"source":133,"target":19},{"source":108,"target":23},{"source":108,"target":134},{"source":108,"target":21},{"source":134,"target":23},{"source":109,"target":60},{"source":109,"target":135},{"source":109,"target":21},{"source":135,"target":60},{"source":110,"target":26},{"source":110,"target":136},{"source":110,"target":21},{"source":136,"target":26},{"source":111,"target":137},{"source":111,"target":21},{"source":112,"target":23},{"source":112,"target":138},{"source":112,"target":21},{"source":138,"target":23},{"source":113,"target":23},{"source":113,"target":139},{"source":113,"target":21},{"source":139,"target":23},{"source":114,"target":140},{"source":114,"target":21},{"source":115,"target":23},{"source":115,"target":141},{"source":115,"target":21},{"source":141,"target":23},{"source":116,"target":23},{"source":116,"target":142},{"source":116,"target":21},{"source":142,"target":23},{"source":117,"target":143},{"source":117,"target":21},{"source":118,"target":22},{"source":118,"target":144},{"source":118,"target":21},{"source":144,"target":22},{"source":119,"target":23},{"source":119,"target":145},{"source":119,"target":21},{"source":145,"target":23},{"source":120,"target":146},{"source":120,"target":21},{"source":121,"target":147},{"source":121,"target":21},{"source":122,"target":23},{"source":122,"target":148},{"source":122,"target":21},{"source":148,"target":23},{"source":123,"target":22},{"source":123,"target":149},{"source":123,"target":21},{"source":149,"target":22},{"source":124,"target":23},{"source":124,"target":150},{"source":124,"target":21},{"source":150,"target":23},{"source":125,"target":55},{"source":22,"target":0},{"source":22,"target":55},{"source":22,"target":151},{"source":22,"target":152},{"source":22,"target":153},{"source":22,"target":154},{"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":22,"target":161},{"source":22,"target":162},{"source":22,"target":163},{"source":22,"target":164},{"source":22,"target":165},{"source":22,"target":166},{"source":22,"target":167},{"source":22,"target":168},{"source":22,"target":169},{"source":22,"target":170},{"source":22,"target":171},{"source":22,"target":172},{"source":22,"target":173},{"source":22,"target":174},{"source":22,"target":175},{"source":151,"target":63},{"source":151,"target":176},{"source":151,"target":22},{"source":176,"target":63},{"source":152,"target":177},{"source":152,"target":22},{"source":153,"target":178},{"source":153,"target":22},{"source":154,"target":60},{"source":154,"target":179},{"source":154,"target":22},{"source":179,"target":60},{"source":155,"target":180},{"source":155,"target":22},{"source":156,"target":181},{"source":156,"target":22},{"source":157,"target":182},{"source":157,"target":22},{"source":158,"target":63},{"source":158,"target":183},{"source":158,"target":22},{"source":183,"target":63},{"source":159,"target":184},{"source":159,"target":22},{"source":160,"target":185},{"source":160,"target":22},{"source":161,"target":186},{"source":161,"target":22},{"source":162,"target":187},{"source":162,"target":22},{"source":163,"target":188},{"source":163,"target":22},{"source":164,"target":63},{"source":164,"target":189},{"source":164,"target":22},{"source":189,"target":63},{"source":165,"target":23},{"source":165,"target":190},{"source":165,"target":22},{"source":190,"target":23},{"source":166,"target":191},{"source":166,"target":22},{"source":167,"target":192},{"source":167,"target":22},{"source":168,"target":63},{"source":168,"target":193},{"source":168,"target":22},{"source":193,"target":63},{"source":169,"target":194},{"source":169,"target":22},{"source":170,"target":195},{"source":170,"target":22},{"source":171,"target":196},{"source":171,"target":22},{"source":172,"target":197},{"source":172,"target":22},{"source":173,"target":198},{"source":173,"target":22},{"source":174,"target":199},{"source":174,"target":22},{"source":175,"target":55},{"source":23,"target":0},{"source":23,"target":55},{"source":23,"target":24},{"source":23,"target":200},{"source":23,"target":201},{"source":23,"target":202},{"source":23,"target":203},{"source":23,"target":204},{"source":23,"target":205},{"source":23,"target":206},{"source":23,"target":207},{"source":23,"target":208},{"source":200,"target":23},{"source":200,"target":209},{"source":200,"target":23},{"source":209,"target":23},{"source":201,"target":22},{"source":201,"target":210},{"source":201,"target":23},{"source":210,"target":22},{"source":202,"target":23},{"source":202,"target":211},{"source":202,"target":23},{"source":211,"target":23},{"source":203,"target":212},{"source":203,"target":23},{"source":204,"target":213},{"source":204,"target":23},{"source":205,"target":60},{"source":205,"target":214},{"source":205,"target":23},{"source":214,"target":60},{"source":206,"target":215},{"source":206,"target":23},{"source":207,"target":55},{"source":208,"target":24},{"source":24,"target":0},{"source":24,"target":216},{"source":24,"target":217},{"source":24,"target":218},{"source":24,"target":219},{"source":216,"target":220},{"source":216,"target":24},{"source":217,"target":22},{"source":217,"target":221},{"source":217,"target":24},{"source":221,"target":22},{"source":218,"target":222},{"source":218,"target":24},{"source":219,"target":60},{"source":219,"target":223},{"source":219,"target":24},{"source":223,"target":60},{"source":25,"target":0},{"source":26,"target":0},{"source":26,"target":55},{"source":26,"target":24},{"source":26,"target":224},{"source":26,"target":225},{"source":26,"target":226},{"source":26,"target":227},{"source":26,"target":228},{"source":26,"target":229},{"source":26,"target":230},{"source":26,"target":231},{"source":26,"target":232},{"source":224,"target":233},{"source":224,"target":26},{"source":225,"target":234},{"source":225,"target":26},{"source":226,"target":60},{"source":226,"target":235},{"source":226,"target":26},{"source":235,"target":60},{"source":227,"target":22},{"source":227,"target":236},{"source":227,"target":26},{"source":236,"target":22},{"source":228,"target":237},{"source":228,"target":26},{"source":229,"target":22},{"source":229,"target":238},{"source":229,"target":26},{"source":238,"target":22},{"source":230,"target":22},{"source":230,"target":239},{"source":230,"target":26},{"source":239,"target":22},{"source":231,"target":55},{"source":232,"target":24},{"source":27,"target":0},{"source":27,"target":64},{"source":27,"target":240},{"source":27,"target":241},{"source":27,"target":242},{"source":27,"target":243},{"source":27,"target":244},{"source":27,"target":245},{"source":27,"target":246},{"source":27,"target":247},{"source":27,"target":248},{"source":240,"target":249},{"source":240,"target":27},{"source":241,"target":250},{"source":241,"target":27},{"source":242,"target":251},{"source":242,"target":27},{"source":243,"target":252},{"source":243,"target":27},{"source":244,"target":253},{"source":244,"target":27},{"source":245,"target":22},{"source":245,"target":254},{"source":245,"target":27},{"source":254,"target":22},{"source":246,"target":255},{"source":246,"target":27},{"source":247,"target":23},{"source":247,"target":256},{"source":247,"target":27},{"source":256,"target":23},{"source":248,"target":64},{"source":28,"target":0},{"source":28,"target":51},{"source":28,"target":19},{"source":28,"target":257},{"source":28,"target":258},{"source":28,"target":259},{"source":28,"target":260},{"source":257,"target":261},{"source":257,"target":28},{"source":258,"target":262},{"source":258,"target":28},{"source":259,"target":51},{"source":260,"target":19},{"source":29,"target":0},{"source":29,"target":57},{"source":29,"target":263},{"source":29,"target":264},{"source":29,"target":265},{"source":29,"target":266},{"source":29,"target":267},{"source":29,"target":268},{"source":263,"target":269},{"source":263,"target":29},{"source":264,"target":270},{"source":264,"target":29},{"source":265,"target":43},{"source":265,"target":271},{"source":265,"target":29},{"source":271,"target":43},{"source":266,"target":272},{"source":266,"target":29},{"source":267,"target":273},{"source":267,"target":29},{"source":268,"target":57},{"source":30,"target":0},{"source":30,"target":31},{"source":30,"target":274},{"source":274,"target":31},{"source":31,"target":0},{"source":31,"target":58},{"source":31,"target":275},{"source":275,"target":58},{"source":32,"target":0},{"source":32,"target":31},{"source":32,"target":276},{"source":276,"target":31},{"source":33,"target":0},{"source":33,"target":31},{"source":33,"target":277},{"source":33,"target":278},{"source":33,"target":279},{"source":277,"target":280},{"source":277,"target":33},{"source":278,"target":281},{"source":278,"target":33},{"source":279,"target":31},{"source":34,"target":0},{"source":34,"target":282},{"source":34,"target":283},{"source":34,"target":284},{"source":34,"target":285},{"source":34,"target":286},{"source":282,"target":287},{"source":282,"target":34},{"source":283,"target":288},{"source":283,"target":34},{"source":284,"target":69},{"source":284,"target":289},{"source":284,"target":34},{"source":289,"target":69},{"source":285,"target":290},{"source":285,"target":34},{"source":286,"target":291},{"source":286,"target":34},{"source":35,"target":0},{"source":35,"target":55},{"source":35,"target":57},{"source":35,"target":292},{"source":35,"target":293},{"source":35,"target":294},{"source":35,"target":295},{"source":35,"target":296},{"source":35,"target":297},{"source":35,"target":298},{"source":292,"target":299},{"source":292,"target":35},{"source":293,"target":300},{"source":293,"target":35},{"source":294,"target":301},{"source":294,"target":35},{"source":295,"target":302},{"source":295,"target":35},{"source":296,"target":303},{"source":296,"target":35},{"source":297,"target":55},{"source":298,"target":57},{"source":36,"target":0},{"source":36,"target":55},{"source":36,"target":41},{"source":36,"target":39},{"source":36,"target":304},{"source":36,"target":305},{"source":36,"target":306},{"source":304,"target":55},{"source":305,"target":41},{"source":306,"target":39},{"source":37,"target":0},{"source":37,"target":58},{"source":37,"target":307},{"source":307,"target":58},{"source":38,"target":0},{"source":38,"target":58},{"source":38,"target":308},{"source":308,"target":58},{"source":39,"target":0},{"source":39,"target":40},{"source":39,"target":309},{"source":309,"target":40},{"source":40,"target":0},{"source":41,"target":0},{"source":41,"target":42},{"source":41,"target":310},{"source":310,"target":42},{"source":42,"target":0},{"source":43,"target":0},{"source":43,"target":55},{"source":43,"target":57},{"source":43,"target":71},{"source":43,"target":311},{"source":43,"target":312},{"source":43,"target":313},{"source":311,"target":55},{"source":312,"target":57},{"source":313,"target":71},{"source":44,"target":0},{"source":44,"target":57},{"source":44,"target":314},{"source":314,"target":57},{"source":45,"target":0},{"source":45,"target":49},{"source":45,"target":315},{"source":315,"target":49},{"source":46,"target":0},{"source":46,"target":316},{"source":46,"target":317},{"source":46,"target":318},{"source":316,"target":69},{"source":316,"target":319},{"source":316,"target":46},{"source":319,"target":69},{"source":317,"target":320},{"source":317,"target":46},{"source":318,"target":321},{"source":318,"target":46},{"source":47,"target":0},{"source":47,"target":31},{"source":47,"target":322},{"source":47,"target":323},{"source":47,"target":324},{"source":322,"target":325},{"source":322,"target":47},{"source":323,"target":326},{"source":323,"target":47},{"source":324,"target":31},{"source":48,"target":0},{"source":49,"target":0},{"source":49,"target":55},{"source":49,"target":50},{"source":49,"target":327},{"source":49,"target":328},{"source":49,"target":329},{"source":49,"target":330},{"source":49,"target":331},{"source":49,"target":332},{"source":49,"target":333},{"source":49,"target":334},{"source":49,"target":335},{"source":49,"target":336},{"source":49,"target":337},{"source":327,"target":338},{"source":327,"target":49},{"source":328,"target":339},{"source":328,"target":49},{"source":329,"target":340},{"source":329,"target":49},{"source":330,"target":43},{"source":330,"target":341},{"source":330,"target":49},{"source":341,"target":43},{"source":331,"target":342},{"source":331,"target":49},{"source":332,"target":343},{"source":332,"target":49},{"source":333,"target":43},{"source":333,"target":344},{"source":333,"target":49},{"source":344,"target":43},{"source":334,"target":345},{"source":334,"target":49},{"source":335,"target":346},{"source":335,"target":49},{"source":336,"target":55},{"source":337,"target":50},{"source":50,"target":0},{"source":50,"target":57},{"source":50,"target":347},{"source":50,"target":348},{"source":50,"target":349},{"source":50,"target":350},{"source":50,"target":351},{"source":50,"target":352},{"source":347,"target":353},{"source":347,"target":50},{"source":348,"target":43},{"source":348,"target":354},{"source":348,"target":50},{"source":354,"target":43},{"source":349,"target":355},{"source":349,"target":50},{"source":350,"target":356},{"source":350,"target":50},{"source":351,"target":357},{"source":351,"target":50},{"source":352,"target":57},{"source":51,"target":0},{"source":51,"target":55},{"source":51,"target":19},{"source":51,"target":358},{"source":51,"target":359},{"source":51,"target":360},{"source":51,"target":361},{"source":358,"target":362},{"source":358,"target":51},{"source":359,"target":363},{"source":359,"target":51},{"source":360,"target":55},{"source":361,"target":19},{"source":52,"target":0},{"source":52,"target":55},{"source":52,"target":364},{"source":52,"target":365},{"source":364,"target":23},{"source":364,"target":366},{"source":364,"target":52},{"source":366,"target":23},{"source":365,"target":55},{"source":53,"target":0},{"source":53,"target":55},{"source":53,"target":367},{"source":367,"target":55},{"source":54,"target":0},{"source":54,"target":20},{"source":54,"target":368},{"source":368,"target":20},{"source":55,"target":0},{"source":56,"target":0},{"source":56,"target":55},{"source":56,"target":57},{"source":56,"target":369},{"source":56,"target":370},{"source":369,"target":55},{"source":370,"target":57},{"source":57,"target":0},{"source":58,"target":0},{"source":58,"target":56},{"source":58,"target":371},{"source":371,"target":56},{"source":59,"target":0},{"source":59,"target":58},{"source":59,"target":372},{"source":372,"target":58},{"source":60,"target":0},{"source":60,"target":55},{"source":60,"target":61},{"source":60,"target":57},{"source":60,"target":62},{"source":60,"target":373},{"source":60,"target":374},{"source":60,"target":375},{"source":60,"target":376},{"source":373,"target":55},{"source":374,"target":61},{"source":375,"target":57},{"source":376,"target":62},{"source":61,"target":0},{"source":62,"target":0},{"source":63,"target":0},{"source":63,"target":55},{"source":63,"target":57},{"source":63,"target":62},{"source":63,"target":377},{"source":63,"target":378},{"source":63,"target":379},{"source":377,"target":55},{"source":378,"target":57},{"source":379,"target":62},{"source":64,"target":0},{"source":64,"target":65},{"source":64,"target":68},{"source":64,"target":380},{"source":64,"target":381},{"source":380,"target":65},{"source":381,"target":68},{"source":65,"target":0},{"source":65,"target":55},{"source":65,"target":66},{"source":65,"target":382},{"source":65,"target":383},{"source":382,"target":55},{"source":383,"target":66},{"source":66,"target":0},{"source":66,"target":67},{"source":66,"target":384},{"source":384,"target":67},{"source":67,"target":0},{"source":68,"target":0},{"source":68,"target":66},{"source":68,"target":385},{"source":385,"target":66},{"source":69,"target":0},{"source":69,"target":55},{"source":69,"target":70},{"source":69,"target":386},{"source":69,"target":387},{"source":386,"target":55},{"source":387,"target":70},{"source":70,"target":0},{"source":71,"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="manufacturingSystem" nsURI="com.chalmers.manufacturingSystem" nsPrefix="com.chalmers"> <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="WorkPiece"> <eStructuralFeatures xsi:type="ecore:EReference" name="hasType" lowerBound="1" eType="#//WorkPieceType"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ManufacturingStep" eSuperTypes="#//Step"/> <eClassifiers xsi:type="ecore:EClass" name="ManufacturingSystem"> <eAnnotations source="http://www.eclipse.org/emf/2002/Ecore"> <details key="constraints" value="oneResponsible limitResponsible startLimit"/> </eAnnotations> <eAnnotations source="http://www.eclipse.org/emf/2002/Ecore/OCL/Pivot"> <details key="oneResponsible" value="self.consistsOf ->forAll(m:ManufacturingSystemElement| m.responsible -> size() = 1)"/> <details key="limitResponsible" value="self.consistsOf -> forAll(m:ManufacturingSystemElement| m.responsible.name &lt;> self.responsible.name)"/> <details key="startLimit" value="self.start.transition -> select(oclIsKindOf(Step)) ->isEmpty()"/> </eAnnotations> <eStructuralFeatures xsi:type="ecore:EReference" name="consistsOf" lowerBound="1" upperBound="-1" eType="#//ManufacturingSystemElement" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="start" lowerBound="1" upperBound="-1" eType="#//StoragePoint"/> <eStructuralFeatures xsi:type="ecore:EReference" name="end" lowerBound="1" upperBound="-1" eType="#//StoragePoint"/> <eStructuralFeatures xsi:type="ecore:EReference" name="uses" upperBound="-1" eType="#//WorkPieceType" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="transforms" upperBound="-1" eType="#//WorkPiece" 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="responsible" eType="#//Responsible"/> <eStructuralFeatures xsi:type="ecore:EReference" name="staff" upperBound="-1" eType="#//Responsible" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="TransportStep" eSuperTypes="#//Step"/> <eClassifiers xsi:type="ecore:EClass" name="QualityAssuranceStep" eSuperTypes="#//Step"/> <eClassifiers xsi:type="ecore:EClass" name="Step" abstract="true" eSuperTypes="#//ManufacturingSystemElement"> <eStructuralFeatures xsi:type="ecore:EReference" name="speed" defaultValueLiteral="0"/> <eStructuralFeatures xsi:type="ecore:EReference" name="input" lowerBound="1" upperBound="-1" eType="#//InputCondition" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="output" lowerBound="1" upperBound="-1" eType="#//OutputDecision" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Responsible"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="BinaryType"> <eLiterals name="and"/> <eLiterals name="or" value="1"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="InputCondition"> <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="StoragePoint" eSuperTypes="#//ManufacturingSystemElement"> <eStructuralFeatures xsi:type="ecore:EReference" name="stores" upperBound="-1" eType="#//WorkPieceType"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="ManufacturingSystemElement"> <eStructuralFeatures xsi:type="ecore:EReference" name="transition" upperBound="-1" eType="#//ManufacturingSystemElement"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="responsible" eType="#//Responsible"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="CompositeManufacturingStep" eSuperTypes="#//Step"> <eStructuralFeatures xsi:type="ecore:EReference" name="contains" lowerBound="1" eType="#//ManufacturingSystem" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="WorkPieceType"> <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="OutputDecision"> <eStructuralFeatures xsi:type="ecore:EReference" name="outputTypes" eType="#//WorkPieceType"/> <eStructuralFeatures xsi:type="ecore:EReference" name="input" lowerBound="1" upperBound="-1" eType="#//InputCondition"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="WorkPieceCondition" eSuperTypes="#//InputCondition"> <eStructuralFeatures xsi:type="ecore:EReference" name="requiresType" lowerBound="1" eType="#//WorkPieceType"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="BinaryCondition" eSuperTypes="#//InputCondition"> <eStructuralFeatures xsi:type="ecore:EReference" name="left" lowerBound="1" eType="#//InputCondition"/> <eStructuralFeatures xsi:type="ecore:EReference" name="right" lowerBound="1" eType="#//InputCondition"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="type" lowerBound="1" eType="#//BinaryType"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Negation" eSuperTypes="#//InputCondition"> <eStructuralFeatures xsi:type="ecore:EReference" name="contains" lowerBound="1" eType="#//InputCondition"/> </eClassifiers> </ecore:EPackage>
github:ecore:/data/hchuphal/Chalmers_GU/MDSE-master/2/submission/assignment1/model/manufacturingSystem.ecore
ecore
manufacturingSystem WorkPiece hasType ManufacturingStep ManufacturingSystem consistsOf start end uses transforms name responsible staff TransportStep QualityAssuranceStep Step speed 0 input output Responsible name BinaryType and and or or InputCondition name StoragePoint stores ManufacturingSystemElement transition name responsible CompositeManufacturingStep contains WorkPieceType name OutputDecision outputTypes input WorkPieceCondition requiresType BinaryCondition left right type Negation contains
null
{"directed":true,"nodes":[{"nsPrefix":"com.chalmers","nsURI":"com.chalmers.manufacturingSystem","name":"manufacturingSystem","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"WorkPiece","instanceClass":null,"abstract":false,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ManufacturingStep","instanceClass":null,"abstract":false,"id":2,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ManufacturingSystem","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TransportStep","instanceClass":null,"abstract":false,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"QualityAssuranceStep","instanceClass":null,"abstract":false,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Step","instanceClass":null,"abstract":true,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Responsible","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"BinaryType","instanceClass":null,"id":8,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"InputCondition","instanceClass":null,"abstract":false,"id":9,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"StoragePoint","instanceClass":null,"abstract":false,"id":10,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ManufacturingSystemElement","instanceClass":null,"abstract":false,"id":11,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"CompositeManufacturingStep","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"WorkPieceType","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"OutputDecision","instanceClass":null,"abstract":false,"id":14,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"WorkPieceCondition","instanceClass":null,"abstract":false,"id":15,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BinaryCondition","instanceClass":null,"abstract":false,"id":16,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Negation","instanceClass":null,"abstract":false,"id":17,"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":"hasType","changeable":true,"resolveProxies":true,"lowerBound":1,"id":18,"derived":false},{"id":19,"eClass":"EGenericType"},{"id":20,"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":"consistsOf","changeable":true,"resolveProxies":true,"lowerBound":1,"id":21,"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":"start","changeable":true,"resolveProxies":true,"lowerBound":1,"id":22,"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":"end","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":true,"unsettable":false,"transient":false,"unique":true,"name":"uses","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":"transforms","changeable":true,"resolveProxies":true,"lowerBound":0,"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":"name","changeable":true,"lowerBound":0,"iD":false,"id":26,"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":"responsible","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":"staff","changeable":true,"resolveProxies":true,"lowerBound":0,"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"},{"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":"0","containment":false,"unsettable":false,"transient":false,"unique":true,"name":"speed","changeable":true,"resolveProxies":true,"lowerBound":0,"id":39,"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":"input","changeable":true,"resolveProxies":true,"lowerBound":1,"id":40,"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":"output","changeable":true,"resolveProxies":true,"lowerBound":1,"id":41,"derived":false},{"id":42,"eClass":"EGenericType"},{"id":43,"eClass":"EGenericType"},{"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"},{"name":"and","id":47,"value":0,"literal":"and","eClass":"EEnumLiteral"},{"name":"or","id":48,"value":1,"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":"name","changeable":true,"lowerBound":0,"iD":false,"id":49,"derived":false},{"id":50,"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":"stores","changeable":true,"resolveProxies":true,"lowerBound":0,"id":51,"derived":false},{"id":52,"eClass":"EGenericType"},{"id":53,"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":"transition","changeable":true,"resolveProxies":true,"lowerBound":0,"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},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"responsible","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":true,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"contains","changeable":true,"resolveProxies":true,"lowerBound":1,"id":60,"derived":false},{"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":"name","changeable":true,"lowerBound":0,"iD":false,"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":"outputTypes","changeable":true,"resolveProxies":true,"lowerBound":0,"id":65,"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":"input","changeable":true,"resolveProxies":true,"lowerBound":1,"id":66,"derived":false},{"id":67,"eClass":"EGenericType"},{"id":68,"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":"requiresType","changeable":true,"resolveProxies":true,"lowerBound":1,"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":"left","changeable":true,"resolveProxies":true,"lowerBound":1,"id":72,"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":"right","changeable":true,"resolveProxies":true,"lowerBound":1,"id":73,"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":74,"derived":false},{"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":false,"required":true,"eClass":"EReference","defaultValueLiteral":null,"containment":false,"unsettable":false,"transient":false,"unique":true,"name":"contains","changeable":true,"resolveProxies":true,"lowerBound":1,"id":79,"derived":false},{"id":80,"eClass":"EGenericType"},{"id":81,"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":18,"target":13},{"source":18,"target":19},{"source":18,"target":1},{"source":19,"target":13},{"source":2,"target":0},{"source":2,"target":6},{"source":2,"target":20},{"source":20,"target":6},{"source":3,"target":0},{"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":3,"target":27},{"source":3,"target":28},{"source":21,"target":11},{"source":21,"target":29},{"source":21,"target":3},{"source":29,"target":11},{"source":22,"target":10},{"source":22,"target":30},{"source":22,"target":3},{"source":30,"target":10},{"source":23,"target":10},{"source":23,"target":31},{"source":23,"target":3},{"source":31,"target":10},{"source":24,"target":13},{"source":24,"target":32},{"source":24,"target":3},{"source":32,"target":13},{"source":25,"target":1},{"source":25,"target":33},{"source":25,"target":3},{"source":33,"target":1},{"source":26,"target":34},{"source":26,"target":3},{"source":27,"target":7},{"source":27,"target":35},{"source":27,"target":3},{"source":35,"target":7},{"source":28,"target":7},{"source":28,"target":36},{"source":28,"target":3},{"source":36,"target":7},{"source":4,"target":0},{"source":4,"target":6},{"source":4,"target":37},{"source":37,"target":6},{"source":5,"target":0},{"source":5,"target":6},{"source":5,"target":38},{"source":38,"target":6},{"source":6,"target":0},{"source":6,"target":11},{"source":6,"target":39},{"source":6,"target":40},{"source":6,"target":41},{"source":6,"target":42},{"source":39,"target":6},{"source":40,"target":9},{"source":40,"target":43},{"source":40,"target":6},{"source":43,"target":9},{"source":41,"target":14},{"source":41,"target":44},{"source":41,"target":6},{"source":44,"target":14},{"source":42,"target":11},{"source":7,"target":0},{"source":7,"target":45},{"source":45,"target":46},{"source":45,"target":7},{"source":8,"target":0},{"source":8,"target":47},{"source":8,"target":48},{"source":47,"target":8},{"source":48,"target":8},{"source":9,"target":0},{"source":9,"target":49},{"source":49,"target":50},{"source":49,"target":9},{"source":10,"target":0},{"source":10,"target":11},{"source":10,"target":51},{"source":10,"target":52},{"source":51,"target":13},{"source":51,"target":53},{"source":51,"target":10},{"source":53,"target":13},{"source":52,"target":11},{"source":11,"target":0},{"source":11,"target":54},{"source":11,"target":55},{"source":11,"target":56},{"source":54,"target":11},{"source":54,"target":57},{"source":54,"target":11},{"source":57,"target":11},{"source":55,"target":58},{"source":55,"target":11},{"source":56,"target":7},{"source":56,"target":59},{"source":56,"target":11},{"source":59,"target":7},{"source":12,"target":0},{"source":12,"target":6},{"source":12,"target":60},{"source":12,"target":61},{"source":60,"target":3},{"source":60,"target":62},{"source":60,"target":12},{"source":62,"target":3},{"source":61,"target":6},{"source":13,"target":0},{"source":13,"target":63},{"source":63,"target":64},{"source":63,"target":13},{"source":14,"target":0},{"source":14,"target":65},{"source":14,"target":66},{"source":65,"target":13},{"source":65,"target":67},{"source":65,"target":14},{"source":67,"target":13},{"source":66,"target":9},{"source":66,"target":68},{"source":66,"target":14},{"source":68,"target":9},{"source":15,"target":0},{"source":15,"target":9},{"source":15,"target":69},{"source":15,"target":70},{"source":69,"target":13},{"source":69,"target":71},{"source":69,"target":15},{"source":71,"target":13},{"source":70,"target":9},{"source":16,"target":0},{"source":16,"target":9},{"source":16,"target":72},{"source":16,"target":73},{"source":16,"target":74},{"source":16,"target":75},{"source":72,"target":9},{"source":72,"target":76},{"source":72,"target":16},{"source":76,"target":9},{"source":73,"target":9},{"source":73,"target":77},{"source":73,"target":16},{"source":77,"target":9},{"source":74,"target":8},{"source":74,"target":78},{"source":74,"target":16},{"source":78,"target":8},{"source":75,"target":9},{"source":17,"target":0},{"source":17,"target":9},{"source":17,"target":79},{"source":17,"target":80},{"source":79,"target":9},{"source":79,"target":81},{"source":79,"target":17},{"source":81,"target":9},{"source":80,"target":9}],"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="tracker" nsURI="http://www.verticon.com/ns/tracker/0.1.0" nsPrefix="com.verticon.tracker"> <eClassifiers xsi:type="ecore:EClass" name="Animal" abstract="true"> <eOperations name="allEvents" upperBound="-1" eType="#//Event"/> <eOperations name="addTemplate"> <eParameters name="eventTemplate"> <eGenericType eClassifier="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EEList"> <eTypeArguments eClassifier="#//Event"/> </eGenericType> </eParameters> </eOperations> <eOperations name="activeTag" eType="#//Tag"/> <eOperations name="eventHistory" upperBound="-1" eType="#//Event"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="body" value="return allEvents();"/> <details key="documentation" value="All the events associated with this animal."/> </eAnnotations> </eOperations> <eOperations name="lastWeighIn" eType="#//WeighIn"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="body" value="WeighIn lastWeighIn = null;&#xA;&#x9;&#x9;if(!eventHistory().isEmpty()){&#xA;&#x9;&#x9;&#x9;CollectionFilter&lt;Event> weighInsProducer = new CollectionFilter&lt;Event>();&#xA;&#x9;&#x9;&#x9;weighInsProducer.addFilter(TrackerUtils.weighInFilterCriteria);&#xA;&#x9;&#x9;&#x9;List&lt;Event> weighIns = new ArrayList&lt;Event>(weighInsProducer.filterCopy(eventHistory()));&#xA;&#x9;&#x9;&#x9;if(weighIns.isEmpty()){&#xA;&#x9;&#x9;&#x9;&#x9;return null;&#xA;&#x9;&#x9;&#x9;}&#xA;&#x9;&#x9;&#x9;Collections.sort(weighIns, TrackerUtils.DATE_COMPARATOR);&#xA;&#x9;&#x9;&#x9;lastWeighIn = (WeighIn) weighIns.get(weighIns.size()-1);&#xA;&#x9;&#x9;}&#xA;&#x9;&#x9;return lastWeighIn;"/> <details key="documentation" value="The most recent WeighIn event for this animal."/> </eAnnotations> </eOperations> <eOperations name="getAge" eType="#//Age"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="birthDate" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDate"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="sex" eType="#//Sex" defaultValueLiteral="Unspecified"/> <eStructuralFeatures xsi:type="ecore:EReference" name="tags" lowerBound="1" upperBound="-1" eType="#//Tag" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="species" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" changeable="false" volatile="true" transient="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="breed" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" changeable="false" volatile="true" transient="true" defaultValueLiteral="" derived="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="sexCode" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" changeable="false" volatile="true" transient="true" derived="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="speciesCode" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" changeable="false" volatile="true" transient="true" derived="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="id" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" volatile="true" derived="true" iD="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="comments" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="lastEventDateTime" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDate" changeable="false" volatile="true" transient="true" derived="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="dam" eType="#//Animal"/> <eStructuralFeatures xsi:type="ecore:EReference" name="sire" eType="#//Animal"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="weight" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject" changeable="false" volatile="true" transient="true" derived="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="weightGainPerDay" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDoubleObject" changeable="false" volatile="true" transient="true" derived="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="type" lowerBound="1" eType="#//AnimalType" changeable="false" volatile="true" transient="true" derived="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="visualID" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" unsettable="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="ageInDays" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt" changeable="false" volatile="true" transient="true" derived="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="alternativeID" ordered="false" unique="false" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" changeable="false" volatile="true" transient="true" derived="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="Sex"> <eLiterals name="Unspecified" literal=""/> <eLiterals name="F" value="1" literal="Female"/> <eLiterals name="M" value="2" literal="Male"/> <eLiterals name="C" value="3" literal="Neutered/castrated male"/> <eLiterals name="S" value="4" literal="Neutered/spayed female"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Tag"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="usainNumberUsed" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean" changeable="false" volatile="true" transient="true" derived="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="events" lowerBound="1" upperBound="-1" eType="#//Event" containment="true" eOpposite="#//Event/tag"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="id" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" defaultValueLiteral=""/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Bovine" abstract="true" eSuperTypes="#//Animal"/> <eClassifiers xsi:type="ecore:EClass" name="Event" abstract="true"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="dateTime" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDate"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="eventCode" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt" changeable="false" volatile="true" transient="true" defaultValueLiteral="0" derived="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="electronicallyRead" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean" defaultValueLiteral="false"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="correction" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean" defaultValueLiteral="false"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="comments" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EReference" name="tag" lowerBound="1" eType="#//Tag" transient="true" eOpposite="#//Tag/events"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="id" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" changeable="false" volatile="true" transient="true" derived="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="TagAllocated" eSuperTypes="#//Event"/> <eClassifiers xsi:type="ecore:EClass" name="Premises"> <eOperations name="eventHistory" upperBound="-1" eType="#//Event"/> <eOperations name="findAnimal" eType="#//Animal"> <eParameters name="id" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eOperations> <eOperations name="addTemplate"> <eParameters name="ains"> <eGenericType eClassifier="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EEList"> <eTypeArguments eClassifier="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eGenericType> </eParameters> <eParameters name="animalTemplate" eType="#//Animal"/> </eOperations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="premisesId" lowerBound="1" eType="#//PremisesIdNumber"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="emailContact" lowerBound="1" eType="#//Email" defaultValueLiteral=""/> <eStructuralFeatures xsi:type="ecore:EReference" name="animals" upperBound="-1" eType="#//Animal" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="unAppliedTags" upperBound="-1" eType="#//Tag" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="locations" upperBound="-1" eType="#//Location" containment="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="uri" eType="#//URI"/> <eStructuralFeatures xsi:type="ecore:EReference" name="schema" eType="#//Schema" 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:EDataType" name="PremisesIdNumber" instanceClassName="java.lang.String"> <eAnnotations source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData"> <details key="minLength" value="7"/> <details key="maxLength" value="7"/> <details key="length" value="7"/> <details key="maxExclusive" value="adcdefg"/> </eAnnotations> </eClassifiers> <eClassifiers xsi:type="ecore:EDataType" name="Email" instanceClassName="java.lang.String"/> <eClassifiers xsi:type="ecore:EEnum" name="BisonBreed"> <eLiterals name="WO" literal="WOOD BISON"/> <eLiterals name="PB" value="1" literal="PLAINS BISON"/> <eLiterals name="Unspecified" value="2" literal=""/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="SheepBreed"> <eLiterals name="CD" literal="ARCOTT - Canadian"/> <eLiterals name="OU" value="1" literal="ARCOTT - Outaouais"/> <eLiterals name="RI" value="2" literal="ARCOTT - Rideau"/> <eLiterals name="LY" value="3" literal="BARBADOS BLACK BELLY"/> <eLiterals name="FB" value="4" literal="BLACK FACE"/> <eLiterals name="BW" value="5" literal="BLACK WELSH MOUNTAIN"/> <eLiterals name="BF" value="6" literal="BLUE FACED LEISTER"/> <eLiterals name="BO" value="7" literal="BOOROULA"/> <eLiterals name="BC" value="8" literal="BORDER CHEVIOT"/> <eLiterals name="CO" value="9" literal="CHAROLLAIS"/> <eLiterals name="CF" value="10" literal="CLUN FOREST"/> <eLiterals name="CL" value="11" literal="COLUMBIA"/> <eLiterals name="CP" value="12" literal="COOPWORTH"/> <eLiterals name="CR" value="13" literal="CORRIEDALE"/> <eLiterals name="DH" value="14" literal="DORSET - Horned"/> <eLiterals name="DP" value="15" literal="DORSET - Polled"/> <eLiterals name="DL" value="16" literal="DLS"/> <eLiterals name="ER" value="17" literal="EAST FRIESLAND"/> <eLiterals name="FN" value="18" literal="FINNISH LANDRACE "/> <eLiterals name="HS" value="19" literal="HAMPSHIRE"/> <eLiterals name="HY" value="20" literal="HYBRID"/> <eLiterals name="IL" value="21" literal="ICELANDIC"/> <eLiterals name="KK" value="22" literal="KARAKUL"/> <eLiterals name="KA" value="23" literal="KATAHDIN"/> <eLiterals name="KH" value="24" literal="KERRY HILL"/> <eLiterals name="BL" value="25" literal="LEICESTER - Border"/> <eLiterals name="LE" value="26" literal="LEICESTER - English"/> <eLiterals name="HL" value="27" literal="LEISTER - Hexam"/> <eLiterals name="LI" value="28" literal="LINCOLN"/> <eLiterals name="MM" value="29"/> <eLiterals name="MP" value="30" literal="MERINO POLLED"/> <eLiterals name="MT" value="31"/> <eLiterals name="NL" value="32" literal="NEWFOUNDLAND LOCO"/> <eLiterals name="NC" value="33" literal="NORTH COUNTRY CHEVIOT"/> <eLiterals name="OX" value="34" literal="OXFORD"/> <eLiterals name="PE" value="35" literal="PERENDALE"/> <eLiterals name="PO" value="36" literal="POLYPAY"/> <eLiterals name="RG" value="37" literal="RAMBOUILLET"/> <eLiterals name="RV" value="38" literal="ROMANOV"/> <eLiterals name="RM" value="39" literal="ROMNELET"/> <eLiterals name="RY" value="40" literal="ROMNEY"/> <eLiterals name="SX" value="41" literal="ST. CROIX"/> <eLiterals name="SC" value="42" literal="SCOTTISH BLACKFACE"/> <eLiterals name="SL" value="43" literal="SHETLAND"/> <eLiterals name="SR" value="44" literal="SHROPSHIRE"/> <eLiterals name="ST" value="45" literal="SOUTHDOWN"/> <eLiterals name="SU" value="46" literal="SUFFOLK"/> <eLiterals name="TA" value="47" literal="TARGHEE"/> <eLiterals name="TX" value="48" literal="TEXEL"/> <eLiterals name="TU" value="49" literal="TUNIS"/> <eLiterals name="XL" value="50" literal="CROSSBRED - Large"/> <eLiterals name="XM" value="51" literal="CROSSBRED - Medium"/> <eLiterals name="ZS" value="52" literal="CROSSBRED - Small"/> <eLiterals name="Unspecified" value="53" literal=""/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="BovineBeef" eSuperTypes="#//Bovine"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="beefBreed" eType="#//BeefBreed" defaultValueLiteral="Unspecified"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Ovine" eSuperTypes="#//Animal"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="sheepBreed" eType="#//SheepBreed" defaultValueLiteral="Unspecified"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="scrapieTag" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="BeefBreed"> <eLiterals name="AN" literal="ABERDEEN ANGUS"/> <eLiterals name="AB" value="1" literal="ABONDANCE"/> <eLiterals name="AF" value="2" literal="AFRICANDER"/> <eLiterals name="AL" value="3" literal="ALPINE"/> <eLiterals name="AE" value="4" literal="AMERICAN BREED"/> <eLiterals name="AM" value="5" literal="AMERIFAX"/> <eLiterals name="AK" value="6" literal="ANKINA"/> <eLiterals name="AW" value="7" literal="ANKOLE-WATUSI"/> <eLiterals name="AU" value="8" literal="AUBRAC"/> <eLiterals name="BA" value="9" literal="BARZONA"/> <eLiterals name="BF" value="10" literal="BEEF FRIESIAN"/> <eLiterals name="BE" value="11" literal="BEEFALO"/> <eLiterals name="BM" value="12" literal="BEEFMASTER"/> <eLiterals name="BB" value="13" literal="BELIGIAN BLUE"/> <eLiterals name="BG" value="14" literal="BELTED GALLOWAY"/> <eLiterals name="BD" value="15" literal="BLONDE D=AQUITAINE"/> <eLiterals name="NS" value="16" literal="BONSMARA"/> <eLiterals name="BO" value="17" literal="BRAFORD"/> <eLiterals name="BR" value="18" literal="BRAHMAN"/> <eLiterals name="BH" value="19" literal="BRAHMENTAL"/> <eLiterals name="BI" value="20" literal="BRAHMOUSIN"/> <eLiterals name="BL" value="21" literal="BRALER"/> <eLiterals name="BN" value="22" literal="BRANGUS"/> <eLiterals name="BU" value="23" literal="BRAUNVIEH"/> <eLiterals name="BW" value="24" literal="BRITISH WHITE"/> <eLiterals name="SB" value="25" literal="BROWN SWISS (beef/boeuf)"/> <eLiterals name="BQ" value="26" literal="BUELINGO"/> <eLiterals name="CP" value="27" literal="CAMPINE RED PIED"/> <eLiterals name="CN" value="28" literal="CANADIENNE"/> <eLiterals name="CB" value="29" literal="CHARBRAY"/> <eLiterals name="CH" value="30" literal="CHAROLAIS"/> <eLiterals name="CG" value="31" literal="CHI-ANGUS"/> <eLiterals name="CM" value="32" literal="CHI-MAINE"/> <eLiterals name="CA" value="33" literal="CHIANINA"/> <eLiterals name="XX" value="34" literal="CROSSBREDS"/> <eLiterals name="XT" value="35" literal="CROSSBRED TWINNER"/> <eLiterals name="CU" value="36" literal="CUMBERLAND"/> <eLiterals name="DB" value="37" literal="DANISH BLACK AND WHITE"/> <eLiterals name="DJ" value="38" literal="DANISH JERSEY"/> <eLiterals name="RW" value="39" literal="DANISH RED AND WHITE"/> <eLiterals name="DE" value="40" literal="DEVON"/> <eLiterals name="DR" value="41" literal="DEXTER"/> <eLiterals name="DL" value="42" literal="DUTCH BELTED"/> <eLiterals name="FP" value="43" literal="EAST FLEMISH RED PIED"/> <eLiterals name="ER" value="44" literal="ERINGER"/> <eLiterals name="FA" value="45" literal="FLAMANDE"/> <eLiterals name="FL" value="46" literal="FLECKVIEH"/> <eLiterals name="FC" value="47" literal="FLORIDA CRACKER"/> <eLiterals name="FR" value="48" literal="FRIBOURG"/> <eLiterals name="FB" value="49" literal="FRIESIAN (Belgium)"/> <eLiterals name="DF" value="50" literal="FRIESIAN (Dutch)"/> <eLiterals name="GA" value="51" literal="GALLOWAY (beef/boeuf)"/> <eLiterals name="GS" value="52" literal="GASCONNE"/> <eLiterals name="GE" value="53" literal="GELBRAY"/> <eLiterals name="GV" value="54" literal="GELBVIEH"/> <eLiterals name="GI" value="55" literal="GRAUVIEH"/> <eLiterals name="GR" value="56" literal="GRONINGEN"/> <eLiterals name="GZ" value="57" literal="GUZERA"/> <eLiterals name="GY" value="58" literal="GYR (or Gir)"/> <eLiterals name="HC" value="59" literal="HAYS CONVERTER"/> <eLiterals name="HB" value="60" literal="HEREFORD (black)"/> <eLiterals name="HH" value="61" literal="HEREFORD (horned)"/> <eLiterals name="HP" value="62" literal="HEREFORD (polled)"/> <eLiterals name="SH" value="63" literal="HIGHLAND (Scotch Highland)"/> <eLiterals name="HY" value="64" literal="HYBRID (Alberta Synthtic)"/> <eLiterals name="IB" value="65" literal="INDU BRAZIL"/> <eLiterals name="KY" value="66" literal="KERRY"/> <eLiterals name="KB" value="67" literal="KOBE (Wagyu)"/> <eLiterals name="LM" value="68" literal="LIMOUSIN"/> <eLiterals name="LR" value="69" literal="LINCOLN RED"/> <eLiterals name="LO" value="70" literal="LOWLINE (Loala)"/> <eLiterals name="LU" value="71" literal="LUING"/> <eLiterals name="MA" value="72" literal="MAINE-ANJOU"/> <eLiterals name="MH" value="73" literal="MASHONA"/> <eLiterals name="ML" value="74" literal="MANDALONG SPECIAL"/> <eLiterals name="MR" value="75" literal="MARCHIGIANA"/> <eLiterals name="ME" value="76" literal="MAREMMANA"/> <eLiterals name="MI" value="77" literal="MEUSE-RHINE-ISSEL"/> <eLiterals name="MC" value="78" literal="MEXICAN CORRIENTE"/> <eLiterals name="MO" value="79" literal="MONTBELIARDE"/> <eLiterals name="MU" value="80" literal="MURRAH"/> <eLiterals name="MG" value="81" literal="MURRAY GREY"/> <eLiterals name="NE" value="82" literal="NELLORE"/> <eLiterals name="NM" value="83" literal="NORMANDE"/> <eLiterals name="NR" value="84" literal="NORWEGIAN RED"/> <eLiterals name="PA" value="85" literal="PARTHENAISE"/> <eLiterals name="PR" value="86" literal="PIE ROUGE"/> <eLiterals name="PI" value="87" literal="PIEDMONTESE"/> <eLiterals name="PZ" value="88" literal="PINZGAUER"/> <eLiterals name="RA" value="89" literal="RANGER"/> <eLiterals name="AR" value="90" literal="RED ANGUS"/> <eLiterals name="RR" value="91" literal="RED BRAHMAN"/> <eLiterals name="RB" value="92" literal="RED BRANGUS"/> <eLiterals name="RD" value="93" literal="RED DANE (Danish Red)"/> <eLiterals name="RP" value="94" literal="RED POLL"/> <eLiterals name="RN" value="95" literal="ROMAGNOLA"/> <eLiterals name="RS" value="96" literal="ROMOSINUANO"/> <eLiterals name="RO" value="97" literal="ROTBUNTE"/> <eLiterals name="DN" value="98" literal="ROUGE DU NORD"/> <eLiterals name="SW" value="99" literal="SAHIWAL"/> <eLiterals name="SA" value="100" literal="SALERS"/> <eLiterals name="SG" value="101" literal="SANTA GERTRUDIS"/> <eLiterals name="SL" value="102" literal="SEMEPOL"/> <eLiterals name="SE" value="103" literal="SENAPOL"/> <eLiterals name="SV" value="104" literal="SHAVER BEEF BLEND"/> <eLiterals name="SS" value="105" literal="SHORTHORN (beef-scotch)"/> <eLiterals name="IS" value="106" literal="SHORTHORN (illawarra)"/> <eLiterals name="SP" value="107" literal="SHORTHORN (polled)"/> <eLiterals name="SI" value="108" literal="SIMBRAH"/> <eLiterals name="SM" value="109" literal="SIMMENTAL"/> <eLiterals name="DS" value="110" literal="SOUTH DEVON"/> <eLiterals name="SX" value="111" literal="SUSSEX"/> <eLiterals name="TP" value="112" literal="TABAPUA"/> <eLiterals name="TA" value="113" literal="TARENTAISE"/> <eLiterals name="TG" value="114" literal="TASMANIAN GREY"/> <eLiterals name="TN" value="115" literal="TAURINDICUS"/> <eLiterals name="TL" value="116" literal="TEXAS LONGHORN"/> <eLiterals name="TI" value="117" literal="TULI"/> <eLiterals name="WB" value="118" literal="WELSH BLACK"/> <eLiterals name="WF" value="119" literal="WEST FLEMISH RED"/> <eLiterals name="WP" value="120" literal="WHITE PARK"/> <eLiterals name="YA" value="121" literal="YAK"/> <eLiterals name="Unspecified" value="122" literal=""/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="DairyBreed"> <eLiterals name="LD" literal="AMERICAN LINEBACK"/> <eLiterals name="AY" value="1" literal="AYRSHIRE"/> <eLiterals name="BS" value="2" literal="BROWN SWISS"/> <eLiterals name="GD" value="3" literal="GALLOWAY"/> <eLiterals name="GU" value="4" literal="GUERNSEY"/> <eLiterals name="HO" value="5" literal="HOLSTEIN"/> <eLiterals name="JE" value="6" literal="JERSEY"/> <eLiterals name="WW" value="7" literal="RED HOLSTEIN"/> <eLiterals name="FM" value="8" literal="ROUGE FLAMAND"/> <eLiterals name="MS" value="9" literal="SHORTHORN"/> <eLiterals name="Unspecified" value="10" literal=""/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="BovineBison" eSuperTypes="#//Bovine"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="buffaloBreed" eType="#//BisonBreed" defaultValueLiteral="Unspecified"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="BovineDairy" eSuperTypes="#//Bovine"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="dairyBreed" eType="#//DairyBreed" defaultValueLiteral="Unspecified"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="TagApplied" eSuperTypes="#//Event"/> <eClassifiers xsi:type="ecore:EClass" name="MovedIn" eSuperTypes="#//Event"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="sourcePin" lowerBound="1" eType="#//PremisesIdNumber"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="MovedOut" eSuperTypes="#//Event"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="destinationPin" lowerBound="1" eType="#//PremisesIdNumber"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="LostTag" eSuperTypes="#//Event"/> <eClassifiers xsi:type="ecore:EClass" name="ReplacedTag" eSuperTypes="#//Event"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="oldId" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" changeable="false" volatile="true" transient="true" defaultValueLiteral="" derived="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="usainNumberUsedForOldId" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean" changeable="false" volatile="true" transient="true" derived="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="oldTag" lowerBound="1" eType="#//Tag"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Imported" eSuperTypes="#//Event"/> <eClassifiers xsi:type="ecore:EClass" name="Exported" eSuperTypes="#//Event"/> <eClassifiers xsi:type="ecore:EClass" name="Sighting" eSuperTypes="#//Event"> <eStructuralFeatures xsi:type="ecore:EReference" name="location" eType="#//Location"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Slaughtered" eSuperTypes="#//Event"/> <eClassifiers xsi:type="ecore:EClass" name="Died" eSuperTypes="#//Event"/> <eClassifiers xsi:type="ecore:EClass" name="TagRetired" eSuperTypes="#//Event"/> <eClassifiers xsi:type="ecore:EClass" name="AnimalMissing" eSuperTypes="#//Event"/> <eClassifiers xsi:type="ecore:EClass" name="ICVI" eSuperTypes="#//Event"/> <eClassifiers xsi:type="ecore:EDataType" name="Age" instanceClassName="com.verticon.tracker.util.Age"/> <eClassifiers xsi:type="ecore:EDataType" name="USPhoneNumber" instanceClassName="java.lang.String"/> <eClassifiers xsi:type="ecore:EClass" name="WeighIn" eSuperTypes="#//Event"> <eOperations name="previousWeighIn" eType="#//WeighIn"> <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel"> <details key="body" value="Collection&lt;Event> weighIns = getPreviousWeighInEvents();&#x9;&#x9;&#x9;&#xA;&#x9;&#x9;WeighIn lastWeighIn = getPreviousWeighInEvent(weighIns);&#xA;&#x9;&#x9;return lastWeighIn;"/> <details key="documentation" value="The previous WeighIn event for the same animal."/> </eAnnotations> </eOperations> <eStructuralFeatures xsi:type="ecore:EAttribute" name="weight" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EIntegerObject"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="weightGainPerDay" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDoubleObject" changeable="false" volatile="true" transient="true" derived="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="SwineBreed"> <eLiterals name="BK" literal="BERKSHIRE"/> <eLiterals name="CW" value="1" literal="CHESTER WHITE"/> <eLiterals name="DU" value="2" literal="DUROC"/> <eLiterals name="HA" value="3" literal="HAMPSHIRE"/> <eLiterals name="LC" value="4" literal="LACOMBE"/> <eLiterals name="LA" value="5" literal="LANDRACE"/> <eLiterals name="LB" value="6" literal="LARGE BLACK (British)"/> <eLiterals name="LW" value="7" literal="LARGE WHITE"/> <eLiterals name="PE" value="8" literal="PIETRAIN"/> <eLiterals name="PC" value="9" literal="POLAND CHINA"/> <eLiterals name="RW" value="10" literal="RED WATTLE"/> <eLiterals name="SO" value="11" literal="SPOTTED"/> <eLiterals name="TM" value="12" literal="TAMWORTH"/> <eLiterals name="WS" value="13" literal="WESSEX SADDLEBACK"/> <eLiterals name="YO" value="14" literal="YORKSHIRE"/> <eLiterals name="Unspecified" value="15" literal=""/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Swine" eSuperTypes="#//Animal"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="swineBreed" eType="#//SwineBreed" defaultValueLiteral="Unspecified"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="rightEarNotching" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="leftEarNotching" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="HorseBreed"> <eLiterals name="AC" literal="AMERICAN BASHKIR CURLY"/> <eLiterals name="AS" value="1" literal="AMERICAN SADDLEBRED"/> <eLiterals name="AA" value="2" literal="ANDALUSIAN"/> <eLiterals name="AO" value="3" literal="ANGLO-ARABIAN"/> <eLiterals name="NO" value="4" literal="ANGLO-NORMAND"/> <eLiterals name="AP" value="5" literal="APPALOSA"/> <eLiterals name="AD" value="6" literal="ARABIAN"/> <eLiterals name="BW" value="7" literal="BADEN-WURTTEMBERG"/> <eLiterals name="BY" value="8" literal="BAYERISCHES WARMBLOOD"/> <eLiterals name="BU" value="9" literal="BUCKSKIN"/> <eLiterals name="CI" value="10" literal="CANADIAN HORSE"/> <eLiterals name="FC" value="11" literal="CHEVAL DE SELLE FRANCAIS (FRENCH SADDLE HORSE)"/> <eLiterals name="CV" value="12" literal="CLEVELAND BAY"/> <eLiterals name="CY" value="13" literal="CLYDESDALE"/> <eLiterals name="CM" value="14" literal="CONNEMARA"/> <eLiterals name="DT" value="15" literal="DARTMOOR PONY"/> <eLiterals name="DW" value="16" literal="DUTCH WARMBLOOD"/> <eLiterals name="EX" value="17" literal="EXMOOR PONY"/> <eLiterals name="FE" value="18" literal="FELL PONY"/> <eLiterals name="FJ" value="19" literal="FJORD"/> <eLiterals name="FH" value="20" literal="FRENCH HORSE"/> <eLiterals name="FR" value="21" literal="FRIESIAN"/> <eLiterals name="GL" value="22" literal="GELDERLANDER"/> <eLiterals name="WG" value="23" literal="GERMAN WARMBLOOD"/> <eLiterals name="HN" value="24" literal="HACKNEY (horse/cheval)"/> <eLiterals name="HK" value="25" literal="HACKNEY (pony/poney)"/> <eLiterals name="HF" value="26" literal="HAFLINGER"/> <eLiterals name="HV" value="27" literal="HANOVERIAN"/> <eLiterals name="HG" value="28" literal="HIGHLAND PONY"/> <eLiterals name="HT" value="29" literal="HOLSTEINER"/> <eLiterals name="HW" value="30" literal="HUNGARIAN WARMBLOOD"/> <eLiterals name="HU" value="31" literal="HUNTER"/> <eLiterals name="IC" value="32" literal="ICELANDIC"/> <eLiterals name="LZ" value="33" literal="LIPIZZANER"/> <eLiterals name="MU" value="34" literal="MINATURE HORSE"/> <eLiterals name="MF" value="35" literal="MISSOURI FOXTROTTING"/> <eLiterals name="MN" value="36" literal="MORGAN"/> <eLiterals name="NF" value="37" literal="NEW FOREST"/> <eLiterals name="NK" value="38" literal="NORIKER"/> <eLiterals name="OB" value="39" literal="OLDENBURG"/> <eLiterals name="PT" value="40" literal="PAINT"/> <eLiterals name="PL" value="41" literal="PALOMINO"/> <eLiterals name="PF" value="42" literal="PASO FINO"/> <eLiterals name="PH" value="43" literal="PERCHERON"/> <eLiterals name="PV" value="44" literal="PERUVIAN"/> <eLiterals name="PN" value="45" literal="PINTO"/> <eLiterals name="PW" value="46" literal="POLISH WARMBLOOD"/> <eLiterals name="OL" value="47" literal="POLO PONY"/> <eLiterals name="QH" value="48" literal="OUARTER HORSE"/> <eLiterals name="RH" value="49" literal="RHEINLANDER"/> <eLiterals name="RU" value="50" literal="RUSTIC PONY"/> <eLiterals name="SE" value="51" literal="SHETLAND"/> <eLiterals name="SY" value="52" literal="SHIRE"/> <eLiterals name="SN" value="53" literal="STANDARDBRED"/> <eLiterals name="SF" value="54" literal="SUFFOLK PUNCH"/> <eLiterals name="WW" value="55" literal="SWEDISH WARMBLOOD"/> <eLiterals name="WI" value="56" literal="SWISS HORSE"/> <eLiterals name="TP" value="57" literal="TARPAN"/> <eLiterals name="TW" value="58" literal="TENNESSEE WALKING"/> <eLiterals name="TH" value="59" literal="THOROUGHBRED"/> <eLiterals name="TR" value="60" literal="TRAKEHNER"/> <eLiterals name="TF" value="61" literal="TROTTEUR FRANCAIS"/> <eLiterals name="VK" value="62" literal="VIKING"/> <eLiterals name="WE" value="63" literal="WELSH"/> <eLiterals name="WF" value="64" literal="WESTFALEN"/> <eLiterals name="WU" value="65" literal="WURTTEMBERG"/> <eLiterals name="Unspecified" value="66" literal=""/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Equine" eSuperTypes="#//Animal"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="horseBreed" eType="#//HorseBreed" defaultValueLiteral="Unspecified"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="GoatBreed"> <eLiterals name="AI" literal="ALPINE"/> <eLiterals name="AG" value="1" literal="ANGORA"/> <eLiterals name="BZ" value="2" literal="BOER"/> <eLiterals name="CS" value="3" literal="CASHMERE"/> <eLiterals name="LN" value="4" literal="LA MANCHA"/> <eLiterals name="ND" value="5" literal="NIGERIAN DWARF"/> <eLiterals name="NU" value="6" literal="NUBIAN"/> <eLiterals name="OH" value="7" literal="OBERHASLI"/> <eLiterals name="PY" value="8" literal="PYGMY"/> <eLiterals name="EN" value="9" literal="SAANEN"/> <eLiterals name="TO" value="10" literal="TOGGENBURG"/> <eLiterals name="Unspecified" value="11"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Caprine" eSuperTypes="#//Animal"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="goatBreed" eType="#//GoatBreed" defaultValueLiteral="Unspecified"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Location"> <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:EDataType" name="URI" instanceClassName="java.lang.String"/> <eClassifiers xsi:type="ecore:EClass" name="MedicalCondition" eSuperTypes="#//Event"/> <eClassifiers xsi:type="ecore:EClass" name="MedicalTreatment" eSuperTypes="#//Event"> <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="product" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="manufacturer" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="lot" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="quantity" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="treatment" eType="#//Treatment"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="method" eType="#//TreatmentMethod"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="Treatment"> <eLiterals name="Unspecified" literal=""/> <eLiterals name="Vaccination" value="1" literal="Vaccination"/> <eLiterals name="Vitamin" value="2"/> <eLiterals name="Hormone" value="3"/> <eLiterals name="Prevention" value="4"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="TreatmentMethod"> <eLiterals name="Unspecified" literal=""/> <eLiterals name="Intramuscular" value="1"/> <eLiterals name="Nasal" value="2"/> <eLiterals name="Salve" value="3"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Birthing" eSuperTypes="#//Event"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="viability" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="assisted" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="difficulty" eType="#//OneToTen"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="OneToTen"> <eLiterals name="Unspecified" literal=""/> <eLiterals name="One" value="1"/> <eLiterals name="Two" value="2" literal="Two"/> <eLiterals name="Three" value="3"/> <eLiterals name="Four" value="4"/> <eLiterals name="Five" value="5" literal="Five"/> <eLiterals name="Six" value="6"/> <eLiterals name="Seven" value="7"/> <eLiterals name="Eight" value="8"/> <eLiterals name="Nine" value="9"/> <eLiterals name="Ten" value="10"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Calving" eSuperTypes="#//Birthing"/> <eClassifiers xsi:type="ecore:EClass" name="BirthDefect" eSuperTypes="#//Event"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="freemartin" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Mastitis" eSuperTypes="#//MedicalCondition"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="location" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="origin" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="MilkTest" eSuperTypes="#//Event"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="poundsProduced" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="percentButterFat" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="percentProtein" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="somaticCellCounts" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="otherSolids" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="HerdTest" eSuperTypes="#//Event"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="pregnant" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="daysSinceBredEstimate" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="bredDateEstimate" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDate" changeable="false" volatile="true" transient="true" derived="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="GenericEvent" eSuperTypes="#//Event"> <eOperations name="findSchema" eType="#//EventAttributeSchema"> <eParameters name="eventAttribute" eType="#//EventAttribute"/> </eOperations> <eStructuralFeatures xsi:type="ecore:EReference" name="eventAttributes" upperBound="-1" eType="#//EventAttribute" containment="true"/> <eStructuralFeatures xsi:type="ecore:EReference" name="eventSchema" lowerBound="1" eType="#//EventSchema"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="EventAttribute" 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" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="EventSchema"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" iD="true"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="description" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="animalType" upperBound="-1" eType="#//AnimalType"/> <eStructuralFeatures xsi:type="ecore:EReference" name="eventAttributes" lowerBound="1" upperBound="-1" eType="#//EventAttributeSchema" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="AnimalType"> <eLiterals name="Unspecified" literal=""/> <eLiterals name="Swine" value="2"/> <eLiterals name="Equine" value="3"/> <eLiterals name="Caprine" value="4"/> <eLiterals name="Ovine"/> <eLiterals name="BovineBeef" value="5"/> <eLiterals name="BovineDairy" value="6"/> <eLiterals name="BovineBison" value="7"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="EventAttributeSchema"> <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="dataType" lowerBound="1" eType="#//EventDataType"/> <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:EEnum" name="EventDataType"> <eLiterals name="String"/> <eLiterals name="Integer" value="1"/> <eLiterals name="Boolean" value="2"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="Schema"> <eStructuralFeatures xsi:type="ecore:EReference" name="eventSchemas" upperBound="-1" eType="#//EventSchema" containment="true"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="USQualityGrade"> <eLiterals name="Unspecified" literal=""/> <eLiterals name="Standard" value="1"/> <eLiterals name="Select" value="2"/> <eLiterals name="Choice" value="3"/> <eLiterals name="Prime" value="4"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="USBeefYieldGrade"> <eLiterals name="Unspecified" literal=""/> <eLiterals name="One" value="1" literal="1"/> <eLiterals name="Two" value="2" literal="2"/> <eLiterals name="Three" value="3" literal="3"/> <eLiterals name="Four" value="4" literal="4"/> <eLiterals name="Five" value="5" literal="5"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="USBeefGrading" eSuperTypes="#//Event"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="qualityGrade" eType="#//USQualityGrade"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="qualityGradeLevel" eType="#//Level"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="yieldGrade" eType="#//USBeefYieldGrade"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="Level"> <eLiterals name="Unspecified" literal=""/> <eLiterals name="Low" value="1"/> <eLiterals name="Average" value="2"/> <eLiterals name="High" value="3"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="USOvineGrading" eSuperTypes="#//Event"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="qualityGrade" eType="#//USQualityGrade"/> <eStructuralFeatures xsi:type="ecore:EAttribute" name="qualityGradeLevel" eType="#//Level"/> </eClassifiers> <eClassifiers xsi:type="ecore:EEnum" name="USSwineQualityGrade"> <eLiterals name="Unspecified" literal=""/> <eLiterals name="One" value="1" literal="U.S. No. 1"/> <eLiterals name="Two" value="2" literal="U.S. No. 2"/> <eLiterals name="Three" value="3" literal="U.S. No. 3"/> <eLiterals name="Four" value="4" literal="U.S. No. 4"/> </eClassifiers> <eClassifiers xsi:type="ecore:EClass" name="USSwineGrading" eSuperTypes="#//Event"> <eStructuralFeatures xsi:type="ecore:EAttribute" name="qualityGrade" eType="#//USSwineQualityGrade"/> </eClassifiers> </ecore:EPackage>
github:ecore:/data/jconlon/tracker/tracker/tags/REL-0.3.5/com.verticon.tracker/model/tracker.ecore
ecore
tracker Animal allEvents addTemplate eventTemplate activeTag eventHistory lastWeighIn getAge birthDate sex Unspecified tags species breed sexCode speciesCode id comments lastEventDateTime dam sire weight weightGainPerDay type visualID ageInDays alternativeID Sex Unspecified F Female M Male C Neutered/castrated male S Neutered/spayed female Tag usainNumberUsed events id Bovine Event dateTime eventCode 0 electronicallyRead false correction false comments tag id TagAllocated Premises eventHistory findAnimal id addTemplate ains animalTemplate premisesId emailContact animals unAppliedTags locations uri schema name PremisesIdNumber java.lang.String java.lang.String Email java.lang.String java.lang.String BisonBreed WO WOOD BISON PB PLAINS BISON Unspecified SheepBreed CD ARCOTT - Canadian OU ARCOTT - Outaouais RI ARCOTT - Rideau LY BARBADOS BLACK BELLY FB BLACK FACE BW BLACK WELSH MOUNTAIN BF BLUE FACED LEISTER BO BOOROULA BC BORDER CHEVIOT CO CHAROLLAIS CF CLUN FOREST CL COLUMBIA CP COOPWORTH CR CORRIEDALE DH DORSET - Horned DP DORSET - Polled DL DLS ER EAST FRIESLAND FN FINNISH LANDRACE HS HAMPSHIRE HY HYBRID IL ICELANDIC KK KARAKUL KA KATAHDIN KH KERRY HILL BL LEICESTER - Border LE LEICESTER - English HL LEISTER - Hexam LI LINCOLN MM MM MP MERINO POLLED MT MT NL NEWFOUNDLAND LOCO NC NORTH COUNTRY CHEVIOT OX OXFORD PE PERENDALE PO POLYPAY RG RAMBOUILLET RV ROMANOV RM ROMNELET RY ROMNEY SX ST. CROIX SC SCOTTISH BLACKFACE SL SHETLAND SR SHROPSHIRE ST SOUTHDOWN SU SUFFOLK TA TARGHEE TX TEXEL TU TUNIS XL CROSSBRED - Large XM CROSSBRED - Medium ZS CROSSBRED - Small Unspecified BovineBeef beefBreed Unspecified Ovine sheepBreed Unspecified scrapieTag BeefBreed AN ABERDEEN ANGUS AB ABONDANCE AF AFRICANDER AL ALPINE AE AMERICAN BREED AM AMERIFAX AK ANKINA AW ANKOLE-WATUSI AU AUBRAC BA BARZONA BF BEEF FRIESIAN BE BEEFALO BM BEEFMASTER BB BELIGIAN BLUE BG BELTED GALLOWAY BD BLONDE D=AQUITAINE NS BONSMARA BO BRAFORD BR BRAHMAN BH BRAHMENTAL BI BRAHMOUSIN BL BRALER BN BRANGUS BU BRAUNVIEH BW BRITISH WHITE SB BROWN SWISS (beef/boeuf) BQ BUELINGO CP CAMPINE RED PIED CN CANADIENNE CB CHARBRAY CH CHAROLAIS CG CHI-ANGUS CM CHI-MAINE CA CHIANINA XX CROSSBREDS XT CROSSBRED TWINNER CU CUMBERLAND DB DANISH BLACK AND WHITE DJ DANISH JERSEY RW DANISH RED AND WHITE DE DEVON DR DEXTER DL DUTCH BELTED FP EAST FLEMISH RED PIED ER ERINGER FA FLAMANDE FL FLECKVIEH FC FLORIDA CRACKER FR FRIBOURG FB FRIESIAN (Belgium) DF FRIESIAN (Dutch) GA GALLOWAY (beef/boeuf) GS GASCONNE GE GELBRAY GV GELBVIEH GI GRAUVIEH GR GRONINGEN GZ GUZERA GY GYR (or Gir) HC HAYS CONVERTER HB HEREFORD (black) HH HEREFORD (horned) HP HEREFORD (polled) SH HIGHLAND (Scotch Highland) HY HYBRID (Alberta Synthtic) IB INDU BRAZIL KY KERRY KB KOBE (Wagyu) LM LIMOUSIN LR LINCOLN RED LO LOWLINE (Loala) LU LUING MA MAINE-ANJOU MH MASHONA ML MANDALONG SPECIAL MR MARCHIGIANA ME MAREMMANA MI MEUSE-RHINE-ISSEL MC MEXICAN CORRIENTE MO MONTBELIARDE MU MURRAH MG MURRAY GREY NE NELLORE NM NORMANDE NR NORWEGIAN RED PA PARTHENAISE PR PIE ROUGE PI PIEDMONTESE PZ PINZGAUER RA RANGER AR RED ANGUS RR RED BRAHMAN RB RED BRANGUS RD RED DANE (Danish Red) RP RED POLL RN ROMAGNOLA RS ROMOSINUANO RO ROTBUNTE DN ROUGE DU NORD SW SAHIWAL SA SALERS SG SANTA GERTRUDIS SL SEMEPOL SE SENAPOL SV SHAVER BEEF BLEND SS SHORTHORN (beef-scotch) IS SHORTHORN (illawarra) SP SHORTHORN (polled) SI SIMBRAH SM SIMMENTAL DS SOUTH DEVON SX SUSSEX TP TABAPUA TA TARENTAISE TG TASMANIAN GREY TN TAURINDICUS TL TEXAS LONGHORN TI TULI WB WELSH BLACK WF WEST FLEMISH RED WP WHITE PARK YA YAK Unspecified DairyBreed LD AMERICAN LINEBACK AY AYRSHIRE BS BROWN SWISS GD GALLOWAY GU GUERNSEY HO HOLSTEIN JE JERSEY WW RED HOLSTEIN FM ROUGE FLAMAND MS SHORTHORN Unspecified BovineBison buffaloBreed Unspecified BovineDairy dairyBreed Unspecified TagApplied MovedIn sourcePin MovedOut destinationPin LostTag ReplacedTag oldId usainNumberUsedForOldId oldTag Imported Exported Sighting location Slaughtered Died TagRetired AnimalMissing ICVI Age com.verticon.tracker.util.Age com.verticon.tracker.util.Age USPhoneNumber java.lang.String java.lang.String WeighIn previousWeighIn weight weightGainPerDay SwineBreed BK BERKSHIRE CW CHESTER WHITE DU DUROC HA HAMPSHIRE LC LACOMBE LA LANDRACE LB LARGE BLACK (British) LW LARGE WHITE PE PIETRAIN PC POLAND CHINA RW RED WATTLE SO SPOTTED TM TAMWORTH WS WESSEX SADDLEBACK YO YORKSHIRE Unspecified Swine swineBreed Unspecified rightEarNotching leftEarNotching HorseBreed AC AMERICAN BASHKIR CURLY AS AMERICAN SADDLEBRED AA ANDALUSIAN AO ANGLO-ARABIAN NO ANGLO-NORMAND AP APPALOSA AD ARABIAN BW BADEN-WURTTEMBERG BY BAYERISCHES WARMBLOOD BU BUCKSKIN CI CANADIAN HORSE FC CHEVAL DE SELLE FRANCAIS (FRENCH SADDLE HORSE) CV CLEVELAND BAY CY CLYDESDALE CM CONNEMARA DT DARTMOOR PONY DW DUTCH WARMBLOOD EX EXMOOR PONY FE FELL PONY FJ FJORD FH FRENCH HORSE FR FRIESIAN GL GELDERLANDER WG GERMAN WARMBLOOD HN HACKNEY (horse/cheval) HK HACKNEY (pony/poney) HF HAFLINGER HV HANOVERIAN HG HIGHLAND PONY HT HOLSTEINER HW HUNGARIAN WARMBLOOD HU HUNTER IC ICELANDIC LZ LIPIZZANER MU MINATURE HORSE MF MISSOURI FOXTROTTING MN MORGAN NF NEW FOREST NK NORIKER OB OLDENBURG PT PAINT PL PALOMINO PF PASO FINO PH PERCHERON PV PERUVIAN PN PINTO PW POLISH WARMBLOOD OL POLO PONY QH OUARTER HORSE RH RHEINLANDER RU RUSTIC PONY SE SHETLAND SY SHIRE SN STANDARDBRED SF SUFFOLK PUNCH WW SWEDISH WARMBLOOD WI SWISS HORSE TP TARPAN TW TENNESSEE WALKING TH THOROUGHBRED TR TRAKEHNER TF TROTTEUR FRANCAIS VK VIKING WE WELSH WF WESTFALEN WU WURTTEMBERG Unspecified Equine horseBreed Unspecified GoatBreed AI ALPINE AG ANGORA BZ BOER CS CASHMERE LN LA MANCHA ND NIGERIAN DWARF NU NUBIAN OH OBERHASLI PY PYGMY EN SAANEN TO TOGGENBURG Unspecified Unspecified Caprine goatBreed Unspecified Location name URI java.lang.String java.lang.String MedicalCondition MedicalTreatment name product manufacturer lot quantity treatment method Treatment Unspecified Vaccination Vaccination Vitamin Vitamin Hormone Hormone Prevention Prevention TreatmentMethod Unspecified Intramuscular Intramuscular Nasal Nasal Salve Salve Birthing viability assisted difficulty OneToTen Unspecified One One Two Two Three Three Four Four Five Five Six Six Seven Seven Eight Eight Nine Nine Ten Ten Calving BirthDefect freemartin Mastitis location origin MilkTest poundsProduced percentButterFat percentProtein somaticCellCounts otherSolids HerdTest pregnant daysSinceBredEstimate bredDateEstimate GenericEvent findSchema eventAttribute eventAttributes eventSchema EventAttribute java.util.Map$Entry java.util.Map$Entry key value EventSchema name description animalType eventAttributes AnimalType Unspecified Swine Swine Equine Equine Caprine Caprine Ovine Ovine BovineBeef BovineBeef BovineDairy BovineDairy BovineBison BovineBison EventAttributeSchema name dataType description EventDataType String String Integer Integer Boolean Boolean Schema eventSchemas USQualityGrade Unspecified Standard Standard Select Select Choice Choice Prime Prime USBeefYieldGrade Unspecified One 1 Two 2 Three 3 Four 4 Five 5 USBeefGrading qualityGrade qualityGradeLevel yieldGrade Level Unspecified Low Low Average Average High High USOvineGrading qualityGrade qualityGradeLevel USSwineQualityGrade Unspecified One U.S. No. 1 Two U.S. No. 2 Three U.S. No. 3 Four U.S. No. 4 USSwineGrading qualityGrade
null
{"directed":true,"nodes":[{"nsPrefix":"com.verticon.tracker","nsURI":"http://www.verticon.com/ns/tracker/0.1.0","name":"tracker","id":0,"eClass":"EPackage"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Animal","instanceClass":null,"abstract":true,"id":1,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"Sex","instanceClass":null,"id":2,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Tag","instanceClass":null,"abstract":false,"id":3,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Bovine","instanceClass":null,"abstract":true,"id":4,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Event","instanceClass":null,"abstract":true,"id":5,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TagAllocated","instanceClass":null,"abstract":false,"id":6,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Premises","instanceClass":null,"abstract":false,"id":7,"interface":false,"eClass":"EClass"},{"instanceTypeName":"java.lang.String","defaultValue":null,"instanceClassName":"java.lang.String","name":"PremisesIdNumber","instanceClass":"java.lang.String","id":8,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.lang.String","defaultValue":null,"instanceClassName":"java.lang.String","name":"Email","instanceClass":"java.lang.String","id":9,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":null,"instanceClassName":null,"name":"BisonBreed","instanceClass":null,"id":10,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"SheepBreed","instanceClass":null,"id":11,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BovineBeef","instanceClass":null,"abstract":false,"id":12,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Ovine","instanceClass":null,"abstract":false,"id":13,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"BeefBreed","instanceClass":null,"id":14,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"DairyBreed","instanceClass":null,"id":15,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BovineBison","instanceClass":null,"abstract":false,"id":16,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BovineDairy","instanceClass":null,"abstract":false,"id":17,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TagApplied","instanceClass":null,"abstract":false,"id":18,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MovedIn","instanceClass":null,"abstract":false,"id":19,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MovedOut","instanceClass":null,"abstract":false,"id":20,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"LostTag","instanceClass":null,"abstract":false,"id":21,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ReplacedTag","instanceClass":null,"abstract":false,"id":22,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Imported","instanceClass":null,"abstract":false,"id":23,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Exported","instanceClass":null,"abstract":false,"id":24,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Sighting","instanceClass":null,"abstract":false,"id":25,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Slaughtered","instanceClass":null,"abstract":false,"id":26,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Died","instanceClass":null,"abstract":false,"id":27,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"TagRetired","instanceClass":null,"abstract":false,"id":28,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"AnimalMissing","instanceClass":null,"abstract":false,"id":29,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"ICVI","instanceClass":null,"abstract":false,"id":30,"interface":false,"eClass":"EClass"},{"instanceTypeName":"com.verticon.tracker.util.Age","defaultValue":null,"instanceClassName":"com.verticon.tracker.util.Age","name":"Age","instanceClass":null,"id":31,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":"java.lang.String","defaultValue":null,"instanceClassName":"java.lang.String","name":"USPhoneNumber","instanceClass":"java.lang.String","id":32,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"WeighIn","instanceClass":null,"abstract":false,"id":33,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"SwineBreed","instanceClass":null,"id":34,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Swine","instanceClass":null,"abstract":false,"id":35,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"HorseBreed","instanceClass":null,"id":36,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Equine","instanceClass":null,"abstract":false,"id":37,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"GoatBreed","instanceClass":null,"id":38,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Caprine","instanceClass":null,"abstract":false,"id":39,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Location","instanceClass":null,"abstract":false,"id":40,"interface":false,"eClass":"EClass"},{"instanceTypeName":"java.lang.String","defaultValue":null,"instanceClassName":"java.lang.String","name":"URI","instanceClass":"java.lang.String","id":41,"serializable":true,"eClass":"EDataType"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MedicalCondition","instanceClass":null,"abstract":false,"id":42,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MedicalTreatment","instanceClass":null,"abstract":false,"id":43,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"Treatment","instanceClass":null,"id":44,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"TreatmentMethod","instanceClass":null,"id":45,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Birthing","instanceClass":null,"abstract":false,"id":46,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"OneToTen","instanceClass":null,"id":47,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Calving","instanceClass":null,"abstract":false,"id":48,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"BirthDefect","instanceClass":null,"abstract":false,"id":49,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Mastitis","instanceClass":null,"abstract":false,"id":50,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"MilkTest","instanceClass":null,"abstract":false,"id":51,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"HerdTest","instanceClass":null,"abstract":false,"id":52,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"GenericEvent","instanceClass":null,"abstract":false,"id":53,"interface":false,"eClass":"EClass"},{"instanceTypeName":"java.util.Map$Entry","defaultValue":null,"instanceClassName":"java.util.Map$Entry","name":"EventAttribute","instanceClass":"java.util.Map$Entry","abstract":false,"id":54,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EventSchema","instanceClass":null,"abstract":false,"id":55,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"AnimalType","instanceClass":null,"id":56,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"EventAttributeSchema","instanceClass":null,"abstract":false,"id":57,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"EventDataType","instanceClass":null,"id":58,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"Schema","instanceClass":null,"abstract":false,"id":59,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"USQualityGrade","instanceClass":null,"id":60,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"instanceClassName":null,"name":"USBeefYieldGrade","instanceClass":null,"id":61,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"USBeefGrading","instanceClass":null,"abstract":false,"id":62,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"Level","instanceClass":null,"id":63,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"USOvineGrading","instanceClass":null,"abstract":false,"id":64,"interface":false,"eClass":"EClass"},{"instanceTypeName":null,"instanceClassName":null,"name":"USSwineQualityGrade","instanceClass":null,"id":65,"serializable":true,"eClass":"EEnum"},{"instanceTypeName":null,"defaultValue":null,"instanceClassName":null,"name":"USSwineGrading","instanceClass":null,"abstract":false,"id":66,"interface":false,"eClass":"EClass"},{"ordered":true,"upperBound":-1,"unique":true,"name":"allEvents","lowerBound":0,"id":67,"many":true,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"addTemplate","lowerBound":0,"id":68,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"activeTag","lowerBound":0,"id":69,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":-1,"unique":true,"name":"eventHistory","lowerBound":0,"id":70,"many":true,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"lastWeighIn","lowerBound":0,"id":71,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"getAge","lowerBound":0,"id":72,"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":"birthDate","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":"Unspecified","unsettable":false,"transient":false,"unique":true,"name":"sex","changeable":true,"lowerBound":0,"iD":false,"id":74,"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":"tags","changeable":true,"resolveProxies":true,"lowerBound":1,"id":75,"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":"species","changeable":false,"lowerBound":0,"iD":false,"id":76,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":"","volatile":true,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"","unsettable":false,"transient":true,"unique":true,"name":"breed","changeable":false,"lowerBound":0,"iD":false,"id":77,"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":"sexCode","changeable":false,"lowerBound":0,"iD":false,"id":78,"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":"speciesCode","changeable":false,"lowerBound":0,"iD":false,"id":79,"derived":true},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":true,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"id","changeable":true,"lowerBound":1,"iD":true,"id":80,"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":"comments","changeable":true,"lowerBound":0,"iD":false,"id":81,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":true,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":true,"unique":true,"name":"lastEventDateTime","changeable":false,"lowerBound":1,"iD":false,"id":82,"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":"dam","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":"sire","changeable":true,"resolveProxies":true,"lowerBound":0,"id":84,"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":"weight","changeable":false,"lowerBound":0,"iD":false,"id":85,"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":"weightGainPerDay","changeable":false,"lowerBound":0,"iD":false,"id":86,"derived":true},{"ordered":true,"upperBound":1,"volatile":true,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":true,"unique":true,"name":"type","changeable":false,"lowerBound":1,"iD":false,"id":87,"derived":true},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":true,"transient":false,"unique":true,"name":"visualID","changeable":true,"lowerBound":0,"iD":false,"id":88,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":true,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":true,"unique":true,"name":"ageInDays","changeable":false,"lowerBound":0,"iD":false,"id":89,"derived":true},{"ordered":false,"upperBound":1,"defaultValue":null,"volatile":true,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":true,"unique":false,"name":"alternativeID","changeable":false,"lowerBound":0,"iD":false,"id":90,"derived":true},{"id":91,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"eventTemplate","lowerBound":0,"id":92,"many":false,"required":false,"eClass":"EParameter"},{"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"},{"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"},{"name":"Unspecified","id":117,"value":0,"literal":"","eClass":"EEnumLiteral"},{"name":"F","id":118,"value":1,"literal":"Female","eClass":"EEnumLiteral"},{"name":"M","id":119,"value":2,"literal":"Male","eClass":"EEnumLiteral"},{"name":"C","id":120,"value":3,"literal":"Neutered/castrated male","eClass":"EEnumLiteral"},{"name":"S","id":121,"value":4,"literal":"Neutered/spayed female","eClass":"EEnumLiteral"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":true,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":true,"unique":true,"name":"usainNumberUsed","changeable":false,"lowerBound":1,"iD":false,"id":122,"derived":true},{"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":"events","changeable":true,"resolveProxies":true,"lowerBound":1,"id":123,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":"","volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"","unsettable":false,"transient":false,"unique":true,"name":"id","changeable":true,"lowerBound":1,"iD":false,"id":124,"derived":false},{"id":125,"eClass":"EGenericType"},{"id":126,"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":"tag","changeable":true,"resolveProxies":true,"lowerBound":1,"id":127,"derived":false},{"id":128,"eClass":"EGenericType"},{"id":129,"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":"dateTime","changeable":true,"lowerBound":1,"iD":false,"id":130,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":0,"volatile":true,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"0","unsettable":false,"transient":true,"unique":true,"name":"eventCode","changeable":false,"lowerBound":1,"iD":false,"id":131,"derived":true},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"false","unsettable":false,"transient":false,"unique":true,"name":"electronicallyRead","changeable":true,"lowerBound":0,"iD":false,"id":132,"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":"correction","changeable":true,"lowerBound":0,"iD":false,"id":133,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"comments","changeable":true,"lowerBound":0,"iD":false,"id":134,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":true,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":true,"unique":true,"name":"id","changeable":false,"lowerBound":1,"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"},{"id":143,"eClass":"EGenericType"},{"ordered":true,"upperBound":-1,"unique":true,"name":"eventHistory","lowerBound":0,"id":144,"many":true,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"findAnimal","lowerBound":0,"id":145,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"unique":true,"name":"addTemplate","lowerBound":0,"id":146,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"premisesId","changeable":true,"lowerBound":1,"iD":false,"id":147,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":"","volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"","unsettable":false,"transient":false,"unique":true,"name":"emailContact","changeable":true,"lowerBound":1,"iD":false,"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":"animals","changeable":true,"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":"unAppliedTags","changeable":true,"resolveProxies":true,"lowerBound":0,"id":150,"derived":false},{"container":false,"ordered":true,"upperBound":-1,"defaultValue":null,"volatile":false,"many":true,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"locations","changeable":true,"resolveProxies":true,"lowerBound":0,"id":151,"derived":false},{"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":152,"derived":false},{"container":false,"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EReference","defaultValueLiteral":null,"containment":true,"unsettable":false,"transient":false,"unique":true,"name":"schema","changeable":true,"resolveProxies":true,"lowerBound":0,"id":153,"derived":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":154,"derived":false},{"id":155,"eClass":"EGenericType"},{"id":156,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"id","lowerBound":0,"id":157,"many":false,"required":false,"eClass":"EParameter"},{"id":158,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"ains","lowerBound":0,"id":159,"many":false,"required":false,"eClass":"EParameter"},{"ordered":true,"upperBound":1,"unique":true,"name":"animalTemplate","lowerBound":0,"id":160,"many":false,"required":false,"eClass":"EParameter"},{"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"},{"id":169,"eClass":"EGenericType"},{"id":170,"eClass":"EGenericType"},{"id":171,"eClass":"EGenericType"},{"name":"WO","id":172,"value":0,"literal":"WOOD BISON","eClass":"EEnumLiteral"},{"name":"PB","id":173,"value":1,"literal":"PLAINS BISON","eClass":"EEnumLiteral"},{"name":"Unspecified","id":174,"value":2,"literal":"","eClass":"EEnumLiteral"},{"name":"CD","id":175,"value":0,"literal":"ARCOTT - Canadian","eClass":"EEnumLiteral"},{"name":"OU","id":176,"value":1,"literal":"ARCOTT - Outaouais","eClass":"EEnumLiteral"},{"name":"RI","id":177,"value":2,"literal":"ARCOTT - Rideau","eClass":"EEnumLiteral"},{"name":"LY","id":178,"value":3,"literal":"BARBADOS BLACK BELLY","eClass":"EEnumLiteral"},{"name":"FB","id":179,"value":4,"literal":"BLACK FACE","eClass":"EEnumLiteral"},{"name":"BW","id":180,"value":5,"literal":"BLACK WELSH MOUNTAIN","eClass":"EEnumLiteral"},{"name":"BF","id":181,"value":6,"literal":"BLUE FACED LEISTER","eClass":"EEnumLiteral"},{"name":"BO","id":182,"value":7,"literal":"BOOROULA","eClass":"EEnumLiteral"},{"name":"BC","id":183,"value":8,"literal":"BORDER CHEVIOT","eClass":"EEnumLiteral"},{"name":"CO","id":184,"value":9,"literal":"CHAROLLAIS","eClass":"EEnumLiteral"},{"name":"CF","id":185,"value":10,"literal":"CLUN FOREST","eClass":"EEnumLiteral"},{"name":"CL","id":186,"value":11,"literal":"COLUMBIA","eClass":"EEnumLiteral"},{"name":"CP","id":187,"value":12,"literal":"COOPWORTH","eClass":"EEnumLiteral"},{"name":"CR","id":188,"value":13,"literal":"CORRIEDALE","eClass":"EEnumLiteral"},{"name":"DH","id":189,"value":14,"literal":"DORSET - Horned","eClass":"EEnumLiteral"},{"name":"DP","id":190,"value":15,"literal":"DORSET - Polled","eClass":"EEnumLiteral"},{"name":"DL","id":191,"value":16,"literal":"DLS","eClass":"EEnumLiteral"},{"name":"ER","id":192,"value":17,"literal":"EAST FRIESLAND","eClass":"EEnumLiteral"},{"name":"FN","id":193,"value":18,"literal":"FINNISH LANDRACE ","eClass":"EEnumLiteral"},{"name":"HS","id":194,"value":19,"literal":"HAMPSHIRE","eClass":"EEnumLiteral"},{"name":"HY","id":195,"value":20,"literal":"HYBRID","eClass":"EEnumLiteral"},{"name":"IL","id":196,"value":21,"literal":"ICELANDIC","eClass":"EEnumLiteral"},{"name":"KK","id":197,"value":22,"literal":"KARAKUL","eClass":"EEnumLiteral"},{"name":"KA","id":198,"value":23,"literal":"KATAHDIN","eClass":"EEnumLiteral"},{"name":"KH","id":199,"value":24,"literal":"KERRY HILL","eClass":"EEnumLiteral"},{"name":"BL","id":200,"value":25,"literal":"LEICESTER - Border","eClass":"EEnumLiteral"},{"name":"LE","id":201,"value":26,"literal":"LEICESTER - English","eClass":"EEnumLiteral"},{"name":"HL","id":202,"value":27,"literal":"LEISTER - Hexam","eClass":"EEnumLiteral"},{"name":"LI","id":203,"value":28,"literal":"LINCOLN","eClass":"EEnumLiteral"},{"name":"MM","id":204,"value":29,"literal":"MM","eClass":"EEnumLiteral"},{"name":"MP","id":205,"value":30,"literal":"MERINO POLLED","eClass":"EEnumLiteral"},{"name":"MT","id":206,"value":31,"literal":"MT","eClass":"EEnumLiteral"},{"name":"NL","id":207,"value":32,"literal":"NEWFOUNDLAND LOCO","eClass":"EEnumLiteral"},{"name":"NC","id":208,"value":33,"literal":"NORTH COUNTRY CHEVIOT","eClass":"EEnumLiteral"},{"name":"OX","id":209,"value":34,"literal":"OXFORD","eClass":"EEnumLiteral"},{"name":"PE","id":210,"value":35,"literal":"PERENDALE","eClass":"EEnumLiteral"},{"name":"PO","id":211,"value":36,"literal":"POLYPAY","eClass":"EEnumLiteral"},{"name":"RG","id":212,"value":37,"literal":"RAMBOUILLET","eClass":"EEnumLiteral"},{"name":"RV","id":213,"value":38,"literal":"ROMANOV","eClass":"EEnumLiteral"},{"name":"RM","id":214,"value":39,"literal":"ROMNELET","eClass":"EEnumLiteral"},{"name":"RY","id":215,"value":40,"literal":"ROMNEY","eClass":"EEnumLiteral"},{"name":"SX","id":216,"value":41,"literal":"ST. CROIX","eClass":"EEnumLiteral"},{"name":"SC","id":217,"value":42,"literal":"SCOTTISH BLACKFACE","eClass":"EEnumLiteral"},{"name":"SL","id":218,"value":43,"literal":"SHETLAND","eClass":"EEnumLiteral"},{"name":"SR","id":219,"value":44,"literal":"SHROPSHIRE","eClass":"EEnumLiteral"},{"name":"ST","id":220,"value":45,"literal":"SOUTHDOWN","eClass":"EEnumLiteral"},{"name":"SU","id":221,"value":46,"literal":"SUFFOLK","eClass":"EEnumLiteral"},{"name":"TA","id":222,"value":47,"literal":"TARGHEE","eClass":"EEnumLiteral"},{"name":"TX","id":223,"value":48,"literal":"TEXEL","eClass":"EEnumLiteral"},{"name":"TU","id":224,"value":49,"literal":"TUNIS","eClass":"EEnumLiteral"},{"name":"XL","id":225,"value":50,"literal":"CROSSBRED - Large","eClass":"EEnumLiteral"},{"name":"XM","id":226,"value":51,"literal":"CROSSBRED - Medium","eClass":"EEnumLiteral"},{"name":"ZS","id":227,"value":52,"literal":"CROSSBRED - Small","eClass":"EEnumLiteral"},{"name":"Unspecified","id":228,"value":53,"literal":"","eClass":"EEnumLiteral"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"Unspecified","unsettable":false,"transient":false,"unique":true,"name":"beefBreed","changeable":true,"lowerBound":0,"iD":false,"id":229,"derived":false},{"id":230,"eClass":"EGenericType"},{"id":231,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"Unspecified","unsettable":false,"transient":false,"unique":true,"name":"sheepBreed","changeable":true,"lowerBound":0,"iD":false,"id":232,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"scrapieTag","changeable":true,"lowerBound":0,"iD":false,"id":233,"derived":false},{"id":234,"eClass":"EGenericType"},{"id":235,"eClass":"EGenericType"},{"id":236,"eClass":"EGenericType"},{"name":"AN","id":237,"value":0,"literal":"ABERDEEN ANGUS","eClass":"EEnumLiteral"},{"name":"AB","id":238,"value":1,"literal":"ABONDANCE","eClass":"EEnumLiteral"},{"name":"AF","id":239,"value":2,"literal":"AFRICANDER","eClass":"EEnumLiteral"},{"name":"AL","id":240,"value":3,"literal":"ALPINE","eClass":"EEnumLiteral"},{"name":"AE","id":241,"value":4,"literal":"AMERICAN BREED","eClass":"EEnumLiteral"},{"name":"AM","id":242,"value":5,"literal":"AMERIFAX","eClass":"EEnumLiteral"},{"name":"AK","id":243,"value":6,"literal":"ANKINA","eClass":"EEnumLiteral"},{"name":"AW","id":244,"value":7,"literal":"ANKOLE-WATUSI","eClass":"EEnumLiteral"},{"name":"AU","id":245,"value":8,"literal":"AUBRAC","eClass":"EEnumLiteral"},{"name":"BA","id":246,"value":9,"literal":"BARZONA","eClass":"EEnumLiteral"},{"name":"BF","id":247,"value":10,"literal":"BEEF FRIESIAN","eClass":"EEnumLiteral"},{"name":"BE","id":248,"value":11,"literal":"BEEFALO","eClass":"EEnumLiteral"},{"name":"BM","id":249,"value":12,"literal":"BEEFMASTER","eClass":"EEnumLiteral"},{"name":"BB","id":250,"value":13,"literal":"BELIGIAN BLUE","eClass":"EEnumLiteral"},{"name":"BG","id":251,"value":14,"literal":"BELTED GALLOWAY","eClass":"EEnumLiteral"},{"name":"BD","id":252,"value":15,"literal":"BLONDE D=AQUITAINE","eClass":"EEnumLiteral"},{"name":"NS","id":253,"value":16,"literal":"BONSMARA","eClass":"EEnumLiteral"},{"name":"BO","id":254,"value":17,"literal":"BRAFORD","eClass":"EEnumLiteral"},{"name":"BR","id":255,"value":18,"literal":"BRAHMAN","eClass":"EEnumLiteral"},{"name":"BH","id":256,"value":19,"literal":"BRAHMENTAL","eClass":"EEnumLiteral"},{"name":"BI","id":257,"value":20,"literal":"BRAHMOUSIN","eClass":"EEnumLiteral"},{"name":"BL","id":258,"value":21,"literal":"BRALER","eClass":"EEnumLiteral"},{"name":"BN","id":259,"value":22,"literal":"BRANGUS","eClass":"EEnumLiteral"},{"name":"BU","id":260,"value":23,"literal":"BRAUNVIEH","eClass":"EEnumLiteral"},{"name":"BW","id":261,"value":24,"literal":"BRITISH WHITE","eClass":"EEnumLiteral"},{"name":"SB","id":262,"value":25,"literal":"BROWN SWISS (beef/boeuf)","eClass":"EEnumLiteral"},{"name":"BQ","id":263,"value":26,"literal":"BUELINGO","eClass":"EEnumLiteral"},{"name":"CP","id":264,"value":27,"literal":"CAMPINE RED PIED","eClass":"EEnumLiteral"},{"name":"CN","id":265,"value":28,"literal":"CANADIENNE","eClass":"EEnumLiteral"},{"name":"CB","id":266,"value":29,"literal":"CHARBRAY","eClass":"EEnumLiteral"},{"name":"CH","id":267,"value":30,"literal":"CHAROLAIS","eClass":"EEnumLiteral"},{"name":"CG","id":268,"value":31,"literal":"CHI-ANGUS","eClass":"EEnumLiteral"},{"name":"CM","id":269,"value":32,"literal":"CHI-MAINE","eClass":"EEnumLiteral"},{"name":"CA","id":270,"value":33,"literal":"CHIANINA","eClass":"EEnumLiteral"},{"name":"XX","id":271,"value":34,"literal":"CROSSBREDS","eClass":"EEnumLiteral"},{"name":"XT","id":272,"value":35,"literal":"CROSSBRED TWINNER","eClass":"EEnumLiteral"},{"name":"CU","id":273,"value":36,"literal":"CUMBERLAND","eClass":"EEnumLiteral"},{"name":"DB","id":274,"value":37,"literal":"DANISH BLACK AND WHITE","eClass":"EEnumLiteral"},{"name":"DJ","id":275,"value":38,"literal":"DANISH JERSEY","eClass":"EEnumLiteral"},{"name":"RW","id":276,"value":39,"literal":"DANISH RED AND WHITE","eClass":"EEnumLiteral"},{"name":"DE","id":277,"value":40,"literal":"DEVON","eClass":"EEnumLiteral"},{"name":"DR","id":278,"value":41,"literal":"DEXTER","eClass":"EEnumLiteral"},{"name":"DL","id":279,"value":42,"literal":"DUTCH BELTED","eClass":"EEnumLiteral"},{"name":"FP","id":280,"value":43,"literal":"EAST FLEMISH RED PIED","eClass":"EEnumLiteral"},{"name":"ER","id":281,"value":44,"literal":"ERINGER","eClass":"EEnumLiteral"},{"name":"FA","id":282,"value":45,"literal":"FLAMANDE","eClass":"EEnumLiteral"},{"name":"FL","id":283,"value":46,"literal":"FLECKVIEH","eClass":"EEnumLiteral"},{"name":"FC","id":284,"value":47,"literal":"FLORIDA CRACKER","eClass":"EEnumLiteral"},{"name":"FR","id":285,"value":48,"literal":"FRIBOURG","eClass":"EEnumLiteral"},{"name":"FB","id":286,"value":49,"literal":"FRIESIAN (Belgium)","eClass":"EEnumLiteral"},{"name":"DF","id":287,"value":50,"literal":"FRIESIAN (Dutch)","eClass":"EEnumLiteral"},{"name":"GA","id":288,"value":51,"literal":"GALLOWAY (beef/boeuf)","eClass":"EEnumLiteral"},{"name":"GS","id":289,"value":52,"literal":"GASCONNE","eClass":"EEnumLiteral"},{"name":"GE","id":290,"value":53,"literal":"GELBRAY","eClass":"EEnumLiteral"},{"name":"GV","id":291,"value":54,"literal":"GELBVIEH","eClass":"EEnumLiteral"},{"name":"GI","id":292,"value":55,"literal":"GRAUVIEH","eClass":"EEnumLiteral"},{"name":"GR","id":293,"value":56,"literal":"GRONINGEN","eClass":"EEnumLiteral"},{"name":"GZ","id":294,"value":57,"literal":"GUZERA","eClass":"EEnumLiteral"},{"name":"GY","id":295,"value":58,"literal":"GYR (or Gir)","eClass":"EEnumLiteral"},{"name":"HC","id":296,"value":59,"literal":"HAYS CONVERTER","eClass":"EEnumLiteral"},{"name":"HB","id":297,"value":60,"literal":"HEREFORD (black)","eClass":"EEnumLiteral"},{"name":"HH","id":298,"value":61,"literal":"HEREFORD (horned)","eClass":"EEnumLiteral"},{"name":"HP","id":299,"value":62,"literal":"HEREFORD (polled)","eClass":"EEnumLiteral"},{"name":"SH","id":300,"value":63,"literal":"HIGHLAND (Scotch Highland)","eClass":"EEnumLiteral"},{"name":"HY","id":301,"value":64,"literal":"HYBRID (Alberta Synthtic)","eClass":"EEnumLiteral"},{"name":"IB","id":302,"value":65,"literal":"INDU BRAZIL","eClass":"EEnumLiteral"},{"name":"KY","id":303,"value":66,"literal":"KERRY","eClass":"EEnumLiteral"},{"name":"KB","id":304,"value":67,"literal":"KOBE (Wagyu)","eClass":"EEnumLiteral"},{"name":"LM","id":305,"value":68,"literal":"LIMOUSIN","eClass":"EEnumLiteral"},{"name":"LR","id":306,"value":69,"literal":"LINCOLN RED","eClass":"EEnumLiteral"},{"name":"LO","id":307,"value":70,"literal":"LOWLINE (Loala)","eClass":"EEnumLiteral"},{"name":"LU","id":308,"value":71,"literal":"LUING","eClass":"EEnumLiteral"},{"name":"MA","id":309,"value":72,"literal":"MAINE-ANJOU","eClass":"EEnumLiteral"},{"name":"MH","id":310,"value":73,"literal":"MASHONA","eClass":"EEnumLiteral"},{"name":"ML","id":311,"value":74,"literal":"MANDALONG SPECIAL","eClass":"EEnumLiteral"},{"name":"MR","id":312,"value":75,"literal":"MARCHIGIANA","eClass":"EEnumLiteral"},{"name":"ME","id":313,"value":76,"literal":"MAREMMANA","eClass":"EEnumLiteral"},{"name":"MI","id":314,"value":77,"literal":"MEUSE-RHINE-ISSEL","eClass":"EEnumLiteral"},{"name":"MC","id":315,"value":78,"literal":"MEXICAN CORRIENTE","eClass":"EEnumLiteral"},{"name":"MO","id":316,"value":79,"literal":"MONTBELIARDE","eClass":"EEnumLiteral"},{"name":"MU","id":317,"value":80,"literal":"MURRAH","eClass":"EEnumLiteral"},{"name":"MG","id":318,"value":81,"literal":"MURRAY GREY","eClass":"EEnumLiteral"},{"name":"NE","id":319,"value":82,"literal":"NELLORE","eClass":"EEnumLiteral"},{"name":"NM","id":320,"value":83,"literal":"NORMANDE","eClass":"EEnumLiteral"},{"name":"NR","id":321,"value":84,"literal":"NORWEGIAN RED","eClass":"EEnumLiteral"},{"name":"PA","id":322,"value":85,"literal":"PARTHENAISE","eClass":"EEnumLiteral"},{"name":"PR","id":323,"value":86,"literal":"PIE ROUGE","eClass":"EEnumLiteral"},{"name":"PI","id":324,"value":87,"literal":"PIEDMONTESE","eClass":"EEnumLiteral"},{"name":"PZ","id":325,"value":88,"literal":"PINZGAUER","eClass":"EEnumLiteral"},{"name":"RA","id":326,"value":89,"literal":"RANGER","eClass":"EEnumLiteral"},{"name":"AR","id":327,"value":90,"literal":"RED ANGUS","eClass":"EEnumLiteral"},{"name":"RR","id":328,"value":91,"literal":"RED BRAHMAN","eClass":"EEnumLiteral"},{"name":"RB","id":329,"value":92,"literal":"RED BRANGUS","eClass":"EEnumLiteral"},{"name":"RD","id":330,"value":93,"literal":"RED DANE (Danish Red)","eClass":"EEnumLiteral"},{"name":"RP","id":331,"value":94,"literal":"RED POLL","eClass":"EEnumLiteral"},{"name":"RN","id":332,"value":95,"literal":"ROMAGNOLA","eClass":"EEnumLiteral"},{"name":"RS","id":333,"value":96,"literal":"ROMOSINUANO","eClass":"EEnumLiteral"},{"name":"RO","id":334,"value":97,"literal":"ROTBUNTE","eClass":"EEnumLiteral"},{"name":"DN","id":335,"value":98,"literal":"ROUGE DU NORD","eClass":"EEnumLiteral"},{"name":"SW","id":336,"value":99,"literal":"SAHIWAL","eClass":"EEnumLiteral"},{"name":"SA","id":337,"value":100,"literal":"SALERS","eClass":"EEnumLiteral"},{"name":"SG","id":338,"value":101,"literal":"SANTA GERTRUDIS","eClass":"EEnumLiteral"},{"name":"SL","id":339,"value":102,"literal":"SEMEPOL","eClass":"EEnumLiteral"},{"name":"SE","id":340,"value":103,"literal":"SENAPOL","eClass":"EEnumLiteral"},{"name":"SV","id":341,"value":104,"literal":"SHAVER BEEF BLEND","eClass":"EEnumLiteral"},{"name":"SS","id":342,"value":105,"literal":"SHORTHORN (beef-scotch)","eClass":"EEnumLiteral"},{"name":"IS","id":343,"value":106,"literal":"SHORTHORN (illawarra)","eClass":"EEnumLiteral"},{"name":"SP","id":344,"value":107,"literal":"SHORTHORN (polled)","eClass":"EEnumLiteral"},{"name":"SI","id":345,"value":108,"literal":"SIMBRAH","eClass":"EEnumLiteral"},{"name":"SM","id":346,"value":109,"literal":"SIMMENTAL","eClass":"EEnumLiteral"},{"name":"DS","id":347,"value":110,"literal":"SOUTH DEVON","eClass":"EEnumLiteral"},{"name":"SX","id":348,"value":111,"literal":"SUSSEX","eClass":"EEnumLiteral"},{"name":"TP","id":349,"value":112,"literal":"TABAPUA","eClass":"EEnumLiteral"},{"name":"TA","id":350,"value":113,"literal":"TARENTAISE","eClass":"EEnumLiteral"},{"name":"TG","id":351,"value":114,"literal":"TASMANIAN GREY","eClass":"EEnumLiteral"},{"name":"TN","id":352,"value":115,"literal":"TAURINDICUS","eClass":"EEnumLiteral"},{"name":"TL","id":353,"value":116,"literal":"TEXAS LONGHORN","eClass":"EEnumLiteral"},{"name":"TI","id":354,"value":117,"literal":"TULI","eClass":"EEnumLiteral"},{"name":"WB","id":355,"value":118,"literal":"WELSH BLACK","eClass":"EEnumLiteral"},{"name":"WF","id":356,"value":119,"literal":"WEST FLEMISH RED","eClass":"EEnumLiteral"},{"name":"WP","id":357,"value":120,"literal":"WHITE PARK","eClass":"EEnumLiteral"},{"name":"YA","id":358,"value":121,"literal":"YAK","eClass":"EEnumLiteral"},{"name":"Unspecified","id":359,"value":122,"literal":"","eClass":"EEnumLiteral"},{"name":"LD","id":360,"value":0,"literal":"AMERICAN LINEBACK","eClass":"EEnumLiteral"},{"name":"AY","id":361,"value":1,"literal":"AYRSHIRE","eClass":"EEnumLiteral"},{"name":"BS","id":362,"value":2,"literal":"BROWN SWISS","eClass":"EEnumLiteral"},{"name":"GD","id":363,"value":3,"literal":"GALLOWAY","eClass":"EEnumLiteral"},{"name":"GU","id":364,"value":4,"literal":"GUERNSEY","eClass":"EEnumLiteral"},{"name":"HO","id":365,"value":5,"literal":"HOLSTEIN","eClass":"EEnumLiteral"},{"name":"JE","id":366,"value":6,"literal":"JERSEY","eClass":"EEnumLiteral"},{"name":"WW","id":367,"value":7,"literal":"RED HOLSTEIN","eClass":"EEnumLiteral"},{"name":"FM","id":368,"value":8,"literal":"ROUGE FLAMAND","eClass":"EEnumLiteral"},{"name":"MS","id":369,"value":9,"literal":"SHORTHORN","eClass":"EEnumLiteral"},{"name":"Unspecified","id":370,"value":10,"literal":"","eClass":"EEnumLiteral"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"Unspecified","unsettable":false,"transient":false,"unique":true,"name":"buffaloBreed","changeable":true,"lowerBound":0,"iD":false,"id":371,"derived":false},{"id":372,"eClass":"EGenericType"},{"id":373,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"Unspecified","unsettable":false,"transient":false,"unique":true,"name":"dairyBreed","changeable":true,"lowerBound":0,"iD":false,"id":374,"derived":false},{"id":375,"eClass":"EGenericType"},{"id":376,"eClass":"EGenericType"},{"id":377,"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":"sourcePin","changeable":true,"lowerBound":1,"iD":false,"id":378,"derived":false},{"id":379,"eClass":"EGenericType"},{"id":380,"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":"destinationPin","changeable":true,"lowerBound":1,"iD":false,"id":381,"derived":false},{"id":382,"eClass":"EGenericType"},{"id":383,"eClass":"EGenericType"},{"id":384,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":"","volatile":true,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":"","unsettable":false,"transient":true,"unique":true,"name":"oldId","changeable":false,"lowerBound":1,"iD":false,"id":385,"derived":true},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":true,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":true,"unique":true,"name":"usainNumberUsedForOldId","changeable":false,"lowerBound":1,"iD":false,"id":386,"derived":true},{"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":"oldTag","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"},{"id":392,"eClass":"EGenericType"},{"id":393,"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":"location","changeable":true,"resolveProxies":true,"lowerBound":0,"id":394,"derived":false},{"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"},{"ordered":true,"upperBound":1,"unique":true,"name":"previousWeighIn","lowerBound":0,"id":402,"many":false,"required":false,"eClass":"EOperation"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"weight","changeable":true,"lowerBound":1,"iD":false,"id":403,"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":"weightGainPerDay","changeable":false,"lowerBound":0,"iD":false,"id":404,"derived":true},{"id":405,"eClass":"EGenericType"},{"id":406,"eClass":"EGenericType"},{"id":407,"eClass":"EGenericType"},{"id":408,"eClass":"EGenericType"},{"name":"BK","id":409,"value":0,"literal":"BERKSHIRE","eClass":"EEnumLiteral"},{"name":"CW","id":410,"value":1,"literal":"CHESTER WHITE","eClass":"EEnumLiteral"},{"name":"DU","id":411,"value":2,"literal":"DUROC","eClass":"EEnumLiteral"},{"name":"HA","id":412,"value":3,"literal":"HAMPSHIRE","eClass":"EEnumLiteral"},{"name":"LC","id":413,"value":4,"literal":"LACOMBE","eClass":"EEnumLiteral"},{"name":"LA","id":414,"value":5,"literal":"LANDRACE","eClass":"EEnumLiteral"},{"name":"LB","id":415,"value":6,"literal":"LARGE BLACK (British)","eClass":"EEnumLiteral"},{"name":"LW","id":416,"value":7,"literal":"LARGE WHITE","eClass":"EEnumLiteral"},{"name":"PE","id":417,"value":8,"literal":"PIETRAIN","eClass":"EEnumLiteral"},{"name":"PC","id":418,"value":9,"literal":"POLAND CHINA","eClass":"EEnumLiteral"},{"name":"RW","id":419,"value":10,"literal":"RED WATTLE","eClass":"EEnumLiteral"},{"name":"SO","id":420,"value":11,"literal":"SPOTTED","eClass":"EEnumLiteral"},{"name":"TM","id":421,"value":12,"literal":"TAMWORTH","eClass":"EEnumLiteral"},{"name":"WS","id":422,"value":13,"literal":"WESSEX SADDLEBACK","eClass":"EEnumLiteral"},{"name":"YO","id":423,"value":14,"literal":"YORKSHIRE","eClass":"EEnumLiteral"},{"name":"Unspecified","id":424,"value":15,"literal":"","eClass":"EEnumLiteral"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"Unspecified","unsettable":false,"transient":false,"unique":true,"name":"swineBreed","changeable":true,"lowerBound":0,"iD":false,"id":425,"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":"rightEarNotching","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":"leftEarNotching","changeable":true,"lowerBound":0,"iD":false,"id":427,"derived":false},{"id":428,"eClass":"EGenericType"},{"id":429,"eClass":"EGenericType"},{"id":430,"eClass":"EGenericType"},{"id":431,"eClass":"EGenericType"},{"name":"AC","id":432,"value":0,"literal":"AMERICAN BASHKIR CURLY","eClass":"EEnumLiteral"},{"name":"AS","id":433,"value":1,"literal":"AMERICAN SADDLEBRED","eClass":"EEnumLiteral"},{"name":"AA","id":434,"value":2,"literal":"ANDALUSIAN","eClass":"EEnumLiteral"},{"name":"AO","id":435,"value":3,"literal":"ANGLO-ARABIAN","eClass":"EEnumLiteral"},{"name":"NO","id":436,"value":4,"literal":"ANGLO-NORMAND","eClass":"EEnumLiteral"},{"name":"AP","id":437,"value":5,"literal":"APPALOSA","eClass":"EEnumLiteral"},{"name":"AD","id":438,"value":6,"literal":"ARABIAN","eClass":"EEnumLiteral"},{"name":"BW","id":439,"value":7,"literal":"BADEN-WURTTEMBERG","eClass":"EEnumLiteral"},{"name":"BY","id":440,"value":8,"literal":"BAYERISCHES WARMBLOOD","eClass":"EEnumLiteral"},{"name":"BU","id":441,"value":9,"literal":"BUCKSKIN","eClass":"EEnumLiteral"},{"name":"CI","id":442,"value":10,"literal":"CANADIAN HORSE","eClass":"EEnumLiteral"},{"name":"FC","id":443,"value":11,"literal":"CHEVAL DE SELLE FRANCAIS (FRENCH SADDLE HORSE)","eClass":"EEnumLiteral"},{"name":"CV","id":444,"value":12,"literal":"CLEVELAND BAY","eClass":"EEnumLiteral"},{"name":"CY","id":445,"value":13,"literal":"CLYDESDALE","eClass":"EEnumLiteral"},{"name":"CM","id":446,"value":14,"literal":"CONNEMARA","eClass":"EEnumLiteral"},{"name":"DT","id":447,"value":15,"literal":"DARTMOOR PONY","eClass":"EEnumLiteral"},{"name":"DW","id":448,"value":16,"literal":"DUTCH WARMBLOOD","eClass":"EEnumLiteral"},{"name":"EX","id":449,"value":17,"literal":"EXMOOR PONY","eClass":"EEnumLiteral"},{"name":"FE","id":450,"value":18,"literal":"FELL PONY","eClass":"EEnumLiteral"},{"name":"FJ","id":451,"value":19,"literal":"FJORD","eClass":"EEnumLiteral"},{"name":"FH","id":452,"value":20,"literal":"FRENCH HORSE","eClass":"EEnumLiteral"},{"name":"FR","id":453,"value":21,"literal":"FRIESIAN","eClass":"EEnumLiteral"},{"name":"GL","id":454,"value":22,"literal":"GELDERLANDER","eClass":"EEnumLiteral"},{"name":"WG","id":455,"value":23,"literal":"GERMAN WARMBLOOD","eClass":"EEnumLiteral"},{"name":"HN","id":456,"value":24,"literal":"HACKNEY (horse/cheval)","eClass":"EEnumLiteral"},{"name":"HK","id":457,"value":25,"literal":"HACKNEY (pony/poney)","eClass":"EEnumLiteral"},{"name":"HF","id":458,"value":26,"literal":"HAFLINGER","eClass":"EEnumLiteral"},{"name":"HV","id":459,"value":27,"literal":"HANOVERIAN","eClass":"EEnumLiteral"},{"name":"HG","id":460,"value":28,"literal":"HIGHLAND PONY","eClass":"EEnumLiteral"},{"name":"HT","id":461,"value":29,"literal":"HOLSTEINER","eClass":"EEnumLiteral"},{"name":"HW","id":462,"value":30,"literal":"HUNGARIAN WARMBLOOD","eClass":"EEnumLiteral"},{"name":"HU","id":463,"value":31,"literal":"HUNTER","eClass":"EEnumLiteral"},{"name":"IC","id":464,"value":32,"literal":"ICELANDIC","eClass":"EEnumLiteral"},{"name":"LZ","id":465,"value":33,"literal":"LIPIZZANER","eClass":"EEnumLiteral"},{"name":"MU","id":466,"value":34,"literal":"MINATURE HORSE","eClass":"EEnumLiteral"},{"name":"MF","id":467,"value":35,"literal":"MISSOURI FOXTROTTING","eClass":"EEnumLiteral"},{"name":"MN","id":468,"value":36,"literal":"MORGAN","eClass":"EEnumLiteral"},{"name":"NF","id":469,"value":37,"literal":"NEW FOREST","eClass":"EEnumLiteral"},{"name":"NK","id":470,"value":38,"literal":"NORIKER","eClass":"EEnumLiteral"},{"name":"OB","id":471,"value":39,"literal":"OLDENBURG","eClass":"EEnumLiteral"},{"name":"PT","id":472,"value":40,"literal":"PAINT","eClass":"EEnumLiteral"},{"name":"PL","id":473,"value":41,"literal":"PALOMINO","eClass":"EEnumLiteral"},{"name":"PF","id":474,"value":42,"literal":"PASO FINO","eClass":"EEnumLiteral"},{"name":"PH","id":475,"value":43,"literal":"PERCHERON","eClass":"EEnumLiteral"},{"name":"PV","id":476,"value":44,"literal":"PERUVIAN","eClass":"EEnumLiteral"},{"name":"PN","id":477,"value":45,"literal":"PINTO","eClass":"EEnumLiteral"},{"name":"PW","id":478,"value":46,"literal":"POLISH WARMBLOOD","eClass":"EEnumLiteral"},{"name":"OL","id":479,"value":47,"literal":"POLO PONY","eClass":"EEnumLiteral"},{"name":"QH","id":480,"value":48,"literal":"OUARTER HORSE","eClass":"EEnumLiteral"},{"name":"RH","id":481,"value":49,"literal":"RHEINLANDER","eClass":"EEnumLiteral"},{"name":"RU","id":482,"value":50,"literal":"RUSTIC PONY","eClass":"EEnumLiteral"},{"name":"SE","id":483,"value":51,"literal":"SHETLAND","eClass":"EEnumLiteral"},{"name":"SY","id":484,"value":52,"literal":"SHIRE","eClass":"EEnumLiteral"},{"name":"SN","id":485,"value":53,"literal":"STANDARDBRED","eClass":"EEnumLiteral"},{"name":"SF","id":486,"value":54,"literal":"SUFFOLK PUNCH","eClass":"EEnumLiteral"},{"name":"WW","id":487,"value":55,"literal":"SWEDISH WARMBLOOD","eClass":"EEnumLiteral"},{"name":"WI","id":488,"value":56,"literal":"SWISS HORSE","eClass":"EEnumLiteral"},{"name":"TP","id":489,"value":57,"literal":"TARPAN","eClass":"EEnumLiteral"},{"name":"TW","id":490,"value":58,"literal":"TENNESSEE WALKING","eClass":"EEnumLiteral"},{"name":"TH","id":491,"value":59,"literal":"THOROUGHBRED","eClass":"EEnumLiteral"},{"name":"TR","id":492,"value":60,"literal":"TRAKEHNER","eClass":"EEnumLiteral"},{"name":"TF","id":493,"value":61,"literal":"TROTTEUR FRANCAIS","eClass":"EEnumLiteral"},{"name":"VK","id":494,"value":62,"literal":"VIKING","eClass":"EEnumLiteral"},{"name":"WE","id":495,"value":63,"literal":"WELSH","eClass":"EEnumLiteral"},{"name":"WF","id":496,"value":64,"literal":"WESTFALEN","eClass":"EEnumLiteral"},{"name":"WU","id":497,"value":65,"literal":"WURTTEMBERG","eClass":"EEnumLiteral"},{"name":"Unspecified","id":498,"value":66,"literal":"","eClass":"EEnumLiteral"},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"Unspecified","unsettable":false,"transient":false,"unique":true,"name":"horseBreed","changeable":true,"lowerBound":0,"iD":false,"id":499,"derived":false},{"id":500,"eClass":"EGenericType"},{"id":501,"eClass":"EGenericType"},{"name":"AI","id":502,"value":0,"literal":"ALPINE","eClass":"EEnumLiteral"},{"name":"AG","id":503,"value":1,"literal":"ANGORA","eClass":"EEnumLiteral"},{"name":"BZ","id":504,"value":2,"literal":"BOER","eClass":"EEnumLiteral"},{"name":"CS","id":505,"value":3,"literal":"CASHMERE","eClass":"EEnumLiteral"},{"name":"LN","id":506,"value":4,"literal":"LA MANCHA","eClass":"EEnumLiteral"},{"name":"ND","id":507,"value":5,"literal":"NIGERIAN DWARF","eClass":"EEnumLiteral"},{"name":"NU","id":508,"value":6,"literal":"NUBIAN","eClass":"EEnumLiteral"},{"name":"OH","id":509,"value":7,"literal":"OBERHASLI","eClass":"EEnumLiteral"},{"name":"PY","id":510,"value":8,"literal":"PYGMY","eClass":"EEnumLiteral"},{"name":"EN","id":511,"value":9,"literal":"SAANEN","eClass":"EEnumLiteral"},{"name":"TO","id":512,"value":10,"literal":"TOGGENBURG","eClass":"EEnumLiteral"},{"name":"Unspecified","id":513,"value":11,"literal":"Unspecified","eClass":"EEnumLiteral"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":"Unspecified","unsettable":false,"transient":false,"unique":true,"name":"goatBreed","changeable":true,"lowerBound":0,"iD":false,"id":514,"derived":false},{"id":515,"eClass":"EGenericType"},{"id":516,"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":517,"derived":false},{"id":518,"eClass":"EGenericType"},{"id":519,"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":520,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"product","changeable":true,"lowerBound":0,"iD":false,"id":521,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"manufacturer","changeable":true,"lowerBound":0,"iD":false,"id":522,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"lot","changeable":true,"lowerBound":0,"iD":false,"id":523,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"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":524,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"treatment","changeable":true,"lowerBound":0,"iD":false,"id":525,"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":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"},{"name":"Unspecified","id":535,"value":0,"literal":"","eClass":"EEnumLiteral"},{"name":"Vaccination","id":536,"value":1,"literal":"Vaccination","eClass":"EEnumLiteral"},{"name":"Vitamin","id":537,"value":2,"literal":"Vitamin","eClass":"EEnumLiteral"},{"name":"Hormone","id":538,"value":3,"literal":"Hormone","eClass":"EEnumLiteral"},{"name":"Prevention","id":539,"value":4,"literal":"Prevention","eClass":"EEnumLiteral"},{"name":"Unspecified","id":540,"value":0,"literal":"","eClass":"EEnumLiteral"},{"name":"Intramuscular","id":541,"value":1,"literal":"Intramuscular","eClass":"EEnumLiteral"},{"name":"Nasal","id":542,"value":2,"literal":"Nasal","eClass":"EEnumLiteral"},{"name":"Salve","id":543,"value":3,"literal":"Salve","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":"viability","changeable":true,"lowerBound":0,"iD":false,"id":544,"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":"assisted","changeable":true,"lowerBound":0,"iD":false,"id":545,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"difficulty","changeable":true,"lowerBound":0,"iD":false,"id":546,"derived":false},{"id":547,"eClass":"EGenericType"},{"id":548,"eClass":"EGenericType"},{"id":549,"eClass":"EGenericType"},{"id":550,"eClass":"EGenericType"},{"name":"Unspecified","id":551,"value":0,"literal":"","eClass":"EEnumLiteral"},{"name":"One","id":552,"value":1,"literal":"One","eClass":"EEnumLiteral"},{"name":"Two","id":553,"value":2,"literal":"Two","eClass":"EEnumLiteral"},{"name":"Three","id":554,"value":3,"literal":"Three","eClass":"EEnumLiteral"},{"name":"Four","id":555,"value":4,"literal":"Four","eClass":"EEnumLiteral"},{"name":"Five","id":556,"value":5,"literal":"Five","eClass":"EEnumLiteral"},{"name":"Six","id":557,"value":6,"literal":"Six","eClass":"EEnumLiteral"},{"name":"Seven","id":558,"value":7,"literal":"Seven","eClass":"EEnumLiteral"},{"name":"Eight","id":559,"value":8,"literal":"Eight","eClass":"EEnumLiteral"},{"name":"Nine","id":560,"value":9,"literal":"Nine","eClass":"EEnumLiteral"},{"name":"Ten","id":561,"value":10,"literal":"Ten","eClass":"EEnumLiteral"},{"id":562,"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":"freemartin","changeable":true,"lowerBound":0,"iD":false,"id":563,"derived":false},{"id":564,"eClass":"EGenericType"},{"id":565,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"defaultValue":null,"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":566,"derived":false},{"ordered":true,"upperBound":1,"defaultValue":null,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"origin","changeable":true,"lowerBound":0,"iD":false,"id":567,"derived":false},{"id":568,"eClass":"EGenericType"},{"id":569,"eClass":"EGenericType"},{"id":570,"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":"poundsProduced","changeable":true,"lowerBound":0,"iD":false,"id":571,"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":"percentButterFat","changeable":true,"lowerBound":0,"iD":false,"id":572,"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":"percentProtein","changeable":true,"lowerBound":0,"iD":false,"id":573,"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":"somaticCellCounts","changeable":true,"lowerBound":0,"iD":false,"id":574,"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":"otherSolids","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"},{"ordered":true,"upperBound":1,"defaultValue":false,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"pregnant","changeable":true,"lowerBound":0,"iD":false,"id":582,"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":"daysSinceBredEstimate","changeable":true,"lowerBound":0,"iD":false,"id":583,"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":"bredDateEstimate","changeable":false,"lowerBound":0,"iD":false,"id":584,"derived":true},{"id":585,"eClass":"EGenericType"},{"id":586,"eClass":"EGenericType"},{"id":587,"eClass":"EGenericType"},{"id":588,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"findSchema","lowerBound":0,"id":589,"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":"eventAttributes","changeable":true,"resolveProxies":true,"lowerBound":0,"id":590,"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":"eventSchema","changeable":true,"resolveProxies":true,"lowerBound":1,"id":591,"derived":false},{"id":592,"eClass":"EGenericType"},{"id":593,"eClass":"EGenericType"},{"ordered":true,"upperBound":1,"unique":true,"name":"eventAttribute","lowerBound":0,"id":594,"many":false,"required":false,"eClass":"EParameter"},{"id":595,"eClass":"EGenericType"},{"id":596,"eClass":"EGenericType"},{"id":597,"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":598,"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":599,"derived":false},{"id":600,"eClass":"EGenericType"},{"id":601,"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":602,"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":603,"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":"animalType","changeable":true,"lowerBound":0,"iD":false,"id":604,"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":"eventAttributes","changeable":true,"resolveProxies":true,"lowerBound":1,"id":605,"derived":false},{"id":606,"eClass":"EGenericType"},{"id":607,"eClass":"EGenericType"},{"id":608,"eClass":"EGenericType"},{"id":609,"eClass":"EGenericType"},{"name":"Unspecified","id":610,"value":0,"literal":"","eClass":"EEnumLiteral"},{"name":"Swine","id":611,"value":2,"literal":"Swine","eClass":"EEnumLiteral"},{"name":"Equine","id":612,"value":3,"literal":"Equine","eClass":"EEnumLiteral"},{"name":"Caprine","id":613,"value":4,"literal":"Caprine","eClass":"EEnumLiteral"},{"name":"Ovine","id":614,"value":0,"literal":"Ovine","eClass":"EEnumLiteral"},{"name":"BovineBeef","id":615,"value":5,"literal":"BovineBeef","eClass":"EEnumLiteral"},{"name":"BovineDairy","id":616,"value":6,"literal":"BovineDairy","eClass":"EEnumLiteral"},{"name":"BovineBison","id":617,"value":7,"literal":"BovineBison","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":618,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":true,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"dataType","changeable":true,"lowerBound":1,"iD":false,"id":619,"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":620,"derived":false},{"id":621,"eClass":"EGenericType"},{"id":622,"eClass":"EGenericType"},{"id":623,"eClass":"EGenericType"},{"name":"String","id":624,"value":0,"literal":"String","eClass":"EEnumLiteral"},{"name":"Integer","id":625,"value":1,"literal":"Integer","eClass":"EEnumLiteral"},{"name":"Boolean","id":626,"value":2,"literal":"Boolean","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":"eventSchemas","changeable":true,"resolveProxies":true,"lowerBound":0,"id":627,"derived":false},{"id":628,"eClass":"EGenericType"},{"name":"Unspecified","id":629,"value":0,"literal":"","eClass":"EEnumLiteral"},{"name":"Standard","id":630,"value":1,"literal":"Standard","eClass":"EEnumLiteral"},{"name":"Select","id":631,"value":2,"literal":"Select","eClass":"EEnumLiteral"},{"name":"Choice","id":632,"value":3,"literal":"Choice","eClass":"EEnumLiteral"},{"name":"Prime","id":633,"value":4,"literal":"Prime","eClass":"EEnumLiteral"},{"name":"Unspecified","id":634,"value":0,"literal":"","eClass":"EEnumLiteral"},{"name":"One","id":635,"value":1,"literal":"1","eClass":"EEnumLiteral"},{"name":"Two","id":636,"value":2,"literal":"2","eClass":"EEnumLiteral"},{"name":"Three","id":637,"value":3,"literal":"3","eClass":"EEnumLiteral"},{"name":"Four","id":638,"value":4,"literal":"4","eClass":"EEnumLiteral"},{"name":"Five","id":639,"value":5,"literal":"5","eClass":"EEnumLiteral"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"qualityGrade","changeable":true,"lowerBound":0,"iD":false,"id":640,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"qualityGradeLevel","changeable":true,"lowerBound":0,"iD":false,"id":641,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"yieldGrade","changeable":true,"lowerBound":0,"iD":false,"id":642,"derived":false},{"id":643,"eClass":"EGenericType"},{"id":644,"eClass":"EGenericType"},{"id":645,"eClass":"EGenericType"},{"id":646,"eClass":"EGenericType"},{"name":"Unspecified","id":647,"value":0,"literal":"","eClass":"EEnumLiteral"},{"name":"Low","id":648,"value":1,"literal":"Low","eClass":"EEnumLiteral"},{"name":"Average","id":649,"value":2,"literal":"Average","eClass":"EEnumLiteral"},{"name":"High","id":650,"value":3,"literal":"High","eClass":"EEnumLiteral"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"qualityGrade","changeable":true,"lowerBound":0,"iD":false,"id":651,"derived":false},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"qualityGradeLevel","changeable":true,"lowerBound":0,"iD":false,"id":652,"derived":false},{"id":653,"eClass":"EGenericType"},{"id":654,"eClass":"EGenericType"},{"id":655,"eClass":"EGenericType"},{"name":"Unspecified","id":656,"value":0,"literal":"","eClass":"EEnumLiteral"},{"name":"One","id":657,"value":1,"literal":"U.S. No. 1","eClass":"EEnumLiteral"},{"name":"Two","id":658,"value":2,"literal":"U.S. No. 2","eClass":"EEnumLiteral"},{"name":"Three","id":659,"value":3,"literal":"U.S. No. 3","eClass":"EEnumLiteral"},{"name":"Four","id":660,"value":4,"literal":"U.S. No. 4","eClass":"EEnumLiteral"},{"ordered":true,"upperBound":1,"volatile":false,"many":false,"required":false,"eClass":"EAttribute","defaultValueLiteral":null,"unsettable":false,"transient":false,"unique":true,"name":"qualityGrade","changeable":true,"lowerBound":0,"iD":false,"id":661,"derived":false},{"id":662,"eClass":"EGenericType"},{"id":663,"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":1,"target":0},{"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":1,"target":74},{"source":1,"target":75},{"source":1,"target":76},{"source":1,"target":77},{"source":1,"target":78},{"source":1,"target":79},{"source":1,"target":80},{"source":1,"target":81},{"source":1,"target":82},{"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":67,"target":5},{"source":67,"target":91},{"source":67,"target":1},{"source":91,"target":5},{"source":68,"target":1},{"source":68,"target":92},{"source":92,"target":93},{"source":92,"target":68},{"source":93,"target":94},{"source":94,"target":5},{"source":69,"target":3},{"source":69,"target":95},{"source":69,"target":1},{"source":95,"target":3},{"source":70,"target":5},{"source":70,"target":96},{"source":70,"target":1},{"source":96,"target":5},{"source":71,"target":33},{"source":71,"target":97},{"source":71,"target":1},{"source":97,"target":33},{"source":72,"target":31},{"source":72,"target":98},{"source":72,"target":1},{"source":98,"target":31},{"source":73,"target":99},{"source":73,"target":1},{"source":74,"target":2},{"source":74,"target":100},{"source":74,"target":1},{"source":100,"target":2},{"source":75,"target":3},{"source":75,"target":101},{"source":75,"target":1},{"source":101,"target":3},{"source":76,"target":102},{"source":76,"target":1},{"source":77,"target":103},{"source":77,"target":1},{"source":78,"target":104},{"source":78,"target":1},{"source":79,"target":105},{"source":79,"target":1},{"source":80,"target":106},{"source":80,"target":1},{"source":81,"target":107},{"source":81,"target":1},{"source":82,"target":108},{"source":82,"target":1},{"source":83,"target":1},{"source":83,"target":109},{"source":83,"target":1},{"source":109,"target":1},{"source":84,"target":1},{"source":84,"target":110},{"source":84,"target":1},{"source":110,"target":1},{"source":85,"target":111},{"source":85,"target":1},{"source":86,"target":112},{"source":86,"target":1},{"source":87,"target":56},{"source":87,"target":113},{"source":87,"target":1},{"source":113,"target":56},{"source":88,"target":114},{"source":88,"target":1},{"source":89,"target":115},{"source":89,"target":1},{"source":90,"target":116},{"source":90,"target":1},{"source":2,"target":0},{"source":2,"target":117},{"source":2,"target":118},{"source":2,"target":119},{"source":2,"target":120},{"source":2,"target":121},{"source":117,"target":2},{"source":118,"target":2},{"source":119,"target":2},{"source":120,"target":2},{"source":121,"target":2},{"source":3,"target":0},{"source":3,"target":122},{"source":3,"target":123},{"source":3,"target":124},{"source":122,"target":125},{"source":122,"target":3},{"source":123,"target":5},{"source":123,"target":126},{"source":123,"target":3},{"source":123,"target":127},{"source":126,"target":5},{"source":124,"target":128},{"source":124,"target":3},{"source":4,"target":0},{"source":4,"target":1},{"source":4,"target":129},{"source":129,"target":1},{"source":5,"target":0},{"source":5,"target":130},{"source":5,"target":131},{"source":5,"target":132},{"source":5,"target":133},{"source":5,"target":134},{"source":5,"target":127},{"source":5,"target":135},{"source":130,"target":136},{"source":130,"target":5},{"source":131,"target":137},{"source":131,"target":5},{"source":132,"target":138},{"source":132,"target":5},{"source":133,"target":139},{"source":133,"target":5},{"source":134,"target":140},{"source":134,"target":5},{"source":127,"target":3},{"source":127,"target":141},{"source":127,"target":5},{"source":127,"target":123},{"source":141,"target":3},{"source":135,"target":142},{"source":135,"target":5},{"source":6,"target":0},{"source":6,"target":5},{"source":6,"target":143},{"source":143,"target":5},{"source":7,"target":0},{"source":7,"target":144},{"source":7,"target":145},{"source":7,"target":146},{"source":7,"target":147},{"source":7,"target":148},{"source":7,"target":149},{"source":7,"target":150},{"source":7,"target":151},{"source":7,"target":152},{"source":7,"target":153},{"source":7,"target":154},{"source":144,"target":5},{"source":144,"target":155},{"source":144,"target":7},{"source":155,"target":5},{"source":145,"target":1},{"source":145,"target":156},{"source":145,"target":7},{"source":145,"target":157},{"source":156,"target":1},{"source":157,"target":158},{"source":157,"target":145},{"source":146,"target":7},{"source":146,"target":159},{"source":146,"target":160},{"source":159,"target":161},{"source":159,"target":146},{"source":161,"target":162},{"source":160,"target":1},{"source":160,"target":163},{"source":160,"target":146},{"source":163,"target":1},{"source":147,"target":8},{"source":147,"target":164},{"source":147,"target":7},{"source":164,"target":8},{"source":148,"target":9},{"source":148,"target":165},{"source":148,"target":7},{"source":165,"target":9},{"source":149,"target":1},{"source":149,"target":166},{"source":149,"target":7},{"source":166,"target":1},{"source":150,"target":3},{"source":150,"target":167},{"source":150,"target":7},{"source":167,"target":3},{"source":151,"target":40},{"source":151,"target":168},{"source":151,"target":7},{"source":168,"target":40},{"source":152,"target":41},{"source":152,"target":169},{"source":152,"target":7},{"source":169,"target":41},{"source":153,"target":59},{"source":153,"target":170},{"source":153,"target":7},{"source":170,"target":59},{"source":154,"target":171},{"source":154,"target":7},{"source":8,"target":0},{"source":9,"target":0},{"source":10,"target":0},{"source":10,"target":172},{"source":10,"target":173},{"source":10,"target":174},{"source":172,"target":10},{"source":173,"target":10},{"source":174,"target":10},{"source":11,"target":0},{"source":11,"target":175},{"source":11,"target":176},{"source":11,"target":177},{"source":11,"target":178},{"source":11,"target":179},{"source":11,"target":180},{"source":11,"target":181},{"source":11,"target":182},{"source":11,"target":183},{"source":11,"target":184},{"source":11,"target":185},{"source":11,"target":186},{"source":11,"target":187},{"source":11,"target":188},{"source":11,"target":189},{"source":11,"target":190},{"source":11,"target":191},{"source":11,"target":192},{"source":11,"target":193},{"source":11,"target":194},{"source":11,"target":195},{"source":11,"target":196},{"source":11,"target":197},{"source":11,"target":198},{"source":11,"target":199},{"source":11,"target":200},{"source":11,"target":201},{"source":11,"target":202},{"source":11,"target":203},{"source":11,"target":204},{"source":11,"target":205},{"source":11,"target":206},{"source":11,"target":207},{"source":11,"target":208},{"source":11,"target":209},{"source":11,"target":210},{"source":11,"target":211},{"source":11,"target":212},{"source":11,"target":213},{"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":175,"target":11},{"source":176,"target":11},{"source":177,"target":11},{"source":178,"target":11},{"source":179,"target":11},{"source":180,"target":11},{"source":181,"target":11},{"source":182,"target":11},{"source":183,"target":11},{"source":184,"target":11},{"source":185,"target":11},{"source":186,"target":11},{"source":187,"target":11},{"source":188,"target":11},{"source":189,"target":11},{"source":190,"target":11},{"source":191,"target":11},{"source":192,"target":11},{"source":193,"target":11},{"source":194,"target":11},{"source":195,"target":11},{"source":196,"target":11},{"source":197,"target":11},{"source":198,"target":11},{"source":199,"target":11},{"source":200,"target":11},{"source":201,"target":11},{"source":202,"target":11},{"source":203,"target":11},{"source":204,"target":11},{"source":205,"target":11},{"source":206,"target":11},{"source":207,"target":11},{"source":208,"target":11},{"source":209,"target":11},{"source":210,"target":11},{"source":211,"target":11},{"source":212,"target":11},{"source":213,"target":11},{"source":214,"target":11},{"source":215,"target":11},{"source":216,"target":11},{"source":217,"target":11},{"source":218,"target":11},{"source":219,"target":11},{"source":220,"target":11},{"source":221,"target":11},{"source":222,"target":11},{"source":223,"target":11},{"source":224,"target":11},{"source":225,"target":11},{"source":226,"target":11},{"source":227,"target":11},{"source":228,"target":11},{"source":12,"target":0},{"source":12,"target":4},{"source":12,"target":229},{"source":12,"target":230},{"source":229,"target":14},{"source":229,"target":231},{"source":229,"target":12},{"source":231,"target":14},{"source":230,"target":4},{"source":13,"target":0},{"source":13,"target":1},{"source":13,"target":232},{"source":13,"target":233},{"source":13,"target":234},{"source":232,"target":11},{"source":232,"target":235},{"source":232,"target":13},{"source":235,"target":11},{"source":233,"target":236},{"source":233,"target":13},{"source":234,"target":1},{"source":14,"target":0},{"source":14,"target":237},{"source":14,"target":238},{"source":14,"target":239},{"source":14,"target":240},{"source":14,"target":241},{"source":14,"target":242},{"source":14,"target":243},{"source":14,"target":244},{"source":14,"target":245},{"source":14,"target":246},{"source":14,"target":247},{"source":14,"target":248},{"source":14,"target":249},{"source":14,"target":250},{"source":14,"target":251},{"source":14,"target":252},{"source":14,"target":253},{"source":14,"target":254},{"source":14,"target":255},{"source":14,"target":256},{"source":14,"target":257},{"source":14,"target":258},{"source":14,"target":259},{"source":14,"target":260},{"source":14,"target":261},{"source":14,"target":262},{"source":14,"target":263},{"source":14,"target":264},{"source":14,"target":265},{"source":14,"target":266},{"source":14,"target":267},{"source":14,"target":268},{"source":14,"target":269},{"source":14,"target":270},{"source":14,"target":271},{"source":14,"target":272},{"source":14,"target":273},{"source":14,"target":274},{"source":14,"target":275},{"source":14,"target":276},{"source":14,"target":277},{"source":14,"target":278},{"source":14,"target":279},{"source":14,"target":280},{"source":14,"target":281},{"source":14,"target":282},{"source":14,"target":283},{"source":14,"target":284},{"source":14,"target":285},{"source":14,"target":286},{"source":14,"target":287},{"source":14,"target":288},{"source":14,"target":289},{"source":14,"target":290},{"source":14,"target":291},{"source":14,"target":292},{"source":14,"target":293},{"source":14,"target":294},{"source":14,"target":295},{"source":14,"target":296},{"source":14,"target":297},{"source":14,"target":298},{"source":14,"target":299},{"source":14,"target":300},{"source":14,"target":301},{"source":14,"target":302},{"source":14,"target":303},{"source":14,"target":304},{"source":14,"target":305},{"source":14,"target":306},{"source":14,"target":307},{"source":14,"target":308},{"source":14,"target":309},{"source":14,"target":310},{"source":14,"target":311},{"source":14,"target":312},{"source":14,"target":313},{"source":14,"target":314},{"source":14,"target":315},{"source":14,"target":316},{"source":14,"target":317},{"source":14,"target":318},{"source":14,"target":319},{"source":14,"target":320},{"source":14,"target":321},{"source":14,"target":322},{"source":14,"target":323},{"source":14,"target":324},{"source":14,"target":325},{"source":14,"target":326},{"source":14,"target":327},{"source":14,"target":328},{"source":14,"target":329},{"source":14,"target":330},{"source":14,"target":331},{"source":14,"target":332},{"source":14,"target":333},{"source":14,"target":334},{"source":14,"target":335},{"source":14,"target":336},{"source":14,"target":337},{"source":14,"target":338},{"source":14,"target":339},{"source":14,"target":340},{"source":14,"target":341},{"source":14,"target":342},{"source":14,"target":343},{"source":14,"target":344},{"source":14,"target":345},{"source":14,"target":346},{"source":14,"target":347},{"source":14,"target":348},{"source":14,"target":349},{"source":14,"target":350},{"source":14,"target":351},{"source":14,"target":352},{"source":14,"target":353},{"source":14,"target":354},{"source":14,"target":355},{"source":14,"target":356},{"source":14,"target":357},{"source":14,"target":358},{"source":14,"target":359},{"source":237,"target":14},{"source":238,"target":14},{"source":239,"target":14},{"source":240,"target":14},{"source":241,"target":14},{"source":242,"target":14},{"source":243,"target":14},{"source":244,"target":14},{"source":245,"target":14},{"source":246,"target":14},{"source":247,"target":14},{"source":248,"target":14},{"source":249,"target":14},{"source":250,"target":14},{"source":251,"target":14},{"source":252,"target":14},{"source":253,"target":14},{"source":254,"target":14},{"source":255,"target":14},{"source":256,"target":14},{"source":257,"target":14},{"source":258,"target":14},{"source":259,"target":14},{"source":260,"target":14},{"source":261,"target":14},{"source":262,"target":14},{"source":263,"target":14},{"source":264,"target":14},{"source":265,"target":14},{"source":266,"target":14},{"source":267,"target":14},{"source":268,"target":14},{"source":269,"target":14},{"source":270,"target":14},{"source":271,"target":14},{"source":272,"target":14},{"source":273,"target":14},{"source":274,"target":14},{"source":275,"target":14},{"source":276,"target":14},{"source":277,"target":14},{"source":278,"target":14},{"source":279,"target":14},{"source":280,"target":14},{"source":281,"target":14},{"source":282,"target":14},{"source":283,"target":14},{"source":284,"target":14},{"source":285,"target":14},{"source":286,"target":14},{"source":287,"target":14},{"source":288,"target":14},{"source":289,"target":14},{"source":290,"target":14},{"source":291,"target":14},{"source":292,"target":14},{"source":293,"target":14},{"source":294,"target":14},{"source":295,"target":14},{"source":296,"target":14},{"source":297,"target":14},{"source":298,"target":14},{"source":299,"target":14},{"source":300,"target":14},{"source":301,"target":14},{"source":302,"target":14},{"source":303,"target":14},{"source":304,"target":14},{"source":305,"target":14},{"source":306,"target":14},{"source":307,"target":14},{"source":308,"target":14},{"source":309,"target":14},{"source":310,"target":14},{"source":311,"target":14},{"source":312,"target":14},{"source":313,"target":14},{"source":314,"target":14},{"source":315,"target":14},{"source":316,"target":14},{"source":317,"target":14},{"source":318,"target":14},{"source":319,"target":14},{"source":320,"target":14},{"source":321,"target":14},{"source":322,"target":14},{"source":323,"target":14},{"source":324,"target":14},{"source":325,"target":14},{"source":326,"target":14},{"source":327,"target":14},{"source":328,"target":14},{"source":329,"target":14},{"source":330,"target":14},{"source":331,"target":14},{"source":332,"target":14},{"source":333,"target":14},{"source":334,"target":14},{"source":335,"target":14},{"source":336,"target":14},{"source":337,"target":14},{"source":338,"target":14},{"source":339,"target":14},{"source":340,"target":14},{"source":341,"target":14},{"source":342,"target":14},{"source":343,"target":14},{"source":344,"target":14},{"source":345,"target":14},{"source":346,"target":14},{"source":347,"target":14},{"source":348,"target":14},{"source":349,"target":14},{"source":350,"target":14},{"source":351,"target":14},{"source":352,"target":14},{"source":353,"target":14},{"source":354,"target":14},{"source":355,"target":14},{"source":356,"target":14},{"source":357,"target":14},{"source":358,"target":14},{"source":359,"target":14},{"source":15,"target":0},{"source":15,"target":360},{"source":15,"target":361},{"source":15,"target":362},{"source":15,"target":363},{"source":15,"target":364},{"source":15,"target":365},{"source":15,"target":366},{"source":15,"target":367},{"source":15,"target":368},{"source":15,"target":369},{"source":15,"target":370},{"source":360,"target":15},{"source":361,"target":15},{"source":362,"target":15},{"source":363,"target":15},{"source":364,"target":15},{"source":365,"target":15},{"source":366,"target":15},{"source":367,"target":15},{"source":368,"target":15},{"source":369,"target":15},{"source":370,"target":15},{"source":16,"target":0},{"source":16,"target":4},{"source":16,"target":371},{"source":16,"target":372},{"source":371,"target":10},{"source":371,"target":373},{"source":371,"target":16},{"source":373,"target":10},{"source":372,"target":4},{"source":17,"target":0},{"source":17,"target":4},{"source":17,"target":374},{"source":17,"target":375},{"source":374,"target":15},{"source":374,"target":376},{"source":374,"target":17},{"source":376,"target":15},{"source":375,"target":4},{"source":18,"target":0},{"source":18,"target":5},{"source":18,"target":377},{"source":377,"target":5},{"source":19,"target":0},{"source":19,"target":5},{"source":19,"target":378},{"source":19,"target":379},{"source":378,"target":8},{"source":378,"target":380},{"source":378,"target":19},{"source":380,"target":8},{"source":379,"target":5},{"source":20,"target":0},{"source":20,"target":5},{"source":20,"target":381},{"source":20,"target":382},{"source":381,"target":8},{"source":381,"target":383},{"source":381,"target":20},{"source":383,"target":8},{"source":382,"target":5},{"source":21,"target":0},{"source":21,"target":5},{"source":21,"target":384},{"source":384,"target":5},{"source":22,"target":0},{"source":22,"target":5},{"source":22,"target":385},{"source":22,"target":386},{"source":22,"target":387},{"source":22,"target":388},{"source":385,"target":389},{"source":385,"target":22},{"source":386,"target":390},{"source":386,"target":22},{"source":387,"target":3},{"source":387,"target":391},{"source":387,"target":22},{"source":391,"target":3},{"source":388,"target":5},{"source":23,"target":0},{"source":23,"target":5},{"source":23,"target":392},{"source":392,"target":5},{"source":24,"target":0},{"source":24,"target":5},{"source":24,"target":393},{"source":393,"target":5},{"source":25,"target":0},{"source":25,"target":5},{"source":25,"target":394},{"source":25,"target":395},{"source":394,"target":40},{"source":394,"target":396},{"source":394,"target":25},{"source":396,"target":40},{"source":395,"target":5},{"source":26,"target":0},{"source":26,"target":5},{"source":26,"target":397},{"source":397,"target":5},{"source":27,"target":0},{"source":27,"target":5},{"source":27,"target":398},{"source":398,"target":5},{"source":28,"target":0},{"source":28,"target":5},{"source":28,"target":399},{"source":399,"target":5},{"source":29,"target":0},{"source":29,"target":5},{"source":29,"target":400},{"source":400,"target":5},{"source":30,"target":0},{"source":30,"target":5},{"source":30,"target":401},{"source":401,"target":5},{"source":31,"target":0},{"source":32,"target":0},{"source":33,"target":0},{"source":33,"target":5},{"source":33,"target":402},{"source":33,"target":403},{"source":33,"target":404},{"source":33,"target":405},{"source":402,"target":33},{"source":402,"target":406},{"source":402,"target":33},{"source":406,"target":33},{"source":403,"target":407},{"source":403,"target":33},{"source":404,"target":408},{"source":404,"target":33},{"source":405,"target":5},{"source":34,"target":0},{"source":34,"target":409},{"source":34,"target":410},{"source":34,"target":411},{"source":34,"target":412},{"source":34,"target":413},{"source":34,"target":414},{"source":34,"target":415},{"source":34,"target":416},{"source":34,"target":417},{"source":34,"target":418},{"source":34,"target":419},{"source":34,"target":420},{"source":34,"target":421},{"source":34,"target":422},{"source":34,"target":423},{"source":34,"target":424},{"source":409,"target":34},{"source":410,"target":34},{"source":411,"target":34},{"source":412,"target":34},{"source":413,"target":34},{"source":414,"target":34},{"source":415,"target":34},{"source":416,"target":34},{"source":417,"target":34},{"source":418,"target":34},{"source":419,"target":34},{"source":420,"target":34},{"source":421,"target":34},{"source":422,"target":34},{"source":423,"target":34},{"source":424,"target":34},{"source":35,"target":0},{"source":35,"target":1},{"source":35,"target":425},{"source":35,"target":426},{"source":35,"target":427},{"source":35,"target":428},{"source":425,"target":34},{"source":425,"target":429},{"source":425,"target":35},{"source":429,"target":34},{"source":426,"target":430},{"source":426,"target":35},{"source":427,"target":431},{"source":427,"target":35},{"source":428,"target":1},{"source":36,"target":0},{"source":36,"target":432},{"source":36,"target":433},{"source":36,"target":434},{"source":36,"target":435},{"source":36,"target":436},{"source":36,"target":437},{"source":36,"target":438},{"source":36,"target":439},{"source":36,"target":440},{"source":36,"target":441},{"source":36,"target":442},{"source":36,"target":443},{"source":36,"target":444},{"source":36,"target":445},{"source":36,"target":446},{"source":36,"target":447},{"source":36,"target":448},{"source":36,"target":449},{"source":36,"target":450},{"source":36,"target":451},{"source":36,"target":452},{"source":36,"target":453},{"source":36,"target":454},{"source":36,"target":455},{"source":36,"target":456},{"source":36,"target":457},{"source":36,"target":458},{"source":36,"target":459},{"source":36,"target":460},{"source":36,"target":461},{"source":36,"target":462},{"source":36,"target":463},{"source":36,"target":464},{"source":36,"target":465},{"source":36,"target":466},{"source":36,"target":467},{"source":36,"target":468},{"source":36,"target":469},{"source":36,"target":470},{"source":36,"target":471},{"source":36,"target":472},{"source":36,"target":473},{"source":36,"target":474},{"source":36,"target":475},{"source":36,"target":476},{"source":36,"target":477},{"source":36,"target":478},{"source":36,"target":479},{"source":36,"target":480},{"source":36,"target":481},{"source":36,"target":482},{"source":36,"target":483},{"source":36,"target":484},{"source":36,"target":485},{"source":36,"target":486},{"source":36,"target":487},{"source":36,"target":488},{"source":36,"target":489},{"source":36,"target":490},{"source":36,"target":491},{"source":36,"target":492},{"source":36,"target":493},{"source":36,"target":494},{"source":36,"target":495},{"source":36,"target":496},{"source":36,"target":497},{"source":36,"target":498},{"source":432,"target":36},{"source":433,"target":36},{"source":434,"target":36},{"source":435,"target":36},{"source":436,"target":36},{"source":437,"target":36},{"source":438,"target":36},{"source":439,"target":36},{"source":440,"target":36},{"source":441,"target":36},{"source":442,"target":36},{"source":443,"target":36},{"source":444,"target":36},{"source":445,"target":36},{"source":446,"target":36},{"source":447,"target":36},{"source":448,"target":36},{"source":449,"target":36},{"source":450,"target":36},{"source":451,"target":36},{"source":452,"target":36},{"source":453,"target":36},{"source":454,"target":36},{"source":455,"target":36},{"source":456,"target":36},{"source":457,"target":36},{"source":458,"target":36},{"source":459,"target":36},{"source":460,"target":36},{"source":461,"target":36},{"source":462,"target":36},{"source":463,"target":36},{"source":464,"target":36},{"source":465,"target":36},{"source":466,"target":36},{"source":467,"target":36},{"source":468,"target":36},{"source":469,"target":36},{"source":470,"target":36},{"source":471,"target":36},{"source":472,"target":36},{"source":473,"target":36},{"source":474,"target":36},{"source":475,"target":36},{"source":476,"target":36},{"source":477,"target":36},{"source":478,"target":36},{"source":479,"target":36},{"source":480,"target":36},{"source":481,"target":36},{"source":482,"target":36},{"source":483,"target":36},{"source":484,"target":36},{"source":485,"target":36},{"source":486,"target":36},{"source":487,"target":36},{"source":488,"target":36},{"source":489,"target":36},{"source":490,"target":36},{"source":491,"target":36},{"source":492,"target":36},{"source":493,"target":36},{"source":494,"target":36},{"source":495,"target":36},{"source":496,"target":36},{"source":497,"target":36},{"source":498,"target":36},{"source":37,"target":0},{"source":37,"target":1},{"source":37,"target":499},{"source":37,"target":500},{"source":499,"target":36},{"source":499,"target":501},{"source":499,"target":37},{"source":501,"target":36},{"source":500,"target":1},{"source":38,"target":0},{"source":38,"target":502},{"source":38,"target":503},{"source":38,"target":504},{"source":38,"target":505},{"source":38,"target":506},{"source":38,"target":507},{"source":38,"target":508},{"source":38,"target":509},{"source":38,"target":510},{"source":38,"target":511},{"source":38,"target":512},{"source":38,"target":513},{"source":502,"target":38},{"source":503,"target":38},{"source":504,"target":38},{"source":505,"target":38},{"source":506,"target":38},{"source":507,"target":38},{"source":508,"target":38},{"source":509,"target":38},{"source":510,"target":38},{"source":511,"target":38},{"source":512,"target":38},{"source":513,"target":38},{"source":39,"target":0},{"source":39,"target":1},{"source":39,"target":514},{"source":39,"target":515},{"source":514,"target":38},{"source":514,"target":516},{"source":514,"target":39},{"source":516,"target":38},{"source":515,"target":1},{"source":40,"target":0},{"source":40,"target":517},{"source":517,"target":518},{"source":517,"target":40},{"source":41,"target":0},{"source":42,"target":0},{"source":42,"target":5},{"source":42,"target":519},{"source":519,"target":5},{"source":43,"target":0},{"source":43,"target":5},{"source":43,"target":520},{"source":43,"target":521},{"source":43,"target":522},{"source":43,"target":523},{"source":43,"target":524},{"source":43,"target":525},{"source":43,"target":526},{"source":43,"target":527},{"source":520,"target":528},{"source":520,"target":43},{"source":521,"target":529},{"source":521,"target":43},{"source":522,"target":530},{"source":522,"target":43},{"source":523,"target":531},{"source":523,"target":43},{"source":524,"target":532},{"source":524,"target":43},{"source":525,"target":44},{"source":525,"target":533},{"source":525,"target":43},{"source":533,"target":44},{"source":526,"target":45},{"source":526,"target":534},{"source":526,"target":43},{"source":534,"target":45},{"source":527,"target":5},{"source":44,"target":0},{"source":44,"target":535},{"source":44,"target":536},{"source":44,"target":537},{"source":44,"target":538},{"source":44,"target":539},{"source":535,"target":44},{"source":536,"target":44},{"source":537,"target":44},{"source":538,"target":44},{"source":539,"target":44},{"source":45,"target":0},{"source":45,"target":540},{"source":45,"target":541},{"source":45,"target":542},{"source":45,"target":543},{"source":540,"target":45},{"source":541,"target":45},{"source":542,"target":45},{"source":543,"target":45},{"source":46,"target":0},{"source":46,"target":5},{"source":46,"target":544},{"source":46,"target":545},{"source":46,"target":546},{"source":46,"target":547},{"source":544,"target":548},{"source":544,"target":46},{"source":545,"target":549},{"source":545,"target":46},{"source":546,"target":47},{"source":546,"target":550},{"source":546,"target":46},{"source":550,"target":47},{"source":547,"target":5},{"source":47,"target":0},{"source":47,"target":551},{"source":47,"target":552},{"source":47,"target":553},{"source":47,"target":554},{"source":47,"target":555},{"source":47,"target":556},{"source":47,"target":557},{"source":47,"target":558},{"source":47,"target":559},{"source":47,"target":560},{"source":47,"target":561},{"source":551,"target":47},{"source":552,"target":47},{"source":553,"target":47},{"source":554,"target":47},{"source":555,"target":47},{"source":556,"target":47},{"source":557,"target":47},{"source":558,"target":47},{"source":559,"target":47},{"source":560,"target":47},{"source":561,"target":47},{"source":48,"target":0},{"source":48,"target":46},{"source":48,"target":562},{"source":562,"target":46},{"source":49,"target":0},{"source":49,"target":5},{"source":49,"target":563},{"source":49,"target":564},{"source":563,"target":565},{"source":563,"target":49},{"source":564,"target":5},{"source":50,"target":0},{"source":50,"target":42},{"source":50,"target":566},{"source":50,"target":567},{"source":50,"target":568},{"source":566,"target":569},{"source":566,"target":50},{"source":567,"target":570},{"source":567,"target":50},{"source":568,"target":42},{"source":51,"target":0},{"source":51,"target":5},{"source":51,"target":571},{"source":51,"target":572},{"source":51,"target":573},{"source":51,"target":574},{"source":51,"target":575},{"source":51,"target":576},{"source":571,"target":577},{"source":571,"target":51},{"source":572,"target":578},{"source":572,"target":51},{"source":573,"target":579},{"source":573,"target":51},{"source":574,"target":580},{"source":574,"target":51},{"source":575,"target":581},{"source":575,"target":51},{"source":576,"target":5},{"source":52,"target":0},{"source":52,"target":5},{"source":52,"target":582},{"source":52,"target":583},{"source":52,"target":584},{"source":52,"target":585},{"source":582,"target":586},{"source":582,"target":52},{"source":583,"target":587},{"source":583,"target":52},{"source":584,"target":588},{"source":584,"target":52},{"source":585,"target":5},{"source":53,"target":0},{"source":53,"target":5},{"source":53,"target":589},{"source":53,"target":590},{"source":53,"target":591},{"source":53,"target":592},{"source":589,"target":57},{"source":589,"target":593},{"source":589,"target":53},{"source":589,"target":594},{"source":593,"target":57},{"source":594,"target":54},{"source":594,"target":595},{"source":594,"target":589},{"source":595,"target":54},{"source":590,"target":54},{"source":590,"target":596},{"source":590,"target":53},{"source":596,"target":54},{"source":591,"target":55},{"source":591,"target":597},{"source":591,"target":53},{"source":597,"target":55},{"source":592,"target":5},{"source":54,"target":0},{"source":54,"target":598},{"source":54,"target":599},{"source":598,"target":600},{"source":598,"target":54},{"source":599,"target":601},{"source":599,"target":54},{"source":55,"target":0},{"source":55,"target":602},{"source":55,"target":603},{"source":55,"target":604},{"source":55,"target":605},{"source":602,"target":606},{"source":602,"target":55},{"source":603,"target":607},{"source":603,"target":55},{"source":604,"target":56},{"source":604,"target":608},{"source":604,"target":55},{"source":608,"target":56},{"source":605,"target":57},{"source":605,"target":609},{"source":605,"target":55},{"source":609,"target":57},{"source":56,"target":0},{"source":56,"target":610},{"source":56,"target":611},{"source":56,"target":612},{"source":56,"target":613},{"source":56,"target":614},{"source":56,"target":615},{"source":56,"target":616},{"source":56,"target":617},{"source":610,"target":56},{"source":611,"target":56},{"source":612,"target":56},{"source":613,"target":56},{"source":614,"target":56},{"source":615,"target":56},{"source":616,"target":56},{"source":617,"target":56},{"source":57,"target":0},{"source":57,"target":618},{"source":57,"target":619},{"source":57,"target":620},{"source":618,"target":621},{"source":618,"target":57},{"source":619,"target":58},{"source":619,"target":622},{"source":619,"target":57},{"source":622,"target":58},{"source":620,"target":623},{"source":620,"target":57},{"source":58,"target":0},{"source":58,"target":624},{"source":58,"target":625},{"source":58,"target":626},{"source":624,"target":58},{"source":625,"target":58},{"source":626,"target":58},{"source":59,"target":0},{"source":59,"target":627},{"source":627,"target":55},{"source":627,"target":628},{"source":627,"target":59},{"source":628,"target":55},{"source":60,"target":0},{"source":60,"target":629},{"source":60,"target":630},{"source":60,"target":631},{"source":60,"target":632},{"source":60,"target":633},{"source":629,"target":60},{"source":630,"target":60},{"source":631,"target":60},{"source":632,"target":60},{"source":633,"target":60},{"source":61,"target":0},{"source":61,"target":634},{"source":61,"target":635},{"source":61,"target":636},{"source":61,"target":637},{"source":61,"target":638},{"source":61,"target":639},{"source":634,"target":61},{"source":635,"target":61},{"source":636,"target":61},{"source":637,"target":61},{"source":638,"target":61},{"source":639,"target":61},{"source":62,"target":0},{"source":62,"target":5},{"source":62,"target":640},{"source":62,"target":641},{"source":62,"target":642},{"source":62,"target":643},{"source":640,"target":60},{"source":640,"target":644},{"source":640,"target":62},{"source":644,"target":60},{"source":641,"target":63},{"source":641,"target":645},{"source":641,"target":62},{"source":645,"target":63},{"source":642,"target":61},{"source":642,"target":646},{"source":642,"target":62},{"source":646,"target":61},{"source":643,"target":5},{"source":63,"target":0},{"source":63,"target":647},{"source":63,"target":648},{"source":63,"target":649},{"source":63,"target":650},{"source":647,"target":63},{"source":648,"target":63},{"source":649,"target":63},{"source":650,"target":63},{"source":64,"target":0},{"source":64,"target":5},{"source":64,"target":651},{"source":64,"target":652},{"source":64,"target":653},{"source":651,"target":60},{"source":651,"target":654},{"source":651,"target":64},{"source":654,"target":60},{"source":652,"target":63},{"source":652,"target":655},{"source":652,"target":64},{"source":655,"target":63},{"source":653,"target":5},{"source":65,"target":0},{"source":65,"target":656},{"source":65,"target":657},{"source":65,"target":658},{"source":65,"target":659},{"source":65,"target":660},{"source":656,"target":65},{"source":657,"target":65},{"source":658,"target":65},{"source":659,"target":65},{"source":660,"target":65},{"source":66,"target":0},{"source":66,"target":5},{"source":66,"target":661},{"source":66,"target":662},{"source":661,"target":65},{"source":661,"target":663},{"source":661,"target":66},{"source":663,"target":65},{"source":662,"target":5}],"multigraph":true}