-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathPathBuilderConstants.cs
More file actions
109 lines (86 loc) · 3.49 KB
/
PathBuilderConstants.cs
File metadata and controls
109 lines (86 loc) · 3.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
//*****************************************************************************
//* Code Factory SDK
//* Copyright (c) 2020-2023 CodeFactory, LLC
//*****************************************************************************
// ReSharper disable InconsistentNaming
namespace CodeFactory.DotNet
{
/// <summary>
/// Data constants that are used when building the unique path for a dot net model.
/// </summary>
public static class PathBuilderConstants
{
/// <summary>
/// Definition of the source entry point that holds all dot net models.
/// </summary>
public const string Source = "//SRC:";
/// <summary>
/// Definition of a namespace path for a dot net model.
/// </summary>
public const string Namespace = "/NS:";
/// <summary>
/// Reference to a namespace that is used in a dot net model.
/// </summary>
public const string NamespaceReference = "/NSREF:";
/// <summary>
/// Definition of a attribute model in the path for a dot net model.
/// </summary>
public const string Attribute = "/A:";
/// <summary>
/// Definition of a class model in the path for a dot net model.
/// </summary>
public const string Class = "/C:";
/// <summary>
/// Definition of a interface model in the path for a dot net model.
/// </summary>
public const string Interface = "/I:";
/// <summary>
/// Definition of a structure model in the path for a dot net model.
/// </summary>
public const string Structure = "/S:";
/// <summary>
/// Definition of a delegate model in the path for a dot net model.
/// </summary>
public const string Delegate = "/D:";
/// <summary>
/// Definition of a field model in the path for a dot net model.
/// </summary>
public const string Field = "/F:";
/// <summary>
/// Definition of a property model in the path for a dot net model.
/// </summary>
public const string Property = "/P:";
/// <summary>
/// Definition of a method model in the path for a dot net model.
/// </summary>
public const string Method = "/M:";
/// <summary>
/// Definition of a parameter model in the path for a dot net model.
/// </summary>
public const string Parameter = "/PARM:";
/// <summary>
/// Definition of a parameter model default value in the path for a dot net model.
/// </summary>
public const string ParameterDefaultValue = "/PARMDV:";
/// <summary>
/// Definition of a event model in the path for a dot net model.
/// </summary>
public const string Event = "/E:";
/// <summary>
/// Definition of a enumeration model in the path for a dot net model.
/// </summary>
public const string Enum = "/EN:";
/// <summary>
/// Definition of a enumeration value model in the path for a dot net model.
/// </summary>
public const string EnumValue = "/ENV:";
/// <summary>
/// Definition of a record model in the path of a dot net model.
/// </summary>
public const string Record = "/R:";
/// <summary>
/// Definition of a record structure model in the path of a dot net model.
/// </summary>
public const string RecordStructure = "/RS:";
}
}