aboutsummaryrefslogtreecommitdiff
path: root/src/wixext/Tuples/ComPlusRoleForInterfaceTuple.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/wixext/Tuples/ComPlusRoleForInterfaceTuple.cs')
-rw-r--r--src/wixext/Tuples/ComPlusRoleForInterfaceTuple.cs40
1 files changed, 20 insertions, 20 deletions
diff --git a/src/wixext/Tuples/ComPlusRoleForInterfaceTuple.cs b/src/wixext/Tuples/ComPlusRoleForInterfaceTuple.cs
index c6c5ae6b..b77bd215 100644
--- a/src/wixext/Tuples/ComPlusRoleForInterfaceTuple.cs
+++ b/src/wixext/Tuples/ComPlusRoleForInterfaceTuple.cs
@@ -3,61 +3,61 @@
3namespace WixToolset.ComPlus 3namespace 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 ComPlusRoleForInterface = new IntermediateTupleDefinition( 10 public static readonly IntermediateSymbolDefinition ComPlusRoleForInterface = new IntermediateSymbolDefinition(
11 ComPlusTupleDefinitionType.ComPlusRoleForInterface.ToString(), 11 ComPlusSymbolDefinitionType.ComPlusRoleForInterface.ToString(),
12 new[] 12 new[]
13 { 13 {
14 new IntermediateFieldDefinition(nameof(ComPlusRoleForInterfaceTupleFields.InterfaceRef), IntermediateFieldType.String), 14 new IntermediateFieldDefinition(nameof(ComPlusRoleForInterfaceSymbolFields.InterfaceRef), IntermediateFieldType.String),
15 new IntermediateFieldDefinition(nameof(ComPlusRoleForInterfaceTupleFields.ApplicationRoleRef), IntermediateFieldType.String), 15 new IntermediateFieldDefinition(nameof(ComPlusRoleForInterfaceSymbolFields.ApplicationRoleRef), IntermediateFieldType.String),
16 new IntermediateFieldDefinition(nameof(ComPlusRoleForInterfaceTupleFields.ComponentRef), IntermediateFieldType.String), 16 new IntermediateFieldDefinition(nameof(ComPlusRoleForInterfaceSymbolFields.ComponentRef), IntermediateFieldType.String),
17 }, 17 },
18 typeof(ComPlusRoleForInterfaceTuple)); 18 typeof(ComPlusRoleForInterfaceSymbol));
19 } 19 }
20} 20}
21 21
22namespace WixToolset.ComPlus.Tuples 22namespace WixToolset.ComPlus.Symbols
23{ 23{
24 using WixToolset.Data; 24 using WixToolset.Data;
25 25
26 public enum ComPlusRoleForInterfaceTupleFields 26 public enum ComPlusRoleForInterfaceSymbolFields
27 { 27 {
28 InterfaceRef, 28 InterfaceRef,
29 ApplicationRoleRef, 29 ApplicationRoleRef,
30 ComponentRef, 30 ComponentRef,
31 } 31 }
32 32
33 public class ComPlusRoleForInterfaceTuple : IntermediateTuple 33 public class ComPlusRoleForInterfaceSymbol : IntermediateSymbol
34 { 34 {
35 public ComPlusRoleForInterfaceTuple() : base(ComPlusTupleDefinitions.ComPlusRoleForInterface, null, null) 35 public ComPlusRoleForInterfaceSymbol() : base(ComPlusSymbolDefinitions.ComPlusRoleForInterface, null, null)
36 { 36 {
37 } 37 }
38 38
39 public ComPlusRoleForInterfaceTuple(SourceLineNumber sourceLineNumber, Identifier id = null) : base(ComPlusTupleDefinitions.ComPlusRoleForInterface, sourceLineNumber, id) 39 public ComPlusRoleForInterfaceSymbol(SourceLineNumber sourceLineNumber, Identifier id = null) : base(ComPlusSymbolDefinitions.ComPlusRoleForInterface, sourceLineNumber, id)
40 { 40 {
41 } 41 }
42 42
43 public IntermediateField this[ComPlusRoleForInterfaceTupleFields index] => this.Fields[(int)index]; 43 public IntermediateField this[ComPlusRoleForInterfaceSymbolFields index] => this.Fields[(int)index];
44 44
45 public string InterfaceRef 45 public string InterfaceRef
46 { 46 {
47 get => this.Fields[(int)ComPlusRoleForInterfaceTupleFields.InterfaceRef].AsString(); 47 get => this.Fields[(int)ComPlusRoleForInterfaceSymbolFields.InterfaceRef].AsString();
48 set => this.Set((int)ComPlusRoleForInterfaceTupleFields.InterfaceRef, value); 48 set => this.Set((int)ComPlusRoleForInterfaceSymbolFields.InterfaceRef, value);
49 } 49 }
50 50
51 public string ApplicationRoleRef 51 public string ApplicationRoleRef
52 { 52 {
53 get => this.Fields[(int)ComPlusRoleForInterfaceTupleFields.ApplicationRoleRef].AsString(); 53 get => this.Fields[(int)ComPlusRoleForInterfaceSymbolFields.ApplicationRoleRef].AsString();
54 set => this.Set((int)ComPlusRoleForInterfaceTupleFields.ApplicationRoleRef, value); 54 set => this.Set((int)ComPlusRoleForInterfaceSymbolFields.ApplicationRoleRef, value);
55 } 55 }
56 56
57 public string ComponentRef 57 public string ComponentRef
58 { 58 {
59 get => this.Fields[(int)ComPlusRoleForInterfaceTupleFields.ComponentRef].AsString(); 59 get => this.Fields[(int)ComPlusRoleForInterfaceSymbolFields.ComponentRef].AsString();
60 set => this.Set((int)ComPlusRoleForInterfaceTupleFields.ComponentRef, value); 60 set => this.Set((int)ComPlusRoleForInterfaceSymbolFields.ComponentRef, value);
61 } 61 }
62 } 62 }
63} \ No newline at end of file 63} \ No newline at end of file