| 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.
|
|
|
14 |
public const string styleName_ReqAppBody = "Requirements Approved Body";
|
|
|
15 |
public const string styleName_ReqAppHdr = "Requirements Approved Heading";
|
|
|
16 |
public const string styleName_ReqPropBody = "Requirements Proposed Body";
|
|
|
17 |
public const string styleName_ReqPropHdr = "Requirements Proposed Heading";
|
|
|
18 |
public const string styleName_ReqRejBody = "Requirements Rejected Body";
|
|
|
19 |
public const string styleName_ReqRejHdr = "Requirements Rejected Heading";
|
|
|
20 |
public const string styleName_ReqName = "Requirements Name";
|
|
|
21 |
public const string styleName_Body1 = "Body 1";
|
|
|
22 |
public const string styleName_Heading1 = "Heading 1";
|
|
|
23 |
public const string styleName_Heading2 = "Heading 2";
|
|
|
24 |
public const string styleName_Heading3 = "Heading 3";
|
|
|
25 |
public const string styleName_Heading4 = "Heading 4";
|
|
|
26 |
public const string styleName_Heading5 = "Heading 5";
|
|
|
27 |
public const string styleName_Heading6 = "Heading 6";
|
|
|
28 |
public const string styleName_Heading7 = "Heading 7";
|
|
|
29 |
public const string styleName_Heading8 = "Heading 8";
|
|
|
30 |
public const string styleName_Heading9 = "Heading 9";
|
|
|
31 |
public const string styleName_NumPara1 = "NumPara 1";
|
|
|
32 |
public const string styleName_NumPara2 = "NumPara 2";
|
|
|
33 |
public const string styleName_NumPara3 = "NumPara 3";
|
|
|
34 |
public const string styleName_NumPara4 = "NumPara 4";
|
|
|
35 |
public const string styleName_NumPara5 = "NumPara 5";
|
|
|
36 |
public const string styleName_NumPara6 = "NumPara 6";
|
|
|
37 |
public const string styleName_NumPara7 = "NumPara 7";
|
|
|
38 |
public const string styleName_NumPara8 = "NumPara 8";
|
|
|
39 |
public const string styleName_NumPara9 = "NumPara 9";
|
|
|
40 |
public const string styleName_TableText = "Table Text";
|
|
|
41 |
public const string styleName_RefListNum = "Reference List Number";
|
|
|
42 |
public const string styleName_RefListText = "Reference List Text";
|
|
|
43 |
public const string styleName_Normal = "Normal";
|
|
|
44 |
|
|
|
45 |
public const string EA_DocGenElementType = "InformationItem";
|
|
|
46 |
public const string EA_DocGenBaseName = "EA_DocGen";
|
|
|
47 |
public const string EA_DocGenPackageLink = "EA_DocGenPackageLink";
|
|
|
48 |
public const string EA_DocGenDiagramLink = "EA_DocGenDiagramLink";
|
|
|
49 |
public const string EA_DocGenElementLink = "EA_DocGenElementLink";
|
|
|
50 |
public const string EA_DocGenTable = "EA_DocGenTable";
|
|
|
51 |
public const string EA_DocGenText = "EA_DocGenText";
|
|
|
52 |
public const string EA_DocGenTestLink = "EA_DocGenTestLink";
|
|
|
53 |
public const string EA_DocGenTestTraceability = "EA_DocGenTestTraceability";
|
|
|
54 |
public const string EA_DocGenRelationshipMatrix = "EA_DocGenRelationshipMatrix";
|
|
|
55 |
|
|
|
56 |
public const string stereotype_ReqProDB = "ReqProDB";
|
|
|
57 |
|
|
|
58 |
|
|
|
59 |
public EA_Constants()
|
|
|
60 |
{
|
|
|
61 |
}
|
|
|
62 |
|
|
|
63 |
|
|
|
64 |
|
|
|
65 |
}
|
|
|
66 |
}
|