aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/Tuples/WixBundleCustomDataCellTuple.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Data/Tuples/WixBundleCustomDataCellTuple.cs')
-rw-r--r--src/WixToolset.Data/Tuples/WixBundleCustomDataCellTuple.cs46
1 files changed, 23 insertions, 23 deletions
diff --git a/src/WixToolset.Data/Tuples/WixBundleCustomDataCellTuple.cs b/src/WixToolset.Data/Tuples/WixBundleCustomDataCellTuple.cs
index d488d6d0..0488969a 100644
--- a/src/WixToolset.Data/Tuples/WixBundleCustomDataCellTuple.cs
+++ b/src/WixToolset.Data/Tuples/WixBundleCustomDataCellTuple.cs
@@ -2,26 +2,26 @@
2 2
3namespace WixToolset.Data 3namespace WixToolset.Data
4{ 4{
5 using WixToolset.Data.Tuples; 5 using WixToolset.Data.Symbols;
6 6
7 public static partial class TupleDefinitions 7 public static partial class SymbolDefinitions
8 { 8 {
9 public static readonly IntermediateTupleDefinition WixBundleCustomDataCell = new IntermediateTupleDefinition( 9 public static readonly IntermediateSymbolDefinition WixBundleCustomDataCell = new IntermediateSymbolDefinition(
10 TupleDefinitionType.WixBundleCustomDataCell, 10 SymbolDefinitionType.WixBundleCustomDataCell,
11 new[] 11 new[]
12 { 12 {
13 new IntermediateFieldDefinition(nameof(WixBundleCustomDataCellTupleFields.CustomDataRef), IntermediateFieldType.String), 13 new IntermediateFieldDefinition(nameof(WixBundleCustomDataCellSymbolFields.CustomDataRef), IntermediateFieldType.String),
14 new IntermediateFieldDefinition(nameof(WixBundleCustomDataCellTupleFields.AttributeRef), IntermediateFieldType.String), 14 new IntermediateFieldDefinition(nameof(WixBundleCustomDataCellSymbolFields.AttributeRef), IntermediateFieldType.String),
15 new IntermediateFieldDefinition(nameof(WixBundleCustomDataCellTupleFields.ElementId), IntermediateFieldType.String), 15 new IntermediateFieldDefinition(nameof(WixBundleCustomDataCellSymbolFields.ElementId), IntermediateFieldType.String),
16 new IntermediateFieldDefinition(nameof(WixBundleCustomDataCellTupleFields.Value), IntermediateFieldType.String), 16 new IntermediateFieldDefinition(nameof(WixBundleCustomDataCellSymbolFields.Value), IntermediateFieldType.String),
17 }, 17 },
18 typeof(WixBundleCustomDataCellTuple)); 18 typeof(WixBundleCustomDataCellSymbol));
19 } 19 }
20} 20}
21 21
22namespace WixToolset.Data.Tuples 22namespace WixToolset.Data.Symbols
23{ 23{
24 public enum WixBundleCustomDataCellTupleFields 24 public enum WixBundleCustomDataCellSymbolFields
25 { 25 {
26 CustomDataRef, 26 CustomDataRef,
27 AttributeRef, 27 AttributeRef,
@@ -29,40 +29,40 @@ namespace WixToolset.Data.Tuples
29 Value, 29 Value,
30 } 30 }
31 31
32 public class WixBundleCustomDataCellTuple : IntermediateTuple 32 public class WixBundleCustomDataCellSymbol : IntermediateSymbol
33 { 33 {
34 public WixBundleCustomDataCellTuple() : base(TupleDefinitions.WixBundleCustomDataCell, null, null) 34 public WixBundleCustomDataCellSymbol() : base(SymbolDefinitions.WixBundleCustomDataCell, null, null)
35 { 35 {
36 } 36 }
37 37
38 public WixBundleCustomDataCellTuple(SourceLineNumber sourceLineNumber, Identifier id = null) : base(TupleDefinitions.WixBundleCustomDataCell, sourceLineNumber, id) 38 public WixBundleCustomDataCellSymbol(SourceLineNumber sourceLineNumber, Identifier id = null) : base(SymbolDefinitions.WixBundleCustomDataCell, sourceLineNumber, id)
39 { 39 {
40 } 40 }
41 41
42 public IntermediateField this[WixBundleCustomDataCellTupleFields index] => this.Fields[(int)index]; 42 public IntermediateField this[WixBundleCustomDataCellSymbolFields index] => this.Fields[(int)index];
43 43
44 public string CustomDataRef 44 public string CustomDataRef
45 { 45 {
46 get => (string)this.Fields[(int)WixBundleCustomDataCellTupleFields.CustomDataRef]; 46 get => (string)this.Fields[(int)WixBundleCustomDataCellSymbolFields.CustomDataRef];
47 set => this.Set((int)WixBundleCustomDataCellTupleFields.CustomDataRef, value); 47 set => this.Set((int)WixBundleCustomDataCellSymbolFields.CustomDataRef, value);
48 } 48 }
49 49
50 public string AttributeRef 50 public string AttributeRef
51 { 51 {
52 get => (string)this.Fields[(int)WixBundleCustomDataCellTupleFields.AttributeRef]; 52 get => (string)this.Fields[(int)WixBundleCustomDataCellSymbolFields.AttributeRef];
53 set => this.Set((int)WixBundleCustomDataCellTupleFields.AttributeRef, value); 53 set => this.Set((int)WixBundleCustomDataCellSymbolFields.AttributeRef, value);
54 } 54 }
55 55
56 public string ElementId 56 public string ElementId
57 { 57 {
58 get => (string)this.Fields[(int)WixBundleCustomDataCellTupleFields.ElementId]; 58 get => (string)this.Fields[(int)WixBundleCustomDataCellSymbolFields.ElementId];
59 set => this.Set((int)WixBundleCustomDataCellTupleFields.ElementId, value); 59 set => this.Set((int)WixBundleCustomDataCellSymbolFields.ElementId, value);
60 } 60 }
61 61
62 public string Value 62 public string Value
63 { 63 {
64 get => (string)this.Fields[(int)WixBundleCustomDataCellTupleFields.Value]; 64 get => (string)this.Fields[(int)WixBundleCustomDataCellSymbolFields.Value];
65 set => this.Set((int)WixBundleCustomDataCellTupleFields.Value, value); 65 set => this.Set((int)WixBundleCustomDataCellSymbolFields.Value, value);
66 } 66 }
67 } 67 }
68} 68}