IKVM11  11
Java SE 11 Virtual Machine for .NET
Loading...
Searching...
No Matches
IKVM.Tools.Importer.MapXml.LdArga Class Referencesealed
Inheritance diagram for IKVM.Tools.Importer.MapXml.LdArga:
IKVM.Tools.Importer.MapXml.Instruction IKVM.Tools.Importer.MapXml.MapXmlElement

Static Public Member Functions

static new LdArga Read (XElement element)
 Reads the XML element into a new LdArga instance.
 
static void Load (LdArga inst, XElement element)
 Loads the XML element into the instruction.
 
- Static Public Member Functions inherited from IKVM.Tools.Importer.MapXml.Instruction
static Instruction Read (XElement element)
 Reads the XML element into a new InstructionList instance.
 

Properties

ushort ArgNum [get, set]
 
- Properties inherited from IKVM.Tools.Importer.MapXml.MapXmlElement
int LineNumber [get, set]
 Gets the line number in the source file where this element occurs.
 
int LinePosition [get, set]
 Gets the line position in the source file where this element occurs.
 

Additional Inherited Members

- Static Protected Member Functions inherited from IKVM.Tools.Importer.MapXml.MapXmlElement
static void Load (MapXmlElement e, XElement element)
 Loads the XML element into the instance.
 
- Package Functions inherited from IKVM.Tools.Importer.MapXml.Instruction

Detailed Description

Definition at line 33 of file LdArga.cs.

Member Function Documentation

◆ Load()

static void IKVM.Tools.Importer.MapXml.LdArga.Load ( LdArga inst,
XElement element )
static

Loads the XML element into the instruction.

Parameters
inst
element

Definition at line 53 of file LdArga.cs.

54 {
55 Load((Instruction)inst, element);
56 inst.ArgNum = (ushort)(int)element.Attribute("argNum");
57 }
IKVM.Runtime.ClassFile.Method.Instruction Instruction
Definition compiler.cs:44

◆ Read()

static new LdArga IKVM.Tools.Importer.MapXml.LdArga.Read ( XElement element)
static

Reads the XML element into a new LdArga instance.

Parameters
element
Returns

Definition at line 41 of file LdArga.cs.

42 {
43 var inst = new LdArga();
44 Load(inst, element);
45 return inst;
46 }

Property Documentation

◆ ArgNum

ushort IKVM.Tools.Importer.MapXml.LdArga.ArgNum
getset

Definition at line 59 of file LdArga.cs.

59{ get; set; }

The documentation for this class was generated from the following file: