aboutsummaryrefslogtreecommitdiff
path: root/src/wixext/Tuples/WixBalBAFunctionsTuple.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/wixext/Tuples/WixBalBAFunctionsTuple.cs')
-rw-r--r--src/wixext/Tuples/WixBalBAFunctionsTuple.cs28
1 files changed, 14 insertions, 14 deletions
diff --git a/src/wixext/Tuples/WixBalBAFunctionsTuple.cs b/src/wixext/Tuples/WixBalBAFunctionsTuple.cs
index f753f239..19c7602d 100644
--- a/src/wixext/Tuples/WixBalBAFunctionsTuple.cs
+++ b/src/wixext/Tuples/WixBalBAFunctionsTuple.cs
@@ -3,45 +3,45 @@
3namespace WixToolset.Bal 3namespace WixToolset.Bal
4{ 4{
5 using WixToolset.Data; 5 using WixToolset.Data;
6 using WixToolset.Bal.Tuples; 6 using WixToolset.Bal.Symbols;
7 7
8 public static partial class BalTupleDefinitions 8 public static partial class BalSymbolDefinitions
9 { 9 {
10 public static readonly IntermediateTupleDefinition WixBalBAFunctions = new IntermediateTupleDefinition( 10 public static readonly IntermediateSymbolDefinition WixBalBAFunctions = new IntermediateSymbolDefinition(
11 BalTupleDefinitionType.WixBalBAFunctions.ToString(), 11 BalSymbolDefinitionType.WixBalBAFunctions.ToString(),
12 new[] 12 new[]
13 { 13 {
14 new IntermediateFieldDefinition(nameof(WixBalBAFunctionsTupleFields.PayloadId), IntermediateFieldType.String), 14 new IntermediateFieldDefinition(nameof(WixBalBAFunctionsSymbolFields.PayloadId), IntermediateFieldType.String),
15 }, 15 },
16 typeof(WixBalBAFunctionsTuple)); 16 typeof(WixBalBAFunctionsSymbol));
17 } 17 }
18} 18}
19 19
20namespace WixToolset.Bal.Tuples 20namespace WixToolset.Bal.Symbols
21{ 21{
22 using WixToolset.Data; 22 using WixToolset.Data;
23 23
24 public enum WixBalBAFunctionsTupleFields 24 public enum WixBalBAFunctionsSymbolFields
25 { 25 {
26 PayloadId, 26 PayloadId,
27 } 27 }
28 28
29 public class WixBalBAFunctionsTuple : IntermediateTuple 29 public class WixBalBAFunctionsSymbol : IntermediateSymbol
30 { 30 {
31 public WixBalBAFunctionsTuple() : base(BalTupleDefinitions.WixBalBAFunctions, null, null) 31 public WixBalBAFunctionsSymbol() : base(BalSymbolDefinitions.WixBalBAFunctions, null, null)
32 { 32 {
33 } 33 }
34 34
35 public WixBalBAFunctionsTuple(SourceLineNumber sourceLineNumber, Identifier id = null) : base(BalTupleDefinitions.WixBalBAFunctions, sourceLineNumber, id) 35 public WixBalBAFunctionsSymbol(SourceLineNumber sourceLineNumber, Identifier id = null) : base(BalSymbolDefinitions.WixBalBAFunctions, sourceLineNumber, id)
36 { 36 {
37 } 37 }
38 38
39 public IntermediateField this[WixBalBAFunctionsTupleFields index] => this.Fields[(int)index]; 39 public IntermediateField this[WixBalBAFunctionsSymbolFields index] => this.Fields[(int)index];
40 40
41 public string PayloadId 41 public string PayloadId
42 { 42 {
43 get => this.Fields[(int)WixBalBAFunctionsTupleFields.PayloadId].AsString(); 43 get => this.Fields[(int)WixBalBAFunctionsSymbolFields.PayloadId].AsString();
44 set => this.Set((int)WixBalBAFunctionsTupleFields.PayloadId, value); 44 set => this.Set((int)WixBalBAFunctionsSymbolFields.PayloadId, value);
45 } 45 }
46 } 46 }
47} \ No newline at end of file 47} \ No newline at end of file