diff options
| author | Rob Mensching <rob@firegiant.com> | 2020-06-27 02:38:04 -0700 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2020-06-27 02:41:57 -0700 |
| commit | 0e893c29361702470b84ced8d43929ae70a4a9ea (patch) | |
| tree | 30f6c0f9033795f0e798d5503931abdf416013c0 /src/wixext/Tuples/ComPlusPartitionUserTuple.cs | |
| parent | 1b4d8735b5778a144036c34176001fc641deee82 (diff) | |
| download | wix-0e893c29361702470b84ced8d43929ae70a4a9ea.tar.gz wix-0e893c29361702470b84ced8d43929ae70a4a9ea.tar.bz2 wix-0e893c29361702470b84ced8d43929ae70a4a9ea.zip | |
The Great Tuple to Symbol Rename (tm)
Diffstat (limited to 'src/wixext/Tuples/ComPlusPartitionUserTuple.cs')
| -rw-r--r-- | src/wixext/Tuples/ComPlusPartitionUserTuple.cs | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/src/wixext/Tuples/ComPlusPartitionUserTuple.cs b/src/wixext/Tuples/ComPlusPartitionUserTuple.cs index 052b1746..c4d52f54 100644 --- a/src/wixext/Tuples/ComPlusPartitionUserTuple.cs +++ b/src/wixext/Tuples/ComPlusPartitionUserTuple.cs | |||
| @@ -3,61 +3,61 @@ | |||
| 3 | namespace WixToolset.ComPlus | 3 | namespace WixToolset.ComPlus |
| 4 | { | 4 | { |
| 5 | using WixToolset.Data; | 5 | using WixToolset.Data; |
| 6 | using WixToolset.ComPlus.Tuples; | 6 | using WixToolset.ComPlus.Symbols; |
| 7 | 7 | ||
| 8 | public static partial class ComPlusTupleDefinitions | 8 | public static partial class ComPlusSymbolDefinitions |
| 9 | { | 9 | { |
| 10 | public static readonly IntermediateTupleDefinition ComPlusPartitionUser = new IntermediateTupleDefinition( | 10 | public static readonly IntermediateSymbolDefinition ComPlusPartitionUser = new IntermediateSymbolDefinition( |
| 11 | ComPlusTupleDefinitionType.ComPlusPartitionUser.ToString(), | 11 | ComPlusSymbolDefinitionType.ComPlusPartitionUser.ToString(), |
| 12 | new[] | 12 | new[] |
| 13 | { | 13 | { |
| 14 | new IntermediateFieldDefinition(nameof(ComPlusPartitionUserTupleFields.PartitionRef), IntermediateFieldType.String), | 14 | new IntermediateFieldDefinition(nameof(ComPlusPartitionUserSymbolFields.PartitionRef), IntermediateFieldType.String), |
| 15 | new IntermediateFieldDefinition(nameof(ComPlusPartitionUserTupleFields.ComponentRef), IntermediateFieldType.String), | 15 | new IntermediateFieldDefinition(nameof(ComPlusPartitionUserSymbolFields.ComponentRef), IntermediateFieldType.String), |
| 16 | new IntermediateFieldDefinition(nameof(ComPlusPartitionUserTupleFields.UserRef), IntermediateFieldType.String), | 16 | new IntermediateFieldDefinition(nameof(ComPlusPartitionUserSymbolFields.UserRef), IntermediateFieldType.String), |
| 17 | }, | 17 | }, |
| 18 | typeof(ComPlusPartitionUserTuple)); | 18 | typeof(ComPlusPartitionUserSymbol)); |
| 19 | } | 19 | } |
| 20 | } | 20 | } |
| 21 | 21 | ||
| 22 | namespace WixToolset.ComPlus.Tuples | 22 | namespace WixToolset.ComPlus.Symbols |
| 23 | { | 23 | { |
| 24 | using WixToolset.Data; | 24 | using WixToolset.Data; |
| 25 | 25 | ||
| 26 | public enum ComPlusPartitionUserTupleFields | 26 | public enum ComPlusPartitionUserSymbolFields |
| 27 | { | 27 | { |
| 28 | PartitionRef, | 28 | PartitionRef, |
| 29 | ComponentRef, | 29 | ComponentRef, |
| 30 | UserRef, | 30 | UserRef, |
| 31 | } | 31 | } |
| 32 | 32 | ||
| 33 | public class ComPlusPartitionUserTuple : IntermediateTuple | 33 | public class ComPlusPartitionUserSymbol : IntermediateSymbol |
| 34 | { | 34 | { |
| 35 | public ComPlusPartitionUserTuple() : base(ComPlusTupleDefinitions.ComPlusPartitionUser, null, null) | 35 | public ComPlusPartitionUserSymbol() : base(ComPlusSymbolDefinitions.ComPlusPartitionUser, null, null) |
| 36 | { | 36 | { |
| 37 | } | 37 | } |
| 38 | 38 | ||
| 39 | public ComPlusPartitionUserTuple(SourceLineNumber sourceLineNumber, Identifier id = null) : base(ComPlusTupleDefinitions.ComPlusPartitionUser, sourceLineNumber, id) | 39 | public ComPlusPartitionUserSymbol(SourceLineNumber sourceLineNumber, Identifier id = null) : base(ComPlusSymbolDefinitions.ComPlusPartitionUser, sourceLineNumber, id) |
| 40 | { | 40 | { |
| 41 | } | 41 | } |
| 42 | 42 | ||
| 43 | public IntermediateField this[ComPlusPartitionUserTupleFields index] => this.Fields[(int)index]; | 43 | public IntermediateField this[ComPlusPartitionUserSymbolFields index] => this.Fields[(int)index]; |
| 44 | 44 | ||
| 45 | public string PartitionRef | 45 | public string PartitionRef |
| 46 | { | 46 | { |
| 47 | get => this.Fields[(int)ComPlusPartitionUserTupleFields.PartitionRef].AsString(); | 47 | get => this.Fields[(int)ComPlusPartitionUserSymbolFields.PartitionRef].AsString(); |
| 48 | set => this.Set((int)ComPlusPartitionUserTupleFields.PartitionRef, value); | 48 | set => this.Set((int)ComPlusPartitionUserSymbolFields.PartitionRef, value); |
| 49 | } | 49 | } |
| 50 | 50 | ||
| 51 | public string ComponentRef | 51 | public string ComponentRef |
| 52 | { | 52 | { |
| 53 | get => this.Fields[(int)ComPlusPartitionUserTupleFields.ComponentRef].AsString(); | 53 | get => this.Fields[(int)ComPlusPartitionUserSymbolFields.ComponentRef].AsString(); |
| 54 | set => this.Set((int)ComPlusPartitionUserTupleFields.ComponentRef, value); | 54 | set => this.Set((int)ComPlusPartitionUserSymbolFields.ComponentRef, value); |
| 55 | } | 55 | } |
| 56 | 56 | ||
| 57 | public string UserRef | 57 | public string UserRef |
| 58 | { | 58 | { |
| 59 | get => this.Fields[(int)ComPlusPartitionUserTupleFields.UserRef].AsString(); | 59 | get => this.Fields[(int)ComPlusPartitionUserSymbolFields.UserRef].AsString(); |
| 60 | set => this.Set((int)ComPlusPartitionUserTupleFields.UserRef, value); | 60 | set => this.Set((int)ComPlusPartitionUserSymbolFields.UserRef, value); |
| 61 | } | 61 | } |
| 62 | } | 62 | } |
| 63 | } \ No newline at end of file | 63 | } \ No newline at end of file |
