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

Static Public Member Functions

static new BrLabel Read (XElement element)
 Reads the XML element into a new BrLabel instance.
 
static void Load (BrLabel inst, XElement element)
 Reads the XML element into a new BrLabel instance.
 
- 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]
 
- 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 34 of file BrLabel.cs.

Member Function Documentation

◆ Load()

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

Reads the XML element into a new BrLabel instance.

Parameters
element
Returns

Definition at line 54 of file BrLabel.cs.

55 {
56 Load((Instruction)inst, element);
57 inst.Name = (string)element.Attribute("name");
58 }
IKVM.Runtime.ClassFile.Method.Instruction Instruction
Definition compiler.cs:44

◆ Read()

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

Reads the XML element into a new BrLabel instance.

Parameters
element
Returns

Definition at line 42 of file BrLabel.cs.

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

Property Documentation

◆ Name

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

Definition at line 61 of file BrLabel.cs.

61{ get; set; }

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