Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.framework.core.dsl.integration.test/src/org/eclipse/osee/framework/core/dsl/integration/util/testTypeModel.osee')
-rw-r--r--plugins/org.eclipse.osee.framework.core.dsl.integration.test/src/org/eclipse/osee/framework/core/dsl/integration/util/testTypeModel.osee66
1 files changed, 33 insertions, 33 deletions
diff --git a/plugins/org.eclipse.osee.framework.core.dsl.integration.test/src/org/eclipse/osee/framework/core/dsl/integration/util/testTypeModel.osee b/plugins/org.eclipse.osee.framework.core.dsl.integration.test/src/org/eclipse/osee/framework/core/dsl/integration/util/testTypeModel.osee
index 576875f338d..4d11e1c869a 100644
--- a/plugins/org.eclipse.osee.framework.core.dsl.integration.test/src/org/eclipse/osee/framework/core/dsl/integration/util/testTypeModel.osee
+++ b/plugins/org.eclipse.osee.framework.core.dsl.integration.test/src/org/eclipse/osee/framework/core/dsl/integration/util/testTypeModel.osee
@@ -1,3 +1,36 @@
+artifactType "Artifact" {
+ id 1
+ attribute "Name"
+ attribute "Annotation"
+}
+
+abstract artifactType "Requirement" extends "Artifact" {
+ id 21
+ attribute "WordML"
+}
+
+artifactType "Software Requirement" extends "Requirement" {
+ id 24
+}
+
+artifactType "System Requirement" extends "Requirement" {
+ id 30
+}
+
+artifactType "SubSystem Requirement" extends "Requirement" {
+ id 29
+}
+
+relationType "Requirement Relation" {
+ id 2305843009213694295
+ sideAName "requirement-sideA"
+ sideAArtifactType "Requirement"
+ sideBName "subsystem-sideB"
+ sideBArtifactType "SubSystem Requirement"
+ defaultOrderType Lexicographical_Ascending
+ multiplicity ONE_TO_MANY
+}
+
attributeType "Name" extends StringAttribute {
id 1152921504606847088
dataProvider DefaultAttributeDataProvider
@@ -29,37 +62,4 @@ attributeType "WordML" extends WordAttribute {
defaultValue "<w:p xmlns:w=\"http://schemas.microsoft.com/office/word/2003/wordml\"><w:r><w:t></w:t></w:r></w:p>"
fileExtension "xml"
mediaType "application/msword"
-}
-
-relationType "Requirement Relation" {
- id 2305843009213694295
- sideAName "requirement-sideA"
- sideAArtifactType "Requirement"
- sideBName "subsystem-sideB"
- sideBArtifactType "SubSystem Requirement"
- defaultOrderType Lexicographical_Ascending
- multiplicity ONE_TO_MANY
-}
-
-artifactType "Artifact" {
- id 1
- attribute "Name"
- attribute "Annotation"
-}
-
-abstract artifactType "Requirement" extends "Artifact" {
- id 21
- attribute "WordML"
-}
-
-artifactType "Software Requirement" extends "Requirement" {
- id 24
-}
-
-artifactType "System Requirement" extends "Requirement" {
- id 30
-}
-
-artifactType "SubSystem Requirement" extends "Requirement" {
- id 29
} \ No newline at end of file

Back to the top