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

Static Public Member Functions

static new StLoc Read (XElement element)
 Reads the XML element into a new stloc instance.
 
static void Load (StLoc 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 Name [get, set]
 
string Class [get, set]
 
string Type [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 37 of file StLoc.cs.

Member Function Documentation

◆ Load()

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

Loads the XML element into the instruction.

Parameters
inst
element

Definition at line 57 of file StLoc.cs.

58 {
59 Load((Instruction)inst, element);
60 inst.Name = (string)element.Attribute("name");
61 inst.Class = (string)element.Attribute("class");
62 inst.Type = (string)element.Attribute("type");
63 }
IKVM.Runtime.ClassFile.Method.Instruction Instruction
Definition compiler.cs:44

◆ Read()

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

Reads the XML element into a new stloc instance.

Parameters
element
Returns

Definition at line 45 of file StLoc.cs.

46 {
47 var inst = new StLoc();
48 Load(inst, element);
49 return inst;
50 }

Property Documentation

◆ Class

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

Definition at line 70 of file StLoc.cs.

70{ get; set; }

◆ Name

string IKVM.Tools.Importer.MapXml.StLoc.Name
getset

Definition at line 68 of file StLoc.cs.

68{ get; set; }

◆ Type

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

Definition at line 72 of file StLoc.cs.

72{ get; set; }

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