Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormegumi.telles2017-11-14 21:35:34 +0000
committermegumi.telles2017-11-14 21:35:34 +0000
commit7fe51185400e12e63a01f77aa95cc8859049f1d8 (patch)
treed0ecdc8bacefce2b590f17a251ef6fd12263c715
parentc4e92eea2bf14f3a3e32e1c8d00edad6d030383b (diff)
downloadorg.eclipse.osee-7fe51185400e12e63a01f77aa95cc8859049f1d8.tar.gz
org.eclipse.osee-7fe51185400e12e63a01f77aa95cc8859049f1d8.tar.xz
org.eclipse.osee-7fe51185400e12e63a01f77aa95cc8859049f1d8.zip
Add Impl Details Plain Text to types
-rw-r--r--plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/enums/CoreArtifactTypes.java1
-rw-r--r--plugins/org.eclipse.osee.framework.skynet.core/support/OseeTypes_Framework.osee14
2 files changed, 12 insertions, 3 deletions
diff --git a/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/enums/CoreArtifactTypes.java b/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/enums/CoreArtifactTypes.java
index b4782c41f4f..2db49a31a39 100644
--- a/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/enums/CoreArtifactTypes.java
+++ b/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/enums/CoreArtifactTypes.java
@@ -48,6 +48,7 @@ public final class CoreArtifactTypes {
public static final IArtifactType ImplementationDetailsFunction = TokenFactory.createArtifactType(139802, "Implementation Details Function");
public static final IArtifactType ImplementationDetailsDrawing = TokenFactory.createArtifactType(209690, "Implementation Details Drawing");
public static final IArtifactType ImplementationDetailsDataDefinition = TokenFactory.createArtifactType(279578, "Implementation Details Data Definition");
+ public static final IArtifactType ImplementationDetailsPlainText = TokenFactory.createArtifactType(638269899, "Implementation Details Plain Text");
public static final IArtifactType ModelDiagram = TokenFactory.createArtifactType(98, "Model Diagram");
public static final IArtifactType NativeArtifact = TokenFactory.createArtifactType(20, "Native Artifact");
public static final IArtifactType WholeWord = TokenFactory.createArtifactType(18, "MS Word Whole Document");
diff --git a/plugins/org.eclipse.osee.framework.skynet.core/support/OseeTypes_Framework.osee b/plugins/org.eclipse.osee.framework.skynet.core/support/OseeTypes_Framework.osee
index a20b05fe338..04c1651ddee 100644
--- a/plugins/org.eclipse.osee.framework.skynet.core/support/OseeTypes_Framework.osee
+++ b/plugins/org.eclipse.osee.framework.skynet.core/support/OseeTypes_Framework.osee
@@ -767,13 +767,21 @@ artifactType "Indirect Software Requirement" extends "Abstract Software Requirem
id 25
}
-artifactType "Implementation Details" extends "MS Word Template" {
- id 26
+abstract artifactType "Abstract Implementation Details" extends "Artifact" {
+ id 921211884
attribute "Data Rights Classification"
attribute "Data Rights Basis"
attribute "Subject Matter Expert"
attribute "Subsystem"
- attribute "Partition"
+ attribute "Partition"
+}
+
+artifactType "Implementation Details" extends "Abstract Implementation Details", "MS Word Template" {
+ id 26
+}
+
+artifactType "Implementation Details Plain Text" extends "Abstract Implementation Details", "Plain Text" {
+ id 638269899
}
artifactType "Implementation Details Procedure" extends "Implementation Details" {

Back to the top