aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/Tuples/WixPatchFamilyGroupTuple.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/WixToolset.Data/Tuples/WixPatchFamilyGroupTuple.cs28
1 files changed, 14 insertions, 14 deletions
diff --git a/src/WixToolset.Data/Tuples/WixPatchFamilyGroupTuple.cs b/src/WixToolset.Data/Tuples/WixPatchFamilyGroupTuple.cs
index d6df55bd..3ab34f1f 100644
--- a/src/WixToolset.Data/Tuples/WixPatchFamilyGroupTuple.cs
+++ b/src/WixToolset.Data/Tuples/WixPatchFamilyGroupTuple.cs
@@ -2,43 +2,43 @@
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 WixPatchFamilyGroup = new IntermediateTupleDefinition( 9 public static readonly IntermediateSymbolDefinition WixPatchFamilyGroup = new IntermediateSymbolDefinition(
10 TupleDefinitionType.WixPatchFamilyGroup, 10 SymbolDefinitionType.WixPatchFamilyGroup,
11 new[] 11 new[]
12 { 12 {
13 new IntermediateFieldDefinition(nameof(WixPatchFamilyGroupTupleFields.WixPatchFamilyGroup), IntermediateFieldType.String), 13 new IntermediateFieldDefinition(nameof(WixPatchFamilyGroupSymbolFields.WixPatchFamilyGroup), IntermediateFieldType.String),
14 }, 14 },
15 typeof(WixPatchFamilyGroupTuple)); 15 typeof(WixPatchFamilyGroupSymbol));
16 } 16 }
17} 17}
18 18
19namespace WixToolset.Data.Tuples 19namespace WixToolset.Data.Symbols
20{ 20{
21 public enum WixPatchFamilyGroupTupleFields 21 public enum WixPatchFamilyGroupSymbolFields
22 { 22 {
23 WixPatchFamilyGroup, 23 WixPatchFamilyGroup,
24 } 24 }
25 25
26 public class WixPatchFamilyGroupTuple : IntermediateTuple 26 public class WixPatchFamilyGroupSymbol : IntermediateSymbol
27 { 27 {
28 public WixPatchFamilyGroupTuple() : base(TupleDefinitions.WixPatchFamilyGroup, null, null) 28 public WixPatchFamilyGroupSymbol() : base(SymbolDefinitions.WixPatchFamilyGroup, null, null)
29 { 29 {
30 } 30 }
31 31
32 public WixPatchFamilyGroupTuple(SourceLineNumber sourceLineNumber, Identifier id = null) : base(TupleDefinitions.WixPatchFamilyGroup, sourceLineNumber, id) 32 public WixPatchFamilyGroupSymbol(SourceLineNumber sourceLineNumber, Identifier id = null) : base(SymbolDefinitions.WixPatchFamilyGroup, sourceLineNumber, id)
33 { 33 {
34 } 34 }
35 35
36 public IntermediateField this[WixPatchFamilyGroupTupleFields index] => this.Fields[(int)index]; 36 public IntermediateField this[WixPatchFamilyGroupSymbolFields index] => this.Fields[(int)index];
37 37
38 public string WixPatchFamilyGroup 38 public string WixPatchFamilyGroup
39 { 39 {
40 get => (string)this.Fields[(int)WixPatchFamilyGroupTupleFields.WixPatchFamilyGroup]; 40 get => (string)this.Fields[(int)WixPatchFamilyGroupSymbolFields.WixPatchFamilyGroup];
41 set => this.Set((int)WixPatchFamilyGroupTupleFields.WixPatchFamilyGroup, value); 41 set => this.Set((int)WixPatchFamilyGroupSymbolFields.WixPatchFamilyGroup, value);
42 } 42 }
43 } 43 }
44} \ No newline at end of file 44} \ No newline at end of file