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
|
<?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="xpathtest" nsURI="http://www.eclipse.org/emf/xpathtest" nsPrefix="xpathtest">
<eClassifiers xsi:type="ecore:EClass" name="Root">
<eStructuralFeatures xsi:type="ecore:EReference" name="nodes" upperBound="-1"
eType="#//Node" containment="true"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="id" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Node" eSuperTypes="#//MenuContainer">
<eStructuralFeatures xsi:type="ecore:EReference" name="parent" eType="#//Node"
eOpposite="#//Node/children"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="children" upperBound="-1"
eType="#//Node" containment="true" eOpposite="#//Node/parent"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="root" eType="#//Root"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="cat" 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"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="id" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="inrefs" upperBound="-1"
eType="#//Node" eOpposite="#//Node/outrefs"/>
<eStructuralFeatures xsi:type="ecore:EReference" name="outrefs" upperBound="-1"
eType="#//Node" eOpposite="#//Node/inrefs"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="ExtendedNode" eSuperTypes="#//Node">
<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="Menu" eSuperTypes="#//MenuElement">
<eStructuralFeatures xsi:type="ecore:EReference" name="children" upperBound="-1"
eType="#//MenuElement" containment="true"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="MenuItem" eSuperTypes="#//MenuElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="mnemonic" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EChar"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="MenuElement">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="id" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="label" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="MenuContainer" abstract="true" interface="true">
<eStructuralFeatures xsi:type="ecore:EReference" name="menus" upperBound="-1"
eType="#//MenuElement" containment="true"/>
</eClassifiers>
</ecore:EPackage>
|