diff options
Diffstat (limited to 'src/wixext/Tuples/ComPlusRoleForComponentTuple.cs')
-rw-r--r-- | src/wixext/Tuples/ComPlusRoleForComponentTuple.cs | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/src/wixext/Tuples/ComPlusRoleForComponentTuple.cs b/src/wixext/Tuples/ComPlusRoleForComponentTuple.cs index 8cf0b8d5..2d9968ee 100644 --- a/src/wixext/Tuples/ComPlusRoleForComponentTuple.cs +++ b/src/wixext/Tuples/ComPlusRoleForComponentTuple.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 ComPlusRoleForComponent = new IntermediateTupleDefinition( | 10 | public static readonly IntermediateSymbolDefinition ComPlusRoleForComponent = new IntermediateSymbolDefinition( |
11 | ComPlusTupleDefinitionType.ComPlusRoleForComponent.ToString(), | 11 | ComPlusSymbolDefinitionType.ComPlusRoleForComponent.ToString(), |
12 | new[] | 12 | new[] |
13 | { | 13 | { |
14 | new IntermediateFieldDefinition(nameof(ComPlusRoleForComponentTupleFields.ComPlusComponentRef), IntermediateFieldType.String), | 14 | new IntermediateFieldDefinition(nameof(ComPlusRoleForComponentSymbolFields.ComPlusComponentRef), IntermediateFieldType.String), |
15 | new IntermediateFieldDefinition(nameof(ComPlusRoleForComponentTupleFields.ApplicationRoleRef), IntermediateFieldType.String), | 15 | new IntermediateFieldDefinition(nameof(ComPlusRoleForComponentSymbolFields.ApplicationRoleRef), IntermediateFieldType.String), |
16 | new IntermediateFieldDefinition(nameof(ComPlusRoleForComponentTupleFields.ComponentRef), IntermediateFieldType.String), | 16 | new IntermediateFieldDefinition(nameof(ComPlusRoleForComponentSymbolFields.ComponentRef), IntermediateFieldType.String), |
17 | }, | 17 | }, |
18 | typeof(ComPlusRoleForComponentTuple)); | 18 | typeof(ComPlusRoleForComponentSymbol)); |
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 ComPlusRoleForComponentTupleFields | 26 | public enum ComPlusRoleForComponentSymbolFields |
27 | { | 27 | { |
28 | ComPlusComponentRef, | 28 | ComPlusComponentRef, |
29 | ApplicationRoleRef, | 29 | ApplicationRoleRef, |
30 | ComponentRef, | 30 | ComponentRef, |
31 | } | 31 | } |
32 | 32 | ||
33 | public class ComPlusRoleForComponentTuple : IntermediateTuple | 33 | public class ComPlusRoleForComponentSymbol : IntermediateSymbol |
34 | { | 34 | { |
35 | public ComPlusRoleForComponentTuple() : base(ComPlusTupleDefinitions.ComPlusRoleForComponent, null, null) | 35 | public ComPlusRoleForComponentSymbol() : base(ComPlusSymbolDefinitions.ComPlusRoleForComponent, null, null) |
36 | { | 36 | { |
37 | } | 37 | } |
38 | 38 | ||
39 | public ComPlusRoleForComponentTuple(SourceLineNumber sourceLineNumber, Identifier id = null) : base(ComPlusTupleDefinitions.ComPlusRoleForComponent, sourceLineNumber, id) | 39 | public ComPlusRoleForComponentSymbol(SourceLineNumber sourceLineNumber, Identifier id = null) : base(ComPlusSymbolDefinitions.ComPlusRoleForComponent, sourceLineNumber, id) |
40 | { | 40 | { |
41 | } | 41 | } |
42 | 42 | ||
43 | public IntermediateField this[ComPlusRoleForComponentTupleFields index] => this.Fields[(int)index]; | 43 | public IntermediateField this[ComPlusRoleForComponentSymbolFields index] => this.Fields[(int)index]; |
44 | 44 | ||
45 | public string ComPlusComponentRef | 45 | public string ComPlusComponentRef |
46 | { | 46 | { |
47 | get => this.Fields[(int)ComPlusRoleForComponentTupleFields.ComPlusComponentRef].AsString(); | 47 | get => this.Fields[(int)ComPlusRoleForComponentSymbolFields.ComPlusComponentRef].AsString(); |
48 | set => this.Set((int)ComPlusRoleForComponentTupleFields.ComPlusComponentRef, value); | 48 | set => this.Set((int)ComPlusRoleForComponentSymbolFields.ComPlusComponentRef, value); |
49 | } | 49 | } |
50 | 50 | ||
51 | public string ApplicationRoleRef | 51 | public string ApplicationRoleRef |
52 | { | 52 | { |
53 | get => this.Fields[(int)ComPlusRoleForComponentTupleFields.ApplicationRoleRef].AsString(); | 53 | get => this.Fields[(int)ComPlusRoleForComponentSymbolFields.ApplicationRoleRef].AsString(); |
54 | set => this.Set((int)ComPlusRoleForComponentTupleFields.ApplicationRoleRef, value); | 54 | set => this.Set((int)ComPlusRoleForComponentSymbolFields.ApplicationRoleRef, value); |
55 | } | 55 | } |
56 | 56 | ||
57 | public string ComponentRef | 57 | public string ComponentRef |
58 | { | 58 | { |
59 | get => this.Fields[(int)ComPlusRoleForComponentTupleFields.ComponentRef].AsString(); | 59 | get => this.Fields[(int)ComPlusRoleForComponentSymbolFields.ComponentRef].AsString(); |
60 | set => this.Set((int)ComPlusRoleForComponentTupleFields.ComponentRef, value); | 60 | set => this.Set((int)ComPlusRoleForComponentSymbolFields.ComponentRef, value); |
61 | } | 61 | } |
62 | } | 62 | } |
63 | } \ No newline at end of file | 63 | } \ No newline at end of file |