Subversion Repositories DevTools

Rev

Rev 2094 | Rev 2104 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2094 ghuddy 1
using System;
2
 
3
namespace EA_DocGen
4
{
5
	/// <summary>
6
	/// Summary description for EA_Constants.
7
	/// </summary>
8
	public class EA_Constants
9
	{
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
12
      // exist. The reason for this is that as of writing this add-in, they do not exist in the ERG
13
      // standard template.
2098 ghuddy 14
 
15
      // Style names created programmatically if necessary
2094 ghuddy 16
      public const string styleName_ReqAppBody  = "Requirements Approved Body";
17
      public const string styleName_ReqAppHdr   = "Requirements Approved Heading";
18
      public const string styleName_ReqPropBody = "Requirements Proposed Body";
19
      public const string styleName_ReqPropHdr  = "Requirements Proposed Heading";
20
      public const string styleName_ReqRejBody  = "Requirements Rejected Body";
21
      public const string styleName_ReqRejHdr   = "Requirements Rejected Heading";
22
      public const string styleName_ReqName     = "Requirements Name";
2098 ghuddy 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
2094 ghuddy 31
      public const string styleName_Body1       = "Body 1";
32
      public const string styleName_Heading1    = "Heading 1";
33
      public const string styleName_Heading2    = "Heading 2";
34
      public const string styleName_Heading3    = "Heading 3";
35
      public const string styleName_Heading4    = "Heading 4";
36
      public const string styleName_Heading5    = "Heading 5";
37
      public const string styleName_Heading6    = "Heading 6";
38
      public const string styleName_Heading7    = "Heading 7";
39
      public const string styleName_Heading8    = "Heading 8";
40
      public const string styleName_Heading9    = "Heading 9";
41
      public const string styleName_NumPara1    = "NumPara 1";
42
      public const string styleName_NumPara2    = "NumPara 2";
43
      public const string styleName_NumPara3    = "NumPara 3";
44
      public const string styleName_NumPara4    = "NumPara 4";
45
      public const string styleName_NumPara5    = "NumPara 5";
46
      public const string styleName_NumPara6    = "NumPara 6";
47
      public const string styleName_NumPara7    = "NumPara 7";
48
      public const string styleName_NumPara8    = "NumPara 8";
49
      public const string styleName_NumPara9    = "NumPara 9";
50
      public const string styleName_TableText   = "Table Text";
51
      public const string styleName_RefListNum  = "Reference List Number";
52
      public const string styleName_RefListText = "Reference List Text";
2098 ghuddy 53
      public const string styleName_Normal      = "Normal";
2094 ghuddy 54
 
2098 ghuddy 55
 
56
      // Names of special elements that control EA_DocGen's activities
2094 ghuddy 57
      public const string EA_DocGenElementType  = "InformationItem";
58
      public const string EA_DocGenBaseName     = "EA_DocGen";
59
      public const string EA_DocGenPackageLink  = "EA_DocGenPackageLink";
60
      public const string EA_DocGenDiagramLink  = "EA_DocGenDiagramLink";
61
      public const string EA_DocGenElementLink  = "EA_DocGenElementLink";
62
      public const string EA_DocGenTable        = "EA_DocGenTable";
63
      public const string EA_DocGenText         = "EA_DocGenText";
64
      public const string EA_DocGenTestLink     = "EA_DocGenTestLink";
65
      public const string EA_DocGenTestTraceability   = "EA_DocGenTestTraceability";
66
      public const string EA_DocGenRelationshipMatrix = "EA_DocGenRelationshipMatrix";
67
 
2098 ghuddy 68
      // Name of stereotype of special EA_ReqPro element that must be ignored by EA_DocGen
2094 ghuddy 69
      public const string stereotype_ReqProDB = "ReqProDB";
70
 
71
 
2098 ghuddy 72
      public const string maxRecursionDepthException = "Max Recursion Depth (9) Exceeded";
73
      public const int MAX_HEADING_LEVEL = 9;
74
 
2094 ghuddy 75
		public EA_Constants()
76
		{
77
		}
78
 
79
 
80
 
81
	}
82
}