IKVM11  11
Java SE 11 Virtual Machine for .NET
Loading...
Searching...
No Matches
IKVM.Tools.Importer.MapXml.Throws Class Referencesealed

Static Public Member Functions

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

Properties

string Class [get, set]
 

Detailed Description

Definition at line 30 of file Throws.cs.

Member Function Documentation

◆ Load()

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

Loads the XML element into the instruction.

Parameters
inst
element

Definition at line 50 of file Throws.cs.

51 {
52 inst.Class = (string)element.Attribute("class");
53 }

◆ Read()

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

Reads the XML element into a new Throws instance.

Parameters
element
Returns

Definition at line 38 of file Throws.cs.

39 {
40 var inst = new Throws();
41 Load(inst, element);
42 return inst;
43 }
static void Load(Throws inst, XElement element)
Loads the XML element into the instruction.
Definition Throws.cs:50

Property Documentation

◆ Class

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

Definition at line 55 of file Throws.cs.

55{ get; set; }

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