rgen 0.6.6 → 0.7.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/CHANGELOG +9 -0
- data/Rakefile +1 -1
- data/lib/rgen/ecore/ecore.rb +6 -2
- data/lib/rgen/fragment/model_fragment.rb +1 -16
- data/lib/rgen/instantiator/ecore_xml_instantiator.rb +2 -1
- data/lib/rgen/instantiator/xmi11_instantiator.rb +1 -1
- data/lib/rgen/metamodel_builder/builder_extensions.rb +6 -2
- data/lib/rgen/metamodel_builder/builder_runtime.rb +75 -0
- data/lib/rgen/metamodel_builder/data_types.rb +5 -0
- data/lib/rgen/metamodel_builder/intermediate/feature.rb +1 -0
- data/lib/rgen/serializer/xmi20_serializer.rb +1 -0
- data/test/metamodel_builder_test.rb +282 -1
- data/test/metamodel_from_ecore_test.rb +12 -0
- data/test/metamodel_roundtrip_test.rb +7 -4
- data/test/metamodel_roundtrip_test/TestModel.rb +1 -0
- data/test/metamodel_roundtrip_test/TestModel_Regenerated.rb +1 -0
- data/test/metamodel_roundtrip_test/houseMetamodel.ecore +1 -0
- data/test/metamodel_roundtrip_test/houseMetamodel_Regenerated.ecore +1 -0
- data/test/metamodel_roundtrip_test/houseMetamodel_from_ecore.rb +1 -0
- data/test/metamodel_roundtrip_test/using_builtin_types.ecore +3 -2
- data/test/metamodel_roundtrip_test/using_builtin_types_serialized.ecore +3 -2
- data/test/model_builder/ecore_internal.rb +7 -7
- data/test/testmodel/ea_testmodel_regenerated.xml +583 -583
- data/test/xml_instantiator_test/simple_xmi_to_ecore.rb +1 -1
- metadata +7 -9
@@ -41,5 +41,17 @@ class MetamodelFromEcoreTest < MetamodelBuilderTest
|
|
41
41
|
obj.value
|
42
42
|
end
|
43
43
|
end
|
44
|
+
|
45
|
+
# define all the test methods explicitly in the subclass
|
46
|
+
# otherwise minitest is smart enough to run the tests only in the superclass context
|
47
|
+
MetamodelBuilderTest.instance_methods.select{|m| m.to_s =~ /^test_/}.each do |m|
|
48
|
+
next if instance_methods(false).include?(m)
|
49
|
+
module_eval <<-END
|
50
|
+
def #{m}
|
51
|
+
super
|
52
|
+
end
|
53
|
+
END
|
54
|
+
end
|
55
|
+
|
44
56
|
end
|
45
57
|
|
@@ -65,8 +65,9 @@ class MetamodelRoundtripTest < Test::Unit::TestCase
|
|
65
65
|
RGen::ECore::EClass.new(:name => "C1", :eStructuralFeatures => [
|
66
66
|
RGen::ECore::EAttribute.new(:name => "a1", :eType => RGen::ECore::EString),
|
67
67
|
RGen::ECore::EAttribute.new(:name => "a2", :eType => RGen::ECore::EInt),
|
68
|
-
RGen::ECore::EAttribute.new(:name => "a3", :eType => RGen::ECore::
|
69
|
-
RGen::ECore::EAttribute.new(:name => "a4", :eType => RGen::ECore::
|
68
|
+
RGen::ECore::EAttribute.new(:name => "a3", :eType => RGen::ECore::ELong),
|
69
|
+
RGen::ECore::EAttribute.new(:name => "a4", :eType => RGen::ECore::EFloat),
|
70
|
+
RGen::ECore::EAttribute.new(:name => "a5", :eType => RGen::ECore::EBoolean)
|
70
71
|
])
|
71
72
|
])
|
72
73
|
outfile = TEST_DIR+"/using_builtin_types_serialized.ecore"
|
@@ -87,9 +88,11 @@ class MetamodelRoundtripTest < Test::Unit::TestCase
|
|
87
88
|
a2 = env.find(:class => RGen::ECore::EAttribute, :name => "a2").first
|
88
89
|
assert_equal(RGen::ECore::EInt, a2.eType)
|
89
90
|
a3 = env.find(:class => RGen::ECore::EAttribute, :name => "a3").first
|
90
|
-
assert_equal(RGen::ECore::
|
91
|
+
assert_equal(RGen::ECore::ELong, a3.eType)
|
91
92
|
a4 = env.find(:class => RGen::ECore::EAttribute, :name => "a4").first
|
92
|
-
assert_equal(RGen::ECore::
|
93
|
+
assert_equal(RGen::ECore::EFloat, a4.eType)
|
94
|
+
a5 = env.find(:class => RGen::ECore::EAttribute, :name => "a5").first
|
95
|
+
assert_equal(RGen::ECore::EBoolean, a5.eType)
|
93
96
|
end
|
94
97
|
|
95
98
|
end
|
@@ -15,6 +15,7 @@ module HouseMetamodel
|
|
15
15
|
class Person < RGen::MetamodelBuilder::MMBase
|
16
16
|
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'
|
17
17
|
has_attr 'sex', SexEnum
|
18
|
+
has_attr 'id', Long
|
18
19
|
has_many_attr 'nicknames', String
|
19
20
|
end
|
20
21
|
|
@@ -13,6 +13,7 @@ module HouseMetamodel
|
|
13
13
|
class Person < RGen::MetamodelBuilder::MMBase
|
14
14
|
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'
|
15
15
|
has_attr 'sex', HouseMetamodel::SexEnum
|
16
|
+
has_attr 'id', Long
|
16
17
|
has_many_attr 'nicknames', String
|
17
18
|
end
|
18
19
|
|
@@ -20,6 +20,7 @@
|
|
20
20
|
<eStructuralFeatures xsi:type="ecore:EReference" name="house" upperBound="-1"
|
21
21
|
eType="#//House"/>
|
22
22
|
<eStructuralFeatures xsi:type="ecore:EAttribute" name="sex" eType="#//SexEnum"/>
|
23
|
+
<eStructuralFeatures xsi:type="ecore:EAttribute" name="id" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//ELong"/>
|
23
24
|
<eStructuralFeatures xsi:type="ecore:EAttribute" name="nicknames" upperBound="-1" eType="#//String"/>
|
24
25
|
</eClassifiers>
|
25
26
|
<eClassifiers xsi:type="ecore:EDataType" name="String" instanceClassName="java.lang.String"/>
|
@@ -19,6 +19,7 @@
|
|
19
19
|
</eClassifiers>
|
20
20
|
<eClassifiers abstract="false" interface="false" instanceClassName="HouseMetamodel::Person" name="Person" xsi:type="ecore:EClass">
|
21
21
|
<eStructuralFeatures iD="false" changeable="true" derived="false" transient="false" unsettable="false" volatile="false" lowerBound="0" ordered="true" unique="true" upperBound="1" name="sex" eType="#//SexEnum" xsi:type="ecore:EAttribute"/>
|
22
|
+
<eStructuralFeatures iD="false" changeable="true" derived="false" transient="false" unsettable="false" volatile="false" lowerBound="0" ordered="true" unique="true" upperBound="1" name="id" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//ELong" xsi:type="ecore:EAttribute"/>
|
22
23
|
<eStructuralFeatures iD="false" changeable="true" derived="false" transient="false" unsettable="false" volatile="false" lowerBound="0" ordered="true" unique="true" upperBound="-1" name="nicknames" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" xsi:type="ecore:EAttribute"/>
|
23
24
|
<eStructuralFeatures containment="false" resolveProxies="true" changeable="true" derived="false" transient="false" unsettable="false" volatile="false" lowerBound="0" ordered="true" unique="true" upperBound="-1" name="home" eType="#//House" xsi:type="ecore:EReference">
|
24
25
|
<eAnnotations xsi:type="ecore:EAnnotation">
|
@@ -2,7 +2,8 @@
|
|
2
2
|
<eClassifiers name="C1" xsi:type="ecore:EClass">
|
3
3
|
<eStructuralFeatures iD="false" changeable="true" derived="false" transient="false" unsettable="false" volatile="false" lowerBound="0" ordered="true" unique="true" upperBound="1" name="a1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" xsi:type="ecore:EAttribute"/>
|
4
4
|
<eStructuralFeatures iD="false" changeable="true" derived="false" transient="false" unsettable="false" volatile="false" lowerBound="0" ordered="true" unique="true" upperBound="1" name="a2" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt" xsi:type="ecore:EAttribute"/>
|
5
|
-
<eStructuralFeatures iD="false" changeable="true" derived="false" transient="false" unsettable="false" volatile="false" lowerBound="0" ordered="true" unique="true" upperBound="1" name="a3" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//
|
6
|
-
<eStructuralFeatures iD="false" changeable="true" derived="false" transient="false" unsettable="false" volatile="false" lowerBound="0" ordered="true" unique="true" upperBound="1" name="a4" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//
|
5
|
+
<eStructuralFeatures iD="false" changeable="true" derived="false" transient="false" unsettable="false" volatile="false" lowerBound="0" ordered="true" unique="true" upperBound="1" name="a3" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//ELong" xsi:type="ecore:EAttribute"/>
|
6
|
+
<eStructuralFeatures iD="false" changeable="true" derived="false" transient="false" unsettable="false" volatile="false" lowerBound="0" ordered="true" unique="true" upperBound="1" name="a4" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFloat" xsi:type="ecore:EAttribute"/>
|
7
|
+
<eStructuralFeatures iD="false" changeable="true" derived="false" transient="false" unsettable="false" volatile="false" lowerBound="0" ordered="true" unique="true" upperBound="1" name="a5" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean" xsi:type="ecore:EAttribute"/>
|
7
8
|
</eClassifiers>
|
8
9
|
</ecore:EPackage>
|
@@ -2,7 +2,8 @@
|
|
2
2
|
<eClassifiers name="C1" xsi:type="ecore:EClass">
|
3
3
|
<eStructuralFeatures iD="false" changeable="true" derived="false" transient="false" unsettable="false" volatile="false" lowerBound="0" ordered="true" unique="true" upperBound="1" name="a1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" xsi:type="ecore:EAttribute"/>
|
4
4
|
<eStructuralFeatures iD="false" changeable="true" derived="false" transient="false" unsettable="false" volatile="false" lowerBound="0" ordered="true" unique="true" upperBound="1" name="a2" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt" xsi:type="ecore:EAttribute"/>
|
5
|
-
<eStructuralFeatures iD="false" changeable="true" derived="false" transient="false" unsettable="false" volatile="false" lowerBound="0" ordered="true" unique="true" upperBound="1" name="a3" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//
|
6
|
-
<eStructuralFeatures iD="false" changeable="true" derived="false" transient="false" unsettable="false" volatile="false" lowerBound="0" ordered="true" unique="true" upperBound="1" name="a4" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//
|
5
|
+
<eStructuralFeatures iD="false" changeable="true" derived="false" transient="false" unsettable="false" volatile="false" lowerBound="0" ordered="true" unique="true" upperBound="1" name="a3" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//ELong" xsi:type="ecore:EAttribute"/>
|
6
|
+
<eStructuralFeatures iD="false" changeable="true" derived="false" transient="false" unsettable="false" volatile="false" lowerBound="0" ordered="true" unique="true" upperBound="1" name="a4" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EFloat" xsi:type="ecore:EAttribute"/>
|
7
|
+
<eStructuralFeatures iD="false" changeable="true" derived="false" transient="false" unsettable="false" volatile="false" lowerBound="0" ordered="true" unique="true" upperBound="1" name="a5" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean" xsi:type="ecore:EAttribute"/>
|
7
8
|
</eClassifiers>
|
8
9
|
</ecore:EPackage>
|
@@ -10,10 +10,10 @@ ePackage "ECore", :eSuperPackage => "" do
|
|
10
10
|
eReference "contents", :containment => true, :resolveProxies => false, :upperBound => -1, :eType => "EObject"
|
11
11
|
eReference "references", :upperBound => -1, :eType => "EObject"
|
12
12
|
end
|
13
|
-
eClass "ENamedElement", :abstract => false, :interface => false, :eSubTypes => ["
|
13
|
+
eClass "ENamedElement", :abstract => false, :interface => false, :eSubTypes => ["ETypedElement", "EClassifier", "EEnumLiteral", "EPackage"], :instanceClassName => "RGen::ECore::ENamedElement" do
|
14
14
|
eAttribute "name", :eType => ""
|
15
15
|
end
|
16
|
-
eClass "ETypedElement", :abstract => false, :interface => false, :eSubTypes => ["
|
16
|
+
eClass "ETypedElement", :abstract => false, :interface => false, :eSubTypes => ["EStructuralFeature", "EOperation", "EParameter"], :instanceClassName => "RGen::ECore::ETypedElement" do
|
17
17
|
eAttribute "lowerBound", :defaultValueLiteral => "0", :eType => ""
|
18
18
|
eAttribute "ordered", :defaultValueLiteral => "true", :eType => ""
|
19
19
|
eAttribute "unique", :defaultValueLiteral => "true", :eType => ""
|
@@ -22,7 +22,7 @@ ePackage "ECore", :eSuperPackage => "" do
|
|
22
22
|
eAttribute "required", :changeable => false, :derived => true, :transient => true, :volatile => true, :eType => ""
|
23
23
|
eReference "eType", :eType => "EClassifier"
|
24
24
|
end
|
25
|
-
eClass "EStructuralFeature", :abstract => false, :interface => false, :eSubTypes => ["EAttribute"], :instanceClassName => "RGen::ECore::EStructuralFeature" do
|
25
|
+
eClass "EStructuralFeature", :abstract => false, :interface => false, :eSubTypes => ["EAttribute", "EReference"], :instanceClassName => "RGen::ECore::EStructuralFeature" do
|
26
26
|
eAttribute "changeable", :defaultValueLiteral => "true", :eType => ""
|
27
27
|
eAttribute "defaultValue", :changeable => false, :derived => true, :transient => true, :volatile => true, :eType => ""
|
28
28
|
eAttribute "defaultValueLiteral", :eType => ""
|
@@ -36,13 +36,13 @@ ePackage "ECore", :eSuperPackage => "" do
|
|
36
36
|
eAttribute "iD", :defaultValueLiteral => "false", :eType => ""
|
37
37
|
eReference "eAttributeType", :changeable => false, :derived => true, :transient => true, :volatile => true, :lowerBound => 1, :eType => "EDataType"
|
38
38
|
end
|
39
|
-
eClass "EClassifier", :abstract => false, :interface => false, :instanceClassName => "RGen::ECore::EClassifier" do
|
39
|
+
eClass "EClassifier", :abstract => false, :interface => false, :eSubTypes => ["EDataType", "EClass"], :instanceClassName => "RGen::ECore::EClassifier" do
|
40
40
|
eAttribute "defaultValue", :changeable => false, :derived => true, :transient => true, :volatile => true, :eType => ""
|
41
41
|
eAttribute "instanceClass", :changeable => false, :derived => true, :transient => true, :volatile => true, :eType => ""
|
42
42
|
eAttribute "instanceClassName", :eType => ""
|
43
43
|
eReference "ePackage", :eOpposite => "EPackage.eClassifiers", :eType => "EPackage"
|
44
44
|
end
|
45
|
-
eClass "EDataType", :abstract => false, :interface => false, :
|
45
|
+
eClass "EDataType", :abstract => false, :interface => false, :eSubTypes => ["EGenericType", "EEnum"], :instanceClassName => "RGen::ECore::EDataType" do
|
46
46
|
eAttribute "serializable", :eType => ""
|
47
47
|
end
|
48
48
|
eClass "EGenericType", :abstract => false, :interface => false, :instanceClassName => "RGen::ECore::EGenericType" do
|
@@ -82,7 +82,7 @@ ePackage "ECore", :eSuperPackage => "" do
|
|
82
82
|
eReference "eOperation", :eOpposite => "EOperation.eParameters", :eType => "EOperation"
|
83
83
|
eReference "eGenericType", :containment => true, :eOpposite => "EGenericType.eParameter", :eType => "EGenericType"
|
84
84
|
end
|
85
|
-
eClass "EReference", :abstract => false, :interface => false, :
|
85
|
+
eClass "EReference", :abstract => false, :interface => false, :instanceClassName => "RGen::ECore::EReference" do
|
86
86
|
eAttribute "container", :changeable => false, :derived => true, :transient => true, :volatile => true, :eType => ""
|
87
87
|
eAttribute "containment", :defaultValueLiteral => "false", :eType => ""
|
88
88
|
eAttribute "resolveProxies", :defaultValueLiteral => "true", :eType => ""
|
@@ -93,7 +93,7 @@ ePackage "ECore", :eSuperPackage => "" do
|
|
93
93
|
eAttribute "key", :eType => ""
|
94
94
|
eAttribute "value", :eType => ""
|
95
95
|
end
|
96
|
-
eClass "EClass", :abstract => false, :interface => false, :
|
96
|
+
eClass "EClass", :abstract => false, :interface => false, :instanceClassName => "RGen::ECore::EClass" do
|
97
97
|
eAttribute "abstract", :eType => ""
|
98
98
|
eAttribute "interface", :eType => ""
|
99
99
|
eReference "eIDAttribute", :resolveProxies => false, :changeable => false, :derived => true, :transient => true, :volatile => true, :eType => "EAttribute"
|
@@ -1,4 +1,4 @@
|
|
1
|
-
<XMI xmi.version="1.1" xmlns:UML="omg.org/UML1.3" timestamp="
|
1
|
+
<XMI xmi.version="1.1" xmlns:UML="omg.org/UML1.3" timestamp="2014-04-01 10:23:37 +0200">
|
2
2
|
<XMI.header >
|
3
3
|
<XMI.documentation >
|
4
4
|
<XMI.exporter >Enterprise Architect</XMI.exporter>
|
@@ -6,807 +6,807 @@
|
|
6
6
|
</XMI.documentation>
|
7
7
|
</XMI.header>
|
8
8
|
<XMI.content >
|
9
|
-
<UML:Model xmi.id="
|
9
|
+
<UML:Model xmi.id="EAPK_21410916" name="EA Model" visibility="public">
|
10
10
|
<UML:Namespace.ownedElement >
|
11
|
-
<UML:Class xmi.id="
|
11
|
+
<UML:Class xmi.id="EAID_20082216" isRoot="true" isLeaf="false" isAbstract="false" name="EARootClass" visibility="public">
|
12
12
|
<UML:ModelElement.taggedValue >
|
13
|
-
<UML:TaggedValue xmi.id="
|
13
|
+
<UML:TaggedValue xmi.id="33032040" tag="ea_stype" value="Class"/>
|
14
14
|
</UML:ModelElement.taggedValue>
|
15
15
|
</UML:Class>
|
16
|
-
<UML:Package xmi.id="
|
16
|
+
<UML:Package xmi.id="EAPK_21534900" name="Views" visibility="public" isRoot="true" isLeaf="false" isAbstract="false">
|
17
17
|
<UML:Namespace.ownedElement >
|
18
|
-
<UML:Collaboration xmi.id="
|
18
|
+
<UML:Collaboration xmi.id="20172564" name="Collaborations" visibility="public">
|
19
19
|
<UML:Namespace.ownedElement >
|
20
|
-
<UML:ClassifierRole xmi.id="
|
20
|
+
<UML:ClassifierRole xmi.id="19695204" name="HouseMetamodel" visibility="public" base="EAID_20082216">
|
21
21
|
<UML:ModelElement.taggedValue >
|
22
|
-
<UML:TaggedValue xmi.id="
|
23
|
-
<UML:TaggedValue xmi.id="
|
24
|
-
<UML:TaggedValue xmi.id="
|
25
|
-
<UML:TaggedValue xmi.id="
|
26
|
-
<UML:TaggedValue xmi.id="
|
27
|
-
<UML:TaggedValue xmi.id="
|
28
|
-
<UML:TaggedValue xmi.id="
|
29
|
-
<UML:TaggedValue xmi.id="
|
30
|
-
<UML:TaggedValue xmi.id="
|
31
|
-
<UML:TaggedValue xmi.id="
|
32
|
-
<UML:TaggedValue xmi.id="
|
33
|
-
<UML:TaggedValue xmi.id="
|
34
|
-
<UML:TaggedValue xmi.id="
|
35
|
-
<UML:TaggedValue xmi.id="
|
36
|
-
<UML:TaggedValue xmi.id="
|
22
|
+
<UML:TaggedValue xmi.id="33014604" tag="isSpecification" value="false"/>
|
23
|
+
<UML:TaggedValue xmi.id="33014568" tag="ea_stype" value="Package"/>
|
24
|
+
<UML:TaggedValue xmi.id="33014532" tag="ea_ntype" value="0"/>
|
25
|
+
<UML:TaggedValue xmi.id="33014496" tag="version" value="1.0"/>
|
26
|
+
<UML:TaggedValue xmi.id="33014460" tag="package" value="EAPK_B216CC15_6D9C_4c10_9015_96740F924D1C"/>
|
27
|
+
<UML:TaggedValue xmi.id="33014424" tag="date_created" value="2006-06-26 08:41:49"/>
|
28
|
+
<UML:TaggedValue xmi.id="33014388" tag="date_modified" value="2006-06-26 08:41:49"/>
|
29
|
+
<UML:TaggedValue xmi.id="33014352" tag="gentype" value="Java"/>
|
30
|
+
<UML:TaggedValue xmi.id="33014316" tag="tagged" value="0"/>
|
31
|
+
<UML:TaggedValue xmi.id="33014280" tag="package2" value="EAID_A1B83D59_CAE1_422c_BA5F_D3624D7156AD"/>
|
32
|
+
<UML:TaggedValue xmi.id="33014244" tag="package_name" value="Views"/>
|
33
|
+
<UML:TaggedValue xmi.id="33033996" tag="phase" value="1.0"/>
|
34
|
+
<UML:TaggedValue xmi.id="33014184" tag="complexity" value="1"/>
|
35
|
+
<UML:TaggedValue xmi.id="33014148" tag="status" value="Proposed"/>
|
36
|
+
<UML:TaggedValue xmi.id="33014112" tag="style" value="BackColor=-1;BorderColor=-1;BorderWidth=-1;FontColor=-1;VSwimLanes=0;HSwimLanes=0;BorderStyle=0;"/>
|
37
37
|
</UML:ModelElement.taggedValue>
|
38
38
|
</UML:ClassifierRole>
|
39
|
-
<UML:ClassifierRole xmi.id="
|
39
|
+
<UML:ClassifierRole xmi.id="19574112" name="HouseExampleModel" visibility="public" base="EAID_20082216">
|
40
40
|
<UML:ModelElement.taggedValue >
|
41
|
-
<UML:TaggedValue xmi.id="
|
42
|
-
<UML:TaggedValue xmi.id="
|
43
|
-
<UML:TaggedValue xmi.id="
|
44
|
-
<UML:TaggedValue xmi.id="
|
45
|
-
<UML:TaggedValue xmi.id="
|
46
|
-
<UML:TaggedValue xmi.id="
|
47
|
-
<UML:TaggedValue xmi.id="
|
48
|
-
<UML:TaggedValue xmi.id="
|
49
|
-
<UML:TaggedValue xmi.id="
|
50
|
-
<UML:TaggedValue xmi.id="
|
51
|
-
<UML:TaggedValue xmi.id="
|
52
|
-
<UML:TaggedValue xmi.id="
|
53
|
-
<UML:TaggedValue xmi.id="
|
54
|
-
<UML:TaggedValue xmi.id="
|
55
|
-
<UML:TaggedValue xmi.id="
|
41
|
+
<UML:TaggedValue xmi.id="33002112" tag="isSpecification" value="false"/>
|
42
|
+
<UML:TaggedValue xmi.id="33002076" tag="ea_stype" value="Package"/>
|
43
|
+
<UML:TaggedValue xmi.id="33002040" tag="ea_ntype" value="0"/>
|
44
|
+
<UML:TaggedValue xmi.id="33002004" tag="version" value="1.0"/>
|
45
|
+
<UML:TaggedValue xmi.id="33001968" tag="package" value="EAPK_B216CC15_6D9C_4c10_9015_96740F924D1C"/>
|
46
|
+
<UML:TaggedValue xmi.id="33001932" tag="date_created" value="2006-07-20 18:34:43"/>
|
47
|
+
<UML:TaggedValue xmi.id="33001896" tag="date_modified" value="2006-07-20 18:34:43"/>
|
48
|
+
<UML:TaggedValue xmi.id="33001860" tag="gentype" value="Java"/>
|
49
|
+
<UML:TaggedValue xmi.id="33001824" tag="tagged" value="0"/>
|
50
|
+
<UML:TaggedValue xmi.id="33001788" tag="package2" value="EAID_06C9C958_C14A_41f4_89A9_6873CCED37A7"/>
|
51
|
+
<UML:TaggedValue xmi.id="33001752" tag="package_name" value="Views"/>
|
52
|
+
<UML:TaggedValue xmi.id="33001716" tag="phase" value="1.0"/>
|
53
|
+
<UML:TaggedValue xmi.id="33001680" tag="complexity" value="1"/>
|
54
|
+
<UML:TaggedValue xmi.id="33001644" tag="status" value="Proposed"/>
|
55
|
+
<UML:TaggedValue xmi.id="33001608" tag="style" value="BackColor=-1;BorderColor=-1;BorderWidth=-1;FontColor=-1;VSwimLanes=0;HSwimLanes=0;BorderStyle=0;"/>
|
56
56
|
</UML:ModelElement.taggedValue>
|
57
57
|
</UML:ClassifierRole>
|
58
58
|
</UML:Namespace.ownedElement>
|
59
59
|
</UML:Collaboration>
|
60
|
-
<UML:Package xmi.id="
|
60
|
+
<UML:Package xmi.id="EAPK_20154324" name="HouseMetamodel" visibility="public" isRoot="true" isLeaf="false" isAbstract="false">
|
61
61
|
<UML:Namespace.ownedElement >
|
62
|
-
<UML:Class xmi.id="
|
62
|
+
<UML:Class xmi.id="EAID_19521372" isActive="false" isRoot="false" isLeaf="false" isAbstract="false" name="House" visibility="public" presentation="32939280" stereotype="32949084">
|
63
63
|
<UML:Classifier.feature >
|
64
|
-
<UML:Attribute xmi.id="
|
64
|
+
<UML:Attribute xmi.id="32951184" changeable="none" targetScope="instance" ownerScope="instance" name="address" visibility="private" type="19853868">
|
65
65
|
<UML:Attribute.initialValue >
|
66
|
-
<UML:Expression xmi.id="
|
66
|
+
<UML:Expression xmi.id="32685612"/>
|
67
67
|
</UML:Attribute.initialValue>
|
68
68
|
<UML:StructuralFeature.multiplicity >
|
69
|
-
<UML:Multiplicity xmi.id="
|
69
|
+
<UML:Multiplicity xmi.id="32685456">
|
70
70
|
<UML:Multiplicity.range >
|
71
|
-
<UML:MultiplicityRange xmi.id="
|
71
|
+
<UML:MultiplicityRange xmi.id="32246664" lower="1" upper="1"/>
|
72
72
|
</UML:Multiplicity.range>
|
73
73
|
</UML:Multiplicity>
|
74
74
|
</UML:StructuralFeature.multiplicity>
|
75
75
|
<UML:ModelElement.taggedValue >
|
76
|
-
<UML:TaggedValue xmi.id="
|
77
|
-
<UML:TaggedValue xmi.id="
|
78
|
-
<UML:TaggedValue xmi.id="
|
79
|
-
<UML:TaggedValue xmi.id="
|
80
|
-
<UML:TaggedValue xmi.id="
|
81
|
-
<UML:TaggedValue xmi.id="
|
82
|
-
<UML:TaggedValue xmi.id="
|
83
|
-
<UML:TaggedValue xmi.id="
|
84
|
-
<UML:TaggedValue xmi.id="
|
76
|
+
<UML:TaggedValue xmi.id="32685000" tag="type" value="String"/>
|
77
|
+
<UML:TaggedValue xmi.id="32684964" tag="derived" value="0"/>
|
78
|
+
<UML:TaggedValue xmi.id="32684928" tag="containment" value="Not Specified"/>
|
79
|
+
<UML:TaggedValue xmi.id="32684892" tag="ordered" value="0"/>
|
80
|
+
<UML:TaggedValue xmi.id="32684856" tag="collection" value="false"/>
|
81
|
+
<UML:TaggedValue xmi.id="32684820" tag="position" value="0"/>
|
82
|
+
<UML:TaggedValue xmi.id="32684784" tag="duplicates" value="0"/>
|
83
|
+
<UML:TaggedValue xmi.id="32684748" tag="ea_guid" value="{A8DF581B-9AC6-4f75-AB48-8FAEDFC6E068}"/>
|
84
|
+
<UML:TaggedValue xmi.id="32684712" tag="styleex" value="volatile=0;"/>
|
85
85
|
</UML:ModelElement.taggedValue>
|
86
86
|
</UML:Attribute>
|
87
87
|
</UML:Classifier.feature>
|
88
88
|
<UML:ModelElement.taggedValue >
|
89
|
-
<UML:TaggedValue xmi.id="
|
90
|
-
<UML:TaggedValue xmi.id="
|
91
|
-
<UML:TaggedValue xmi.id="
|
92
|
-
<UML:TaggedValue xmi.id="
|
93
|
-
<UML:TaggedValue xmi.id="
|
94
|
-
<UML:TaggedValue xmi.id="
|
95
|
-
<UML:TaggedValue xmi.id="
|
96
|
-
<UML:TaggedValue xmi.id="
|
97
|
-
<UML:TaggedValue xmi.id="
|
98
|
-
<UML:TaggedValue xmi.id="
|
99
|
-
<UML:TaggedValue xmi.id="
|
100
|
-
<UML:TaggedValue xmi.id="
|
101
|
-
<UML:TaggedValue xmi.id="
|
102
|
-
<UML:TaggedValue xmi.id="
|
103
|
-
<UML:TaggedValue xmi.id="
|
104
|
-
<UML:TaggedValue xmi.id="
|
89
|
+
<UML:TaggedValue xmi.id="32938140" tag="isSpecification" value="false"/>
|
90
|
+
<UML:TaggedValue xmi.id="32938104" tag="ea_stype" value="Class"/>
|
91
|
+
<UML:TaggedValue xmi.id="32938068" tag="ea_ntype" value="0"/>
|
92
|
+
<UML:TaggedValue xmi.id="32938032" tag="version" value="1.0"/>
|
93
|
+
<UML:TaggedValue xmi.id="32937996" tag="package" value="EAPK_A1B83D59_CAE1_422c_BA5F_D3624D7156AD"/>
|
94
|
+
<UML:TaggedValue xmi.id="32937960" tag="date_created" value="2005-09-16 19:52:18"/>
|
95
|
+
<UML:TaggedValue xmi.id="32937924" tag="date_modified" value="2006-02-28 08:29:19"/>
|
96
|
+
<UML:TaggedValue xmi.id="33003756" tag="gentype" value="Java"/>
|
97
|
+
<UML:TaggedValue xmi.id="32937864" tag="tagged" value="0"/>
|
98
|
+
<UML:TaggedValue xmi.id="32937828" tag="package_name" value="HouseMetamodel"/>
|
99
|
+
<UML:TaggedValue xmi.id="32937792" tag="phase" value="1.0"/>
|
100
|
+
<UML:TaggedValue xmi.id="32937756" tag="complexity" value="1"/>
|
101
|
+
<UML:TaggedValue xmi.id="32937720" tag="status" value="Proposed"/>
|
102
|
+
<UML:TaggedValue xmi.id="32937684" tag="stereotype" value="dummy"/>
|
103
|
+
<UML:TaggedValue xmi.id="32937648" tag="style" value="BackColor=-1;BorderColor=-1;BorderWidth=-1;FontColor=-1;VSwimLanes=0;HSwimLanes=0;BorderStyle=0;"/>
|
104
|
+
<UML:TaggedValue xmi.id="32937324" tag="ea_stype" value="Class"/>
|
105
105
|
</UML:ModelElement.taggedValue>
|
106
106
|
</UML:Class>
|
107
|
-
<UML:Association xmi.id="
|
107
|
+
<UML:Association xmi.id="EAID_19520712" isRoot="false" isLeaf="false" isAbstract="false" visibility="public" presentation="32933400 32933364">
|
108
108
|
<UML:Association.connection >
|
109
|
-
<UML:AssociationEnd xmi.id="
|
109
|
+
<UML:AssociationEnd xmi.id="EAID_32952696" isNavigable="false" isOrdered="false" aggregation="none" targetScope="instance" changeable="none" visibility="public" type="EAID_19521372">
|
110
110
|
<UML:ModelElement.taggedValue >
|
111
|
-
<UML:TaggedValue xmi.id="
|
111
|
+
<UML:TaggedValue xmi.id="32711724" tag="containment" value="Unspecified"/>
|
112
112
|
</UML:ModelElement.taggedValue>
|
113
113
|
</UML:AssociationEnd>
|
114
|
-
<UML:AssociationEnd xmi.id="
|
114
|
+
<UML:AssociationEnd xmi.id="EAID_32933724" isNavigable="true" isOrdered="false" aggregation="none" targetScope="instance" changeable="none" multiplicity="1" name="bathroom" visibility="public" type="EAID_32829072">
|
115
115
|
<UML:ModelElement.taggedValue >
|
116
|
-
<UML:TaggedValue xmi.id="
|
116
|
+
<UML:TaggedValue xmi.id="32664636" tag="containment" value="Unspecified"/>
|
117
117
|
</UML:ModelElement.taggedValue>
|
118
118
|
</UML:AssociationEnd>
|
119
119
|
</UML:Association.connection>
|
120
120
|
<UML:ModelElement.taggedValue >
|
121
|
-
<UML:TaggedValue xmi.id="
|
122
|
-
<UML:TaggedValue xmi.id="
|
123
|
-
<UML:TaggedValue xmi.id="
|
124
|
-
<UML:TaggedValue xmi.id="
|
125
|
-
<UML:TaggedValue xmi.id="
|
126
|
-
<UML:TaggedValue xmi.id="
|
127
|
-
<UML:TaggedValue xmi.id="
|
128
|
-
<UML:TaggedValue xmi.id="
|
129
|
-
<UML:TaggedValue xmi.id="
|
130
|
-
<UML:TaggedValue xmi.id="
|
131
|
-
<UML:TaggedValue xmi.id="
|
121
|
+
<UML:TaggedValue xmi.id="32933244" tag="style" value="3"/>
|
122
|
+
<UML:TaggedValue xmi.id="32933208" tag="ea_type" value="Association"/>
|
123
|
+
<UML:TaggedValue xmi.id="32934756" tag="direction" value="Source -> Destination"/>
|
124
|
+
<UML:TaggedValue xmi.id="32933148" tag="linemode" value="3"/>
|
125
|
+
<UML:TaggedValue xmi.id="32933112" tag="seqno" value="0"/>
|
126
|
+
<UML:TaggedValue xmi.id="32933076" tag="headStyle" value="0"/>
|
127
|
+
<UML:TaggedValue xmi.id="32933040" tag="lineStyle" value="0"/>
|
128
|
+
<UML:TaggedValue xmi.id="32933004" tag="privatedata5" value="SX=8;SY=5;EX=8;EY=5;"/>
|
129
|
+
<UML:TaggedValue xmi.id="32932968" tag="virtualInheritance" value="0"/>
|
130
|
+
<UML:TaggedValue xmi.id="32932572" tag="ea_type" value="Association"/>
|
131
|
+
<UML:TaggedValue xmi.id="32932272" tag="direction" value="Source -> Destination"/>
|
132
132
|
</UML:ModelElement.taggedValue>
|
133
133
|
</UML:Association>
|
134
|
-
<UML:Association xmi.id="
|
134
|
+
<UML:Association xmi.id="EAID_16068984" isRoot="false" isLeaf="false" isAbstract="false" visibility="public" presentation="32920572 32920536">
|
135
135
|
<UML:Association.connection >
|
136
|
-
<UML:AssociationEnd xmi.id="
|
136
|
+
<UML:AssociationEnd xmi.id="EAID_32920920" isNavigable="true" isOrdered="false" aggregation="none" targetScope="instance" changeable="none" multiplicity="1" name="kitchen" visibility="public" type="EAID_32849328">
|
137
137
|
<UML:ModelElement.taggedValue >
|
138
|
-
<UML:TaggedValue xmi.id="
|
138
|
+
<UML:TaggedValue xmi.id="32648772" tag="containment" value="Unspecified"/>
|
139
139
|
</UML:ModelElement.taggedValue>
|
140
140
|
</UML:AssociationEnd>
|
141
|
-
<UML:AssociationEnd xmi.id="
|
141
|
+
<UML:AssociationEnd xmi.id="EAID_32951328" isNavigable="true" isOrdered="false" aggregation="none" targetScope="instance" changeable="none" multiplicity="1" name="house" visibility="public" type="EAID_19521372">
|
142
142
|
<UML:ModelElement.taggedValue >
|
143
|
-
<UML:TaggedValue xmi.id="
|
143
|
+
<UML:TaggedValue xmi.id="32701128" tag="containment" value="Unspecified"/>
|
144
144
|
</UML:ModelElement.taggedValue>
|
145
145
|
</UML:AssociationEnd>
|
146
146
|
</UML:Association.connection>
|
147
147
|
<UML:ModelElement.taggedValue >
|
148
|
-
<UML:TaggedValue xmi.id="
|
149
|
-
<UML:TaggedValue xmi.id="
|
150
|
-
<UML:TaggedValue xmi.id="
|
151
|
-
<UML:TaggedValue xmi.id="
|
152
|
-
<UML:TaggedValue xmi.id="
|
153
|
-
<UML:TaggedValue xmi.id="
|
154
|
-
<UML:TaggedValue xmi.id="
|
155
|
-
<UML:TaggedValue xmi.id="
|
156
|
-
<UML:TaggedValue xmi.id="
|
157
|
-
<UML:TaggedValue xmi.id="
|
158
|
-
<UML:TaggedValue xmi.id="
|
148
|
+
<UML:TaggedValue xmi.id="32920416" tag="style" value="3"/>
|
149
|
+
<UML:TaggedValue xmi.id="32920380" tag="ea_type" value="Association"/>
|
150
|
+
<UML:TaggedValue xmi.id="32920344" tag="direction" value="Bi-Directional"/>
|
151
|
+
<UML:TaggedValue xmi.id="32920296" tag="linemode" value="3"/>
|
152
|
+
<UML:TaggedValue xmi.id="32920248" tag="seqno" value="0"/>
|
153
|
+
<UML:TaggedValue xmi.id="32920212" tag="headStyle" value="0"/>
|
154
|
+
<UML:TaggedValue xmi.id="32920176" tag="lineStyle" value="0"/>
|
155
|
+
<UML:TaggedValue xmi.id="32920140" tag="privatedata5" value="SX=6;SY=-12;EX=-44;EY=-9;EDGE=1;"/>
|
156
|
+
<UML:TaggedValue xmi.id="32920104" tag="virtualInheritance" value="0"/>
|
157
|
+
<UML:TaggedValue xmi.id="32919708" tag="ea_type" value="Association"/>
|
158
|
+
<UML:TaggedValue xmi.id="32919432" tag="direction" value="Bi-Directional"/>
|
159
159
|
</UML:ModelElement.taggedValue>
|
160
160
|
</UML:Association>
|
161
|
-
<UML:Association xmi.id="
|
161
|
+
<UML:Association xmi.id="EAID_16068840" isRoot="false" isLeaf="false" isAbstract="false" visibility="public" presentation="32915988 32915952">
|
162
162
|
<UML:Association.connection >
|
163
|
-
<UML:AssociationEnd xmi.id="
|
163
|
+
<UML:AssociationEnd xmi.id="EAID_32916336" isNavigable="false" isOrdered="false" aggregation="none" targetScope="instance" changeable="none" visibility="public" type="EAID_16068600">
|
164
164
|
<UML:ModelElement.taggedValue >
|
165
|
-
<UML:TaggedValue xmi.id="
|
165
|
+
<UML:TaggedValue xmi.id="32616684" tag="containment" value="Unspecified"/>
|
166
166
|
</UML:ModelElement.taggedValue>
|
167
167
|
</UML:AssociationEnd>
|
168
|
-
<UML:AssociationEnd xmi.id="
|
168
|
+
<UML:AssociationEnd xmi.id="EAID_32951292" isNavigable="true" isOrdered="false" aggregation="none" targetScope="instance" changeable="none" multiplicity="0..*" name="home" visibility="public" type="EAID_19521372">
|
169
169
|
<UML:ModelElement.taggedValue >
|
170
|
-
<UML:TaggedValue xmi.id="
|
170
|
+
<UML:TaggedValue xmi.id="32698656" tag="containment" value="Unspecified"/>
|
171
171
|
</UML:ModelElement.taggedValue>
|
172
172
|
</UML:AssociationEnd>
|
173
173
|
</UML:Association.connection>
|
174
174
|
<UML:ModelElement.taggedValue >
|
175
|
-
<UML:TaggedValue xmi.id="
|
176
|
-
<UML:TaggedValue xmi.id="
|
177
|
-
<UML:TaggedValue xmi.id="
|
178
|
-
<UML:TaggedValue xmi.id="
|
179
|
-
<UML:TaggedValue xmi.id="
|
180
|
-
<UML:TaggedValue xmi.id="
|
181
|
-
<UML:TaggedValue xmi.id="
|
182
|
-
<UML:TaggedValue xmi.id="
|
183
|
-
<UML:TaggedValue xmi.id="
|
184
|
-
<UML:TaggedValue xmi.id="
|
175
|
+
<UML:TaggedValue xmi.id="32915820" tag="style" value="3"/>
|
176
|
+
<UML:TaggedValue xmi.id="32915772" tag="ea_type" value="Association"/>
|
177
|
+
<UML:TaggedValue xmi.id="32915736" tag="direction" value="Source -> Destination"/>
|
178
|
+
<UML:TaggedValue xmi.id="32915700" tag="linemode" value="3"/>
|
179
|
+
<UML:TaggedValue xmi.id="32915664" tag="seqno" value="0"/>
|
180
|
+
<UML:TaggedValue xmi.id="32915628" tag="headStyle" value="0"/>
|
181
|
+
<UML:TaggedValue xmi.id="32915592" tag="lineStyle" value="0"/>
|
182
|
+
<UML:TaggedValue xmi.id="32915556" tag="virtualInheritance" value="0"/>
|
183
|
+
<UML:TaggedValue xmi.id="32898744" tag="ea_type" value="Association"/>
|
184
|
+
<UML:TaggedValue xmi.id="32898432" tag="direction" value="Source -> Destination"/>
|
185
185
|
</UML:ModelElement.taggedValue>
|
186
186
|
</UML:Association>
|
187
|
-
<UML:Association xmi.id="
|
187
|
+
<UML:Association xmi.id="EAID_16068780" isRoot="false" isLeaf="false" isAbstract="false" visibility="public" presentation="32895036 32894976">
|
188
188
|
<UML:Association.connection >
|
189
|
-
<UML:AssociationEnd xmi.id="
|
189
|
+
<UML:AssociationEnd xmi.id="EAID_32895504" isNavigable="false" isOrdered="false" aggregation="none" targetScope="instance" changeable="none" multiplicity="1..*" name="room" visibility="public" type="EAID_32829180">
|
190
190
|
<UML:ModelElement.taggedValue >
|
191
|
-
<UML:TaggedValue xmi.id="
|
191
|
+
<UML:TaggedValue xmi.id="32601324" tag="containment" value="Unspecified"/>
|
192
192
|
</UML:ModelElement.taggedValue>
|
193
193
|
</UML:AssociationEnd>
|
194
|
-
<UML:AssociationEnd xmi.id="
|
194
|
+
<UML:AssociationEnd xmi.id="EAID_32951256" isNavigable="true" isOrdered="false" aggregation="composite" targetScope="instance" changeable="none" multiplicity="1" name="house" visibility="public" type="EAID_19521372">
|
195
195
|
<UML:ModelElement.taggedValue >
|
196
|
-
<UML:TaggedValue xmi.id="
|
196
|
+
<UML:TaggedValue xmi.id="32696136" tag="containment" value="Unspecified"/>
|
197
197
|
</UML:ModelElement.taggedValue>
|
198
198
|
</UML:AssociationEnd>
|
199
199
|
</UML:Association.connection>
|
200
200
|
<UML:ModelElement.taggedValue >
|
201
|
-
<UML:TaggedValue xmi.id="
|
202
|
-
<UML:TaggedValue xmi.id="
|
203
|
-
<UML:TaggedValue xmi.id="
|
204
|
-
<UML:TaggedValue xmi.id="
|
205
|
-
<UML:TaggedValue xmi.id="
|
206
|
-
<UML:TaggedValue xmi.id="
|
207
|
-
<UML:TaggedValue xmi.id="
|
208
|
-
<UML:TaggedValue xmi.id="
|
209
|
-
<UML:TaggedValue xmi.id="
|
210
|
-
<UML:TaggedValue xmi.id="
|
211
|
-
<UML:TaggedValue xmi.id="
|
212
|
-
<UML:TaggedValue xmi.id="
|
201
|
+
<UML:TaggedValue xmi.id="32894844" tag="style" value="3"/>
|
202
|
+
<UML:TaggedValue xmi.id="32894808" tag="ea_type" value="Aggregation"/>
|
203
|
+
<UML:TaggedValue xmi.id="32894772" tag="direction" value="Source -> Destination"/>
|
204
|
+
<UML:TaggedValue xmi.id="32894736" tag="linemode" value="3"/>
|
205
|
+
<UML:TaggedValue xmi.id="32894700" tag="seqno" value="0"/>
|
206
|
+
<UML:TaggedValue xmi.id="32894652" tag="subtype" value="Strong"/>
|
207
|
+
<UML:TaggedValue xmi.id="32894604" tag="headStyle" value="0"/>
|
208
|
+
<UML:TaggedValue xmi.id="32894568" tag="lineStyle" value="0"/>
|
209
|
+
<UML:TaggedValue xmi.id="32894532" tag="privatedata5" value="SX=-2;SY=-1;EX=-2;EY=-1;"/>
|
210
|
+
<UML:TaggedValue xmi.id="32894496" tag="virtualInheritance" value="0"/>
|
211
|
+
<UML:TaggedValue xmi.id="32894112" tag="ea_type" value="Association"/>
|
212
|
+
<UML:TaggedValue xmi.id="32893788" tag="direction" value="Source -> Destination"/>
|
213
213
|
</UML:ModelElement.taggedValue>
|
214
214
|
</UML:Association>
|
215
|
-
<UML:Collaboration xmi.id="
|
215
|
+
<UML:Collaboration xmi.id="16068672" name="Collaborations" visibility="public">
|
216
216
|
<UML:Namespace.ownedElement >
|
217
|
-
<UML:ClassifierRole xmi.id="
|
217
|
+
<UML:ClassifierRole xmi.id="32881788" name="Rooms" visibility="public" base="EAID_20082216">
|
218
218
|
<UML:ModelElement.taggedValue >
|
219
|
-
<UML:TaggedValue xmi.id="
|
220
|
-
<UML:TaggedValue xmi.id="
|
221
|
-
<UML:TaggedValue xmi.id="
|
222
|
-
<UML:TaggedValue xmi.id="
|
223
|
-
<UML:TaggedValue xmi.id="
|
224
|
-
<UML:TaggedValue xmi.id="
|
225
|
-
<UML:TaggedValue xmi.id="
|
226
|
-
<UML:TaggedValue xmi.id="
|
227
|
-
<UML:TaggedValue xmi.id="
|
228
|
-
<UML:TaggedValue xmi.id="
|
229
|
-
<UML:TaggedValue xmi.id="
|
230
|
-
<UML:TaggedValue xmi.id="
|
231
|
-
<UML:TaggedValue xmi.id="
|
232
|
-
<UML:TaggedValue xmi.id="
|
233
|
-
<UML:TaggedValue xmi.id="
|
219
|
+
<UML:TaggedValue xmi.id="32584428" tag="isSpecification" value="false"/>
|
220
|
+
<UML:TaggedValue xmi.id="32584392" tag="ea_stype" value="Package"/>
|
221
|
+
<UML:TaggedValue xmi.id="32584356" tag="ea_ntype" value="0"/>
|
222
|
+
<UML:TaggedValue xmi.id="32584320" tag="version" value="1.0"/>
|
223
|
+
<UML:TaggedValue xmi.id="32584284" tag="package" value="EAPK_A1B83D59_CAE1_422c_BA5F_D3624D7156AD"/>
|
224
|
+
<UML:TaggedValue xmi.id="32584236" tag="date_created" value="2006-06-23 08:28:49"/>
|
225
|
+
<UML:TaggedValue xmi.id="32584188" tag="date_modified" value="2006-06-23 08:28:49"/>
|
226
|
+
<UML:TaggedValue xmi.id="32584140" tag="gentype" value="Java"/>
|
227
|
+
<UML:TaggedValue xmi.id="32584104" tag="tagged" value="0"/>
|
228
|
+
<UML:TaggedValue xmi.id="32584068" tag="package2" value="EAID_F9D8C6E3_4DAD_4aa2_AD47_D0ABA4E93E08"/>
|
229
|
+
<UML:TaggedValue xmi.id="32584032" tag="package_name" value="HouseMetamodel"/>
|
230
|
+
<UML:TaggedValue xmi.id="32583996" tag="phase" value="1.0"/>
|
231
|
+
<UML:TaggedValue xmi.id="32583960" tag="complexity" value="1"/>
|
232
|
+
<UML:TaggedValue xmi.id="32583924" tag="status" value="Proposed"/>
|
233
|
+
<UML:TaggedValue xmi.id="32583888" tag="style" value="BackColor=-1;BorderColor=-1;BorderWidth=-1;FontColor=-1;VSwimLanes=0;HSwimLanes=0;BorderStyle=0;"/>
|
234
234
|
</UML:ModelElement.taggedValue>
|
235
235
|
</UML:ClassifierRole>
|
236
236
|
</UML:Namespace.ownedElement>
|
237
237
|
</UML:Collaboration>
|
238
|
-
<UML:Class xmi.id="
|
238
|
+
<UML:Class xmi.id="EAID_16068600" isActive="false" isRoot="false" isLeaf="false" isAbstract="false" name="Person" visibility="public" presentation="32878920">
|
239
239
|
<UML:ModelElement.taggedValue >
|
240
|
-
<UML:TaggedValue xmi.id="
|
241
|
-
<UML:TaggedValue xmi.id="
|
242
|
-
<UML:TaggedValue xmi.id="
|
243
|
-
<UML:TaggedValue xmi.id="
|
244
|
-
<UML:TaggedValue xmi.id="
|
245
|
-
<UML:TaggedValue xmi.id="
|
246
|
-
<UML:TaggedValue xmi.id="
|
247
|
-
<UML:TaggedValue xmi.id="
|
248
|
-
<UML:TaggedValue xmi.id="
|
249
|
-
<UML:TaggedValue xmi.id="
|
250
|
-
<UML:TaggedValue xmi.id="
|
251
|
-
<UML:TaggedValue xmi.id="
|
252
|
-
<UML:TaggedValue xmi.id="
|
253
|
-
<UML:TaggedValue xmi.id="
|
254
|
-
<UML:TaggedValue xmi.id="
|
240
|
+
<UML:TaggedValue xmi.id="32878800" tag="isSpecification" value="false"/>
|
241
|
+
<UML:TaggedValue xmi.id="32891844" tag="ea_stype" value="Class"/>
|
242
|
+
<UML:TaggedValue xmi.id="32878740" tag="ea_ntype" value="0"/>
|
243
|
+
<UML:TaggedValue xmi.id="32878704" tag="version" value="1.0"/>
|
244
|
+
<UML:TaggedValue xmi.id="32878668" tag="package" value="EAPK_A1B83D59_CAE1_422c_BA5F_D3624D7156AD"/>
|
245
|
+
<UML:TaggedValue xmi.id="32878632" tag="date_created" value="2006-06-27 08:34:23"/>
|
246
|
+
<UML:TaggedValue xmi.id="32878596" tag="date_modified" value="2006-06-27 08:34:26"/>
|
247
|
+
<UML:TaggedValue xmi.id="32878560" tag="gentype" value="Java"/>
|
248
|
+
<UML:TaggedValue xmi.id="32878524" tag="tagged" value="0"/>
|
249
|
+
<UML:TaggedValue xmi.id="32878488" tag="package_name" value="HouseMetamodel"/>
|
250
|
+
<UML:TaggedValue xmi.id="32878452" tag="phase" value="1.0"/>
|
251
|
+
<UML:TaggedValue xmi.id="32878416" tag="complexity" value="1"/>
|
252
|
+
<UML:TaggedValue xmi.id="32878380" tag="status" value="Proposed"/>
|
253
|
+
<UML:TaggedValue xmi.id="32878344" tag="style" value="BackColor=-1;BorderColor=-1;BorderWidth=-1;FontColor=-1;VSwimLanes=0;HSwimLanes=0;BorderStyle=0;"/>
|
254
|
+
<UML:TaggedValue xmi.id="32878020" tag="ea_stype" value="Class"/>
|
255
255
|
</UML:ModelElement.taggedValue>
|
256
256
|
</UML:Class>
|
257
|
-
<UML:Comment xmi.id="
|
257
|
+
<UML:Comment xmi.id="16068456" visibility="public" presentation="32875212">
|
258
258
|
<UML:ModelElement.taggedValue >
|
259
|
-
<UML:TaggedValue xmi.id="
|
260
|
-
<UML:TaggedValue xmi.id="
|
261
|
-
<UML:TaggedValue xmi.id="
|
262
|
-
<UML:TaggedValue xmi.id="
|
263
|
-
<UML:TaggedValue xmi.id="
|
264
|
-
<UML:TaggedValue xmi.id="
|
265
|
-
<UML:TaggedValue xmi.id="
|
266
|
-
<UML:TaggedValue xmi.id="
|
267
|
-
<UML:TaggedValue xmi.id="
|
268
|
-
<UML:TaggedValue xmi.id="
|
269
|
-
<UML:TaggedValue xmi.id="
|
270
|
-
<UML:TaggedValue xmi.id="
|
271
|
-
<UML:TaggedValue xmi.id="
|
272
|
-
<UML:TaggedValue xmi.id="
|
273
|
-
<UML:TaggedValue xmi.id="
|
274
|
-
<UML:TaggedValue xmi.id="
|
259
|
+
<UML:TaggedValue xmi.id="32875092" tag="isSpecification" value="false"/>
|
260
|
+
<UML:TaggedValue xmi.id="32875056" tag="ea_stype" value="Note"/>
|
261
|
+
<UML:TaggedValue xmi.id="32875020" tag="ea_ntype" value="1"/>
|
262
|
+
<UML:TaggedValue xmi.id="32874984" tag="version" value="1.0"/>
|
263
|
+
<UML:TaggedValue xmi.id="32874948" tag="package" value="EAPK_A1B83D59_CAE1_422c_BA5F_D3624D7156AD"/>
|
264
|
+
<UML:TaggedValue xmi.id="32874912" tag="date_created" value="2006-07-07 08:08:53"/>
|
265
|
+
<UML:TaggedValue xmi.id="32874876" tag="date_modified" value="2006-07-07 08:09:48"/>
|
266
|
+
<UML:TaggedValue xmi.id="32874840" tag="gentype" value="<none>"/>
|
267
|
+
<UML:TaggedValue xmi.id="32874804" tag="tagged" value="0"/>
|
268
|
+
<UML:TaggedValue xmi.id="32874768" tag="package_name" value="HouseMetamodel"/>
|
269
|
+
<UML:TaggedValue xmi.id="32874732" tag="phase" value="1.0"/>
|
270
|
+
<UML:TaggedValue xmi.id="32874696" tag="complexity" value="1"/>
|
271
|
+
<UML:TaggedValue xmi.id="32874660" tag="documentation" value="this aggregation is navigable from room to house (EA does not show it)"/>
|
272
|
+
<UML:TaggedValue xmi.id="32874624" tag="status" value="Proposed"/>
|
273
|
+
<UML:TaggedValue xmi.id="32874588" tag="relatedlinks" value="idref1=EAID_F15A2B25_0DA9_4203_8FC9_25645610B5E5;"/>
|
274
|
+
<UML:TaggedValue xmi.id="32874552" tag="style" value="BackColor=-1;BorderColor=-1;BorderWidth=-1;FontColor=-1;VSwimLanes=0;HSwimLanes=0;BorderStyle=0;"/>
|
275
275
|
</UML:ModelElement.taggedValue>
|
276
276
|
</UML:Comment>
|
277
|
-
<UML:Class xmi.id="
|
277
|
+
<UML:Class xmi.id="EAID_16049028" isActive="false" isRoot="false" isLeaf="false" isAbstract="false" name="MeetingPlace" visibility="public" presentation="32862852">
|
278
278
|
<UML:ModelElement.taggedValue >
|
279
|
-
<UML:TaggedValue xmi.id="
|
280
|
-
<UML:TaggedValue xmi.id="
|
281
|
-
<UML:TaggedValue xmi.id="
|
282
|
-
<UML:TaggedValue xmi.id="
|
283
|
-
<UML:TaggedValue xmi.id="
|
284
|
-
<UML:TaggedValue xmi.id="
|
285
|
-
<UML:TaggedValue xmi.id="
|
286
|
-
<UML:TaggedValue xmi.id="
|
287
|
-
<UML:TaggedValue xmi.id="
|
288
|
-
<UML:TaggedValue xmi.id="
|
289
|
-
<UML:TaggedValue xmi.id="
|
290
|
-
<UML:TaggedValue xmi.id="
|
291
|
-
<UML:TaggedValue xmi.id="
|
292
|
-
<UML:TaggedValue xmi.id="
|
293
|
-
<UML:TaggedValue xmi.id="
|
279
|
+
<UML:TaggedValue xmi.id="32862708" tag="isSpecification" value="false"/>
|
280
|
+
<UML:TaggedValue xmi.id="32862672" tag="ea_stype" value="Class"/>
|
281
|
+
<UML:TaggedValue xmi.id="32862636" tag="ea_ntype" value="0"/>
|
282
|
+
<UML:TaggedValue xmi.id="32862600" tag="version" value="1.0"/>
|
283
|
+
<UML:TaggedValue xmi.id="32862564" tag="package" value="EAPK_A1B83D59_CAE1_422c_BA5F_D3624D7156AD"/>
|
284
|
+
<UML:TaggedValue xmi.id="32862528" tag="date_created" value="2006-07-12 08:40:46"/>
|
285
|
+
<UML:TaggedValue xmi.id="32862492" tag="date_modified" value="2007-06-14 08:22:21"/>
|
286
|
+
<UML:TaggedValue xmi.id="32862456" tag="gentype" value="Java"/>
|
287
|
+
<UML:TaggedValue xmi.id="32862408" tag="tagged" value="0"/>
|
288
|
+
<UML:TaggedValue xmi.id="32862372" tag="package_name" value="HouseMetamodel"/>
|
289
|
+
<UML:TaggedValue xmi.id="32862336" tag="phase" value="1.0"/>
|
290
|
+
<UML:TaggedValue xmi.id="32862300" tag="complexity" value="1"/>
|
291
|
+
<UML:TaggedValue xmi.id="32862264" tag="status" value="Proposed"/>
|
292
|
+
<UML:TaggedValue xmi.id="32862228" tag="style" value="BackColor=-1;BorderColor=-1;BorderWidth=-1;FontColor=-1;VSwimLanes=0;HSwimLanes=0;BorderStyle=0;"/>
|
293
|
+
<UML:TaggedValue xmi.id="32861904" tag="ea_stype" value="Class"/>
|
294
294
|
</UML:ModelElement.taggedValue>
|
295
295
|
</UML:Class>
|
296
|
-
<UML:Generalization xmi.id="
|
296
|
+
<UML:Generalization xmi.id="EAID_16048740" visibility="public" supertype="EAID_16049028" subtype="EAID_32849328" presentation="32858724 32858688">
|
297
297
|
<UML:ModelElement.taggedValue >
|
298
|
-
<UML:TaggedValue xmi.id="
|
299
|
-
<UML:TaggedValue xmi.id="
|
300
|
-
<UML:TaggedValue xmi.id="
|
301
|
-
<UML:TaggedValue xmi.id="
|
302
|
-
<UML:TaggedValue xmi.id="
|
303
|
-
<UML:TaggedValue xmi.id="
|
304
|
-
<UML:TaggedValue xmi.id="
|
305
|
-
<UML:TaggedValue xmi.id="
|
306
|
-
<UML:TaggedValue xmi.id="
|
307
|
-
<UML:TaggedValue xmi.id="
|
308
|
-
<UML:TaggedValue xmi.id="
|
309
|
-
<UML:TaggedValue xmi.id="
|
310
|
-
<UML:TaggedValue xmi.id="
|
311
|
-
<UML:TaggedValue xmi.id="
|
312
|
-
<UML:TaggedValue xmi.id="
|
313
|
-
<UML:TaggedValue xmi.id="
|
298
|
+
<UML:TaggedValue xmi.id="32858568" tag="style" value="3"/>
|
299
|
+
<UML:TaggedValue xmi.id="32858532" tag="ea_type" value="Generalization"/>
|
300
|
+
<UML:TaggedValue xmi.id="32858484" tag="direction" value="Source -> Destination"/>
|
301
|
+
<UML:TaggedValue xmi.id="32858448" tag="linemode" value="3"/>
|
302
|
+
<UML:TaggedValue xmi.id="32858412" tag="seqno" value="0"/>
|
303
|
+
<UML:TaggedValue xmi.id="32858376" tag="headStyle" value="0"/>
|
304
|
+
<UML:TaggedValue xmi.id="32858340" tag="lineStyle" value="0"/>
|
305
|
+
<UML:TaggedValue xmi.id="32858304" tag="src_visibility" value="Public"/>
|
306
|
+
<UML:TaggedValue xmi.id="32858268" tag="src_isOrdered" value="false"/>
|
307
|
+
<UML:TaggedValue xmi.id="32858232" tag="src_isNavigable" value="false"/>
|
308
|
+
<UML:TaggedValue xmi.id="32858196" tag="dst_visibility" value="Public"/>
|
309
|
+
<UML:TaggedValue xmi.id="32858160" tag="dst_isOrdered" value="false"/>
|
310
|
+
<UML:TaggedValue xmi.id="32858124" tag="dst_isNavigable" value="true"/>
|
311
|
+
<UML:TaggedValue xmi.id="32849868" tag="$ea_xref_property" value="$XREFPROP=$XID={8AAF19F7-EC93-4dda-ADD1-69A07CC671D7}$XID;$NAM=CustomProperties$NAM;$TYP=connector property$TYP;$VIS=Public$VIS;$DES=@PROP=@NAME=isSubstitutable@ENDNAME;@TYPE=boolean@ENDTYPE;@VALU=@ENDVALU;@PRMT=@ENDPRMT;@ENDPROP;$DES;$CLT={E824691D-2AE7-4c9c-8408-881A2B85516F}$CLT;$SUP=<none>$SUP;$ENDXREF;"/>
|
312
|
+
<UML:TaggedValue xmi.id="32849832" tag="privatedata5" value="SX=-24;SY=-16;"/>
|
313
|
+
<UML:TaggedValue xmi.id="32849544" tag="ea_type" value="Generalization"/>
|
314
314
|
</UML:ModelElement.taggedValue>
|
315
315
|
</UML:Generalization>
|
316
|
-
<UML:Interface xmi.id="
|
316
|
+
<UML:Interface xmi.id="16004808" isRoot="false" isLeaf="false" isAbstract="true" name="CookingPlace" visibility="public" presentation="32846136" supplierDependency="15973836" stereotype="32846304">
|
317
317
|
<UML:ModelElement.taggedValue >
|
318
|
-
<UML:TaggedValue xmi.id="
|
319
|
-
<UML:TaggedValue xmi.id="
|
320
|
-
<UML:TaggedValue xmi.id="
|
321
|
-
<UML:TaggedValue xmi.id="
|
322
|
-
<UML:TaggedValue xmi.id="
|
323
|
-
<UML:TaggedValue xmi.id="
|
324
|
-
<UML:TaggedValue xmi.id="
|
325
|
-
<UML:TaggedValue xmi.id="
|
326
|
-
<UML:TaggedValue xmi.id="
|
327
|
-
<UML:TaggedValue xmi.id="
|
328
|
-
<UML:TaggedValue xmi.id="
|
329
|
-
<UML:TaggedValue xmi.id="
|
330
|
-
<UML:TaggedValue xmi.id="
|
331
|
-
<UML:TaggedValue xmi.id="
|
332
|
-
<UML:TaggedValue xmi.id="
|
318
|
+
<UML:TaggedValue xmi.id="32846016" tag="isSpecification" value="false"/>
|
319
|
+
<UML:TaggedValue xmi.id="32875884" tag="ea_stype" value="Interface"/>
|
320
|
+
<UML:TaggedValue xmi.id="32845956" tag="ea_ntype" value="0"/>
|
321
|
+
<UML:TaggedValue xmi.id="32845920" tag="version" value="1.0"/>
|
322
|
+
<UML:TaggedValue xmi.id="32845884" tag="package" value="EAPK_A1B83D59_CAE1_422c_BA5F_D3624D7156AD"/>
|
323
|
+
<UML:TaggedValue xmi.id="32845848" tag="date_created" value="2007-06-14 08:22:21"/>
|
324
|
+
<UML:TaggedValue xmi.id="32845812" tag="date_modified" value="2007-06-14 08:23:36"/>
|
325
|
+
<UML:TaggedValue xmi.id="32845776" tag="gentype" value="Java"/>
|
326
|
+
<UML:TaggedValue xmi.id="32845740" tag="tagged" value="0"/>
|
327
|
+
<UML:TaggedValue xmi.id="32845704" tag="package_name" value="HouseMetamodel"/>
|
328
|
+
<UML:TaggedValue xmi.id="32845668" tag="phase" value="1.0"/>
|
329
|
+
<UML:TaggedValue xmi.id="32845632" tag="complexity" value="1"/>
|
330
|
+
<UML:TaggedValue xmi.id="32845596" tag="status" value="Proposed"/>
|
331
|
+
<UML:TaggedValue xmi.id="32845560" tag="stereotype" value="interface"/>
|
332
|
+
<UML:TaggedValue xmi.id="32845524" tag="style" value="BackColor=-1;BorderColor=-1;BorderWidth=-1;FontColor=-1;VSwimLanes=0;HSwimLanes=0;BorderStyle=0;"/>
|
333
333
|
</UML:ModelElement.taggedValue>
|
334
334
|
</UML:Interface>
|
335
|
-
<UML:Dependency xmi.id="
|
335
|
+
<UML:Dependency xmi.id="15973836" name="Anonymous" visibility="public" supplier="16004808" client="EAID_32849328" presentation="32842392 32842356" stereotype="32842560">
|
336
336
|
<UML:ModelElement.taggedValue >
|
337
|
-
<UML:TaggedValue xmi.id="
|
338
|
-
<UML:TaggedValue xmi.id="
|
339
|
-
<UML:TaggedValue xmi.id="
|
340
|
-
<UML:TaggedValue xmi.id="
|
341
|
-
<UML:TaggedValue xmi.id="
|
342
|
-
<UML:TaggedValue xmi.id="
|
343
|
-
<UML:TaggedValue xmi.id="
|
344
|
-
<UML:TaggedValue xmi.id="
|
345
|
-
<UML:TaggedValue xmi.id="
|
346
|
-
<UML:TaggedValue xmi.id="
|
347
|
-
<UML:TaggedValue xmi.id="
|
348
|
-
<UML:TaggedValue xmi.id="
|
349
|
-
<UML:TaggedValue xmi.id="
|
350
|
-
<UML:TaggedValue xmi.id="
|
351
|
-
<UML:TaggedValue xmi.id="
|
352
|
-
<UML:TaggedValue xmi.id="
|
353
|
-
<UML:TaggedValue xmi.id="
|
354
|
-
<UML:TaggedValue xmi.id="
|
355
|
-
<UML:TaggedValue xmi.id="
|
356
|
-
<UML:TaggedValue xmi.id="
|
357
|
-
<UML:TaggedValue xmi.id="
|
337
|
+
<UML:TaggedValue xmi.id="32842236" tag="style" value="3"/>
|
338
|
+
<UML:TaggedValue xmi.id="32842176" tag="ea_type" value="Dependency"/>
|
339
|
+
<UML:TaggedValue xmi.id="32842140" tag="direction" value="Source -> Destination"/>
|
340
|
+
<UML:TaggedValue xmi.id="32842104" tag="linemode" value="3"/>
|
341
|
+
<UML:TaggedValue xmi.id="32842068" tag="seqno" value="0"/>
|
342
|
+
<UML:TaggedValue xmi.id="32842032" tag="stereotype" value="implements"/>
|
343
|
+
<UML:TaggedValue xmi.id="32841996" tag="headStyle" value="0"/>
|
344
|
+
<UML:TaggedValue xmi.id="32841960" tag="lineStyle" value="0"/>
|
345
|
+
<UML:TaggedValue xmi.id="32841924" tag="conditional" value="«implements»"/>
|
346
|
+
<UML:TaggedValue xmi.id="32841888" tag="src_visibility" value="Public"/>
|
347
|
+
<UML:TaggedValue xmi.id="32841852" tag="src_aggregation" value="0"/>
|
348
|
+
<UML:TaggedValue xmi.id="32841816" tag="src_isOrdered" value="false"/>
|
349
|
+
<UML:TaggedValue xmi.id="32841780" tag="src_isNavigable" value="false"/>
|
350
|
+
<UML:TaggedValue xmi.id="32841744" tag="src_containment" value="Unspecified"/>
|
351
|
+
<UML:TaggedValue xmi.id="32833488" tag="dst_visibility" value="Public"/>
|
352
|
+
<UML:TaggedValue xmi.id="32833452" tag="dst_aggregation" value="0"/>
|
353
|
+
<UML:TaggedValue xmi.id="32833416" tag="dst_isOrdered" value="false"/>
|
354
|
+
<UML:TaggedValue xmi.id="32833380" tag="dst_isNavigable" value="true"/>
|
355
|
+
<UML:TaggedValue xmi.id="32833344" tag="dst_containment" value="Unspecified"/>
|
356
|
+
<UML:TaggedValue xmi.id="32833308" tag="virtualInheritance" value="0"/>
|
357
|
+
<UML:TaggedValue xmi.id="32833272" tag="mb" value="«implements»"/>
|
358
358
|
</UML:ModelElement.taggedValue>
|
359
359
|
</UML:Dependency>
|
360
|
-
<UML:Package xmi.id="
|
360
|
+
<UML:Package xmi.id="EAPK_15957792" name="Rooms" visibility="public" isRoot="true" isLeaf="false" isAbstract="false">
|
361
361
|
<UML:Namespace.ownedElement >
|
362
|
-
<UML:Class xmi.id="
|
362
|
+
<UML:Class xmi.id="EAID_32829180" isActive="false" isRoot="false" isLeaf="false" isAbstract="false" name="Room" visibility="public" presentation="32452692">
|
363
363
|
<UML:Classifier.feature >
|
364
|
-
<UML:Operation xmi.id="
|
364
|
+
<UML:Operation xmi.id="32454912" concurrency="sequential" isQuery="false" ownerScope="instance" name="enter" visibility="public">
|
365
365
|
<UML:BehavioralFeature.parameter >
|
366
|
-
<UML:Parameter xmi.id="
|
366
|
+
<UML:Parameter xmi.id="32195304" kind="return" visibility="public" type="19800192">
|
367
367
|
<UML:Parameter.defaultValue >
|
368
|
-
<UML:Expression xmi.id="
|
368
|
+
<UML:Expression xmi.id="31980948"/>
|
369
369
|
</UML:Parameter.defaultValue>
|
370
370
|
<UML:ModelElement.taggedValue >
|
371
|
-
<UML:TaggedValue xmi.id="
|
372
|
-
<UML:TaggedValue xmi.id="
|
373
|
-
<UML:TaggedValue xmi.id="
|
374
|
-
<UML:TaggedValue xmi.id="
|
371
|
+
<UML:TaggedValue xmi.id="31980564" tag="pos" value="0"/>
|
372
|
+
<UML:TaggedValue xmi.id="31980528" tag="type" value="void"/>
|
373
|
+
<UML:TaggedValue xmi.id="31980492" tag="const" value="0"/>
|
374
|
+
<UML:TaggedValue xmi.id="31980456" tag="ea_guid" value="{A8C01177-4523-44c4-87F7-F2B8F9F3C915}"/>
|
375
375
|
</UML:ModelElement.taggedValue>
|
376
376
|
</UML:Parameter>
|
377
377
|
</UML:BehavioralFeature.parameter>
|
378
378
|
<UML:ModelElement.taggedValue >
|
379
|
-
<UML:TaggedValue xmi.id="
|
380
|
-
<UML:TaggedValue xmi.id="
|
381
|
-
<UML:TaggedValue xmi.id="
|
382
|
-
<UML:TaggedValue xmi.id="
|
383
|
-
<UML:TaggedValue xmi.id="
|
384
|
-
<UML:TaggedValue xmi.id="
|
385
|
-
<UML:TaggedValue xmi.id="
|
386
|
-
<UML:TaggedValue xmi.id="
|
379
|
+
<UML:TaggedValue xmi.id="32177628" tag="type" value="void"/>
|
380
|
+
<UML:TaggedValue xmi.id="32177592" tag="const" value="false"/>
|
381
|
+
<UML:TaggedValue xmi.id="32177556" tag="synchronised" value="0"/>
|
382
|
+
<UML:TaggedValue xmi.id="32177520" tag="concurrency" value="Sequential"/>
|
383
|
+
<UML:TaggedValue xmi.id="32177484" tag="position" value="0"/>
|
384
|
+
<UML:TaggedValue xmi.id="32177448" tag="returnarray" value="0"/>
|
385
|
+
<UML:TaggedValue xmi.id="32177412" tag="pure" value="0"/>
|
386
|
+
<UML:TaggedValue xmi.id="32177376" tag="ea_guid" value="{A8C01177-4523-44c4-87F7-F2B8F9F3C915}"/>
|
387
387
|
</UML:ModelElement.taggedValue>
|
388
388
|
</UML:Operation>
|
389
389
|
</UML:Classifier.feature>
|
390
390
|
<UML:ModelElement.taggedValue >
|
391
|
-
<UML:TaggedValue xmi.id="
|
392
|
-
<UML:TaggedValue xmi.id="
|
393
|
-
<UML:TaggedValue xmi.id="
|
394
|
-
<UML:TaggedValue xmi.id="
|
395
|
-
<UML:TaggedValue xmi.id="
|
396
|
-
<UML:TaggedValue xmi.id="
|
397
|
-
<UML:TaggedValue xmi.id="
|
398
|
-
<UML:TaggedValue xmi.id="
|
399
|
-
<UML:TaggedValue xmi.id="
|
400
|
-
<UML:TaggedValue xmi.id="
|
401
|
-
<UML:TaggedValue xmi.id="
|
402
|
-
<UML:TaggedValue xmi.id="
|
403
|
-
<UML:TaggedValue xmi.id="
|
404
|
-
<UML:TaggedValue xmi.id="
|
405
|
-
<UML:TaggedValue xmi.id="
|
391
|
+
<UML:TaggedValue xmi.id="32452572" tag="isSpecification" value="false"/>
|
392
|
+
<UML:TaggedValue xmi.id="32452536" tag="ea_stype" value="Class"/>
|
393
|
+
<UML:TaggedValue xmi.id="32452500" tag="ea_ntype" value="0"/>
|
394
|
+
<UML:TaggedValue xmi.id="32452464" tag="version" value="1.0"/>
|
395
|
+
<UML:TaggedValue xmi.id="32452428" tag="package" value="EAPK_F9D8C6E3_4DAD_4aa2_AD47_D0ABA4E93E08"/>
|
396
|
+
<UML:TaggedValue xmi.id="32452392" tag="date_created" value="2005-09-16 19:52:28"/>
|
397
|
+
<UML:TaggedValue xmi.id="32452356" tag="date_modified" value="2006-06-22 21:15:25"/>
|
398
|
+
<UML:TaggedValue xmi.id="32452320" tag="gentype" value="Java"/>
|
399
|
+
<UML:TaggedValue xmi.id="32452284" tag="tagged" value="0"/>
|
400
|
+
<UML:TaggedValue xmi.id="32452248" tag="package_name" value="Rooms"/>
|
401
|
+
<UML:TaggedValue xmi.id="32452212" tag="phase" value="1.0"/>
|
402
|
+
<UML:TaggedValue xmi.id="32452176" tag="complexity" value="1"/>
|
403
|
+
<UML:TaggedValue xmi.id="32452140" tag="status" value="Proposed"/>
|
404
|
+
<UML:TaggedValue xmi.id="32452104" tag="style" value="BackColor=-1;BorderColor=-1;BorderWidth=-1;FontColor=-1;VSwimLanes=0;HSwimLanes=0;BorderStyle=0;"/>
|
405
|
+
<UML:TaggedValue xmi.id="32451780" tag="ea_stype" value="Class"/>
|
406
406
|
</UML:ModelElement.taggedValue>
|
407
407
|
</UML:Class>
|
408
|
-
<UML:Generalization xmi.id="
|
408
|
+
<UML:Generalization xmi.id="EAID_32829144" visibility="public" supertype="EAID_32829180" subtype="EAID_32829072" presentation="32448564 32448528">
|
409
409
|
<UML:ModelElement.taggedValue >
|
410
|
-
<UML:TaggedValue xmi.id="
|
411
|
-
<UML:TaggedValue xmi.id="
|
412
|
-
<UML:TaggedValue xmi.id="
|
413
|
-
<UML:TaggedValue xmi.id="
|
414
|
-
<UML:TaggedValue xmi.id="
|
415
|
-
<UML:TaggedValue xmi.id="
|
416
|
-
<UML:TaggedValue xmi.id="
|
417
|
-
<UML:TaggedValue xmi.id="
|
418
|
-
<UML:TaggedValue xmi.id="
|
419
|
-
<UML:TaggedValue xmi.id="
|
420
|
-
<UML:TaggedValue xmi.id="
|
421
|
-
<UML:TaggedValue xmi.id="
|
422
|
-
<UML:TaggedValue xmi.id="
|
423
|
-
<UML:TaggedValue xmi.id="
|
424
|
-
<UML:TaggedValue xmi.id="
|
410
|
+
<UML:TaggedValue xmi.id="32426508" tag="style" value="3"/>
|
411
|
+
<UML:TaggedValue xmi.id="32427000" tag="ea_type" value="Generalization"/>
|
412
|
+
<UML:TaggedValue xmi.id="32427336" tag="direction" value="Source -> Destination"/>
|
413
|
+
<UML:TaggedValue xmi.id="32428944" tag="linemode" value="3"/>
|
414
|
+
<UML:TaggedValue xmi.id="32429280" tag="seqno" value="0"/>
|
415
|
+
<UML:TaggedValue xmi.id="32430396" tag="headStyle" value="0"/>
|
416
|
+
<UML:TaggedValue xmi.id="32430732" tag="lineStyle" value="0"/>
|
417
|
+
<UML:TaggedValue xmi.id="32431860" tag="src_visibility" value="Public"/>
|
418
|
+
<UML:TaggedValue xmi.id="32432064" tag="src_isOrdered" value="false"/>
|
419
|
+
<UML:TaggedValue xmi.id="32432028" tag="src_isNavigable" value="false"/>
|
420
|
+
<UML:TaggedValue xmi.id="32431992" tag="dst_visibility" value="Public"/>
|
421
|
+
<UML:TaggedValue xmi.id="32431956" tag="dst_isOrdered" value="false"/>
|
422
|
+
<UML:TaggedValue xmi.id="32431908" tag="dst_isNavigable" value="true"/>
|
423
|
+
<UML:TaggedValue xmi.id="32431872" tag="$ea_xref_property" value="$XREFPROP=$XID={DF243A69-1029-4c4c-A1A0-C821A1DF9623}$XID;$NAM=CustomProperties$NAM;$TYP=connector property$TYP;$VIS=Public$VIS;$DES=@PROP=@NAME=isSubstitutable@ENDNAME;@TYPE=boolean@ENDTYPE;@VALU=@ENDVALU;@PRMT=@ENDPRMT;@ENDPROP;$DES;$CLT={03052911-3625-4472-8C6B-5E1742FED753}$CLT;$SUP=<none>$SUP;$ENDXREF;"/>
|
424
|
+
<UML:TaggedValue xmi.id="32431548" tag="ea_type" value="Generalization"/>
|
425
425
|
</UML:ModelElement.taggedValue>
|
426
426
|
</UML:Generalization>
|
427
|
-
<UML:Generalization xmi.id="
|
427
|
+
<UML:Generalization xmi.id="EAID_32829108" visibility="public" supertype="EAID_32829180" subtype="EAID_32849328" presentation="32428692 32428656">
|
428
428
|
<UML:ModelElement.taggedValue >
|
429
|
-
<UML:TaggedValue xmi.id="
|
430
|
-
<UML:TaggedValue xmi.id="
|
431
|
-
<UML:TaggedValue xmi.id="
|
432
|
-
<UML:TaggedValue xmi.id="
|
433
|
-
<UML:TaggedValue xmi.id="
|
434
|
-
<UML:TaggedValue xmi.id="
|
435
|
-
<UML:TaggedValue xmi.id="
|
436
|
-
<UML:TaggedValue xmi.id="
|
437
|
-
<UML:TaggedValue xmi.id="
|
438
|
-
<UML:TaggedValue xmi.id="
|
439
|
-
<UML:TaggedValue xmi.id="
|
440
|
-
<UML:TaggedValue xmi.id="
|
441
|
-
<UML:TaggedValue xmi.id="
|
442
|
-
<UML:TaggedValue xmi.id="
|
443
|
-
<UML:TaggedValue xmi.id="
|
444
|
-
<UML:TaggedValue xmi.id="
|
429
|
+
<UML:TaggedValue xmi.id="32428536" tag="style" value="3"/>
|
430
|
+
<UML:TaggedValue xmi.id="32428500" tag="ea_type" value="Generalization"/>
|
431
|
+
<UML:TaggedValue xmi.id="32428464" tag="direction" value="Source -> Destination"/>
|
432
|
+
<UML:TaggedValue xmi.id="32428428" tag="linemode" value="3"/>
|
433
|
+
<UML:TaggedValue xmi.id="32428392" tag="seqno" value="0"/>
|
434
|
+
<UML:TaggedValue xmi.id="32428356" tag="headStyle" value="0"/>
|
435
|
+
<UML:TaggedValue xmi.id="32428320" tag="lineStyle" value="0"/>
|
436
|
+
<UML:TaggedValue xmi.id="32428284" tag="src_visibility" value="Public"/>
|
437
|
+
<UML:TaggedValue xmi.id="32428248" tag="src_isOrdered" value="false"/>
|
438
|
+
<UML:TaggedValue xmi.id="32428212" tag="src_isNavigable" value="false"/>
|
439
|
+
<UML:TaggedValue xmi.id="32428176" tag="dst_visibility" value="Public"/>
|
440
|
+
<UML:TaggedValue xmi.id="32428140" tag="dst_isOrdered" value="false"/>
|
441
|
+
<UML:TaggedValue xmi.id="32428104" tag="dst_isNavigable" value="true"/>
|
442
|
+
<UML:TaggedValue xmi.id="32428068" tag="$ea_xref_property" value="$XREFPROP=$XID={DB1C706A-470A-45ed-89DA-601821419545}$XID;$NAM=CustomProperties$NAM;$TYP=connector property$TYP;$VIS=Public$VIS;$DES=@PROP=@NAME=isSubstitutable@ENDNAME;@TYPE=boolean@ENDTYPE;@VALU=@ENDVALU;@PRMT=@ENDPRMT;@ENDPROP;$DES;$CLT={C3D18D92-3A5C-4112-9958-926A259BAE24}$CLT;$SUP=<none>$SUP;$ENDXREF;"/>
|
443
|
+
<UML:TaggedValue xmi.id="32428032" tag="privatedata5" value="EX=37;EY=3;"/>
|
444
|
+
<UML:TaggedValue xmi.id="32427744" tag="ea_type" value="Generalization"/>
|
445
445
|
</UML:ModelElement.taggedValue>
|
446
446
|
</UML:Generalization>
|
447
|
-
<UML:Class xmi.id="
|
447
|
+
<UML:Class xmi.id="EAID_32849328" isActive="false" isRoot="false" isLeaf="false" isAbstract="false" name="Kitchen" visibility="public" presentation="32518980" clientDependency="15973836">
|
448
448
|
<UML:ModelElement.taggedValue >
|
449
|
-
<UML:TaggedValue xmi.id="
|
450
|
-
<UML:TaggedValue xmi.id="
|
451
|
-
<UML:TaggedValue xmi.id="
|
452
|
-
<UML:TaggedValue xmi.id="
|
453
|
-
<UML:TaggedValue xmi.id="
|
454
|
-
<UML:TaggedValue xmi.id="
|
455
|
-
<UML:TaggedValue xmi.id="
|
456
|
-
<UML:TaggedValue xmi.id="
|
457
|
-
<UML:TaggedValue xmi.id="
|
458
|
-
<UML:TaggedValue xmi.id="
|
459
|
-
<UML:TaggedValue xmi.id="
|
460
|
-
<UML:TaggedValue xmi.id="
|
461
|
-
<UML:TaggedValue xmi.id="
|
462
|
-
<UML:TaggedValue xmi.id="
|
463
|
-
<UML:TaggedValue xmi.id="
|
449
|
+
<UML:TaggedValue xmi.id="32518788" tag="isSpecification" value="false"/>
|
450
|
+
<UML:TaggedValue xmi.id="32518740" tag="ea_stype" value="Class"/>
|
451
|
+
<UML:TaggedValue xmi.id="32518680" tag="ea_ntype" value="0"/>
|
452
|
+
<UML:TaggedValue xmi.id="32518632" tag="version" value="1.0"/>
|
453
|
+
<UML:TaggedValue xmi.id="32518572" tag="package" value="EAPK_F9D8C6E3_4DAD_4aa2_AD47_D0ABA4E93E08"/>
|
454
|
+
<UML:TaggedValue xmi.id="32518524" tag="date_created" value="2005-11-30 19:26:13"/>
|
455
|
+
<UML:TaggedValue xmi.id="32682984" tag="date_modified" value="2006-06-22 21:15:34"/>
|
456
|
+
<UML:TaggedValue xmi.id="32518440" tag="gentype" value="Java"/>
|
457
|
+
<UML:TaggedValue xmi.id="32518404" tag="tagged" value="0"/>
|
458
|
+
<UML:TaggedValue xmi.id="32518368" tag="package_name" value="Rooms"/>
|
459
|
+
<UML:TaggedValue xmi.id="32518332" tag="phase" value="1.0"/>
|
460
|
+
<UML:TaggedValue xmi.id="32518296" tag="complexity" value="1"/>
|
461
|
+
<UML:TaggedValue xmi.id="32518260" tag="status" value="Proposed"/>
|
462
|
+
<UML:TaggedValue xmi.id="32518224" tag="style" value="BackColor=-1;BorderColor=-1;BorderWidth=-1;FontColor=-1;VSwimLanes=0;HSwimLanes=0;BorderStyle=0;"/>
|
463
|
+
<UML:TaggedValue xmi.id="32517888" tag="ea_stype" value="Class"/>
|
464
464
|
</UML:ModelElement.taggedValue>
|
465
465
|
</UML:Class>
|
466
|
-
<UML:Class xmi.id="
|
466
|
+
<UML:Class xmi.id="EAID_32829072" isActive="false" isRoot="false" isLeaf="false" isAbstract="false" name="Bathroom" visibility="public" presentation="32424024">
|
467
467
|
<UML:ModelElement.taggedValue >
|
468
|
-
<UML:TaggedValue xmi.id="
|
469
|
-
<UML:TaggedValue xmi.id="
|
470
|
-
<UML:TaggedValue xmi.id="
|
471
|
-
<UML:TaggedValue xmi.id="
|
472
|
-
<UML:TaggedValue xmi.id="
|
473
|
-
<UML:TaggedValue xmi.id="
|
474
|
-
<UML:TaggedValue xmi.id="
|
475
|
-
<UML:TaggedValue xmi.id="
|
476
|
-
<UML:TaggedValue xmi.id="
|
477
|
-
<UML:TaggedValue xmi.id="
|
478
|
-
<UML:TaggedValue xmi.id="
|
479
|
-
<UML:TaggedValue xmi.id="
|
480
|
-
<UML:TaggedValue xmi.id="
|
481
|
-
<UML:TaggedValue xmi.id="
|
482
|
-
<UML:TaggedValue xmi.id="
|
468
|
+
<UML:TaggedValue xmi.id="32410596" tag="isSpecification" value="false"/>
|
469
|
+
<UML:TaggedValue xmi.id="32411088" tag="ea_stype" value="Class"/>
|
470
|
+
<UML:TaggedValue xmi.id="32411424" tag="ea_ntype" value="0"/>
|
471
|
+
<UML:TaggedValue xmi.id="32415696" tag="version" value="1.0"/>
|
472
|
+
<UML:TaggedValue xmi.id="32415660" tag="package" value="EAPK_F9D8C6E3_4DAD_4aa2_AD47_D0ABA4E93E08"/>
|
473
|
+
<UML:TaggedValue xmi.id="32415624" tag="date_created" value="2006-06-27 08:32:25"/>
|
474
|
+
<UML:TaggedValue xmi.id="32415588" tag="date_modified" value="2006-06-27 08:34:23"/>
|
475
|
+
<UML:TaggedValue xmi.id="32415552" tag="gentype" value="Java"/>
|
476
|
+
<UML:TaggedValue xmi.id="32415516" tag="tagged" value="0"/>
|
477
|
+
<UML:TaggedValue xmi.id="32415480" tag="package_name" value="Rooms"/>
|
478
|
+
<UML:TaggedValue xmi.id="32415444" tag="phase" value="1.0"/>
|
479
|
+
<UML:TaggedValue xmi.id="32415408" tag="complexity" value="1"/>
|
480
|
+
<UML:TaggedValue xmi.id="32415372" tag="status" value="Proposed"/>
|
481
|
+
<UML:TaggedValue xmi.id="32415336" tag="style" value="BackColor=-1;BorderColor=-1;BorderWidth=-1;FontColor=-1;VSwimLanes=0;HSwimLanes=0;BorderStyle=0;"/>
|
482
|
+
<UML:TaggedValue xmi.id="32414976" tag="ea_stype" value="Class"/>
|
483
483
|
</UML:ModelElement.taggedValue>
|
484
484
|
</UML:Class>
|
485
485
|
</UML:Namespace.ownedElement>
|
486
486
|
<UML:ModelElement.taggedValue >
|
487
|
-
<UML:TaggedValue xmi.id="
|
488
|
-
<UML:TaggedValue xmi.id="
|
489
|
-
<UML:TaggedValue xmi.id="
|
490
|
-
<UML:TaggedValue xmi.id="
|
491
|
-
<UML:TaggedValue xmi.id="
|
492
|
-
<UML:TaggedValue xmi.id="
|
493
|
-
<UML:TaggedValue xmi.id="
|
494
|
-
<UML:TaggedValue xmi.id="
|
495
|
-
<UML:TaggedValue xmi.id="
|
496
|
-
<UML:TaggedValue xmi.id="
|
487
|
+
<UML:TaggedValue xmi.id="32829732" tag="created" value="2006-06-23 00:00:00"/>
|
488
|
+
<UML:TaggedValue xmi.id="32829696" tag="modified" value="2006-06-23 00:00:00"/>
|
489
|
+
<UML:TaggedValue xmi.id="32829660" tag="iscontrolled" value="FALSE"/>
|
490
|
+
<UML:TaggedValue xmi.id="32829624" tag="isprotected" value="FALSE"/>
|
491
|
+
<UML:TaggedValue xmi.id="32829588" tag="usedtd" value="FALSE"/>
|
492
|
+
<UML:TaggedValue xmi.id="32829552" tag="logxml" value="FALSE"/>
|
493
|
+
<UML:TaggedValue xmi.id="32829516" tag="phase" value="1.0"/>
|
494
|
+
<UML:TaggedValue xmi.id="32829480" tag="status" value="Proposed"/>
|
495
|
+
<UML:TaggedValue xmi.id="32829444" tag="complexity" value="1"/>
|
496
|
+
<UML:TaggedValue xmi.id="32829408" tag="ea_stype" value="Public"/>
|
497
497
|
</UML:ModelElement.taggedValue>
|
498
498
|
</UML:Package>
|
499
499
|
</UML:Namespace.ownedElement>
|
500
500
|
<UML:ModelElement.taggedValue >
|
501
|
-
<UML:TaggedValue xmi.id="
|
502
|
-
<UML:TaggedValue xmi.id="
|
503
|
-
<UML:TaggedValue xmi.id="
|
504
|
-
<UML:TaggedValue xmi.id="
|
505
|
-
<UML:TaggedValue xmi.id="
|
506
|
-
<UML:TaggedValue xmi.id="
|
507
|
-
<UML:TaggedValue xmi.id="
|
508
|
-
<UML:TaggedValue xmi.id="
|
509
|
-
<UML:TaggedValue xmi.id="
|
510
|
-
<UML:TaggedValue xmi.id="
|
511
|
-
<UML:TaggedValue xmi.id="
|
501
|
+
<UML:TaggedValue xmi.id="19535112" tag="created" value="2006-06-26 00:00:00"/>
|
502
|
+
<UML:TaggedValue xmi.id="19534464" tag="modified" value="2006-06-26 00:00:00"/>
|
503
|
+
<UML:TaggedValue xmi.id="19534392" tag="iscontrolled" value="FALSE"/>
|
504
|
+
<UML:TaggedValue xmi.id="19533960" tag="isprotected" value="FALSE"/>
|
505
|
+
<UML:TaggedValue xmi.id="19533696" tag="usedtd" value="FALSE"/>
|
506
|
+
<UML:TaggedValue xmi.id="19533600" tag="logxml" value="FALSE"/>
|
507
|
+
<UML:TaggedValue xmi.id="19533336" tag="ea_package_id" value="44"/>
|
508
|
+
<UML:TaggedValue xmi.id="19532136" tag="phase" value="1.0"/>
|
509
|
+
<UML:TaggedValue xmi.id="19531584" tag="status" value="Proposed"/>
|
510
|
+
<UML:TaggedValue xmi.id="19531440" tag="complexity" value="1"/>
|
511
|
+
<UML:TaggedValue xmi.id="19531068" tag="ea_stype" value="Public"/>
|
512
512
|
</UML:ModelElement.taggedValue>
|
513
513
|
</UML:Package>
|
514
|
-
<UML:Package xmi.id="
|
514
|
+
<UML:Package xmi.id="EAPK_20154276" name="HouseExampleModel" visibility="public" isRoot="true" isLeaf="false" isAbstract="false">
|
515
515
|
<UML:Namespace.ownedElement >
|
516
|
-
<UML:Collaboration xmi.id="
|
516
|
+
<UML:Collaboration xmi.id="33035928" name="Collaborations" visibility="public">
|
517
517
|
<UML:Namespace.ownedElement >
|
518
|
-
<UML:ClassifierRole xmi.id="
|
518
|
+
<UML:ClassifierRole xmi.id="32813184" name="SomeonesHouse" visibility="public" base="EAID_20082216" presentation="32409156">
|
519
519
|
<UML:ModelElement.taggedValue >
|
520
|
-
<UML:TaggedValue xmi.id="
|
521
|
-
<UML:TaggedValue xmi.id="
|
522
|
-
<UML:TaggedValue xmi.id="
|
523
|
-
<UML:TaggedValue xmi.id="
|
524
|
-
<UML:TaggedValue xmi.id="
|
525
|
-
<UML:TaggedValue xmi.id="
|
526
|
-
<UML:TaggedValue xmi.id="
|
527
|
-
<UML:TaggedValue xmi.id="
|
528
|
-
<UML:TaggedValue xmi.id="
|
529
|
-
<UML:TaggedValue xmi.id="
|
530
|
-
<UML:TaggedValue xmi.id="
|
531
|
-
<UML:TaggedValue xmi.id="
|
532
|
-
<UML:TaggedValue xmi.id="
|
533
|
-
<UML:TaggedValue xmi.id="
|
534
|
-
<UML:TaggedValue xmi.id="
|
535
|
-
<UML:TaggedValue xmi.id="
|
520
|
+
<UML:TaggedValue xmi.id="32409036" tag="isSpecification" value="false"/>
|
521
|
+
<UML:TaggedValue xmi.id="32409000" tag="ea_stype" value="Object"/>
|
522
|
+
<UML:TaggedValue xmi.id="32408964" tag="ea_ntype" value="0"/>
|
523
|
+
<UML:TaggedValue xmi.id="32408928" tag="version" value="1.0"/>
|
524
|
+
<UML:TaggedValue xmi.id="32408892" tag="classifier" value="EAID_436D81AD_A9B0_44d8_8AD1_86BB0808DA32"/>
|
525
|
+
<UML:TaggedValue xmi.id="32408856" tag="package" value="EAPK_06C9C958_C14A_41f4_89A9_6873CCED37A7"/>
|
526
|
+
<UML:TaggedValue xmi.id="32408820" tag="classname" value="House"/>
|
527
|
+
<UML:TaggedValue xmi.id="32408784" tag="date_created" value="2006-07-20 18:35:22"/>
|
528
|
+
<UML:TaggedValue xmi.id="32408748" tag="date_modified" value="2006-07-21 19:34:53"/>
|
529
|
+
<UML:TaggedValue xmi.id="32408712" tag="gentype" value="Java"/>
|
530
|
+
<UML:TaggedValue xmi.id="32408676" tag="tagged" value="0"/>
|
531
|
+
<UML:TaggedValue xmi.id="32408640" tag="package_name" value="HouseExampleModel"/>
|
532
|
+
<UML:TaggedValue xmi.id="32408604" tag="phase" value="1.0"/>
|
533
|
+
<UML:TaggedValue xmi.id="32408568" tag="complexity" value="1"/>
|
534
|
+
<UML:TaggedValue xmi.id="32408532" tag="status" value="Proposed"/>
|
535
|
+
<UML:TaggedValue xmi.id="32408496" tag="style" value="BackColor=-1;BorderColor=-1;BorderWidth=-1;FontColor=-1;VSwimLanes=0;HSwimLanes=0;BorderStyle=0;"/>
|
536
536
|
</UML:ModelElement.taggedValue>
|
537
537
|
</UML:ClassifierRole>
|
538
|
-
<UML:AssociationRole xmi.id="
|
538
|
+
<UML:AssociationRole xmi.id="EAID_32813148" isRoot="false" isLeaf="false" isAbstract="false" visibility="public" presentation="32396436 32396400">
|
539
539
|
<UML:Association.connection >
|
540
|
-
<UML:AssociationEndRole xmi.id="
|
540
|
+
<UML:AssociationEndRole xmi.id="EAID_32396784" isNavigable="true" isOrdered="false" aggregation="none" targetScope="instance" changeable="none" visibility="public" type="32810004">
|
541
541
|
<UML:ModelElement.taggedValue >
|
542
|
-
<UML:TaggedValue xmi.id="
|
542
|
+
<UML:TaggedValue xmi.id="32105256" tag="containment" value="Unspecified"/>
|
543
543
|
</UML:ModelElement.taggedValue>
|
544
544
|
</UML:AssociationEndRole>
|
545
|
-
<UML:AssociationEndRole xmi.id="
|
545
|
+
<UML:AssociationEndRole xmi.id="EAID_32411436" isNavigable="true" isOrdered="false" aggregation="none" targetScope="instance" changeable="none" name="home" visibility="public" type="32813184">
|
546
546
|
<UML:ModelElement.taggedValue >
|
547
|
-
<UML:TaggedValue xmi.id="
|
547
|
+
<UML:TaggedValue xmi.id="32123172" tag="containment" value="Unspecified"/>
|
548
548
|
</UML:ModelElement.taggedValue>
|
549
549
|
</UML:AssociationEndRole>
|
550
550
|
</UML:Association.connection>
|
551
551
|
<UML:ModelElement.taggedValue >
|
552
|
-
<UML:TaggedValue xmi.id="
|
553
|
-
<UML:TaggedValue xmi.id="
|
554
|
-
<UML:TaggedValue xmi.id="
|
555
|
-
<UML:TaggedValue xmi.id="
|
556
|
-
<UML:TaggedValue xmi.id="
|
557
|
-
<UML:TaggedValue xmi.id="
|
558
|
-
<UML:TaggedValue xmi.id="
|
559
|
-
<UML:TaggedValue xmi.id="
|
560
|
-
<UML:TaggedValue xmi.id="
|
561
|
-
<UML:TaggedValue xmi.id="
|
562
|
-
<UML:TaggedValue xmi.id="
|
563
|
-
<UML:TaggedValue xmi.id="
|
564
|
-
<UML:TaggedValue xmi.id="
|
565
|
-
<UML:TaggedValue xmi.id="
|
566
|
-
<UML:TaggedValue xmi.id="
|
567
|
-
<UML:TaggedValue xmi.id="
|
568
|
-
<UML:TaggedValue xmi.id="
|
569
|
-
<UML:TaggedValue xmi.id="
|
570
|
-
<UML:TaggedValue xmi.id="
|
552
|
+
<UML:TaggedValue xmi.id="32396208" tag="style" value="3"/>
|
553
|
+
<UML:TaggedValue xmi.id="32396172" tag="ea_type" value="Association"/>
|
554
|
+
<UML:TaggedValue xmi.id="32396136" tag="direction" value="Unspecified"/>
|
555
|
+
<UML:TaggedValue xmi.id="32396100" tag="linemode" value="3"/>
|
556
|
+
<UML:TaggedValue xmi.id="32396064" tag="seqno" value="0"/>
|
557
|
+
<UML:TaggedValue xmi.id="32396028" tag="headStyle" value="0"/>
|
558
|
+
<UML:TaggedValue xmi.id="32395992" tag="lineStyle" value="0"/>
|
559
|
+
<UML:TaggedValue xmi.id="32395956" tag="src_visibility" value="Public"/>
|
560
|
+
<UML:TaggedValue xmi.id="32395920" tag="src_aggregation" value="0"/>
|
561
|
+
<UML:TaggedValue xmi.id="32395884" tag="src_isOrdered" value="false"/>
|
562
|
+
<UML:TaggedValue xmi.id="32395848" tag="src_isNavigable" value="true"/>
|
563
|
+
<UML:TaggedValue xmi.id="32395812" tag="src_containment" value="Unspecified"/>
|
564
|
+
<UML:TaggedValue xmi.id="32395776" tag="dst_visibility" value="Public"/>
|
565
|
+
<UML:TaggedValue xmi.id="32395740" tag="dst_name" value="home"/>
|
566
|
+
<UML:TaggedValue xmi.id="32395704" tag="dst_aggregation" value="0"/>
|
567
|
+
<UML:TaggedValue xmi.id="32395668" tag="dst_isOrdered" value="false"/>
|
568
|
+
<UML:TaggedValue xmi.id="32395632" tag="dst_isNavigable" value="true"/>
|
569
|
+
<UML:TaggedValue xmi.id="32395596" tag="dst_containment" value="Unspecified"/>
|
570
|
+
<UML:TaggedValue xmi.id="32395560" tag="virtualInheritance" value="0"/>
|
571
571
|
</UML:ModelElement.taggedValue>
|
572
572
|
</UML:AssociationRole>
|
573
|
-
<UML:ClassifierRole xmi.id="
|
573
|
+
<UML:ClassifierRole xmi.id="32810148" name="GreenRoom" visibility="public" base="EAID_20082216" presentation="32391588">
|
574
574
|
<UML:ModelElement.taggedValue >
|
575
|
-
<UML:TaggedValue xmi.id="
|
576
|
-
<UML:TaggedValue xmi.id="
|
577
|
-
<UML:TaggedValue xmi.id="
|
578
|
-
<UML:TaggedValue xmi.id="
|
579
|
-
<UML:TaggedValue xmi.id="
|
580
|
-
<UML:TaggedValue xmi.id="
|
581
|
-
<UML:TaggedValue xmi.id="
|
582
|
-
<UML:TaggedValue xmi.id="
|
583
|
-
<UML:TaggedValue xmi.id="
|
584
|
-
<UML:TaggedValue xmi.id="
|
585
|
-
<UML:TaggedValue xmi.id="
|
586
|
-
<UML:TaggedValue xmi.id="
|
587
|
-
<UML:TaggedValue xmi.id="
|
588
|
-
<UML:TaggedValue xmi.id="
|
589
|
-
<UML:TaggedValue xmi.id="
|
590
|
-
<UML:TaggedValue xmi.id="
|
575
|
+
<UML:TaggedValue xmi.id="32391468" tag="isSpecification" value="false"/>
|
576
|
+
<UML:TaggedValue xmi.id="32391432" tag="ea_stype" value="Object"/>
|
577
|
+
<UML:TaggedValue xmi.id="32391384" tag="ea_ntype" value="0"/>
|
578
|
+
<UML:TaggedValue xmi.id="32391336" tag="version" value="1.0"/>
|
579
|
+
<UML:TaggedValue xmi.id="32391300" tag="classifier" value="EAID_14DB5E54_CD7B_4c84_998C_44960049D7E0"/>
|
580
|
+
<UML:TaggedValue xmi.id="32391264" tag="package" value="EAPK_06C9C958_C14A_41f4_89A9_6873CCED37A7"/>
|
581
|
+
<UML:TaggedValue xmi.id="32391228" tag="classname" value="Room"/>
|
582
|
+
<UML:TaggedValue xmi.id="32391192" tag="date_created" value="2006-07-20 18:35:32"/>
|
583
|
+
<UML:TaggedValue xmi.id="32382936" tag="date_modified" value="2006-07-21 19:34:11"/>
|
584
|
+
<UML:TaggedValue xmi.id="32382900" tag="gentype" value="Java"/>
|
585
|
+
<UML:TaggedValue xmi.id="32382864" tag="tagged" value="0"/>
|
586
|
+
<UML:TaggedValue xmi.id="32382828" tag="package_name" value="HouseExampleModel"/>
|
587
|
+
<UML:TaggedValue xmi.id="32382792" tag="phase" value="1.0"/>
|
588
|
+
<UML:TaggedValue xmi.id="32382756" tag="complexity" value="1"/>
|
589
|
+
<UML:TaggedValue xmi.id="32382720" tag="status" value="Proposed"/>
|
590
|
+
<UML:TaggedValue xmi.id="32382684" tag="style" value="BackColor=-1;BorderColor=-1;BorderWidth=-1;FontColor=-1;VSwimLanes=0;HSwimLanes=0;BorderStyle=0;"/>
|
591
591
|
</UML:ModelElement.taggedValue>
|
592
592
|
</UML:ClassifierRole>
|
593
|
-
<UML:ClassifierRole xmi.id="
|
593
|
+
<UML:ClassifierRole xmi.id="32810112" name="YellowRoom" visibility="public" base="EAID_20082216" presentation="32378616">
|
594
594
|
<UML:ModelElement.taggedValue >
|
595
|
-
<UML:TaggedValue xmi.id="
|
596
|
-
<UML:TaggedValue xmi.id="
|
597
|
-
<UML:TaggedValue xmi.id="
|
598
|
-
<UML:TaggedValue xmi.id="
|
599
|
-
<UML:TaggedValue xmi.id="
|
600
|
-
<UML:TaggedValue xmi.id="
|
601
|
-
<UML:TaggedValue xmi.id="
|
602
|
-
<UML:TaggedValue xmi.id="
|
603
|
-
<UML:TaggedValue xmi.id="
|
604
|
-
<UML:TaggedValue xmi.id="
|
605
|
-
<UML:TaggedValue xmi.id="
|
606
|
-
<UML:TaggedValue xmi.id="
|
607
|
-
<UML:TaggedValue xmi.id="
|
608
|
-
<UML:TaggedValue xmi.id="
|
609
|
-
<UML:TaggedValue xmi.id="
|
610
|
-
<UML:TaggedValue xmi.id="
|
595
|
+
<UML:TaggedValue xmi.id="32378472" tag="isSpecification" value="false"/>
|
596
|
+
<UML:TaggedValue xmi.id="32515416" tag="ea_stype" value="Object"/>
|
597
|
+
<UML:TaggedValue xmi.id="32378400" tag="ea_ntype" value="0"/>
|
598
|
+
<UML:TaggedValue xmi.id="32378352" tag="version" value="1.0"/>
|
599
|
+
<UML:TaggedValue xmi.id="32378316" tag="classifier" value="EAID_14DB5E54_CD7B_4c84_998C_44960049D7E0"/>
|
600
|
+
<UML:TaggedValue xmi.id="32378280" tag="package" value="EAPK_06C9C958_C14A_41f4_89A9_6873CCED37A7"/>
|
601
|
+
<UML:TaggedValue xmi.id="32378244" tag="classname" value="Room"/>
|
602
|
+
<UML:TaggedValue xmi.id="32378196" tag="date_created" value="2006-07-21 19:22:58"/>
|
603
|
+
<UML:TaggedValue xmi.id="32378148" tag="date_modified" value="2006-07-21 19:34:27"/>
|
604
|
+
<UML:TaggedValue xmi.id="32378112" tag="gentype" value="Java"/>
|
605
|
+
<UML:TaggedValue xmi.id="32378076" tag="tagged" value="0"/>
|
606
|
+
<UML:TaggedValue xmi.id="32378040" tag="package_name" value="HouseExampleModel"/>
|
607
|
+
<UML:TaggedValue xmi.id="32377992" tag="phase" value="1.0"/>
|
608
|
+
<UML:TaggedValue xmi.id="32377944" tag="complexity" value="1"/>
|
609
|
+
<UML:TaggedValue xmi.id="32377908" tag="status" value="Proposed"/>
|
610
|
+
<UML:TaggedValue xmi.id="32377872" tag="style" value="BackColor=-1;BorderColor=-1;BorderWidth=-1;FontColor=-1;VSwimLanes=0;HSwimLanes=0;BorderStyle=0;"/>
|
611
611
|
</UML:ModelElement.taggedValue>
|
612
612
|
</UML:ClassifierRole>
|
613
|
-
<UML:ClassifierRole xmi.id="
|
613
|
+
<UML:ClassifierRole xmi.id="32810076" name="HotRoom" visibility="public" base="EAID_20082216" presentation="32365464">
|
614
614
|
<UML:ModelElement.taggedValue >
|
615
|
-
<UML:TaggedValue xmi.id="
|
616
|
-
<UML:TaggedValue xmi.id="
|
617
|
-
<UML:TaggedValue xmi.id="
|
618
|
-
<UML:TaggedValue xmi.id="
|
619
|
-
<UML:TaggedValue xmi.id="
|
620
|
-
<UML:TaggedValue xmi.id="
|
621
|
-
<UML:TaggedValue xmi.id="
|
622
|
-
<UML:TaggedValue xmi.id="
|
623
|
-
<UML:TaggedValue xmi.id="
|
624
|
-
<UML:TaggedValue xmi.id="
|
625
|
-
<UML:TaggedValue xmi.id="
|
626
|
-
<UML:TaggedValue xmi.id="
|
627
|
-
<UML:TaggedValue xmi.id="
|
628
|
-
<UML:TaggedValue xmi.id="
|
629
|
-
<UML:TaggedValue xmi.id="
|
630
|
-
<UML:TaggedValue xmi.id="
|
615
|
+
<UML:TaggedValue xmi.id="32365344" tag="isSpecification" value="false"/>
|
616
|
+
<UML:TaggedValue xmi.id="32365296" tag="ea_stype" value="Object"/>
|
617
|
+
<UML:TaggedValue xmi.id="32365260" tag="ea_ntype" value="0"/>
|
618
|
+
<UML:TaggedValue xmi.id="32365212" tag="version" value="1.0"/>
|
619
|
+
<UML:TaggedValue xmi.id="32365176" tag="classifier" value="EAID_9CE44C59_37E4_4117_8C05_F87C4DC33529"/>
|
620
|
+
<UML:TaggedValue xmi.id="32365140" tag="package" value="EAPK_06C9C958_C14A_41f4_89A9_6873CCED37A7"/>
|
621
|
+
<UML:TaggedValue xmi.id="32365104" tag="classname" value="Kitchen"/>
|
622
|
+
<UML:TaggedValue xmi.id="32365068" tag="date_created" value="2006-07-21 19:27:21"/>
|
623
|
+
<UML:TaggedValue xmi.id="32365032" tag="date_modified" value="2006-07-21 19:33:56"/>
|
624
|
+
<UML:TaggedValue xmi.id="32364996" tag="gentype" value="Java"/>
|
625
|
+
<UML:TaggedValue xmi.id="32364960" tag="tagged" value="0"/>
|
626
|
+
<UML:TaggedValue xmi.id="32364924" tag="package_name" value="HouseExampleModel"/>
|
627
|
+
<UML:TaggedValue xmi.id="32364888" tag="phase" value="1.0"/>
|
628
|
+
<UML:TaggedValue xmi.id="32364852" tag="complexity" value="1"/>
|
629
|
+
<UML:TaggedValue xmi.id="32364816" tag="status" value="Proposed"/>
|
630
|
+
<UML:TaggedValue xmi.id="32364780" tag="style" value="BackColor=-1;BorderColor=-1;BorderWidth=-1;FontColor=-1;VSwimLanes=0;HSwimLanes=0;BorderStyle=0;"/>
|
631
631
|
</UML:ModelElement.taggedValue>
|
632
632
|
</UML:ClassifierRole>
|
633
|
-
<UML:ClassifierRole xmi.id="
|
633
|
+
<UML:ClassifierRole xmi.id="32810004" name="Someone" visibility="public" base="EAID_20082216" presentation="32360880">
|
634
634
|
<UML:ModelElement.taggedValue >
|
635
|
-
<UML:TaggedValue xmi.id="
|
636
|
-
<UML:TaggedValue xmi.id="
|
637
|
-
<UML:TaggedValue xmi.id="
|
638
|
-
<UML:TaggedValue xmi.id="
|
639
|
-
<UML:TaggedValue xmi.id="
|
640
|
-
<UML:TaggedValue xmi.id="
|
641
|
-
<UML:TaggedValue xmi.id="
|
642
|
-
<UML:TaggedValue xmi.id="
|
643
|
-
<UML:TaggedValue xmi.id="
|
644
|
-
<UML:TaggedValue xmi.id="
|
645
|
-
<UML:TaggedValue xmi.id="
|
646
|
-
<UML:TaggedValue xmi.id="
|
647
|
-
<UML:TaggedValue xmi.id="
|
648
|
-
<UML:TaggedValue xmi.id="
|
649
|
-
<UML:TaggedValue xmi.id="
|
650
|
-
<UML:TaggedValue xmi.id="
|
635
|
+
<UML:TaggedValue xmi.id="32360760" tag="isSpecification" value="false"/>
|
636
|
+
<UML:TaggedValue xmi.id="32360724" tag="ea_stype" value="Object"/>
|
637
|
+
<UML:TaggedValue xmi.id="32360688" tag="ea_ntype" value="0"/>
|
638
|
+
<UML:TaggedValue xmi.id="32360652" tag="version" value="1.0"/>
|
639
|
+
<UML:TaggedValue xmi.id="32360604" tag="classifier" value="EAID_2F1D9CC6_F38F_4a34_B3C4_B92915108384"/>
|
640
|
+
<UML:TaggedValue xmi.id="32360568" tag="package" value="EAPK_06C9C958_C14A_41f4_89A9_6873CCED37A7"/>
|
641
|
+
<UML:TaggedValue xmi.id="32360520" tag="classname" value="Person"/>
|
642
|
+
<UML:TaggedValue xmi.id="32360484" tag="date_created" value="2006-07-21 19:29:45"/>
|
643
|
+
<UML:TaggedValue xmi.id="32360448" tag="date_modified" value="2006-07-21 19:35:00"/>
|
644
|
+
<UML:TaggedValue xmi.id="32360412" tag="gentype" value="Java"/>
|
645
|
+
<UML:TaggedValue xmi.id="32360376" tag="tagged" value="0"/>
|
646
|
+
<UML:TaggedValue xmi.id="32360328" tag="package_name" value="HouseExampleModel"/>
|
647
|
+
<UML:TaggedValue xmi.id="32360292" tag="phase" value="1.0"/>
|
648
|
+
<UML:TaggedValue xmi.id="32360256" tag="complexity" value="1"/>
|
649
|
+
<UML:TaggedValue xmi.id="32360220" tag="status" value="Proposed"/>
|
650
|
+
<UML:TaggedValue xmi.id="32360184" tag="style" value="BackColor=-1;BorderColor=-1;BorderWidth=-1;FontColor=-1;VSwimLanes=0;HSwimLanes=0;BorderStyle=0;"/>
|
651
651
|
</UML:ModelElement.taggedValue>
|
652
652
|
</UML:ClassifierRole>
|
653
|
-
<UML:ClassifierRole xmi.id="
|
653
|
+
<UML:ClassifierRole xmi.id="32809968" name="WetRoom" visibility="public" base="EAID_20082216" presentation="32348100">
|
654
654
|
<UML:ModelElement.taggedValue >
|
655
|
-
<UML:TaggedValue xmi.id="
|
656
|
-
<UML:TaggedValue xmi.id="
|
657
|
-
<UML:TaggedValue xmi.id="
|
658
|
-
<UML:TaggedValue xmi.id="
|
659
|
-
<UML:TaggedValue xmi.id="
|
660
|
-
<UML:TaggedValue xmi.id="
|
661
|
-
<UML:TaggedValue xmi.id="
|
662
|
-
<UML:TaggedValue xmi.id="
|
663
|
-
<UML:TaggedValue xmi.id="
|
664
|
-
<UML:TaggedValue xmi.id="
|
665
|
-
<UML:TaggedValue xmi.id="
|
666
|
-
<UML:TaggedValue xmi.id="
|
667
|
-
<UML:TaggedValue xmi.id="
|
668
|
-
<UML:TaggedValue xmi.id="
|
669
|
-
<UML:TaggedValue xmi.id="
|
670
|
-
<UML:TaggedValue xmi.id="
|
655
|
+
<UML:TaggedValue xmi.id="32347980" tag="isSpecification" value="false"/>
|
656
|
+
<UML:TaggedValue xmi.id="32347944" tag="ea_stype" value="Object"/>
|
657
|
+
<UML:TaggedValue xmi.id="32347908" tag="ea_ntype" value="0"/>
|
658
|
+
<UML:TaggedValue xmi.id="32347872" tag="version" value="1.0"/>
|
659
|
+
<UML:TaggedValue xmi.id="32347836" tag="classifier" value="EAID_244CC9E5_1F81_4164_9215_C048EC679543"/>
|
660
|
+
<UML:TaggedValue xmi.id="32347800" tag="package" value="EAPK_06C9C958_C14A_41f4_89A9_6873CCED37A7"/>
|
661
|
+
<UML:TaggedValue xmi.id="32347764" tag="classname" value="Bathroom"/>
|
662
|
+
<UML:TaggedValue xmi.id="32347728" tag="date_created" value="2006-07-21 19:31:18"/>
|
663
|
+
<UML:TaggedValue xmi.id="32347692" tag="date_modified" value="2006-07-21 19:34:02"/>
|
664
|
+
<UML:TaggedValue xmi.id="32375268" tag="gentype" value="Java"/>
|
665
|
+
<UML:TaggedValue xmi.id="32347632" tag="tagged" value="0"/>
|
666
|
+
<UML:TaggedValue xmi.id="32347596" tag="package_name" value="HouseExampleModel"/>
|
667
|
+
<UML:TaggedValue xmi.id="32347560" tag="phase" value="1.0"/>
|
668
|
+
<UML:TaggedValue xmi.id="32347524" tag="complexity" value="1"/>
|
669
|
+
<UML:TaggedValue xmi.id="32347488" tag="status" value="Proposed"/>
|
670
|
+
<UML:TaggedValue xmi.id="32347452" tag="style" value="BackColor=-1;BorderColor=-1;BorderWidth=-1;FontColor=-1;VSwimLanes=0;HSwimLanes=0;BorderStyle=0;"/>
|
671
671
|
</UML:ModelElement.taggedValue>
|
672
672
|
</UML:ClassifierRole>
|
673
673
|
</UML:Namespace.ownedElement>
|
674
674
|
</UML:Collaboration>
|
675
|
-
<UML:Association xmi.id="
|
675
|
+
<UML:Association xmi.id="EAID_33035892" isRoot="false" isLeaf="false" isAbstract="false" visibility="public" presentation="32798796 32798760">
|
676
676
|
<UML:Association.connection >
|
677
|
-
<UML:AssociationEnd xmi.id="
|
677
|
+
<UML:AssociationEnd xmi.id="EAID_32799156" isNavigable="false" isOrdered="false" aggregation="none" targetScope="instance" changeable="none" name="room" visibility="public" type="32810148">
|
678
678
|
<UML:ModelElement.taggedValue >
|
679
|
-
<UML:TaggedValue xmi.id="
|
679
|
+
<UML:TaggedValue xmi.id="32344260" tag="containment" value="Unspecified"/>
|
680
680
|
</UML:ModelElement.taggedValue>
|
681
681
|
</UML:AssociationEnd>
|
682
|
-
<UML:AssociationEnd xmi.id="
|
682
|
+
<UML:AssociationEnd xmi.id="EAID_32799120" isNavigable="true" isOrdered="false" aggregation="composite" targetScope="instance" changeable="none" visibility="public" type="32813184">
|
683
683
|
<UML:ModelElement.taggedValue >
|
684
|
-
<UML:TaggedValue xmi.id="
|
684
|
+
<UML:TaggedValue xmi.id="32333712" tag="containment" value="Unspecified"/>
|
685
685
|
</UML:ModelElement.taggedValue>
|
686
686
|
</UML:AssociationEnd>
|
687
687
|
</UML:Association.connection>
|
688
688
|
<UML:ModelElement.taggedValue >
|
689
|
-
<UML:TaggedValue xmi.id="
|
690
|
-
<UML:TaggedValue xmi.id="
|
691
|
-
<UML:TaggedValue xmi.id="
|
692
|
-
<UML:TaggedValue xmi.id="
|
693
|
-
<UML:TaggedValue xmi.id="
|
694
|
-
<UML:TaggedValue xmi.id="
|
695
|
-
<UML:TaggedValue xmi.id="
|
696
|
-
<UML:TaggedValue xmi.id="
|
697
|
-
<UML:TaggedValue xmi.id="
|
698
|
-
<UML:TaggedValue xmi.id="
|
699
|
-
<UML:TaggedValue xmi.id="
|
689
|
+
<UML:TaggedValue xmi.id="32798640" tag="style" value="3"/>
|
690
|
+
<UML:TaggedValue xmi.id="32798604" tag="ea_type" value="Aggregation"/>
|
691
|
+
<UML:TaggedValue xmi.id="32798568" tag="direction" value="Source -> Destination"/>
|
692
|
+
<UML:TaggedValue xmi.id="32798532" tag="linemode" value="3"/>
|
693
|
+
<UML:TaggedValue xmi.id="32798496" tag="seqno" value="0"/>
|
694
|
+
<UML:TaggedValue xmi.id="32798460" tag="subtype" value="Strong"/>
|
695
|
+
<UML:TaggedValue xmi.id="32798424" tag="headStyle" value="0"/>
|
696
|
+
<UML:TaggedValue xmi.id="32798388" tag="lineStyle" value="0"/>
|
697
|
+
<UML:TaggedValue xmi.id="32798352" tag="virtualInheritance" value="0"/>
|
698
|
+
<UML:TaggedValue xmi.id="32797908" tag="ea_type" value="Association"/>
|
699
|
+
<UML:TaggedValue xmi.id="32797620" tag="direction" value="Source -> Destination"/>
|
700
700
|
</UML:ModelElement.taggedValue>
|
701
701
|
</UML:Association>
|
702
|
-
<UML:Association xmi.id="
|
702
|
+
<UML:Association xmi.id="EAID_33035856" isRoot="false" isLeaf="false" isAbstract="false" visibility="public" presentation="32794308 32794272">
|
703
703
|
<UML:Association.connection >
|
704
|
-
<UML:AssociationEnd xmi.id="
|
704
|
+
<UML:AssociationEnd xmi.id="EAID_32794668" isNavigable="false" isOrdered="false" aggregation="none" targetScope="instance" changeable="none" name="room" visibility="public" type="32810076">
|
705
705
|
<UML:ModelElement.taggedValue >
|
706
|
-
<UML:TaggedValue xmi.id="
|
706
|
+
<UML:TaggedValue xmi.id="32326344" tag="containment" value="Unspecified"/>
|
707
707
|
</UML:ModelElement.taggedValue>
|
708
708
|
</UML:AssociationEnd>
|
709
|
-
<UML:AssociationEnd xmi.id="
|
709
|
+
<UML:AssociationEnd xmi.id="EAID_32794632" isNavigable="true" isOrdered="false" aggregation="composite" targetScope="instance" changeable="none" visibility="public" type="32813184">
|
710
710
|
<UML:ModelElement.taggedValue >
|
711
|
-
<UML:TaggedValue xmi.id="
|
711
|
+
<UML:TaggedValue xmi.id="32315796" tag="containment" value="Unspecified"/>
|
712
712
|
</UML:ModelElement.taggedValue>
|
713
713
|
</UML:AssociationEnd>
|
714
714
|
</UML:Association.connection>
|
715
715
|
<UML:ModelElement.taggedValue >
|
716
|
-
<UML:TaggedValue xmi.id="
|
717
|
-
<UML:TaggedValue xmi.id="
|
718
|
-
<UML:TaggedValue xmi.id="
|
719
|
-
<UML:TaggedValue xmi.id="
|
720
|
-
<UML:TaggedValue xmi.id="
|
721
|
-
<UML:TaggedValue xmi.id="
|
722
|
-
<UML:TaggedValue xmi.id="
|
723
|
-
<UML:TaggedValue xmi.id="
|
724
|
-
<UML:TaggedValue xmi.id="
|
725
|
-
<UML:TaggedValue xmi.id="
|
726
|
-
<UML:TaggedValue xmi.id="
|
716
|
+
<UML:TaggedValue xmi.id="32794152" tag="style" value="3"/>
|
717
|
+
<UML:TaggedValue xmi.id="32794116" tag="ea_type" value="Aggregation"/>
|
718
|
+
<UML:TaggedValue xmi.id="32794080" tag="direction" value="Source -> Destination"/>
|
719
|
+
<UML:TaggedValue xmi.id="32794044" tag="linemode" value="3"/>
|
720
|
+
<UML:TaggedValue xmi.id="32794008" tag="seqno" value="0"/>
|
721
|
+
<UML:TaggedValue xmi.id="32793972" tag="subtype" value="Strong"/>
|
722
|
+
<UML:TaggedValue xmi.id="32793936" tag="headStyle" value="0"/>
|
723
|
+
<UML:TaggedValue xmi.id="32793900" tag="lineStyle" value="0"/>
|
724
|
+
<UML:TaggedValue xmi.id="32793864" tag="virtualInheritance" value="0"/>
|
725
|
+
<UML:TaggedValue xmi.id="32793444" tag="ea_type" value="Association"/>
|
726
|
+
<UML:TaggedValue xmi.id="32793132" tag="direction" value="Source -> Destination"/>
|
727
727
|
</UML:ModelElement.taggedValue>
|
728
728
|
</UML:Association>
|
729
|
-
<UML:Association xmi.id="
|
729
|
+
<UML:Association xmi.id="EAID_33035820" isRoot="false" isLeaf="false" isAbstract="false" visibility="public" presentation="32748816 32748780">
|
730
730
|
<UML:Association.connection >
|
731
|
-
<UML:AssociationEnd xmi.id="
|
731
|
+
<UML:AssociationEnd xmi.id="EAID_32749224" isNavigable="false" isOrdered="false" aggregation="none" targetScope="instance" changeable="none" name="room" visibility="public" type="32810112">
|
732
732
|
<UML:ModelElement.taggedValue >
|
733
|
-
<UML:TaggedValue xmi.id="
|
733
|
+
<UML:TaggedValue xmi.id="32283960" tag="containment" value="Unspecified"/>
|
734
734
|
</UML:ModelElement.taggedValue>
|
735
735
|
</UML:AssociationEnd>
|
736
|
-
<UML:AssociationEnd xmi.id="
|
736
|
+
<UML:AssociationEnd xmi.id="EAID_32749188" isNavigable="true" isOrdered="false" aggregation="composite" targetScope="instance" changeable="none" visibility="public" type="32813184">
|
737
737
|
<UML:ModelElement.taggedValue >
|
738
|
-
<UML:TaggedValue xmi.id="
|
738
|
+
<UML:TaggedValue xmi.id="32281560" tag="containment" value="Unspecified"/>
|
739
739
|
</UML:ModelElement.taggedValue>
|
740
740
|
</UML:AssociationEnd>
|
741
741
|
</UML:Association.connection>
|
742
742
|
<UML:ModelElement.taggedValue >
|
743
|
-
<UML:TaggedValue xmi.id="
|
744
|
-
<UML:TaggedValue xmi.id="
|
745
|
-
<UML:TaggedValue xmi.id="
|
746
|
-
<UML:TaggedValue xmi.id="
|
747
|
-
<UML:TaggedValue xmi.id="
|
748
|
-
<UML:TaggedValue xmi.id="
|
749
|
-
<UML:TaggedValue xmi.id="
|
750
|
-
<UML:TaggedValue xmi.id="
|
751
|
-
<UML:TaggedValue xmi.id="
|
752
|
-
<UML:TaggedValue xmi.id="
|
753
|
-
<UML:TaggedValue xmi.id="
|
743
|
+
<UML:TaggedValue xmi.id="32748660" tag="style" value="3"/>
|
744
|
+
<UML:TaggedValue xmi.id="32748624" tag="ea_type" value="Aggregation"/>
|
745
|
+
<UML:TaggedValue xmi.id="32748588" tag="direction" value="Source -> Destination"/>
|
746
|
+
<UML:TaggedValue xmi.id="32748552" tag="linemode" value="3"/>
|
747
|
+
<UML:TaggedValue xmi.id="32748516" tag="seqno" value="0"/>
|
748
|
+
<UML:TaggedValue xmi.id="32748480" tag="subtype" value="Strong"/>
|
749
|
+
<UML:TaggedValue xmi.id="32748444" tag="headStyle" value="0"/>
|
750
|
+
<UML:TaggedValue xmi.id="32748408" tag="lineStyle" value="0"/>
|
751
|
+
<UML:TaggedValue xmi.id="32748372" tag="virtualInheritance" value="0"/>
|
752
|
+
<UML:TaggedValue xmi.id="32747976" tag="ea_type" value="Association"/>
|
753
|
+
<UML:TaggedValue xmi.id="32747688" tag="direction" value="Source -> Destination"/>
|
754
754
|
</UML:ModelElement.taggedValue>
|
755
755
|
</UML:Association>
|
756
|
-
<UML:Association xmi.id="
|
756
|
+
<UML:Association xmi.id="EAID_33035784" isRoot="false" isLeaf="false" isAbstract="false" visibility="public" presentation="32744436 32744400">
|
757
757
|
<UML:Association.connection >
|
758
|
-
<UML:AssociationEnd xmi.id="
|
758
|
+
<UML:AssociationEnd xmi.id="EAID_32744784" isNavigable="false" isOrdered="false" aggregation="none" targetScope="instance" changeable="none" name="room" visibility="public" type="32809968">
|
759
759
|
<UML:ModelElement.taggedValue >
|
760
|
-
<UML:TaggedValue xmi.id="
|
760
|
+
<UML:TaggedValue xmi.id="32266056" tag="containment" value="Unspecified"/>
|
761
761
|
</UML:ModelElement.taggedValue>
|
762
762
|
</UML:AssociationEnd>
|
763
|
-
<UML:AssociationEnd xmi.id="
|
763
|
+
<UML:AssociationEnd xmi.id="EAID_32744748" isNavigable="true" isOrdered="false" aggregation="composite" targetScope="instance" changeable="none" visibility="public" type="32813184">
|
764
764
|
<UML:ModelElement.taggedValue >
|
765
|
-
<UML:TaggedValue xmi.id="
|
765
|
+
<UML:TaggedValue xmi.id="32263656" tag="containment" value="Unspecified"/>
|
766
766
|
</UML:ModelElement.taggedValue>
|
767
767
|
</UML:AssociationEnd>
|
768
768
|
</UML:Association.connection>
|
769
769
|
<UML:ModelElement.taggedValue >
|
770
|
-
<UML:TaggedValue xmi.id="
|
771
|
-
<UML:TaggedValue xmi.id="
|
772
|
-
<UML:TaggedValue xmi.id="
|
773
|
-
<UML:TaggedValue xmi.id="
|
774
|
-
<UML:TaggedValue xmi.id="
|
775
|
-
<UML:TaggedValue xmi.id="
|
776
|
-
<UML:TaggedValue xmi.id="
|
777
|
-
<UML:TaggedValue xmi.id="
|
778
|
-
<UML:TaggedValue xmi.id="
|
779
|
-
<UML:TaggedValue xmi.id="
|
780
|
-
<UML:TaggedValue xmi.id="
|
781
|
-
<UML:TaggedValue xmi.id="
|
770
|
+
<UML:TaggedValue xmi.id="32744280" tag="style" value="3"/>
|
771
|
+
<UML:TaggedValue xmi.id="32744244" tag="ea_type" value="Aggregation"/>
|
772
|
+
<UML:TaggedValue xmi.id="32744208" tag="direction" value="Source -> Destination"/>
|
773
|
+
<UML:TaggedValue xmi.id="32744172" tag="linemode" value="3"/>
|
774
|
+
<UML:TaggedValue xmi.id="32744136" tag="seqno" value="0"/>
|
775
|
+
<UML:TaggedValue xmi.id="32744100" tag="subtype" value="Strong"/>
|
776
|
+
<UML:TaggedValue xmi.id="32744064" tag="headStyle" value="0"/>
|
777
|
+
<UML:TaggedValue xmi.id="32744028" tag="lineStyle" value="0"/>
|
778
|
+
<UML:TaggedValue xmi.id="32743992" tag="privatedata5" value="SX=36;SY=-9;EX=45;EY=-9;"/>
|
779
|
+
<UML:TaggedValue xmi.id="32743956" tag="virtualInheritance" value="0"/>
|
780
|
+
<UML:TaggedValue xmi.id="32743560" tag="ea_type" value="Association"/>
|
781
|
+
<UML:TaggedValue xmi.id="32735052" tag="direction" value="Source -> Destination"/>
|
782
782
|
</UML:ModelElement.taggedValue>
|
783
783
|
</UML:Association>
|
784
784
|
</UML:Namespace.ownedElement>
|
785
785
|
<UML:ModelElement.taggedValue >
|
786
|
-
<UML:TaggedValue xmi.id="
|
787
|
-
<UML:TaggedValue xmi.id="
|
788
|
-
<UML:TaggedValue xmi.id="
|
789
|
-
<UML:TaggedValue xmi.id="
|
790
|
-
<UML:TaggedValue xmi.id="
|
791
|
-
<UML:TaggedValue xmi.id="
|
792
|
-
<UML:TaggedValue xmi.id="
|
793
|
-
<UML:TaggedValue xmi.id="
|
794
|
-
<UML:TaggedValue xmi.id="
|
795
|
-
<UML:TaggedValue xmi.id="
|
796
|
-
<UML:TaggedValue xmi.id="
|
786
|
+
<UML:TaggedValue xmi.id="33036504" tag="created" value="2006-07-20 00:00:00"/>
|
787
|
+
<UML:TaggedValue xmi.id="33036468" tag="modified" value="2006-07-20 00:00:00"/>
|
788
|
+
<UML:TaggedValue xmi.id="33036432" tag="iscontrolled" value="FALSE"/>
|
789
|
+
<UML:TaggedValue xmi.id="33036396" tag="isprotected" value="FALSE"/>
|
790
|
+
<UML:TaggedValue xmi.id="33036360" tag="usedtd" value="FALSE"/>
|
791
|
+
<UML:TaggedValue xmi.id="33036324" tag="logxml" value="FALSE"/>
|
792
|
+
<UML:TaggedValue xmi.id="33036288" tag="ea_package_id" value="46"/>
|
793
|
+
<UML:TaggedValue xmi.id="33037872" tag="phase" value="1.0"/>
|
794
|
+
<UML:TaggedValue xmi.id="33036228" tag="status" value="Proposed"/>
|
795
|
+
<UML:TaggedValue xmi.id="33036192" tag="complexity" value="1"/>
|
796
|
+
<UML:TaggedValue xmi.id="33036156" tag="ea_stype" value="Public"/>
|
797
797
|
</UML:ModelElement.taggedValue>
|
798
798
|
</UML:Package>
|
799
799
|
</UML:Namespace.ownedElement>
|
800
800
|
<UML:ModelElement.taggedValue >
|
801
|
-
<UML:TaggedValue xmi.id="
|
802
|
-
<UML:TaggedValue xmi.id="
|
803
|
-
<UML:TaggedValue xmi.id="
|
804
|
-
<UML:TaggedValue xmi.id="
|
805
|
-
<UML:TaggedValue xmi.id="
|
801
|
+
<UML:TaggedValue xmi.id="20174436" tag="ea_package_id" value="1"/>
|
802
|
+
<UML:TaggedValue xmi.id="20173356" tag="iscontrolled" value="FALSE"/>
|
803
|
+
<UML:TaggedValue xmi.id="20173272" tag="isprotected" value="FALSE"/>
|
804
|
+
<UML:TaggedValue xmi.id="20173140" tag="usedtd" value="FALSE"/>
|
805
|
+
<UML:TaggedValue xmi.id="20173032" tag="logxml" value="FALSE"/>
|
806
806
|
</UML:ModelElement.taggedValue>
|
807
807
|
</UML:Package>
|
808
|
-
<UML:DataType xmi.id="
|
809
|
-
<UML:DataType xmi.id="
|
808
|
+
<UML:DataType xmi.id="19853868" isRoot="false" isLeaf="false" isAbstract="false" name="String" visibility="private"/>
|
809
|
+
<UML:DataType xmi.id="19800192" isRoot="false" isLeaf="false" isAbstract="false" name="void" visibility="private"/>
|
810
810
|
</UML:Namespace.ownedElement>
|
811
811
|
</UML:Model>
|
812
812
|
</XMI.content>
|