Subversion Repositories DevTools

Rev

Rev 2094 | Rev 2104 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2094 Rev 2098
Line 9... Line 9...
9
	{
9
	{
10
      // Some style names used in EA_DocGen - most are expected to exist in the input template/doc
10
      // Some style names used in EA_DocGen - most are expected to exist in the input template/doc
11
      // but the Requirement formatting styles are programmatcally generated if they are found to not
11
      // but the Requirement formatting styles are programmatcally generated if they are found to not
12
      // exist. The reason for this is that as of writing this add-in, they do not exist in the ERG
12
      // exist. The reason for this is that as of writing this add-in, they do not exist in the ERG
13
      // standard template.
13
      // standard template.
-
 
14
 
-
 
15
      // Style names created programmatically if necessary
14
      public const string styleName_ReqAppBody  = "Requirements Approved Body";
16
      public const string styleName_ReqAppBody  = "Requirements Approved Body";
15
      public const string styleName_ReqAppHdr   = "Requirements Approved Heading";
17
      public const string styleName_ReqAppHdr   = "Requirements Approved Heading";
16
      public const string styleName_ReqPropBody = "Requirements Proposed Body";
18
      public const string styleName_ReqPropBody = "Requirements Proposed Body";
17
      public const string styleName_ReqPropHdr  = "Requirements Proposed Heading";
19
      public const string styleName_ReqPropHdr  = "Requirements Proposed Heading";
18
      public const string styleName_ReqRejBody  = "Requirements Rejected Body";
20
      public const string styleName_ReqRejBody  = "Requirements Rejected Body";
19
      public const string styleName_ReqRejHdr   = "Requirements Rejected Heading";
21
      public const string styleName_ReqRejHdr   = "Requirements Rejected Heading";
20
      public const string styleName_ReqName     = "Requirements Name";
22
      public const string styleName_ReqName     = "Requirements Name";
-
 
23
 
-
 
24
      public const string styleName_Body1_Left_2_5cm_Italic = "Body 1 Left 2.5cm Italic";
-
 
25
      public const string styleName_Body1_Left_3_5cm_Italic = "Body 1 Left 3.5cm Italic";
-
 
26
      public const string styleName_Body1_Left_3_5cm        = "Body 1 Left 3.3cm";
-
 
27
      public const string styleName_Body1_Left_4_5cm        = "Body 1 Left 4.3cm";
-
 
28
      public const string stylename_Parameter_Description   = "Parameter Description";
-
 
29
 
-
 
30
      // Style names we rely upon from the input template
21
      public const string styleName_Body1       = "Body 1";
31
      public const string styleName_Body1       = "Body 1";
22
      public const string styleName_Heading1    = "Heading 1";
32
      public const string styleName_Heading1    = "Heading 1";
23
      public const string styleName_Heading2    = "Heading 2";
33
      public const string styleName_Heading2    = "Heading 2";
24
      public const string styleName_Heading3    = "Heading 3";
34
      public const string styleName_Heading3    = "Heading 3";
25
      public const string styleName_Heading4    = "Heading 4";
35
      public const string styleName_Heading4    = "Heading 4";
Line 38... Line 48...
38
      public const string styleName_NumPara8    = "NumPara 8";
48
      public const string styleName_NumPara8    = "NumPara 8";
39
      public const string styleName_NumPara9    = "NumPara 9";
49
      public const string styleName_NumPara9    = "NumPara 9";
40
      public const string styleName_TableText   = "Table Text";
50
      public const string styleName_TableText   = "Table Text";
41
      public const string styleName_RefListNum  = "Reference List Number";
51
      public const string styleName_RefListNum  = "Reference List Number";
42
      public const string styleName_RefListText = "Reference List Text";
52
      public const string styleName_RefListText = "Reference List Text";
43
      public const string styleName_Normal      = "Normal"; 
53
      public const string styleName_Normal      = "Normal";
44
 
54
 
-
 
55
 
-
 
56
      // Names of special elements that control EA_DocGen's activities
45
      public const string EA_DocGenElementType  = "InformationItem";
57
      public const string EA_DocGenElementType  = "InformationItem";
46
      public const string EA_DocGenBaseName     = "EA_DocGen";
58
      public const string EA_DocGenBaseName     = "EA_DocGen";
47
      public const string EA_DocGenPackageLink  = "EA_DocGenPackageLink";
59
      public const string EA_DocGenPackageLink  = "EA_DocGenPackageLink";
48
      public const string EA_DocGenDiagramLink  = "EA_DocGenDiagramLink";
60
      public const string EA_DocGenDiagramLink  = "EA_DocGenDiagramLink";
49
      public const string EA_DocGenElementLink  = "EA_DocGenElementLink";
61
      public const string EA_DocGenElementLink  = "EA_DocGenElementLink";
Line 51... Line 63...
51
      public const string EA_DocGenText         = "EA_DocGenText";
63
      public const string EA_DocGenText         = "EA_DocGenText";
52
      public const string EA_DocGenTestLink     = "EA_DocGenTestLink";
64
      public const string EA_DocGenTestLink     = "EA_DocGenTestLink";
53
      public const string EA_DocGenTestTraceability   = "EA_DocGenTestTraceability";
65
      public const string EA_DocGenTestTraceability   = "EA_DocGenTestTraceability";
54
      public const string EA_DocGenRelationshipMatrix = "EA_DocGenRelationshipMatrix";
66
      public const string EA_DocGenRelationshipMatrix = "EA_DocGenRelationshipMatrix";
55
 
67
 
-
 
68
      // Name of stereotype of special EA_ReqPro element that must be ignored by EA_DocGen
56
      public const string stereotype_ReqProDB = "ReqProDB";
69
      public const string stereotype_ReqProDB = "ReqProDB";
57
 
70
 
58
 
71
 
-
 
72
      public const string maxRecursionDepthException = "Max Recursion Depth (9) Exceeded";
-
 
73
      public const int MAX_HEADING_LEVEL = 9;
-
 
74
 
59
		public EA_Constants()
75
		public EA_Constants()
60
		{
76
		{
61
		}
77
		}
62
 
78
 
63
 
79