Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 2c3f1c372fb92d68b8060ce8db7f0a08ad0150ed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?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="umlState" nsURI="http://www.eclipse.org/papyrus/uml/textedit/state/xtext/UmlState"
    nsPrefix="umlState">
  <eClassifiers xsi:type="ecore:EClass" name="StateRule">
    <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/>
    <eStructuralFeatures xsi:type="ecore:EReference" name="submachine" eType="#//SubmachineRule"
        containment="true"/>
    <eStructuralFeatures xsi:type="ecore:EReference" name="entry" eType="#//EntryRule"
        containment="true"/>
    <eStructuralFeatures xsi:type="ecore:EReference" name="do" eType="#//DoRule" containment="true"/>
    <eStructuralFeatures xsi:type="ecore:EReference" name="exit" eType="#//ExitRule"
        containment="true"/>
  </eClassifiers>
  <eClassifiers xsi:type="ecore:EClass" name="SubmachineRule">
    <eStructuralFeatures xsi:type="ecore:EReference" name="path" eType="#//QualifiedName"
        containment="true"/>
    <eStructuralFeatures xsi:type="ecore:EReference" name="submachine" eType="ecore:EClass ../../../../../../../../../org.eclipse.uml2.uml/model/UML.ecore#//StateMachine"/>
  </eClassifiers>
  <eClassifiers xsi:type="ecore:EClass" name="QualifiedName">
    <eStructuralFeatures xsi:type="ecore:EReference" name="path" eType="ecore:EClass ../../../../../../../../../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="EntryRule">
    <eStructuralFeatures xsi:type="ecore:EAttribute" name="kind" eType="#//BehaviorKind"/>
    <eStructuralFeatures xsi:type="ecore:EAttribute" name="behaviorName" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/>
  </eClassifiers>
  <eClassifiers xsi:type="ecore:EClass" name="DoRule">
    <eStructuralFeatures xsi:type="ecore:EAttribute" name="kind" eType="#//BehaviorKind"/>
    <eStructuralFeatures xsi:type="ecore:EAttribute" name="behaviorName" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/>
  </eClassifiers>
  <eClassifiers xsi:type="ecore:EClass" name="ExitRule">
    <eStructuralFeatures xsi:type="ecore:EAttribute" name="kind" eType="#//BehaviorKind"/>
    <eStructuralFeatures xsi:type="ecore:EAttribute" name="behaviorName" eType="ecore:EDataType platform:/plugin/org.eclipse.emf.ecore/model/Ecore.ecore#//EString"/>
  </eClassifiers>
  <eClassifiers xsi:type="ecore:EEnum" name="BehaviorKind">
    <eLiterals name="ACTIVITY" literal="Activity"/>
    <eLiterals name="STATE_MACHINE" value="1" literal="StateMachine"/>
    <eLiterals name="OPAQUE_BEHAVIOR" value="2" literal="OpaqueBehavior"/>
  </eClassifiers>
</ecore:EPackage>

Back to the top