rgen 0.4.3 → 0.4.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (32) hide show
  1. data/CHANGELOG +6 -0
  2. data/lib/mmgen/metamodel_generator.rb +2 -1
  3. data/lib/mmgen/mm_ext/{ecore_ext.rb → ecore_mmgen_ext.rb} +3 -7
  4. data/lib/mmgen/templates/metamodel_generator.tpl +10 -8
  5. data/lib/rgen/ecore/ecore_ext.rb +69 -0
  6. data/lib/rgen/ecore/ecore_transformer.rb +1 -1
  7. data/lib/rgen/metamodel_builder/builder_extensions.rb +10 -2
  8. data/lib/rgen/serializer/xmi11_serializer.rb +101 -0
  9. data/lib/rgen/serializer/xmi20_serializer.rb +7 -7
  10. data/lib/rgen/serializer/xml_serializer.rb +47 -14
  11. data/test/ea_serializer_test.rb +29 -0
  12. data/test/ea_serializer_test/ea_testmodel_regenerated.xml +821 -0
  13. data/test/metamodel_roundtrip_test.rb +1 -2
  14. data/test/metamodel_roundtrip_test/TestModel.rb +1 -0
  15. data/test/metamodel_roundtrip_test/TestModel_Regenerated.rb +34 -35
  16. data/test/metamodel_roundtrip_test/houseMetamodel_Regenerated.ecore +128 -236
  17. data/test/rgen_test.rb +1 -0
  18. metadata +93 -95
  19. data/lib/rgen/metamodel_builder.rb.bak +0 -196
  20. data/lib/rgen/metamodel_builder/builder_extensions.rb.bak +0 -437
  21. data/lib/rgen/metamodel_builder/builder_runtime.rb.bak +0 -73
  22. data/lib/rgen/name_helper.rb.bak +0 -37
  23. data/lib/rgen/template_language.rb.bak +0 -289
  24. data/lib/rgen/template_language/directory_template_container.rb.bak +0 -69
  25. data/lib/rgen/template_language/output_handler.rb.bak +0 -88
  26. data/lib/rgen/template_language/template_container.rb.bak +0 -196
  27. data/lib/rgen/transformer.rb.bak +0 -381
  28. data/test/environment_test.rb.bak +0 -52
  29. data/test/metamodel_builder_test.rb.bak +0 -443
  30. data/test/output_handler_test.rb.bak +0 -50
  31. data/test/template_language_test.rb.bak +0 -72
  32. data/test/transformer_test.rb.bak +0 -223
@@ -53,9 +53,8 @@ class MetamodelGeneratorTest < Test::Unit::TestCase
53
53
  def test_ecore_serializer
54
54
  require TEST_DIR+"/TestModel.rb"
55
55
  File.open(TEST_DIR+"/houseMetamodel_Regenerated.ecore","w") do |f|
56
- ser = RGen::Serializer::XMI20Serializer.new
56
+ ser = RGen::Serializer::XMI20Serializer.new(f)
57
57
  ser.serialize(HouseMetamodel.ecore)
58
- f.write(ser.result)
59
58
  end
60
59
  end
61
60
 
@@ -33,6 +33,7 @@ module HouseMetamodel
33
33
 
34
34
 
35
35
  class Room < RGen::MetamodelBuilder::MMBase
36
+ abstract
36
37
  annotation 'complexity' => '1', 'date_created' => '2005-09-16 19:52:28', 'date_modified' => '2006-06-22 21:15:25', 'ea_ntype' => '0', 'ea_stype' => 'Class', 'gentype' => 'Java', 'isSpecification' => 'false', 'package' => 'EAPK_F9D8C6E3_4DAD_4aa2_AD47_D0ABA4E93E08', 'package_name' => 'Rooms', 'phase' => '1.0', 'status' => 'Proposed', 'style' => 'BackColor=-1;BorderColor=-1;BorderWidth=-1;FontColor=-1;VSwimLanes=0;HSwimLanes=0;BorderStyle=0;', 'tagged' => '0', 'version' => '1.0'
37
38
  end
38
39
 
@@ -6,55 +6,57 @@ module HouseMetamodel
6
6
 
7
7
  SexEnum = Enum.new(:name => 'SexEnum', :literals =>[ :male, :female ])
8
8
 
9
- class MeetingPlace < RGen::MetamodelBuilder::MMBase
10
- annotation :source => "testmodel", :details => {'complexity' => '1', 'date_created' => '2006-07-12 08:40:46', 'date_modified' => '2006-07-12 08:44:02', 'ea_ntype' => '0', 'ea_stype' => 'Class', 'gentype' => 'Java', 'isSpecification' => 'false', 'package' => 'EAPK_A1B83D59_CAE1_422c_BA5F_D3624D7156AD', 'package_name' => 'HouseMetamodel', 'phase' => '1.0', 'status' => 'Proposed', 'style' => 'BackColor=-1;BorderColor=-1;BorderWidth=-1;FontColor=-1;VSwimLanes=0;HSwimLanes=0;BorderStyle=0;', 'tagged' => '0', 'version' => '1.0'}
11
- end
12
-
13
- class House < RGen::MetamodelBuilder::MMBase
14
- annotation 'complexity' => '1', 'date_created' => '2005-09-16 19:52:18', 'date_modified' => '2006-02-28 08:29:19', 'ea_ntype' => '0', 'ea_stype' => 'Class', 'gentype' => 'Java', 'isSpecification' => 'false', 'package' => 'EAPK_A1B83D59_CAE1_422c_BA5F_D3624D7156AD', 'package_name' => 'HouseMetamodel', 'phase' => '1.0', 'status' => 'Proposed', 'stereotype' => 'dummy', 'style' => 'BackColor=-1;BorderColor=-1;BorderWidth=-1;FontColor=-1;VSwimLanes=0;HSwimLanes=0;BorderStyle=0;', 'tagged' => '0', 'version' => '1.0'
15
- has_attr 'size', Integer
16
- has_attr 'module', String
17
- has_attr 'address', String, :changeable => false do
18
- annotation 'collection' => 'false', 'containment' => 'Not Specified', 'derived' => '0', 'duplicates' => '0', 'ea_guid' => '{A8DF581B-9AC6-4f75-AB48-8FAEDFC6E068}', 'lowerBound' => '1', 'ordered' => '0', 'position' => '0', 'styleex' => 'volatile=0;', 'type' => 'String', 'upperBound' => '1'
19
- end
20
- end
9
+ module DependingOnRooms
10
+ extend RGen::MetamodelBuilder::ModuleExtension
11
+ include RGen::MetamodelBuilder::DataTypes
21
12
 
22
- class Person < RGen::MetamodelBuilder::MMBase
23
- annotation 'complexity' => '1', 'date_created' => '2006-06-27 08:34:23', 'date_modified' => '2006-06-27 08:34:26', 'ea_ntype' => '0', 'ea_stype' => 'Class', 'gentype' => 'Java', 'isSpecification' => 'false', 'package' => 'EAPK_A1B83D59_CAE1_422c_BA5F_D3624D7156AD', 'package_name' => 'HouseMetamodel', 'phase' => '1.0', 'status' => 'Proposed', 'style' => 'BackColor=-1;BorderColor=-1;BorderWidth=-1;FontColor=-1;VSwimLanes=0;HSwimLanes=0;BorderStyle=0;', 'tagged' => '0', 'version' => '1.0'
24
- has_attr 'sex', HouseMetamodel::SexEnum
25
13
  end
26
14
 
27
-
28
15
  module Rooms
29
16
  extend RGen::MetamodelBuilder::ModuleExtension
30
17
  include RGen::MetamodelBuilder::DataTypes
31
18
 
19
+ end
20
+ end
32
21
 
33
- class Room < RGen::MetamodelBuilder::MMBase
34
- annotation 'complexity' => '1', 'date_created' => '2005-09-16 19:52:28', 'date_modified' => '2006-06-22 21:15:25', 'ea_ntype' => '0', 'ea_stype' => 'Class', 'gentype' => 'Java', 'isSpecification' => 'false', 'package' => 'EAPK_F9D8C6E3_4DAD_4aa2_AD47_D0ABA4E93E08', 'package_name' => 'Rooms', 'phase' => '1.0', 'status' => 'Proposed', 'style' => 'BackColor=-1;BorderColor=-1;BorderWidth=-1;FontColor=-1;VSwimLanes=0;HSwimLanes=0;BorderStyle=0;', 'tagged' => '0', 'version' => '1.0'
35
- end
36
-
37
- class Kitchen < RGen::MetamodelBuilder::MMMultiple(HouseMetamodel::MeetingPlace, Room)
38
- annotation 'complexity' => '1', 'date_created' => '2005-11-30 19:26:13', 'date_modified' => '2006-06-22 21:15:34', 'ea_ntype' => '0', 'ea_stype' => 'Class', 'gentype' => 'Java', 'isSpecification' => 'false', 'package' => 'EAPK_F9D8C6E3_4DAD_4aa2_AD47_D0ABA4E93E08', 'package_name' => 'Rooms', 'phase' => '1.0', 'status' => 'Proposed', 'style' => 'BackColor=-1;BorderColor=-1;BorderWidth=-1;FontColor=-1;VSwimLanes=0;HSwimLanes=0;BorderStyle=0;', 'tagged' => '0', 'version' => '1.0'
39
- end
22
+ class HouseMetamodel::MeetingPlace < RGen::MetamodelBuilder::MMBase
23
+ annotation :source => "testmodel", :details => {'complexity' => '1', 'date_created' => '2006-07-12 08:40:46', 'date_modified' => '2006-07-12 08:44:02', 'ea_ntype' => '0', 'ea_stype' => 'Class', 'gentype' => 'Java', 'isSpecification' => 'false', 'package' => 'EAPK_A1B83D59_CAE1_422c_BA5F_D3624D7156AD', 'package_name' => 'HouseMetamodel', 'phase' => '1.0', 'status' => 'Proposed', 'style' => 'BackColor=-1;BorderColor=-1;BorderWidth=-1;FontColor=-1;VSwimLanes=0;HSwimLanes=0;BorderStyle=0;', 'tagged' => '0', 'version' => '1.0'}
24
+ end
40
25
 
41
- class Bathroom < Room
42
- annotation 'complexity' => '1', 'date_created' => '2006-06-27 08:32:25', 'date_modified' => '2006-06-27 08:34:23', 'ea_ntype' => '0', 'ea_stype' => 'Class', 'gentype' => 'Java', 'isSpecification' => 'false', 'package' => 'EAPK_F9D8C6E3_4DAD_4aa2_AD47_D0ABA4E93E08', 'package_name' => 'Rooms', 'phase' => '1.0', 'status' => 'Proposed', 'style' => 'BackColor=-1;BorderColor=-1;BorderWidth=-1;FontColor=-1;VSwimLanes=0;HSwimLanes=0;BorderStyle=0;', 'tagged' => '0', 'version' => '1.0'
43
- end
26
+ class HouseMetamodel::Person < RGen::MetamodelBuilder::MMBase
27
+ annotation 'complexity' => '1', 'date_created' => '2006-06-27 08:34:23', 'date_modified' => '2006-06-27 08:34:26', 'ea_ntype' => '0', 'ea_stype' => 'Class', 'gentype' => 'Java', 'isSpecification' => 'false', 'package' => 'EAPK_A1B83D59_CAE1_422c_BA5F_D3624D7156AD', 'package_name' => 'HouseMetamodel', 'phase' => '1.0', 'status' => 'Proposed', 'style' => 'BackColor=-1;BorderColor=-1;BorderWidth=-1;FontColor=-1;VSwimLanes=0;HSwimLanes=0;BorderStyle=0;', 'tagged' => '0', 'version' => '1.0'
28
+ has_attr 'sex', HouseMetamodel::SexEnum
29
+ end
44
30
 
31
+ class HouseMetamodel::House < RGen::MetamodelBuilder::MMBase
32
+ annotation 'complexity' => '1', 'date_created' => '2005-09-16 19:52:18', 'date_modified' => '2006-02-28 08:29:19', 'ea_ntype' => '0', 'ea_stype' => 'Class', 'gentype' => 'Java', 'isSpecification' => 'false', 'package' => 'EAPK_A1B83D59_CAE1_422c_BA5F_D3624D7156AD', 'package_name' => 'HouseMetamodel', 'phase' => '1.0', 'status' => 'Proposed', 'stereotype' => 'dummy', 'style' => 'BackColor=-1;BorderColor=-1;BorderWidth=-1;FontColor=-1;VSwimLanes=0;HSwimLanes=0;BorderStyle=0;', 'tagged' => '0', 'version' => '1.0'
33
+ has_attr 'size', Integer
34
+ has_attr 'module', String
35
+ has_attr 'address', String, :changeable => false do
36
+ annotation 'collection' => 'false', 'containment' => 'Not Specified', 'derived' => '0', 'duplicates' => '0', 'ea_guid' => '{A8DF581B-9AC6-4f75-AB48-8FAEDFC6E068}', 'lowerBound' => '1', 'ordered' => '0', 'position' => '0', 'styleex' => 'volatile=0;', 'type' => 'String', 'upperBound' => '1'
45
37
  end
38
+ end
46
39
 
47
- module DependingOnRooms
48
- extend RGen::MetamodelBuilder::ModuleExtension
49
- include RGen::MetamodelBuilder::DataTypes
40
+ class HouseMetamodel::Rooms::Room < RGen::MetamodelBuilder::MMBase
41
+ abstract
42
+ annotation 'complexity' => '1', 'date_created' => '2005-09-16 19:52:28', 'date_modified' => '2006-06-22 21:15:25', 'ea_ntype' => '0', 'ea_stype' => 'Class', 'gentype' => 'Java', 'isSpecification' => 'false', 'package' => 'EAPK_F9D8C6E3_4DAD_4aa2_AD47_D0ABA4E93E08', 'package_name' => 'Rooms', 'phase' => '1.0', 'status' => 'Proposed', 'style' => 'BackColor=-1;BorderColor=-1;BorderWidth=-1;FontColor=-1;VSwimLanes=0;HSwimLanes=0;BorderStyle=0;', 'tagged' => '0', 'version' => '1.0'
43
+ end
50
44
 
45
+ class HouseMetamodel::DependingOnRooms::RoomSub < HouseMetamodel::Rooms::Room
46
+ end
51
47
 
52
- class RoomSub < HouseMetamodel::Rooms::Room
53
- end
48
+ class HouseMetamodel::Rooms::Kitchen < RGen::MetamodelBuilder::MMMultiple(HouseMetamodel::MeetingPlace, HouseMetamodel::Rooms::Room)
49
+ annotation 'complexity' => '1', 'date_created' => '2005-11-30 19:26:13', 'date_modified' => '2006-06-22 21:15:34', 'ea_ntype' => '0', 'ea_stype' => 'Class', 'gentype' => 'Java', 'isSpecification' => 'false', 'package' => 'EAPK_F9D8C6E3_4DAD_4aa2_AD47_D0ABA4E93E08', 'package_name' => 'Rooms', 'phase' => '1.0', 'status' => 'Proposed', 'style' => 'BackColor=-1;BorderColor=-1;BorderWidth=-1;FontColor=-1;VSwimLanes=0;HSwimLanes=0;BorderStyle=0;', 'tagged' => '0', 'version' => '1.0'
50
+ end
54
51
 
55
- end
52
+ class HouseMetamodel::Rooms::Bathroom < HouseMetamodel::Rooms::Room
53
+ annotation 'complexity' => '1', 'date_created' => '2006-06-27 08:32:25', 'date_modified' => '2006-06-27 08:34:23', 'ea_ntype' => '0', 'ea_stype' => 'Class', 'gentype' => 'Java', 'isSpecification' => 'false', 'package' => 'EAPK_F9D8C6E3_4DAD_4aa2_AD47_D0ABA4E93E08', 'package_name' => 'Rooms', 'phase' => '1.0', 'status' => 'Proposed', 'style' => 'BackColor=-1;BorderColor=-1;BorderWidth=-1;FontColor=-1;VSwimLanes=0;HSwimLanes=0;BorderStyle=0;', 'tagged' => '0', 'version' => '1.0'
56
54
  end
57
55
 
56
+
57
+ HouseMetamodel::Person.has_many 'home', HouseMetamodel::House do
58
+ annotation 'containment' => 'Unspecified'
59
+ end
58
60
  HouseMetamodel::House.has_one 'bathroom', HouseMetamodel::Rooms::Bathroom, :transient => true, :lowerBound => 1
59
61
  HouseMetamodel::House.one_to_one 'kitchen', HouseMetamodel::Rooms::Kitchen, 'house', :lowerBound => 1, :opposite_lowerBound => 1 do
60
62
  annotation 'containment' => 'Unspecified'
@@ -63,6 +65,3 @@ end
63
65
  HouseMetamodel::House.contains_many 'room', HouseMetamodel::Rooms::Room, 'house', :lowerBound => 1 do
64
66
  opposite_annotation 'containment' => 'Unspecified'
65
67
  end
66
- HouseMetamodel::Person.has_many 'home', HouseMetamodel::House do
67
- annotation 'containment' => 'Unspecified'
68
- end
@@ -1,268 +1,160 @@
1
1
  <ecore:EPackage xmi:version="2.0" name="HouseMetamodel" 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">
2
- <eClassifiers name="SexEnum" instanceClassName="HouseMetamodel::SexEnum" ePackage="#/" xsi:type="ecore:EEnum">
3
- <eLiterals name="male" xsi:type="ecore:EEnumLiteral" eEnum="#//SexEnum">
4
- </eLiterals>
5
- <eLiterals name="female" xsi:type="ecore:EEnumLiteral" eEnum="#//SexEnum">
6
- </eLiterals>
7
- </eClassifiers>
8
- <eClassifiers name="MeetingPlace" abstract="false" instanceClassName="HouseMetamodel::MeetingPlace" interface="false" ePackage="#/" xsi:type="ecore:EClass">
2
+ <eClassifiers name="MeetingPlace" abstract="false" instanceClassName="HouseMetamodel::MeetingPlace" interface="false" ePackage="#/" xsi:type="ecore:EClass" eSubTypes="#//Rooms/Kitchen">
9
3
  <eAnnotations eModelElement="#//MeetingPlace" xsi:type="ecore:EAnnotation" source="testmodel">
10
- <details xsi:type="ecore:EStringToStringMapEntry" value="Proposed" key="status">
11
- </details>
12
- <details xsi:type="ecore:EStringToStringMapEntry" value="2006-07-12 08:40:46" key="date_created">
13
- </details>
14
- <details xsi:type="ecore:EStringToStringMapEntry" value="Class" key="ea_stype">
15
- </details>
16
- <details xsi:type="ecore:EStringToStringMapEntry" value="2006-07-12 08:44:02" key="date_modified">
17
- </details>
18
- <details xsi:type="ecore:EStringToStringMapEntry" value="0" key="tagged">
19
- </details>
20
- <details xsi:type="ecore:EStringToStringMapEntry" value="0" key="ea_ntype">
21
- </details>
22
- <details xsi:type="ecore:EStringToStringMapEntry" value="1.0" key="version">
23
- </details>
24
- <details xsi:type="ecore:EStringToStringMapEntry" value="EAPK_A1B83D59_CAE1_422c_BA5F_D3624D7156AD" key="package">
25
- </details>
26
- <details xsi:type="ecore:EStringToStringMapEntry" value="false" key="isSpecification">
27
- </details>
28
- <details xsi:type="ecore:EStringToStringMapEntry" value="HouseMetamodel" key="package_name">
29
- </details>
30
- <details xsi:type="ecore:EStringToStringMapEntry" value="1" key="complexity">
31
- </details>
32
- <details xsi:type="ecore:EStringToStringMapEntry" value="1.0" key="phase">
33
- </details>
34
- <details xsi:type="ecore:EStringToStringMapEntry" value="BackColor=-1;BorderColor=-1;BorderWidth=-1;FontColor=-1;VSwimLanes=0;HSwimLanes=0;BorderStyle=0;" key="style">
35
- </details>
36
- <details xsi:type="ecore:EStringToStringMapEntry" value="Java" key="gentype">
37
- </details>
4
+ <details xsi:type="ecore:EStringToStringMapEntry" value="Proposed" key="status"/>
5
+ <details xsi:type="ecore:EStringToStringMapEntry" value="2006-07-12 08:40:46" key="date_created"/>
6
+ <details xsi:type="ecore:EStringToStringMapEntry" value="Class" key="ea_stype"/>
7
+ <details xsi:type="ecore:EStringToStringMapEntry" value="2006-07-12 08:44:02" key="date_modified"/>
8
+ <details xsi:type="ecore:EStringToStringMapEntry" value="0" key="tagged"/>
9
+ <details xsi:type="ecore:EStringToStringMapEntry" value="0" key="ea_ntype"/>
10
+ <details xsi:type="ecore:EStringToStringMapEntry" value="1.0" key="version"/>
11
+ <details xsi:type="ecore:EStringToStringMapEntry" value="EAPK_A1B83D59_CAE1_422c_BA5F_D3624D7156AD" key="package"/>
12
+ <details xsi:type="ecore:EStringToStringMapEntry" value="false" key="isSpecification"/>
13
+ <details xsi:type="ecore:EStringToStringMapEntry" value="HouseMetamodel" key="package_name"/>
14
+ <details xsi:type="ecore:EStringToStringMapEntry" value="1" key="complexity"/>
15
+ <details xsi:type="ecore:EStringToStringMapEntry" value="1.0" key="phase"/>
16
+ <details xsi:type="ecore:EStringToStringMapEntry" value="BackColor=-1;BorderColor=-1;BorderWidth=-1;FontColor=-1;VSwimLanes=0;HSwimLanes=0;BorderStyle=0;" key="style"/>
17
+ <details xsi:type="ecore:EStringToStringMapEntry" value="Java" key="gentype"/>
38
18
  </eAnnotations>
39
19
  </eClassifiers>
40
- <eClassifiers name="House" abstract="false" instanceClassName="HouseMetamodel::House" interface="false" ePackage="#/" xsi:type="ecore:EClass">
41
- <eStructuralFeatures name="size" derived="false" transient="false" changeable="true" eContainingClass="#//House" unsettable="false" iD="false" xsi:type="ecore:EAttribute" upperBound="1" ordered="true" volatile="false" lowerBound="0" unique="true">
42
- </eStructuralFeatures>
43
- <eStructuralFeatures name="module" derived="false" transient="false" changeable="true" eContainingClass="#//House" unsettable="false" iD="false" xsi:type="ecore:EAttribute" upperBound="1" ordered="true" volatile="false" lowerBound="0" unique="true">
20
+ <eClassifiers name="Person" abstract="false" instanceClassName="HouseMetamodel::Person" interface="false" ePackage="#/" xsi:type="ecore:EClass">
21
+ <eStructuralFeatures name="sex" derived="false" transient="false" changeable="true" eContainingClass="#//Person" unsettable="false" iD="false" xsi:type="ecore:EAttribute" upperBound="1" ordered="true" volatile="false" lowerBound="0" eType="#//SexEnum" unique="true"/>
22
+ <eStructuralFeatures name="home" derived="false" containment="false" transient="false" changeable="true" resolveProxies="true" eContainingClass="#//Person" unsettable="false" xsi:type="ecore:EReference" upperBound="-1" ordered="true" volatile="false" lowerBound="0" eType="#//House" unique="true">
23
+ <eAnnotations eModelElement="#//Person/home" xsi:type="ecore:EAnnotation">
24
+ <details xsi:type="ecore:EStringToStringMapEntry" value="Unspecified" key="containment"/>
25
+ </eAnnotations>
44
26
  </eStructuralFeatures>
27
+ <eAnnotations eModelElement="#//Person" xsi:type="ecore:EAnnotation">
28
+ <details xsi:type="ecore:EStringToStringMapEntry" value="Proposed" key="status"/>
29
+ <details xsi:type="ecore:EStringToStringMapEntry" value="2006-06-27 08:34:23" key="date_created"/>
30
+ <details xsi:type="ecore:EStringToStringMapEntry" value="Class" key="ea_stype"/>
31
+ <details xsi:type="ecore:EStringToStringMapEntry" value="2006-06-27 08:34:26" key="date_modified"/>
32
+ <details xsi:type="ecore:EStringToStringMapEntry" value="0" key="tagged"/>
33
+ <details xsi:type="ecore:EStringToStringMapEntry" value="0" key="ea_ntype"/>
34
+ <details xsi:type="ecore:EStringToStringMapEntry" value="1.0" key="version"/>
35
+ <details xsi:type="ecore:EStringToStringMapEntry" value="EAPK_A1B83D59_CAE1_422c_BA5F_D3624D7156AD" key="package"/>
36
+ <details xsi:type="ecore:EStringToStringMapEntry" value="false" key="isSpecification"/>
37
+ <details xsi:type="ecore:EStringToStringMapEntry" value="HouseMetamodel" key="package_name"/>
38
+ <details xsi:type="ecore:EStringToStringMapEntry" value="1" key="complexity"/>
39
+ <details xsi:type="ecore:EStringToStringMapEntry" value="1.0" key="phase"/>
40
+ <details xsi:type="ecore:EStringToStringMapEntry" value="BackColor=-1;BorderColor=-1;BorderWidth=-1;FontColor=-1;VSwimLanes=0;HSwimLanes=0;BorderStyle=0;" key="style"/>
41
+ <details xsi:type="ecore:EStringToStringMapEntry" value="Java" key="gentype"/>
42
+ </eAnnotations>
43
+ </eClassifiers>
44
+ <eClassifiers name="House" abstract="false" instanceClassName="HouseMetamodel::House" interface="false" ePackage="#/" xsi:type="ecore:EClass">
45
+ <eStructuralFeatures name="size" derived="false" transient="false" changeable="true" eContainingClass="#//House" unsettable="false" iD="false" xsi:type="ecore:EAttribute" upperBound="1" ordered="true" volatile="false" lowerBound="0" unique="true"/>
46
+ <eStructuralFeatures name="module" derived="false" transient="false" changeable="true" eContainingClass="#//House" unsettable="false" iD="false" xsi:type="ecore:EAttribute" upperBound="1" ordered="true" volatile="false" lowerBound="0" unique="true"/>
45
47
  <eStructuralFeatures name="address" derived="false" transient="false" changeable="false" eContainingClass="#//House" unsettable="false" iD="false" xsi:type="ecore:EAttribute" upperBound="1" ordered="true" volatile="false" lowerBound="0" unique="true">
46
48
  <eAnnotations eModelElement="#//House/address" xsi:type="ecore:EAnnotation">
47
- <details xsi:type="ecore:EStringToStringMapEntry" value="0" key="derived">
48
- </details>
49
- <details xsi:type="ecore:EStringToStringMapEntry" value="Not Specified" key="containment">
50
- </details>
51
- <details xsi:type="ecore:EStringToStringMapEntry" value="{A8DF581B-9AC6-4f75-AB48-8FAEDFC6E068}" key="ea_guid">
52
- </details>
53
- <details xsi:type="ecore:EStringToStringMapEntry" value="0" key="duplicates">
54
- </details>
55
- <details xsi:type="ecore:EStringToStringMapEntry" value="false" key="collection">
56
- </details>
57
- <details xsi:type="ecore:EStringToStringMapEntry" value="String" key="type">
58
- </details>
59
- <details xsi:type="ecore:EStringToStringMapEntry" value="volatile=0;" key="styleex">
60
- </details>
61
- <details xsi:type="ecore:EStringToStringMapEntry" value="1" key="upperBound">
62
- </details>
63
- <details xsi:type="ecore:EStringToStringMapEntry" value="0" key="ordered">
64
- </details>
65
- <details xsi:type="ecore:EStringToStringMapEntry" value="1" key="lowerBound">
66
- </details>
67
- <details xsi:type="ecore:EStringToStringMapEntry" value="0" key="position">
68
- </details>
49
+ <details xsi:type="ecore:EStringToStringMapEntry" value="0" key="derived"/>
50
+ <details xsi:type="ecore:EStringToStringMapEntry" value="Not Specified" key="containment"/>
51
+ <details xsi:type="ecore:EStringToStringMapEntry" value="{A8DF581B-9AC6-4f75-AB48-8FAEDFC6E068}" key="ea_guid"/>
52
+ <details xsi:type="ecore:EStringToStringMapEntry" value="0" key="duplicates"/>
53
+ <details xsi:type="ecore:EStringToStringMapEntry" value="false" key="collection"/>
54
+ <details xsi:type="ecore:EStringToStringMapEntry" value="String" key="type"/>
55
+ <details xsi:type="ecore:EStringToStringMapEntry" value="volatile=0;" key="styleex"/>
56
+ <details xsi:type="ecore:EStringToStringMapEntry" value="1" key="upperBound"/>
57
+ <details xsi:type="ecore:EStringToStringMapEntry" value="0" key="ordered"/>
58
+ <details xsi:type="ecore:EStringToStringMapEntry" value="1" key="lowerBound"/>
59
+ <details xsi:type="ecore:EStringToStringMapEntry" value="0" key="position"/>
69
60
  </eAnnotations>
70
61
  </eStructuralFeatures>
71
- <eStructuralFeatures name="bathroom" derived="false" containment="false" transient="true" changeable="true" resolveProxies="true" eContainingClass="#//House" unsettable="false" xsi:type="ecore:EReference" upperBound="1" ordered="true" volatile="false" lowerBound="1" eType="#//Rooms/Bathroom" unique="true">
72
- </eStructuralFeatures>
62
+ <eStructuralFeatures name="bathroom" derived="false" containment="false" transient="true" changeable="true" resolveProxies="true" eContainingClass="#//House" unsettable="false" xsi:type="ecore:EReference" upperBound="1" ordered="true" volatile="false" lowerBound="1" eType="#//Rooms/Bathroom" unique="true"/>
73
63
  <eStructuralFeatures name="kitchen" derived="false" containment="false" transient="false" changeable="true" resolveProxies="true" eContainingClass="#//House" eOpposite="#//Rooms/Kitchen/house" unsettable="false" xsi:type="ecore:EReference" upperBound="1" ordered="true" volatile="false" lowerBound="1" eType="#//Rooms/Kitchen" unique="true">
74
64
  <eAnnotations eModelElement="#//House/kitchen" xsi:type="ecore:EAnnotation">
75
- <details xsi:type="ecore:EStringToStringMapEntry" value="Unspecified" key="containment">
76
- </details>
65
+ <details xsi:type="ecore:EStringToStringMapEntry" value="Unspecified" key="containment"/>
77
66
  </eAnnotations>
78
67
  </eStructuralFeatures>
79
- <eStructuralFeatures name="room" derived="false" containment="true" transient="false" changeable="true" resolveProxies="true" eContainingClass="#//House" eOpposite="#//Rooms/Room/house" unsettable="false" xsi:type="ecore:EReference" upperBound="-1" ordered="true" volatile="false" lowerBound="1" eType="#//Rooms/Room" unique="true">
80
- </eStructuralFeatures>
68
+ <eStructuralFeatures name="room" derived="false" containment="true" transient="false" changeable="true" resolveProxies="true" eContainingClass="#//House" eOpposite="#//Rooms/Room/house" unsettable="false" xsi:type="ecore:EReference" upperBound="-1" ordered="true" volatile="false" lowerBound="1" eType="#//Rooms/Room" unique="true"/>
81
69
  <eAnnotations eModelElement="#//House" xsi:type="ecore:EAnnotation">
82
- <details xsi:type="ecore:EStringToStringMapEntry" value="dummy" key="stereotype">
83
- </details>
84
- <details xsi:type="ecore:EStringToStringMapEntry" value="Proposed" key="status">
85
- </details>
86
- <details xsi:type="ecore:EStringToStringMapEntry" value="2005-09-16 19:52:18" key="date_created">
87
- </details>
88
- <details xsi:type="ecore:EStringToStringMapEntry" value="Class" key="ea_stype">
89
- </details>
90
- <details xsi:type="ecore:EStringToStringMapEntry" value="2006-02-28 08:29:19" key="date_modified">
91
- </details>
92
- <details xsi:type="ecore:EStringToStringMapEntry" value="0" key="tagged">
93
- </details>
94
- <details xsi:type="ecore:EStringToStringMapEntry" value="0" key="ea_ntype">
95
- </details>
96
- <details xsi:type="ecore:EStringToStringMapEntry" value="1.0" key="version">
97
- </details>
98
- <details xsi:type="ecore:EStringToStringMapEntry" value="EAPK_A1B83D59_CAE1_422c_BA5F_D3624D7156AD" key="package">
99
- </details>
100
- <details xsi:type="ecore:EStringToStringMapEntry" value="false" key="isSpecification">
101
- </details>
102
- <details xsi:type="ecore:EStringToStringMapEntry" value="HouseMetamodel" key="package_name">
103
- </details>
104
- <details xsi:type="ecore:EStringToStringMapEntry" value="1" key="complexity">
105
- </details>
106
- <details xsi:type="ecore:EStringToStringMapEntry" value="1.0" key="phase">
107
- </details>
108
- <details xsi:type="ecore:EStringToStringMapEntry" value="BackColor=-1;BorderColor=-1;BorderWidth=-1;FontColor=-1;VSwimLanes=0;HSwimLanes=0;BorderStyle=0;" key="style">
109
- </details>
110
- <details xsi:type="ecore:EStringToStringMapEntry" value="Java" key="gentype">
111
- </details>
70
+ <details xsi:type="ecore:EStringToStringMapEntry" value="dummy" key="stereotype"/>
71
+ <details xsi:type="ecore:EStringToStringMapEntry" value="Proposed" key="status"/>
72
+ <details xsi:type="ecore:EStringToStringMapEntry" value="2005-09-16 19:52:18" key="date_created"/>
73
+ <details xsi:type="ecore:EStringToStringMapEntry" value="Class" key="ea_stype"/>
74
+ <details xsi:type="ecore:EStringToStringMapEntry" value="2006-02-28 08:29:19" key="date_modified"/>
75
+ <details xsi:type="ecore:EStringToStringMapEntry" value="0" key="tagged"/>
76
+ <details xsi:type="ecore:EStringToStringMapEntry" value="0" key="ea_ntype"/>
77
+ <details xsi:type="ecore:EStringToStringMapEntry" value="1.0" key="version"/>
78
+ <details xsi:type="ecore:EStringToStringMapEntry" value="EAPK_A1B83D59_CAE1_422c_BA5F_D3624D7156AD" key="package"/>
79
+ <details xsi:type="ecore:EStringToStringMapEntry" value="false" key="isSpecification"/>
80
+ <details xsi:type="ecore:EStringToStringMapEntry" value="HouseMetamodel" key="package_name"/>
81
+ <details xsi:type="ecore:EStringToStringMapEntry" value="1" key="complexity"/>
82
+ <details xsi:type="ecore:EStringToStringMapEntry" value="1.0" key="phase"/>
83
+ <details xsi:type="ecore:EStringToStringMapEntry" value="BackColor=-1;BorderColor=-1;BorderWidth=-1;FontColor=-1;VSwimLanes=0;HSwimLanes=0;BorderStyle=0;" key="style"/>
84
+ <details xsi:type="ecore:EStringToStringMapEntry" value="Java" key="gentype"/>
112
85
  </eAnnotations>
113
86
  </eClassifiers>
114
- <eClassifiers name="Person" abstract="false" instanceClassName="HouseMetamodel::Person" interface="false" ePackage="#/" xsi:type="ecore:EClass">
115
- <eStructuralFeatures name="sex" derived="false" transient="false" changeable="true" eContainingClass="#//Person" unsettable="false" iD="false" xsi:type="ecore:EAttribute" upperBound="1" ordered="true" volatile="false" lowerBound="0" eType="#//SexEnum" unique="true">
116
- </eStructuralFeatures>
117
- <eStructuralFeatures name="home" derived="false" containment="false" transient="false" changeable="true" resolveProxies="true" eContainingClass="#//Person" unsettable="false" xsi:type="ecore:EReference" upperBound="-1" ordered="true" volatile="false" lowerBound="0" eType="#//House" unique="true">
118
- <eAnnotations eModelElement="#//Person/home" xsi:type="ecore:EAnnotation">
119
- <details xsi:type="ecore:EStringToStringMapEntry" value="Unspecified" key="containment">
120
- </details>
121
- </eAnnotations>
122
- </eStructuralFeatures>
123
- <eAnnotations eModelElement="#//Person" xsi:type="ecore:EAnnotation">
124
- <details xsi:type="ecore:EStringToStringMapEntry" value="Proposed" key="status">
125
- </details>
126
- <details xsi:type="ecore:EStringToStringMapEntry" value="2006-06-27 08:34:23" key="date_created">
127
- </details>
128
- <details xsi:type="ecore:EStringToStringMapEntry" value="Class" key="ea_stype">
129
- </details>
130
- <details xsi:type="ecore:EStringToStringMapEntry" value="2006-06-27 08:34:26" key="date_modified">
131
- </details>
132
- <details xsi:type="ecore:EStringToStringMapEntry" value="0" key="tagged">
133
- </details>
134
- <details xsi:type="ecore:EStringToStringMapEntry" value="0" key="ea_ntype">
135
- </details>
136
- <details xsi:type="ecore:EStringToStringMapEntry" value="1.0" key="version">
137
- </details>
138
- <details xsi:type="ecore:EStringToStringMapEntry" value="EAPK_A1B83D59_CAE1_422c_BA5F_D3624D7156AD" key="package">
139
- </details>
140
- <details xsi:type="ecore:EStringToStringMapEntry" value="false" key="isSpecification">
141
- </details>
142
- <details xsi:type="ecore:EStringToStringMapEntry" value="HouseMetamodel" key="package_name">
143
- </details>
144
- <details xsi:type="ecore:EStringToStringMapEntry" value="1" key="complexity">
145
- </details>
146
- <details xsi:type="ecore:EStringToStringMapEntry" value="1.0" key="phase">
147
- </details>
148
- <details xsi:type="ecore:EStringToStringMapEntry" value="BackColor=-1;BorderColor=-1;BorderWidth=-1;FontColor=-1;VSwimLanes=0;HSwimLanes=0;BorderStyle=0;" key="style">
149
- </details>
150
- <details xsi:type="ecore:EStringToStringMapEntry" value="Java" key="gentype">
151
- </details>
152
- </eAnnotations>
87
+ <eClassifiers name="SexEnum" instanceClassName="HouseMetamodel::SexEnum" ePackage="#/" xsi:type="ecore:EEnum">
88
+ <eLiterals name="male" xsi:type="ecore:EEnumLiteral" eEnum="#//SexEnum"/>
89
+ <eLiterals name="female" xsi:type="ecore:EEnumLiteral" eEnum="#//SexEnum"/>
153
90
  </eClassifiers>
91
+ <eSubpackages name="DependingOnRooms" xsi:type="ecore:EPackage" eSuperPackage="#/">
92
+ <eClassifiers name="RoomSub" abstract="false" instanceClassName="HouseMetamodel::DependingOnRooms::RoomSub" interface="false" ePackage="#//DependingOnRooms" xsi:type="ecore:EClass" eSuperTypes="#//Rooms/Room"/>
93
+ </eSubpackages>
154
94
  <eSubpackages name="Rooms" xsi:type="ecore:EPackage" eSuperPackage="#/">
155
- <eClassifiers name="Room" abstract="false" instanceClassName="HouseMetamodel::Rooms::Room" interface="false" ePackage="#//Rooms" xsi:type="ecore:EClass">
156
- <eStructuralFeatures name="house" derived="false" containment="false" transient="false" changeable="true" resolveProxies="true" eContainingClass="#//Rooms/Room" eOpposite="#//House/room" unsettable="false" xsi:type="ecore:EReference" upperBound="1" ordered="true" volatile="false" lowerBound="0" eType="#//House" unique="true">
157
- <eAnnotations eModelElement="#//Rooms/Room/house" xsi:type="ecore:EAnnotation">
158
- <details xsi:type="ecore:EStringToStringMapEntry" value="Unspecified" key="containment">
159
- </details>
160
- </eAnnotations>
161
- </eStructuralFeatures>
162
- <eAnnotations eModelElement="#//Rooms/Room" xsi:type="ecore:EAnnotation">
163
- <details xsi:type="ecore:EStringToStringMapEntry" value="Proposed" key="status">
164
- </details>
165
- <details xsi:type="ecore:EStringToStringMapEntry" value="2005-09-16 19:52:28" key="date_created">
166
- </details>
167
- <details xsi:type="ecore:EStringToStringMapEntry" value="Class" key="ea_stype">
168
- </details>
169
- <details xsi:type="ecore:EStringToStringMapEntry" value="2006-06-22 21:15:25" key="date_modified">
170
- </details>
171
- <details xsi:type="ecore:EStringToStringMapEntry" value="0" key="tagged">
172
- </details>
173
- <details xsi:type="ecore:EStringToStringMapEntry" value="0" key="ea_ntype">
174
- </details>
175
- <details xsi:type="ecore:EStringToStringMapEntry" value="1.0" key="version">
176
- </details>
177
- <details xsi:type="ecore:EStringToStringMapEntry" value="EAPK_F9D8C6E3_4DAD_4aa2_AD47_D0ABA4E93E08" key="package">
178
- </details>
179
- <details xsi:type="ecore:EStringToStringMapEntry" value="false" key="isSpecification">
180
- </details>
181
- <details xsi:type="ecore:EStringToStringMapEntry" value="Rooms" key="package_name">
182
- </details>
183
- <details xsi:type="ecore:EStringToStringMapEntry" value="1" key="complexity">
184
- </details>
185
- <details xsi:type="ecore:EStringToStringMapEntry" value="1.0" key="phase">
186
- </details>
187
- <details xsi:type="ecore:EStringToStringMapEntry" value="BackColor=-1;BorderColor=-1;BorderWidth=-1;FontColor=-1;VSwimLanes=0;HSwimLanes=0;BorderStyle=0;" key="style">
188
- </details>
189
- <details xsi:type="ecore:EStringToStringMapEntry" value="Java" key="gentype">
190
- </details>
191
- </eAnnotations>
192
- </eClassifiers>
193
95
  <eClassifiers name="Kitchen" abstract="false" instanceClassName="HouseMetamodel::Rooms::Kitchen" interface="false" ePackage="#//Rooms" xsi:type="ecore:EClass" eSuperTypes="#//MeetingPlace #//Rooms/Room">
194
96
  <eStructuralFeatures name="house" derived="false" containment="false" transient="false" changeable="true" resolveProxies="true" eContainingClass="#//Rooms/Kitchen" eOpposite="#//House/kitchen" unsettable="false" xsi:type="ecore:EReference" upperBound="1" ordered="true" volatile="false" lowerBound="1" eType="#//House" unique="true">
195
97
  <eAnnotations eModelElement="#//Rooms/Kitchen/house" xsi:type="ecore:EAnnotation">
196
- <details xsi:type="ecore:EStringToStringMapEntry" value="Unspecified" key="containment">
197
- </details>
98
+ <details xsi:type="ecore:EStringToStringMapEntry" value="Unspecified" key="containment"/>
198
99
  </eAnnotations>
199
100
  </eStructuralFeatures>
200
101
  <eAnnotations eModelElement="#//Rooms/Kitchen" xsi:type="ecore:EAnnotation">
201
- <details xsi:type="ecore:EStringToStringMapEntry" value="Proposed" key="status">
202
- </details>
203
- <details xsi:type="ecore:EStringToStringMapEntry" value="2005-11-30 19:26:13" key="date_created">
204
- </details>
205
- <details xsi:type="ecore:EStringToStringMapEntry" value="Class" key="ea_stype">
206
- </details>
207
- <details xsi:type="ecore:EStringToStringMapEntry" value="2006-06-22 21:15:34" key="date_modified">
208
- </details>
209
- <details xsi:type="ecore:EStringToStringMapEntry" value="0" key="tagged">
210
- </details>
211
- <details xsi:type="ecore:EStringToStringMapEntry" value="0" key="ea_ntype">
212
- </details>
213
- <details xsi:type="ecore:EStringToStringMapEntry" value="1.0" key="version">
214
- </details>
215
- <details xsi:type="ecore:EStringToStringMapEntry" value="EAPK_F9D8C6E3_4DAD_4aa2_AD47_D0ABA4E93E08" key="package">
216
- </details>
217
- <details xsi:type="ecore:EStringToStringMapEntry" value="false" key="isSpecification">
218
- </details>
219
- <details xsi:type="ecore:EStringToStringMapEntry" value="Rooms" key="package_name">
220
- </details>
221
- <details xsi:type="ecore:EStringToStringMapEntry" value="1" key="complexity">
222
- </details>
223
- <details xsi:type="ecore:EStringToStringMapEntry" value="1.0" key="phase">
224
- </details>
225
- <details xsi:type="ecore:EStringToStringMapEntry" value="BackColor=-1;BorderColor=-1;BorderWidth=-1;FontColor=-1;VSwimLanes=0;HSwimLanes=0;BorderStyle=0;" key="style">
226
- </details>
227
- <details xsi:type="ecore:EStringToStringMapEntry" value="Java" key="gentype">
228
- </details>
102
+ <details xsi:type="ecore:EStringToStringMapEntry" value="Proposed" key="status"/>
103
+ <details xsi:type="ecore:EStringToStringMapEntry" value="2005-11-30 19:26:13" key="date_created"/>
104
+ <details xsi:type="ecore:EStringToStringMapEntry" value="Class" key="ea_stype"/>
105
+ <details xsi:type="ecore:EStringToStringMapEntry" value="2006-06-22 21:15:34" key="date_modified"/>
106
+ <details xsi:type="ecore:EStringToStringMapEntry" value="0" key="tagged"/>
107
+ <details xsi:type="ecore:EStringToStringMapEntry" value="0" key="ea_ntype"/>
108
+ <details xsi:type="ecore:EStringToStringMapEntry" value="1.0" key="version"/>
109
+ <details xsi:type="ecore:EStringToStringMapEntry" value="EAPK_F9D8C6E3_4DAD_4aa2_AD47_D0ABA4E93E08" key="package"/>
110
+ <details xsi:type="ecore:EStringToStringMapEntry" value="false" key="isSpecification"/>
111
+ <details xsi:type="ecore:EStringToStringMapEntry" value="Rooms" key="package_name"/>
112
+ <details xsi:type="ecore:EStringToStringMapEntry" value="1" key="complexity"/>
113
+ <details xsi:type="ecore:EStringToStringMapEntry" value="1.0" key="phase"/>
114
+ <details xsi:type="ecore:EStringToStringMapEntry" value="BackColor=-1;BorderColor=-1;BorderWidth=-1;FontColor=-1;VSwimLanes=0;HSwimLanes=0;BorderStyle=0;" key="style"/>
115
+ <details xsi:type="ecore:EStringToStringMapEntry" value="Java" key="gentype"/>
116
+ </eAnnotations>
117
+ </eClassifiers>
118
+ <eClassifiers name="Room" abstract="true" instanceClassName="HouseMetamodel::Rooms::Room" interface="false" ePackage="#//Rooms" xsi:type="ecore:EClass" eSubTypes="#//DependingOnRooms/RoomSub #//Rooms/Kitchen #//Rooms/Bathroom">
119
+ <eStructuralFeatures name="house" derived="false" containment="false" transient="false" changeable="true" resolveProxies="true" eContainingClass="#//Rooms/Room" eOpposite="#//House/room" unsettable="false" xsi:type="ecore:EReference" upperBound="1" ordered="true" volatile="false" lowerBound="0" eType="#//House" unique="true">
120
+ <eAnnotations eModelElement="#//Rooms/Room/house" xsi:type="ecore:EAnnotation">
121
+ <details xsi:type="ecore:EStringToStringMapEntry" value="Unspecified" key="containment"/>
122
+ </eAnnotations>
123
+ </eStructuralFeatures>
124
+ <eAnnotations eModelElement="#//Rooms/Room" xsi:type="ecore:EAnnotation">
125
+ <details xsi:type="ecore:EStringToStringMapEntry" value="Proposed" key="status"/>
126
+ <details xsi:type="ecore:EStringToStringMapEntry" value="2005-09-16 19:52:28" key="date_created"/>
127
+ <details xsi:type="ecore:EStringToStringMapEntry" value="Class" key="ea_stype"/>
128
+ <details xsi:type="ecore:EStringToStringMapEntry" value="2006-06-22 21:15:25" key="date_modified"/>
129
+ <details xsi:type="ecore:EStringToStringMapEntry" value="0" key="tagged"/>
130
+ <details xsi:type="ecore:EStringToStringMapEntry" value="0" key="ea_ntype"/>
131
+ <details xsi:type="ecore:EStringToStringMapEntry" value="1.0" key="version"/>
132
+ <details xsi:type="ecore:EStringToStringMapEntry" value="EAPK_F9D8C6E3_4DAD_4aa2_AD47_D0ABA4E93E08" key="package"/>
133
+ <details xsi:type="ecore:EStringToStringMapEntry" value="false" key="isSpecification"/>
134
+ <details xsi:type="ecore:EStringToStringMapEntry" value="Rooms" key="package_name"/>
135
+ <details xsi:type="ecore:EStringToStringMapEntry" value="1" key="complexity"/>
136
+ <details xsi:type="ecore:EStringToStringMapEntry" value="1.0" key="phase"/>
137
+ <details xsi:type="ecore:EStringToStringMapEntry" value="BackColor=-1;BorderColor=-1;BorderWidth=-1;FontColor=-1;VSwimLanes=0;HSwimLanes=0;BorderStyle=0;" key="style"/>
138
+ <details xsi:type="ecore:EStringToStringMapEntry" value="Java" key="gentype"/>
229
139
  </eAnnotations>
230
140
  </eClassifiers>
231
141
  <eClassifiers name="Bathroom" abstract="false" instanceClassName="HouseMetamodel::Rooms::Bathroom" interface="false" ePackage="#//Rooms" xsi:type="ecore:EClass" eSuperTypes="#//Rooms/Room">
232
142
  <eAnnotations eModelElement="#//Rooms/Bathroom" xsi:type="ecore:EAnnotation">
233
- <details xsi:type="ecore:EStringToStringMapEntry" value="Proposed" key="status">
234
- </details>
235
- <details xsi:type="ecore:EStringToStringMapEntry" value="2006-06-27 08:32:25" key="date_created">
236
- </details>
237
- <details xsi:type="ecore:EStringToStringMapEntry" value="Class" key="ea_stype">
238
- </details>
239
- <details xsi:type="ecore:EStringToStringMapEntry" value="2006-06-27 08:34:23" key="date_modified">
240
- </details>
241
- <details xsi:type="ecore:EStringToStringMapEntry" value="0" key="tagged">
242
- </details>
243
- <details xsi:type="ecore:EStringToStringMapEntry" value="0" key="ea_ntype">
244
- </details>
245
- <details xsi:type="ecore:EStringToStringMapEntry" value="1.0" key="version">
246
- </details>
247
- <details xsi:type="ecore:EStringToStringMapEntry" value="EAPK_F9D8C6E3_4DAD_4aa2_AD47_D0ABA4E93E08" key="package">
248
- </details>
249
- <details xsi:type="ecore:EStringToStringMapEntry" value="false" key="isSpecification">
250
- </details>
251
- <details xsi:type="ecore:EStringToStringMapEntry" value="Rooms" key="package_name">
252
- </details>
253
- <details xsi:type="ecore:EStringToStringMapEntry" value="1" key="complexity">
254
- </details>
255
- <details xsi:type="ecore:EStringToStringMapEntry" value="1.0" key="phase">
256
- </details>
257
- <details xsi:type="ecore:EStringToStringMapEntry" value="BackColor=-1;BorderColor=-1;BorderWidth=-1;FontColor=-1;VSwimLanes=0;HSwimLanes=0;BorderStyle=0;" key="style">
258
- </details>
259
- <details xsi:type="ecore:EStringToStringMapEntry" value="Java" key="gentype">
260
- </details>
143
+ <details xsi:type="ecore:EStringToStringMapEntry" value="Proposed" key="status"/>
144
+ <details xsi:type="ecore:EStringToStringMapEntry" value="2006-06-27 08:32:25" key="date_created"/>
145
+ <details xsi:type="ecore:EStringToStringMapEntry" value="Class" key="ea_stype"/>
146
+ <details xsi:type="ecore:EStringToStringMapEntry" value="2006-06-27 08:34:23" key="date_modified"/>
147
+ <details xsi:type="ecore:EStringToStringMapEntry" value="0" key="tagged"/>
148
+ <details xsi:type="ecore:EStringToStringMapEntry" value="0" key="ea_ntype"/>
149
+ <details xsi:type="ecore:EStringToStringMapEntry" value="1.0" key="version"/>
150
+ <details xsi:type="ecore:EStringToStringMapEntry" value="EAPK_F9D8C6E3_4DAD_4aa2_AD47_D0ABA4E93E08" key="package"/>
151
+ <details xsi:type="ecore:EStringToStringMapEntry" value="false" key="isSpecification"/>
152
+ <details xsi:type="ecore:EStringToStringMapEntry" value="Rooms" key="package_name"/>
153
+ <details xsi:type="ecore:EStringToStringMapEntry" value="1" key="complexity"/>
154
+ <details xsi:type="ecore:EStringToStringMapEntry" value="1.0" key="phase"/>
155
+ <details xsi:type="ecore:EStringToStringMapEntry" value="BackColor=-1;BorderColor=-1;BorderWidth=-1;FontColor=-1;VSwimLanes=0;HSwimLanes=0;BorderStyle=0;" key="style"/>
156
+ <details xsi:type="ecore:EStringToStringMapEntry" value="Java" key="gentype"/>
261
157
  </eAnnotations>
262
158
  </eClassifiers>
263
159
  </eSubpackages>
264
- <eSubpackages name="DependingOnRooms" xsi:type="ecore:EPackage" eSuperPackage="#/">
265
- <eClassifiers name="RoomSub" abstract="false" instanceClassName="HouseMetamodel::DependingOnRooms::RoomSub" interface="false" ePackage="#//DependingOnRooms" xsi:type="ecore:EClass" eSuperTypes="#//Rooms/Room">
266
- </eClassifiers>
267
- </eSubpackages>
268
160
  </ecore:EPackage>