Subversion Repositories DevTools

Rev

Rev 2104 | Rev 2126 | 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";
2104 ghuddy 41
      public const string styleName_Heading10OrAbove = "Heading 10 Or Above";
42
 
2116 ghuddy 43
      public const string styleName_NumPara1    = "NumPara 1";
44
      public const string styleName_NumPara2    = "NumPara 2";
45
      public const string styleName_NumPara3    = "NumPara 3";
46
      public const string styleName_NumPara4    = "NumPara 4";
47
      public const string styleName_NumPara5    = "NumPara 5";
48
      public const string styleName_NumPara6    = "NumPara 6";
49
      public const string styleName_NumPara7    = "NumPara 7";
50
      public const string styleName_NumPara8    = "NumPara 8";
51
      public const string styleName_NumPara9    = "NumPara 9";
52
      public const string styleName_NumPara10OrAbove = "NumPara 10 Or Above";
53
 
2094 ghuddy 54
      public const string styleName_TableText   = "Table Text";
55
      public const string styleName_RefListNum  = "Reference List Number";
56
      public const string styleName_RefListText = "Reference List Text";
2098 ghuddy 57
      public const string styleName_Normal      = "Normal";
2094 ghuddy 58
 
2098 ghuddy 59
 
60
      // Names of special elements that control EA_DocGen's activities
2094 ghuddy 61
      public const string EA_DocGenElementType  = "InformationItem";
62
      public const string EA_DocGenBaseName     = "EA_DocGen";
63
      public const string EA_DocGenPackageLink  = "EA_DocGenPackageLink";
64
      public const string EA_DocGenDiagramLink  = "EA_DocGenDiagramLink";
65
      public const string EA_DocGenElementLink  = "EA_DocGenElementLink";
2104 ghuddy 66
      public const string EA_DocGenNameLink     = "EA_DocGenNameLink";
2094 ghuddy 67
      public const string EA_DocGenTable        = "EA_DocGenTable";
68
      public const string EA_DocGenText         = "EA_DocGenText";
69
      public const string EA_DocGenTestLink     = "EA_DocGenTestLink";
70
      public const string EA_DocGenTestTraceability   = "EA_DocGenTestTraceability";
71
      public const string EA_DocGenRelationshipMatrix = "EA_DocGenRelationshipMatrix";
72
 
2098 ghuddy 73
      // Name of stereotype of special EA_ReqPro element that must be ignored by EA_DocGen
2094 ghuddy 74
      public const string stereotype_ReqProDB = "ReqProDB";
75
 
76
 
2104 ghuddy 77
      public const string maxRecursionDepthException = "Max Recursion Depth (20) Exceeded";
78
      public const int MAX_HEADING_LEVEL = 20;
2098 ghuddy 79
 
2094 ghuddy 80
		public EA_Constants()
81
		{
82
		}
83
 
84
 
85
 
86
	}
87
}