IKVM11  11
Java SE 11 Virtual Machine for .NET
Loading...
Searching...
No Matches
IKVM.Java.Externs.java.lang.Package Class Reference

Static Public Member Functions

static string getSystemPackage0 (string name)
 
static string[] getSystemPackages0 ()
 

Detailed Description

Definition at line 35 of file Package.cs.

Member Function Documentation

◆ getSystemPackage0()

static string IKVM.Java.Externs.java.lang.Package.getSystemPackage0 ( string name)
static

Definition at line 61 of file Package.cs.

62 {
63 LazyInitSystemPackages();
64 systemPackages.TryGetValue(name, out string path);
65 return path;
66 }

◆ getSystemPackages0()

static string[] IKVM.Java.Externs.java.lang.Package.getSystemPackages0 ( )
static

Definition at line 68 of file Package.cs.

69 {
70 LazyInitSystemPackages();
71 var pkgs = new string[systemPackages.Count];
72 systemPackages.Keys.CopyTo(pkgs, 0);
73 return pkgs;
74 }

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