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

Static Public Member Functions

static Element Read (XElement element)
 Reads the XML element into a new Element instance.
 
static void Load (Element e, XElement element)
 Loads the XML element into the instruction.
 

Properties

string Value [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.
 

Detailed Description

Definition at line 30 of file Element.cs.

Member Function Documentation

◆ Load()

static void IKVM.Tools.Importer.MapXml.Element.Load ( Element e,
XElement element )
static

Loads the XML element into the instruction.

Parameters
e
element

Definition at line 50 of file Element.cs.

51 {
52 Load((MapXmlElement)e, element);
53 e.Value = element.Value;
54 }
static void Load(Element e, XElement element)
Loads the XML element into the instruction.
Definition Element.cs:50

◆ Read()

static Element IKVM.Tools.Importer.MapXml.Element.Read ( XElement element)
static

Reads the XML element into a new Element instance.

Parameters
element
Returns

Definition at line 38 of file Element.cs.

39 {
40 var e = new Element();
41 Load(e, element);
42 return e;
43 }

Property Documentation

◆ Value

string IKVM.Tools.Importer.MapXml.Element.Value
getset

Definition at line 56 of file Element.cs.

56{ get; set; }

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