|
7 | 7 | *
|
8 | 8 | */
|
9 | 9 |
|
10 |
| -using System; |
11 |
| -using System.Collections.Generic; |
12 |
| -using System.Linq; |
13 |
| -using System.Text; |
14 |
| -using System.Threading.Tasks; |
15 |
| - |
16 | 10 | namespace MTIP.Constants
|
17 | 11 | {
|
18 |
| - public class ActivityConstants |
| 12 | + public static class ActivityConstants |
19 | 13 | {
|
20 |
| - public string acceptEventAction; |
21 |
| - public string action; |
22 |
| - public string actionPin; |
23 |
| - public string activity; |
24 |
| - public string activityParameter; |
25 |
| - public string activityPartion; |
26 |
| - public string callBehaviorAction; |
27 |
| - public string callOperationAction; |
28 |
| - public string centralBufferNode; |
29 |
| - public string change; |
30 |
| - public string conditionalNode; |
31 |
| - public string createObjectAction; |
32 |
| - public string decision; |
33 |
| - public string destroyObjectAction; |
34 |
| - public string eventType; |
35 |
| - public string forkNode; |
36 |
| - public string informationItem; |
37 |
| - public string interruptibleActivityRegion; |
38 |
| - public string mergeNode; |
39 |
| - public string objectNode; |
40 |
| - public string property; |
41 |
| - public string sendSignalAction; |
42 |
| - public string stateNode; |
43 |
| - public string synchronization; |
44 |
| - |
45 |
| - |
46 |
| - public ActivityConstants(){ |
47 |
| - acceptEventAction = "AcceptEventAction"; |
48 |
| - action = "Action"; |
49 |
| - actionPin = "ActionPin"; |
50 |
| - activity = "Activity"; |
51 |
| - activityParameter = "ActivityParameter"; |
52 |
| - activityPartion = "ActivityPartition"; |
53 |
| - callBehaviorAction = "CallBehaviorAction"; |
54 |
| - callOperationAction = "CallOperationAction"; |
55 |
| - centralBufferNode = "CentralBufferNode"; |
56 |
| - change = "Change"; |
57 |
| - conditionalNode = "ConditionalNode"; |
58 |
| - createObjectAction = "CreateObjectAction"; |
59 |
| - decision = "Decision"; |
60 |
| - destroyObjectAction = "DestroyObjectAction"; |
61 |
| - eventType = "Event"; |
62 |
| - forkNode = "ForkNode"; |
63 |
| - informationItem = "InformationItem"; |
64 |
| - interruptibleActivityRegion = "InterruptibleActivityRegion"; |
65 |
| - mergeNode = "MergeNode"; |
66 |
| - objectNode = "ObjectNode"; |
67 |
| - property = "Property"; |
68 |
| - sendSignalAction = "SendSignalAction"; |
69 |
| - stateNode = "StateNode"; |
70 |
| - synchronization = "Synchronization"; |
71 |
| - } |
| 14 | + public const string ACCEPTEVENTACTION = "AcceptEventAction"; |
| 15 | + public const string ACTION = "Action"; |
| 16 | + public const string ACTIONPIN = "ActionPin"; |
| 17 | + public const string ACTIVITY = "Activity"; |
| 18 | + public const string ACTIVITYPARAMETER = "ActivityParameter"; |
| 19 | + public const string ACTIVITYPARTION = "ActivityPartition"; |
| 20 | + public const string CALLBEHAVIORACTION = "CallBehaviorAction"; |
| 21 | + public const string CALLOPERATIONACTION = "CallOperationAction"; |
| 22 | + public const string CENTRALBUFFERNODE = "CentralBufferNode"; |
| 23 | + public const string CHANGE = "Change"; |
| 24 | + public const string CONDITIONALNODE = "ConditionalNode"; |
| 25 | + public const string CREATEOBJECTACTION = "CreateObjectAction"; |
| 26 | + public const string DECISION = "Decision"; |
| 27 | + public const string DESTROYOBJECTACTION = "DestroyObjectAction"; |
| 28 | + public const string EVENTTYPE = "Event"; |
| 29 | + public const string FORKNODE = "ForkNode"; |
| 30 | + public const string INFORMATIONITEM = "InformationItem"; |
| 31 | + public const string INTERRUPTIBLEACTIVITYREGION = "InterruptibleActivityRegion"; |
| 32 | + public const string MERGENODE = "MergeNode"; |
| 33 | + public const string OBJECTNODE = "ObjectNode"; |
| 34 | + public const string PROPERTY = "Property"; |
| 35 | + public const string SENDSIGNALACTION = "SendSignalAction"; |
| 36 | + public const string STATENODE = "StateNode"; |
| 37 | + public const string SYNCHRONIZATION = "Synchronization"; |
72 | 38 | }
|
73 | 39 | }
|
| 40 | + |
0 commit comments