IKVM11
11
Java SE 11 Virtual Machine for .NET
Loading...
Searching...
No Matches
InstructionAttribute.cs
Go to the documentation of this file.
1
using
System
;
2
3
namespace
IKVM.Tools.Importer.MapXml
4
{
5
9
[AttributeUsage(AttributeTargets.Class)]
10
class
InstructionAttribute
:
System
.
Attribute
11
{
12
13
readonly
string
elementName;
14
20
public
InstructionAttribute
(
string
elementName)
21
{
22
this.elementName = elementName ??
throw
new
ArgumentNullException(nameof(elementName));
23
}
24
28
public
string
ElementName
=> elementName;
29
30
}
31
32
}
IKVM.Tools.Importer.MapXml.Attribute
Definition
Attribute.cs:32
IKVM.Tools.Importer.MapXml.InstructionAttribute
Describes a map XML instruction.
Definition
InstructionAttribute.cs:11
IKVM.Tools.Importer.MapXml.InstructionAttribute.ElementName
string ElementName
Gets the name of the XML element corresponding to the instruction.
Definition
InstructionAttribute.cs:28
IKVM.Tools.Importer.MapXml.InstructionAttribute.InstructionAttribute
InstructionAttribute(string elementName)
Initializes a new instance.
Definition
InstructionAttribute.cs:20
IKVM.Tools.Importer.MapXml
Definition
Add.cs:30
System
Definition
HexConverter.cs:9
src
IKVM.Tools.Importer
MapXml
InstructionAttribute.cs
Generated by
1.12.0