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

Static Public Member Functions

static new Ldtoken Read (XElement element)
 Reads the XML element into a new Ldtoken instance.
 
static void Load (Ldtoken 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

string Type [get, set]
 
string Class [get, set]
 
string Method [get, set]
 
string Field [get, set]
 
string Sig [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 39 of file Ldtoken.cs.

Member Function Documentation

◆ Load()

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

Loads the XML element into the instruction.

Parameters
inst
element

Definition at line 59 of file Ldtoken.cs.

60 {
61 Load((Instruction)inst, element);
62 inst.Type = (string)element.Attribute("type");
63 inst.Class = (string)element.Attribute("class");
64 inst.Method = (string)element.Attribute("method");
65 inst.Field = (string)element.Attribute("field");
66 inst.Sig = (string)element.Attribute("sig");
67 }
IKVM.Runtime.ClassFile.Method.Instruction Instruction
Definition compiler.cs:44

◆ Read()

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

Reads the XML element into a new Ldtoken instance.

Parameters
element
Returns

Definition at line 47 of file Ldtoken.cs.

48 {
49 var inst = new Ldtoken();
50 Load(inst, element);
51 return inst;
52 }

Property Documentation

◆ Class

string IKVM.Tools.Importer.MapXml.Ldtoken.Class
getset

Definition at line 71 of file Ldtoken.cs.

71{ get; set; }

◆ Field

string IKVM.Tools.Importer.MapXml.Ldtoken.Field
getset

Definition at line 75 of file Ldtoken.cs.

75{ get; set; }

◆ Method

string IKVM.Tools.Importer.MapXml.Ldtoken.Method
getset

Definition at line 73 of file Ldtoken.cs.

73{ get; set; }

◆ Sig

string IKVM.Tools.Importer.MapXml.Ldtoken.Sig
getset

Definition at line 77 of file Ldtoken.cs.

77{ get; set; }

◆ Type

string IKVM.Tools.Importer.MapXml.Ldtoken.Type
getset

Definition at line 69 of file Ldtoken.cs.

69{ get; set; }

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