Subversion Repositories DevTools

Rev

Rev 2098 | Rev 2116 | 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
 
2094 ghuddy 43
      public const string styleName_TableText   = "Table Text";
44
      public const string styleName_RefListNum  = "Reference List Number";
45
      public const string styleName_RefListText = "Reference List Text";
2098 ghuddy 46
      public const string styleName_Normal      = "Normal";
2094 ghuddy 47
 
2098 ghuddy 48
 
49
      // Names of special elements that control EA_DocGen's activities
2094 ghuddy 50
      public const string EA_DocGenElementType  = "InformationItem";
51
      public const string EA_DocGenBaseName     = "EA_DocGen";
52
      public const string EA_DocGenPackageLink  = "EA_DocGenPackageLink";
53
      public const string EA_DocGenDiagramLink  = "EA_DocGenDiagramLink";
54
      public const string EA_DocGenElementLink  = "EA_DocGenElementLink";
2104 ghuddy 55
      public const string EA_DocGenNameLink     = "EA_DocGenNameLink";
2094 ghuddy 56
      public const string EA_DocGenTable        = "EA_DocGenTable";
57
      public const string EA_DocGenText         = "EA_DocGenText";
58
      public const string EA_DocGenTestLink     = "EA_DocGenTestLink";
59
      public const string EA_DocGenTestTraceability   = "EA_DocGenTestTraceability";
60
      public const string EA_DocGenRelationshipMatrix = "EA_DocGenRelationshipMatrix";
61
 
2098 ghuddy 62
      // Name of stereotype of special EA_ReqPro element that must be ignored by EA_DocGen
2094 ghuddy 63
      public const string stereotype_ReqProDB = "ReqProDB";
64
 
65
 
2104 ghuddy 66
      public const string maxRecursionDepthException = "Max Recursion Depth (20) Exceeded";
67
      public const int MAX_HEADING_LEVEL = 20;
2098 ghuddy 68
 
2094 ghuddy 69
		public EA_Constants()
70
		{
71
		}
72
 
73
 
74
 
75
	}
76
}